-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1020 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 1020 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "create-universal",
"version": "0.7.1",
"description": "Cross-platform Expo app generator (iOS/Android/web) with TypeScript, formatting, and gluestack/tailwind",
"homepage": "https://github.com/vine77/create-universal",
"type": "module",
"main": "dist/index.js",
"author": "Nathan Ward",
"license": "MIT",
"bin": {
"create-universal": "dist/bin.js"
},
"files": [
"dist"
],
"scripts": {
"start": "npm run build && node dist/bin.js",
"build": "node scripts/clean.js && tsc && node scripts/build.js",
"prepublishOnly": "npm run build",
"lint": "eslint .",
"format": "eslint . --fix"
},
"dependencies": {
"commander": "^13.0.0",
"suppress-experimental-warnings": "^2.0.0"
},
"devDependencies": {
"@commander-js/extra-typings": "^13.0.0",
"@types/node": "^22.10.2",
"eslint": "^8.57.1",
"eslint-config-universe": "^14.0.0",
"eslint-plugin-perfectionist": "^2.11.0",
"prettier": "^3.4.2",
"typescript": "^5.7.2"
}
}