-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.48 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.48 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
48
{
"name": "evalbuff",
"version": "0.0.2",
"description": "Automated docs optimization loop: run agent → judge → analyze failures → propose doc edits",
"type": "module",
"bin": {
"evalbuff": "./dist/cli.js"
},
"files": [
"dist",
"README.md"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc -p tsconfig.build.json && node scripts/fix-esm-imports.mjs",
"build:smoke": "npm run build && node dist/cli.js --help",
"prepublishOnly": "npm run build:smoke",
"typecheck": "tsc --noEmit -p .",
"test": "bun test --path-ignore-patterns '**/*.e2e.test.ts'",
"test:all": "bun test",
"test:e2e": "bun test src/__tests__/*.e2e.test.ts",
"run": "bun run src/run-evalbuff.ts",
"tui": "bun run src/tui/main.tsx",
"tui:demo": "bun run src/tui/main.tsx --demo",
"tui:watch": "bun run src/tui/main.tsx --log-dir",
"compress-trace": "bun run src/trace-compressor.ts",
"restore-trace": "bun run src/trace-compressor.ts --restore",
"perfect": "bun run src/perfect-feature.ts",
"release": "npm version patch && npm publish"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "0.2.94",
"@codebuff/sdk": "0.10.7",
"@openai/codex-sdk": "0.118.0",
"zod": "4.3.6"
},
"devDependencies": {
"@opentui/core": "^0.1.96",
"@opentui/react": "^0.1.96",
"@types/bun": "^1.3.11",
"@types/node": "^22.0.0",
"@types/react": "^19.2.14",
"react": "^19.2.4",
"typescript": "^5.5.4"
}
}