-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.02 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
{
"name": "haroro-cli",
"version": "1.0.23",
"description": "一个不太聪明的前端制作的脚手架工具😭",
"homepage": "https://github.com/iHaroro/haroro-cli",
"repository": "https://github.com/iHaroro/haroro-cli",
"main": "index.js",
"scripts": {
"build": "webpack --config config/webpack.config.js",
"publish:patch": "npm version patch && npm publish",
"publish:minor": "npm version minor && npm publish",
"publish:major": "npm version major && npm publish"
},
"keywords": [
"haroro",
"cli",
"react",
"vue",
"entry",
"template",
"脚手架"
],
"author": "Haroro",
"license": "MIT",
"bin": {
"haroro-cli": "index.js"
},
"dependencies": {
"colors": "^1.4.0",
"commander": "^8.2.0",
"git-clone": "^0.2.0",
"inquirer": "^8.2.0",
"ora": "5.4.1"
},
"devDependencies": {
"copy-webpack-plugin": "^10.2.4",
"webpack": "^5.59.1",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.3.1",
"webpack-merge": "^5.8.0"
}
}