-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
48 lines (48 loc) · 1.38 KB
/
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
41
42
43
44
45
46
47
48
{
"version": "0.2.0",
"name": "@kmamal/gpu",
"description": "WebGPU for Node.js via Google Dawn",
"keywords": [
"webgpu",
"gpu",
"shader",
"compute",
"dawn"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:kmamal/gpu.git"
},
"main": "./src/index.js",
"types": "./src/index.d.ts",
"exports": "./src/index.js",
"scripts": {
"install": "cd scripts && node install.mjs",
"download-release": "cd scripts && node download-release.mjs",
"build": "cd scripts && node build.mjs",
"download-depot-tools": "cd scripts && node download-depot-tools.mjs",
"download-dawn": "cd scripts && node download-dawn.mjs",
"configure": "cd scripts && node configure.mjs",
"make": "cd scripts && node make.mjs",
"upload-release": "cd scripts && node upload-release.mjs",
"release": "cd scripts && node release.mjs",
"clean": "cd scripts && node clean.mjs"
},
"dependencies": {
"node-addon-api": "^8.3.1",
"node-gyp": "^11.1.0",
"tar": "^7.4.3"
},
"depotTools": {
"url": "https://chromium.googlesource.com/chromium/tools/depot_tools.git",
"commit": "cf5b6bd0cbc9a4a149818d0306a73723ddce5903"
},
"dawn": {
"url": "https://dawn.googlesource.com/dawn",
"commit": "ddf744c3326de9291039d88f207981f205c7704a"
},
"devDependencies": {
"@types/node": "^22.13.5"
}
}