12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- {
- "$schema": "../node_modules/@tauri-apps/cli/schema.json",
- "build": {
- "beforeBuildCommand": "yarn export",
- "beforeDevCommand": "yarn export:dev",
- "devPath": "http://localhost:3000",
- "distDir": "../out"
- },
- "package": {
- "productName": "chatgpt-next-web",
- "version": "2.8.2"
- },
- "tauri": {
- "allowlist": {
- "all": false,
- "shell": {
- "all": false,
- "open": true
- },
- "clipboard": {
- "all": true
- },
- "window": {
- "all": false,
- "close": true,
- "hide": true,
- "maximize": true,
- "minimize": true,
- "setIcon": true,
- "setIgnoreCursorEvents": true,
- "setResizable": true,
- "show": true,
- "startDragging": true,
- "unmaximize": true,
- "unminimize": true
- }
- },
- "bundle": {
- "active": true,
- "category": "DeveloperTool",
- "copyright": "2023, Zhang Yifei All Rights Reserved.",
- "deb": {
- "depends": []
- },
- "externalBin": [],
- "icon": [
- "icons/32x32.png",
- "icons/128x128.png",
- "icons/128x128@2x.png",
- "icons/icon.icns",
- "icons/icon.ico"
- ],
- "identifier": "com.yida.chatgpt.next.web",
- "longDescription": "ChatGPT Next Web is a cross-platform ChatGPT client, including Web/Win/Linux/OSX/PWA.",
- "macOS": {
- "entitlements": null,
- "exceptionDomain": "",
- "frameworks": [],
- "providerShortName": null,
- "signingIdentity": null
- },
- "resources": [],
- "shortDescription": "ChatGPT Next Web App",
- "targets": "all",
- "windows": {
- "certificateThumbprint": null,
- "digestAlgorithm": "sha256",
- "timestampUrl": ""
- }
- },
- "security": {
- "csp": null
- },
- "updater": {
- "active": true,
- "endpoints": [
- "https://github.com/Yidadaa/ChatGPT-Next-Web/releases/latest"
- ],
- "dialog": false,
- "windows": {
- "installMode": "passive"
- },
- "pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IERFNDE4MENFM0Y1RTZBOTQKUldTVWFsNC96b0JCM3RqM2NmMnlFTmxIaStRaEJrTHNOU2VqRVlIV1hwVURoWUdVdEc1eDcxVEYK"
- },
- "windows": [
- {
- "fullscreen": false,
- "height": 600,
- "resizable": true,
- "title": "ChatGPT Next Web",
- "width": 960,
- "hiddenTitle": true,
- "titleBarStyle": "Overlay"
- }
- ]
- }
- }
|