-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.84 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
69
70
71
72
73
74
{
"name": "aws-lambda-mcp-server",
"version": "1.1.6",
"description": "A Hono wrapper for building an MCP (Model Context Protocol) Server that runs on AWS Lambda functions.",
"type": "module",
"keywords": [
"mcp-server",
"modelcontextprotocol",
"mcp",
"lambda"
],
"private": false,
"sideEffects": false,
"files": [
"dist",
"package.json",
"README.md"
],
"homepage": "https://github.com/poad/aws-lambda-mcp-server#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/poad/aws-lambda-mcp-server.git"
},
"publishConfig": {
"main": "./dist/index.js",
"typings": "./dist/index.d.ts"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"author": "poad",
"license": "ISC",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "vitest run --passWithNoTests",
"lint": "eslint .",
"lint-fix": "eslint . --fix"
},
"devDependencies": {
"@eslint/compat": "2.0.5",
"@eslint/js": "10.0.1",
"@stylistic/eslint-plugin": "5.10.0",
"@types/node": "25.5.2",
"eslint": "10.2.0",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-import-x": "4.16.2",
"eslint-plugin-promise": "7.2.1",
"jiti": "2.6.1",
"tsx": "4.21.0",
"typescript": "6.0.2",
"typescript-eslint": "8.58.1"
},
"dependencies": {
"@aws-lambda-powertools/logger": "^2.32.0",
"@hono/mcp": "^0.2.4",
"@modelcontextprotocol/sdk": "^1.29.0",
"hono": "^4.12.9",
"zod": "^3.25 || ^4.0"
},
"peerDependencies": {
"@aws-lambda-powertools/logger": "^2.32.0",
"@hono/mcp": "^0.2.4",
"@modelcontextprotocol/sdk": "^1.29.0",
"hono": "^4.12.9",
"zod": "^3.25 || ^4.0"
}
}