-
Notifications
You must be signed in to change notification settings - Fork 151
/
package.json
executable file
·85 lines (85 loc) · 2.07 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
79
80
81
82
83
84
85
{
"name": "three-globe",
"version": "2.37.5",
"description": "Globe data visualization as a ThreeJS reusable 3D object",
"type": "module",
"unpkg": "dist/three-globe.min.js",
"main": "dist/three-globe.mjs",
"module": "dist/three-globe.mjs",
"types": "dist/three-globe.d.ts",
"exports": {
"types": "./dist/three-globe.d.ts",
"umd": "./dist/three-globe.min.js",
"default": "./dist/three-globe.mjs"
},
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/vasturiano/three-globe.git"
},
"homepage": "https://github.com/vasturiano/three-globe",
"keywords": [
"3d",
"globe",
"webgl",
"visualization",
"three"
],
"author": {
"name": "Vasco Asturiano",
"url": "https://github.com/vasturiano"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/vasturiano/three-globe/issues"
},
"scripts": {
"build": "rimraf dist && rollup -c",
"dev": "rollup -w -c rollup.config.dev.js",
"prepare": "npm run build"
},
"files": [
"dist/**/*",
"example/**/*"
],
"dependencies": {
"@tweenjs/tween.js": "18 - 25",
"accessor-fn": "1",
"d3-array": "3",
"d3-color": "3",
"d3-geo": "3",
"d3-interpolate": "3",
"d3-scale": "4",
"d3-scale-chromatic": "3",
"data-bind-mapper": "1",
"frame-ticker": "1",
"h3-js": "4",
"index-array-by": "1",
"kapsule": "^1.16",
"three-conic-polygon-geometry": "2",
"three-geojson-geometry": "2",
"tinycolor2": "1",
"yaot": "^1.1"
},
"peerDependencies": {
"three": ">=0.154"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@types/three": ">=0.154.0",
"rimraf": "^6.0.1",
"rollup": "^4.28.1",
"rollup-plugin-dts": "^6.1.1",
"three": "^0.171.0",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=12"
}
}