forked from wilix-team/iohook
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
104 lines (103 loc) · 2.37 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
{
"name": "iohook",
"version": "1.0.0",
"description": "Node.js global keyboard and mouse hook",
"author": "Babar Saleh Hayat",
"license": "MIT",
"homepage": "https://github.com/utf26/iohook",
"repository": {
"type": "git",
"url": "git+https://github.com/utf26/iohook.git"
},
"bugs": {
"url": "https://github.com/utf26/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.2.0",
"pump": "^3.0.0",
"rc": "^1.2.8",
"tar-fs": "^3.0.4"
},
"devDependencies": {
"@types/node": "^20.10.7",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-prettier": "^5.1.2",
"fs-extra": "^11.2.0",
"gh-pages": "^6.1.1",
"htmlhint": "^1.1.4",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.2.0",
"minimist": "^1.2.8",
"nan": "^2.18.0",
"node-abi": "^3.54.0",
"node-gyp": "^10.0.1",
"prebuild": "^12.1.0",
"prettier": "^3.1.1",
"robotjs": "^0.6.0",
"tar": "^6.2.0",
"vuepress": "^1.9.10"
},
"supportedTargets": [
[
"electron",
"28.0.0",
"119"
],
[
"node",
"18.0.0",
"108"
]
]
}