-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.68 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.68 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
{
"name": "webxr-3dgs-viewer",
"version": "1.0.0",
"description": "Production-ready WebXR viewer for 3D Gaussian Splats using Three.js and Spark",
"main": "dist/viewer.js",
"types": "dist/viewer.d.ts",
"scripts": {
"dev": "webpack serve --mode development --config webpack.config.js",
"build": "webpack --mode production --config webpack.config.js",
"build:dev": "webpack --mode development --config webpack.config.js",
"type-check": "tsc --noEmit",
"lint": "eslint src --ext .ts,.tsx",
"format": "prettier --write \"src/**/*.{ts,tsx,json,md}\"",
"start": "npm run dev",
"serve": "http-server dist -p 8080 -c-1"
},
"type": "module",
"keywords": [
"webxr",
"3d",
"gaussian-splatting",
"three.js",
"vr",
"ar",
"3d-graphics"
],
"author": "Shep",
"license": "MIT",
"dependencies": {
"three": "^0.178.0",
"@types/three": "^0.178.0",
"@sparkjsdev/spark": "^0.1.10"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.23.0",
"@babel/preset-typescript": "^7.23.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"babel-loader": "^9.1.0",
"eslint": "^8.50.0",
"html-webpack-plugin": "^5.5.0",
"prettier": "^3.0.0",
"terser-webpack-plugin": "^5.3.0",
"ts-loader": "^9.5.0",
"typescript": "^5.2.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.0",
"webpack-dev-server": "^4.15.0",
"http-server": "^14.1.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/yourusername/webxr-3dgs-viewer"
}
}