# MCPB pack ignore — keep the .mcpb bundle minimal.
# UV runtime reads pyproject.toml and resolves deps at install time,
# so we ship source + manifest + pyproject only.

# Build artifacts
dist/
build/
*.egg-info/

# Caches
__pycache__/
*.py[cod]
.pytest_cache/
.ruff_cache/
.mypy_cache/

# Test code (not needed at runtime)
tests/

# Local dev junk
.venv/
venv/
.env
.env.*
.DS_Store

# Node leftover (we ship MCPB, not npm)
package-lock.json
node_modules/

# Source control / IDE
.git/
.gitignore
.idea/
.vscode/
