-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.73 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
{
"name": "desktop-hotkeys",
"version": "1.5.13",
"description": "This package provides press/release callbacks for system-wide hotkeys on Windows and Mac",
"main": "index.js",
"gypfile": true,
"scripts": {
"install": "node-pre-gyp install --fallback-to-build",
"make": "node-pre-gyp rebuild --build-from-source package publish",
"make32": "node-pre-gyp rebuild --build-from-source --verbose --target_arch=ia32 package publish",
"make64": "node-pre-gyp rebuild --build-from-source --verbose --target_arch=x64 package publish",
"makeM1": "node-pre-gyp rebuild --build-from-source --verbose --target_arch=arm64 package publish",
"maked": "node-pre-gyp rebuild --build-from-source --debug --verbose",
"test": "echo \"Test not applicable\""
},
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/zelloptt/desktop-hotkeys.git"
},
"keywords": [
"GlobalHotkey"
],
"author": "Zello Inc",
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/zelloptt/desktop-hotkeys/issues"
},
"binary": {
"module_name": "desktop_hotkeys",
"module_path": "./lib/binding/napi-v{napi_build_version}",
"remote_path": "./{module_name}/v{version}/{configuration}",
"host": "https://zello-desktop.s3.amazonaws.com",
"package_name": "napi-v{napi_build_version}-{platform}-{arch}.tar.gz",
"napi_versions": [
4
]
},
"homepage": "https://github.com/zelloptt/desktop-hotkeys#readme",
"devDependencies": {
"aws-sdk": "2.1291.0",
"np": "7.6.3"
},
"np": {
"yarn": false,
"anyBranch": true
},
"dependencies": {
"@mapbox/node-pre-gyp": "1.0.10",
"node-addon-api": "5.0.0",
"node-gyp": "9.3.1"
}
}