-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.97 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.97 KB
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
57
58
59
60
61
62
63
64
65
66
67
{
"name": "MacroPad",
"productName": "MacroPad",
"version": "1.0.20",
"description": "Macropad Configurator",
"main": "main.js",
"scripts": {
"start-dev": "electron . --dev",
"start-prod": "electron-builder && .\\dist\\win-unpacked\\MacroPad.exe . --dev",
"build": "electron-builder",
"publish": "electron-builder --publish always"
},
"repository": "https://github.com/xmow49/MacroPad-Software",
"author": "GammaTroniques",
"license": "CC0-1.0",
"build": {
"appId": "Macropad",
"win": {
"target": [
"nsis"
],
"publish": [
"github"
],
"icon": "src/imgs/icon.ico"
},
"nsis": {
"installerIcon": "src/imgs/icon.ico",
"uninstallerIcon": "src/imgs/icon.ico",
"uninstallDisplayName": "MacroPad",
"license": "license.txt",
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"extraResources": [{
"from": "volume_control",
"to": "volume_control"
},
{
"from": "firmware_updater",
"to": "firmware_updater"
}
]
},
"devDependencies": {
"@mdi/font": "^6.5.95",
"electron": "^13.6.9",
"electron-builder": "^22.14.13",
"electron-rebuild": "^3.2.7",
"vue-mdi-icon-picker": "^1.1.0"
},
"dependencies": {
"@electron/remote": "^2.0.1",
"@octokit/rest": "^18.12.0",
"@simonwep/pickr": "^1.8.2",
"auto-launch": "^5.0.5",
"electron-log": "^4.4.6",
"electron-squirrel-startup": "^1.0.0",
"electron-store": "^8.0.1",
"electron-updater": "^4.6.5",
"i18next": "^21.6.14",
"request": "^2.88.2",
"serialport": "^9.2.4",
"typescript": "^4.6.2",
"usb-detection": "^4.13.0"
}
}