-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.28 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "adk-utils-example",
"version": "0.1.0",
"private": false,
"license": "MIT",
"author": "Yago Lopez",
"description": "A modern, high-performance chat application demonstrating the integration of Google Agent Development Kit (ADK) with Next.js 16, AI SDK, and custom utilities.",
"homepage": "https://github.com/YagoLopez/adk-utils-example",
"repository": {
"type": "git",
"url": "https://github.com/YagoLopez/adk-utils-example.git"
},
"keywords": [
"ia agent",
"adk agent",
"ai",
"chatbot",
"nextjs",
"react",
"typescript"
],
"bugs": {
"url": "https://github.com/YagoLopez/adk-utils-example/issues"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"adk:web": "adk web ./app/agents/",
"test:e2e:headless": "playwright test --reporter=list",
"test:e2e:headed": "playwright test --headed",
"test:e2e:ui": "playwright test --ui"
},
"dependencies": {
"@ai-sdk/google": "^3.0.26",
"@ai-sdk/react": "^3.0.83",
"@google-cloud/storage": "^7.19.0",
"@google/adk": "^0.6.0",
"@google/adk-devtools": "^0.6.0",
"@google/genai": "^1.46.0",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tooltip": "^1.2.8",
"@streamdown/code": "^1.0.2",
"@streamdown/mermaid": "^1.0.2",
"@tanstack/pacer": "^0.20.0",
"@tanstack/react-pacer": "^0.21.0",
"@yagolopez/adk-utils": "^0.2.7",
"ai": "^6.0.81",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^1.0.1",
"next": "16.2.1",
"ollama": "^0.6.3",
"prettier": "^3.8.1",
"react": "19.2.4",
"react-dom": "19.2.4",
"streamdown": "^2.5.0",
"tailwind-merge": "^3.4.0",
"zod": "^4.3.6"
},
"overrides": {
"tar": "^7.5.11",
"@tootallnate/once": "^3.0.1"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@tailwindcss/postcss": "^4",
"@types/jest": "^30.0.0",
"@types/node": "^25.2.1",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9.15.0",
"eslint-config-next": "16.2.1",
"jest": "^30.2.0",
"shadcn": "^4.1.0",
"tailwindcss": "^4",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.0"
}
}