3dtiles-inspector 0.2.1 → 0.2.2
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/CHANGELOG.md +6 -0
- package/package.json +5 -3
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,12 @@ The format is based on Keep a Changelog and this project follows Semantic Versio
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [0.2.2] - 2026-05-03
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
|
|
13
|
+
- Declared the server-side crop dependencies as runtime dependencies so installed packages can load `three` and `@sparkjsdev/spark`.
|
|
14
|
+
|
|
9
15
|
## [0.2.1] - 2026-05-03
|
|
10
16
|
|
|
11
17
|
### Changed
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "3dtiles-inspector",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "Inspect, align, and save local 3D Tiles root transforms in an interactive browser session.",
|
|
5
5
|
"author": "William Liu <lyz15972107087@gmail.com>",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -54,11 +54,13 @@
|
|
|
54
54
|
"url": "https://github.com/WilliamLiu-1997/3DTiles-Inspector/issues"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
|
-
"@sparkjsdev/spark": "2.0.0",
|
|
58
57
|
"3d-tiles-renderer": "0.4.24",
|
|
59
58
|
"3d-tiles-rendererjs-3dgs-plugin": "0.1.5",
|
|
60
59
|
"cesium": "1.140.0",
|
|
61
|
-
"esbuild": "^0.25.11"
|
|
60
|
+
"esbuild": "^0.25.11"
|
|
61
|
+
},
|
|
62
|
+
"dependencies": {
|
|
63
|
+
"@sparkjsdev/spark": "2.0.0",
|
|
62
64
|
"three": "0.180.0"
|
|
63
65
|
}
|
|
64
66
|
}
|