-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "mcp-bridge",
"version": "2.0.2",
"description": "A bridge service for MCP Server communication",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"start:tunnel": "node dist/index.js --tunnel",
"dev": "tsc --watch & node --watch dist/index.js",
"dev:tunnel": "tsc --watch & node --watch dist/index.js --tunnel",
"lint": "eslint src/",
"test": "jest"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"@types/js-yaml": "^4.0.9",
"dotenv": "^16.0.3",
"esbuild": ">=0.25.0",
"express": "^4.19.2",
"js-yaml": "^4.1.0",
"ngrok": "^5.0.0-beta.2",
"winston": "^3.8.2"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.28",
"esbuild": ">=0.25.0",
"eslint": "^9.8.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.4",
"tsx": "^4.16.5",
"typescript": "^5.4.2"
},
"overrides": {
"minimatch": "3.1.3"
}
}