-
-
Notifications
You must be signed in to change notification settings - Fork 794
/
package.json
100 lines (100 loc) · 2.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "caz",
"version": "2.0.0",
"description": "A simple yet powerful template-based Scaffolding tools.",
"keywords": [
"productivity",
"scaffolding",
"boilerplate",
"generator",
"starter-kit",
"templates",
"template",
"caz",
"cli",
"zce"
],
"homepage": "https://github.com/zce/caz#readme",
"bugs": {
"url": "https://github.com/zce/caz/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zce/caz.git"
},
"license": "MIT",
"author": {
"name": "zce",
"email": "w@zce.me",
"url": "https://zce.me"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": "dist/cli.js",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"lint": "ts-standard",
"test": "vitest run",
"prepare": "husky install .github/husky"
},
"tsup": {
"entry": [
"src/index.ts",
"src/cli.ts"
],
"clean": true,
"minify": false,
"splitting": true,
"dts": {
"entry": "src/index.ts",
"resolve": true
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{ts,js}": "ts-standard --fix"
},
"renovate": {
"extends": [
"zce"
]
},
"devDependencies": {
"@commitlint/cli": "17.7.1",
"@commitlint/config-conventional": "17.7.0",
"@types/adm-zip": "0.5.1",
"@types/ini": "1.3.31",
"@types/lodash": "4.14.198",
"@types/node": "20.11.22",
"@types/semver": "7.5.2",
"@types/validate-npm-package-name": "4.0.0",
"adm-zip": "0.5.10",
"cac": "6.7.14",
"env-paths": "3.0.0",
"fast-glob": "3.3.1",
"husky": "8.0.3",
"ini": "4.1.1",
"lint-staged": "15.2.4",
"lodash": "4.17.21",
"node-fetch": "3.3.2",
"ora": "7.0.1",
"prompts": "2.4.2",
"semver": "7.5.4",
"socks-proxy-agent": "8.0.2",
"ts-standard": "12.0.2",
"tsup": "7.2.0",
"typescript": "5.2.2",
"validate-npm-package-name": "5.0.0",
"vitest": "0.34.4"
},
"engines": {
"node": ">=16"
}
}