-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 2.08 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
72
73
74
{
"name": "vulkan-api",
"main": "index.js",
"version": "0.9.3",
"engines": {
"node": ">= 16.4.0"
},
"config": {
"OUTDATED": [],
"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"
},
"types": "./generated/1.2.162/win32/index.d.ts",
"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",
"pack": "npm pack --dry-run",
"publish": "npm init & npm publish ",
"postinstall": "node postInstall.js"
},
"devDependencies": {
"ncp": "^2.0.0",
"node-addon-api": "^4.0.0",
"nunjucks": "^3.2.3",
"terser": "^3.2.2",
"toposort": "^2.0.2",
"xml-js": "^1.6.11",
"yauzl": "^2.10.0"
},
"description": "Vulkan API for JavaScript/TypeScript",
"repository": {
"type": "git",
"url": "git+https://github.com/sboron/vulkan-api-ts.git"
},
"keywords": [
"vulkan",
"gpgpu",
"compute",
"graphics"
],
"author": "Felix Maier & S. Boronczyk",
"license": "MIT",
"bugs": {
"url": "https://github.com/sboron/vulkan-api-ts/issues"
},
"homepage": "https://github.com/sboron/vulkan-api-ts#readme",
"directories": {
"doc": "docs",
"example": "examples",
"lib": "lib"
},
"dependencies": {
"a-sync-waterfall": "^1.0.1",
"asap": "^2.0.6",
"buffer-crc32": "^0.2.13",
"buffer-from": "^1.1.1",
"commander": "^8.0.0",
"fd-slicer": "^1.1.0",
"pend": "^1.2.0",
"sax": "^1.2.4",
"source-map": "^0.7.3",
"source-map-support": "^0.5.19"
}
}