Files
Termix/electron-builder.json
T

150 lines
4.0 KiB
JSON
Raw Normal View History

2025-09-12 14:42:00 -05:00
{
+7
2025-11-05 10:36:16 -06:00
"appId": "com.karmaa.termix",
2025-09-12 14:42:00 -05:00
"productName": "Termix",
+7
2025-11-05 10:36:16 -06:00
"publish": null,
2025-09-12 14:42:00 -05:00
"directories": {
"output": "release"
},
2026-05-06 15:12:07 -05:00
"asar": true,
2026-05-12 23:54:51 -05:00
"asarUnpack": [
"dist/backend/**/*",
"node_modules/**/*",
"public/icons/**/*",
"public/icon.*"
],
2025-09-12 14:42:00 -05:00
"files": [
"dist/**/*",
"electron/**/*",
"public/**/*",
"!src/**/*",
"!*.md",
"!tsconfig*.json",
"!vite.config.ts",
+5
2026-03-08 18:02:14 -05:00
"!eslint.config.js",
"!node_modules/@napi-rs/canvas*/**/*",
"!node_modules/@rollup/rollup-darwin-*/**/*",
"!node_modules/@rollup/rollup-linux-*/**/*",
2026-03-08 23:03:14 -05:00
"!node_modules/@rollup/rollup-win32-*/**/*",
"!dist/icon-mac.png",
"!public/icon-mac.png",
"!dist/icon.ico",
"!dist/icon.icns",
2026-06-29 13:28:26 -05:00
"!public/icon.icns"
2025-09-12 14:42:00 -05:00
],
"extraMetadata": {
2026-05-28 22:29:20 -05:00
"main": "electron/main.cjs",
"type": "commonjs"
2025-09-12 14:42:00 -05:00
},
"buildDependenciesFromSource": false,
"nodeGypRebuild": false,
2026-03-14 20:05:05 -05:00
"npmRebuild": true,
2025-09-12 14:42:00 -05:00
"win": {
+7
2025-11-05 10:36:16 -06:00
"target": [
{
"target": "nsis",
"arch": ["x64", "ia32"]
},
{
"target": "msi",
"arch": ["x64", "ia32"]
}
],
2025-09-12 14:42:00 -05:00
"icon": "public/icon.ico",
"executableName": "Termix"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
+7
2025-11-05 10:36:16 -06:00
"artifactName": "termix_windows_${arch}_nsis.${ext}",
2025-09-12 14:42:00 -05:00
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
2026-06-29 13:28:26 -05:00
"installerIcon": "public/icon.ico",
"uninstallerIcon": "public/icon.ico",
2025-09-12 14:42:00 -05:00
"shortcutName": "Termix",
"uninstallDisplayName": "Termix"
},
+7
2025-11-05 10:36:16 -06:00
"msi": {
"artifactName": "termix_windows_${arch}_msi.${ext}"
},
2025-09-12 14:42:00 -05:00
"linux": {
+7
2025-11-05 10:36:16 -06:00
"artifactName": "termix_linux_${arch}_portable.${ext}",
2025-10-03 00:02:10 -05:00
"target": [
{
"target": "AppImage",
+7
2025-11-05 10:36:16 -06:00
"arch": ["x64", "arm64", "armv7l"]
},
{
"target": "deb",
"arch": ["x64", "arm64", "armv7l"]
2025-10-03 00:02:10 -05:00
},
{
"target": "tar.gz",
+7
2025-11-05 10:36:16 -06:00
"arch": ["x64", "arm64", "armv7l"]
2025-10-03 00:02:10 -05:00
}
],
2025-09-12 14:42:00 -05:00
"icon": "public/icon.png",
2025-10-03 00:02:10 -05:00
"category": "Development",
"executableName": "termix",
+7
2025-11-05 10:36:16 -06:00
"maintainer": "Termix <mail@termix.site>",
2025-10-03 00:02:10 -05:00
"desktop": {
"entry": {
"Name": "Termix",
2026-05-28 22:29:20 -05:00
"Comment": "Self-hosted SSH and remote desktop management. ",
"Keywords": "docker;ssh;terminal;telnet;self-hosted;rdp;file-management;vnc;ssh-tunnel;server-stats;termix",
2025-10-03 00:02:10 -05:00
"StartupWMClass": "termix"
}
}
+7
2025-11-05 10:36:16 -06:00
},
"appImage": {
"artifactName": "termix_linux_${arch}_appimage.${ext}"
},
"deb": {
"artifactName": "termix_linux_${arch}_deb.${ext}"
},
"mac": {
"target": [
{
"target": "mas",
"arch": "universal"
},
{
"target": "dmg",
"arch": ["universal", "x64", "arm64"]
}
],
"icon": "public/icon.icns",
"category": "public.app-category.developer-tools",
"hardenedRuntime": true,
"gatekeeperAssess": false,
+8
2026-07-19 12:29:52 -05:00
"entitlements": "packaging/build/entitlements.mac.plist",
"entitlementsInherit": "packaging/build/entitlements.mac.inherit.plist",
+7
2025-11-05 10:36:16 -06:00
"type": "distribution",
+5
2026-03-08 18:02:14 -05:00
"minimumSystemVersion": "10.15",
"mergeASARs": false,
+5
2026-08-19 14:12:06 -05:00
"singleArchFiles": "**/*.{node,bare,dylib}",
"x64ArchFiles": "**/{*.{node,bare,dylib},node-pty/prebuilds/*/spawn-helper}"
+7
2025-11-05 10:36:16 -06:00
},
"dmg": {
"artifactName": "termix_macos_${arch}_dmg.${ext}",
"sign": true
},
+8
2026-07-19 12:29:52 -05:00
"afterPack": "packaging/build/after-pack.cjs",
"afterSign": "packaging/build/notarize.cjs",
+7
2025-11-05 10:36:16 -06:00
"mas": {
+8
2026-07-19 12:29:52 -05:00
"provisioningProfile": "packaging/build/Termix_Mac_App_Store.provisionprofile",
"entitlements": "packaging/build/entitlements.mas.plist",
"entitlementsInherit": "packaging/build/entitlements.mas.inherit.plist",
+7
2025-11-05 10:36:16 -06:00
"hardenedRuntime": false,
"gatekeeperAssess": false,
"type": "distribution",
"category": "public.app-category.developer-tools",
"artifactName": "termix_macos_${arch}_mas.${ext}",
"extendInfo": {
"ITSAppUsesNonExemptEncryption": false,
"NSAppleEventsUsageDescription": "Termix needs access to control other applications for terminal operations."
}
+1
2025-12-31 22:20:12 -06:00
},
"generateUpdatesFilesForAllChannels": true
2025-09-12 14:42:00 -05:00
}