raggrep 0.17.1 → 0.18.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.
package/dist/types.d.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * This file re-exports domain entities and defines module interfaces.
5
5
  * For new code, prefer importing directly from 'domain/entities'.
6
6
  */
7
- export type { Chunk, ChunkType, FileIndex, FileManifestEntry, ModuleManifest, GlobalManifest, FileSummary, Tier1Manifest, SearchResult, SearchOptions, SearchContributions, CoreContribution, LanguageContribution, IntrospectionContribution, Config, ModuleConfig, ExactMatchOccurrence, ExactMatchFile, ExactMatchResults, HybridSearchResults, } from "./domain/entities";
7
+ export type { Chunk, ChunkType, FileIndex, FileManifestEntry, ModuleManifest, GlobalManifest, FileSummary, Tier1Manifest, SearchResult, SearchOptions, SearchContributions, CoreContribution, LanguageContribution, IntrospectionContribution, RankBy, Config, ModuleConfig, ExactMatchOccurrence, ExactMatchFile, ExactMatchResults, HybridSearchResults, RankingWeightsPartial, RankingWeightsConfig, LiteralBoostWeights, } from "./domain/entities";
8
8
  export { createChunkId, DEFAULT_SEARCH_OPTIONS, DEFAULT_IGNORE_PATHS, DEFAULT_EXTENSIONS, createDefaultConfig, } from "./domain/entities";
9
9
  import type { Config, FileIndex, SearchResult, SearchOptions, ModuleConfig } from "./domain/entities";
10
10
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "raggrep",
3
- "version": "0.17.1",
3
+ "version": "0.18.0",
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",
@@ -28,9 +28,12 @@
28
28
  "prepublishOnly": "bun run build",
29
29
  "raggrep": "bun run src/app/cli/main.ts",
30
30
  "test": "bun test",
31
- "typecheck": "tsc --noEmit -p tsconfig.json && tsc --noEmit -p scripts/tsconfig.json",
32
- "bench:embeddings": "bun run scripts/benchmark-embedding-runtimes.ts",
33
- "bench:retrieval": "bun run scripts/benchmark-retrieval-quality.ts",
31
+ "typecheck": "tsc --noEmit -p tsconfig.json && tsc --noEmit -p research/tsconfig.json",
32
+ "bench:embeddings": "bun run research/bench/benchmark-embedding-runtimes.ts",
33
+ "bench:retrieval": "bun run research/bench/benchmark-retrieval-quality.ts",
34
+ "eval:golden": "bun run research/eval/run-golden-queries.ts",
35
+ "bench:golden-convex": "bun run research/bench/benchmark-raggrep-golden-queries.ts",
36
+ "bench:golden-hillclimb": "bun run research/bench/benchmark-raggrep-hillclimb.ts",
34
37
  "dev": "bun run src/app/cli/main.ts"
35
38
  },
36
39
  "keywords": [