cloudaxe-opencode/packages/desktop/src-tauri/tauri.conf.json

63 lines
1.3 KiB
JSON
Raw Permalink Normal View History

2025-11-22 05:15:01 +00:00
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "OpenCode Dev",
"identifier": "ai.opencode.desktop.dev",
"mainBinaryName": "OpenCode",
"version": "../package.json",
2025-11-22 05:15:01 +00:00
"build": {
"beforeDevCommand": "bun run dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "bun run build",
"frontendDist": "../dist"
},
"app": {
2026-01-12 16:11:29 +00:00
"windows": [
{
"label": "main",
"create": false
2026-01-12 16:11:29 +00:00
}
],
2025-11-22 05:15:01 +00:00
"withGlobalTauri": true,
"security": {
"csp": null
},
"macOSPrivateApi": true
2025-11-22 05:15:01 +00:00
},
"bundle": {
"icon": [
"icons/dev/32x32.png",
"icons/dev/128x128.png",
"icons/dev/128x128@2x.png",
"icons/dev/icon.icns",
"icons/dev/icon.ico"
],
2025-11-22 05:15:01 +00:00
"active": true,
2026-01-12 11:28:55 +00:00
"targets": ["deb", "rpm", "dmg", "nsis", "app"],
2025-12-15 04:17:41 +00:00
"externalBin": ["sidecars/opencode-cli"],
"linux": {
"rpm": {
2026-02-04 11:35:05 +00:00
"compression": {
"type": "none"
}
}
},
"macOS": {
"entitlements": "./entitlements.plist"
2025-12-17 15:40:52 +00:00
},
"windows": {
"nsis": {
2025-12-17 16:02:16 +00:00
"installerIcon": "icons/dev/icon.ico",
"headerImage": "assets/nsis-header.bmp",
"sidebarImage": "assets/nsis-sidebar.bmp"
2025-12-17 15:40:52 +00:00
}
}
},
"plugins": {
"deep-link": {
"desktop": {
"schemes": ["opencode"]
}
}
2025-11-22 05:15:01 +00:00
}
}