edge-proxy-app/electron-builder.json5

22 lines
416 B
Plaintext
Raw Normal View History

2025-10-31 16:25:56 +08:00
{
2025-11-10 10:27:28 +08:00
appId: "com.yourcompany.edge-proxy-manager",
productName: "EdgeProxyManager",
compression: "store",
files: ["dist-electron/main.js", "dist-electron/preload.mjs", "dist/**"],
linux: {
target: [
2025-10-31 16:25:56 +08:00
{
2025-11-10 10:27:28 +08:00
target: "AppImage",
arch: ["arm64"],
},
{
target: "tar.gz",
arch: ["arm64"],
},
2025-10-31 16:25:56 +08:00
],
2025-11-10 10:27:28 +08:00
category: "Utility",
icon: "public/icon.png",
2025-10-31 16:25:56 +08:00
},
}