-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 982 Bytes
/
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
{
"name": "vjoy",
"version": "1.3.0",
"description": "Native Node bindings for the vjoy virtual joystick driver",
"main": "index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"install": "node-gyp rebuild",
"build": "node-gyp build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jangxx/node-vjoy.git"
},
"keywords": [
"vjoy",
"bindings",
"native",
"virtual",
"gamepad"
],
"author": "jangxx <jangxx@protonmail.com>",
"license": "MIT",
"gypfile": true,
"bugs": {
"url": "https://github.com/jangxx/node-vjoy/issues"
},
"homepage": "https://github.com/jangxx/node-vjoy#readme",
"dependencies": {
"node-addon-api": "^2.0.2"
},
"engines": {
"node": ">=8.0.0"
},
"os": [
"win32"
],
"cpu": [
"x64",
"ia32"
],
"types": "index.d.ts",
"devDependencies": {
"@types/node": "^20.5.0"
}
}