-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 862 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 862 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
29
30
31
32
33
34
{
"name": "sutando",
"version": "0.1.0",
"description": "Sutando — a personal AI agent. Voice interface backed by Claude Code.",
"type": "module",
"scripts": {
"start": "tsx src/voice-agent.ts",
"typecheck": "tsc --noEmit",
"test": "tsx --test tests/*.test.ts"
},
"dependencies": {
"@ai-sdk/google": "^1.2.0",
"@anthropic-ai/claude-agent-sdk": "^0.1.0",
"@google/genai": "^1.49.0",
"@types/ws": "^8.18.1",
"ai": "^6.0.149",
"bodhi-realtime-agent": "github:sonichi/bodhi_realtime_agent",
"dotenv": "^17.4.1",
"playwright": "^1.58.2",
"ws": "^8.20.0",
"zod": "^3.24.0"
},
"optionalDependencies": {
"@cartesia/cartesia-js": "^3.0.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
},
"engines": {
"node": ">=22.0.0"
}
}