.gitignore 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  1. # Dependencies
  2. node_modules/
  3. npm-debug.log*
  4. yarn-debug.log*
  5. yarn-error.log*
  6. pnpm-debug.log*
  7. # Environment variables
  8. .env
  9. .env.local
  10. .env.development.local
  11. .env.test.local
  12. .env.production.local
  13. # Build outputs
  14. dist/
  15. build/
  16. out/
  17. *.tsbuildinfo
  18. # OS generated files
  19. .DS_Store
  20. .DS_Store?
  21. ._*
  22. .Spotlight-V100
  23. .Trashes
  24. ehthumbs.db
  25. Thumbs.db
  26. # IDE files
  27. .vscode/
  28. .idea/
  29. *.swp
  30. *.swo
  31. *~
  32. # Logs
  33. logs
  34. *.log
  35. npm-debug.log*
  36. yarn-debug.log*
  37. yarn-error.log*
  38. lerna-debug.log*
  39. .pnpm-debug.log*
  40. # Diagnostic reports (https://nodejs.org/api/report.html)
  41. report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
  42. # Runtime data
  43. pids
  44. *.pid
  45. *.seed
  46. *.pid.lock
  47. # Directory for instrumented libs generated by jscoverage/JSCover
  48. lib-cov
  49. # Coverage directory used by tools like istanbul
  50. coverage
  51. *.lcov
  52. # nyc test coverage
  53. .nyc_output
  54. # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
  55. .grunt
  56. # Bower dependency directory (https://bower.io/)
  57. bower_components
  58. # node-waf configuration
  59. .lock-wscript
  60. # Compiled binary addons (https://nodejs.org/api/addons.html)
  61. build/Release
  62. # Dependency directories
  63. node_modules/
  64. jspm_packages/
  65. # Snowpack dependency directory (https://snowpack.dev/)
  66. web_modules/
  67. # TypeScript cache
  68. *.tsbuildinfo
  69. # Optional npm cache directory
  70. .npm
  71. # Optional eslint cache
  72. .eslintcache
  73. # Optional stylelint cache
  74. .stylelintcache
  75. # Microbundle cache
  76. .rpt2_cache/
  77. .rts2_cache_cjs/
  78. .rts2_cache_es/
  79. .rts2_cache_umd/
  80. # Optional REPL history
  81. .node_repl_history
  82. # Output of 'npm pack'
  83. *.tgz
  84. # Yarn Integrity file
  85. .yarn-integrity
  86. # dotenv environment variable files
  87. .env
  88. .env.development.local
  89. .env.test.local
  90. .env.production.local
  91. .env.local
  92. # parcel-bundler cache (https://parceljs.org/)
  93. .cache
  94. .parcel-cache
  95. # Next.js build output
  96. .next
  97. out
  98. # Nuxt.js build / generate output
  99. .nuxt
  100. dist
  101. # Gatsby files
  102. .cache/
  103. # Comment in the public line in if your project uses Gatsby and not Next.js
  104. # https://nextjs.org/blog/next-9-1#public-directory-support
  105. # public
  106. # vuepress build output
  107. .vuepress/dist
  108. # vuepress v2.x temp and cache directory
  109. .temp
  110. .cache
  111. # Docusaurus cache and generated files
  112. .docusaurus
  113. # Serverless directories
  114. .serverless/
  115. # FuseBox cache
  116. .fusebox/
  117. # DynamoDB Local files
  118. .dynamodb/
  119. # TernJS port file
  120. .tern-port
  121. # Stores VSCode versions used for testing VSCode extensions
  122. .vscode-test
  123. # yarn v2
  124. .yarn/cache
  125. .yarn/unplugged
  126. .yarn/build-state.yml
  127. .yarn/install-state.gz
  128. .pnp.*
  129. # macOS
  130. .DS_Store
  131. # IDE
  132. .idea/
  133. .vscode/
  134. *.swp
  135. *.swo
  136. *~
  137. # Temporary files
  138. tmp/
  139. temp/
  140. # Installation test artifacts
  141. .opencode.backup-*
  142. .opencode-test/
  143. .opencode-agents-version
  144. *.backup-*/
  145. # Test output
  146. /tmp/install-output.log
  147. # Temporary workspace - preserve structure, ignore content
  148. .tmp/*
  149. !.tmp/architecture/
  150. !.tmp/story-maps/
  151. !.tmp/backlog/
  152. !.tmp/contracts/
  153. .tmp/architecture/*
  154. !.tmp/architecture/.gitkeep
  155. !.tmp/architecture/README.md
  156. .tmp/story-maps/*
  157. !.tmp/story-maps/.gitkeep
  158. !.tmp/story-maps/README.md
  159. .tmp/backlog/*
  160. !.tmp/backlog/.gitkeep
  161. !.tmp/backlog/README.md
  162. .tmp/contracts/*
  163. !.tmp/contracts/.gitkeep
  164. !.tmp/contracts/README.md
  165. # Optional npm cache directory
  166. .npm
  167. # Optional eslint cache
  168. .eslintcache
  169. # Bun
  170. .bun
  171. # Evaluation results
  172. evals/results/*
  173. !evals/results/.gitkeep
  174. # User-generated task files
  175. tasks/
  176. # Claude Code integration generated files
  177. integrations/claude-code/converter/generated/
  178. .cursorrules
  179. bun.lock