-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.87 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@aws/run-mcp-servers-with-aws-lambda",
"description": "Run Model Context Protocol (MCP) servers with AWS Lambda",
"version": "0.5.13",
"type": "module",
"license": "Apache-2.0",
"author": {
"name": "Amazon Web Services",
"url": "http://aws.amazon.com"
},
"homepage": "https://github.com/awslabs/run-model-context-protocol-servers-with-aws-lambda",
"repository": {
"type": "git",
"url": "git+https://github.com/awslabs/run-model-context-protocol-servers-with-aws-lambda.git"
},
"bugs": {
"url": "https://github.com/awslabs/run-model-context-protocol-servers-with-aws-lambda/issues"
},
"keywords": [
"aws",
"lambda",
"mcp",
"modelcontextprotocol"
],
"scripts": {
"build": "tsc",
"prepack": "tsc",
"clean": "rm -rf dist/",
"lint": "eslint src/",
"test": "jest",
"test-server": "tsx test-stdio-server/echo_server.ts"
},
"engines": {
"node": ">=18"
},
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"devDependencies": {
"@cfworker/json-schema": "^4.1.1",
"@eslint/js": "^10.0.1",
"@tsconfig/recommended": "^1.0.13",
"@types/aws-lambda": "^8.10.161",
"@types/jest": "^30.0.0",
"@types/node": "^25.5.0",
"aws-sdk-client-mock": "^4.1.0",
"aws-sdk-client-mock-jest": "^4.1.0",
"eslint": "^10.2.0",
"eslint-plugin-check-file": "^3.3.1",
"jest": "^30.3.0",
"ts-jest": "^29.4.9",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.1"
},
"dependencies": {
"@aws-crypto/sha256-js": "^5.2.0",
"@aws-sdk/client-lambda": "^3.1027.0",
"@aws-sdk/credential-provider-node": "^3.972.30",
"@aws-sdk/protocol-http": "^3.374.0",
"@aws-sdk/types": "^3.910.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"@smithy/signature-v4": "^5.3.3",
"winston": "^3.19.0"
}
}