37 lines
985 B
JSON
37 lines
985 B
JSON
{
|
|
"productName": "Electron32-MacOS",
|
|
"appId": "com.andy.electron32-macos",
|
|
"copyright": "Copyright © 2024-present Andy",
|
|
"compression": "maximum",
|
|
"asar": true,
|
|
"directories": {
|
|
"output": "release/${version}"
|
|
},
|
|
"nsis": {
|
|
"oneClick": false,
|
|
"allowToChangeInstallationDirectory": true,
|
|
"perMachine": true,
|
|
"deleteAppDataOnUninstall": true,
|
|
"createDesktopShortcut": true,
|
|
"createStartMenuShortcut": true,
|
|
"shortcutName": "Electron32MacOS"
|
|
},
|
|
"win": {
|
|
"icon": "./resources/shortcut.ico",
|
|
"artifactName": "${productName}-v${version}-${platform}-${arch}-setup.${ext}",
|
|
"target": [
|
|
{
|
|
"target": "nsis",
|
|
"arch": ["ia32"]
|
|
}
|
|
]
|
|
},
|
|
"mac": {
|
|
"icon": "./resources/shortcut.icns",
|
|
"artifactName": "${productName}-v${version}-${platform}-${arch}-setup.${ext}"
|
|
},
|
|
"linux": {
|
|
"icon": "./resources",
|
|
"artifactName": "${productName}-v${version}-${platform}-${arch}-setup.${ext}"
|
|
}
|
|
} |