forked from ludvigStrom/Kompetter-Companion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.52 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
{
"name": "kompetter-companion",
"version": "0.1.0",
"description": "Companion app tp Kompetter-X macro keyboard",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron .",
"build": "electron-builder"
},
"author": "Ludvig Ström",
"license": "ISC",
"build": {
"appId": "com.kompetter.companion",
"productName": "Kompetter Companion",
"mac": {
"category": "public.app-category.utilities",
"target": [
"default",
"dmg"
],
"icon": "images/icon/mac/icon_mac.icns",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "entitlements.mac.plist",
"entitlementsInherit": "entitlements.mac.plist",
"extendInfo": {
"CFBundleDisplayName": "Kompetter Companion",
"CFBundleExecutable": "Kompetter Companion",
"NSAppleEventsUsageDescription": "Please allow access to script browser applications to detect the current URL when triggering instant lookup."
}
},
"win": {
"target": "nsis",
"icon": "images/icon/win/icon_win.ico"
},
"linux": {
"target": [
"AppImage",
"deb"
],
"category": "Utility",
"icon": "images/kompetter_companion_logo.png"
}
},
"dependencies": {
"active-win": "^8.1.0",
"node-hid": "^2.1.2",
"node-process-windows": "^0.0.2",
"usb-detection": "^4.14.2"
},
"devDependencies": {
"electron": "^25.8.4",
"electron-rebuild": "^3.2.9"
}
}