-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.25 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.25 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
84
85
86
87
88
89
90
91
{
"name": "a2a-ui",
"version": "1.0.0",
"description": "Modern UI for Google A2A (Agent-to-Agent) platform built with Next.js, TypeScript, and shadcn/ui",
"main": "src/app/page.tsx",
"keywords": [
"a2a",
"agent-to-agent",
"google",
"nextjs",
"typescript",
"shadcn",
"chat",
"ai",
"phoenix",
"tracing"
],
"author": "A2A Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/your-org/a2a-ui.git"
},
"homepage": "https://github.com/your-org/a2a-ui#readme",
"bugs": {
"url": "https://github.com/your-org/a2a-ui/issues"
},
"private": false,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,css,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,css,md}\"",
"type-check": "tsc --noEmit",
"clean": "rm -rf .next out",
"analyze": "ANALYZE=true npm run build"
},
"dependencies": {
"@genkit-ai/googleai": "^1.4.0",
"@genkit-ai/vertexai": "^1.4.0",
"@radix-ui/react-scroll-area": "^1.2.4",
"@radix-ui/react-slot": "^1.2.0",
"@radix-ui/react-switch": "^1.2.5",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.1",
"body-parser": "^2.2.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cors": "^2.8.5",
"express": "^4.21.2",
"genkit": "^1.4.0",
"lucide-react": "^0.488.0",
"next": "^15.3.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwind-merge": "^3.2.0",
"tw-animate-css": "^1.2.5",
"uuid": "^11.1.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/uuid": "^10",
"eslint": "^8",
"eslint-config-next": "^15.3.3",
"prettier": "^3.5.3",
"tailwindcss": "^4",
"typescript": "^5"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}