-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 930 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 930 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
38
39
40
41
42
{
"name": "@footgun/cobalt",
"version": "0.12.0",
"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": "git@github.com:mreinstein/cobalt.git"
},
"author": "Michael Reintein",
"scripts": {
"build": "node esbuild.js",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@webgpu/types": "^0.1.51",
"esbuild": "^0.28.1",
"esbuild-plugin-glsl": "^1.1.0"
},
"dependencies": {
"cdt2d": "^1.0.0",
"remove-array-items": "^3.0.0",
"round-half-up-symmetric": "^2.0.0",
"wgpu-matrix": "^3.3.0"
},
"workspaces": [
"packages/typedarray-pool",
"packages/box-intersect",
"packages/clean-pslg",
"packages/poly-to-pslg"
]
}