opencode-codebase-index 0.21.0 → 0.22.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-codebase-index",
3
- "version": "0.21.0",
3
+ "version": "0.22.1",
4
4
  "description": "Host-neutral semantic codebase search with embeddings, symbol discovery, and call-graph tooling",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -38,6 +38,7 @@
38
38
  "scripts": {
39
39
  "build": "npm run build:ts && npm run build:native",
40
40
  "build:ts": "tsup && node scripts/smoke-test-built-cli.mjs",
41
+ "smoke:package": "node scripts/smoke-test-packed-cli.mjs",
41
42
  "build:native": "cd native && cargo build --release && napi build --release --platform",
42
43
  "build:native:all": "cd native && napi build --release --platform --target x86_64-apple-darwin --target aarch64-apple-darwin --target x86_64-unknown-linux-gnu --target aarch64-unknown-linux-gnu --target x86_64-pc-windows-msvc",
43
44
  "visualize": "node dist/cli.js visualize",
@@ -51,11 +52,12 @@
51
52
  "eval:ci:ollama": "npx tsx src/cli.ts eval run --config .github/eval-ollama-config.json --reindex --ci --budget benchmarks/budgets/default.json --against benchmarks/baselines/eval-baseline-summary.json",
52
53
  "eval:compare": "npx tsx src/cli.ts eval compare",
53
54
  "eval:effectiveness": "npx tsx scripts/effectiveness-report.ts",
55
+ "benchmark:indexing-memory": "npx tsx benchmarks/indexing-memory.ts",
54
56
  "dev:link-mcp": "node scripts/link-local-mcp-bin.mjs",
55
57
  "test": "vitest",
56
- "pretest:run": "node scripts/run-build-native-with-rustflags.mjs",
58
+ "pretest:run": "node scripts/run-build-native-with-rustflags.mjs && npm run build:ts",
57
59
  "test:run": "vitest run",
58
- "pretest:coverage": "node scripts/run-build-native-with-rustflags.mjs",
60
+ "pretest:coverage": "node scripts/run-build-native-with-rustflags.mjs && npm run build:ts",
59
61
  "test:coverage": "vitest run --coverage",
60
62
  "lint": "eslint src/",
61
63
  "typecheck": "tsc --noEmit",