-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.18 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.18 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
{
"name": "malkier",
"module": "index.ts",
"type": "module",
"scripts": {
"dev:tmux": "bash scripts/malkier-dev-tmux.sh",
"eval:test": "bun test ./tool_eval/*.test.ts",
"eval:hello-no-tool": "bun tool_eval/hello-no-tool.ts",
"eval:must-use-tool": "bun tool_eval/must-use-tool.ts",
"eval:unavailable-capability-honesty": "bun tool_eval/unavailable-capability-honesty.ts",
"eval:bounded-edit-and-test": "bun tool_eval/bounded-edit-and-test.ts",
"eval:review-known-bug": "bun tool_eval/review-known-bug.ts",
"eval:repo-grounded-approach": "bun tool_eval/repo-grounded-approach.ts",
"eval:all": "bun run eval:hello-no-tool && bun run eval:must-use-tool && bun run eval:unavailable-capability-honesty && bun run eval:bounded-edit-and-test && bun run eval:review-known-bug && bun run eval:repo-grounded-approach"
},
"workspaces": [
"packages/*",
"apps/*"
],
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {},
"dependencies": {},
"catalog": {
"@effect/ai": "^0.33.2",
"@effect/ai-openai": "^0.37.2",
"@effect/platform": "^0.94.5",
"effect": "^3.19.19",
"typescript": "^5.9.3",
"zod": "^4.3.6"
}
}