Spaces:
Sleeping
Sleeping
{ | |
"name": "mcp-remote", | |
"version": "0.1.16", | |
"description": "Remote proxy for Model Context Protocol, allowing local-only clients to connect to remote servers using oAuth", | |
"keywords": [ | |
"mcp", | |
"stdio", | |
"sse", | |
"remote", | |
"oauth" | |
], | |
"author": "Glen Maddern <[email protected]>", | |
"repository": "https://github.com/geelen/mcp-remote", | |
"type": "module", | |
"files": [ | |
"dist", | |
"README.md", | |
"LICENSE" | |
], | |
"main": "dist/index.js", | |
"bin": { | |
"mcp-remote": "dist/proxy.js", | |
"mcp-remote-client": "dist/client.js" | |
}, | |
"scripts": { | |
"build": "tsup", | |
"build:watch": "tsup --watch", | |
"check": "prettier --check . && tsc", | |
"lint-fix": "prettier --check . --write", | |
"test:unit": "vitest run", | |
"test:unit:watch": "vitest" | |
}, | |
"dependencies": { | |
"express": "^4.21.2", | |
"open": "^10.1.0" | |
}, | |
"devDependencies": { | |
"@modelcontextprotocol/sdk": "https://pkg.pr.new/geelen/typescript-sdk/@modelcontextprotocol/sdk@cdf3508", | |
"@types/express": "^5.0.0", | |
"@types/node": "^22.13.10", | |
"prettier": "^3.5.3", | |
"tsup": "^8.4.0", | |
"tsx": "^4.19.3", | |
"typescript": "^5.8.2", | |
"vitest": "^3.2.3" | |
}, | |
"tsup": { | |
"entry": [ | |
"src/client.ts", | |
"src/proxy.ts" | |
], | |
"format": [ | |
"esm" | |
], | |
"dts": true, | |
"clean": true, | |
"outDir": "dist", | |
"external": [] | |
}, | |
"vitest": { | |
"environment": "node", | |
"globals": true, | |
"include": [ | |
"src/**/*.test.ts" | |
] | |
}, | |
"packageManager": "[email protected]+sha512.6540583f41cc5f628eb3d9773ecee802f4f9ef9923cc45b69890fb47991d4b092964694ec3a4f738a420c918a333062c8b925d312f42e4f0c263eb603551f977" | |
} | |