forked from sentialx/mouse-hooks
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.01 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
{
"name": "mouse-hooks",
"version": "0.4.1",
"description": "Global mouse events listener for Node.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"rebuild": "node-gyp rebuild",
"prepublishOnly": "npm run build",
"install": "npm run rebuild"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sentialx/mouse-hooks.git"
},
"keywords": [
"mouse-hooks",
"native",
"macos",
"linux",
"windows"
],
"author": "sentialx",
"license": "MIT",
"bugs": {
"url": "https://github.com/sentialx/mouse-hooks/issues"
},
"homepage": "https://github.com/sentialx/mouse-hooks#readme",
"dependencies": {
"bindings": "1.5.0",
"node-gyp": "5.0.2",
"node-addon-api": "1.6.3"
},
"files": [
"mouse.js",
"lib/",
"dist/",
"binding.gyp",
"install.js"
],
"devDependencies": {
"tslint": "5.18.0",
"@types/node": "12.6.2",
"typescript": "3.5.3"
}
}