ChatGPT/src-tauri/tauri.conf.json

140 lines
3.1 KiB
JSON
Raw Normal View History

2022-12-07 10:22:18 +00:00
{
"build": {
2022-12-13 03:58:47 +00:00
"beforeDevCommand": "npm run dev:fe",
"beforeBuildCommand": "npm run build:fe",
2022-12-13 11:10:42 +00:00
"devPath": "http://localhost:1420",
2022-12-07 10:22:18 +00:00
"distDir": "../dist"
},
"package": {
"productName": "ChatGPT",
2023-08-03 13:30:37 +00:00
"version": "1.1.0"
2022-12-07 10:22:18 +00:00
},
"tauri": {
"allowlist": {
2023-03-01 11:21:59 +00:00
"all": false,
2022-12-27 17:13:00 +00:00
"globalShortcut": {
"all": true
},
2023-04-12 13:15:49 +00:00
"shell": {
"all": true
},
2022-12-16 11:58:40 +00:00
"fs": {
2023-03-01 11:21:59 +00:00
"all": false,
"readFile": true,
"writeFile": true,
"readDir": true,
"createDir": true,
"exists": true,
"removeFile": true,
"removeDir": true,
2022-12-17 09:39:21 +00:00
"scope": [
2023-04-12 13:15:49 +00:00
"$HOME/.chatgpt/**",
"$DOWNLOAD/**"
2022-12-17 09:39:21 +00:00
]
2023-03-01 11:21:59 +00:00
},
"path": {
"all": true
},
"os": {
"all": true
},
2023-08-03 13:24:31 +00:00
"dialog": {
"all": true
},
2023-03-01 11:21:59 +00:00
"process": {
"all": true,
"exit": true,
"relaunch": true,
"relaunchDangerousAllowSymlinkMacos": true
2022-12-16 11:58:40 +00:00
}
2022-12-07 10:22:18 +00:00
},
"systemTray": {
2022-12-28 03:49:40 +00:00
"iconPath": "icons/tray-icon.png",
"iconAsTemplate": true,
2022-12-17 08:23:35 +00:00
"menuOnLeftClick": false
2022-12-07 10:22:18 +00:00
},
"bundle": {
"active": true,
2022-12-07 12:02:31 +00:00
"category": "DeveloperTool",
2022-12-07 10:22:18 +00: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 10:45:15 +00:00
"identifier": "com.lencx.chatgpt",
"longDescription": "ChatGPT Desktop Application",
2022-12-07 10:22:18 +00:00
"macOS": {
"entitlements": null,
"exceptionDomain": "",
"frameworks": [],
"providerShortName": null,
"signingIdentity": null
},
2022-12-07 10:45:15 +00:00
"shortDescription": "ChatGPT",
2022-12-07 10:22:18 +00:00
"targets": "all",
"windows": {
2022-12-18 05:30:27 +00:00
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": "",
2022-12-09 19:23:29 +00:00
"webviewInstallMode": {
"silent": true,
2022-12-18 05:30:27 +00:00
"type": "embedBootstrapper"
}
2022-12-07 10:22:18 +00:00
}
},
"security": {
2023-05-18 07:32:32 +00:00
"csp": null,
"dangerousRemoteDomainIpcAccess": [
{
2023-05-25 04:41:44 +00:00
"windows": [
"core",
"main",
"tray"
],
2023-05-18 07:32:32 +00:00
"domain": "chat.openai.com",
"enableTauriAPI": true
},
{
2023-05-25 04:41:44 +00:00
"windows": [
"core",
"main"
],
2023-05-18 07:32:32 +00:00
"domain": "labs.openai.com",
"enableTauriAPI": true
},
{
2023-05-25 04:41:44 +00:00
"windows": [
"core",
"main",
"tray"
],
2023-05-18 07:32:32 +00:00
"domain": "openai.com",
"enableTauriAPI": true
2023-05-25 04:34:35 +00:00
},
{
2023-05-25 04:41:44 +00:00
"windows": [
"chatgpt_sponsors",
"app_website"
],
2023-05-25 04:34:35 +00:00
"domain": "app.nofwl.com",
"enableTauriAPI": true
2023-05-18 07:32:32 +00:00
}
]
2022-12-07 10:22:18 +00:00
},
"updater": {
2023-01-04 13:44:23 +00:00
"active": true,
2023-01-05 02:39:46 +00:00
"dialog": false,
2022-12-07 12:36:42 +00:00
"endpoints": [
"https://lencx.github.io/ChatGPT/install.json"
],
2022-12-07 10:45:15 +00:00
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IEIxMjY4OUI5MTVFNjBEMDUKUldRRkRlWVZ1WWttc1NGWEE0RFNSb0RqdnhsekRJZTkwK2hVLzhBZTZnaHExSEZ1ZEdzWkpXTHkK"
}
2022-12-07 10:22:18 +00:00
}
2023-01-07 05:15:22 +00:00
}