forked from mkkellogg/GaussianSplats3D
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.63 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "gaussian-splats-3d",
"repository": {
"type": "git",
"url": "https://github.com/mkkellogg/GaussianSplat3D"
},
"version": "0.0.4",
"description": "Three.js-based 3D Gaussian splat viewer",
"main": "build/gaussian-splats-3d.module.js",
"module": "build/gaussian-splats-3d.module.js",
"typings": "build/types/index.d.ts",
"author": "Mark Kellogg",
"license": "MIT",
"type": "module",
"scripts": {
"build-demo": "mkdir -p ./build/demo && cp -r ./demo ./build/ && cp ./node_modules/three/build/three.module.js ./build/demo/lib/three.module.js",
"build-library": "npx rollup -c && mkdir -p ./build/demo/lib && cp ./build/gaussian-splats-3d.module.* ./build/demo/lib/",
"build": "npm run build-library && npm run build-demo",
"build-demo-windows": "(if not exist \".\\build\\demo\" mkdir .\\build\\demo) && xcopy /E .\\demo .\\build\\demo && xcopy .\\node_modules\\three\\build\\three.module.js .\\build\\demo\\lib\\",
"build-library-windows": "npx rollup -c && (if not exist \".\\build\\demo\\lib\" mkdir .\\build\\demo\\lib) && copy .\\build\\gaussian-splats-3d* .\\build\\demo\\lib\\",
"build-windows": "npm run build-library-windows && npm run build-demo-windows",
"watch": "npx npm-watch ",
"demo": "node util/server.js -d ./build/demo",
"fix-styling": "npx stylelint **/*.scss --fix",
"fix-js": "npx eslint src --fix",
"lint": "npx eslint 'src/**/*.js' || true",
"prettify": "npx prettier --write 'src/**/*.js'"
},
"watch": {
"build-library": {
"patterns": [
"src/**/*.js"
]
},
"build-demo": {
"patterns": [
"demo/**/*.*"
]
}
},
"babel": {},
"keywords": [
"three",
"threejs",
"three.js",
"splatting",
"3D",
"gaussian",
"webgl"
],
"devDependencies": {
"@babel/core": "7.22.0",
"@babel/eslint-parser": "7.22.11",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/preset-env": "7.22.10",
"babel-loader": "9.1.3",
"eslint": "8.47.0",
"eslint-config-google": "0.14.0",
"file-loader": "6.2.0",
"prettier": "3.0.2",
"prettier-eslint": "15.0.1",
"url-loader": "4.1.1"
},
"dependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@rollup/pluginutils": "5.0.5",
"http-server": "14.1.1",
"install": "0.13.0",
"npm-watch": "0.11.0",
"rollup": "^4.4.1",
"three": "0.155.0"
}
}