core/packages/mcp-proxy/package.json
2025-07-15 22:02:41 +05:30

46 lines
980 B
JSON

{
"name": "@core/mcp-proxy",
"version": "0.1.0",
"description": "Authentication proxy for Model Context Protocol (MCP) servers with OAuth support",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "npm run build:tsup",
"build:tsup": "tsup --dts-resolve",
"dev": "tsup --watch",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"oauth",
"authentication",
"proxy",
"linear",
"api"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/eventsource": "^1.1.12",
"tsup": "^8.0.1",
"typescript": "^5.0.0"
},
"files": [
"dist/**/*",
"README.md",
"package.json"
],
"engines": {
"node": ">=18.0.0"
}
}