mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-15 06:04:43 +00:00
- Scaffold Tauri v2 desktop package (foundry/packages/desktop) - Sidecar build script compiles backend into standalone Bun binary - Frontend build script packages Vite output for Tauri webview - macOS glass-effect app icon following Big Sur design standards - Collapsible sidebars with smooth width transitions - Inset content framing with borders and nested border-radius (Outer R = Inner R + Padding) - iMessage-style chat bubble styling with proper corner radii - Styled composer input with matching border-radius - Vertical separator between chat and right sidebar - Website download button component - Cargo workspace exclude for standalone Tauri build Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
61 lines
662 B
Text
61 lines
662 B
Text
# Dependencies
|
|
node_modules/
|
|
|
|
# Build outputs
|
|
dist/
|
|
build/
|
|
target/
|
|
|
|
# Package manager
|
|
package-lock.json
|
|
yarn.lock
|
|
|
|
# Cache
|
|
.cache/
|
|
.astro/
|
|
*.tsbuildinfo
|
|
.turbo/
|
|
**/.turbo/
|
|
.pnpm-store/
|
|
coverage/
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
.env.*
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
|
|
# Rust
|
|
Cargo.lock
|
|
**/*.rs.bk
|
|
|
|
# Agent runtime directories
|
|
.agents/
|
|
.claude/
|
|
.opencode/
|
|
|
|
# Example temp files
|
|
.tmp-upload/
|
|
*.db
|
|
.foundry/
|
|
|
|
# CLI binaries (downloaded during npm publish)
|
|
sdks/cli/platforms/*/bin/
|
|
|
|
# Foundry desktop app build artifacts
|
|
factory/packages/desktop/frontend-dist/
|
|
factory/packages/desktop/src-tauri/sidecars/
|