forked from punkpeye/mcp-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.92 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.92 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "mcp-proxy",
"version": "1.0.0",
"main": "dist/index.mjs",
"scripts": {
"build": "tsdown",
"test": "vitest run && tsc && eslint . && jsr publish --dry-run --allow-dirty",
"format": "eslint --fix ."
},
"bin": {
"mcp-proxy": "dist/bin/mcp-proxy.mjs"
},
"keywords": [
"MCP",
"SSE",
"proxy"
],
"type": "module",
"author": "Frank Fiegel <frank@glama.ai>",
"license": "MIT",
"description": "A TypeScript SSE proxy for MCP servers that use stdio transport.",
"module": "dist/index.mjs",
"types": "dist/index.d.mts",
"repository": {
"url": "https://github.com/punkpeye/mcp-proxy"
},
"homepage": "https://glama.ai/mcp",
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github",
"@sebbo2002/semantic-release-jsr"
]
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@modelcontextprotocol/sdk": "^1.27.1",
"@sebbo2002/semantic-release-jsr": "^3.1.0",
"@tsconfig/node24": "^24.0.3",
"@types/express": "^5.0.6",
"@types/node": "^24.10.1",
"@types/yargs": "^17.0.35",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-perfectionist": "^4.15.1",
"eventsource": "^4.1.0",
"express": "^5.2.1",
"get-port-please": "^3.2.0",
"jiti": "^2.6.1",
"jsr": "^0.13.5",
"prettier": "^3.7.4",
"semantic-release": "^25.0.2",
"tsdown": "^0.17.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.1",
"vitest": "^4.0.15",
"yargs": "^18.0.0"
},
"tsdown": {
"entry": [
"src/index.ts",
"src/bin/mcp-proxy.ts"
],
"format": [
"esm"
],
"dts": true,
"splitting": true,
"sourcemap": true,
"clean": true
},
"dependencies": {
"pipenet": "^1.3.0"
}
}