-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1018 Bytes
/
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
{
"name": "native-mouse",
"version": "1.2.0",
"description": "Native Mouse events",
"author": "Hans Koch",
"bugs": {
"url": "https://github.com/Hammster/native-mouse/issues"
},
"homepage": "https://github.com/Hammster/native-mouse",
"main": "index.js",
"typings": "./index.d.ts",
"scripts": {
"build:dev": "node-gyp -j 16 build --debug",
"build": "node-gyp -j 16 build",
"rebuild:dev": "node-gyp -j 16 rebuild --debug",
"rebuild": "node-gyp -j 16 rebuild",
"clean": "node-gyp clean",
"test": "node -r esm ./test/index.js",
"rebuild:dev-electron": "node-gyp -j 16 rebuild --debug --arch=x64 --dist-url=https://electronjs.org/headers"
},
"keywords": [
"track",
"mouse",
"events",
"windows",
"mac",
"osx",
"native",
"screen",
"display",
"position"
],
"license": "MIT",
"dependencies": {
"bindings": "^1.5.0",
"nan": "^2.14.0"
},
"devDependencies": {
"@types/node": "^12.6.9",
"esm": "^3.2.25"
}
}