tauri.conf.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "$schema": "https://schema.tauri.app/config/2.0.0-rc",
  3. "productName": "Hoppscotch Agent",
  4. "version": "0.1.3",
  5. "identifier": "io.hoppscotch.agent",
  6. "build": {
  7. "beforeDevCommand": "pnpm dev",
  8. "devUrl": "http://localhost:1420",
  9. "beforeBuildCommand": "pnpm build",
  10. "frontendDist": "../dist"
  11. },
  12. "app": {
  13. "windows": [
  14. {
  15. "title": "Hoppscotch Agent",
  16. "width": 600,
  17. "height": 400,
  18. "center": true,
  19. "resizable": false,
  20. "maximizable": false,
  21. "minimizable": false,
  22. "focus": true,
  23. "alwaysOnTop": true,
  24. "create": false
  25. }
  26. ],
  27. "security": {
  28. "csp": null
  29. }
  30. },
  31. "bundle": {
  32. "active": true,
  33. "targets": "all",
  34. "icon": [
  35. "icons/32x32.png",
  36. "icons/128x128.png",
  37. "icons/128x128@2x.png",
  38. "icons/icon.icns",
  39. "icons/icon.ico"
  40. ],
  41. "createUpdaterArtifacts": true
  42. },
  43. "plugins": {
  44. "updater": {
  45. "pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDRBQzgxQjc3MzJCMjZENEMKUldSTWJiSXlkeHZJU3EvQW1abFVlREVhRDNlM0ZhOVJYaHN4M0FpbXZhcUFzSVdVbG84RWhPa1AK",
  46. "endpoints": [
  47. "https://releases.hoppscotch.com/hoppscotch-agent.json"
  48. ]
  49. }
  50. }
  51. }