# This .gitignore is for the npm-only repository
# Excludes Python package and examples

# Dependencies
node_modules/

# Build output
dist/

# Python folder (not part of npm package)
python/

# Examples (keep in separate repo or docs)
examples/

# IDE
.idea/
.vscode/
*.swp
*.swo

# OS
.DS_Store
Thumbs.db

# Logs
*.log
npm-debug.log*
pnpm-debug.log*

# Test coverage
coverage/

# Environment
.env
.env.local
.env.*.local

# Package manager locks (we use pnpm)
package-lock.json
yarn.lock

# Temporary files
*.tmp
*.temp
.cache/

# TypeScript
*.tsbuildinfo

# Testing
.vitest/
