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

78 lines
1.8 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-12 06:19:33 -05:00
"version": "0.2.1"
2022-12-07 05:22:18 -05:00
},
"tauri": {
"allowlist": {
"all": true
},
"systemTray": {
2022-12-11 05:16:36 -05:00
"iconPath": "icons/tray-icon.png",
"iconAsTemplate": true
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-09 14:23:29 -05:00
"webviewInstallMode": {
"silent": true,
"type": "downloadBootstrapper"
},
2022-12-07 05:22:18 -05:00
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": ""
}
},
"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-12 22:58:47 -05:00
},
"windows": [
{
"label": "main",
"url": "index.html",
2022-12-13 06:10:42 -05:00
"title": "ChatGPT",
2022-12-14 11:02:54 -05:00
"visible": false,
"width": 800,
"height": 600
2022-12-12 22:58:47 -05:00
}
]
2022-12-07 05:22:18 -05:00
}
2022-12-07 07:36:42 -05:00
}