Bash MCP (Master Control Program)

by yannbam
Verified
# Git internals (shouldn't need this, but adding for safety) .git/ # Dependencies node_modules/ .npm/ # Lock files package-lock.json yarn.lock # Build output dist/ *.tsbuildinfo # Test coverage coverage/ # Logs logs/ *.log npm-debug.log* yarn-debug.log* yarn-error.log* # Environment variables .env .env.local .env.development.local .env.test.local .env.production.local # Cache files .eslintcache .parcel-cache # IDE specific files .idea/ .vscode/ *.swp *.swo # OS specific files .DS_Store Thumbs.db