Initial project scaffold

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-05-09 14:36:35 +08:00
co-authored by Cursor
commit 6323e70e49
39 changed files with 8664 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
{
"name": "@easyai-ai-gateway/web",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite --host 0.0.0.0 --port 5178",
"build": "tsc --noEmit && vite build",
"preview": "vite preview --host 0.0.0.0 --port 4178",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@easyai-ai-gateway/contracts": "workspace:*",
"@vitejs/plugin-react": "^5.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"vite": "^7.0.0"
},
"devDependencies": {
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"typescript": "^5.8.0"
}
}