-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.1 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.1 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
{
"name": "medical-agent",
"version": "0.1.0",
"description": "A VoltAgent application",
"type": "module",
"scripts": {
"dev": "tsx watch --env-file=.env ./src",
"local-test": "tsx watch --env-file=.env ./local-test",
"build": "npx tsc",
"start": "node dist/index.js",
"lint": "biome check ./src",
"lint:fix": "biome check --write ./src",
"typecheck": "tsc --noEmit",
"volt": "volt"
},
"dependencies": {
"@ai-sdk/amazon-bedrock": "^3.0.22",
"@aws-sdk/client-dynamodb": "~3.864.0",
"@aws-sdk/client-eventbridge": "~3.864.0",
"@aws-sdk/client-s3": "~3.864.0",
"@aws-sdk/lib-dynamodb": "~3.864.0",
"@libsql/client": "~0.3.2",
"@voltagent/cli": "^0.1.10",
"@voltagent/core": "^1.1.10",
"@voltagent/libsql": "^1.0.5",
"@voltagent/logger": "^1.0.1",
"@voltagent/server-hono": "^1.0.6",
"ai": "^5.0.45",
"dotenv": "~16.4.7",
"libsql": "~0.3.2"
},
"devDependencies": {
"@biomejs/biome": "~1.9.4",
"@types/node": "~22.10.5",
"tsx": "~4.19.2",
"typescript": "~5.7.3"
},
"engines": {
"node": ">=20.0.0"
}
}