-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
45 lines (45 loc) · 1.21 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
{
"name": "statsvr",
"version": "3.1.6",
"description": "Performance statistics HUD specifically for WebXR THREE.js Projects.",
"main": "./dist/client/statsvr.js",
"scripts": {
"build": "tsc ./src/client/statsvr.ts --outDir ./dist/client/",
"dev": "webpack serve --config ./src/client/webpack.dev.js",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node ./dist/server/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sean-Bradley/StatsVR.git"
},
"keywords": [
"fps",
"performance",
"hud",
"statsvr",
"threejs",
"webvr",
"webxr",
"seanwasere"
],
"author": "Sean Bradley",
"license": "MIT",
"homepage": "https://github.com/Sean-Bradley/StatsVR#readme",
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.11.30",
"@types/three": "^0.162.0",
"html-webpack-plugin": "^5.6.0",
"three": "^0.162.0",
"ts-loader": "^9.5.1",
"typescript": "^5.0.4",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4",
"webpack-merge": "^5.10.0"
},
"dependencies": {
"express": "^4.19.2"
}
}