Initial monorepo setup with mcp-server and web packages

This commit is contained in:
Mohamed Boudra
2025-10-13 14:03:54 +02:00
commit fee0f4fd28
45 changed files with 8826 additions and 0 deletions

32
package.json Normal file
View File

@@ -0,0 +1,32 @@
{
"name": "realtime-voice-monorepo",
"version": "1.0.0",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "npm run dev --workspace=web",
"dev:mcp": "npm run dev --workspace=mcp-server",
"build": "npm run build --workspaces --if-present",
"build:mcp": "npm run build --workspace=mcp-server",
"build:web": "npm run build --workspace=web",
"typecheck": "npm run typecheck --workspaces --if-present",
"start": "npm run start --workspace=web",
"start:mcp": "npm run start --workspace=mcp-server"
},
"devDependencies": {
"typescript": "^5.9.3"
},
"description": "Monorepo for OpenAI Realtime Voice Assistant with tmux MCP integration",
"keywords": [
"openai",
"realtime",
"voice",
"mcp",
"tmux",
"monorepo"
],
"author": "moboudra",
"license": "MIT"
}