-
-
Notifications
You must be signed in to change notification settings - Fork 162
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.19 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.19 KB
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
79
80
81
82
83
84
85
{
"name": "three-gpu-pathtracer",
"version": "0.0.24",
"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",
"exports": {
".": {
"import": "./src/index.js",
"require": "./build/index.umd.cjs"
},
"./src/*": "./src/*"
},
"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.6.0",
"@monogrid/gainmap-js": "^3.0.5",
"@types/node": "^24.3.1",
"@types/three": "^0.181.0",
"@typescript-eslint/eslint-plugin": "^8.40.0",
"canvas-capture": "^2.0.5",
"eslint": "^8.56.0",
"eslint-config-mdcs": "^5.0.0",
"node-fetch": "^3.2.9",
"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.181.1",
"three-mesh-bvh": "^0.9.5",
"typescript": "^5.9.2",
"vite": "^6.2.2",
"yargs": "^17.5.1"
},
"peerDependencies": {
"three": ">=0.180.0",
"three-mesh-bvh": ">=0.7.4",
"xatlas-web": "^0.1.0"
},
"scripts": {
"start": "vite --config ./vite.config.js",
"build-examples": "vite build --config ./vite.config.js",
"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 <garrett.kjohnson@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gkjohnson/three-gpu-pathtracer/issues"
},
"homepage": "https://github.com/gkjohnson/three-gpu-pathtracer#readme"
}