forked from hoverinc/ray-tracing-renderer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.47 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": "ray-tracing-renderer",
"version": "0.10.15",
"description": "A [Three.js](https://github.com/mrdoob/three.js/) renderer which utilizes path tracing to render a scene with true photorealism. The renderer supports global illumination, reflections, soft shadows, and realistic environment lighting.",
"main": "build/RayTracingRenderer.js",
"scripts": {
"build": "./node_modules/.bin/rollup -c",
"dev": "./node_modules/.bin/rollup -cw --environment DEV & ./node_modules/.bin/http-server",
"test": "./node_modules/jest/bin/jest.js",
"lint": "./node_modules/.bin/eslint src/ test/",
"release": "./scripts/release.sh"
},
"author": "HOVER Inc",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"babel-jest": "^26.0.1",
"dat.gui": "^0.7.6",
"eslint": "^7.8.1",
"http-server": "^0.12.3",
"jest": "^26.0.1",
"release-it": "^14.0.2",
"rollup": "^2.26.10",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-node-resolve": "^5.2.0",
"stats.js": "^0.17.0",
"three": "^0.107.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hoverinc/ray-tracing-renderer.git"
},
"keywords": [
"path-tracing",
"ray-tracing",
"global-illumination",
"webgl2",
"bvh",
"three.js"
],
"bugs": {
"url": "https://github.com/hoverinc/ray-tracing-renderer/issues"
},
"homepage": "https://hoverinc.github.io/ray-tracing-renderer/"
}