-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.41 KB
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
49
50
{
"version": "0.2.1",
"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://git@github.com: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": {
"tar": "^7.4.3"
},
"config": {
"depotTools": {
"url": "https://chromium.googlesource.com/chromium/tools/depot_tools.git",
"commit": "5b7fcc4bb71bbbf952a5283fbd621256905be31b"
},
"dawn": {
"url": "https://dawn.googlesource.com/dawn",
"commit": "029eb3459232f0507d737c0ba3e8e82be3572251"
}
},
"devDependencies": {
"@types/node": "^22.13.5",
"node-addon-api": "^8.3.1",
"node-gyp": "^11.1.0"
}
}