forked from apache/maka
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.32 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
{
"name": "@maka/eval",
"version": "0.1.0",
"license": "Apache-2.0",
"description": "Minimal experiment semantics for Maka evaluation.",
"type": "module",
"releaseFiles": [
"dist",
"harbor/deepseek-codex-models.json",
"harbor/deepseek-harness-profile",
"harbor/docker-compose-egress-proxy.yaml",
"harbor/egress-proxy/Dockerfile",
"harbor/egress-proxy/entrypoint.sh",
"harbor/egress-proxy/network-policy",
"harbor/egress_filter.py",
"harbor/eval_framework.py",
"harbor/relay_agent.py",
"harbor/run_trial.py"
],
"private": true,
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./harbor": "./dist/harness-executor.js",
"./pier": "./dist/harness-executor.js"
},
"scripts": {
"clean": "node ../../scripts/clean-paths.mjs dist tsconfig.tsbuildinfo",
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test:dist": "node --test \"dist/**/*.test.js\" && python3 -m unittest discover --start-directory harbor --pattern 'test_*.py'",
"test:egress-proxy:live": "python3 harbor/test_egress_filter_live.py"
},
"dependencies": {
"@maka/core": "0.1.0",
"@maka/runtime-host": "0.1.0",
"undici": "^8.7.0"
}
}