-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.2 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.2 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
{
"name": "@mapwhit/tilerenderer",
"description": "A WebGL interactive maps library",
"version": "1.6.0",
"type": "module",
"exports": {
".": "./src/index.js",
"./worker": "./src/worker.js"
},
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/mapwhit/tilerenderer.git"
},
"dependencies": {
"@mapbox/gl-matrix": "^0.0.1",
"@mapbox/unitbezier": "^0.0.1",
"@mapbox/whoots-js": "^3.0.0",
"@mapwhit/events": "^1.0.0",
"@mapwhit/geojson-rewind": "^2.0.0",
"@mapwhit/geometry": "^1.1.0",
"@mapwhit/pbf": "^1.0.0",
"@mapwhit/point-geometry": "^1.0.2",
"@mapwhit/style-expressions": "^1.2.0",
"@mapwhit/vector-tile": "4.0.0",
"@pirxpilot/nanoassert": "~1",
"csscolorparser": "^1.0.3",
"earcut": "^3.0.1",
"geojson-vt": "^4.0.2",
"grid-index": "^1.1.0",
"murmurhash-js": "^1.0.0",
"potpack": "^2.1.0",
"quickselect": "^3.0.0",
"supercluster": "^8.0.1"
},
"browser": {
"assert": "@pirxpilot/nanoassert",
"./package.json": "./build/min/package.json"
},
"scripts": {
"test": "make check",
"prepare": "make prebuild"
},
"files": [
"src",
"build/min"
]
}