This commit is contained in:
a2a-platform
2026-06-01 00:28:39 +00:00
commit 4f4da2a7f3
11 changed files with 857 additions and 0 deletions

19
frontend/package.json Normal file
View File

@@ -0,0 +1,19 @@
{
"name": "chart-agent-frontend",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite --host 0.0.0.0 --port 5173",
"build": "vite build",
"preview": "vite preview --host 0.0.0.0"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.3.4",
"vite": "^5.4.0"
}
}