-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.27 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.27 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "agent-triage",
"version": "0.2.0",
"description": "Diagnose your AI agents in production — extract behavioral policies from prompts, evaluate traces against them, and generate diagnostic reports.",
"type": "module",
"bin": {
"agent-triage": "./dist/cli/index.js",
"agent-triage-mcp": "./dist/mcp/index.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "tsc && chmod +x dist/cli/index.js dist/mcp/index.js",
"clean": "rm -rf dist",
"dev": "tsx src/cli/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"lint": "tsc --noEmit",
"prepublishOnly": "npm run clean && npm run build && npm test"
},
"keywords": [
"ai",
"ai-agent",
"ai-agent-debugging",
"ai-evaluation",
"agent-testing",
"agent-monitoring",
"agent-observability",
"llm",
"llm-evaluation",
"llm-testing",
"llm-ops",
"prompt-engineering",
"prompt-testing",
"policy",
"policy-compliance",
"conversation-analysis",
"chatbot-testing",
"ai-quality",
"ai-diagnostics",
"opentelemetry",
"langsmith",
"ai-observability",
"evaluation-framework",
"triage",
"mcp",
"model-context-protocol",
"ai-safety",
"hallucination-detection"
],
"author": "Converra <hello@converra.ai>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/converra/agent-triage"
},
"bugs": {
"url": "https://github.com/converra/agent-triage/issues"
},
"homepage": "https://github.com/converra/agent-triage#readme",
"funding": {
"type": "custom",
"url": "https://converra.ai"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"data",
"LICENSE",
"README.md",
"llms.txt",
"llms-full.txt"
],
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"@modelcontextprotocol/sdk": "1.27.1",
"commander": "^13.1.0",
"openai": "^4.82.0",
"yaml": "^2.7.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/node": "^22.12.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
}
}