-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.75 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
{
"name": "agent-rita",
"type": "module",
"scripts": {
"dev": "bun run --hot src/server.ts",
"dev:agent": "bun run --hot src/server.ts",
"dev:mcp": "bun run --hot mcp-server/src/server.ts",
"dev:all": "concurrently -n agent,mcp -c blue,green --kill-others 'bun run dev:agent' 'bun run dev:mcp'",
"typecheck": "bunx tsc --noEmit",
"test": "bun test tests/",
"test:coverage": "bun test tests/ --coverage",
"evals": "bun run evals/runner.ts",
"evals:widget": "bun run evals/runner.ts -- --group=widget-selection",
"evals:intent": "bun run evals/runner.ts -- --group=intent",
"evals:workspace": "bun run evals/runner.ts -- --group=workspace-context",
"evals:routing": "bun run evals/runner.ts -- --group=tool-routing",
"evals:sql": "bun run evals/runner.ts -- --group=sql-analysis",
"evals:locale": "bun run evals/runner.ts -- --group=locale",
"evals:skills": "bun run evals/runner.ts -- --group=skills",
"smoke:rag": "bun run scripts/smoke-doc-rag.ts"
},
"dependencies": {
"@ai-sdk/groq": "^3.0.32",
"@ai-sdk/openai": "^3.0.49",
"@daytonaio/sdk": "^0.162.0",
"@hono/mcp": "^0.2.5",
"@logtape/hono": "^2.0.5",
"@logtape/logtape": "^2.0.5",
"@modelcontextprotocol/sdk": "^1.29.0",
"@openrouter/ai-sdk-provider": "^2.3.3",
"ai": "^6.0.142",
"cheerio": "1.2.0",
"gpt-tokenizer": "^3.4.0",
"hono": "^4.12.9",
"ioredis": "5.10.1",
"mammoth": "^1.12.0",
"mermaid-isomorphic": "3.1.0",
"ollama-ai-provider-v2": "^3.5.0",
"playwright": "1.60.0",
"turndown": "^7.2.2",
"unpdf": "^1.6.2",
"xlsx": "0.18.5",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/bun": "latest",
"@types/turndown": "^5.0.6",
"concurrently": "9.2.1"
}
}