-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
60 lines (60 loc) · 1.68 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
{
"name": "echarts-extension-gmap",
"version": "1.7.0",
"description": "A Google Map(https://www.google.com/maps) extension for Apache ECharts (https://github.com/apache/echarts)",
"main": "dist/echarts-extension-gmap.min.js",
"module": "dist/echarts-extension-gmap.esm.js",
"files": [
"dist",
"src",
"index.js",
"index.d.ts",
"export.js",
"export.d.ts",
"types.d.ts",
"examples/*.html"
],
"types": "types.d.ts",
"scripts": {
"dev": "rollup -wc --environment NODE_ENV:development --bundleConfigAsCjs",
"build": "rollup -c --environment NODE_ENV:production --bundleConfigAsCjs",
"postbuild": "node build/post-build.js",
"release": "npm run build && npm run generate:example",
"generate:example": "node build/generateExamples.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/plainheart/echarts-extension-gmap.git"
},
"keywords": [
"echarts",
"google-maps",
"google",
"echarts-extension",
"data-visualization",
"map",
"echarts-gmap",
"echarts-google-map",
"echarts4",
"echarts5",
"gmap"
],
"author": "plainheart",
"license": "MIT",
"bugs": {
"url": "https://github.com/plainheart/echarts-extension-gmap/issues"
},
"homepage": "https://github.com/plainheart/echarts-extension-gmap#readme",
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"chalk": "^4.1.2",
"echarts": "^5.5.1",
"rollup": "^4.21.3"
}
}