{ "$schema": "https://schema.tauri.app/config/2", "productName": "Mission Control", "version": "0.1.0", "identifier": "com.mission-control.app", "build": { "beforeDevCommand": "npm run dev", "devUrl": "http://localhost:1420", "beforeBuildCommand": "npm run build", "frontendDist": "../dist" }, "app": { "withGlobalTauri": false, "windows": [ { "title": "Mission Control", "width": 800, "height": 600, "resizable": true, "fullscreen": false, "center": true, "hiddenTitle": true, "decorations": true, "transparent": false, "visible": true } ], "trayIcon": { "iconPath": "icons/icon.png", "iconAsTemplate": true }, "security": { "csp": null } }, "bundle": { "active": true, "icon": [ "icons/32x32.png", "icons/128x128.png", "icons/128x128@2x.png", "icons/icon.icns", "icons/icon.ico" ], "targets": "all", "macOS": { "minimumSystemVersion": "10.15" } }, "plugins": { "shell": { "open": true, "scope": [ { "name": "lore", "cmd": "lore", "args": true }, { "name": "br", "cmd": "br", "args": true }, { "name": "bv", "cmd": "bv", "args": true } ] } } }