-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 768 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 768 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
{
"name": "@newwave/agent-core",
"version": "0.1.0",
"description": "AI agent framework for Node.js — streaming, tools, hooks, state management",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"lint": "tsc --noEmit"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"@aws-sdk/client-dynamodb": "^3.1025.0",
"@aws-sdk/lib-dynamodb": "^3.1025.0",
"hono": "^4.0.0",
"ioredis": "^5.4.0",
"uuid": "^11.0.0",
"zod": "^3.23.0",
"zod-to-json-schema": "^3.24.0"
},
"devDependencies": {
"@types/uuid": "^10.0.0",
"ioredis-mock": "^8.9.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
}
}