Files

90 lines
1.8 KiB
JSON
Raw Permalink Normal View History

2026-03-09 13:02:11 -07:00
{
"$schema": "https://schema.tauri.app/config/2",
2026-06-11 08:06:24 -07:00
"productName": "Buzz",
"version": "0.4.10",
2026-06-11 08:06:24 -07:00
"identifier": "xyz.block.buzz.app",
2026-03-09 13:02:11 -07:00
"build": {
2026-03-18 16:46:01 -07:00
"beforeDevCommand": {
"script": "exec ./node_modules/.bin/vite",
"cwd": "..",
"wait": false
},
2026-03-09 13:02:11 -07:00
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "pnpm build",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"title": "",
"width": 800,
"height": 600,
2026-06-09 18:08:37 +01:00
"maximized": true,
"visible": false,
2026-07-09 16:10:24 +01:00
"transparent": true,
"titleBarStyle": "Overlay",
"hiddenTitle": true,
"dragDropEnabled": false,
"trafficLightPosition": {
"x": 16,
"y": 24
},
"backgroundThrottling": "disabled",
"minWidth": 800,
"minHeight": 500
2026-03-09 13:02:11 -07:00
}
],
2026-07-09 16:10:24 +01:00
"macOSPrivateApi": true,
2026-03-09 13:02:11 -07:00
"security": {
"csp": null
}
},
"plugins": {
"updater": {
"endpoints": []
},
"deep-link": {
"desktop": {
2026-06-11 08:06:24 -07:00
"schemes": ["buzz"]
}
}
},
2026-03-09 13:02:11 -07:00
"bundle": {
"active": true,
"targets": "all",
"externalBin": [
"binaries/buzz-acp",
"binaries/buzz-agent",
"binaries/buzz-dev-mcp",
"binaries/git-credential-nostr",
"binaries/buzz"
],
2026-03-09 13:02:11 -07:00
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
2026-03-24 13:33:45 -07:00
],
"macOS": {
"infoPlist": "Info.plist",
2026-07-03 16:56:20 +01:00
"entitlements": "Entitlements.plist",
"dmg": {
"background": "icons/dmg-background.png",
"windowSize": {
"width": 660,
"height": 532
},
"appPosition": {
"x": 191,
"y": 330
},
"applicationFolderPosition": {
"x": 469,
"y": 330
}
}
2026-03-24 13:33:45 -07:00
}
2026-03-09 13:02:11 -07:00
}
}