-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.13 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
45
46
{
"name": "echarts-offline-doc-cli",
"version": "2.0.0",
"description": "Apache ECharts 中文离线文档生成工具。",
"main": "index.js",
"scripts": {
"build": "node ./bin/echarts-offline-doc.js -b",
"start": "npm run serve",
"serve": "npx -y http-server ./dist -o -c-1 --cors -g",
"local": "npx -y opener dist/index.html"
},
"bin": {
"echarts-offline-doc": "./bin/echarts-offline-doc.js"
},
"keywords": [
"echarts",
"echarts-doc",
"echarts-cli",
"offline-doc"
],
"author": "plainheart <[email protected]>",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.2",
"commander": "^10.0.1",
"cross-spawn": "^7.0.6",
"download": "^8.0.0",
"fs-extra": "^11.2.0",
"globby": "^11.1.0",
"spinnies": "^0.5.1"
},
"files": [
"bin",
"build",
"config",
"index.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/plainheart/echarts-offline-doc-cli.git"
},
"bugs": {
"url": "https://github.com/plainheart/echarts-offline-doc-cli/issues"
},
"homepage": "https://github.com/plainheart/echarts-offline-doc-cli"
}