| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- {
- "$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", "appimage"],
- "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"
- }
- }
- }
- }
|