-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
31 lines (31 loc) · 1.04 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
{
"name": "nanite-webgpu",
"description": "UE5's Nanite implementation using WebGPU. Includes the meshlet LOD hierarchy, software rasterizer and billboard impostors. Culling on both per-instance and per-meshlet basis.",
"version": "1.0.0",
"license": "MIT",
"author": "Marcin Matuszczyk <[email protected]>",
"homepage": "https://scthe.github.io/nanite-webgpu",
"repository": "https://github.com/Scthe/nanite-webgpu",
"main": "src/index.web.tsx",
"packageManager": "[email protected]",
"scripts": {
"predev": "yarn clean",
"dev": "node esbuild-script.js --dev",
"prebuild": "yarn clean",
"build": "node esbuild-script.js",
"serve": "http-server --ssl -C build/cert.pem -K build/key.pem build",
"clean": "rimraf ./build/* || true"
},
"dependencies": {
"dat.gui": "^0.7.9",
"webgl-obj-loader": "^2.0.8",
"wgpu-matrix": "^2.9.0"
},
"devDependencies": {
"@types/dat.gui": "^0.7.9",
"esbuild": "^0.21.3",
"esbuild-copy-static-files": "^0.1.0",
"rimraf": "^5.0.7",
"typescript": "^5.4.5"
}
}