@openpond/evals 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,76 @@
1
+ {
2
+ "name": "@openpond/evals",
3
+ "version": "0.1.0",
4
+ "description": "Portable evaluation, Harness, Taskset, grader, and receipt contracts for OpenPond",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "main": "./dist/index.js",
8
+ "types": "./dist/types/index.d.ts",
9
+ "files": [
10
+ "dist",
11
+ "README.md",
12
+ "CONTRACT.md",
13
+ "RELEASING.md",
14
+ "LICENSE"
15
+ ],
16
+ "exports": {
17
+ ".": {
18
+ "types": "./dist/types/index.d.ts",
19
+ "import": "./dist/index.js"
20
+ },
21
+ "./harness": {
22
+ "types": "./dist/types/harness.d.ts",
23
+ "import": "./dist/harness.js"
24
+ },
25
+ "./tasksets": {
26
+ "types": "./dist/types/tasksets.d.ts",
27
+ "import": "./dist/tasksets.js"
28
+ },
29
+ "./graders": {
30
+ "types": "./dist/types/graders.d.ts",
31
+ "import": "./dist/graders.js"
32
+ },
33
+ "./runs": {
34
+ "types": "./dist/types/runs.d.ts",
35
+ "import": "./dist/runs.js"
36
+ },
37
+ "./conformance": {
38
+ "types": "./dist/types/conformance.d.ts",
39
+ "import": "./dist/conformance.js"
40
+ },
41
+ "./package.json": "./package.json"
42
+ },
43
+ "publishConfig": {
44
+ "access": "public",
45
+ "provenance": true
46
+ },
47
+ "repository": {
48
+ "type": "git",
49
+ "url": "git+https://github.com/openpond/openpond.git",
50
+ "directory": "packages/evals"
51
+ },
52
+ "homepage": "https://github.com/openpond/openpond/tree/master/packages/evals#readme",
53
+ "bugs": {
54
+ "url": "https://github.com/openpond/openpond/issues"
55
+ },
56
+ "engines": {
57
+ "node": ">=22.14.0 <25"
58
+ },
59
+ "scripts": {
60
+ "build": "tsx scripts/build.ts",
61
+ "typecheck": "tsc --noEmit --project tsconfig.json",
62
+ "test": "vitest run --root ../.. --config vitest.config.ts --project evals",
63
+ "check:api": "tsx scripts/check-public-package.ts",
64
+ "check:consumer": "tsx scripts/verify-packed-consumer.ts",
65
+ "check": "pnpm run typecheck && pnpm run test && pnpm run build && pnpm run check:api && pnpm run check:consumer && npm pack --dry-run"
66
+ },
67
+ "dependencies": {
68
+ "zod": "^4.1.13"
69
+ },
70
+ "devDependencies": {
71
+ "@types/node": "24.13.3",
72
+ "tsx": "4.23.1",
73
+ "typescript": "^5.9.3",
74
+ "vitest": "4.1.10"
75
+ }
76
+ }