-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.46 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.46 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
42
{
"name": "devui-cli",
"version": "0.0.0",
"description": "Now I’m the model of a modern major general / The venerated Virginian veteran whose men are all / Lining up, to put me up on a pedestal / Writin’ letters to relatives / Embellishin’ my elegance and eloquence / But the elephant is in the room / The truth is in ya face when ya hear the British cannons go / BOOM",
"keywords": [],
"author": "57code <yt0379@sohu.com>",
"license": "ISC",
"main": "lib/devui-cli.js",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib"
],
"publishConfig": {
"registry": "https://registry.npm.taobao.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/57code/mini-vue-devui.git"
},
"scripts": {
"cli:dev": "esbuild --bundle ./index.js --format=cjs --platform=node --outdir=./lib --watch",
"cli:build": "esbuild --bundle ./index.js --format=cjs --platform=node --outdir=./lib",
"cli": "node ./lib/index.js create",
"build:components": "node ../devui-cli/commands/build.js",
"build:lib": "yarn build:components && cp package.json build && cp README.md build"
},
"bugs": {
"url": "https://github.com/57code/mini-vue-devui/issues"
},
"homepage": "https://github.com/57code/mini-vue-devui#readme",
"devDependencies": {
"commander": "^8.3.0",
"esbuild": "^0.13.10",
"fs-extra": "^10.0.0",
"inquirer": "^8.2.0",
"kolorist": "^1.5.0",
"lerna": "^4.0.0"
}
}