-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.17 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
{
"name": "three-mini-map",
"version": "0.0.6",
"description": "Tile based visualization library for threejs.",
"keywords": [
"maps",
"tiles",
"three",
"webmapping",
"cartography",
"webgl"
],
"author": {
"name": "Lhapaipai",
"url": "https://huguestavernier.com"
},
"homepage": "https://three-mini-map.netlify.app/default/",
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"build:examples": "bash scripts/build-examples.sh",
"deploy:netlify": "netlify deploy --prod --dir=.netlify-examples"
},
"files": [
"dist",
"src"
],
"dependencies": {
"three": "^0.127.0"
},
"main": "dist/three-mini-map.umd.js",
"module": "dist/three-mini-map.es.js",
"devDependencies": {
"@mapbox/tile-cover": "^3.0.2",
"@turf/destination": "^6.4.0",
"ndarray": "^1.0.19",
"rollup-plugin-dotenv": "github:lhapaipai/rollup-plugin-dotenv#v0.3.1",
"vite": "^2.3.8"
},
"workspaces": [
"examples/private-default",
"examples/private-combins",
"examples/default"
],
"repository": {
"type": "git",
"url": "https://github.com/lhapaipai/three-mini-map.git"
}
}