-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
43 lines (43 loc) · 1 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
{
"name": "echarts-for-vue",
"version": "1.4.1",
"description": "ECharts wrapper component for Vue 3, 2 and TypeScript",
"main": "dist/echarts-for-vue.js",
"module": "dist/echarts-for-vue.mjs",
"scripts": {
"build:prod": "node scripts/build-prod.js"
},
"author": "Ambit Tsai <ambit_tsai@qq.com>",
"license": "Apache-2.0",
"dependencies": {
"@types/echarts": "^4.9.7"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.2.1",
"rollup": "^2.27.1",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.2.0",
"typescript": "^4.2.4"
},
"peerDependencies": {
"echarts": ">=3",
"vue": ">=2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ambit-tsai/echarts-for-vue.git"
},
"homepage": "https://github.com/ambit-tsai/echarts-for-vue#readme",
"bugs": {
"url": "https://github.com/ambit-tsai/echarts-for-vue/issues"
},
"keywords": [
"echarts",
"vue3",
"vue",
"chart",
"typescript",
"ts",
"wrap"
]
}