-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.47 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
{
"name": "tile-gl",
"version": "0.5.1",
"description": "Data serializers and WebGL renderers for vector tile layers",
"main": "dist/tile-gl.umd.js",
"module": "dist/tile-gl.bundle.js",
"unBundled": "index.js",
"exports": {
"import": "./index.js",
"default": "./dist/tile-gl.bundle.js"
},
"type": "module",
"files": [
"dist",
"src",
"index.js"
],
"scripts": {
"lint": "eslint src",
"build": "npm run build-module && npm run build-examples",
"build-module": "rollup -c build/rollup.config.js",
"build-examples": "cd examples && rollup -c",
"test": "npm run lint",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GlobeletJS/tile-gl.git"
},
"keywords": [
"vector",
"tile",
"context",
"javascript",
"webgl"
],
"author": "Jeshurun Hembd",
"license": "MIT",
"bugs": {
"url": "https://github.com/GlobeletJS/tile-gl/issues"
},
"homepage": "https://github.com/GlobeletJS/tile-gl#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-node-resolve": "^13.1.3",
"eslint": "^8.13.0",
"eslint-config-globeletjs": "^0.0.6",
"rollup": "^2.70.1",
"tile-mixer": "^0.3.3",
"tile-retriever": "^0.0.7",
"yawgl": "^0.4.3"
},
"dependencies": {
"earcut": "^2.2.3",
"rbush": "^3.0.1",
"tile-labeler": "^0.8.1",
"tile-stencil": "^0.4.12"
},
"sideEffects": false
}