Consolidated from two separate runners (agent-runner-deno.ts + agent-runner.ts) to a single pre-built agent-runner.mjs that runs under both Deno and Node.js. resolve_sidecar_command() now checks runtime availability upfront before path search, with improved error messages. Removed agent-runner-deno.ts from tauri.conf.json bundled resources.
67 lines
1.8 KiB
JSON
67 lines
1.8 KiB
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2",
|
|
"productName": "bterminal",
|
|
"version": "0.1.0",
|
|
"identifier": "com.dexterfromlab.bterminal",
|
|
"build": {
|
|
"frontendDist": "../dist",
|
|
"devUrl": "http://localhost:9700",
|
|
"beforeDevCommand": "npm run dev",
|
|
"beforeBuildCommand": "npm run build"
|
|
},
|
|
"app": {
|
|
"windows": [
|
|
{
|
|
"title": "BTerminal",
|
|
"width": 1920,
|
|
"height": 1080,
|
|
"resizable": true,
|
|
"fullscreen": false,
|
|
"decorations": true
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": null
|
|
}
|
|
},
|
|
"plugins": {
|
|
"updater": {
|
|
"endpoints": [
|
|
"https://github.com/DexterFromLab/BTerminal/releases/latest/download/latest.json"
|
|
],
|
|
"dialog": true,
|
|
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IEJCRkZEMERDMTUwMzY5MjIKUldRaWFRTVYzTkQvdTYwRDh6YStaSE9rWUZYYkRGd3UvVUcydE1IQVdTM29uNTRPTlpjQmFqVFEK"
|
|
}
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"targets": ["deb", "appimage"],
|
|
"icon": [
|
|
"icons/32x32.png",
|
|
"icons/128x128.png",
|
|
"icons/128x128@2x.png",
|
|
"icons/icon.icns",
|
|
"icons/icon.ico"
|
|
],
|
|
"resources": [
|
|
"../sidecar/dist/agent-runner.mjs"
|
|
],
|
|
"category": "DeveloperTool",
|
|
"shortDescription": "Multi-session Claude agent dashboard",
|
|
"longDescription": "BTerminal is a terminal emulator with integrated Claude AI agent sessions, SSH management, and a tiling pane layout. Built with Tauri, Svelte 5, and xterm.js.",
|
|
"linux": {
|
|
"deb": {
|
|
"depends": [
|
|
"libwebkit2gtk-4.1-0",
|
|
"libgtk-3-0",
|
|
"libayatana-appindicator3-1"
|
|
],
|
|
"section": "devel",
|
|
"priority": "optional"
|
|
},
|
|
"appimage": {
|
|
"bundleMediaFramework": false
|
|
}
|
|
}
|
|
}
|
|
}
|