-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.29 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
{
"name": "@playcanvas/splat-transform",
"version": "0.1.3",
"author": "PlayCanvas<support@playcanvas.com>",
"homepage": "https://playcanvas.com",
"description": "CLI tool for converting PLY gaussian splat scenes to compressed.ply",
"keywords": [
"playcanvas",
"gs",
"gaussian splatting",
"gaussian",
"splatting",
"ply",
"compression",
"compressed.ply",
"supersplat"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/playcanvas/splat-transform.git"
},
"bin": {
"splat-transform": "bin/cli.mjs"
},
"files": [
"dist/",
"LICENSE",
"README.md",
"package-lock.json"
],
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"lint": "eslint src",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@playcanvas/eslint-config": "^2.0.8",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-typescript": "^12.1.2",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"eslint": "^9.17.0",
"eslint-import-resolver-typescript": "^3.7.0",
"playcanvas": "^2.3.3",
"rollup": "^4.28.1",
"tslib": "^2.8.1",
"typescript": "^5.7.2"
}
}