1
0
mirror of https://github.com/lencx/ChatGPT.git synced 2024-10-01 01:06:13 -04:00
Unofficial_ChatGPT_Client/src-tauri/tauri.conf.json

85 lines
2.0 KiB
JSON
Raw Normal View History

2022-12-07 05:22:18 -05:00
{
"build": {
2022-12-12 22:58:47 -05:00
"beforeDevCommand": "npm run dev:fe",
"beforeBuildCommand": "npm run build:fe",
2022-12-13 06:10:42 -05:00
"devPath": "http://localhost:1420",
2022-12-07 05:22:18 -05:00
"distDir": "../dist"
},
"package": {
"productName": "ChatGPT",
2022-12-27 14:34:05 -05:00
"version": "0.7.2"
2022-12-07 05:22:18 -05:00
},
"tauri": {
"allowlist": {
2022-12-16 06:58:40 -05:00
"all": true,
2022-12-27 12:13:00 -05:00
"globalShortcut": {
"all": true
},
2022-12-18 13:56:53 -05:00
"http": {
2022-12-21 01:00:42 -05:00
"all": true,
2022-12-18 13:56:53 -05:00
"scope": [
2022-12-21 01:00:42 -05:00
"https://**",
"http://**"
2022-12-18 13:56:53 -05:00
]
},
2022-12-16 06:58:40 -05:00
"fs": {
"all": true,
2022-12-17 04:39:21 -05:00
"scope": [
2022-12-24 19:53:58 -05:00
"$HOME/.chatgpt/**"
2022-12-17 04:39:21 -05:00
]
2022-12-16 06:58:40 -05:00
}
2022-12-07 05:22:18 -05:00
},
"systemTray": {
2022-12-27 14:07:17 -05:00
"iconPath": "icons/tray-icon-light.png",
"iconAsTemplate": false,
2022-12-17 03:23:35 -05:00
"menuOnLeftClick": false
2022-12-07 05:22:18 -05:00
},
"bundle": {
"active": true,
2022-12-07 07:02:31 -05:00
"category": "DeveloperTool",
2022-12-07 05:22:18 -05:00
"copyright": "",
"deb": {
"depends": []
},
"externalBin": [],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
2022-12-07 05:45:15 -05:00
"identifier": "com.lencx.chatgpt",
"longDescription": "ChatGPT Desktop Application",
2022-12-07 05:22:18 -05:00
"macOS": {
"entitlements": null,
"exceptionDomain": "",
"frameworks": [],
"providerShortName": null,
"signingIdentity": null
},
2022-12-07 05:45:15 -05:00
"shortDescription": "ChatGPT",
2022-12-07 05:22:18 -05:00
"targets": "all",
"windows": {
2022-12-18 00:30:27 -05:00
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": "",
2022-12-09 14:23:29 -05:00
"webviewInstallMode": {
"silent": true,
2022-12-18 00:30:27 -05:00
"type": "embedBootstrapper"
}
2022-12-07 05:22:18 -05:00
}
},
"security": {
"csp": null
},
"updater": {
2022-12-07 05:45:15 -05:00
"active": true,
"dialog": true,
2022-12-07 07:36:42 -05:00
"endpoints": [
"https://lencx.github.io/ChatGPT/install.json"
],
2022-12-07 05:45:15 -05:00
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IEIxMjY4OUI5MTVFNjBEMDUKUldRRkRlWVZ1WWttc1NGWEE0RFNSb0RqdnhsekRJZTkwK2hVLzhBZTZnaHExSEZ1ZEdzWkpXTHkK"
}
2022-12-07 05:22:18 -05:00
}
2022-12-07 07:36:42 -05:00
}