easyremote/crates/client-tauri/tauri.conf.json

92 lines
1.9 KiB
JSON

{
"build": {
"beforeDevCommand": "",
"beforeBuildCommand": "",
"devPath": "http://localhost:5173",
"distDir": "ui/dist"
},
"package": {
"productName": "EasyRemote",
"version": "0.1.0"
},
"tauri": {
"allowlist": {
"all": false,
"shell": {
"open": true
},
"window": {
"all": true
},
"dialog": {
"all": true
},
"clipboard": {
"all": true
},
"process": {
"all": true
},
"globalShortcut": {
"all": true
}
},
"systemTray": {
"iconPath": "icons/icon.png",
"iconAsTemplate": true
},
"bundle": {
"active": true,
"category": "Utility",
"copyright": "Copyright © 2024 EasyRemote Team",
"deb": {
"depends": []
},
"externalBin": [],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"identifier": "com.easyremote.app",
"longDescription": "A remote desktop control application",
"macOS": {
"entitlements": null,
"exceptionDomain": "",
"frameworks": [],
"providerShortName": null,
"signingIdentity": null
},
"resources": [],
"shortDescription": "Remote Desktop Control",
"targets": "all",
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": ""
}
},
"security": {
"csp": null
},
"updater": {
"active": false
},
"windows": [
{
"fullscreen": false,
"height": 700,
"resizable": true,
"title": "EasyRemote - 远程协助",
"width": 480,
"center": true,
"decorations": true,
"minWidth": 400,
"minHeight": 600
}
]
}
}