-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·44 lines (44 loc) · 1.22 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
{
"name": "@etherealengine/volumetric",
"version": "2.0.1",
"private": false,
"type": "module",
"repository": {
"type": "git",
"url": "git://github.com/EtherealEngine/Universal-Volumetric.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-player": "tsc",
"build-worker": "vite build --config vite.worker.config.ts",
"build": "npm run build-player && npm run build-worker",
"clean-node-modules": "npx rimraf node_modules && npx rimraf package-lock.json && npx rimraf yarn.lock"
},
"license": "CPAL",
"bugs": {
"url": "https://github.com/EtherealEngine/Universal-Volumetric/issues"
},
"files": [
"dist",
"index.ts"
],
"homepage": "https://github.com/EtherealEngine/Universal-Volumetric#readme",
"dependencies": {
"@types/three": "0.153.0",
"commander": "^10.0.0",
"draco3d": "^1.5.6",
"glob": "7.2.0",
"ngrok": "^5.0.0-beta.2",
"three": "0.153.0",
"xmlhttprequest": "^1.8.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/draco3d": "^1.4.2",
"prettier": "^2.8.7",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^5.0.3",
"vite": "^4.2.1"
}
}