-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.56 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "cube.gl",
"version": "2.1.0",
"description": "CUBE.gl core. A WebGL-powered geographic data visualization framework build upon three.js.",
"main": "./dist/cubegl.umd.js",
"module": "./dist/cubegl.es.js",
"type": "module",
"types": "./types/index.d.ts",
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./dist/cubegl.es.js",
"require": "./dist/cubegl.umd.js",
"default": "./dist/cubegl.umd.js"
}
},
"scripts": {
"build": "vite build",
"dev": "vite --open /playground/index.html",
"preview": "vite preview",
"lint": "eslint src/"
},
"dependencies": {
"@tweenjs/tween.js": "^23.1.3",
"deepmerge": "^4.3.1",
"geolib": "^3.3.4",
"geotiff": "^3.0.0",
"osmtogeojson": "^3.0.0-beta.5",
"three": "^0.170.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/isjeffcom/CUBE.gl.git"
},
"files": [
"dist/*.js",
"dist/*.js.map",
"types/"
],
"keywords": [
"CUBE.gl",
"CUBE",
"cube",
"data visualization",
"gis",
"3d",
"webgl",
"visualization",
"geographic",
"layer",
"three"
],
"author": "jeffwu",
"license": "MIT",
"bugs": {
"url": "https://github.com/isjeffcom/CUBE.gl/issues"
},
"homepage": "https://github.com/isjeffcom/CUBE.gl#readme",
"devDependencies": {
"eslint": "^9.0.0",
"vite": "^6.1.0"
},
"browserslist": [
"defaults",
"not dead",
"not op_mini all",
"maintained node versions"
],
"standard": {
"ignore": [
"**/dist/"
]
}
}