mcp-hub/package.json
Agent 91f0ce271b Add pm2 process management
- Add ecosystem.config.js with mcp-hub and sample-mcp app configs
- Add pm2:start, pm2:stop, pm2:logs, pm2:status scripts to package.json

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-03-13 09:08:10 +00:00

23 lines
511 B
JSON

{
"name": "workspace",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "node test/e2e.js",
"start": "node src/index.js",
"sample-mcp": "node sample-mcp/index.js",
"pm2:start": "pm2 start ecosystem.config.js",
"pm2:stop": "pm2 stop all",
"pm2:logs": "pm2 logs",
"pm2:status": "pm2 status"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"express": "^5.2.1",
"uuid": "^13.0.0",
"ws": "^8.19.0"
}
}