-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1.22 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
{
"name": "just-cli",
"version": "2.0.1",
"description": "project starter command line tool.",
"main": "bin/just.js",
"types": "types/index.d.ts",
"bin": {
"just": "bin/just.js"
},
"scripts": {
"start": "NODE_ENV=development rollup -w -c rollup.config.js",
"dev": "NODE_ENV=development rollup -c rollup.config.js",
"prod": "NODE_ENV=production rollup -c rollup.config.js",
"build": "rm -rf dist && npm run dev && npm run prod"
},
"author": "<大板栗 [email protected]>",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"@types/cli-progress": "^3.8.0",
"@types/fs-extra": "^9.0.1",
"@types/minimist": "^1.2.0",
"@types/prompts": "^2.0.8",
"@types/shelljs": "^0.8.8",
"@types/update-notifier": "^4.1.1",
"rollup": "^2.26.4",
"rollup-plugin-typescript2": "^0.27.1",
"tslib": "^2.0.0",
"typescript": "^3.9.3"
},
"dependencies": {
"boxen": "^4.2.0",
"chalk": "^4.1.0",
"cli-progress": "^3.8.2",
"fs-extra": "^9.0.1",
"minimist": "^1.2.5",
"mkdir": "^0.0.2",
"ora": "^5.1.0",
"prompts": "^2.3.2",
"shelljs": "^0.8.4",
"update-notifier": "^4.1.1"
}
}