forked from djzielin/babylonjs-mapping
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.13 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
{
"name": "babylonjs-mapping",
"version": "1.0.24",
"author": "David Zielinski <[email protected]>",
"license": "MIT",
"description": "module to help display map content from OpenStreetMaps and Mapbox natively in Babylon.js",
"main": "lib/TileSet.js",
"types": "lib/TileSet.d.ts",
"dependencies": {
"@babylonjs/core": "^5.6.0",
"@babylonjs/gui": "^5.6.0",
"@babylonjs/inspector": "^5.6.0",
"@babylonjs/materials": "^5.6.0",
"cross-fetch": "^3.1.5",
"earcut": "^2.2.3",
"rimraf": "^3.0.2"
},
"devDependencies": {
"@types/earcut": "^2.1.1",
"typescript": "^4.6.3"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"clean": "rimraf ./lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/djzielin/babylonjs-mapping.git"
},
"bugs": {
"url": "https://github.com/djzielin/babylonjs-mapping/issues"
},
"keywords": [
"babylonjs",
"mapping",
"openstreetmaps",
"OSM",
"mapbox"
],
"homepage": "https://github.com/djzielin/babylonjs-mapping#readme",
"files": [
"lib/**/*",
"src/**/*"
]
}