Files
Remote-Control-Center/mc_test/electron-builder.json
2025-11-25 09:56:15 +03:00

39 lines
786 B
JSON
Executable File

{
"appId": "com.kaspersky.machinecontrolcenter",
"productName": "Machine Control Center",
"copyright": "Copyright © 2024 Kaspersky",
"directories": {
"output": "release/${version}"
},
"files": [
"dist/**/*",
"package.json"
],
"win": {
"target": [
"nsis"
],
"icon": "build/icon.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "Machine Control Center"
},
"mac": {
"target": [
"dmg"
],
"icon": "build/icon.icns"
},
"linux": {
"target": [
"AppImage",
"deb"
],
"icon": "build/icon.png",
"category": "Utility"
}
}