@jdultra/threedtiles 14.0.10 → 14.0.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/{PointsManager.worker-dH1fNyu8.js → PointsManager.worker-2dXwYmdk.js} +14 -10
- package/dist/assets/{PointsManager.worker-dH1fNyu8.js.map → PointsManager.worker-2dXwYmdk.js.map} +1 -1
- package/dist/splats/SplatsMeshWebGPU.d.ts +63 -0
- package/dist/splats/splats.wgsl.d.ts +3 -0
- package/dist/threedtiles.cjs.js +537 -235
- package/dist/threedtiles.cjs.js.map +1 -1
- package/dist/threedtiles.es.js +16881 -6927
- package/dist/threedtiles.es.js.map +1 -1
- package/dist/threedtiles.umd.js +537 -235
- package/dist/threedtiles.umd.js.map +1 -1
- package/package.json +61 -61
package/package.json
CHANGED
|
@@ -1,61 +1,61 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@jdultra/threedtiles",
|
|
3
|
-
"version": "14.0.
|
|
4
|
-
"author": "Emeric Beaufays",
|
|
5
|
-
"description": "An OGC 3DTiles viewer for Three.js",
|
|
6
|
-
"main": "dist/threedtiles.cjs.js",
|
|
7
|
-
"module": "dist/threedtiles.es.js",
|
|
8
|
-
"unpkg": "dist/threedtiles.umd.js",
|
|
9
|
-
"types": "dist/entry.d.ts",
|
|
10
|
-
"license": "MIT",
|
|
11
|
-
"files": [
|
|
12
|
-
"dist/**/*",
|
|
13
|
-
"README.md",
|
|
14
|
-
"LICENSE"
|
|
15
|
-
],
|
|
16
|
-
"repository": {
|
|
17
|
-
"type": "git",
|
|
18
|
-
"url": "https://github.com/ebeaufay/threedtiles"
|
|
19
|
-
},
|
|
20
|
-
"type": "module",
|
|
21
|
-
"scripts": {
|
|
22
|
-
"build": "vite build --config vite.prod.config.js && npm run build:types",
|
|
23
|
-
"build:debug": "vite build --config vite.config.js && npm run build:types",
|
|
24
|
-
"build:types": "tsc --declaration --emitDeclarationOnly --allowJs --outDir dist",
|
|
25
|
-
"generate-docs": "jsdoc --configure jsdoc.json --verbose",
|
|
26
|
-
"dev": "vite",
|
|
27
|
-
"build:dev": "vite build --config vite.config.js",
|
|
28
|
-
"test:watch": "vitest",
|
|
29
|
-
"test": "vitest run"
|
|
30
|
-
},
|
|
31
|
-
"peerDependencies": {
|
|
32
|
-
"three": "^0.180.0"
|
|
33
|
-
},
|
|
34
|
-
"dependencies": {
|
|
35
|
-
"@haragei/dag": "^1.1.0",
|
|
36
|
-
"@spz-loader/core": "^0.3.0",
|
|
37
|
-
"data-structure-typed": "^2.0.4",
|
|
38
|
-
"mathjs": "^14.7.0",
|
|
39
|
-
"meshoptimizer": "^0.25.0",
|
|
40
|
-
"path-browserify": "^1.0.1",
|
|
41
|
-
"spz-js": "^1.2.5",
|
|
42
|
-
"uuid": "^
|
|
43
|
-
},
|
|
44
|
-
"devDependencies": {
|
|
45
|
-
"@laynezh/vite-plugin-lib-assets": "^2.1.2",
|
|
46
|
-
"@rollup/plugin-commonjs": "^28.0.6",
|
|
47
|
-
"@rollup/plugin-inject": "^5.0.5",
|
|
48
|
-
"@rollup/plugin-node-resolve": "^16.0.1",
|
|
49
|
-
"@rollup/plugin-terser": "^0.4.4",
|
|
50
|
-
"@types/three": "^0.180.0",
|
|
51
|
-
"buffer": "^6.0.3",
|
|
52
|
-
"install": "^0.13.0",
|
|
53
|
-
"jsdom": "^26.1.0",
|
|
54
|
-
"process": "^0.11.10",
|
|
55
|
-
"rollup-plugin-polyfill-node": "^0.13.0",
|
|
56
|
-
"typescript": "^5.9.2",
|
|
57
|
-
"vite": "^7.1.
|
|
58
|
-
"vite-plugin-static-copy": "^3.1.0",
|
|
59
|
-
"vitest": "^3.2.4"
|
|
60
|
-
}
|
|
61
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@jdultra/threedtiles",
|
|
3
|
+
"version": "14.0.12",
|
|
4
|
+
"author": "Emeric Beaufays",
|
|
5
|
+
"description": "An OGC 3DTiles viewer for Three.js",
|
|
6
|
+
"main": "dist/threedtiles.cjs.js",
|
|
7
|
+
"module": "dist/threedtiles.es.js",
|
|
8
|
+
"unpkg": "dist/threedtiles.umd.js",
|
|
9
|
+
"types": "dist/entry.d.ts",
|
|
10
|
+
"license": "MIT",
|
|
11
|
+
"files": [
|
|
12
|
+
"dist/**/*",
|
|
13
|
+
"README.md",
|
|
14
|
+
"LICENSE"
|
|
15
|
+
],
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "https://github.com/ebeaufay/threedtiles"
|
|
19
|
+
},
|
|
20
|
+
"type": "module",
|
|
21
|
+
"scripts": {
|
|
22
|
+
"build": "vite build --config vite.prod.config.js && npm run build:types",
|
|
23
|
+
"build:debug": "vite build --config vite.config.js && npm run build:types",
|
|
24
|
+
"build:types": "tsc --declaration --emitDeclarationOnly --allowJs --outDir dist",
|
|
25
|
+
"generate-docs": "jsdoc --configure jsdoc.json --verbose",
|
|
26
|
+
"dev": "vite",
|
|
27
|
+
"build:dev": "vite build --config vite.config.js",
|
|
28
|
+
"test:watch": "vitest",
|
|
29
|
+
"test": "vitest run"
|
|
30
|
+
},
|
|
31
|
+
"peerDependencies": {
|
|
32
|
+
"three": "^0.180.0"
|
|
33
|
+
},
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"@haragei/dag": "^1.1.0",
|
|
36
|
+
"@spz-loader/core": "^0.3.0",
|
|
37
|
+
"data-structure-typed": "^2.0.4",
|
|
38
|
+
"mathjs": "^14.7.0",
|
|
39
|
+
"meshoptimizer": "^0.25.0",
|
|
40
|
+
"path-browserify": "^1.0.1",
|
|
41
|
+
"spz-js": "^1.2.5",
|
|
42
|
+
"uuid": "^13.0.0"
|
|
43
|
+
},
|
|
44
|
+
"devDependencies": {
|
|
45
|
+
"@laynezh/vite-plugin-lib-assets": "^2.1.2",
|
|
46
|
+
"@rollup/plugin-commonjs": "^28.0.6",
|
|
47
|
+
"@rollup/plugin-inject": "^5.0.5",
|
|
48
|
+
"@rollup/plugin-node-resolve": "^16.0.1",
|
|
49
|
+
"@rollup/plugin-terser": "^0.4.4",
|
|
50
|
+
"@types/three": "^0.180.0",
|
|
51
|
+
"buffer": "^6.0.3",
|
|
52
|
+
"install": "^0.13.0",
|
|
53
|
+
"jsdom": "^26.1.0",
|
|
54
|
+
"process": "^0.11.10",
|
|
55
|
+
"rollup-plugin-polyfill-node": "^0.13.0",
|
|
56
|
+
"typescript": "^5.9.2",
|
|
57
|
+
"vite": "^7.1.6",
|
|
58
|
+
"vite-plugin-static-copy": "^3.1.0",
|
|
59
|
+
"vitest": "^3.2.4"
|
|
60
|
+
}
|
|
61
|
+
}
|