x3d-tidy 2.2.3 → 2.2.4
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/README.md +1 -8
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -14,14 +14,7 @@ You can run *x3d-tidy* without installing it using **npx**:
|
|
|
14
14
|
|
|
15
15
|
## Overview
|
|
16
16
|
|
|
17
|
-
*x3d-tidy* is a command-line tool, based on [X_ITE](https://create3000.github.io/x_ite/),
|
|
18
|
-
|
|
19
|
-
* Run *x3d-tidy* with `npx x3d-tidy ...` directly from npm without installing it.
|
|
20
|
-
* Format Conversion: Transforms X3D files between different encodings, such as XML, Classic VRML, and JSON.
|
|
21
|
-
* Syntax Cleanup: Ensures well-formed and standardized X3D output by fixing structural inconsistencies and formatting issues.
|
|
22
|
-
* Data Extraction: Mines relevant data from X3D scenes, allowing analysis and reuse of geometries, metadata, and structure.
|
|
23
|
-
* Validation & Optimization: Helps identify errors, redundant elements, and inefficiencies in X3D models.
|
|
24
|
-
* Command-line Usability: Easily integrates into automation workflows and scripts for batch processing.
|
|
17
|
+
*x3d-tidy* is a command-line tool, based on [X_ITE](https://create3000.github.io/x_ite/), for processing X3D files that helps developers and designers maintain clean and efficient 3D content. It can convert between different X3D encodings, making files easier to share or integrate into workflows. In addition, it can beautify X3D code for readability or minimize it for optimized performance and reduced file size.
|
|
25
18
|
|
|
26
19
|
This tool is particularly useful for developers, 3D artists, and researchers working with X3D-based applications, ensuring clean, efficient, and interoperable files.
|
|
27
20
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "x3d-tidy",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.4",
|
|
4
4
|
"description": "X3D Converter, Beautifier and Minimizer",
|
|
5
5
|
"main": "src/main.js",
|
|
6
6
|
"bin": {
|
|
@@ -54,8 +54,8 @@
|
|
|
54
54
|
],
|
|
55
55
|
"dependencies": {
|
|
56
56
|
"colors": "^1.4.0",
|
|
57
|
-
"x_ite": "^12.0.
|
|
58
|
-
"x_ite-node": "^1.1.
|
|
57
|
+
"x_ite": "^12.0.9",
|
|
58
|
+
"x_ite-node": "^1.1.3",
|
|
59
59
|
"x3d-traverse": "^1.0.13",
|
|
60
60
|
"yargs": "^18.0.0"
|
|
61
61
|
},
|