82 lines
1.9 KiB
JSON
82 lines
1.9 KiB
JSON
{
|
|
"name": "mcp-proxy",
|
|
"version": "6.4.4",
|
|
"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"
|
|
}
|
|
}
|