-
-
Notifications
You must be signed in to change notification settings - Fork 133
/
package.json
78 lines (78 loc) · 2.16 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "three-gpu-pathtracer",
"version": "0.0.23",
"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",
"types": "src/index.d.ts",
"sideEffects": false,
"files": [
"src/*",
"build/*"
],
"keywords": [
"webgl",
"threejs",
"performance",
"geometry",
"graphics",
"mesh",
"renderer",
"raytracing",
"bvh",
"three-js",
"path-tracing",
"three-mesh-bvh",
"rtx",
"path-tracer",
"path",
"tracer"
],
"devDependencies": {
"@lookingglass/webxr": "^0.3.1",
"@monogrid/gainmap-js": "^3.0.5",
"@types/node": "^20.12.7",
"@types/three": "^0.163.0",
"@typescript-eslint/parser": "^6.21.0",
"canvas-capture": "^2.0.5",
"eslint": "^7.32.0",
"eslint-config-mdcs": "^5.0.0",
"node-fetch": "^3.2.9",
"parcel": "^2.12.0",
"pixelmatch": "^5.3.0",
"pngjs": "^6.0.0",
"process": "^0.11.10",
"puppeteer": "^15.4.0",
"rollup": "^2.70.0",
"simple-git": "^3.10.0",
"three": "^0.163.0",
"three-mesh-bvh": "^0.7.4",
"typescript": "5.3.3",
"yargs": "^17.5.1"
},
"peerDependencies": {
"three": ">=0.151.0",
"three-mesh-bvh": ">=0.7.4",
"xatlas-web": "^0.1.0"
},
"scripts": {
"start": "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",
"update-screenshots": "node ./scripts/push-screenshots.js",
"screenshot-diff": "node ./scripts/regression-test.js",
"build": "rollup -c",
"lint": "eslint \"./src/**/*.{js,ts}\" \"./example/*.js\" && tsc --noEmit",
"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"
}