* feat(ai): add HarnessAgent sidecar foundation * feat(ai): integrate Pi as a Harness provider * fix(ai): harden Harness provider integration * fix(ai): address Harness integration review * fix(ai): align Harness code with project conventions * fix(ai): preserve Harness sessions on cancellation * test(ai): cover Harness JSONL framing * refactor(ai): generalize Harness sidecar adapters * fix(ci): build Harness sidecar for native checks
69 lines
1.9 KiB
JSON
69 lines
1.9 KiB
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2",
|
|
"productName": "OpenPencil",
|
|
"version": "0.14.0",
|
|
"identifier": "net.dannote.open-pencil",
|
|
"build": {
|
|
"beforeDevCommand": "bun run generate:tauri-menu && bun run build:harness-sidecar && bun run dev",
|
|
"devUrl": "http://localhost:1420",
|
|
"beforeBuildCommand": "bun run generate:tauri-menu && bun run build:harness-sidecar && bun run build",
|
|
"frontendDist": "../dist"
|
|
},
|
|
"app": {
|
|
"windows": [
|
|
{
|
|
"title": "OpenPencil",
|
|
"width": 1280,
|
|
"height": 800,
|
|
"dragDropEnabled": false
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": null
|
|
}
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"targets": "all",
|
|
"createUpdaterArtifacts": true,
|
|
"externalBin": ["binaries/openpencil-harness"],
|
|
"icon": [
|
|
"icons/32x32.png",
|
|
"icons/128x128.png",
|
|
"icons/128x128@2x.png",
|
|
"icons/icon.icns",
|
|
"icons/icon.ico"
|
|
],
|
|
"fileAssociations": [
|
|
{
|
|
"ext": ["pen"],
|
|
"name": "Pencil Design File",
|
|
"description": "Pencil design file",
|
|
"role": "Editor",
|
|
"mimeType": "application/x-pencil-pen",
|
|
"rank": "Alternate"
|
|
},
|
|
{
|
|
"ext": ["fig"],
|
|
"name": "Figma Design File",
|
|
"description": "Figma design file",
|
|
"role": "Editor",
|
|
"mimeType": "application/x-figma",
|
|
"rank": "Alternate"
|
|
}
|
|
],
|
|
"macOS": {
|
|
"signingIdentity": "Developer ID Application: Danila Poyarkov (N7D7M3Q3CD)"
|
|
}
|
|
},
|
|
"plugins": {
|
|
"updater": {
|
|
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDU4QzBCRjBFNzhFNEVEMDEKUldRQjdlUjREci9BV0hLaEJPeG5tRXdsWkhQWFdEa0VxcEtNR1o1S2VJeGlKU1VDTldQTi9wYncK",
|
|
"endpoints": ["https://github.com/open-pencil/open-pencil/releases/latest/download/latest.json"],
|
|
"windows": {
|
|
"installMode": "passive"
|
|
}
|
|
}
|
|
}
|
|
}
|