mirror of
https://github.com/eliasstepanik/core.git
synced 2026-01-11 17:08:27 +00:00
46 lines
980 B
JSON
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"
|
|
}
|
|
} |