package.json•1.44 kB
{
"name": "@ronangrant/mcp-framework",
"version": "1.0.4",
"description": "Model Context Protocol Framework - Fixed version with NO logging",
"type": "module",
"author": "Alex Andru <alex@andru.codes>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"bin": {
"mcp": "dist/cli/index.js",
"mcp-build": "dist/cli/framework/build-cli.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"prepare": "npm run build"
},
"engines": {
"node": ">=20.0.0"
},
"keywords": [
"mcp",
"claude",
"anthropic",
"ai",
"framework",
"tools",
"modelcontextprotocol",
"model",
"context",
"protocol"
],
"peerDependencies": {
"@modelcontextprotocol/sdk": "^0.6.0"
},
"dependencies": {
"@types/prompts": "^2.4.9",
"commander": "^12.1.0",
"execa": "^9.5.2",
"find-up": "^7.0.0",
"jsonwebtoken": "^9.0.2",
"prompts": "^2.4.2",
"typescript": "^5.3.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@modelcontextprotocol/sdk": "^0.6.0",
"@types/content-type": "^1.1.8",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.8",
"@types/node": "^20.11.24",
"jest": "^29.7.0",
"ts-jest": "^29.1.2"
},
"publishConfig": {
"access": "public"
}
}