-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.04 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
{
"name": "gofetch",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"check:browserbase": "node --env-file-if-exists=.env.local scripts/check-browserbase.mjs",
"check:model-gateway": "node --env-file-if-exists=.env.local scripts/check-model-gateway.mjs",
"check:handoff": "node --env-file-if-exists=.env.local scripts/check-live-handoff.mjs"
},
"dependencies": {
"@browserbasehq/stagehand": "3.7.1",
"@google/genai": "2.16.0",
"next": "16.3.0",
"react": "19.2.8",
"react-dom": "19.2.8",
"tldts": "7.4.10",
"zod": "4.4.3"
},
"devDependencies": {
"@types/node": "26.2.0",
"@types/react": "19.2.18",
"@types/react-dom": "19.2.4",
"eslint": "9.39.5",
"eslint-config-next": "16.3.0",
"typescript": "6.0.3",
"vitest": "4.1.10"
},
"overrides": {
"undici": "6.28.0"
}
}