-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
57 lines (57 loc) · 1.6 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
{
"name": "@jdultra/threedtiles",
"version": "13.0.33",
"author": "Emeric Beaufays",
"description": "An OGC 3DTiles viewer for Three.js",
"main": "dist/threedtiles.cjs.js",
"module": "dist/threedtiles.es.js",
"unpkg": "dist/threedtiles.umd.js",
"types": "dist/entry.d.ts",
"license": "MIT",
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/ebeaufay/threedtiles"
},
"type": "module",
"scripts": {
"build": "vite build --config vite.prod.config.js && npm run build:types",
"build:types": "tsc --declaration --emitDeclarationOnly --allowJs --outDir dist",
"generate-docs": "jsdoc --configure jsdoc.json --verbose",
"dev": "vite",
"build:dev": "vite build --config vite.config.js",
"test:watch": "vitest",
"test": "vitest run"
},
"peerDependencies": {
"three": "^0.172.0"
},
"dependencies": {
"@haragei/dag": "^1.1.0",
"data-structure-typed": "^1.53.5",
"meshoptimizer": "^0.20.0",
"path-browserify": "^1.0.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.3.1",
"@laynezh/vite-plugin-lib-assets": "^0.5.24",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-inject": "^5.0.5",
"@rollup/plugin-terser": "^0.4.4",
"@types/three": "^0.172.0",
"install": "^0.13.0",
"jsdom": "^25.0.1",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vite-plugin-static-copy": "^2.2.0",
"vitest": "^2.1.5",
"buffer": "^6.0.3",
"process": "^0.11.10",
"rollup-plugin-polyfill-node": "^0.13.0"
}
}