forked from maierfelix/webgpu
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.2 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
49
50
{
"name": "webgpu",
"main": "index.js",
"version": "0.1.16",
"engines": {
"node": ">= 13.0.0"
},
"config": {
"DAWN_PATH": "PATH_TO_DAWN",
"NODE_API_PATH": "PATH_TO_NODE_API",
"NODE_ADDON_API_PATH": "PATH_TO_NODE_ADDON_API",
"GEN_OUT_DIR": "./generated",
"SPEC_DIR": "./generator/specifications",
"TEMPLATE_DIR": "./generator/templates"
},
"scripts": {
"build": "node ./build.js",
"generate": "node --experimental-modules --experimental-json-modules ./generator/index.mjs",
"all": "npm run generate && npm run build",
"tests": "node --experimental-modules tests/index.mjs"
},
"devDependencies": {
"ncp": "^2.0.0",
"nunjucks": "^3.2.0"
},
"dependencies": {},
"description": "WebGPU for Node [WIP]",
"repository": {
"type": "git",
"url": "git+https://github.com/maierfelix/webgpu.git"
},
"keywords": [
"webgpu",
"vulkan",
"dawn",
"gpu",
"gpgpu"
],
"author": "Felix Maier",
"license": "MIT",
"bugs": {
"url": "https://github.com/maierfelix/webgpu/issues"
},
"homepage": "https://github.com/maierfelix/webgpu#readme",
"directories": {
"example": "examples",
"lib": "lib",
"test": "tests"
}
}