-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.39 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.39 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@hasna/evals",
"version": "0.2.0",
"description": "Open source AI evaluation framework — LLM-as-judge + assertion-based evals for any AI app. CLI + MCP server.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"evals": "dist/cli/index.js",
"evals-mcp": "dist/mcp/index.js",
"evals-serve": "dist/server/index.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"dashboard/dist",
"datasets/examples",
"LICENSE",
"README.md"
],
"scripts": {
"build": "cd dashboard && bun run build && cd .. && bun build src/cli/index.ts --outdir dist/cli --target bun --external ink --external react --external chalk --external @modelcontextprotocol/sdk && bun build src/mcp/index.ts --outdir dist/mcp --target bun --external @modelcontextprotocol/sdk && bun build src/server/index.ts --outdir dist/server --target bun && bun build src/index.ts --outdir dist --target bun --external @hasna/contracts && tsc --emitDeclarationOnly --outDir dist",
"build:dashboard": "cd dashboard && bun run build",
"typecheck": "tsc --noEmit",
"test": "bun test",
"dev:cli": "bun run src/cli/index.ts",
"dev:mcp": "bun run src/mcp/index.ts",
"dev:serve": "bun run src/server/index.ts",
"prepublishOnly": "bun run typecheck && bun run build && bun test",
"postinstall": "mkdir -p $HOME/.hasna/evals 2>/dev/null || true"
},
"keywords": [
"evals",
"llm",
"ai",
"testing",
"evaluation",
"mcp",
"claude",
"llm-as-judge",
"typescript",
"cli"
],
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/hasna/open-evals.git"
},
"homepage": "https://github.com/hasna/open-evals",
"bugs": {
"url": "https://github.com/hasna/open-evals/issues"
},
"engines": {
"bun": ">=1.0.0"
},
"author": "Andrei Hasna <andrei@hasna.com>",
"license": "Apache-2.0",
"dependencies": {
"@anthropic-ai/sdk": "^0.82.0",
"@hasna/contracts": "^0.8.4",
"@hasna/events": "^0.1.6",
"@modelcontextprotocol/sdk": "^1.29.0",
"ajv": "^8.18.0",
"commander": "^14.0.3",
"openai": "^6.33.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/bun": "^1.2.4",
"typescript": "^6.0.2"
}
}