-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 900 Bytes
/
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
37
38
39
40
{
"name": "create-fe-templates",
"version": "1.0.1",
"description": "scaffold only for myself",
"type": "module",
"license": "MIT",
"author": "Kit Yeung",
"bin": {
"create-fe-templates": "index.js",
"cva": "index.js"
},
"files": [
"index.js",
"template-*",
"dist"
],
"engines": {
"node": "^16.0.0 || >=18.0.0"
},
"scripts": {
"dev": "unbuild --stub",
"build": "unbuild",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"devDependencies": {
"@types/cross-spawn": "^6.0.5",
"@types/minimist": "^1.2.5",
"@types/node": "^20.9.0",
"@types/prompts": "^2.4.8",
"cross-spawn": "^7.0.3",
"kolorist": "^1.8.0",
"minimist": "^1.2.8",
"prompts": "^2.4.2",
"typescript": "^5.2.2",
"unbuild": "^2.0.0"
}
}