mirror of
https://github.com/heyman/heynote.git
synced 2024-11-07 16:44:14 +01:00
63 lines
1.3 KiB
Plaintext
63 lines
1.3 KiB
Plaintext
/**
|
|
* @see https://www.electron.build/configuration/configuration
|
|
*/
|
|
{
|
|
"appId": "com.heynote.app",
|
|
"asar": true,
|
|
//"icon": "public/favicon.ico",
|
|
"directories": {
|
|
"output": "release/${version}",
|
|
"buildResources": "resources"
|
|
},
|
|
"files": [
|
|
"dist-electron",
|
|
"dist"
|
|
],
|
|
"afterSign": "electron-builder-notarize",
|
|
"mac": {
|
|
"artifactName": "${productName}_${version}_${arch}.${ext}",
|
|
"target": [
|
|
{
|
|
target: 'default',
|
|
arch: [
|
|
'x64',
|
|
'arm64',
|
|
'universal'
|
|
]
|
|
}
|
|
],
|
|
"publish": ["github"],
|
|
"category": "public.app-category.productivity",
|
|
},
|
|
"win": {
|
|
"target": [
|
|
{
|
|
"target": "nsis",
|
|
"arch": [
|
|
"x64"
|
|
]
|
|
}
|
|
],
|
|
"artifactName": "${productName}_${version}.${ext}",
|
|
"icon": "public/icon.ico"
|
|
},
|
|
"nsis": {
|
|
"oneClick": false,
|
|
"perMachine": false,
|
|
"allowToChangeInstallationDirectory": true,
|
|
"deleteAppDataOnUninstall": false
|
|
},
|
|
|
|
linux: {
|
|
synopsis: "A dedicated scratchpad for developers",
|
|
category: "Utility",
|
|
},
|
|
appImage: {
|
|
artifactName: "${productName}_${version}_${arch}.${ext}",
|
|
},
|
|
snap: {
|
|
artifactName: "${productName}_${version}_${arch}.${ext}",
|
|
publish: ["github"],
|
|
}
|
|
}
|