| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- {
- "$schema": "https://schema.tauri.app/config/2",
- "productName": "OpenCode Dev",
- "identifier": "ai.opencode.desktop.dev",
- "mainBinaryName": "OpenCode",
- "version": "../package.json",
- "build": {
- "beforeDevCommand": "bun run dev",
- "devUrl": "http://localhost:1420",
- "beforeBuildCommand": "bun run build",
- "frontendDist": "../dist"
- },
- "app": {
- "windows": [
- {
- "label": "main",
- "create": false,
- "title": "OpenCode",
- "url": "/",
- "decorations": true,
- "dragDropEnabled": false,
- "zoomHotkeysEnabled": false,
- "titleBarStyle": "Overlay",
- "hiddenTitle": true,
- "trafficLightPosition": { "x": 12.0, "y": 18.0 }
- }
- ],
- "withGlobalTauri": true,
- "security": {
- "csp": null
- },
- "macOSPrivateApi": true
- },
- "bundle": {
- "icon": [
- "icons/dev/32x32.png",
- "icons/dev/128x128.png",
- "icons/dev/[email protected]",
- "icons/dev/icon.icns",
- "icons/dev/icon.ico"
- ],
- "active": true,
- "targets": ["deb", "rpm", "dmg", "nsis", "app"],
- "externalBin": ["sidecars/opencode-cli"],
- "macOS": {
- "entitlements": "./entitlements.plist"
- },
- "windows": {
- "nsis": {
- "installerIcon": "icons/dev/icon.ico",
- "headerImage": "assets/nsis-header.bmp",
- "sidebarImage": "assets/nsis-sidebar.bmp"
- }
- }
- },
- "plugins": {
- "deep-link": {
- "desktop": {
- "schemes": ["opencode"]
- }
- }
- }
- }
|