mirror of
https://github.com/Qortal/Qortal-Hub.git
synced 2025-04-24 20:07:51 +00:00
32 lines
636 B
JSON
32 lines
636 B
JSON
{
|
|
"appId": "com.yourdomain.yourapp",
|
|
"directories": {
|
|
"buildResources": "resources"
|
|
},
|
|
"files": [
|
|
"assets/**/*",
|
|
"build/**/*",
|
|
"capacitor.config.*",
|
|
"app/**/*"
|
|
],
|
|
"nsis": {
|
|
"allowElevation": true,
|
|
"oneClick": false,
|
|
"allowToChangeInstallationDirectory": true
|
|
},
|
|
"win": {
|
|
"target": "nsis",
|
|
"icon": "assets/appIcon.ico"
|
|
},
|
|
"linux": {
|
|
"target": ["AppImage"],
|
|
"category": "Utility", // Set a specific Linux category here
|
|
"executableName": "Qortal",
|
|
"icon": "assets/qortal.png"
|
|
},
|
|
"mac": {
|
|
"category": "your.app.category.type",
|
|
"target": "dmg"
|
|
}
|
|
}
|