-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
55 lines (55 loc) · 1.13 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
{
"name": "uiohook-napi",
"version": "1.5.4",
"author": {
"name": "Alexander Drozdov"
},
"repository": {
"type": "git",
"url": "https://github.com/SnosMe/uiohook-napi.git"
},
"license": "MIT",
"keywords": [
"iohook",
"uiohook",
"libuiohook",
"hook",
"input",
"keyboard",
"mouse"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"install": "node-gyp-build",
"prebuild": "prebuildify --napi",
"build-ts": "tsc",
"demo": "ts-node src/demo.ts",
"make-libuiohook-patch": "git -C ./libuiohook diff --cached > ./src/libuiohook.patch",
"apply-libuiohook-patch": "git -C ./libuiohook apply ../src/libuiohook.patch"
},
"files": [
"dist",
"binding.gyp",
"libuiohook/src",
"libuiohook/include",
"src/lib",
"prebuilds"
],
"devDependencies": {
"@types/node": "18.x.x",
"prebuildify": "5.x.x",
"ts-node": "10.x.x",
"typescript": "4.x.x"
},
"dependencies": {
"node-gyp-build": "4.x.x"
},
"prebuild": {
"test": "dist/prebuild-test-noop.js"
},
"gypfile": true,
"engines": {
"node": ">= 16"
}
}