| 1234567891011121314151617181920212223242526272829303132333435 |
- {
- "$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": {
- "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"
- }
- }
- }
|