.gitignore 866 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. CLAUDE.md
  2. .env
  3. # Logs
  4. logs
  5. *.log
  6. # Node.js related
  7. node_modules/
  8. npm-debug.log*
  9. yarn-debug.log*
  10. yarn-error.log*
  11. # Dependency directories
  12. pids
  13. *.pid
  14. *.seed
  15. *.pid.lock
  16. # Dependency testing
  17. lib-cov
  18. # Compiled binary addons
  19. *.o
  20. *.lo
  21. *.la
  22. *.al
  23. # Output of `npm build`
  24. build/
  25. # Output of `node-gyp`
  26. build/Release
  27. # .lock-wscript
  28. .lock-wscript
  29. # Yarn Integrity file
  30. .yarn-integrity
  31. # dotenv environment variables file
  32. .env
  33. # npm package lock
  34. package-lock.json
  35. # macOS files
  36. .DS_Store
  37. # Windows thumbnail cache files
  38. Thumbs.db
  39. # Editor-specific files
  40. .vscode/
  41. .idea/
  42. *.suo
  43. *.ntvs*
  44. *.njsproj
  45. *.sln
  46. *.sw?
  47. # Sublime Text specific files
  48. *.sublime-workspace
  49. *.sublime-project
  50. # WebStorm workspace
  51. .idea/workspace.xml
  52. # JetBrains IDEs (PyCharm, PhpStorm, RubyMine, etc)
  53. .idea/
  54. # Test coverage directory used by tools like istanbul
  55. coverage/
  56. # Docs folder
  57. docs/