-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 853 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 853 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
{
"name": "vercel-ai-sdk-example",
"version": "1.0.0",
"type": "module",
"private": true,
"description": "Example demonstrating Vercel AI SDK integration with ATP",
"scripts": {
"server": "NODE_OPTIONS='--no-node-snapshot' ATP_JWT_SECRET=test-secret-key tsx server.ts",
"agent": "NODE_OPTIONS='--no-node-snapshot' tsx agent.ts",
"streaming": "NODE_OPTIONS='--no-node-snapshot' tsx streaming.ts",
"webhook": "NODE_OPTIONS='--no-node-snapshot' tsx webhook-approval.ts"
},
"dependencies": {
"@ai-sdk/openai": "^1.0.0",
"@mondaydotcomorg/atp-server": "workspace:*",
"@mondaydotcomorg/atp-vercel-sdk": "workspace:*",
"ai": "^5.0.0",
"dotenv": "^16.4.5",
"express": "^4.21.2",
"zod": "^3.25.0"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.10.2",
"tsx": "^4.19.2",
"typescript": "^5.3.3"
}
}