diff --git a/.prettierignore b/.prettierignore deleted file mode 100644 index eeeb7be..0000000 --- a/.prettierignore +++ /dev/null @@ -1 +0,0 @@ -pnpm-lock.yaml \ No newline at end of file diff --git a/.prettierrc b/.prettierrc deleted file mode 100644 index 30222c3..0000000 --- a/.prettierrc +++ /dev/null @@ -1,14 +0,0 @@ -{ - "printWidth": 140, - "singleQuote": true, - "semi": false, - "useTabs": false, - "overrides": [ - { - "files": ["*.jsonc"], - "options": { - "trailingComma": "none" - } - } - ] -} diff --git a/package.json b/package.json deleted file mode 100644 index e06f165..0000000 --- a/package.json +++ /dev/null @@ -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 ", - "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" - ] - } -}