tauri.conf.json 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. {
  2. "$schema": "../node_modules/@tauri-apps/cli/schema.json",
  3. "build": {
  4. "beforeBuildCommand": "yarn export",
  5. "beforeDevCommand": "yarn export:dev",
  6. "devPath": "http://localhost:3000",
  7. "distDir": "../out",
  8. "withGlobalTauri": true
  9. },
  10. "package": {
  11. "productName": "ChatGPT Next Web",
  12. "version": "2.8.9"
  13. },
  14. "tauri": {
  15. "allowlist": {
  16. "all": false,
  17. "shell": {
  18. "all": false,
  19. "open": true
  20. },
  21. "dialog": {
  22. "all": true,
  23. "ask": true,
  24. "confirm": true,
  25. "message": true,
  26. "open": true,
  27. "save": true
  28. },
  29. "clipboard": {
  30. "all": true,
  31. "writeText": true,
  32. "readText": true
  33. },
  34. "window": {
  35. "all": false,
  36. "close": true,
  37. "hide": true,
  38. "maximize": true,
  39. "minimize": true,
  40. "setIcon": true,
  41. "setIgnoreCursorEvents": true,
  42. "setResizable": true,
  43. "show": true,
  44. "startDragging": true,
  45. "unmaximize": true,
  46. "unminimize": true
  47. }
  48. },
  49. "bundle": {
  50. "active": true,
  51. "category": "DeveloperTool",
  52. "copyright": "2023, Zhang Yifei All Rights Reserved.",
  53. "deb": {
  54. "depends": []
  55. },
  56. "externalBin": [],
  57. "icon": [
  58. "icons/32x32.png",
  59. "icons/128x128.png",
  60. "icons/128x128@2x.png",
  61. "icons/icon.icns",
  62. "icons/icon.ico"
  63. ],
  64. "identifier": "com.yida.chatgpt.next.web",
  65. "longDescription": "ChatGPT Next Web is a cross-platform ChatGPT client, including Web/Win/Linux/OSX/PWA.",
  66. "macOS": {
  67. "entitlements": null,
  68. "exceptionDomain": "",
  69. "frameworks": [],
  70. "providerShortName": null,
  71. "signingIdentity": null
  72. },
  73. "resources": [],
  74. "shortDescription": "ChatGPT Next Web App",
  75. "targets": "all",
  76. "windows": {
  77. "certificateThumbprint": null,
  78. "digestAlgorithm": "sha256",
  79. "timestampUrl": ""
  80. }
  81. },
  82. "security": {
  83. "csp": null
  84. },
  85. "updater": {
  86. "active": true,
  87. "endpoints": [
  88. "https://github.com/Yidadaa/ChatGPT-Next-Web/releases/latest/download/latest.json"
  89. ],
  90. "dialog": false,
  91. "windows": {
  92. "installMode": "passive"
  93. },
  94. "pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IERFNDE4MENFM0Y1RTZBOTQKUldTVWFsNC96b0JCM3RqM2NmMnlFTmxIaStRaEJrTHNOU2VqRVlIV1hwVURoWUdVdEc1eDcxVEYK"
  95. },
  96. "windows": [
  97. {
  98. "fullscreen": false,
  99. "height": 600,
  100. "resizable": true,
  101. "title": "ChatGPT Next Web",
  102. "width": 960,
  103. "hiddenTitle": true,
  104. "titleBarStyle": "Overlay"
  105. }
  106. ]
  107. }
  108. }