raggrep 0.2.1 → 0.2.3

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.
@@ -8,7 +8,7 @@
8
8
  *
9
9
  * Index location: .raggrep/index/language/typescript/
10
10
  */
11
- import { IndexModule, IndexContext, SearchContext, SearchOptions, FileIndex, SearchResult, ModuleConfig } from '../../../types';
11
+ import { IndexModule, IndexContext, SearchContext, SearchOptions, FileIndex, SearchResult, ModuleConfig } from "../../../types";
12
12
  /** Default minimum similarity score for search results */
13
13
  export declare const DEFAULT_MIN_SCORE = 0.15;
14
14
  /** Default number of results to return */
@@ -1,3 +1,3 @@
1
- import { ModuleRegistry } from '../types';
1
+ import { ModuleRegistry } from "../types";
2
2
  export declare const registry: ModuleRegistry;
3
3
  export declare function registerBuiltInModules(): Promise<void>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "raggrep",
3
- "version": "0.2.1",
3
+ "version": "0.2.3",
4
4
  "description": "Local filesystem-based RAG system for codebases - semantic search using local embeddings",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",