-
Notifications
You must be signed in to change notification settings - Fork 94
/
Copy pathpackage.json
58 lines (58 loc) · 1.81 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
53
54
55
56
57
58
{
"name": "gsplat",
"version": "1.2.4",
"description": "JavaScript Gaussian Splatting library",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build:wasm": "sh ./compile_wasm.sh",
"copy:wasm": "ncp ./src/wasm ./dist/wasm",
"build": "npm run build:wasm && rollup -c && npm run copy:wasm",
"test": "jest --passWithNoTests",
"lint": "eslint \"src/**/*.ts\" \"examples/**/*.ts\"",
"format": "prettier --write \"src/**/*.ts\" \"examples/**/*.ts\""
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/dylanebert/splat.js.git"
},
"keywords": [
"gsplat",
"gaussian splatting",
"javascript",
"3d",
"webgl"
],
"author": "dylanebert",
"license": "MIT",
"bugs": {
"url": "/~https://github.com/dylanebert/splat.js/issues"
},
"homepage": "/~https://github.com/dylanebert/splat.js#readme",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"@types/jest": "^29.5.8",
"@types/node": "^20.8.10",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"ncp": "^2.0.0",
"prettier": "^3.0.3",
"rollup": "^4.3.0",
"rollup-plugin-web-worker-loader": "^1.6.1",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"files": [
"dist/**/*"
]
}