forked from wilix-team/iohook
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
124 lines (124 loc) · 2.04 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "iohook",
"version": "0.6.6",
"description": "Node.js global keyboard and mouse hook",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"install": "node install.js",
"install-all": "node install.js --all",
"build": "cmake-js compile",
"deploy": "node build.js",
"test": "jest",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wilix-team/iohook.git"
},
"keywords": [
"hook",
"electron",
"nw.js",
"listener",
"mousemove",
"keypress",
"keyup",
"global keypress",
"shortcut"
],
"author": "Aloyan Dmitry",
"license": "MIT",
"bugs": {
"url": "https://github.com/wilix-team/iohook/issues"
},
"homepage": "https://github.com/wilix-team/iohook#readme",
"dependencies": {
"bindings": "^1.3.0",
"node-abi": "^2.4.0",
"nugget": "^2.0.1",
"pump": "^1.0.3",
"rc": "^1.2.8",
"tar-fs": "^1.16.2"
},
"devDependencies": {
"@types/node": "^7.0.62",
"archiver": "^2.1.1",
"cmake-js": "github:crtxgg/cmake-js#anoa/delay_generator",
"jest": "^22.4.3",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"nan": "^2.13.2",
"prebuild": "^6.2.2",
"robotjs": "^0.5.1",
"vuepress": "^0.14.4"
},
"supportedTargets": [
[
"electron",
"4.0.4",
"69"
],
[
"electron",
"5.0.0",
"70"
],
[
"electron",
"6.0.0",
"73"
],
[
"electron",
"7.0.0",
"75"
],
[
"electron",
"8.0.0",
"76"
],
[
"electron",
"9.0.0",
"80"
],
[
"node",
"8.9.3",
"57"
],
[
"node",
"9.2.0",
"59"
],
[
"node",
"10.0.0",
"64"
],
[
"node",
"11.4.0",
"67"
],
[
"node",
"12.0.0",
"72"
],
[
"node",
"13.0.0",
"79"
],
[
"node",
"14.0.0",
"83"
]
]
}