-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.05 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
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "@szhxa/create-front-apps",
"version": "1.0.1",
"type": "module",
"license": "MIT",
"author": "shizhihuaxu <[email protected]>",
"bin": {
"create-front-apps": "index.js"
},
"files": [
"index.js",
"template-*",
"dist"
],
"keywords": [
"frontend",
"vue3",
"typescript",
"admin"
],
"scripts": {
"dev": "unbuild --stub",
"build": "unbuild",
"typecheck": "tsc --noEmit",
"prepublishOnly": "yarn run build"
},
"repository": "[email protected]:shizhihuaxu/create-front-apps.git",
"homepage": "https://github.com/shizhihuaxu/create-front-apps#readme",
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"@types/cross-spawn": "^6.0.2",
"@types/minimist": "^1.2.2",
"@types/prompts": "^2.4.4",
"cross-spawn": "^7.0.3",
"cz-conventional-changelog": "3.3.0",
"kolorist": "^1.8.0",
"minimist": "^1.2.8",
"prompts": "^2.4.2",
"unbuild": "^1.2.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}