chatgpt-web/src-tauri/tauri.conf.json

66 lines
1.4 KiB
JSON
Raw Normal View History

2023-03-13 19:19:57 +09:00
{
"$schema": "../node_modules/@tauri-apps/cli/schema.json",
"build": {
"beforeBuildCommand": "npm run build",
"beforeDevCommand": "npm run dev",
"devPath": "http://localhost:5173",
"distDir": "../dist"
},
"package": {
"productName": "chatgpt-web-desktop",
"version": "0.1.1"
},
"tauri": {
"allowlist": {
"all": false
},
"bundle": {
"active": true,
"category": "DeveloperTool",
"copyright": "",
"deb": {
"depends": []
},
"externalBin": [],
"icon": [
2023-03-21 00:17:09 +09:00
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
2023-03-13 19:19:57 +09:00
],
2023-03-21 00:06:42 +09:00
"identifier": "nl.niek.chatgpt",
2023-03-13 19:19:57 +09:00
"longDescription": "",
"macOS": {
"entitlements": null,
"exceptionDomain": "",
"frameworks": [],
"providerShortName": null,
"signingIdentity": null
},
"resources": [],
"shortDescription": "",
"targets": "all",
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": ""
}
},
"security": {
"csp": null
},
"updater": {
"active": false
},
"windows": [
{
"fullscreen": false,
2023-03-21 00:06:42 +09:00
"height": 768,
2023-03-13 19:19:57 +09:00
"resizable": true,
2023-03-21 00:17:09 +09:00
"title": "ChatGPT-web Desktop app",
2023-03-21 00:06:42 +09:00
"width": 1024
2023-03-13 19:19:57 +09:00
}
]
}
}