-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.02 KB
/
package.json
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.4.2",
"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 . --ignore-path .gitignore",
"format": "eslint . --fix --ignore-path .gitignore"
},
"devDependencies": {
"@types/node": "^20.8.10",
"eslint": "^8.52.0",
"eslint-config-universe": "^12.0.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"dependencies": {
"@commander-js/extra-typings": "^11.1.0",
"commander": "^11.1.0",
"hygen": "^6.2.11",
"suppress-experimental-warnings": "^1.1.17"
}
}