tauri.conf.json 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  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.9.13"
  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. "fs": {
  49. "all": true
  50. },
  51. "notification": {
  52. "all": true
  53. }
  54. },
  55. "bundle": {
  56. "active": true,
  57. "category": "DeveloperTool",
  58. "copyright": "2023, Zhang Yifei All Rights Reserved.",
  59. "deb": {
  60. "depends": []
  61. },
  62. "externalBin": [],
  63. "icon": [
  64. "icons/32x32.png",
  65. "icons/128x128.png",
  66. "icons/128x128@2x.png",
  67. "icons/icon.icns",
  68. "icons/icon.ico"
  69. ],
  70. "identifier": "com.yida.chatgpt.next.web",
  71. "longDescription": "ChatGPT Next Web is a cross-platform ChatGPT client, including Web/Win/Linux/OSX/PWA.",
  72. "macOS": {
  73. "entitlements": null,
  74. "exceptionDomain": "",
  75. "frameworks": [],
  76. "providerShortName": null,
  77. "signingIdentity": null
  78. },
  79. "resources": [],
  80. "shortDescription": "ChatGPT Next Web App",
  81. "targets": "all",
  82. "windows": {
  83. "certificateThumbprint": null,
  84. "digestAlgorithm": "sha256",
  85. "timestampUrl": ""
  86. }
  87. },
  88. "security": {
  89. "csp": null
  90. },
  91. "updater": {
  92. "active": true,
  93. "endpoints": [
  94. "https://github.com/Yidadaa/ChatGPT-Next-Web/releases/latest/download/latest.json"
  95. ],
  96. "dialog": false,
  97. "windows": {
  98. "installMode": "passive"
  99. },
  100. "pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IERFNDE4MENFM0Y1RTZBOTQKUldTVWFsNC96b0JCM3RqM2NmMnlFTmxIaStRaEJrTHNOU2VqRVlIV1hwVURoWUdVdEc1eDcxVEYK"
  101. },
  102. "windows": [
  103. {
  104. "fullscreen": false,
  105. "height": 600,
  106. "resizable": true,
  107. "title": "ChatGPT Next Web",
  108. "width": 960,
  109. "hiddenTitle": true,
  110. "titleBarStyle": "Overlay"
  111. }
  112. ]
  113. }
  114. }