-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 855 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 855 Bytes
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
{
"name": "label-explainer",
"module": "index.ts",
"type": "module",
"scripts": {
"cli": "bun run src/cli.ts",
"process": "bun run src/process.ts",
"compare": "bun run src/compare.ts",
"find-missing": "bun run src/find-missing.ts",
"retry-missing": "bun run src/retry-missing.ts",
"recover-human-explanations": "bun run src/recover-human-explanations.ts",
"rebuild-from-checkpoint": "bun run src/rebuild-from-checkpoint.ts",
"calculate-accuracy": "bun run src/calculate-accuracy.ts"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@ai-sdk/google": "^2.0.16",
"@ai-sdk/openai": "^2.0.35",
"@clack/prompts": "^0.11.0",
"ai": "^5.0.52",
"dedent": "^1.7.0",
"exceljs": "^4.4.0",
"zod": "^3.25.67"
}
}