-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.25 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"name": "smriti",
"version": "0.6.0",
"description": "Smriti - Unified memory layer across all AI agents",
"type": "module",
"bin": {
"smriti": "./src/index.ts"
},
"scripts": {
"dev": "bun --hot src/index.ts",
"build": "bun build src/index.ts --outdir dist --target bun",
"test": "bun test",
"smriti": "bun src/index.ts",
"bench:qmd": "bun run scripts/bench-qmd.ts --profile ci-small --out bench/results/ci-small.json --no-llm",
"bench:qmd:repeat": "bun run scripts/bench-qmd-repeat.ts --profiles ci-small,small,medium --runs 3 --out bench/results/repeat-summary.json",
"bench:compare": "bun run scripts/bench-compare.ts --baseline bench/baseline.ci-small.json --current bench/results/ci-small.json --threshold 0.2",
"bench:scorecard": "bun run scripts/bench-scorecard.ts --baseline bench/baseline.ci-small.json --profile ci-small --threshold-pct 20",
"bench:ingest-hotpaths": "bun run scripts/bench-ingest-hotpaths.ts",
"bench:ingest-pipeline": "bun run scripts/bench-ingest-pipeline.ts --sessions 120 --messages 12",
"release:meta": "bun run scripts/release-meta.ts"
},
"dependencies": {
"node-llama-cpp": "^3.0.0",
"qmd": "file:./qmd"
},
"devDependencies": {
"@types/bun": "latest"
}
}