-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1.29 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
{
"name": "sourced",
"version": "0.1.0",
"description": "Medication safety review where every claim resolves to a cited source. Never asks the model for a clinical fact.",
"type": "module",
"scripts": {
"demo": "bun run src/cli.ts data/fixtures/discharge-hf-afib.json",
"typecheck": "tsc --noEmit",
"reviewer-demo": "bun run src/verify/reviewer-demo.ts",
"demo:cached": "bun run src/demo-cached.ts",
"data:manifest": "bun run src/data/build-ddinter-manifest.ts",
"data:health": "bun run src/data/health.ts",
"data:cases": "bun run scripts/build-case-report-dataset.ts",
"e2e": "bun run scripts/e2e-browser.ts",
"e2e:corpus": "bun run scripts/e2e-corpus.ts",
"e2e:edges": "bun run scripts/e2e-edges.ts",
"e2e:audit": "bun run scripts/e2e-audit.ts",
"e2e:soak": "bun run scripts/e2e-soak.ts",
"ops:health": "bun run scripts/resource-health.ts",
"data:rxnav-seed": "RXNAV_RECORD=1 bun run scripts/seed-rxnav-cache.ts",
"test:e2e-oracles": "bun test scripts/e2e-oracles.test.ts",
"test:hermetic": "RXNAV_OFFLINE=1 bun test src/ingest",
"test": "bun test",
"test:all": "bun test"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5"
},
"dependencies": {
"@ai-sdk/anthropic": "^4.0.12",
"ai": "^7.0.22"
}
}