mirror of
https://github.com/getAsterisk/claudia.git
synced 2025-08-04 23:38:00 +00:00

- Update package.json dependencies - Bump package version for consistency - Update Cargo dependencies - Add new dependencies required for enhanced functionality - Update Cargo.lock with resolved versions - Update tauri.conf.json with new build configurations - Add platform-specific settings - Configure bundle options for different targets - Update .gitignore patterns - Add new build artifacts to ignore list - Minor fix in claude.rs command implementation
89 lines
2.2 KiB
JSON
89 lines
2.2 KiB
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2",
|
|
"productName": "Claudia",
|
|
"version": "0.1.0",
|
|
"identifier": "claudia.asterisk.so",
|
|
"build": {
|
|
"beforeDevCommand": "bun run dev",
|
|
"devUrl": "http://localhost:1420",
|
|
"beforeBuildCommand": "bun run build",
|
|
"frontendDist": "../dist"
|
|
},
|
|
"app": {
|
|
"windows": [
|
|
{
|
|
"title": "Claudia",
|
|
"width": 800,
|
|
"height": 600
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": "default-src 'self'; img-src 'self' asset: https://asset.localhost blob: data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-eval' https://app.posthog.com https://*.posthog.com https://*.i.posthog.com https://*.assets.i.posthog.com; connect-src 'self' ipc: https://ipc.localhost https://app.posthog.com https://*.posthog.com https://*.i.posthog.com",
|
|
"assetProtocol": {
|
|
"enable": true,
|
|
"scope": [
|
|
"**"
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"plugins": {
|
|
"fs": {
|
|
"scope": [
|
|
"$HOME/**"
|
|
],
|
|
"allow": [
|
|
"readFile",
|
|
"writeFile",
|
|
"readDir",
|
|
"copyFile",
|
|
"createDir",
|
|
"removeDir",
|
|
"removeFile",
|
|
"renameFile",
|
|
"exists"
|
|
]
|
|
},
|
|
"shell": {
|
|
"open": true
|
|
}
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"targets": [
|
|
"deb",
|
|
"rpm",
|
|
"appimage",
|
|
"app",
|
|
"dmg"
|
|
],
|
|
"icon": [
|
|
"icons/32x32.png",
|
|
"icons/128x128.png",
|
|
"icons/128x128@2x.png",
|
|
"icons/icon.icns"
|
|
],
|
|
"resources": [],
|
|
"externalBin": [],
|
|
"copyright": "© 2025 Asterisk. All rights reserved.",
|
|
"category": "DeveloperTool",
|
|
"shortDescription": "GUI app and Toolkit for Claude Code",
|
|
"longDescription": "Claudia is a comprehensive GUI application and toolkit for working with Claude Code, providing an intuitive interface for AI-assisted development.",
|
|
"linux": {
|
|
"appimage": {
|
|
"bundleMediaFramework": true
|
|
},
|
|
"deb": {
|
|
"depends": ["libwebkit2gtk-4.1-0", "libgtk-3-0"]
|
|
}
|
|
},
|
|
"macOS": {
|
|
"frameworks": [],
|
|
"minimumSystemVersion": "10.15",
|
|
"exceptionDomain": "",
|
|
"signingIdentity": null,
|
|
"providerShortName": null,
|
|
"entitlements": "entitlements.plist"
|
|
}
|
|
}
|
|
}
|