Colubrina/frontend/electron-builder.json5

28 lines
512 B
Text
Raw Normal View History

2022-08-07 14:48:21 +10:00
{
appId: "com.troplo.colubrina",
win: {
target: ["portable", "nsis", "zip"],
publish: ["github"]
},
linux: {
2022-08-07 23:17:49 +10:00
target: ["AppImage", "deb", "tar.gz", "snap"],
2022-08-07 14:48:21 +10:00
publish: ["github"],
category: "Network",
synopsis: "Instant Messaging",
2022-09-02 17:18:18 +10:00
maintainer: "Troplo <troplo@troplo.com>"
2022-08-07 14:48:21 +10:00
},
mac: {
2022-09-03 01:47:02 +10:00
publish: ["github"],
target: [
{
target: "dmg",
arch: ["x64", "arm64"]
},
{
target: "zip",
arch: ["x64", "arm64"]
}
]
2022-08-07 14:48:21 +10:00
}
}