-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (44 loc) · 928 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
41
42
43
44
45
{
"name": "@huize/cli",
"version": "0.0.1",
"description": "@huize/cli 脚手架 慧泽智数cli创建项目模版",
"bin": {
"huize-cli": "./src/index.js"
},
"main": "src/index.js",
"scripts": {
"test": "npx ts-node ./src/index.ts create",
"build": "tsc --build",
"prepublishOnly": "npm run build"
},
"author": {
"name": "兰涛",
"email": "[email protected]"
},
"publishConfig": {
},
"files": [
"src"
],
"engines": {
"node": ">=8.9"
},
"license": "ISC",
"dependencies": {
"@inquirer/prompts": "^2.2.0",
"chalk": "^2.4.2",
"commander": "^8.3.0",
"execa": "^2.0.4",
"fs-extra": "^10.0.0",
"glob": "^10.3.1",
"path": "^0.12.7",
"prettier": "^2.8.8"
},
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/prettier": "^2.7.3",
"ts-loader": "^9.4.4",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}