-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 933 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
39
40
{
"name": "mini-gpu",
"version": "0.3.1",
"license": "MIT",
"homepage": "https://isjackwild.com",
"author": "Jack Wild <[email protected]> (https://isjackwild.com)",
"description": "A mini library for working with WebGPU",
"repository": {
"type": "git",
"url": "https://github.com/isjackwild/mini-gpu"
},
"keywords": [
"javascript",
"canvas",
"webgpu",
"wgsl"
],
"type": "module",
"files": [
"/dist"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"browserslist": "> 0.5%, last 2 versions, not dead",
"scripts": {
"watch": "tsc --watch",
"build": "tsc",
"docs": "typedoc --out docs src/index.ts"
},
"devDependencies": {
"@types/node": "^18.11.9",
"@webgpu/types": "^0.1.21",
"typedoc": "^0.24.8",
"typedoc-plugin-missing-exports": "^2.0.0",
"typescript": "^4.6.4"
},
"dependencies": {
"gl-matrix": "^3.4.3"
}
}