-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.45 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.45 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "bgfx",
"version": "0.89.0",
"description": "Node bindings to BGFX",
"homepage": "https://github.com/node-xr/node-bgfx#readme",
"license": "MIT",
"keywords": [
"glfw",
"bgfx",
"vr",
"3d",
"graphics"
],
"author": "Pras Velagapudi <psigen@gmail.com>",
"maintainers": [
{
"name": "Pras Velagapudi",
"email": "psigen@gmail.com"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/node-xr/node-bgfx.git"
},
"bugs": {
"url": "https://github.com/node-xr/node-bgfx/issues"
},
"main": "lib/index.js",
"scripts": {
"generate": "node ./gen/generate.js",
"build": "node-gyp rebuild",
"lint": "eslint .",
"test": "jest --bail"
},
"directories": {
"src": "src",
"lib": "lib",
"test": "test"
},
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"bindings": "^1.5.0",
"flat-cache": "^2.0.1",
"tmp-promise": "^2.0.2"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-syntax-bigint": "^7.7.4",
"eslint": "^6.7.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"fengari": "^0.1.4",
"gl-matrix": "^3.1.0",
"jest": "^24.9.0",
"napi-bind": "^0.2.0",
"prettier": "^1.19.1",
"sdl2": "github:node-xr/node-sdl2",
"sharp": "^0.23.3"
}
}