gui/packages/gui/src-tauri/tauri.conf.json

110 lines
2.2 KiB
JSON

{
"$schema": "../../../node_modules/@tauri-apps/cli/schema.json",
"build": {
"beforeBuildCommand": "pnpm build",
"beforeDevCommand": "pnpm dev",
"devPath": "http://localhost:8080",
"distDir": "../build"
},
"package": {
"productName": "gui",
"version": "0.1.0"
},
"tauri": {
"allowlist": {
"http": {
"all": true,
"request": true,
"scope": ["https://api.tea.xyz/v1/*", "https://github.com/*"]
},
"shell": {
"all": false,
"execute": false,
"open": true,
"scope": [],
"sidecar": false
},
"window": {
"all": true,
"center": true,
"close": true,
"create": true,
"hide": true,
"maximize": true,
"minimize": true,
"print": true,
"requestUserAttention": true,
"setAlwaysOnTop": true,
"setCursorGrab": true,
"setCursorIcon": true,
"setCursorPosition": true,
"setCursorVisible": true,
"setDecorations": true,
"setFocus": true,
"setFullscreen": true,
"setIcon": true,
"setIgnoreCursorEvents": true,
"setMaxSize": true,
"setMinSize": true,
"setPosition": true,
"setResizable": true,
"setSize": true,
"setSkipTaskbar": true,
"setTitle": true,
"show": true,
"startDragging": true,
"unmaximize": true,
"unminimize": true
}
},
"bundle": {
"active": true,
"category": "DeveloperTool",
"copyright": "",
"deb": {
"depends": []
},
"externalBin": [],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"identifier": "com.tea.xyz",
"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,
"height": 600,
"resizable": true,
"title": "gui",
"width": 1024,
"decorations": false
}
]
}
}