forked from vasturiano/globe.gl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.69 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
{
"name": "globe.gl",
"version": "2.24.1",
"description": "UI component for Globe Data Visualization using ThreeJS/WebGL",
"unpkg": "dist/globe.gl.min.js",
"jsdelivr": "dist/globe.gl.min.js",
"main": "dist/globe.gl.common.js",
"module": "dist/globe.gl.module.js",
"types": "dist/globe.gl.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/vasturiano/globe.gl.git"
},
"keywords": [
"webgl",
"three",
"globe",
"geo",
"spherical",
"projection",
"orthographic"
],
"author": {
"name": "Vasco Asturiano",
"url": "https://bl.ocks.org/vasturiano"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/vasturiano/globe.gl/issues"
},
"homepage": "https://github.com/vasturiano/globe.gl",
"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.6",
"accessor-fn": "1",
"kapsule": "^1.13",
"three": ">=0.118 <1",
"three-globe": "^2.21",
"three-render-objects": "^1.26"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-object-rest-spread": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.2",
"postcss": "^8.4.5",
"rimraf": "^3.0.2",
"rollup": "^2.63.0",
"rollup-plugin-dts": "^4.1.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.5.4"
}
}