-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 981 Bytes
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 981 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
43
44
45
46
{
"name": "@g3rmania/tinygpu",
"version": "0.1.7",
"description": "A minimal framework for WebGPU in the browser",
"keywords": [
"webgpu",
"graphics",
"3d",
"canvas",
"html5"
],
"homepage": "https://github.com/bclarke123/tinygpu#readme",
"bugs": {
"url": "https://github.com/bclarke123/tinygpu/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bclarke123/tinygpu.git"
},
"license": "MIT",
"author": "Ben Clarke <me@benclarke.ca>",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "bun scripts/build.ts",
"dev": "bun scripts/dev.ts"
},
"dependencies": {
"wgpu-matrix": "^3.4.0"
},
"devDependencies": {
"@types/bun": "latest",
"@webgpu/types": "^0.1.60",
"typescript": "^5.8.3"
}
}