botui/electron-builder.json

21 lines
286 B
JSON
Raw Normal View History

2024-10-26 13:05:56 -03:00
{
"appId": "com.botdesktop.app",
"directories": {
"output": "release/"
},
"files": [
"dist/**/*",
"node_modules/**/*",
"package.json"
],
"mac": {
"target": ["dmg"]
},
"win": {
"target": ["nsis"]
},
"linux": {
"target": ["AppImage"]
}
}