| 123456789101112131415161718192021222324252627282930313233343536 |
- {
- "$schema": "https://schema.tauri.app/config/2",
- "productName": "OpenCode",
- "mainBinaryName": "OpenCode",
- "version": "../package.json",
- "identifier": "ai.opencode.desktop",
- "build": {
- "beforeDevCommand": "bun run dev",
- "devUrl": "http://localhost:1420",
- "beforeBuildCommand": "bun run build",
- "frontendDist": "../dist"
- },
- "app": {
- "withGlobalTauri": true,
- "security": {
- "csp": null
- },
- "macOSPrivateApi": true
- },
- "bundle": {
- "active": true,
- "targets": ["deb", "rpm", "dmg", "nsis", "app"],
- "icon": ["icons/32x32.png", "icons/128x128.png", "icons/[email protected]", "icons/icon.icns", "icons/icon.ico"],
- "externalBin": ["sidecars/opencode-cli"],
- "createUpdaterArtifacts": true,
- "macOS": {
- "entitlements": "./entitlements.plist"
- }
- },
- "plugins": {
- "updater": {
- "pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IEYwMDM5Nzg5OUMzOUExMDQKUldRRW9UbWNpWmNEOENYT01CV0lhOXR1UFhpaXJsK1Z3aU9lZnNtNzE0TDROWVMwVW9XQnFOelkK",
- "endpoints": ["https://github.com/sst/opencode/releases/latest/download/latest.json"]
- }
- }
- }
|