@lumy-pack/line-lore 0.0.1

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 (77) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +188 -0
  3. package/dist/ast/index.d.ts +1 -0
  4. package/dist/ast/parser.d.ts +6 -0
  5. package/dist/cache/file-cache.d.ts +19 -0
  6. package/dist/cache/index.d.ts +1 -0
  7. package/dist/cli.d.ts +1 -0
  8. package/dist/cli.mjs +2288 -0
  9. package/dist/commands/cache.d.ts +2 -0
  10. package/dist/commands/graph.d.ts +2 -0
  11. package/dist/commands/health.d.ts +2 -0
  12. package/dist/commands/index.d.ts +4 -0
  13. package/dist/commands/trace.d.ts +2 -0
  14. package/dist/components/TraceProgress.d.ts +7 -0
  15. package/dist/components/TraceResult.d.ts +8 -0
  16. package/dist/components/index.d.ts +2 -0
  17. package/dist/core/ancestry/ancestry.d.ts +10 -0
  18. package/dist/core/ancestry/index.d.ts +2 -0
  19. package/dist/core/ast-diff/ast-diff.d.ts +4 -0
  20. package/dist/core/ast-diff/comparison/index.d.ts +2 -0
  21. package/dist/core/ast-diff/comparison/structure-comparator.d.ts +4 -0
  22. package/dist/core/ast-diff/extraction/index.d.ts +2 -0
  23. package/dist/core/ast-diff/extraction/signature-hasher.d.ts +4 -0
  24. package/dist/core/ast-diff/extraction/symbol-extractor.d.ts +3 -0
  25. package/dist/core/ast-diff/index.d.ts +4 -0
  26. package/dist/core/blame/blame.d.ts +3 -0
  27. package/dist/core/blame/detection/cosmetic-detector.d.ts +7 -0
  28. package/dist/core/blame/detection/index.d.ts +2 -0
  29. package/dist/core/blame/index.d.ts +4 -0
  30. package/dist/core/blame/parsing/blame-parser.d.ts +2 -0
  31. package/dist/core/blame/parsing/index.d.ts +1 -0
  32. package/dist/core/core.d.ts +14 -0
  33. package/dist/core/index.d.ts +11 -0
  34. package/dist/core/issue-graph/index.d.ts +2 -0
  35. package/dist/core/issue-graph/issue-graph.d.ts +5 -0
  36. package/dist/core/patch-id/index.d.ts +2 -0
  37. package/dist/core/patch-id/patch-id.d.ts +11 -0
  38. package/dist/core/pr-lookup/index.d.ts +1 -0
  39. package/dist/core/pr-lookup/pr-lookup.d.ts +3 -0
  40. package/dist/errors.d.ts +32 -0
  41. package/dist/git/executor.d.ts +2 -0
  42. package/dist/git/health.d.ts +4 -0
  43. package/dist/git/index.d.ts +3 -0
  44. package/dist/git/remote.d.ts +6 -0
  45. package/dist/index.cjs +1904 -0
  46. package/dist/index.d.ts +6 -0
  47. package/dist/index.mjs +1872 -0
  48. package/dist/output/formats.d.ts +5 -0
  49. package/dist/output/index.d.ts +2 -0
  50. package/dist/output/normalizer.d.ts +11 -0
  51. package/dist/platform/github/github-adapter.d.ts +17 -0
  52. package/dist/platform/github/github-enterprise-adapter.d.ts +8 -0
  53. package/dist/platform/github/index.d.ts +2 -0
  54. package/dist/platform/gitlab/gitlab-adapter.d.ts +17 -0
  55. package/dist/platform/gitlab/gitlab-self-hosted-adapter.d.ts +8 -0
  56. package/dist/platform/gitlab/index.d.ts +2 -0
  57. package/dist/platform/index.d.ts +6 -0
  58. package/dist/platform/platform.d.ts +9 -0
  59. package/dist/platform/scheduler/index.d.ts +2 -0
  60. package/dist/platform/scheduler/request-scheduler.d.ts +17 -0
  61. package/dist/types/ast.d.ts +28 -0
  62. package/dist/types/blame.d.ts +34 -0
  63. package/dist/types/cache.d.ts +5 -0
  64. package/dist/types/git.d.ts +23 -0
  65. package/dist/types/graph.d.ts +15 -0
  66. package/dist/types/index.d.ts +11 -0
  67. package/dist/types/output.d.ts +24 -0
  68. package/dist/types/pipeline.d.ts +28 -0
  69. package/dist/types/platform.d.ts +44 -0
  70. package/dist/types/stage.d.ts +14 -0
  71. package/dist/types/trace.d.ts +38 -0
  72. package/dist/types/util.d.ts +4 -0
  73. package/dist/utils/command-registry.d.ts +29 -0
  74. package/dist/utils/index.d.ts +1 -0
  75. package/dist/utils/line-range.d.ts +2 -0
  76. package/dist/version.d.ts +1 -0
  77. package/package.json +71 -0
@@ -0,0 +1,6 @@
1
+ export type { AstDiffStageResult, AstTraceResult, AuthStatus, BlameResult, BlameStageResult, CacheEntry, ChangeType, CommitInfo, ComparisonResult, Confidence, ContentHash, CosmeticReason, FeatureFlags, GraphOptions, GraphResult, HealthReport, IssueInfo, LineRange, NormalizedResponse, OperatingLevel, PlatformAdapter, PlatformType, PRInfo, RateLimitInfo, RemoteInfo, SymbolInfo, SymbolKind, TraceNode, TraceNodeType, TraceOptions, TraceResult, TrackingMethod, } from './types/index.js';
2
+ export { LineLoreError, LineLoreErrorCode } from './errors.js';
3
+ export { clearCache, health, trace } from './core/core.js';
4
+ export type { TraceFullResult } from './core/core.js';
5
+ export { traverseIssueGraph } from './core/issue-graph/index.js';
6
+ export type { GraphTraversalOptions } from './core/issue-graph/index.js';