devbrain-cli 0.2.0 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (740) hide show
  1. package/README.md +26 -26
  2. package/dist/bin.js +16 -3
  3. package/dist/commands/context.command.d.ts +2 -1
  4. package/dist/commands/context.command.js +42 -4
  5. package/dist/commands/learn.command.d.ts +3 -0
  6. package/dist/commands/learn.command.js +140 -23
  7. package/dist/commands/search.command.d.ts +14 -0
  8. package/dist/commands/search.command.js +90 -0
  9. package/dist/temp-prefix/devbrain +16 -0
  10. package/dist/temp-prefix/devbrain.cmd +17 -0
  11. package/dist/temp-prefix/devbrain.ps1 +28 -0
  12. package/dist/temp-prefix/node_modules/devbrain-cli/LICENSE +21 -0
  13. package/dist/temp-prefix/node_modules/devbrain-cli/README.md +26 -0
  14. package/dist/temp-prefix/node_modules/devbrain-cli/dist/bin.d.ts +2 -0
  15. package/dist/temp-prefix/node_modules/devbrain-cli/dist/bin.js +110 -0
  16. package/dist/temp-prefix/node_modules/devbrain-cli/dist/commands/context.command.d.ts +17 -0
  17. package/dist/temp-prefix/node_modules/devbrain-cli/dist/commands/context.command.js +74 -0
  18. package/dist/temp-prefix/node_modules/devbrain-cli/dist/commands/history.command.d.ts +10 -0
  19. package/dist/temp-prefix/node_modules/devbrain-cli/dist/commands/history.command.js +66 -0
  20. package/dist/temp-prefix/node_modules/devbrain-cli/dist/commands/hook.command.d.ts +14 -0
  21. package/dist/temp-prefix/node_modules/devbrain-cli/dist/commands/hook.command.js +40 -0
  22. package/dist/temp-prefix/node_modules/devbrain-cli/dist/commands/init.command.d.ts +17 -0
  23. package/dist/temp-prefix/node_modules/devbrain-cli/dist/commands/init.command.js +93 -0
  24. package/dist/temp-prefix/node_modules/devbrain-cli/dist/commands/learn.command.d.ts +30 -0
  25. package/dist/temp-prefix/node_modules/devbrain-cli/dist/commands/learn.command.js +294 -0
  26. package/dist/temp-prefix/node_modules/devbrain-cli/dist/commands/search.command.d.ts +14 -0
  27. package/dist/temp-prefix/node_modules/devbrain-cli/dist/commands/search.command.js +90 -0
  28. package/dist/temp-prefix/node_modules/devbrain-cli/dist/commands/status.command.d.ts +12 -0
  29. package/dist/temp-prefix/node_modules/devbrain-cli/dist/commands/status.command.js +82 -0
  30. package/dist/temp-prefix/node_modules/devbrain-cli/dist/pipeline/command.pipeline.d.ts +28 -0
  31. package/dist/temp-prefix/node_modules/devbrain-cli/dist/pipeline/command.pipeline.js +65 -0
  32. package/dist/temp-prefix/node_modules/devbrain-cli/dist/ui/logger.d.ts +13 -0
  33. package/dist/temp-prefix/node_modules/devbrain-cli/dist/ui/logger.js +31 -0
  34. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/.bin/fxparser +16 -0
  35. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/.bin/fxparser.cmd +17 -0
  36. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/.bin/fxparser.ps1 +28 -0
  37. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/analysis/analyzer.interface.d.ts +10 -0
  38. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/analysis/analyzer.interface.js +2 -0
  39. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/analysis/analyzer.registry.d.ts +20 -0
  40. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/analysis/analyzer.registry.js +67 -0
  41. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/analysis/analyzers/build-gradle.analyzer.d.ts +14 -0
  42. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/analysis/analyzers/build-gradle.analyzer.js +53 -0
  43. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/analysis/analyzers/docker.analyzer.d.ts +14 -0
  44. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/analysis/analyzers/docker.analyzer.js +38 -0
  45. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/analysis/analyzers/git.analyzer.d.ts +14 -0
  46. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/analysis/analyzers/git.analyzer.js +54 -0
  47. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/analysis/analyzers/package-json.analyzer.d.ts +14 -0
  48. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/analysis/analyzers/package-json.analyzer.js +72 -0
  49. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/analysis/analyzers/pom-xml.analyzer.d.ts +14 -0
  50. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/analysis/analyzers/pom-xml.analyzer.js +70 -0
  51. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/analysis/analyzers/readme.analyzer.d.ts +17 -0
  52. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/analysis/analyzers/readme.analyzer.js +65 -0
  53. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/analysis/analyzers/requirements-txt.analyzer.d.ts +14 -0
  54. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/analysis/analyzers/requirements-txt.analyzer.js +62 -0
  55. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/analysis/analyzers/source-code.analyzer.d.ts +24 -0
  56. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/analysis/analyzers/source-code.analyzer.js +126 -0
  57. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/analysis/analyzers/tsconfig.analyzer.d.ts +14 -0
  58. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/analysis/analyzers/tsconfig.analyzer.js +47 -0
  59. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/analysis/scanner.d.ts +21 -0
  60. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/analysis/scanner.js +81 -0
  61. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/context/context.service.d.ts +16 -0
  62. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/context/context.service.js +158 -0
  63. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/embeddings/EmbeddingProvider.d.ts +4 -0
  64. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/embeddings/EmbeddingProvider.js +2 -0
  65. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/embeddings/TransformersProvider.d.ts +9 -0
  66. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/embeddings/TransformersProvider.js +70 -0
  67. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/engine/dependency.resolver.d.ts +12 -0
  68. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/engine/dependency.resolver.js +101 -0
  69. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/engine/history.manager.d.ts +24 -0
  70. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/engine/history.manager.js +64 -0
  71. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/engine/lock.manager.d.ts +21 -0
  72. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/engine/lock.manager.js +89 -0
  73. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/engine/logger.service.d.ts +16 -0
  74. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/engine/logger.service.js +49 -0
  75. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/engine/memory.engine.d.ts +30 -0
  76. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/engine/memory.engine.js +200 -0
  77. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/filesystem/filesystem.service.d.ts +29 -0
  78. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/filesystem/filesystem.service.js +87 -0
  79. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/git/git.service.d.ts +42 -0
  80. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/git/git.service.js +192 -0
  81. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/index/SQLiteVectorStore.d.ts +19 -0
  82. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/index/SQLiteVectorStore.js +189 -0
  83. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/index/VectorIndexer.d.ts +20 -0
  84. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/index/VectorIndexer.js +169 -0
  85. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/index/VectorStore.d.ts +26 -0
  86. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/index/VectorStore.js +2 -0
  87. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/index.d.ts +29 -0
  88. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/index.js +29 -0
  89. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/memory/memory.service.d.ts +22 -0
  90. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/memory/memory.service.js +338 -0
  91. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/retrieval/ContextBuilder.d.ts +4 -0
  92. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/retrieval/ContextBuilder.js +107 -0
  93. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/retrieval/RankingEngine.d.ts +13 -0
  94. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/retrieval/RankingEngine.js +124 -0
  95. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/retrieval/SemanticRetriever.d.ts +17 -0
  96. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/dist/retrieval/SemanticRetriever.js +48 -0
  97. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/core/package.json +23 -0
  98. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/shared/dist/constants.d.ts +14 -0
  99. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/shared/dist/constants.js +24 -0
  100. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/shared/dist/errors.d.ts +38 -0
  101. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/shared/dist/errors.js +64 -0
  102. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/shared/dist/index.d.ts +3 -0
  103. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/shared/dist/index.js +4 -0
  104. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/shared/dist/types.d.ts +97 -0
  105. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/shared/dist/types.js +2 -0
  106. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@devbrain/shared/package.json +14 -0
  107. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@kwsites/file-exists/CHANGELOG.md +12 -0
  108. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@kwsites/file-exists/LICENSE +20 -0
  109. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@kwsites/file-exists/dist/index.d.ts +1 -0
  110. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@kwsites/file-exists/dist/index.js +7 -0
  111. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@kwsites/file-exists/dist/src/index.d.ts +19 -0
  112. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@kwsites/file-exists/dist/src/index.js +55 -0
  113. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@kwsites/file-exists/dist/test/__mocks__/fs.d.ts +7 -0
  114. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@kwsites/file-exists/dist/test/__mocks__/fs.js +26 -0
  115. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@kwsites/file-exists/dist/test/exists.spec.d.ts +1 -0
  116. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@kwsites/file-exists/dist/test/exists.spec.js +77 -0
  117. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@kwsites/file-exists/package.json +42 -0
  118. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@kwsites/file-exists/readme.md +41 -0
  119. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@kwsites/promise-deferred/LICENSE +21 -0
  120. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@kwsites/promise-deferred/dist/index.d.ts +49 -0
  121. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@kwsites/promise-deferred/dist/index.js +59 -0
  122. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@kwsites/promise-deferred/package.json +43 -0
  123. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodable/entities/README.md +41 -0
  124. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodable/entities/package.json +57 -0
  125. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodable/entities/src/EntityDecoder.js +644 -0
  126. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodable/entities/src/EntityEncoder.js +194 -0
  127. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodable/entities/src/entities.js +1159 -0
  128. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodable/entities/src/entityTries.js +49 -0
  129. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodable/entities/src/index.d.ts +341 -0
  130. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodable/entities/src/index.js +29 -0
  131. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.scandir/LICENSE +21 -0
  132. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.scandir/README.md +171 -0
  133. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.scandir/out/adapters/fs.d.ts +20 -0
  134. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.scandir/out/adapters/fs.js +19 -0
  135. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.scandir/out/constants.d.ts +4 -0
  136. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.scandir/out/constants.js +17 -0
  137. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.scandir/out/index.d.ts +12 -0
  138. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.scandir/out/index.js +26 -0
  139. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.scandir/out/providers/async.d.ts +7 -0
  140. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.scandir/out/providers/async.js +104 -0
  141. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.scandir/out/providers/common.d.ts +1 -0
  142. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.scandir/out/providers/common.js +13 -0
  143. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.scandir/out/providers/sync.d.ts +5 -0
  144. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.scandir/out/providers/sync.js +54 -0
  145. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.scandir/out/settings.d.ts +20 -0
  146. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.scandir/out/settings.js +24 -0
  147. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.scandir/out/types/index.d.ts +20 -0
  148. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.scandir/out/types/index.js +2 -0
  149. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.scandir/out/utils/fs.d.ts +2 -0
  150. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.scandir/out/utils/fs.js +19 -0
  151. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.scandir/out/utils/index.d.ts +2 -0
  152. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.scandir/out/utils/index.js +5 -0
  153. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.scandir/package.json +44 -0
  154. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.stat/LICENSE +21 -0
  155. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.stat/README.md +126 -0
  156. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.stat/out/adapters/fs.d.ts +13 -0
  157. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.stat/out/adapters/fs.js +17 -0
  158. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.stat/out/index.d.ts +12 -0
  159. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.stat/out/index.js +26 -0
  160. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.stat/out/providers/async.d.ts +4 -0
  161. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.stat/out/providers/async.js +36 -0
  162. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.stat/out/providers/sync.d.ts +3 -0
  163. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.stat/out/providers/sync.js +23 -0
  164. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.stat/out/settings.d.ts +16 -0
  165. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.stat/out/settings.js +16 -0
  166. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.stat/out/types/index.d.ts +4 -0
  167. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.stat/out/types/index.js +2 -0
  168. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.stat/package.json +37 -0
  169. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.walk/LICENSE +21 -0
  170. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.walk/README.md +215 -0
  171. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.walk/out/index.d.ts +14 -0
  172. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.walk/out/index.js +34 -0
  173. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.walk/out/providers/async.d.ts +12 -0
  174. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.walk/out/providers/async.js +30 -0
  175. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.walk/out/providers/index.d.ts +4 -0
  176. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.walk/out/providers/index.js +9 -0
  177. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.walk/out/providers/stream.d.ts +12 -0
  178. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.walk/out/providers/stream.js +34 -0
  179. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.walk/out/providers/sync.d.ts +10 -0
  180. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.walk/out/providers/sync.js +14 -0
  181. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.walk/out/readers/async.d.ts +30 -0
  182. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.walk/out/readers/async.js +97 -0
  183. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.walk/out/readers/common.d.ts +7 -0
  184. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.walk/out/readers/common.js +31 -0
  185. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.walk/out/readers/reader.d.ts +6 -0
  186. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.walk/out/readers/reader.js +11 -0
  187. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.walk/out/readers/sync.d.ts +15 -0
  188. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.walk/out/readers/sync.js +59 -0
  189. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.walk/out/settings.d.ts +30 -0
  190. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.walk/out/settings.js +26 -0
  191. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.walk/out/types/index.d.ts +8 -0
  192. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.walk/out/types/index.js +2 -0
  193. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@nodelib/fs.walk/package.json +44 -0
  194. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@simple-git/args-pathspec/dist/index.cjs +2 -0
  195. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@simple-git/args-pathspec/dist/index.d.ts +1 -0
  196. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@simple-git/args-pathspec/dist/index.mjs +17 -0
  197. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@simple-git/args-pathspec/dist/src/pathspec.d.ts +8 -0
  198. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@simple-git/args-pathspec/package.json +32 -0
  199. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@simple-git/argv-parser/dist/index.cjs +2 -0
  200. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@simple-git/argv-parser/dist/index.d.ts +5 -0
  201. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@simple-git/argv-parser/dist/index.mjs +463 -0
  202. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@simple-git/argv-parser/dist/src/args/parse-argv.d.ts +6 -0
  203. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@simple-git/argv-parser/dist/src/args/parse-argv.types.d.ts +59 -0
  204. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@simple-git/argv-parser/dist/src/config/analyse-config.d.ts +3 -0
  205. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@simple-git/argv-parser/dist/src/config/config-operands.d.ts +4 -0
  206. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@simple-git/argv-parser/dist/src/config/config.types.d.ts +6 -0
  207. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@simple-git/argv-parser/dist/src/config/detect-config-action.d.ts +13 -0
  208. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@simple-git/argv-parser/dist/src/env/parse-env.d.ts +6 -0
  209. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@simple-git/argv-parser/dist/src/flags/flags.helpers.d.ts +9 -0
  210. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@simple-git/argv-parser/dist/src/flags/parse-global-flags.d.ts +6 -0
  211. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@simple-git/argv-parser/dist/src/flags/parse-task-flags.d.ts +8 -0
  212. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@simple-git/argv-parser/dist/src/tokens/flag-specs.d.ts +9 -0
  213. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@simple-git/argv-parser/dist/src/tokens/token-expander.d.ts +7 -0
  214. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@simple-git/argv-parser/dist/src/vulnerabilities/detect-vulnerable-config-writes.d.ts +3 -0
  215. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@simple-git/argv-parser/dist/src/vulnerabilities/detect-vulnerable-flags.d.ts +3 -0
  216. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@simple-git/argv-parser/dist/src/vulnerabilities/vulnerability-analysis.d.ts +4 -0
  217. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@simple-git/argv-parser/dist/src/vulnerabilities/vulnerability-check.d.ts +5 -0
  218. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@simple-git/argv-parser/dist/src/vulnerabilities/vulnerability.types.d.ts +104 -0
  219. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/@simple-git/argv-parser/package.json +36 -0
  220. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/ansi-regex/index.d.ts +33 -0
  221. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/ansi-regex/index.js +14 -0
  222. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/ansi-regex/license +9 -0
  223. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/ansi-regex/package.json +61 -0
  224. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/ansi-regex/readme.md +66 -0
  225. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/anynum/LICENSE +21 -0
  226. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/anynum/README.md +142 -0
  227. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/anynum/anynum.js +135 -0
  228. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/anynum/digitTable.js +116 -0
  229. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/anynum/package.json +42 -0
  230. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/braces/LICENSE +21 -0
  231. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/braces/README.md +586 -0
  232. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/braces/index.js +170 -0
  233. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/braces/lib/compile.js +60 -0
  234. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/braces/lib/constants.js +57 -0
  235. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/braces/lib/expand.js +113 -0
  236. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/braces/lib/parse.js +331 -0
  237. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/braces/lib/stringify.js +32 -0
  238. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/braces/lib/utils.js +122 -0
  239. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/braces/package.json +77 -0
  240. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/chalk/license +9 -0
  241. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/chalk/package.json +83 -0
  242. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/chalk/readme.md +297 -0
  243. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/chalk/source/index.d.ts +325 -0
  244. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/chalk/source/index.js +225 -0
  245. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/chalk/source/utilities.js +33 -0
  246. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/chalk/source/vendor/ansi-styles/index.d.ts +236 -0
  247. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/chalk/source/vendor/ansi-styles/index.js +223 -0
  248. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/chalk/source/vendor/supports-color/browser.d.ts +1 -0
  249. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/chalk/source/vendor/supports-color/browser.js +34 -0
  250. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/chalk/source/vendor/supports-color/index.d.ts +55 -0
  251. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/chalk/source/vendor/supports-color/index.js +190 -0
  252. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/cli-cursor/index.d.ts +47 -0
  253. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/cli-cursor/index.js +39 -0
  254. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/cli-cursor/license +9 -0
  255. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/cli-cursor/package.json +56 -0
  256. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/cli-cursor/readme.md +39 -0
  257. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/cli-spinners/index.d.ts +128 -0
  258. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/cli-spinners/index.js +15 -0
  259. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/cli-spinners/license +9 -0
  260. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/cli-spinners/package.json +50 -0
  261. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/cli-spinners/readme.md +54 -0
  262. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/cli-spinners/spinners.json +1622 -0
  263. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/commander/LICENSE +22 -0
  264. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/commander/Readme.md +1157 -0
  265. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/commander/esm.mjs +16 -0
  266. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/commander/index.js +24 -0
  267. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/commander/lib/argument.js +149 -0
  268. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/commander/lib/command.js +2509 -0
  269. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/commander/lib/error.js +39 -0
  270. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/commander/lib/help.js +520 -0
  271. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/commander/lib/option.js +330 -0
  272. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/commander/lib/suggestSimilar.js +101 -0
  273. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/commander/package-support.json +16 -0
  274. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/commander/package.json +84 -0
  275. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/commander/typings/esm.d.mts +3 -0
  276. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/commander/typings/index.d.ts +969 -0
  277. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/debug/LICENSE +20 -0
  278. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/debug/README.md +481 -0
  279. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/debug/package.json +64 -0
  280. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/debug/src/browser.js +272 -0
  281. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/debug/src/common.js +292 -0
  282. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/debug/src/index.js +10 -0
  283. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/debug/src/node.js +263 -0
  284. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
  285. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/emoji-regex/README.md +107 -0
  286. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/emoji-regex/index.d.ts +3 -0
  287. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/emoji-regex/index.js +4 -0
  288. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/emoji-regex/index.mjs +4 -0
  289. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/emoji-regex/package.json +45 -0
  290. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-glob/LICENSE +21 -0
  291. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-glob/README.md +830 -0
  292. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-glob/out/index.d.ts +40 -0
  293. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-glob/out/index.js +102 -0
  294. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-glob/out/managers/tasks.d.ts +22 -0
  295. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-glob/out/managers/tasks.js +110 -0
  296. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-glob/out/providers/async.d.ts +9 -0
  297. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-glob/out/providers/async.js +23 -0
  298. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-glob/out/providers/filters/deep.d.ts +16 -0
  299. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-glob/out/providers/filters/deep.js +62 -0
  300. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-glob/out/providers/filters/entry.d.ts +17 -0
  301. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-glob/out/providers/filters/entry.js +85 -0
  302. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-glob/out/providers/filters/error.d.ts +8 -0
  303. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-glob/out/providers/filters/error.js +15 -0
  304. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-glob/out/providers/matchers/matcher.d.ts +33 -0
  305. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-glob/out/providers/matchers/matcher.js +45 -0
  306. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-glob/out/providers/matchers/partial.d.ts +4 -0
  307. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-glob/out/providers/matchers/partial.js +38 -0
  308. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-glob/out/providers/provider.d.ts +19 -0
  309. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-glob/out/providers/provider.js +48 -0
  310. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-glob/out/providers/stream.d.ts +11 -0
  311. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-glob/out/providers/stream.js +31 -0
  312. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-glob/out/providers/sync.d.ts +9 -0
  313. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-glob/out/providers/sync.js +23 -0
  314. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-glob/out/providers/transformers/entry.d.ts +8 -0
  315. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-glob/out/providers/transformers/entry.js +26 -0
  316. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-glob/out/readers/async.d.ts +10 -0
  317. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-glob/out/readers/async.js +35 -0
  318. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-glob/out/readers/reader.d.ts +15 -0
  319. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-glob/out/readers/reader.js +33 -0
  320. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-glob/out/readers/stream.d.ts +14 -0
  321. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-glob/out/readers/stream.js +55 -0
  322. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-glob/out/readers/sync.d.ts +12 -0
  323. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-glob/out/readers/sync.js +43 -0
  324. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-glob/out/settings.d.ts +164 -0
  325. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-glob/out/settings.js +59 -0
  326. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-glob/out/types/index.d.ts +31 -0
  327. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-glob/out/types/index.js +2 -0
  328. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-glob/out/utils/array.d.ts +2 -0
  329. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-glob/out/utils/array.js +22 -0
  330. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-glob/out/utils/errno.d.ts +2 -0
  331. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-glob/out/utils/errno.js +7 -0
  332. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-glob/out/utils/fs.d.ts +4 -0
  333. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-glob/out/utils/fs.js +19 -0
  334. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-glob/out/utils/index.d.ts +8 -0
  335. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-glob/out/utils/index.js +17 -0
  336. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-glob/out/utils/path.d.ts +13 -0
  337. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-glob/out/utils/path.js +68 -0
  338. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-glob/out/utils/pattern.d.ts +49 -0
  339. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-glob/out/utils/pattern.js +206 -0
  340. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-glob/out/utils/stream.d.ts +4 -0
  341. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-glob/out/utils/stream.js +17 -0
  342. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-glob/out/utils/string.d.ts +2 -0
  343. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-glob/out/utils/string.js +11 -0
  344. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-glob/package.json +81 -0
  345. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-builder/CHANGELOG.md +40 -0
  346. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-builder/LICENSE +21 -0
  347. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-builder/README.md +74 -0
  348. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-builder/lib/fxb.cjs +1 -0
  349. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-builder/lib/fxb.d.cts +270 -0
  350. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-builder/lib/fxb.min.js +2 -0
  351. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-builder/package.json +81 -0
  352. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-builder/src/fxb.d.ts +270 -0
  353. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-builder/src/fxb.js +599 -0
  354. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-builder/src/ignoreAttributes.js +18 -0
  355. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-builder/src/orderedJs2Xml.js +359 -0
  356. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-builder/src/prettifyJs2Xml.js +0 -0
  357. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-builder/src/util.js +16 -0
  358. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-parser/CHANGELOG.md +852 -0
  359. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-parser/LICENSE +21 -0
  360. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-parser/README.md +200 -0
  361. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-parser/lib/fxbuilder.min.js +2 -0
  362. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-parser/lib/fxp.cjs +1 -0
  363. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-parser/lib/fxp.d.cts +772 -0
  364. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-parser/lib/fxp.min.js +2 -0
  365. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-parser/lib/fxparser.min.js +2 -0
  366. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-parser/lib/fxvalidator.min.js +2 -0
  367. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-parser/package.json +93 -0
  368. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-parser/src/cli/cli.js +97 -0
  369. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-parser/src/cli/man.js +17 -0
  370. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-parser/src/cli/read.js +43 -0
  371. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-parser/src/fxp.d.ts +752 -0
  372. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-parser/src/fxp.js +14 -0
  373. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-parser/src/ignoreAttributes.js +18 -0
  374. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-parser/src/util.js +61 -0
  375. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-parser/src/v6/CharsSymbol.js +16 -0
  376. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-parser/src/v6/EntitiesParser.js +106 -0
  377. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-parser/src/v6/OptionsBuilder.js +61 -0
  378. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-parser/src/v6/OutputBuilders/BaseOutputBuilder.js +69 -0
  379. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-parser/src/v6/OutputBuilders/JsArrBuilder.js +103 -0
  380. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-parser/src/v6/OutputBuilders/JsMinArrBuilder.js +100 -0
  381. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-parser/src/v6/OutputBuilders/JsObjBuilder.js +154 -0
  382. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-parser/src/v6/OutputBuilders/ParserOptionsBuilder.js +94 -0
  383. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-parser/src/v6/Report.js +0 -0
  384. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-parser/src/v6/TagPath.js +81 -0
  385. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-parser/src/v6/TagPathMatcher.js +13 -0
  386. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-parser/src/v6/XMLParser.js +83 -0
  387. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-parser/src/v6/Xml2JsParser.js +235 -0
  388. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-parser/src/v6/XmlPartReader.js +210 -0
  389. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-parser/src/v6/XmlSpecialTagsReader.js +111 -0
  390. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-parser/src/v6/inputSource/BufferSource.js +116 -0
  391. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-parser/src/v6/inputSource/StringSource.js +121 -0
  392. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-parser/src/v6/valueParsers/EntitiesParser.js +105 -0
  393. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-parser/src/v6/valueParsers/booleanParser.js +22 -0
  394. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-parser/src/v6/valueParsers/booleanParserExt.js +19 -0
  395. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-parser/src/v6/valueParsers/currency.js +38 -0
  396. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-parser/src/v6/valueParsers/join.js +13 -0
  397. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-parser/src/v6/valueParsers/number.js +14 -0
  398. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-parser/src/v6/valueParsers/trim.js +6 -0
  399. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-parser/src/validator.js +425 -0
  400. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-parser/src/xmlbuilder/json2xml.js +6 -0
  401. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-parser/src/xmlparser/DocTypeReader.js +411 -0
  402. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-parser/src/xmlparser/OptionsBuilder.js +164 -0
  403. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-parser/src/xmlparser/OrderedObjParser.js +846 -0
  404. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-parser/src/xmlparser/XMLParser.js +71 -0
  405. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-parser/src/xmlparser/node2json.js +177 -0
  406. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fast-xml-parser/src/xmlparser/xmlNode.js +40 -0
  407. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fastq/LICENSE +13 -0
  408. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fastq/README.md +310 -0
  409. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fastq/SECURITY.md +15 -0
  410. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fastq/bench.js +66 -0
  411. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fastq/eslint.config.js +11 -0
  412. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fastq/example.js +14 -0
  413. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fastq/example.mjs +9 -0
  414. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fastq/index.d.ts +59 -0
  415. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fastq/package.json +49 -0
  416. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fastq/queue.js +346 -0
  417. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fastq/test/example.ts +83 -0
  418. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fastq/test/promise.js +325 -0
  419. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fastq/test/test.js +733 -0
  420. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fastq/test/tsconfig.json +11 -0
  421. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fill-range/LICENSE +21 -0
  422. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fill-range/README.md +237 -0
  423. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fill-range/index.js +248 -0
  424. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/fill-range/package.json +74 -0
  425. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/get-east-asian-width/index.d.ts +60 -0
  426. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/get-east-asian-width/index.js +30 -0
  427. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/get-east-asian-width/license +9 -0
  428. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/get-east-asian-width/lookup-data.js +21 -0
  429. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/get-east-asian-width/lookup.js +138 -0
  430. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/get-east-asian-width/package.json +71 -0
  431. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/get-east-asian-width/readme.md +65 -0
  432. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/get-east-asian-width/utilities.js +24 -0
  433. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/glob-parent/CHANGELOG.md +110 -0
  434. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/glob-parent/LICENSE +15 -0
  435. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/glob-parent/README.md +137 -0
  436. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/glob-parent/index.js +42 -0
  437. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/glob-parent/package.json +48 -0
  438. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/is-extglob/LICENSE +21 -0
  439. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/is-extglob/README.md +107 -0
  440. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/is-extglob/index.js +20 -0
  441. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/is-extglob/package.json +69 -0
  442. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/is-glob/LICENSE +21 -0
  443. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/is-glob/README.md +206 -0
  444. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/is-glob/index.js +150 -0
  445. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/is-glob/package.json +81 -0
  446. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/is-interactive/index.d.ts +25 -0
  447. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/is-interactive/index.js +7 -0
  448. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/is-interactive/license +9 -0
  449. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/is-interactive/package.json +41 -0
  450. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/is-interactive/readme.md +52 -0
  451. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/is-number/LICENSE +21 -0
  452. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/is-number/README.md +187 -0
  453. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/is-number/index.js +18 -0
  454. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/is-number/package.json +82 -0
  455. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/is-unicode-supported/index.d.ts +12 -0
  456. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/is-unicode-supported/index.js +21 -0
  457. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/is-unicode-supported/license +9 -0
  458. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/is-unicode-supported/package.json +47 -0
  459. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/is-unicode-supported/readme.md +35 -0
  460. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/is-unsafe/LICENSE +21 -0
  461. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/is-unsafe/README.md +528 -0
  462. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/is-unsafe/package.json +48 -0
  463. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/is-unsafe/src/contexts/html.js +102 -0
  464. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/is-unsafe/src/contexts/log.js +98 -0
  465. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/is-unsafe/src/contexts/nosql.js +114 -0
  466. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/is-unsafe/src/contexts/redos.js +60 -0
  467. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/is-unsafe/src/contexts/shell.js +105 -0
  468. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/is-unsafe/src/contexts/sql-strict.js +47 -0
  469. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/is-unsafe/src/contexts/sql.js +95 -0
  470. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/is-unsafe/src/contexts/svg.js +81 -0
  471. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/is-unsafe/src/contexts/xml.js +78 -0
  472. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/is-unsafe/src/index.cjs +27 -0
  473. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/is-unsafe/src/index.d.ts +28 -0
  474. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/is-unsafe/src/index.js +204 -0
  475. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/is-unsafe/src/registry.js +45 -0
  476. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/log-symbols/browser.js +8 -0
  477. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/log-symbols/index.d.ts +22 -0
  478. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/log-symbols/index.js +20 -0
  479. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/log-symbols/license +9 -0
  480. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/log-symbols/node_modules/is-unicode-supported/index.d.ts +12 -0
  481. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/log-symbols/node_modules/is-unicode-supported/index.js +17 -0
  482. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/log-symbols/node_modules/is-unicode-supported/license +9 -0
  483. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/log-symbols/node_modules/is-unicode-supported/package.json +43 -0
  484. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/log-symbols/node_modules/is-unicode-supported/readme.md +35 -0
  485. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/log-symbols/package.json +57 -0
  486. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/log-symbols/readme.md +39 -0
  487. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/merge2/LICENSE +21 -0
  488. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/merge2/README.md +144 -0
  489. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/merge2/index.js +144 -0
  490. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/merge2/package.json +43 -0
  491. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/micromatch/LICENSE +21 -0
  492. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/micromatch/README.md +1024 -0
  493. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/micromatch/index.js +474 -0
  494. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/micromatch/package.json +119 -0
  495. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/mimic-function/index.d.ts +52 -0
  496. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/mimic-function/index.js +72 -0
  497. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/mimic-function/license +9 -0
  498. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/mimic-function/package.json +49 -0
  499. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/mimic-function/readme.md +80 -0
  500. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/ms/index.js +162 -0
  501. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/ms/license.md +21 -0
  502. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/ms/package.json +38 -0
  503. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/ms/readme.md +59 -0
  504. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/onetime/index.d.ts +59 -0
  505. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/onetime/index.js +41 -0
  506. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/onetime/license +9 -0
  507. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/onetime/package.json +49 -0
  508. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/onetime/readme.md +88 -0
  509. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/ora/index.d.ts +332 -0
  510. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/ora/index.js +424 -0
  511. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/ora/license +9 -0
  512. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/ora/package.json +64 -0
  513. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/ora/readme.md +329 -0
  514. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/path-expression-matcher/LICENSE +21 -0
  515. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/path-expression-matcher/README.md +947 -0
  516. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/path-expression-matcher/lib/pem.cjs +1 -0
  517. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/path-expression-matcher/lib/pem.d.cts +725 -0
  518. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/path-expression-matcher/lib/pem.min.js +2 -0
  519. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/path-expression-matcher/package.json +79 -0
  520. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/path-expression-matcher/src/Expression.js +232 -0
  521. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/path-expression-matcher/src/ExpressionSet.js +225 -0
  522. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/path-expression-matcher/src/Matcher.js +660 -0
  523. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/path-expression-matcher/src/index.d.ts +589 -0
  524. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/path-expression-matcher/src/index.js +30 -0
  525. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/picomatch/LICENSE +21 -0
  526. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/picomatch/README.md +716 -0
  527. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/picomatch/index.js +3 -0
  528. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/picomatch/lib/constants.js +184 -0
  529. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/picomatch/lib/parse.js +1392 -0
  530. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/picomatch/lib/picomatch.js +342 -0
  531. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/picomatch/lib/scan.js +391 -0
  532. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/picomatch/lib/utils.js +64 -0
  533. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/picomatch/package.json +81 -0
  534. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/queue-microtask/LICENSE +20 -0
  535. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/queue-microtask/README.md +90 -0
  536. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/queue-microtask/index.d.ts +2 -0
  537. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/queue-microtask/index.js +9 -0
  538. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/queue-microtask/package.json +55 -0
  539. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/restore-cursor/index.d.ts +15 -0
  540. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/restore-cursor/index.js +15 -0
  541. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/restore-cursor/license +9 -0
  542. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/restore-cursor/package.json +57 -0
  543. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/restore-cursor/readme.md +21 -0
  544. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/reusify/.github/dependabot.yml +7 -0
  545. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/reusify/.github/workflows/ci.yml +96 -0
  546. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/reusify/LICENSE +22 -0
  547. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/reusify/README.md +139 -0
  548. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/reusify/SECURITY.md +15 -0
  549. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/reusify/benchmarks/createNoCodeFunction.js +30 -0
  550. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/reusify/benchmarks/fib.js +13 -0
  551. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/reusify/benchmarks/reuseNoCodeFunction.js +38 -0
  552. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/reusify/eslint.config.js +14 -0
  553. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/reusify/package.json +50 -0
  554. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/reusify/reusify.d.ts +14 -0
  555. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/reusify/reusify.js +33 -0
  556. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/reusify/test.js +66 -0
  557. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/reusify/tsconfig.json +11 -0
  558. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/run-parallel/LICENSE +20 -0
  559. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/run-parallel/README.md +85 -0
  560. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/run-parallel/index.js +51 -0
  561. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/run-parallel/package.json +58 -0
  562. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/signal-exit/LICENSE.txt +16 -0
  563. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/signal-exit/README.md +74 -0
  564. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/signal-exit/dist/cjs/browser.d.ts +12 -0
  565. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/signal-exit/dist/cjs/browser.js +10 -0
  566. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/signal-exit/dist/cjs/index.d.ts +48 -0
  567. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/signal-exit/dist/cjs/index.js +279 -0
  568. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/signal-exit/dist/cjs/package.json +3 -0
  569. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/signal-exit/dist/cjs/signals.d.ts +29 -0
  570. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/signal-exit/dist/cjs/signals.js +42 -0
  571. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/signal-exit/dist/mjs/browser.d.ts +12 -0
  572. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/signal-exit/dist/mjs/browser.js +4 -0
  573. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/signal-exit/dist/mjs/index.d.ts +48 -0
  574. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/signal-exit/dist/mjs/index.js +275 -0
  575. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/signal-exit/dist/mjs/package.json +3 -0
  576. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/signal-exit/dist/mjs/signals.d.ts +29 -0
  577. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/signal-exit/dist/mjs/signals.js +39 -0
  578. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/signal-exit/package.json +106 -0
  579. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/cjs/index.js +4898 -0
  580. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/esm/index.js +4745 -0
  581. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/esm/package.json +3 -0
  582. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/api.d.ts +13 -0
  583. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/args/log-format.d.ts +9 -0
  584. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/errors/git-construct-error.d.ts +15 -0
  585. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/errors/git-error.d.ts +30 -0
  586. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/errors/git-plugin-error.d.ts +7 -0
  587. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/errors/git-response-error.d.ts +32 -0
  588. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/errors/task-configuration-error.d.ts +12 -0
  589. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/git-factory.d.ts +15 -0
  590. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/git-logger.d.ts +21 -0
  591. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/parsers/parse-branch-delete.d.ts +5 -0
  592. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/parsers/parse-branch.d.ts +2 -0
  593. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/parsers/parse-commit.d.ts +2 -0
  594. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/parsers/parse-diff-summary.d.ts +3 -0
  595. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/parsers/parse-fetch.d.ts +2 -0
  596. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/parsers/parse-list-log-summary.d.ts +6 -0
  597. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/parsers/parse-merge.d.ts +11 -0
  598. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/parsers/parse-move.d.ts +2 -0
  599. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/parsers/parse-pull.d.ts +6 -0
  600. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/parsers/parse-push.d.ts +4 -0
  601. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/parsers/parse-remote-messages.d.ts +5 -0
  602. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/parsers/parse-remote-objects.d.ts +3 -0
  603. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/plugins/abort-plugin.d.ts +3 -0
  604. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/plugins/block-unsafe-operations-plugin.d.ts +3 -0
  605. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/plugins/command-config-prefixing-plugin.d.ts +2 -0
  606. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/plugins/completion-detection.plugin.d.ts +3 -0
  607. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/plugins/custom-binary.plugin.d.ts +3 -0
  608. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/plugins/error-detection.plugin.d.ts +7 -0
  609. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/plugins/index.d.ts +11 -0
  610. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/plugins/plugin-store.d.ts +11 -0
  611. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/plugins/progress-monitor-plugin.d.ts +3 -0
  612. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/plugins/simple-git-plugin.d.ts +48 -0
  613. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/plugins/spawn-options-plugin.d.ts +3 -0
  614. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/plugins/suffix-paths.plugin.d.ts +2 -0
  615. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/plugins/timout-plugin.d.ts +3 -0
  616. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/responses/BranchDeleteSummary.d.ts +12 -0
  617. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/responses/BranchSummary.d.ts +14 -0
  618. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/responses/CheckIgnore.d.ts +4 -0
  619. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/responses/CleanSummary.d.ts +9 -0
  620. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/responses/ConfigList.d.ts +13 -0
  621. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/responses/DiffSummary.d.ts +10 -0
  622. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/responses/FileStatusSummary.d.ts +9 -0
  623. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/responses/GetRemoteSummary.d.ts +11 -0
  624. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/responses/InitSummary.d.ts +9 -0
  625. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/responses/MergeSummary.d.ts +16 -0
  626. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/responses/PullSummary.d.ts +25 -0
  627. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/responses/StatusSummary.d.ts +19 -0
  628. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/responses/TagList.d.ts +7 -0
  629. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/runners/git-executor-chain.d.ts +25 -0
  630. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/runners/git-executor.d.ts +14 -0
  631. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/runners/promise-wrapped.d.ts +2 -0
  632. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/runners/scheduler.d.ts +11 -0
  633. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/runners/tasks-pending-queue.d.ts +23 -0
  634. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/simple-git-api.d.ts +20 -0
  635. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/task-callback.d.ts +2 -0
  636. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/tasks/apply-patch.d.ts +3 -0
  637. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/tasks/branch.d.ts +7 -0
  638. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/tasks/change-working-directory.d.ts +2 -0
  639. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/tasks/check-ignore.d.ts +2 -0
  640. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/tasks/check-is-repo.d.ts +9 -0
  641. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/tasks/checkout.d.ts +2 -0
  642. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/tasks/clean.d.ts +25 -0
  643. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/tasks/clone.d.ts +9 -0
  644. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/tasks/commit.d.ts +4 -0
  645. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/tasks/config.d.ts +8 -0
  646. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/tasks/count-objects.d.ts +12 -0
  647. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/tasks/diff-name-status.d.ts +12 -0
  648. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/tasks/diff.d.ts +5 -0
  649. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/tasks/fetch.d.ts +4 -0
  650. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/tasks/first-commit.d.ts +2 -0
  651. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/tasks/grep.d.ts +12 -0
  652. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/tasks/hash-object.d.ts +5 -0
  653. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/tasks/init.d.ts +3 -0
  654. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/tasks/log.d.ts +32 -0
  655. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/tasks/merge.d.ts +4 -0
  656. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/tasks/move.d.ts +3 -0
  657. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/tasks/pull.d.ts +3 -0
  658. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/tasks/push.d.ts +9 -0
  659. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/tasks/remote.d.ts +8 -0
  660. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/tasks/reset.d.ts +11 -0
  661. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/tasks/show.d.ts +2 -0
  662. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/tasks/stash-list.d.ts +4 -0
  663. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/tasks/status.d.ts +3 -0
  664. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/tasks/sub-module.d.ts +5 -0
  665. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/tasks/tag.d.ts +18 -0
  666. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/tasks/task.d.ts +14 -0
  667. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/tasks/version.d.ts +9 -0
  668. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/types/handlers.d.ts +21 -0
  669. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/types/index.d.ts +136 -0
  670. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/types/tasks.d.ts +19 -0
  671. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/utils/argument-filters.d.ts +14 -0
  672. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/utils/exit-codes.d.ts +10 -0
  673. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/utils/git-output-streams.d.ts +7 -0
  674. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/utils/index.d.ts +8 -0
  675. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/utils/line-parser.d.ts +15 -0
  676. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/utils/simple-git-options.d.ts +2 -0
  677. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/utils/task-options.d.ts +13 -0
  678. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/utils/task-parser.d.ts +5 -0
  679. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/src/lib/utils/util.d.ts +47 -0
  680. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/typings/errors.d.ts +5 -0
  681. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/typings/index.d.ts +14 -0
  682. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/typings/response.d.ts +556 -0
  683. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/typings/simple-git.d.ts +1033 -0
  684. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/dist/typings/types.d.ts +22 -0
  685. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/package.json +51 -0
  686. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/promise.js +17 -0
  687. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/simple-git/readme.md +851 -0
  688. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/stdin-discarder/index.d.ts +13 -0
  689. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/stdin-discarder/index.js +59 -0
  690. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/stdin-discarder/license +9 -0
  691. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/stdin-discarder/package.json +42 -0
  692. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/stdin-discarder/readme.md +37 -0
  693. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/string-width/index.d.ts +39 -0
  694. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/string-width/index.js +82 -0
  695. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/string-width/license +9 -0
  696. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/string-width/package.json +64 -0
  697. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/string-width/readme.md +66 -0
  698. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/strip-ansi/index.d.ts +15 -0
  699. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/strip-ansi/index.js +19 -0
  700. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/strip-ansi/license +9 -0
  701. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/strip-ansi/package.json +59 -0
  702. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/strip-ansi/readme.md +37 -0
  703. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/strnum/CHANGELOG.md +51 -0
  704. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/strnum/LICENSE +21 -0
  705. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/strnum/README.md +113 -0
  706. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/strnum/package.json +36 -0
  707. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/strnum/strnum.js +171 -0
  708. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/to-regex-range/LICENSE +21 -0
  709. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/to-regex-range/README.md +305 -0
  710. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/to-regex-range/index.js +288 -0
  711. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/to-regex-range/package.json +88 -0
  712. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/xml-naming/README.md +189 -0
  713. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/xml-naming/package.json +54 -0
  714. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/xml-naming/src/index.d.ts +74 -0
  715. package/dist/temp-prefix/node_modules/devbrain-cli/node_modules/xml-naming/src/index.js +270 -0
  716. package/dist/temp-prefix/node_modules/devbrain-cli/package.json +66 -0
  717. package/node_modules/@devbrain/core/dist/embeddings/EmbeddingProvider.d.ts +4 -0
  718. package/node_modules/@devbrain/core/dist/embeddings/EmbeddingProvider.js +2 -0
  719. package/node_modules/@devbrain/core/dist/embeddings/TransformersProvider.d.ts +9 -0
  720. package/node_modules/@devbrain/core/dist/embeddings/TransformersProvider.js +70 -0
  721. package/node_modules/@devbrain/core/dist/index/SQLiteVectorStore.d.ts +19 -0
  722. package/node_modules/@devbrain/core/dist/index/SQLiteVectorStore.js +189 -0
  723. package/node_modules/@devbrain/core/dist/index/VectorIndexer.d.ts +20 -0
  724. package/node_modules/@devbrain/core/dist/index/VectorIndexer.js +169 -0
  725. package/node_modules/@devbrain/core/dist/index/VectorStore.d.ts +26 -0
  726. package/node_modules/@devbrain/core/dist/index/VectorStore.js +2 -0
  727. package/node_modules/@devbrain/core/dist/index.d.ts +8 -0
  728. package/node_modules/@devbrain/core/dist/index.js +6 -0
  729. package/node_modules/@devbrain/core/dist/retrieval/ContextBuilder.d.ts +4 -0
  730. package/node_modules/@devbrain/core/dist/retrieval/ContextBuilder.js +107 -0
  731. package/node_modules/@devbrain/core/dist/retrieval/RankingEngine.d.ts +13 -0
  732. package/node_modules/@devbrain/core/dist/retrieval/RankingEngine.js +124 -0
  733. package/node_modules/@devbrain/core/dist/retrieval/SemanticRetriever.d.ts +17 -0
  734. package/node_modules/@devbrain/core/dist/retrieval/SemanticRetriever.js +48 -0
  735. package/node_modules/@devbrain/core/package.json +23 -22
  736. package/node_modules/@devbrain/shared/dist/constants.d.ts +1 -1
  737. package/node_modules/@devbrain/shared/dist/constants.js +1 -1
  738. package/node_modules/@devbrain/shared/dist/types.d.ts +11 -0
  739. package/node_modules/@devbrain/shared/package.json +14 -14
  740. package/package.json +66 -65
@@ -0,0 +1,1392 @@
1
+ 'use strict';
2
+
3
+ const constants = require('./constants');
4
+ const utils = require('./utils');
5
+
6
+ /**
7
+ * Constants
8
+ */
9
+
10
+ const {
11
+ MAX_LENGTH,
12
+ POSIX_REGEX_SOURCE,
13
+ REGEX_NON_SPECIAL_CHARS,
14
+ REGEX_SPECIAL_CHARS_BACKREF,
15
+ REPLACEMENTS
16
+ } = constants;
17
+
18
+ /**
19
+ * Helpers
20
+ */
21
+
22
+ const expandRange = (args, options) => {
23
+ if (typeof options.expandRange === 'function') {
24
+ return options.expandRange(...args, options);
25
+ }
26
+
27
+ args.sort();
28
+ const value = `[${args.join('-')}]`;
29
+
30
+ try {
31
+ /* eslint-disable-next-line no-new */
32
+ new RegExp(value);
33
+ } catch (ex) {
34
+ return args.map(v => utils.escapeRegex(v)).join('..');
35
+ }
36
+
37
+ return value;
38
+ };
39
+
40
+ /**
41
+ * Create the message for a syntax error
42
+ */
43
+
44
+ const syntaxError = (type, char) => {
45
+ return `Missing ${type}: "${char}" - use "\\\\${char}" to match literal characters`;
46
+ };
47
+
48
+ const splitTopLevel = input => {
49
+ const parts = [];
50
+ let bracket = 0;
51
+ let paren = 0;
52
+ let quote = 0;
53
+ let value = '';
54
+ let escaped = false;
55
+
56
+ for (const ch of input) {
57
+ if (escaped === true) {
58
+ value += ch;
59
+ escaped = false;
60
+ continue;
61
+ }
62
+
63
+ if (ch === '\\') {
64
+ value += ch;
65
+ escaped = true;
66
+ continue;
67
+ }
68
+
69
+ if (ch === '"') {
70
+ quote = quote === 1 ? 0 : 1;
71
+ value += ch;
72
+ continue;
73
+ }
74
+
75
+ if (quote === 0) {
76
+ if (ch === '[') {
77
+ bracket++;
78
+ } else if (ch === ']' && bracket > 0) {
79
+ bracket--;
80
+ } else if (bracket === 0) {
81
+ if (ch === '(') {
82
+ paren++;
83
+ } else if (ch === ')' && paren > 0) {
84
+ paren--;
85
+ } else if (ch === '|' && paren === 0) {
86
+ parts.push(value);
87
+ value = '';
88
+ continue;
89
+ }
90
+ }
91
+ }
92
+
93
+ value += ch;
94
+ }
95
+
96
+ parts.push(value);
97
+ return parts;
98
+ };
99
+
100
+ const isPlainBranch = branch => {
101
+ let escaped = false;
102
+
103
+ for (const ch of branch) {
104
+ if (escaped === true) {
105
+ escaped = false;
106
+ continue;
107
+ }
108
+
109
+ if (ch === '\\') {
110
+ escaped = true;
111
+ continue;
112
+ }
113
+
114
+ if (/[?*+@!()[\]{}]/.test(ch)) {
115
+ return false;
116
+ }
117
+ }
118
+
119
+ return true;
120
+ };
121
+
122
+ const normalizeSimpleBranch = branch => {
123
+ let value = branch.trim();
124
+ let changed = true;
125
+
126
+ while (changed === true) {
127
+ changed = false;
128
+
129
+ if (/^@\([^\\()[\]{}|]+\)$/.test(value)) {
130
+ value = value.slice(2, -1);
131
+ changed = true;
132
+ }
133
+ }
134
+
135
+ if (!isPlainBranch(value)) {
136
+ return;
137
+ }
138
+
139
+ return value.replace(/\\(.)/g, '$1');
140
+ };
141
+
142
+ const hasRepeatedCharPrefixOverlap = branches => {
143
+ const values = branches.map(normalizeSimpleBranch).filter(Boolean);
144
+
145
+ for (let i = 0; i < values.length; i++) {
146
+ for (let j = i + 1; j < values.length; j++) {
147
+ const a = values[i];
148
+ const b = values[j];
149
+ const char = a[0];
150
+
151
+ if (!char || a !== char.repeat(a.length) || b !== char.repeat(b.length)) {
152
+ continue;
153
+ }
154
+
155
+ if (a === b || a.startsWith(b) || b.startsWith(a)) {
156
+ return true;
157
+ }
158
+ }
159
+ }
160
+
161
+ return false;
162
+ };
163
+
164
+ const parseRepeatedExtglob = (pattern, requireEnd = true) => {
165
+ if ((pattern[0] !== '+' && pattern[0] !== '*') || pattern[1] !== '(') {
166
+ return;
167
+ }
168
+
169
+ let bracket = 0;
170
+ let paren = 0;
171
+ let quote = 0;
172
+ let escaped = false;
173
+
174
+ for (let i = 1; i < pattern.length; i++) {
175
+ const ch = pattern[i];
176
+
177
+ if (escaped === true) {
178
+ escaped = false;
179
+ continue;
180
+ }
181
+
182
+ if (ch === '\\') {
183
+ escaped = true;
184
+ continue;
185
+ }
186
+
187
+ if (ch === '"') {
188
+ quote = quote === 1 ? 0 : 1;
189
+ continue;
190
+ }
191
+
192
+ if (quote === 1) {
193
+ continue;
194
+ }
195
+
196
+ if (ch === '[') {
197
+ bracket++;
198
+ continue;
199
+ }
200
+
201
+ if (ch === ']' && bracket > 0) {
202
+ bracket--;
203
+ continue;
204
+ }
205
+
206
+ if (bracket > 0) {
207
+ continue;
208
+ }
209
+
210
+ if (ch === '(') {
211
+ paren++;
212
+ continue;
213
+ }
214
+
215
+ if (ch === ')') {
216
+ paren--;
217
+
218
+ if (paren === 0) {
219
+ if (requireEnd === true && i !== pattern.length - 1) {
220
+ return;
221
+ }
222
+
223
+ return {
224
+ type: pattern[0],
225
+ body: pattern.slice(2, i),
226
+ end: i
227
+ };
228
+ }
229
+ }
230
+ }
231
+ };
232
+
233
+ const getStarExtglobSequenceOutput = pattern => {
234
+ let index = 0;
235
+ const chars = [];
236
+
237
+ while (index < pattern.length) {
238
+ const match = parseRepeatedExtglob(pattern.slice(index), false);
239
+
240
+ if (!match || match.type !== '*') {
241
+ return;
242
+ }
243
+
244
+ const branches = splitTopLevel(match.body).map(branch => branch.trim());
245
+ if (branches.length !== 1) {
246
+ return;
247
+ }
248
+
249
+ const branch = normalizeSimpleBranch(branches[0]);
250
+ if (!branch || branch.length !== 1) {
251
+ return;
252
+ }
253
+
254
+ chars.push(branch);
255
+ index += match.end + 1;
256
+ }
257
+
258
+ if (chars.length < 1) {
259
+ return;
260
+ }
261
+
262
+ const source = chars.length === 1
263
+ ? utils.escapeRegex(chars[0])
264
+ : `[${chars.map(ch => utils.escapeRegex(ch)).join('')}]`;
265
+
266
+ return `${source}*`;
267
+ };
268
+
269
+ const repeatedExtglobRecursion = pattern => {
270
+ let depth = 0;
271
+ let value = pattern.trim();
272
+ let match = parseRepeatedExtglob(value);
273
+
274
+ while (match) {
275
+ depth++;
276
+ value = match.body.trim();
277
+ match = parseRepeatedExtglob(value);
278
+ }
279
+
280
+ return depth;
281
+ };
282
+
283
+ const analyzeRepeatedExtglob = (body, options) => {
284
+ if (options.maxExtglobRecursion === false) {
285
+ return { risky: false };
286
+ }
287
+
288
+ const max =
289
+ typeof options.maxExtglobRecursion === 'number'
290
+ ? options.maxExtglobRecursion
291
+ : constants.DEFAULT_MAX_EXTGLOB_RECURSION;
292
+
293
+ const branches = splitTopLevel(body).map(branch => branch.trim());
294
+
295
+ if (branches.length > 1) {
296
+ if (
297
+ branches.some(branch => branch === '') ||
298
+ branches.some(branch => /^[*?]+$/.test(branch)) ||
299
+ hasRepeatedCharPrefixOverlap(branches)
300
+ ) {
301
+ return { risky: true };
302
+ }
303
+ }
304
+
305
+ for (const branch of branches) {
306
+ const safeOutput = getStarExtglobSequenceOutput(branch);
307
+ if (safeOutput) {
308
+ return { risky: true, safeOutput };
309
+ }
310
+
311
+ if (repeatedExtglobRecursion(branch) > max) {
312
+ return { risky: true };
313
+ }
314
+ }
315
+
316
+ return { risky: false };
317
+ };
318
+
319
+ /**
320
+ * Parse the given input string.
321
+ * @param {String} input
322
+ * @param {Object} options
323
+ * @return {Object}
324
+ */
325
+
326
+ const parse = (input, options) => {
327
+ if (typeof input !== 'string') {
328
+ throw new TypeError('Expected a string');
329
+ }
330
+
331
+ input = REPLACEMENTS[input] || input;
332
+
333
+ const opts = { ...options };
334
+ const max = typeof opts.maxLength === 'number' ? Math.min(MAX_LENGTH, opts.maxLength) : MAX_LENGTH;
335
+
336
+ let len = input.length;
337
+ if (len > max) {
338
+ throw new SyntaxError(`Input length: ${len}, exceeds maximum allowed length: ${max}`);
339
+ }
340
+
341
+ const bos = { type: 'bos', value: '', output: opts.prepend || '' };
342
+ const tokens = [bos];
343
+
344
+ const capture = opts.capture ? '' : '?:';
345
+ const win32 = utils.isWindows(options);
346
+
347
+ // create constants based on platform, for windows or posix
348
+ const PLATFORM_CHARS = constants.globChars(win32);
349
+ const EXTGLOB_CHARS = constants.extglobChars(PLATFORM_CHARS);
350
+
351
+ const {
352
+ DOT_LITERAL,
353
+ PLUS_LITERAL,
354
+ SLASH_LITERAL,
355
+ ONE_CHAR,
356
+ DOTS_SLASH,
357
+ NO_DOT,
358
+ NO_DOT_SLASH,
359
+ NO_DOTS_SLASH,
360
+ QMARK,
361
+ QMARK_NO_DOT,
362
+ STAR,
363
+ START_ANCHOR
364
+ } = PLATFORM_CHARS;
365
+
366
+ const globstar = opts => {
367
+ return `(${capture}(?:(?!${START_ANCHOR}${opts.dot ? DOTS_SLASH : DOT_LITERAL}).)*?)`;
368
+ };
369
+
370
+ const nodot = opts.dot ? '' : NO_DOT;
371
+ const qmarkNoDot = opts.dot ? QMARK : QMARK_NO_DOT;
372
+ let star = opts.bash === true ? globstar(opts) : STAR;
373
+
374
+ if (opts.capture) {
375
+ star = `(${star})`;
376
+ }
377
+
378
+ // minimatch options support
379
+ if (typeof opts.noext === 'boolean') {
380
+ opts.noextglob = opts.noext;
381
+ }
382
+
383
+ const state = {
384
+ input,
385
+ index: -1,
386
+ start: 0,
387
+ dot: opts.dot === true,
388
+ consumed: '',
389
+ output: '',
390
+ prefix: '',
391
+ backtrack: false,
392
+ negated: false,
393
+ brackets: 0,
394
+ braces: 0,
395
+ parens: 0,
396
+ quotes: 0,
397
+ globstar: false,
398
+ tokens
399
+ };
400
+
401
+ input = utils.removePrefix(input, state);
402
+ len = input.length;
403
+
404
+ const extglobs = [];
405
+ const braces = [];
406
+ const stack = [];
407
+ let prev = bos;
408
+ let value;
409
+
410
+ /**
411
+ * Tokenizing helpers
412
+ */
413
+
414
+ const eos = () => state.index === len - 1;
415
+ const peek = state.peek = (n = 1) => input[state.index + n];
416
+ const advance = state.advance = () => input[++state.index] || '';
417
+ const remaining = () => input.slice(state.index + 1);
418
+ const consume = (value = '', num = 0) => {
419
+ state.consumed += value;
420
+ state.index += num;
421
+ };
422
+
423
+ const append = token => {
424
+ state.output += token.output != null ? token.output : token.value;
425
+ consume(token.value);
426
+ };
427
+
428
+ const negate = () => {
429
+ let count = 1;
430
+
431
+ while (peek() === '!' && (peek(2) !== '(' || peek(3) === '?')) {
432
+ advance();
433
+ state.start++;
434
+ count++;
435
+ }
436
+
437
+ if (count % 2 === 0) {
438
+ return false;
439
+ }
440
+
441
+ state.negated = true;
442
+ state.start++;
443
+ return true;
444
+ };
445
+
446
+ const increment = type => {
447
+ state[type]++;
448
+ stack.push(type);
449
+ };
450
+
451
+ const decrement = type => {
452
+ state[type]--;
453
+ stack.pop();
454
+ };
455
+
456
+ /**
457
+ * Push tokens onto the tokens array. This helper speeds up
458
+ * tokenizing by 1) helping us avoid backtracking as much as possible,
459
+ * and 2) helping us avoid creating extra tokens when consecutive
460
+ * characters are plain text. This improves performance and simplifies
461
+ * lookbehinds.
462
+ */
463
+
464
+ const push = tok => {
465
+ if (prev.type === 'globstar') {
466
+ const isBrace = state.braces > 0 && (tok.type === 'comma' || tok.type === 'brace');
467
+ const isExtglob = tok.extglob === true || (extglobs.length && (tok.type === 'pipe' || tok.type === 'paren'));
468
+
469
+ if (tok.type !== 'slash' && tok.type !== 'paren' && !isBrace && !isExtglob) {
470
+ state.output = state.output.slice(0, -prev.output.length);
471
+ prev.type = 'star';
472
+ prev.value = '*';
473
+ prev.output = star;
474
+ state.output += prev.output;
475
+ }
476
+ }
477
+
478
+ if (extglobs.length && tok.type !== 'paren') {
479
+ extglobs[extglobs.length - 1].inner += tok.value;
480
+ }
481
+
482
+ if (tok.value || tok.output) append(tok);
483
+ if (prev && prev.type === 'text' && tok.type === 'text') {
484
+ prev.value += tok.value;
485
+ prev.output = (prev.output || '') + tok.value;
486
+ return;
487
+ }
488
+
489
+ tok.prev = prev;
490
+ tokens.push(tok);
491
+ prev = tok;
492
+ };
493
+
494
+ const extglobOpen = (type, value) => {
495
+ const token = { ...EXTGLOB_CHARS[value], conditions: 1, inner: '' };
496
+
497
+ token.prev = prev;
498
+ token.parens = state.parens;
499
+ token.output = state.output;
500
+ token.startIndex = state.index;
501
+ token.tokensIndex = tokens.length;
502
+ const output = (opts.capture ? '(' : '') + token.open;
503
+
504
+ increment('parens');
505
+ push({ type, value, output: state.output ? '' : ONE_CHAR });
506
+ push({ type: 'paren', extglob: true, value: advance(), output });
507
+ extglobs.push(token);
508
+ };
509
+
510
+ const extglobClose = token => {
511
+ const literal = input.slice(token.startIndex, state.index + 1);
512
+ const body = input.slice(token.startIndex + 2, state.index);
513
+ const analysis = analyzeRepeatedExtglob(body, opts);
514
+
515
+ if ((token.type === 'plus' || token.type === 'star') && analysis.risky) {
516
+ const safeOutput = analysis.safeOutput
517
+ ? (token.output ? '' : ONE_CHAR) + (opts.capture ? `(${analysis.safeOutput})` : analysis.safeOutput)
518
+ : undefined;
519
+ const open = tokens[token.tokensIndex];
520
+
521
+ open.type = 'text';
522
+ open.value = literal;
523
+ open.output = safeOutput || utils.escapeRegex(literal);
524
+
525
+ for (let i = token.tokensIndex + 1; i < tokens.length; i++) {
526
+ tokens[i].value = '';
527
+ tokens[i].output = '';
528
+ delete tokens[i].suffix;
529
+ }
530
+
531
+ state.output = token.output + open.output;
532
+ state.backtrack = true;
533
+
534
+ push({ type: 'paren', extglob: true, value, output: '' });
535
+ decrement('parens');
536
+ return;
537
+ }
538
+
539
+ let output = token.close + (opts.capture ? ')' : '');
540
+ let rest;
541
+
542
+ if (token.type === 'negate') {
543
+ let extglobStar = star;
544
+
545
+ if (token.inner && token.inner.length > 1 && token.inner.includes('/')) {
546
+ extglobStar = globstar(opts);
547
+ }
548
+
549
+ if (extglobStar !== star || eos() || /^\)+$/.test(remaining())) {
550
+ output = token.close = `)$))${extglobStar}`;
551
+ }
552
+
553
+ if (token.inner.includes('*') && (rest = remaining()) && /^\.[^\\/.]+$/.test(rest)) {
554
+ // Any non-magical string (`.ts`) or even nested expression (`.{ts,tsx}`) can follow after the closing parenthesis.
555
+ // In this case, we need to parse the string and use it in the output of the original pattern.
556
+ // Suitable patterns: `/!(*.d).ts`, `/!(*.d).{ts,tsx}`, `**/!(*-dbg).@(js)`.
557
+ //
558
+ // Disabling the `fastpaths` option due to a problem with parsing strings as `.ts` in the pattern like `**/!(*.d).ts`.
559
+ const expression = parse(rest, { ...options, fastpaths: false }).output;
560
+
561
+ output = token.close = `)${expression})${extglobStar})`;
562
+ }
563
+
564
+ if (token.prev.type === 'bos') {
565
+ state.negatedExtglob = true;
566
+ }
567
+ }
568
+
569
+ push({ type: 'paren', extglob: true, value, output });
570
+ decrement('parens');
571
+ };
572
+
573
+ /**
574
+ * Fast paths
575
+ */
576
+
577
+ if (opts.fastpaths !== false && !/(^[*!]|[/()[\]{}"])/.test(input)) {
578
+ let backslashes = false;
579
+
580
+ let output = input.replace(REGEX_SPECIAL_CHARS_BACKREF, (m, esc, chars, first, rest, index) => {
581
+ if (first === '\\') {
582
+ backslashes = true;
583
+ return m;
584
+ }
585
+
586
+ if (first === '?') {
587
+ if (esc) {
588
+ return esc + first + (rest ? QMARK.repeat(rest.length) : '');
589
+ }
590
+ if (index === 0) {
591
+ return qmarkNoDot + (rest ? QMARK.repeat(rest.length) : '');
592
+ }
593
+ return QMARK.repeat(chars.length);
594
+ }
595
+
596
+ if (first === '.') {
597
+ return DOT_LITERAL.repeat(chars.length);
598
+ }
599
+
600
+ if (first === '*') {
601
+ if (esc) {
602
+ return esc + first + (rest ? star : '');
603
+ }
604
+ return star;
605
+ }
606
+ return esc ? m : `\\${m}`;
607
+ });
608
+
609
+ if (backslashes === true) {
610
+ if (opts.unescape === true) {
611
+ output = output.replace(/\\/g, '');
612
+ } else {
613
+ output = output.replace(/\\+/g, m => {
614
+ return m.length % 2 === 0 ? '\\\\' : (m ? '\\' : '');
615
+ });
616
+ }
617
+ }
618
+
619
+ if (output === input && opts.contains === true) {
620
+ state.output = input;
621
+ return state;
622
+ }
623
+
624
+ state.output = utils.wrapOutput(output, state, options);
625
+ return state;
626
+ }
627
+
628
+ /**
629
+ * Tokenize input until we reach end-of-string
630
+ */
631
+
632
+ while (!eos()) {
633
+ value = advance();
634
+
635
+ if (value === '\u0000') {
636
+ continue;
637
+ }
638
+
639
+ /**
640
+ * Escaped characters
641
+ */
642
+
643
+ if (value === '\\') {
644
+ const next = peek();
645
+
646
+ if (next === '/' && opts.bash !== true) {
647
+ continue;
648
+ }
649
+
650
+ if (next === '.' || next === ';') {
651
+ continue;
652
+ }
653
+
654
+ if (!next) {
655
+ value += '\\';
656
+ push({ type: 'text', value });
657
+ continue;
658
+ }
659
+
660
+ // collapse slashes to reduce potential for exploits
661
+ const match = /^\\+/.exec(remaining());
662
+ let slashes = 0;
663
+
664
+ if (match && match[0].length > 2) {
665
+ slashes = match[0].length;
666
+ state.index += slashes;
667
+ if (slashes % 2 !== 0) {
668
+ value += '\\';
669
+ }
670
+ }
671
+
672
+ if (opts.unescape === true) {
673
+ value = advance();
674
+ } else {
675
+ value += advance();
676
+ }
677
+
678
+ if (state.brackets === 0) {
679
+ push({ type: 'text', value });
680
+ continue;
681
+ }
682
+ }
683
+
684
+ /**
685
+ * If we're inside a regex character class, continue
686
+ * until we reach the closing bracket.
687
+ */
688
+
689
+ if (state.brackets > 0 && (value !== ']' || prev.value === '[' || prev.value === '[^')) {
690
+ if (opts.posix !== false && value === ':') {
691
+ const inner = prev.value.slice(1);
692
+ if (inner.includes('[')) {
693
+ prev.posix = true;
694
+
695
+ if (inner.includes(':')) {
696
+ const idx = prev.value.lastIndexOf('[');
697
+ const pre = prev.value.slice(0, idx);
698
+ const rest = prev.value.slice(idx + 2);
699
+ const posix = POSIX_REGEX_SOURCE[rest];
700
+ if (posix) {
701
+ prev.value = pre + posix;
702
+ state.backtrack = true;
703
+ advance();
704
+
705
+ if (!bos.output && tokens.indexOf(prev) === 1) {
706
+ bos.output = ONE_CHAR;
707
+ }
708
+ continue;
709
+ }
710
+ }
711
+ }
712
+ }
713
+
714
+ if ((value === '[' && peek() !== ':') || (value === '-' && peek() === ']')) {
715
+ value = `\\${value}`;
716
+ }
717
+
718
+ if (value === ']' && (prev.value === '[' || prev.value === '[^')) {
719
+ value = `\\${value}`;
720
+ }
721
+
722
+ if (opts.posix === true && value === '!' && prev.value === '[') {
723
+ value = '^';
724
+ }
725
+
726
+ prev.value += value;
727
+ append({ value });
728
+ continue;
729
+ }
730
+
731
+ /**
732
+ * If we're inside a quoted string, continue
733
+ * until we reach the closing double quote.
734
+ */
735
+
736
+ if (state.quotes === 1 && value !== '"') {
737
+ value = utils.escapeRegex(value);
738
+ prev.value += value;
739
+ append({ value });
740
+ continue;
741
+ }
742
+
743
+ /**
744
+ * Double quotes
745
+ */
746
+
747
+ if (value === '"') {
748
+ state.quotes = state.quotes === 1 ? 0 : 1;
749
+ if (opts.keepQuotes === true) {
750
+ push({ type: 'text', value });
751
+ }
752
+ continue;
753
+ }
754
+
755
+ /**
756
+ * Parentheses
757
+ */
758
+
759
+ if (value === '(') {
760
+ increment('parens');
761
+ push({ type: 'paren', value });
762
+ continue;
763
+ }
764
+
765
+ if (value === ')') {
766
+ if (state.parens === 0 && opts.strictBrackets === true) {
767
+ throw new SyntaxError(syntaxError('opening', '('));
768
+ }
769
+
770
+ const extglob = extglobs[extglobs.length - 1];
771
+ if (extglob && state.parens === extglob.parens + 1) {
772
+ extglobClose(extglobs.pop());
773
+ continue;
774
+ }
775
+
776
+ push({ type: 'paren', value, output: state.parens ? ')' : '\\)' });
777
+ decrement('parens');
778
+ continue;
779
+ }
780
+
781
+ /**
782
+ * Square brackets
783
+ */
784
+
785
+ if (value === '[') {
786
+ if (opts.nobracket === true || !remaining().includes(']')) {
787
+ if (opts.nobracket !== true && opts.strictBrackets === true) {
788
+ throw new SyntaxError(syntaxError('closing', ']'));
789
+ }
790
+
791
+ value = `\\${value}`;
792
+ } else {
793
+ increment('brackets');
794
+ }
795
+
796
+ push({ type: 'bracket', value });
797
+ continue;
798
+ }
799
+
800
+ if (value === ']') {
801
+ if (opts.nobracket === true || (prev && prev.type === 'bracket' && prev.value.length === 1)) {
802
+ push({ type: 'text', value, output: `\\${value}` });
803
+ continue;
804
+ }
805
+
806
+ if (state.brackets === 0) {
807
+ if (opts.strictBrackets === true) {
808
+ throw new SyntaxError(syntaxError('opening', '['));
809
+ }
810
+
811
+ push({ type: 'text', value, output: `\\${value}` });
812
+ continue;
813
+ }
814
+
815
+ decrement('brackets');
816
+
817
+ const prevValue = prev.value.slice(1);
818
+ if (prev.posix !== true && prevValue[0] === '^' && !prevValue.includes('/')) {
819
+ value = `/${value}`;
820
+ }
821
+
822
+ prev.value += value;
823
+ append({ value });
824
+
825
+ // when literal brackets are explicitly disabled
826
+ // assume we should match with a regex character class
827
+ if (opts.literalBrackets === false || utils.hasRegexChars(prevValue)) {
828
+ continue;
829
+ }
830
+
831
+ const escaped = utils.escapeRegex(prev.value);
832
+ state.output = state.output.slice(0, -prev.value.length);
833
+
834
+ // when literal brackets are explicitly enabled
835
+ // assume we should escape the brackets to match literal characters
836
+ if (opts.literalBrackets === true) {
837
+ state.output += escaped;
838
+ prev.value = escaped;
839
+ continue;
840
+ }
841
+
842
+ // when the user specifies nothing, try to match both
843
+ prev.value = `(${capture}${escaped}|${prev.value})`;
844
+ state.output += prev.value;
845
+ continue;
846
+ }
847
+
848
+ /**
849
+ * Braces
850
+ */
851
+
852
+ if (value === '{' && opts.nobrace !== true) {
853
+ increment('braces');
854
+
855
+ const open = {
856
+ type: 'brace',
857
+ value,
858
+ output: '(',
859
+ outputIndex: state.output.length,
860
+ tokensIndex: state.tokens.length
861
+ };
862
+
863
+ braces.push(open);
864
+ push(open);
865
+ continue;
866
+ }
867
+
868
+ if (value === '}') {
869
+ const brace = braces[braces.length - 1];
870
+
871
+ if (opts.nobrace === true || !brace) {
872
+ push({ type: 'text', value, output: value });
873
+ continue;
874
+ }
875
+
876
+ let output = ')';
877
+
878
+ if (brace.dots === true) {
879
+ const arr = tokens.slice();
880
+ const range = [];
881
+
882
+ for (let i = arr.length - 1; i >= 0; i--) {
883
+ tokens.pop();
884
+ if (arr[i].type === 'brace') {
885
+ break;
886
+ }
887
+ if (arr[i].type !== 'dots') {
888
+ range.unshift(arr[i].value);
889
+ }
890
+ }
891
+
892
+ output = expandRange(range, opts);
893
+ state.backtrack = true;
894
+ }
895
+
896
+ if (brace.comma !== true && brace.dots !== true) {
897
+ const out = state.output.slice(0, brace.outputIndex);
898
+ const toks = state.tokens.slice(brace.tokensIndex);
899
+ brace.value = brace.output = '\\{';
900
+ value = output = '\\}';
901
+ state.output = out;
902
+ for (const t of toks) {
903
+ state.output += (t.output || t.value);
904
+ }
905
+ }
906
+
907
+ push({ type: 'brace', value, output });
908
+ decrement('braces');
909
+ braces.pop();
910
+ continue;
911
+ }
912
+
913
+ /**
914
+ * Pipes
915
+ */
916
+
917
+ if (value === '|') {
918
+ if (extglobs.length > 0) {
919
+ extglobs[extglobs.length - 1].conditions++;
920
+ }
921
+ push({ type: 'text', value });
922
+ continue;
923
+ }
924
+
925
+ /**
926
+ * Commas
927
+ */
928
+
929
+ if (value === ',') {
930
+ let output = value;
931
+
932
+ const brace = braces[braces.length - 1];
933
+ if (brace && stack[stack.length - 1] === 'braces') {
934
+ brace.comma = true;
935
+ output = '|';
936
+ }
937
+
938
+ push({ type: 'comma', value, output });
939
+ continue;
940
+ }
941
+
942
+ /**
943
+ * Slashes
944
+ */
945
+
946
+ if (value === '/') {
947
+ // if the beginning of the glob is "./", advance the start
948
+ // to the current index, and don't add the "./" characters
949
+ // to the state. This greatly simplifies lookbehinds when
950
+ // checking for BOS characters like "!" and "." (not "./")
951
+ if (prev.type === 'dot' && state.index === state.start + 1) {
952
+ state.start = state.index + 1;
953
+ state.consumed = '';
954
+ state.output = '';
955
+ tokens.pop();
956
+ prev = bos; // reset "prev" to the first token
957
+ continue;
958
+ }
959
+
960
+ push({ type: 'slash', value, output: SLASH_LITERAL });
961
+ continue;
962
+ }
963
+
964
+ /**
965
+ * Dots
966
+ */
967
+
968
+ if (value === '.') {
969
+ if (state.braces > 0 && prev.type === 'dot') {
970
+ if (prev.value === '.') prev.output = DOT_LITERAL;
971
+ const brace = braces[braces.length - 1];
972
+ prev.type = 'dots';
973
+ prev.output += value;
974
+ prev.value += value;
975
+ brace.dots = true;
976
+ continue;
977
+ }
978
+
979
+ if ((state.braces + state.parens) === 0 && prev.type !== 'bos' && prev.type !== 'slash') {
980
+ push({ type: 'text', value, output: DOT_LITERAL });
981
+ continue;
982
+ }
983
+
984
+ push({ type: 'dot', value, output: DOT_LITERAL });
985
+ continue;
986
+ }
987
+
988
+ /**
989
+ * Question marks
990
+ */
991
+
992
+ if (value === '?') {
993
+ const isGroup = prev && prev.value === '(';
994
+ if (!isGroup && opts.noextglob !== true && peek() === '(' && peek(2) !== '?') {
995
+ extglobOpen('qmark', value);
996
+ continue;
997
+ }
998
+
999
+ if (prev && prev.type === 'paren') {
1000
+ const next = peek();
1001
+ let output = value;
1002
+
1003
+ if (next === '<' && !utils.supportsLookbehinds()) {
1004
+ throw new Error('Node.js v10 or higher is required for regex lookbehinds');
1005
+ }
1006
+
1007
+ if ((prev.value === '(' && !/[!=<:]/.test(next)) || (next === '<' && !/<([!=]|\w+>)/.test(remaining()))) {
1008
+ output = `\\${value}`;
1009
+ }
1010
+
1011
+ push({ type: 'text', value, output });
1012
+ continue;
1013
+ }
1014
+
1015
+ if (opts.dot !== true && (prev.type === 'slash' || prev.type === 'bos')) {
1016
+ push({ type: 'qmark', value, output: QMARK_NO_DOT });
1017
+ continue;
1018
+ }
1019
+
1020
+ push({ type: 'qmark', value, output: QMARK });
1021
+ continue;
1022
+ }
1023
+
1024
+ /**
1025
+ * Exclamation
1026
+ */
1027
+
1028
+ if (value === '!') {
1029
+ if (opts.noextglob !== true && peek() === '(') {
1030
+ if (peek(2) !== '?' || !/[!=<:]/.test(peek(3))) {
1031
+ extglobOpen('negate', value);
1032
+ continue;
1033
+ }
1034
+ }
1035
+
1036
+ if (opts.nonegate !== true && state.index === 0) {
1037
+ negate();
1038
+ continue;
1039
+ }
1040
+ }
1041
+
1042
+ /**
1043
+ * Plus
1044
+ */
1045
+
1046
+ if (value === '+') {
1047
+ if (opts.noextglob !== true && peek() === '(' && peek(2) !== '?') {
1048
+ extglobOpen('plus', value);
1049
+ continue;
1050
+ }
1051
+
1052
+ if ((prev && prev.value === '(') || opts.regex === false) {
1053
+ push({ type: 'plus', value, output: PLUS_LITERAL });
1054
+ continue;
1055
+ }
1056
+
1057
+ if ((prev && (prev.type === 'bracket' || prev.type === 'paren' || prev.type === 'brace')) || state.parens > 0) {
1058
+ push({ type: 'plus', value });
1059
+ continue;
1060
+ }
1061
+
1062
+ push({ type: 'plus', value: PLUS_LITERAL });
1063
+ continue;
1064
+ }
1065
+
1066
+ /**
1067
+ * Plain text
1068
+ */
1069
+
1070
+ if (value === '@') {
1071
+ if (opts.noextglob !== true && peek() === '(' && peek(2) !== '?') {
1072
+ push({ type: 'at', extglob: true, value, output: '' });
1073
+ continue;
1074
+ }
1075
+
1076
+ push({ type: 'text', value });
1077
+ continue;
1078
+ }
1079
+
1080
+ /**
1081
+ * Plain text
1082
+ */
1083
+
1084
+ if (value !== '*') {
1085
+ if (value === '$' || value === '^') {
1086
+ value = `\\${value}`;
1087
+ }
1088
+
1089
+ const match = REGEX_NON_SPECIAL_CHARS.exec(remaining());
1090
+ if (match) {
1091
+ value += match[0];
1092
+ state.index += match[0].length;
1093
+ }
1094
+
1095
+ push({ type: 'text', value });
1096
+ continue;
1097
+ }
1098
+
1099
+ /**
1100
+ * Stars
1101
+ */
1102
+
1103
+ if (prev && (prev.type === 'globstar' || prev.star === true)) {
1104
+ prev.type = 'star';
1105
+ prev.star = true;
1106
+ prev.value += value;
1107
+ prev.output = star;
1108
+ state.backtrack = true;
1109
+ state.globstar = true;
1110
+ consume(value);
1111
+ continue;
1112
+ }
1113
+
1114
+ let rest = remaining();
1115
+ if (opts.noextglob !== true && /^\([^?]/.test(rest)) {
1116
+ extglobOpen('star', value);
1117
+ continue;
1118
+ }
1119
+
1120
+ if (prev.type === 'star') {
1121
+ if (opts.noglobstar === true) {
1122
+ consume(value);
1123
+ continue;
1124
+ }
1125
+
1126
+ const prior = prev.prev;
1127
+ const before = prior.prev;
1128
+ const isStart = prior.type === 'slash' || prior.type === 'bos';
1129
+ const afterStar = before && (before.type === 'star' || before.type === 'globstar');
1130
+
1131
+ if (opts.bash === true && (!isStart || (rest[0] && rest[0] !== '/'))) {
1132
+ push({ type: 'star', value, output: '' });
1133
+ continue;
1134
+ }
1135
+
1136
+ const isBrace = state.braces > 0 && (prior.type === 'comma' || prior.type === 'brace');
1137
+ const isExtglob = extglobs.length && (prior.type === 'pipe' || prior.type === 'paren');
1138
+ if (!isStart && prior.type !== 'paren' && !isBrace && !isExtglob) {
1139
+ push({ type: 'star', value, output: '' });
1140
+ continue;
1141
+ }
1142
+
1143
+ // strip consecutive `/**/`
1144
+ while (rest.slice(0, 3) === '/**') {
1145
+ const after = input[state.index + 4];
1146
+ if (after && after !== '/') {
1147
+ break;
1148
+ }
1149
+ rest = rest.slice(3);
1150
+ consume('/**', 3);
1151
+ }
1152
+
1153
+ if (prior.type === 'bos' && eos()) {
1154
+ prev.type = 'globstar';
1155
+ prev.value += value;
1156
+ prev.output = globstar(opts);
1157
+ state.output = prev.output;
1158
+ state.globstar = true;
1159
+ consume(value);
1160
+ continue;
1161
+ }
1162
+
1163
+ if (prior.type === 'slash' && prior.prev.type !== 'bos' && !afterStar && eos()) {
1164
+ state.output = state.output.slice(0, -(prior.output + prev.output).length);
1165
+ prior.output = `(?:${prior.output}`;
1166
+
1167
+ prev.type = 'globstar';
1168
+ prev.output = globstar(opts) + (opts.strictSlashes ? ')' : '|$)');
1169
+ prev.value += value;
1170
+ state.globstar = true;
1171
+ state.output += prior.output + prev.output;
1172
+ consume(value);
1173
+ continue;
1174
+ }
1175
+
1176
+ if (prior.type === 'slash' && prior.prev.type !== 'bos' && rest[0] === '/') {
1177
+ const end = rest[1] !== void 0 ? '|$' : '';
1178
+
1179
+ state.output = state.output.slice(0, -(prior.output + prev.output).length);
1180
+ prior.output = `(?:${prior.output}`;
1181
+
1182
+ prev.type = 'globstar';
1183
+ prev.output = `${globstar(opts)}${SLASH_LITERAL}|${SLASH_LITERAL}${end})`;
1184
+ prev.value += value;
1185
+
1186
+ state.output += prior.output + prev.output;
1187
+ state.globstar = true;
1188
+
1189
+ consume(value + advance());
1190
+
1191
+ push({ type: 'slash', value: '/', output: '' });
1192
+ continue;
1193
+ }
1194
+
1195
+ if (prior.type === 'bos' && rest[0] === '/') {
1196
+ prev.type = 'globstar';
1197
+ prev.value += value;
1198
+ prev.output = `(?:^|${SLASH_LITERAL}|${globstar(opts)}${SLASH_LITERAL})`;
1199
+ state.output = prev.output;
1200
+ state.globstar = true;
1201
+ consume(value + advance());
1202
+ push({ type: 'slash', value: '/', output: '' });
1203
+ continue;
1204
+ }
1205
+
1206
+ // remove single star from output
1207
+ state.output = state.output.slice(0, -prev.output.length);
1208
+
1209
+ // reset previous token to globstar
1210
+ prev.type = 'globstar';
1211
+ prev.output = globstar(opts);
1212
+ prev.value += value;
1213
+
1214
+ // reset output with globstar
1215
+ state.output += prev.output;
1216
+ state.globstar = true;
1217
+ consume(value);
1218
+ continue;
1219
+ }
1220
+
1221
+ const token = { type: 'star', value, output: star };
1222
+
1223
+ if (opts.bash === true) {
1224
+ token.output = '.*?';
1225
+ if (prev.type === 'bos' || prev.type === 'slash') {
1226
+ token.output = nodot + token.output;
1227
+ }
1228
+ push(token);
1229
+ continue;
1230
+ }
1231
+
1232
+ if (prev && (prev.type === 'bracket' || prev.type === 'paren') && opts.regex === true) {
1233
+ token.output = value;
1234
+ push(token);
1235
+ continue;
1236
+ }
1237
+
1238
+ if (state.index === state.start || prev.type === 'slash' || prev.type === 'dot') {
1239
+ if (prev.type === 'dot') {
1240
+ state.output += NO_DOT_SLASH;
1241
+ prev.output += NO_DOT_SLASH;
1242
+
1243
+ } else if (opts.dot === true) {
1244
+ state.output += NO_DOTS_SLASH;
1245
+ prev.output += NO_DOTS_SLASH;
1246
+
1247
+ } else {
1248
+ state.output += nodot;
1249
+ prev.output += nodot;
1250
+ }
1251
+
1252
+ if (peek() !== '*') {
1253
+ state.output += ONE_CHAR;
1254
+ prev.output += ONE_CHAR;
1255
+ }
1256
+ }
1257
+
1258
+ push(token);
1259
+ }
1260
+
1261
+ while (state.brackets > 0) {
1262
+ if (opts.strictBrackets === true) throw new SyntaxError(syntaxError('closing', ']'));
1263
+ state.output = utils.escapeLast(state.output, '[');
1264
+ decrement('brackets');
1265
+ }
1266
+
1267
+ while (state.parens > 0) {
1268
+ if (opts.strictBrackets === true) throw new SyntaxError(syntaxError('closing', ')'));
1269
+ state.output = utils.escapeLast(state.output, '(');
1270
+ decrement('parens');
1271
+ }
1272
+
1273
+ while (state.braces > 0) {
1274
+ if (opts.strictBrackets === true) throw new SyntaxError(syntaxError('closing', '}'));
1275
+ state.output = utils.escapeLast(state.output, '{');
1276
+ decrement('braces');
1277
+ }
1278
+
1279
+ if (opts.strictSlashes !== true && (prev.type === 'star' || prev.type === 'bracket')) {
1280
+ push({ type: 'maybe_slash', value: '', output: `${SLASH_LITERAL}?` });
1281
+ }
1282
+
1283
+ // rebuild the output if we had to backtrack at any point
1284
+ if (state.backtrack === true) {
1285
+ state.output = '';
1286
+
1287
+ for (const token of state.tokens) {
1288
+ state.output += token.output != null ? token.output : token.value;
1289
+
1290
+ if (token.suffix) {
1291
+ state.output += token.suffix;
1292
+ }
1293
+ }
1294
+ }
1295
+
1296
+ return state;
1297
+ };
1298
+
1299
+ /**
1300
+ * Fast paths for creating regular expressions for common glob patterns.
1301
+ * This can significantly speed up processing and has very little downside
1302
+ * impact when none of the fast paths match.
1303
+ */
1304
+
1305
+ parse.fastpaths = (input, options) => {
1306
+ const opts = { ...options };
1307
+ const max = typeof opts.maxLength === 'number' ? Math.min(MAX_LENGTH, opts.maxLength) : MAX_LENGTH;
1308
+ const len = input.length;
1309
+ if (len > max) {
1310
+ throw new SyntaxError(`Input length: ${len}, exceeds maximum allowed length: ${max}`);
1311
+ }
1312
+
1313
+ input = REPLACEMENTS[input] || input;
1314
+ const win32 = utils.isWindows(options);
1315
+
1316
+ // create constants based on platform, for windows or posix
1317
+ const {
1318
+ DOT_LITERAL,
1319
+ SLASH_LITERAL,
1320
+ ONE_CHAR,
1321
+ DOTS_SLASH,
1322
+ NO_DOT,
1323
+ NO_DOTS,
1324
+ NO_DOTS_SLASH,
1325
+ STAR,
1326
+ START_ANCHOR
1327
+ } = constants.globChars(win32);
1328
+
1329
+ const nodot = opts.dot ? NO_DOTS : NO_DOT;
1330
+ const slashDot = opts.dot ? NO_DOTS_SLASH : NO_DOT;
1331
+ const capture = opts.capture ? '' : '?:';
1332
+ const state = { negated: false, prefix: '' };
1333
+ let star = opts.bash === true ? '.*?' : STAR;
1334
+
1335
+ if (opts.capture) {
1336
+ star = `(${star})`;
1337
+ }
1338
+
1339
+ const globstar = opts => {
1340
+ if (opts.noglobstar === true) return star;
1341
+ return `(${capture}(?:(?!${START_ANCHOR}${opts.dot ? DOTS_SLASH : DOT_LITERAL}).)*?)`;
1342
+ };
1343
+
1344
+ const create = str => {
1345
+ switch (str) {
1346
+ case '*':
1347
+ return `${nodot}${ONE_CHAR}${star}`;
1348
+
1349
+ case '.*':
1350
+ return `${DOT_LITERAL}${ONE_CHAR}${star}`;
1351
+
1352
+ case '*.*':
1353
+ return `${nodot}${star}${DOT_LITERAL}${ONE_CHAR}${star}`;
1354
+
1355
+ case '*/*':
1356
+ return `${nodot}${star}${SLASH_LITERAL}${ONE_CHAR}${slashDot}${star}`;
1357
+
1358
+ case '**':
1359
+ return nodot + globstar(opts);
1360
+
1361
+ case '**/*':
1362
+ return `(?:${nodot}${globstar(opts)}${SLASH_LITERAL})?${slashDot}${ONE_CHAR}${star}`;
1363
+
1364
+ case '**/*.*':
1365
+ return `(?:${nodot}${globstar(opts)}${SLASH_LITERAL})?${slashDot}${star}${DOT_LITERAL}${ONE_CHAR}${star}`;
1366
+
1367
+ case '**/.*':
1368
+ return `(?:${nodot}${globstar(opts)}${SLASH_LITERAL})?${DOT_LITERAL}${ONE_CHAR}${star}`;
1369
+
1370
+ default: {
1371
+ const match = /^(.*?)\.(\w+)$/.exec(str);
1372
+ if (!match) return;
1373
+
1374
+ const source = create(match[1]);
1375
+ if (!source) return;
1376
+
1377
+ return source + DOT_LITERAL + match[2];
1378
+ }
1379
+ }
1380
+ };
1381
+
1382
+ const output = utils.removePrefix(input, state);
1383
+ let source = create(output);
1384
+
1385
+ if (source && opts.strictSlashes !== true) {
1386
+ source += `${SLASH_LITERAL}?`;
1387
+ }
1388
+
1389
+ return source;
1390
+ };
1391
+
1392
+ module.exports = parse;