-
Notifications
You must be signed in to change notification settings - Fork 519
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 1.06 KB
/
package.json
File metadata and controls
23 lines (23 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "@codebuff/evalbuff",
"version": "1.0.0",
"description": "Automated docs optimization loop: run agent → judge → analyze failures → propose doc edits",
"private": true,
"type": "module",
"scripts": {
"typecheck": "tsc --noEmit -p .",
"test": "bun test src/__tests__/criteria.test.ts src/__tests__/docs-optimizer.test.ts src/__tests__/morning-report.test.ts src/__tests__/cli-runner.test.ts && bun test src/__tests__/loop.integration.test.ts && bun test src/__tests__/e2e.test.ts",
"test:unit": "bun test src/__tests__/criteria.test.ts src/__tests__/docs-optimizer.test.ts src/__tests__/morning-report.test.ts src/__tests__/cli-runner.test.ts",
"test:integration": "bun test src/__tests__/loop.integration.test.ts",
"test:e2e": "bun test src/__tests__/e2e.test.ts",
"test:e2e-real": "bun run src/run-e2e-test.ts",
"run": "bun run src/run-evalbuff.ts"
},
"dependencies": {
"@ai-sdk/anthropic": "^2.0.50",
"@codebuff/common": "workspace:*",
"@codebuff/sdk": "workspace:*",
"ai": "^5.0.0",
"zod": "^4.2.1"
}
}