Remove unnecessary files
This commit is contained in:
parent
4907f8d895
commit
00da599d79
3 changed files with 0 additions and 75 deletions
|
@ -1 +0,0 @@
|
|||
pnpm-lock.yaml
|
14
.prettierrc
14
.prettierrc
|
@ -1,14 +0,0 @@
|
|||
{
|
||||
"printWidth": 140,
|
||||
"singleQuote": true,
|
||||
"semi": false,
|
||||
"useTabs": false,
|
||||
"overrides": [
|
||||
{
|
||||
"files": ["*.jsonc"],
|
||||
"options": {
|
||||
"trailingComma": "none"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
60
package.json
60
package.json
|
@ -1,60 +0,0 @@
|
|||
{
|
||||
"name": "mcp-remote",
|
||||
"version": "0.1.0",
|
||||
"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 <glen@cloudflare.com>",
|
||||
"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"
|
||||
},
|
||||
"dependencies": {
|
||||
"@modelcontextprotocol/sdk": "^1.9.0",
|
||||
"express": "^4.21.2",
|
||||
"open": "^10.1.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/express": "^5.0.0",
|
||||
"@types/node": "^22.13.10",
|
||||
"@types/react": "^19.0.12",
|
||||
"prettier": "^3.5.3",
|
||||
"react": "^19.0.0",
|
||||
"tsup": "^8.4.0",
|
||||
"tsx": "^4.19.3",
|
||||
"typescript": "^5.8.2"
|
||||
},
|
||||
"tsup": {
|
||||
"entry": [
|
||||
"src/client.ts",
|
||||
"src/proxy.ts"
|
||||
],
|
||||
"format": [
|
||||
"esm"
|
||||
],
|
||||
"dts": true,
|
||||
"clean": true,
|
||||
"outDir": "dist",
|
||||
"external": [
|
||||
"react"
|
||||
]
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue