-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.18 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.18 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
{
"name": "streaming-events-example",
"version": "1.0.0",
"type": "module",
"private": true,
"description": "Real-world example demonstrating ATP streaming events with both LangChain and Vercel AI SDK",
"scripts": {
"server": "NODE_OPTIONS='--no-node-snapshot' tsx server.ts",
"vercel:http": "NODE_OPTIONS='--no-node-snapshot' tsx vercel-http-example.ts",
"vercel:inprocess": "NODE_OPTIONS='--no-node-snapshot' tsx vercel-inprocess-example.ts",
"langchain:http": "NODE_OPTIONS='--no-node-snapshot' tsx langchain-http-example.ts",
"langchain:inprocess": "NODE_OPTIONS='--no-node-snapshot' tsx langchain-inprocess-example.ts"
},
"dependencies": {
"@ai-sdk/openai": "^1.0.0",
"@langchain/core": "^1.1.5",
"@langchain/langgraph": "^1.0.5",
"@langchain/openai": "^1.1.3",
"@mondaydotcomorg/atp-client": "workspace:*",
"@mondaydotcomorg/atp-langchain": "workspace:*",
"@mondaydotcomorg/atp-protocol": "workspace:*",
"@mondaydotcomorg/atp-server": "workspace:*",
"@mondaydotcomorg/atp-vercel-sdk": "workspace:*",
"ai": "^5.0.0",
"dotenv": "^16.4.5",
"zod": "^3.25.0"
},
"devDependencies": {
"@types/node": "^22.10.2",
"tsx": "^4.19.2",
"typescript": "^5.3.3"
}
}