Qortal-Hub/electron/electron-builder.config.json
2024-11-03 18:24:57 +02:00

40 lines
751 B
JSON

{
"appId": "com.github.Qortal.Qortal-Hub",
"directories": {
"buildResources": "resources"
},
"files": [
"assets/**/*",
"build/**/*",
"capacitor.config.*",
"app/**/*"
],
"nsis": {
"allowElevation": true,
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"publish": [
{
"provider": "github",
"owner": "Qortal",
"repo": "Qortal-Hub",
"releaseType": "draft"
}
],
"win": {
"target": "nsis",
"icon": "assets/appIcon.ico"
},
"linux": {
"target": ["AppImage"],
"category": "Utility",
"executableName": "Qortal",
"icon": "assets/qortal.png"
},
"mac": {
"category": "your.app.category.type",
"target": "dmg"
}
}