api-client/packages/hoppscotch-agent/src-tauri/tauri.conf.json

52 lines
1.2 KiB
JSON
Raw Normal View History

{
"$schema": "https://schema.tauri.app/config/2.0.0-rc",
"productName": "Hoppscotch Agent",
2024-10-04 07:30:32 +00:00
"version": "0.1.1",
"identifier": "io.hoppscotch.agent",
"build": {
"beforeDevCommand": "pnpm dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "pnpm build",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"title": "Hoppscotch Agent",
"width": 600,
"height": 400,
"center": true,
"resizable": false,
"maximizable": false,
"minimizable": false,
"focus": true,
"alwaysOnTop": true,
"create": false
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"createUpdaterArtifacts": true
2024-10-03 16:50:45 +00:00
},
"plugins": {
2024-10-03 16:50:45 +00:00
"updater": {
2024-10-03 17:17:34 +00:00
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDRBQzgxQjc3MzJCMjZENEMKUldSTWJiSXlkeHZJU3EvQW1abFVlREVhRDNlM0ZhOVJYaHN4M0FpbXZhcUFzSVdVbG84RWhPa1AK",
2024-10-03 16:50:45 +00:00
"endpoints": [
"https://releases.hoppscotch.com/hoppscotch-agent.json"
]
}
}
}