mirror of
https://gitee.com/dromara/electron-egg.git
synced 2026-05-14 19:52:10 +08:00
62 lines
1.4 KiB
JSON
62 lines
1.4 KiB
JSON
{
|
|
"productName": "ee",
|
|
"appId": "com.electron.ee",
|
|
"copyright": "© 2025 哆啦好梦 Technology Co., Ltd.",
|
|
"directories": {
|
|
"output": "out"
|
|
},
|
|
"asar": true,
|
|
"files": [
|
|
"**/*",
|
|
"!frontend/",
|
|
"!run/",
|
|
"!logs/",
|
|
"!go/",
|
|
"!python/",
|
|
"!data/"
|
|
],
|
|
"extraResources": {
|
|
"from": "build/extraResources/",
|
|
"to": "extraResources"
|
|
},
|
|
"nsis": {
|
|
"oneClick": false,
|
|
"allowElevation": true,
|
|
"allowToChangeInstallationDirectory": true,
|
|
"installerIcon": "build/icons/icon.ico",
|
|
"uninstallerIcon": "build/icons/icon.ico",
|
|
"installerHeaderIcon": "build/icons/icon.ico",
|
|
"createDesktopShortcut": true,
|
|
"createStartMenuShortcut": true,
|
|
"shortcutName": "electron-egg"
|
|
},
|
|
"publish": [
|
|
{
|
|
"provider": "generic",
|
|
"url": "https://github.com/wallace5303/electron-egg"
|
|
}
|
|
],
|
|
"mac": {
|
|
"icon": "build/icons/icon.icns",
|
|
"artifactName": "${productName}-${os}-${version}-${arch}.${ext}",
|
|
"darkModeSupport": true,
|
|
"hardenedRuntime": false
|
|
},
|
|
"win": {
|
|
"icon": "build/icons/icon.ico",
|
|
"artifactName": "${productName}-${os}-${version}-${arch}.${ext}",
|
|
"target": [
|
|
{
|
|
"target": "nsis"
|
|
}
|
|
]
|
|
},
|
|
"linux": {
|
|
"icon": "build/icons",
|
|
"artifactName": "${productName}-${os}-${version}-${arch}.${ext}",
|
|
"target": [
|
|
"deb"
|
|
],
|
|
"category": "Utility"
|
|
}
|
|
} |