diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json new file mode 100644 index 0000000..2f85446 --- /dev/null +++ b/src-tauri/tauri.conf.json @@ -0,0 +1,70 @@ +{ + "$schema": "../node_modules/@tauri-apps/cli/schema.json", + "build": { + "beforeDevCommand": "npm run dev", + "beforeBuildCommand": "npm run build", + "devPath": "http://localhost:1420", + "distDir": "../dist" + }, + "package": { + "productName": "Moonlight Relay", + "version": "0.1.0" + }, + "tauri": { + "allowlist": { + "all": false, + "shell": { + "all": false, + "sidecar": true + } + }, + "bundle": { + "active": true, + "category": "Utility", + "copyright": "", + "deb": { "depends": [] }, + "externalBin": ["binaries/moonrelay"], + "icon": [ + "icons/32x32.png", + "icons/128x128.png", + "icons/128x128@2x.png", + "icons/icon.icns", + "icons/icon.ico" + ], + "identifier": "net.wilddragon.moonlight-relay", + "longDescription": "Self-hosted Parsec replacement — Moonlight + Tailscale + Apollo, all in one GUI.", + "macOS": { + "entitlements": null, + "exceptionDomain": "", + "frameworks": [], + "providerShortName": null, + "signingIdentity": null + }, + "resources": [], + "shortDescription": "Moonlight game streaming manager with built-in Tailscale VPN", + "targets": "all", + "windows": { + "certificateThumbprint": null, + "digestAlgorithm": "sha256", + "timestampUrl": "" + } + }, + "security": { + "csp": null + }, + "updater": { "active": false }, + "windows": [ + { + "fullscreen": false, + "height": 600, + "resizable": true, + "title": "Moonlight Relay", + "width": 800, + "minWidth": 480, + "minHeight": 400, + "decorations": false, + "transparent": false + } + ] + } +}