-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
97 lines (97 loc) · 1.94 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
{
"name": "@mechakeys/iohook",
"version": "1.1.1",
"description": "Node.js global keyboard and mouse hook",
"author": "Robolab",
"license": "MIT",
"main": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/robolab-io/iohook.git"
},
"scripts": {
"build": "node build.js --upload=false",
"build:ci": "node build.js --all --openssl_fips=''",
"build:print": "node -e 'require(\"./helpers\").printManualBuildParams()'"
},
"keywords": [
"hook",
"electron",
"nw.js",
"listener",
"mousemove",
"keypress",
"keyup",
"global keypress",
"shortcut"
],
"lint-staged": {
"examples/**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"docs/**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"test/**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"nan": "github:robolab-io/nan#remove_accessor_signature",
"nugget": "^2.0.1",
"pump": "^1.0.3",
"rc": "^1.2.8",
"tar-fs": "^1.16.3"
},
"devDependencies": {
"@electron/rebuild": "^3.2.13",
"@types/node": "^7.0.62",
"electron": "^25.3.0",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-only-warn": "^1.0.2",
"eslint-plugin-prettier": "^3.4.0",
"fs-extra": "^11.1.1",
"minimist": "^1.2.5",
"node-abi": "^3.45.0",
"node-gyp": "^9.4.0",
"prebuild": "^11.0.4",
"prettier": "^3.0.0",
"tar": "^6.1.15"
},
"supportedTargets": [
[
"electron",
"25.0.0",
"116"
],
[
"electron",
"24.0.0",
"114"
],
[
"electron",
"23.0.0",
"113"
],
[
"electron",
"22.0.0",
"110"
],
[
"node",
"18.0.0",
"108"
]
]
}