project-librarian 0.4.0 → 0.4.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": "project-librarian",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "Create and maintain compact project context for humans and LLM coding agents.",
5
5
  "license": "MIT",
6
6
  "type": "commonjs",
@@ -43,16 +43,23 @@
43
43
  "benchmark:llm": "npm run build && node benchmarks/codex-llm-metrics.js",
44
44
  "benchmark:llm:dry-run": "npm run build && node benchmarks/codex-llm-metrics.js --dry-run",
45
45
  "benchmark:llm:parse-smoke": "node tests/validators/codex-llm-benchmark-smoke.js",
46
+ "benchmark:llm:prune-raw": "node benchmarks/tools/prune-llm-raw.js",
46
47
  "benchmark:injection-sentinel": "node benchmarks/tools/injection-sentinel.js",
48
+ "benchmark:claim-ledger": "node benchmarks/tools/benchmark-claim-ledger.js benchmarks/llm/samples/codex-measured-report.json benchmarks/reports/llm/payload-preview.json",
47
49
  "benchmark:real-corpus:demo": "npm run build && node benchmarks/tools/real-corpus-offline-demo.js",
48
50
  "benchmark:release:preview": "npm run benchmark:llm -- --payload-preview benchmarks/reports/llm/payload-preview.json --sanitized-pack --full-matrix --runs 3 --warmup-runs 1 --min-runs-for-claim 3 --require-clean --require-claimable --model gpt-5.5",
49
51
  "benchmark:release": "npm run benchmark:llm -- --sanitized-pack --full-matrix --runs 3 --warmup-runs 1 --min-runs-for-claim 3 --require-clean --require-claimable --model gpt-5.5 --out benchmarks/reports/llm/current.json --markdown benchmarks/reports/llm/current.md",
50
52
  "build": "tsc && chmod +x dist/init-project-wiki.js",
53
+ "perf:code-efficiency": "node benchmarks/tools/code-performance-efficiency.js --full",
54
+ "release:check": "node benchmarks/tools/release-readiness.js",
51
55
  "typecheck": "tsc --noEmit",
52
56
  "unit": "node --test tests/unit/*.test.js",
53
57
  "test": "npm run build && npm run typecheck && npm run unit && bash tests/smoke.sh",
54
58
  "prepack": "npm run build"
55
59
  },
60
+ "dependencies": {
61
+ "typescript": "^6.0.3"
62
+ },
56
63
  "optionalDependencies": {
57
64
  "@sengac/tree-sitter": "^0.25.15",
58
65
  "@sengac/tree-sitter-c": "^0.25.15",
@@ -69,7 +76,6 @@
69
76
  "@sengac/tree-sitter-typescript": "^0.25.15"
70
77
  },
71
78
  "devDependencies": {
72
- "@types/node": "^25.9.2",
73
- "typescript": "^6.0.3"
79
+ "@types/node": "^25.9.2"
74
80
  }
75
81
  }