- The Docker build was failing because axios is used by n8n-api-client.ts - This dependency was missing from package.runtime.json causing container startup failures - Fixes the Docker CI/CD pipeline that was stuck at v2.3.0
21 lines
432 B
JSON
21 lines
432 B
JSON
{
|
|
"name": "n8n-mcp-runtime",
|
|
"version": "2.9.1",
|
|
"description": "n8n MCP Server Runtime Dependencies Only",
|
|
"private": true,
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.13.2",
|
|
"express": "^5.1.0",
|
|
"dotenv": "^16.5.0",
|
|
"sql.js": "^1.13.0",
|
|
"uuid": "^10.0.0",
|
|
"axios": "^1.7.7"
|
|
},
|
|
"engines": {
|
|
"node": ">=16.0.0"
|
|
},
|
|
"optionalDependencies": {
|
|
"better-sqlite3": "^11.10.0"
|
|
}
|
|
}
|