forked from ElemeFE/v-charts
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
executable file
·77 lines (77 loc) · 2.01 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "v-charts-x",
"version": "1.0.3",
"description": "Vue Echarts Components",
"main": "lib/index.js",
"module": "lib/index.js",
"files": [
"lib"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"scripts": {
"publish:beta": "npm version prerelease --preid=beta && npm publish",
"publish:patch": "npm version patch && npm publish",
"version": "npm run build",
"postversion": "git push --all && git push --tags",
"start": "npm run dev",
"dev": "vite",
"build": "rollupx",
"test": "vitest --environment jsdom"
},
"keywords": [
"vue",
"echarts"
],
"author": "yujinpan",
"license": "MIT",
"bugs": {
"url": "https://github.com/yujinpan/v-charts-x/issues"
},
"homepage": "https://github.com/yujinpan/v-charts-x#readme",
"peerDependencies": {
"echarts": ">5.0.0",
"vue": ">2.0.0"
},
"dependencies": {
"echarts-amap": "^1.4.15-rc.1",
"echarts-liquidfill": "^3.1.0",
"echarts-wordcloud": "^2.1.0",
"numerify": "^1.2.9",
"utils-lite": "^0.1.10"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.1.0",
"@types/jsdom": "^16.2.14",
"@types/node": "^16.11.45",
"@vitejs/plugin-vue2": "^1.1.2",
"@vitejs/plugin-vue2-jsx": "^1.0.3",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.0",
"@vue/tsconfig": "^0.1.3",
"echarts": "^5",
"element-ui": "2.15.8",
"eslint": "8.22.0",
"eslint-import-resolver-typescript": "^3.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-vue": "^9.0.0",
"fs-ops": "^1.0.6",
"jsdom": "^20.0.0",
"mockjs": "^1.1.0",
"npm-run-all": "^4.1.5",
"path-ops": "^1.0.0",
"prettier": "^2.5.1",
"prismjs": "^1.29.0",
"rollupx": "^2.0.31-beta.2",
"sass": "^1.54.9",
"typescript": "~4.7.4",
"vite": "^3.1.0",
"vite-plugin-cesium": "^1.2.22",
"vitest": "^0.23.1",
"vue": "^2.6.14",
"vue-router": "^3.5.2",
"vue-tsc": "^0.40.12",
"vuex": "^3.6.2"
}
}