-
Notifications
You must be signed in to change notification settings - Fork 518
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 812 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 812 Bytes
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
{
"name": "evals",
"version": "1.0.0",
"description": "Evaluation scripts for Codebuff",
"scripts": {
"test": "bun test",
"test:manifold": "bun test manifold.test.ts",
"test:pglite": "bun test pglite-demo.test.ts",
"test:swe-bench": "bun test swe-bench.test.ts",
"test:e2e-cat-app": "bun run e2e/e2e-cat-app-script.ts",
"typecheck": "tsc --noEmit",
"gen-git-evals": "bun run git-evals/gen-evals.ts",
"run-git-evals": "bun run git-evals/run-git-evals.ts",
"run-eval-set": "bun run git-evals/run-eval-set.ts",
"setup-codebuff-repo": "bun run setup-codebuff-repo.ts"
},
"dependencies": {
"async": "^3.2.6",
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/async": "^3.2.24",
"@types/bun": "^1.1.16",
"@types/lodash": "^4.14.195"
}
}