-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 946 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 946 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
35
36
37
38
39
40
{
"name": "volt-agent-playwright",
"private": true,
"keywords": [
"voltagent",
"ai",
"agent"
],
"license": "MIT",
"author": "",
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsx watch --env-file=.env ./src ",
"start": "node dist/index.js",
"volt": "volt"
},
"dependencies": {
"@ai-sdk/mistral": "^1.2.7",
"@ai-sdk/openai": "^1.3.10",
"@playwright/browser-chromium": "1.51.1",
"@playwright/browser-firefox": "1.51.1",
"@playwright/browser-webkit": "1.51.1",
"@playwright/test": "^1.51.1",
"@voltagent/cli": "^0.1.3",
"@voltagent/core": "^0.1.7",
"@voltagent/groq-ai": "^0.1.0",
"@voltagent/vercel-ai": "^0.1.3",
"axios": "^1.5.0",
"playwright": "1.51.1",
"uuid": "^9.0.1",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^22.13.5",
"@types/uuid": "^10.0.0",
"tsx": "^4.19.3",
"typescript": "^5.8.2"
}
}