Files
paseo/package.json
Mohamed Boudra 5dd1aae70d ```
refactor: rename project references from tmux-mcp to voice-dev-mcp

Update internal references, package scripts, binary name, service identifiers, and tool descriptions to reflect the voice-dev branding. Changes default HTTP port from 3000 to 6767.
```
2025-10-13 15:29:38 +02:00

36 lines
979 B
JSON

{
"name": "voice-dev",
"version": "1.0.0",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "npm run dev --workspace=@voice-dev/web",
"dev:mcp": "npm run dev --workspace=@voice-dev/mcp-server",
"build": "npm run build --workspaces --if-present",
"build:mcp": "npm run build --workspace=@voice-dev/mcp-server",
"build:web": "npm run build --workspace=@voice-dev/web",
"typecheck": "npm run typecheck --workspaces --if-present",
"start": "npm run start --workspace=@voice-dev/web",
"start:mcp": "npm run start --workspace=@voice-dev/mcp-server"
},
"devDependencies": {
"typescript": "^5.9.3"
},
"description": "Voice-controlled development environment with OpenAI Realtime API",
"keywords": [
"openai",
"realtime",
"voice",
"voice-assistant",
"development",
"mcp"
],
"author": "moboudra",
"license": "MIT",
"dependencies": {
"@tailwindcss/oxide": "^4.1.14"
}
}