63 lines
1.4 KiB
JSON
63 lines
1.4 KiB
JSON
{
|
|
"appId": "com.termix.app",
|
|
"productName": "Termix",
|
|
"directories": {
|
|
"output": "release"
|
|
},
|
|
"files": [
|
|
"dist/**/*",
|
|
"electron/**/*",
|
|
"public/**/*",
|
|
"!**/node_modules/**/*",
|
|
"!src/**/*",
|
|
"!*.md",
|
|
"!tsconfig*.json",
|
|
"!vite.config.ts",
|
|
"!eslint.config.js"
|
|
],
|
|
"asarUnpack": ["node_modules/node-fetch/**/*"],
|
|
"extraMetadata": {
|
|
"main": "electron/main.cjs"
|
|
},
|
|
"buildDependenciesFromSource": false,
|
|
"nodeGypRebuild": false,
|
|
"npmRebuild": false,
|
|
"win": {
|
|
"target": "nsis",
|
|
"icon": "public/icon.ico",
|
|
"executableName": "Termix"
|
|
},
|
|
"nsis": {
|
|
"oneClick": false,
|
|
"allowToChangeInstallationDirectory": true,
|
|
"artifactName": "${productName}-Setup-${version}.${ext}",
|
|
"createDesktopShortcut": true,
|
|
"createStartMenuShortcut": true,
|
|
"shortcutName": "Termix",
|
|
"uninstallDisplayName": "Termix"
|
|
},
|
|
"linux": {
|
|
"target": [
|
|
{
|
|
"target": "AppImage",
|
|
"arch": ["x64"]
|
|
},
|
|
{
|
|
"target": "tar.gz",
|
|
"arch": ["x64"]
|
|
}
|
|
],
|
|
"icon": "public/icon.png",
|
|
"category": "Development",
|
|
"executableName": "termix",
|
|
"desktop": {
|
|
"entry": {
|
|
"Name": "Termix",
|
|
"Comment": "A web-based server management platform",
|
|
"Keywords": "terminal;ssh;server;management;",
|
|
"StartupWMClass": "termix"
|
|
}
|
|
}
|
|
}
|
|
}
|