-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.69 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.69 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
{
"name": "opencode-bench",
"version": "0.1.0",
"type": "module",
"files": [
"dist",
"dataset.yaml"
],
"bin": {
"orvl": "dist/cli.js"
},
"scripts": {
"build": "bun build cli.ts --outfile dist/cli.js --target node --format esm --external node:* --external @openai/codex-sdk --external @openai/codex-sdk/* --external @opencode-ai/sdk --external @opencode-ai/sdk/* --external @anthropic-ai/claude-agent-sdk --external @anthropic-ai/claude-agent-sdk/*",
"postbuild": "test \"$CI\" != \"true\" && bun run scripts/sync-workflow-inputs.ts || true",
"check": "tsc --noEmit",
"dev": "bun run cli.ts",
"test": "bun test",
"prompts": "bun run cli.ts prompts",
"test:consistency": "bun test tests/judgeConsistency.test.ts",
"test:consistency:medium": "bun test tests/judgeConsistencyMedium.test.ts",
"test:consistency:complex": "bun test tests/judgeConsistencyComplex.test.ts",
"test:consistency:full": "bun test tests/judgeConsistency*.test.ts",
"test:compatibility": "bun test tests/judgeCompatibility.test.ts",
"show-test-outputs": "bun run scripts/show-test-outputs.ts"
},
"packageManager": "bun@1.2.21",
"dependencies": {
"@ai-sdk/anthropic": "^2.0.26",
"@ai-sdk/openai": "^2.0.48",
"@ai-sdk/openai-compatible": "^1.0.21",
"@anthropic-ai/claude-agent-sdk": "^0.1.51",
"@octokit/request": "^10.0.5",
"@openai/codex-sdk": "^0.63.0",
"@opencode-ai/sdk": "^1.0.108",
"ai": "^5.0.64",
"detect-port": "^2.1.0",
"yaml": "^2.4.5",
"yargs": "^18.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20.12.7",
"@types/yargs": "^17.0.35",
"bun-types": "^1.3.0",
"typescript": "^5.4.0"
}
}