forked from visgl/hubble.gl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.34 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.34 KB
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
{
"name": "@hubble.gl/core",
"version": "1.4.0-alpha.0",
"description": "hubble.gl core library classes",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/uber/hubble.gl"
},
"keywords": [
"kepler.gl",
"deck.gl",
"webgl",
"visualization"
],
"types": "dist/index.d.ts",
"main": "dist/index.cjs",
"module": "dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"src",
"dist",
"dist.min.js"
],
"sideEffects": false,
"scripts": {
"prepublishOnly": "npm run build-bundle && npm run build-bundle -- --env.dev",
"build-bundle": "ocular-bundle ./bundle.ts"
},
"dependencies": {
"@loaders.gl/core": "^4.3.3",
"@loaders.gl/video": "^4.3.3",
"@loaders.gl/zip": "^4.3.3",
"@math.gl/core": "^4.1.0",
"@math.gl/web-mercator": "^4.1.0",
"downloadjs": "^1.4.7",
"popmotion": "9.3.1",
"probe.gl": "^3.4.0",
"webm-writer": "^1.0.0"
},
"peerDependencies": {
"@deck.gl/core": ">=9.0",
"@luma.gl/core": ">=9.0",
"@luma.gl/engine": ">=9.0"
},
"devDependencies": {
"@deck.gl/core": "^9.0",
"@luma.gl/core": "^9.0.0",
"@luma.gl/engine": "^9.0.0",
"@types/tape-catch": "^1.0.2"
}
}