-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
31 lines (31 loc) · 1.07 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": "frostbitten-hair-webgpu",
"description": "Software rasterizing hair strands with analytical AA and OIT. Inspired by Frostbite's hair system: \"Every Strand Counts: Physics and Rendering Behind Frostbite's Hair\".",
"version": "1.0.0",
"license": "MIT",
"author": "Marcin Matuszczyk <marcin1113C@gmail.com>",
"homepage": "https://scthe.github.io/frostbitten-hair-webgpu",
"repository": "https://github.com/Scthe/frostbitten-hair-webgpu",
"main": "src/index.web.tsx",
"packageManager": "yarn@4.2.2",
"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"
}
}