-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.31 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.31 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@playcanvas/splat-transform",
"version": "1.10.2",
"author": "PlayCanvas<support@playcanvas.com>",
"homepage": "https://playcanvas.com",
"description": "Library and CLI tool for 3D Gaussian splat format conversion and transformation",
"keywords": [
"3d-gaussian-splatting",
"cli",
"gaussian-splatting",
"playcanvas",
"supersplat",
"typescript"
],
"license": "MIT",
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"types": "dist/lib/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/lib/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/lib/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./lib/*": "./lib/*"
},
"bin": {
"splat-transform": "bin/cli.mjs"
},
"bugs": {
"url": "https://github.com/playcanvas/splat-transform/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/playcanvas/splat-transform.git"
},
"files": [
"dist/",
"bin/",
"lib/"
],
"dependencies": {
"meshoptimizer": "^1.0.1",
"webgpu": "^0.3.8 || ^0.4.0"
},
"devDependencies": {
"@playcanvas/eslint-config": "2.1.0",
"@playcanvas/supersplat-viewer": "1.19.1",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "16.0.3",
"@rollup/plugin-typescript": "12.3.0",
"@types/node": "24.12.0",
"@typescript-eslint/eslint-plugin": "8.58.0",
"@typescript-eslint/parser": "8.58.0",
"eslint": "9.39.4",
"eslint-import-resolver-typescript": "4.4.4",
"pathe": "2.0.3",
"playcanvas": "2.17.2",
"publint": "0.3.18",
"rollup": "4.60.1",
"tslib": "2.8.1",
"tsx": "4.21.0",
"typedoc": "0.28.18",
"typedoc-plugin-mdn-links": "5.1.1",
"typescript": "5.9.3"
},
"peerDependencies": {
"playcanvas": ">=2.0.0"
},
"scripts": {
"build": "rollup -c && node -e \"fs=require('fs');fs.copyFileSync('dist/lib/index.d.ts','dist/lib/index.d.cts')\"",
"docs": "typedoc",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"publint": "publint",
"watch": "rollup -c -w",
"test": "node --import tsx/esm --test test/*.test.mjs",
"test:fixtures": "node test/fixtures/create-fixtures.mjs"
},
"engines": {
"node": ">=18.0.0"
},
"type": "module"
}