@playcanvas/splat-transform 0.1.1 → 0.1.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/bin/cli.mjs ADDED
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env node
2
+
3
+ import { main } from '../dist/index.mjs';
4
+
5
+ await main();
package/dist/index.mjs CHANGED
@@ -1,7 +1,7 @@
1
1
  import { open } from 'node:fs/promises';
2
2
  import { Buffer } from 'node:buffer';
3
3
 
4
- var version = "0.1.0";
4
+ var version = "0.1.2";
5
5
 
6
6
  const getDataType = (type) => {
7
7
  switch (type) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@playcanvas/splat-transform",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "author": "PlayCanvas<support@playcanvas.com>",
5
5
  "homepage": "https://playcanvas.com",
6
6
  "description": "CLI tool for converting PLY gaussian splat scenes to compressed.ply",
@@ -21,7 +21,7 @@
21
21
  "url": "git+https://github.com/playcanvas/splat-transform.git"
22
22
  },
23
23
  "bin": {
24
- "splat-transform": "dist/index.mjs"
24
+ "splat-transform": "bin/cli.mjs"
25
25
  },
26
26
  "files": [
27
27
  "dist/",