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
73 lines (73 loc) · 1.64 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.64 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
{
"name": "mcp-proxy-auth",
"version": "1.0.1",
"main": "dist/index.js",
"scripts": {
"build": "tsup",
"test": "vitest run && tsc",
"format": "prettier --write . && eslint --fix ."
},
"bin": {
"mcp-proxy": "dist/bin/mcp-proxy.js"
},
"keywords": [
"MCP",
"SSE",
"proxy"
],
"type": "module",
"author": "lakhvinder singh <lkm1developer@gmail.com>",
"license": "MIT",
"description": "A TypeScript SSE proxy for MCP servers that use stdio transport.",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.6.0",
"dotenv": "^16.4.7",
"eventsource": "^3.0.5",
"yargs": "^17.7.2"
},
"repository": {
"url": "https://github.com/lkm1developer/mcp-proxy"
},
"homepage": "",
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github"
]
},
"devDependencies": {
"@sebbo2002/semantic-release-jsr": "^2.0.4",
"@tsconfig/node22": "^22.0.0",
"@types/node": "^22.13.5",
"@types/yargs": "^17.0.33",
"eslint": "^9.21.0",
"eslint-plugin-perfectionist": "^4.9.0",
"get-port-please": "^3.1.2",
"prettier": "^3.5.2",
"semantic-release": "^24.2.3",
"tsup": "^8.3.6",
"tsx": "^4.19.3",
"typescript": "^5.7.3",
"vitest": "^3.0.6"
},
"tsup": {
"entry": [
"src/index.ts",
"src/bin/mcp-proxy.ts"
],
"format": [
"esm"
],
"dts": true,
"splitting": true,
"sourcemap": true,
"clean": true
}
}