-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.09 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": "b0xx-input-viewer",
"version": "1.2.0",
"description": "B0XX Input Viewer using NodeJS and Electron.",
"main": "main.js",
"scripts": {
"start": "electron ."
},
"repository": {
"url": "github:SimpleControllers/b0xx-input-viewer"
},
"keywords": [
"B0XX",
"Input",
"Viewer",
"Game",
"Controller"
],
"author": "20XX Corp",
"license": "LGPL-2.1-only",
"devDependencies": {
"electron": "^17.0.0",
"electron-builder": "^24.6.3"
},
"dependencies": {
"electron-log": "^4.4.8",
"electron-updater": "^6.1.1",
"serialport": "^10.3.0",
"tableify": "^1.1.1"
},
"build": {
"appId": "com.b0xx.inputviewer",
"productName": "B0XX Input Viewer",
"linux": {
"target": [
"AppImage"
],
"category": "Utility",
"icon": "icons/B0XX.icns"
},
"win": {
"target": [
"nsis"
],
"icon": "icons/[email protected]"
},
"mac": {
"target": [
"default"
],
"category": "public.app-category.utilities",
"icon": "icons/B0XX.icns"
}
}
}