package.json•2.87 kB
{
"name": "@markvp/mcp-lambda-sam",
"version": "1.1.0",
"description": "AWS Lambda for Model Context Protocol (MCP) Server",
"bin": {
"mcp-lambda-sam": "bin/mcp-lambda-sam.js"
},
"exports": {
".": {
"require": "./deploy.js"
}
},
"main": "./dist/deploy.js",
"types": "./dist/deploy.d.ts",
"files": [
"dist",
"scripts",
"template.yaml",
"README.md",
"LICENSE"
],
"scripts": {
"preinstall": "node scripts/check-prerequisites.js",
"clean": "rm -rf .aws-sam bin dist",
"build:bin": "node esbuild.cli.js",
"build:deploy": "tsc --project tsconfig.deploy.json",
"build:lambdas": "node esbuild.lambda.js",
"build": "npm run clean && npm run build:lambdas && npm run build:deploy && npm run build:bin",
"prepublishOnly": "npm run build",
"deploy": "npm run build && node ./bin/mcp-lambda-sam.js deploy",
"package:sar": "sam package --resolve-s3 --template-file template.yaml --output-template-file packaged.yaml",
"publish:sar": "sam publish --template packaged.yaml",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"test": "jest --coverage"
},
"keywords": [
"mcp",
"aws",
"lambda",
"sse",
"model-context-protocol",
"ai",
"streaming"
],
"author": "Mark Van Proctor",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/markvp/mcp-lambda-sam.git"
},
"bugs": {
"url": "https://github.com/markvp/mcp-lambda-sam/issues"
},
"homepage": "https://github.com/markvp/mcp-lambda-sam#readme",
"dependencies": {
"commander": "^10.0.1",
"inquirer": "^8.0.0"
},
"devDependencies": {
"@aws-sdk/client-cloudformation": "^3.782.0",
"@aws-sdk/client-dynamodb": "^3.782.0",
"@aws-sdk/client-lambda": "^3.782.0",
"@aws-sdk/client-sqs": "^3.782.0",
"@aws-sdk/util-dynamodb": "^3.782.0",
"@modelcontextprotocol/sdk": "^1.7.0",
"@types/aws-lambda": "^8.10.148",
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.12",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"aws-sdk-client-mock": "^4.1.0",
"aws4": "^1.13.2",
"cpx": "^1.5.0",
"esbuild": "^0.20.1",
"esbuild-plugin-alias": "^0.2.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.6",
"eventsource-parser": "^3.0.1",
"jest": "^29.7.0",
"lambda-stream": "^0.5.0",
"node-fetch": "^3.3.2",
"ts-jest": "^29.1.2",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=20.0.0"
},
"os": [
"darwin",
"linux"
],
"engineStrict": true,
"prerequisites": {
"aws": "^2.0.0",
"sam": "^1.0.0"
}
}