-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.4 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
49
50
51
52
53
54
55
56
57
58
{
"name": "hmf-cli",
"description": "hmf-cli 一个快捷创建完整模板项目的命令行工具",
"version": "1.0.8",
"type": "module",
"main": "dist/bin/index.js",
"bin": {
"hmf-cli": "./dist/bin/index.js"
},
"scripts": {
"build": "rimraf dist && tsc",
"hmf-cli": "node ./dist/bin/index.js",
"clean": "rimraf dist node_modules",
"publish": "pnpm publish",
"change:version": "pnpm changeset && pnpm changeset version",
"prepublishOnly": "pnpm run build",
"preinstall": "npx only-allow pnpm"
},
"files": [
"dist",
"package.json",
"README.md",
"LICENSE"
],
"keywords": [
"template",
"cli",
"template app"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/",
"tag": "latest"
},
"repository": {
"type": "git",
"url": "https://github.com/huangmingfu/h-cli.git"
},
"bugs": "https://github.com/huangmingfu/h-cli/issues",
"author": "huangmingfu <212149997@qq.com>",
"license": "MIT",
"dependencies": {
"chalk": "^5.4.1",
"commander": "^12.1.0",
"download-git-repo": "^3.0.2",
"fs-extra": "^11.2.0",
"inquirer": "^12.3.0",
"ora": "^8.1.1",
"rimraf": "^6.0.1"
},
"devDependencies": {
"@changesets/cli": "^2.27.11",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.7",
"@types/node": "^22.10.2",
"typescript": "^5.7.2"
}
}