mirror of
https://github.com/cline/cline.git
synced 2026-09-21 05:10:09 +08:00
70 lines
1.5 KiB
JSON
70 lines
1.5 KiB
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2",
|
|
"productName": "Cline",
|
|
"version": "0.0.23",
|
|
"identifier": "bot.cline.app",
|
|
"build": {
|
|
"beforeDevCommand": "bun run build:sidecar:bin && bun run dev:web",
|
|
"devUrl": "http://localhost:3125",
|
|
"beforeBuildCommand": "bun run dmg:background && bun run build",
|
|
"frontendDist": "../webview/out"
|
|
},
|
|
"plugins": {
|
|
"updater": {
|
|
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IENEMTJDNzk2RUExQUY3RDEKUldUUjl4cnFsc2NTelYxNzlFR1NkWnI0VTM1V0hvQXRyOW0xV2c0bFhkL3dhdkdpNGhNRW1MQXEK",
|
|
"endpoints": [
|
|
"https://github.com/cline/cline/releases/download/desktop-latest/latest.json"
|
|
]
|
|
}
|
|
},
|
|
"app": {
|
|
"windows": [
|
|
{
|
|
"label": "main",
|
|
"title": "Cline",
|
|
"width": 1500,
|
|
"height": 980,
|
|
"resizable": true,
|
|
"titleBarStyle": "Overlay",
|
|
"hiddenTitle": true,
|
|
"dragDropEnabled": false
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": null
|
|
}
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"targets": "all",
|
|
"externalBin": ["bin/code-sidecar"],
|
|
"resources": ["icons/dock/*.png"],
|
|
"icon": [
|
|
"icons/32x32.png",
|
|
"icons/128x128.png",
|
|
"icons/128x128@2x.png",
|
|
"icons/icon.icns",
|
|
"icons/icon.ico"
|
|
],
|
|
"macOS": {
|
|
"entitlements": "entitlements.plist",
|
|
"hardenedRuntime": true,
|
|
"dmg": {
|
|
"background": "dmg/background.gen.tiff",
|
|
"windowSize": {
|
|
"width": 640,
|
|
"height": 432
|
|
},
|
|
"appPosition": {
|
|
"x": 140,
|
|
"y": 200
|
|
},
|
|
"applicationFolderPosition": {
|
|
"x": 500,
|
|
"y": 200
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|