{
    "$schema": "https://schema.tauri.app/config/2",
    "productName": "ShowRunner",
    "version": "0.1.0",
    "identifier": "com.showrunner.desktop",
    "build": {
        "beforeDevCommand": "npm run dev",
        "beforeBuildCommand": "npm run build",
        "devUrl": "http://localhost:1420",
        "frontendDist": "../dist"
    },
    "bundle": {
        "active": true,
        "targets": "all",
        "resources": ["binaries"],
        "icon": [
            "icons/32x32.png",
            "icons/128x128.png",
            "icons/128x128@2x.png",
            "icons/icon.icns",
            "icons/icon.ico"
        ],
        "macOS": {
            "minimumSystemVersion": "10.15"
        }
    },
    "app": {
        "macOSPrivateApi": true,
        "windows": [
            {
                "label": "main",
                "title": "ShowRunner",
                "width": 1200,
                "height": 800,
                "resizable": true,
                "fullscreen": false,
                "visible": false
            },
            {
                "label": "recording-overlay",
                "title": "Recording",
                "width": 700,
                "height": 80,
                "resizable": false,
                "decorations": false,
                "transparent": true,
                "alwaysOnTop": true,
                "skipTaskbar": true,
                "visible": false,
                "url": "/overlay"
            },
            {
                "label": "region-selector",
                "title": "Select Region",
                "width": 800,
                "height": 600,
                "resizable": false,
                "decorations": false,
                "transparent": true,
                "alwaysOnTop": true,
                "skipTaskbar": true,
                "visible": false,
                "fullscreen": false,
                "url": "/region-selector"
            }
        ],
        "security": {
            "csp": null,
            "assetProtocol": {
                "enable": true,
                "scope": [
                    "$APPDATA/**",
                    "$DATA/**",
                    "$HOME/Library/Application Support/**",
                    "$TEMP/**"
                ]
            }
        }
    },
    "plugins": {}
}
