.gitignore 874 B

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