-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 745 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 745 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
27
28
{
"name": "evalview",
"version": "0.6.1",
"description": "Open-source testing and regression detection framework for AI agents. Golden baseline diffing, CI/CD integration, works with LangGraph, CrewAI, OpenAI, Claude, HuggingFace, Ollama, and MCP.",
"license": "Apache-2.0",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "tsc --build",
"test": "vitest",
"clean": "rm -rf dist packages/*/dist",
"dev": "tsc --build --watch"
},
"dependencies": {
"commander": "^11.1.0",
"yaml": "^2.3.4",
"openai": "^4.28.0",
"chalk": "^5.3.0",
"ora": "^8.0.1"
},
"devDependencies": {
"@types/node": "^20.11.16",
"typescript": "^5.3.3",
"vitest": "^1.2.2"
}
}