feat: initialize monorepo with shared, server, mcp, and web packages

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-02 11:28:59 +08:00
commit f644dc2dfd
29 changed files with 2660 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
{
"name": "@agent-fox/server",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js"
},
"dependencies": {
"@agent-fox/shared": "workspace:*",
"express": "^5.0.0",
"cors": "^2.8.5",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/cors": "^2.8.17",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
}
}