-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.45 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
59
60
{
"name": "fast-monorepo-cli",
"private": false,
"version": "1.1.2",
"author": "case.mo",
"main": "./src/index.js",
"type": "module",
"license": "ISC",
"scripts": {
"lint": "biome lint --write",
"build": "rollup -c",
"tsc": "tsc",
"postinstall": "lefthook install",
"dev": "bun ./src/index.ts create",
"prod": "node ./dist/index.js create",
"commit": "git status && git add -A && git-cz && git push"
},
"keywords": ["cli", "开发模版"],
"bin": {
"template": "dist/index.js"
},
"dependencies": {
"@inquirer/prompts": "^5.3.6",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"download": "^8.0.0",
"git-clone": "^0.2.0",
"inquirer": "^10.1.6",
"log-symbols": "^6.0.0",
"ora": "^8.0.1",
"rimraf": "^6.0.1"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/download": "^8.0.5",
"@types/git-clone": "^0.2.4",
"@types/node": "^22.5.2",
"@types/rimraf": "^4.0.5",
"rollup": "^4.21.2",
"rollup-plugin-exclude-dependencies-from-bundle": "^1.1.23",
"rollup-plugin-terser": "^7.0.2",
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"commitizen": "^4.3.0",
"cz-git": "^1.9.4",
"lefthook": "^1.7.11"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
}
}