-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 865 Bytes
/
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
{
"name": "@footgun/cobalt",
"version": "0.3.2",
"type": "module",
"main": "bundle.js",
"description": "A 2D WebGpu renderer",
"homepage": "https://github.com/mreinstein/cobalt",
"keywords": [
"webgpu",
"game",
"renderer",
"2d",
"graphics"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:mreinstein/cobalt.git"
},
"author": "Michael Reintein",
"scripts": {
"build": "node esbuild.js",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@hyrious/esbuild-plugin-http": "^0.1.5",
"@webgpu/types": "^0.1.51",
"esbuild": "^0.24.0",
"esbuild-plugin-glsl": "^1.1.0"
},
"dependencies": {
"cdt2d": "^1.0.0",
"poly-to-pslg": "^1.0.1",
"remove-array-items": "^3.0.0",
"round-half-up-symmetric": "^2.0.0",
"wgpu-matrix": "^3.3.0"
}
}