forked from gkjohnson/three-gpu-pathtracer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.58 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "three-gpu-pathtracer",
"version": "0.0.1",
"description": "Path tracing renderer and utilities for three.js built on top of three-mesh-bvh.",
"module": "src/index.js",
"main": "build/index.umd.cjs",
"type": "module",
"sideEffects": false,
"files": [
"src/*",
"build/*"
],
"keywords": [
"webgl",
"threejs",
"performance",
"geometry",
"graphics",
"mesh",
"renderer",
"raytracing",
"bvh",
"three-js",
"path-tracing",
"three-mesh-bvh"
],
"dependencies": {
"three-mesh-bvh": "^0.5.10"
},
"devDependencies": {
"concurrently": "^6.3.0",
"eslint": "^7.32.0",
"eslint-config-mdcs": "^5.0.0",
"parcel": "^2.4.0",
"process": "^0.11.10",
"rollup": "^2.70.0",
"three": "^0.139.2"
},
"peerDependencies": {
"xatlas-web": "^0.1.0",
"three": "^0.139.2"
},
"scripts": {
"start": "concurrently \"cd example && parcel serve ./*.html --dist-dir ./dev-bundle/ --no-cache --no-hmr\"",
"build-examples": "cd example && parcel build ./*.html --dist-dir ./bundle/ --public-url . --no-cache --no-content-hash",
"build": "rollup -c",
"lint": "eslint \"./src/**/*.{js,ts}\" \"./example/*.js\"",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gkjohnson/three-gpu-pathtracer.git"
},
"author": "Garrett Johnson <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gkjohnson/three-gpu-pathtracer/issues"
},
"homepage": "https://github.com/gkjohnson/three-gpu-pathtracer#readme"
}