forked from ecomfe/echarts-gl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.78 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
78
{
"name": "@jungzl/echarts-gl",
"description": "Extension pack of ECharts providing 3D plots and globe visualization",
"version": "0.0.3",
"maintainers": [
{
"name": "Jungzl"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/Jungzl/echarts-gl.git"
},
"license": "BSD-3-Clause",
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"build:glsl": "node scripts/build.js",
"build:lib": "babel src -d lib",
"build": "pnpm run build:glsl && rspack -m development && rspack -m production",
"dev": "rspack -m development -w",
"prepare": "pnpm run build:glsl && pnpm run build:lib",
"release": "pnpm run prepare && pnpm run build",
"bumpNRelease": "bumpp"
},
"files": [
"dist",
"lib",
"index.js",
"charts.js",
"components.js"
],
"main": "dist/echarts-gl.cjs",
"module": "index.js",
"exports": {
".": {
"import": "./index.js",
"require": "./dist/echarts-gl.cjs"
},
"./charts": {
"import": "./charts.js"
},
"./components": {
"import": "./components.js"
}
},
"dependencies": {
"claygl": "^1.3.0",
"zrender": "^5.1.1"
},
"peerDependencies": {
"echarts": "^5.1.2"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.0",
"@rspack/cli": "^1.1.6",
"@rspack/core": "^1.1.6",
"benchmark": "^2.1.3",
"bumpp": "^9.9.1",
"echarts": "^5.1.2",
"fs-extra": "^11.2.0",
"glob": "^11.0.0",
"http-server": "^0.10.0",
"maptalks": "^0.38.0"
},
"sideEffects": [
"lib/chart/*.js",
"lib/component/*.js",
"lib/echarts-gl.js",
"lib/export/all.js",
"src/chart/*.js",
"src/component/*.js",
"src/echarts-gl.js",
"src/export/all.js",
"index.js"
]
}