-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
82 lines (82 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
75
76
77
78
79
80
81
82
{
"name": "raylib",
"version": "0.14.0",
"description": "Node.js bindings for raylib.",
"main": "index.js",
"types": "src/generated/node-raylib.d.ts",
"scripts": {
"start": "bin/node-raylib examples/core/core_basic_window.js",
"benchmark": "bin/node-raylib examples/textures/textures_bunnymark.js",
"test": "vitest run --globals --reporter verbose",
"test:watch": "vitest --globals --ui",
"posttest": "standard tools test examples index.js",
"test:fix": "standard --fix",
"postinstall": "node tools/postinstall.js || npm run compile",
"clean": "rm -rf build",
"precompile": "npm i --no-save node-addon-api cmake-js",
"compile": "cmake-js compile",
"precompile-drm": "npm i --no-save node-addon-api cmake-js",
"compile-drm": "cmake-js compile --CDPLATFORM=DRM",
"prepkg": "npm run build",
"pkg": "node tools/pkg.js",
"gen:code": "node tools/generate.js",
"gen:docs": "jsdoc2md > docs/API.md"
},
"repository": "github:RobLoach/node-raylib",
"engines": {
"node": ">=10"
},
"bin": "./bin/node-raylib",
"man": "./man/node-raylib.1",
"keywords": [
"raylib"
],
"author": {
"name": "Rob Loach",
"url": "https://robloach.net"
},
"contributors": [
{
"name": "konsumer",
"url": "https://keybase.io/konsumer"
},
{
"name": "twuky",
"url": "http://tuckie.zone"
}
],
"license": "Zlib",
"files": [
"bin/*",
"man/node-raylib.1",
"src/*",
"src/generated/*",
"CMakeLists.txt",
"index.js",
"CHANGELOG.md",
"tools/postinstall.js",
"drm/*"
],
"bugs": {
"url": "https://github.com/RobLoach/node-raylib/issues"
},
"homepage": "https://github.com/RobLoach/node-raylib",
"dependencies": {
"cross-fetch": "^3.1.5",
"module-alias": "^2.2.2"
},
"devDependencies": {
"@raylib/api": "~4.5.0",
"@vitest/ui": "^0.29.7",
"archiver": "^5.3.1",
"jsdoc-to-markdown": "^8.0.0",
"pkg": "^5.8.1",
"standard": "^17.0.0",
"vitest": "^0.29.7"
},
"jsdoc2md": {
"files": [
"src/generated/node-raylib.js"
]
}
}