-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
41 lines (41 loc) · 1.01 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
{
"name": "webgl-path-tracer",
"version": "1.0.0",
"description": "Utrecht University WebGL Path Tracer",
"private": true,
"dependencies": {
"gl-matrix": "^3.0.0",
"parse-hdr": "^1.0.0"
},
"devDependencies": {
"@types/gl-matrix": "^2.4.5",
"@types/node": "^12.0.2",
"@types/webgl2": "0.0.4",
"file-loader": "^3.0.1",
"gltf-loader-ts": "^0.3.1",
"ts-loader": "^6.0.0",
"typescript": "^3.4.5",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-glsl-loader": "^1.0.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"develop": "webpack --mode development --watch",
"build": "webpack --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/driule/webgl-path-tracer.git"
},
"keywords": [
"webgl",
"glsl",
"path-tracer",
"path-tracing",
"bvh"
],
"author": "Andrius Jaškauskas",
"license": "ISC",
"homepage": "https://github.com/driule/webgl-path-tracer#readme"
}