-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.06 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.06 KB
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
{
"name": "ly-create-web-cli",
"version": "1.0.0",
"description": "搭建脚手架",
"main": "index.js",
"type": "module",
"bin": {
"ly-create-web-cli": "index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/3254954760/create-react-web-cli.git"
},
"author": "liyong",
"license": "ISC",
"bugs": {
"url": "https://github.com/3254954760/create-react-web-cli/issues"
},
"homepage": "https://github.com/3254954760/create-react-web-cli#readme",
"dependencies": {
"commander": "^13.1.0",
"cross-env": "^7.0.3",
"download-git-repo": "^3.0.2",
"husky": "^8.0.0",
"inquirer": "^12.9.4",
"ora": "^8.2.0",
"prettier": "^3.6.2"
},
"lint-staged": {
"*.{js,jsx,tsx}": [
"prettier --write"
],
"*.{css,scss,less}": [
"prettier --write"
]
}
}