package.json•1.7 kB
{
"name": "orchestrator-mcp",
"version": "0.1.0",
"description": "Intelligent MCP server orchestration and workflow coordination",
"type": "module",
"main": "dist/index.js",
"bin": {
"orchestrator-mcp": "dist/index.js"
},
"scripts": {
"build": "node scripts/build.js",
"build:simple": "echo \"🔨 Starting TypeScript build...\" && tsc && echo \"✅ Build completed successfully!\"",
"build:verbose": "echo \"🔨 Starting TypeScript build with verbose output...\" && tsc --listFiles && echo \"✅ Build completed successfully!\"",
"dev": "echo \"👀 Starting TypeScript watch mode...\" && tsc --watch",
"start": "node dist/index.js",
"start:dev": "node -r dotenv/config dist/index.js",
"test": "echo \"No tests yet\" && exit 0",
"test:context-poc": "tsx scripts/test-context-poc.ts",
"test:tools": "node scripts/test-tools-manual.js",
"clean": "echo \"🧹 Cleaning dist directory...\" && rm -rf dist && echo \"✅ Clean completed!\"",
"rebuild": "npm run clean && npm run build"
},
"keywords": [
"mcp",
"orchestrator",
"ai",
"workflow",
"automation"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.15.0",
"@modelcontextprotocol/server-filesystem": "^2025.7.1",
"@modelcontextprotocol/server-sequential-thinking": "^2025.7.1",
"@openrouter/ai-sdk-provider": "^0.7.2",
"ai": "^4.3.16",
"chokidar": "^4.0.3",
"execa": "^9.6.0",
"zod": "^3.25.71"
},
"devDependencies": {
"@types/node": "^20.19.4",
"dotenv": "^17.0.1",
"tsx": "^4.19.2",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=18.0.0"
}
}