forked from wilix-team/iohook
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
113 lines (113 loc) · 2.5 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
{
"name": "@spacek33z/iohook",
"version": "0.12.0",
"description": "Node.js global keyboard and mouse hook",
"author": "Aloyan Dmitry",
"license": "MIT",
"homepage": "https://github.com/SpaceK33z/iohook",
"repository": {
"type": "git",
"url": "git+https://github.com/SpaceK33z/iohook.git"
},
"bugs": {
"url": "https://github.com/SpaceK33z/iohook/issues"
},
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"install": "node install.js",
"build": "node build.js --upload=false",
"build:ci": "node build.js --all",
"build:print": "node -e 'require(\"./helpers\").printManualBuildParams()'",
"test": "jest",
"lint:dry": "eslint --ignore-path .lintignore .",
"lint:fix": "eslint --ignore-path .lintignore --fix . && prettier --ignore-path .lintignore --write .",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"docs:deploy": "npm run docs:build && gh-pages -d docs/.vuepress/dist/"
},
"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"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"nugget": "^2.0.1",
"pump": "^1.0.3",
"rc": "^1.2.8",
"tar-fs": "^1.16.3"
},
"devDependencies": {
"@types/node": "^7.0.62",
"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": "^9.0.1",
"gh-pages": "^3.2.0",
"htmlhint": "^0.15.1",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lint-staged": "^11.0.0",
"minimist": "^1.2.5",
"nan": "^2.15.0",
"node-abi": "^3.54.0",
"node-gyp": "^9.0.0",
"prebuild": "^10.0.1",
"prettier": "^2.3.1",
"robotjs": "^0.6.0",
"tar": "^6.0.5",
"vuepress": "^1.7.1"
},
"supportedTargets": [
[
"node",
"16.0.0",
"93"
],
[
"node",
"18.0.0",
"108"
],
[
"electron",
"17.0.0",
"101"
],
[
"electron",
"18.0.0",
"103"
]
]
}