cube.gl 1.0.20 → 2.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -21
- package/README.md +271 -271
- package/dist/basedecoder-B9XUu15s.js +65 -0
- package/dist/basedecoder-B9XUu15s.js.map +1 -0
- package/dist/cubegl.es.js +5 -0
- package/dist/cubegl.es.js.map +1 -0
- package/dist/cubegl.umd.js +4364 -0
- package/dist/cubegl.umd.js.map +1 -0
- package/dist/deflate-Iq6HsZmB.js +11 -0
- package/dist/deflate-Iq6HsZmB.js.map +1 -0
- package/dist/index-C2vPgZcF.js +32287 -0
- package/dist/index-C2vPgZcF.js.map +1 -0
- package/dist/jpeg-BX1FCF4W.js +518 -0
- package/dist/jpeg-BX1FCF4W.js.map +1 -0
- package/dist/lerc-CVqXqWev.js +1032 -0
- package/dist/lerc-CVqXqWev.js.map +1 -0
- package/dist/lzw-BLf4Plu7.js +85 -0
- package/dist/lzw-BLf4Plu7.js.map +1 -0
- package/dist/main-QapQAaGD.js +32 -0
- package/dist/main-QapQAaGD.js.map +1 -0
- package/dist/packbits-B542zsgY.js +25 -0
- package/dist/packbits-B542zsgY.js.map +1 -0
- package/dist/pako.esm-Bx5X36Wo.js +1075 -0
- package/dist/pako.esm-Bx5X36Wo.js.map +1 -0
- package/dist/raw-CzvpuhTi.js +10 -0
- package/dist/raw-CzvpuhTi.js.map +1 -0
- package/dist/webimage-DzzHs4ar.js +30 -0
- package/dist/webimage-DzzHs4ar.js.map +1 -0
- package/dist/zstd-Cdo1cxR9.js +63 -0
- package/dist/zstd-Cdo1cxR9.js.map +1 -0
- package/package.json +71 -66
- package/dist/cubegl.js +0 -215
- package/dist/cubegl.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,66 +1,71 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "cube.gl",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "CUBE.gl core. A WebGL-powered geographic data visualization framework build upon three.js.",
|
|
5
|
-
"main": "dist/cubegl.js",
|
|
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
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "cube.gl",
|
|
3
|
+
"version": "2.0.1",
|
|
4
|
+
"description": "CUBE.gl core. A WebGL-powered geographic data visualization framework build upon three.js.",
|
|
5
|
+
"main": "./dist/cubegl.umd.js",
|
|
6
|
+
"module": "./dist/cubegl.es.js",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"import": "./dist/cubegl.es.js",
|
|
11
|
+
"require": "./dist/cubegl.umd.js",
|
|
12
|
+
"default": "./dist/cubegl.umd.js"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"scripts": {
|
|
16
|
+
"build": "vite build",
|
|
17
|
+
"dev": "vite --open /playground/index.html",
|
|
18
|
+
"preview": "vite preview",
|
|
19
|
+
"lint": "eslint src/"
|
|
20
|
+
},
|
|
21
|
+
"dependencies": {
|
|
22
|
+
"@tweenjs/tween.js": "^23.1.3",
|
|
23
|
+
"deepmerge": "^4.3.1",
|
|
24
|
+
"geolib": "^3.3.4",
|
|
25
|
+
"geotiff": "^3.0.0",
|
|
26
|
+
"osmtogeojson": "^3.0.0-beta.5",
|
|
27
|
+
"three": "^0.170.0"
|
|
28
|
+
},
|
|
29
|
+
"repository": {
|
|
30
|
+
"type": "git",
|
|
31
|
+
"url": "git+https://github.com/isjeffcom/CUBE.gl.git"
|
|
32
|
+
},
|
|
33
|
+
"files": [
|
|
34
|
+
"dist/*.js",
|
|
35
|
+
"dist/*.js.map"
|
|
36
|
+
],
|
|
37
|
+
"keywords": [
|
|
38
|
+
"CUBE.gl",
|
|
39
|
+
"CUBE",
|
|
40
|
+
"cube",
|
|
41
|
+
"data visualization",
|
|
42
|
+
"gis",
|
|
43
|
+
"3d",
|
|
44
|
+
"webgl",
|
|
45
|
+
"visualization",
|
|
46
|
+
"geographic",
|
|
47
|
+
"layer",
|
|
48
|
+
"three"
|
|
49
|
+
],
|
|
50
|
+
"author": "jeffwu",
|
|
51
|
+
"license": "MIT",
|
|
52
|
+
"bugs": {
|
|
53
|
+
"url": "https://github.com/isjeffcom/CUBE.gl/issues"
|
|
54
|
+
},
|
|
55
|
+
"homepage": "https://github.com/isjeffcom/CUBE.gl#readme",
|
|
56
|
+
"devDependencies": {
|
|
57
|
+
"eslint": "^9.0.0",
|
|
58
|
+
"vite": "^6.1.0"
|
|
59
|
+
},
|
|
60
|
+
"browserslist": [
|
|
61
|
+
"defaults",
|
|
62
|
+
"not dead",
|
|
63
|
+
"not op_mini all",
|
|
64
|
+
"maintained node versions"
|
|
65
|
+
],
|
|
66
|
+
"standard": {
|
|
67
|
+
"ignore": [
|
|
68
|
+
"**/dist/"
|
|
69
|
+
]
|
|
70
|
+
}
|
|
71
|
+
}
|