{ "$schema": "https://schema.tauri.app/config/2", "productName": "kunkun", "version": "../package.json", "identifier": "sh.kunkun.desktop", "build": { "beforeDevCommand": "pnpm dev", "devUrl": "http://localhost:1420", "beforeBuildCommand": "pnpm build", "frontendDist": "../build" }, "app": { "macOSPrivateApi": true, "security": { "csp": null }, "windows": [ { "hiddenTitle": true, "url": "/app", "title": "Kunkun", "width": 800, "visible": false, "height": 600, "decorations": true, "center": true }, { "url": "/splashscreen", "visible": true, "label": "splashscreen", "center": true } ] }, "bundle": { "macOS": { "minimumSystemVersion": "10.15" }, "fileAssociations": [ { "ext": ["kunkun"], "mimeType": "text/plain", "description": "Used to install Kunkun Extensions with a installer file", "role": "Viewer" } ], "active": true, "targets": "all", "icon": [ "icons/32x32.png", "icons/128x128.png", "icons/128x128@2x.png", "icons/icon.icns", "icons/icon.ico" ] }, "plugins": { "fs": { "requireLiteralLeadingDot": false }, "deep-link": { "desktop": { "schemes": ["kunkun"] } }, "cli": { "description": "Kunkun CLI", "args": [ { "short": "v", "name": "verbose", "description": "Verbosity level" } ] } } }