-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 834 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 834 Bytes
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
{
"name": "eclipse",
"description": "🌙 Real-time ray tracing for the Web",
"type": "module",
"files": [
"dist"
],
"main": "./dist/eclipse.umd.js",
"module": "./dist/eclipse.mjs",
"exports": {
".": {
"import": "./dist/eclipse.mjs",
"require": "./dist/eclipse.umd.js"
}
},
"devDependencies": {
"@types/node": "20.11.5",
"@types/stats": "^0.16.30",
"@types/stats.js": "^0.17.3",
"@webgpu/types": "^0.1.40",
"gts": "^5.3.0",
"maxrects-packer": "^2.7.3",
"stats.js": "^0.17.0",
"typescript": "~5.4.3",
"vite": "^5.2.8",
"vite-raw-plugin": "^1.0.2",
"wgpu-matrix": "^2.8.0"
},
"scripts": {
"lint": "gts lint",
"clean": "tsc --build --clean",
"compile": "tsc",
"build": "vite build",
"dev": "vite",
"fix": "gts fix"
}
}