-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 912 Bytes
/
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": "create-lb-cli",
"version": "0.0.6",
"description": "一个能够创建各种模板的前端脚手架~",
"keywords": [
"lb-cli"
],
"main": "index.js",
"type": "module",
"bin": {
"create-lb-cli": "index.js",
"lb-cli": "index.js"
},
"files": [
"dist",
"index.js",
"src",
"templates"
],
"scripts": {
"watch": "rollup --config rollup.config.js --watch",
"build": "rollup --config rollup.config.js",
"node": "node index.js",
"prepublish": "npm run build"
},
"author": "liben",
"license": "MIT",
"dependencies": {
"chalk": "^5.1.2",
"cross-spawn": "^7.0.3",
"download-git-repo": "^3.0.2",
"minimist": "^1.2.7",
"ora": "^6.1.2",
"prompts": "^2.4.2"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.1",
"prettier": "^2.8.4",
"rollup": "^3.21.7",
"rollup-plugin-clear": "^2.0.7"
}
}