mirror of
https://github.com/DJ2LS/FreeDATA
synced 2024-05-14 08:04:33 +00:00
39 lines
789 B
Text
39 lines
789 B
Text
|
/**
|
||
|
* @see https://www.electron.build/configuration/configuration
|
||
|
*/
|
||
|
{
|
||
|
"$schema": "https://raw.githubusercontent.com/electron-userland/electron-builder/master/packages/app-builder-lib/scheme.json",
|
||
|
"appId": "YourAppID",
|
||
|
"asar": true,
|
||
|
"directories": {
|
||
|
"output": "release/${version}"
|
||
|
},
|
||
|
"files": [
|
||
|
"dist-electron",
|
||
|
"dist"
|
||
|
],
|
||
|
"mac": {
|
||
|
"artifactName": "${productName}_${version}.${ext}",
|
||
|
"target": [
|
||
|
"dmg"
|
||
|
]
|
||
|
},
|
||
|
"win": {
|
||
|
"target": [
|
||
|
{
|
||
|
"target": "nsis",
|
||
|
"arch": [
|
||
|
"x64"
|
||
|
]
|
||
|
}
|
||
|
],
|
||
|
"artifactName": "${productName}_${version}.${ext}"
|
||
|
},
|
||
|
"nsis": {
|
||
|
"oneClick": false,
|
||
|
"perMachine": false,
|
||
|
"allowToChangeInstallationDirectory": true,
|
||
|
"deleteAppDataOnUninstall": false
|
||
|
}
|
||
|
}
|