-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 2.97 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 2.97 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "jumpybrain",
"version": "0.0.1-local.2",
"private": true,
"type": "module",
"description": "Markdown-native memory for coding agents.",
"bin": {
"jumpybrain": "dist/cli.js"
},
"scripts": {
"build": "node -e \"require('fs').rmSync('dist', { recursive: true, force: true })\" && tsc -p tsconfig.json",
"test": "npm run build && node --test",
"validate": "npm test",
"cli:version": "node scripts/version-local.mjs",
"cli:pack": "node scripts/pack-local.mjs",
"cli:release:local": "npm run cli:version -- prerelease --preid local && npm run validate && npm run cli:pack",
"cli:install:local": "node scripts/install-local-cli.mjs",
"benchmark:longmemeval:materialize:fixture": "node benchmarks/longmemeval/run-script.mjs benchmarks/longmemeval/materialize.ts --fixture benchmarks/longmemeval/fixtures/mini-longmemeval.json --out .bench-tmp/longmemeval/workspaces",
"benchmark:longmemeval:fake-run": "node benchmarks/longmemeval/run-script.mjs benchmarks/longmemeval/fake-run.ts --fixture benchmarks/longmemeval/fixtures/mini-longmemeval.json --workspace-root .bench-tmp/longmemeval/workspaces --out bench-results/longmemeval/fixture-fake.jsonl",
"benchmark:longmemeval:score:fixture": "node benchmarks/longmemeval/run-script.mjs benchmarks/longmemeval/score.ts --fixture benchmarks/longmemeval/fixtures/mini-longmemeval.json --run bench-results/longmemeval/fixture-fake.jsonl --summary-json bench-results/longmemeval/fixture-fake.summary.json",
"benchmark:longmemeval:fixture": "npm run benchmark:longmemeval:materialize:fixture && npm run benchmark:longmemeval:fake-run && npm run benchmark:longmemeval:score:fixture",
"bench:longmemeval:download": "node benchmarks/longmemeval/run-script.mjs benchmarks/longmemeval/download.ts",
"bench:longmemeval:run": "npm run build && node benchmarks/longmemeval/run-script.mjs benchmarks/longmemeval/run-retrieval.ts --data benchdata/longmemeval/longmemeval_s_cleaned.json --workspace-root .bench-tmp/longmemeval/real-workspaces --out bench-results/longmemeval/real-run.jsonl",
"bench:longmemeval:run:memsearch": "node benchmarks/longmemeval/run-script.mjs benchmarks/longmemeval/run-memsearch.ts --data benchdata/longmemeval/longmemeval_s_cleaned.json --workspace-root .bench-tmp/longmemeval/memsearch-workspaces --out bench-results/longmemeval/memsearch-run.jsonl",
"bench:longmemeval:score": "node benchmarks/longmemeval/run-script.mjs benchmarks/longmemeval/score.ts --fixture benchdata/longmemeval/longmemeval_s_cleaned.json --run bench-results/longmemeval/real-run.jsonl --summary-json bench-results/longmemeval/real-run.summary.json"
},
"files": [
"dist",
"README.md",
"docs",
"skills",
"integrations",
"install.sh",
"uninstall.sh",
"scripts/public-install.mjs",
"scripts/public-uninstall.mjs"
],
"engines": {
"node": ">=22"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^25.9.1",
"fast-check": "^4.8.0",
"typescript": "^6.0.3"
}
}