tauri.conf.json 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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. },
  9. "package": {
  10. "productName": "chatgpt-next-web",
  11. "version": "2.8.2"
  12. },
  13. "tauri": {
  14. "allowlist": {
  15. "all": false,
  16. "shell": {
  17. "all": false,
  18. "open": true
  19. },
  20. "clipboard": {
  21. "all": true
  22. },
  23. "window": {
  24. "all": false,
  25. "close": true,
  26. "hide": true,
  27. "maximize": true,
  28. "minimize": true,
  29. "setIcon": true,
  30. "setIgnoreCursorEvents": true,
  31. "setResizable": true,
  32. "show": true,
  33. "startDragging": true,
  34. "unmaximize": true,
  35. "unminimize": true
  36. }
  37. },
  38. "bundle": {
  39. "active": true,
  40. "category": "DeveloperTool",
  41. "copyright": "2023, Zhang Yifei All Rights Reserved.",
  42. "deb": {
  43. "depends": []
  44. },
  45. "externalBin": [],
  46. "icon": [
  47. "icons/32x32.png",
  48. "icons/128x128.png",
  49. "icons/128x128@2x.png",
  50. "icons/icon.icns",
  51. "icons/icon.ico"
  52. ],
  53. "identifier": "com.yida.chatgpt.next.web",
  54. "longDescription": "ChatGPT Next Web is a cross-platform ChatGPT client, including Web/Win/Linux/OSX/PWA.",
  55. "macOS": {
  56. "entitlements": null,
  57. "exceptionDomain": "",
  58. "frameworks": [],
  59. "providerShortName": null,
  60. "signingIdentity": null
  61. },
  62. "resources": [],
  63. "shortDescription": "ChatGPT Next Web App",
  64. "targets": "all",
  65. "windows": {
  66. "certificateThumbprint": null,
  67. "digestAlgorithm": "sha256",
  68. "timestampUrl": ""
  69. }
  70. },
  71. "security": {
  72. "csp": null
  73. },
  74. "updater": {
  75. "active": true,
  76. "endpoints": [
  77. "https://github.com/Yidadaa/ChatGPT-Next-Web/releases/latest"
  78. ],
  79. "dialog": false,
  80. "windows": {
  81. "installMode": "passive"
  82. },
  83. "pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IERFNDE4MENFM0Y1RTZBOTQKUldTVWFsNC96b0JCM3RqM2NmMnlFTmxIaStRaEJrTHNOU2VqRVlIV1hwVURoWUdVdEc1eDcxVEYK"
  84. },
  85. "windows": [
  86. {
  87. "fullscreen": false,
  88. "height": 600,
  89. "resizable": true,
  90. "title": "ChatGPT Next Web",
  91. "width": 960,
  92. "hiddenTitle": true,
  93. "titleBarStyle": "Overlay"
  94. }
  95. ]
  96. }
  97. }