-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.09 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
46
{
"name": "webgpu-raytracer",
"version": "1.0.0",
"description": "Raytracing in WebGPU for educational purposes",
"main": "index.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gnikoloff/webgpu-raytracer.git"
},
"keywords": [
"webgpu",
"raytracing",
"raytracer",
"pathtracing",
"pathtracer"
],
"author": {
"name": "Georgi Nikolov",
"email": "connect@georgi-nikolov.com",
"url": "https://georgi-nikolov.com"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/gnikoloff/webgpu-raytracer/issues"
},
"homepage": "https://github.com/gnikoloff/webgpu-raytracer#readme",
"devDependencies": {
"@webgpu/types": "^0.1.40",
"vite": "^5.0.10",
"vite-plugin-top-level-await": "^1.4.1"
},
"dependencies": {
"dat.gui": "^0.7.9",
"dayjs": "^1.11.10",
"gl-matrix": "^3.4.3",
"mtl-file-parser": "^0.3.0",
"obj-file-parser": "^0.6.2",
"webgpu-utils": "^1.3.0",
"wgsl-preprocessor": "^1.0.1"
}
}