-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.42 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
{
"name": "@maptiler/3d",
"version": "1.0.0",
"description": "Add 3D things to your map, plugin for MapTiler SDK",
"module": "dist/maptiler-3d.js",
"types": "dist/maptiler-3d.d.ts",
"type": "module",
"exports": {
".": {
"import": "./dist/maptiler-3d.js",
"types": "./dist/maptiler-3d.d.ts"
}
},
"author": "MapTiler Team",
"keywords": [
"maptiler",
"plugin",
"3D",
"meshes",
"glTF"
],
"scripts": {
"biome": "biome check --max-diagnostics=1000",
"biome:fix": "biome check --max-diagnostics=1000 --write",
"make": "npm run biome:fix && npm run build",
"dev": "vite -c vite.config-es.ts",
"build": "npm run build-es; npm run build-umd",
"build-dev": "NODE_ENV=development npm run build-es; NODE_ENV=development npm run build-umd",
"build-umd": "tsc && vite build -c vite.config-umd.ts",
"build-es": "tsc && vite build -c vite.config-es.ts",
"dev-umd": "tsc && NODE_ENV=development vite build -w -c vite.config-umd.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/maptiler/maptiler-3d-js.git"
},
"license": "",
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@types/node": "^20.4.5",
"@types/three": "^0.168.0",
"typescript": "^5.5.4",
"vite": "^5.4.3",
"vite-plugin-dts": "^4.1.0"
},
"dependencies": {
"@maptiler/sdk": "^2.4.0",
"lru-cache": "^11.0.1",
"three": "^0.168.0"
}
}