-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 902 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 902 Bytes
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
{
"name": "init-template",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"commit": "git add . && git-cz",
"lint": "eslint",
"lint:fix": "eslint --fix",
"prepare": "husky"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix --quiet",
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-git"
}
},
"keywords": [
"开发模版"
],
"author": "Ni0duann",
"license": "MIT",
"packageManager": "pnpm@10.4.1",
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/js": "^9.21.0",
"commitizen": "^4.3.1",
"cz-git": "^1.11.1",
"eslint": "^9.21.0",
"globals": "^16.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.0.0",
"prettier": "^3.5.3",
"typescript-eslint": "^8.24.1"
}
}