-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
67 lines (67 loc) · 1.74 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
{
"name": "node-interception",
"version": "2.0.4",
"description": "A windows library for intercepting and controlling keyboards and mouses with multiple devices support.",
"repository": "https://github.com/Rami-Sabbagh/node-interception.git",
"homepage": "https://rami-sabbagh.github.io/node-interception/",
"bugs": "https://github.com/Rami-Sabbagh/node-interception/issues",
"author": "Rami Sabbagh <[email protected]> (https://rami-sabbagh.github.io/)",
"keywords": [
"interception",
"automation",
"keyboard",
"mouse",
"addon",
"windows",
"binding",
"hid"
],
"main": "dist/cjs/lib/index.js",
"module": "dist/esm/lib/index.js",
"types": "dist/esm/lib/index.d.ts",
"license": "LGPL-3.0-or-later",
"private": false,
"gypfile": true,
"sideEffects": false,
"scripts": {
"install": "node-gyp-build",
"docs": "typedoc",
"build-lib": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json",
"build-addon": "prebuildify --napi --arch=ia32 && prebuildify --napi --arch=x64 && node-gyp clean",
"prepublishOnly": "yarn build-addon && yarn build-lib"
},
"bin": {
"install-interception": "./interception/driver/install-interception.exe"
},
"files": [
"dist/",
"prebuilds/",
"binding.gyp",
"src/",
"interception/driver",
"interception/LICENSE",
"interception/README.md"
],
"devDependencies": {
"@types/node": "^16.4.13",
"node-gyp": "^8.1.0",
"prebuildify": "^5.0.0",
"ts-node": "^10.2.0",
"typedoc": "^0.22.2",
"typescript": "^4.3.5"
},
"dependencies": {
"node-addon-api": "^4.0.0",
"node-gyp-build": "^4.2.3"
},
"engines": {
"node": ">=12.0.0"
},
"os": [
"win32"
],
"cpu": [
"x64",
"ia32"
]
}