-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
executable file
·71 lines (71 loc) · 1.79 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "nvk",
"main": "index.js",
"version": "0.8.0",
"engines": {
"node": ">= 15.4.0"
},
"config": {
"OUTDATED": [
"1.1.82",
"1.1.85",
"1.1.92",
"1.1.97",
"1.1.101",
"1.1.106",
"1.1.108",
"1.1.114",
"1.1.121",
"1.1.126",
"1.2.135"
],
"GEN_OUT_DIR": "./generated",
"SPEC_DIR": "./generator/specifications",
"TEMPLATE_DIR": "./generator/templates",
"POST_DEFAULT_BINDING_VERSION": "1.2.162",
"TS_ROOT": "../../../index",
"INTERFACE_ROOT": "../../../index",
"DOCS_DIR": "./docs",
"MAC_ICD_PATH": "Contents/Resources/vulkan/icd.d/MoltenVK_icd.json",
"LINK_MDN_GOBJECTS": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects",
"DISCORD_SERVER_INVITE_LINK": "https://discord.gg/86Z3cGe"
},
"scripts": {
"build": "node ./build.js",
"generate": "node --experimental-modules --experimental-json-modules ./generator/index.mjs",
"release": "node ./make-release.js",
"all": "npm run generate --docs & npm run build & npm run release"
},
"devDependencies": {
"ncp": "^2.0.0",
"node-addon-api": "^3.1.0",
"nunjucks": "^3.1.3",
"terser": "^3.2.2",
"toposort": "^2.0.2",
"xml-js": "^1.6.11",
"yauzl": "^2.10.0"
},
"dependencies": {},
"description": "Vulkan API for JavaScript/TypeScript",
"repository": {
"type": "git",
"url": "git+https://github.com/maierfelix/nvk.git"
},
"keywords": [
"vulkan",
"gpgpu",
"compute",
"graphics"
],
"author": "Felix Maier",
"license": "MIT",
"bugs": {
"url": "https://github.com/maierfelix/nvk/issues"
},
"homepage": "https://github.com/maierfelix/nvk#readme",
"directories": {
"doc": "docs",
"example": "examples",
"lib": "lib"
}
}