-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 602 Bytes
/
package.json
File metadata and controls
20 lines (20 loc) · 602 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "ai-factory",
"private": true,
"type": "module",
"scripts": {
"gen:skill-docs": "bun run scripts/gen-skill-docs.ts",
"gen:skill-docs:check": "bun run scripts/gen-skill-docs.ts --dry-run",
"test": "bun test scripts/",
"test:e2e": "EVALS=1 bun test scripts/skill-e2e.test.ts",
"test:evals": "EVALS=1 bun test scripts/skill-llm-eval.test.ts",
"eval:list": "bun run scripts/eval-list.ts",
"eval:compare": "bun run scripts/eval-compare.ts"
},
"devDependencies": {
"@types/bun": "latest"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.79.0"
}
}