This commit is contained in:
root
2025-11-25 09:56:15 +03:00
commit 68c8f0e80d
23717 changed files with 3200521 additions and 0 deletions

39
mc_test/electron-builder.json Executable file
View File

@ -0,0 +1,39 @@
{
"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"
}
}