-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.75 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 2.75 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "serverless-mcp",
"version": "0.1.4",
"description": "A modern TypeScript package implementing the Model Context Protocol with modular architecture and AWS Lambda streaming support",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./core": {
"import": "./dist/core/index.js",
"types": "./dist/core/index.d.ts"
},
"./prompts": {
"import": "./dist/prompts/index.js",
"types": "./dist/prompts/index.d.ts"
},
"./resources": {
"import": "./dist/resources/index.js",
"types": "./dist/resources/index.d.ts"
},
"./tools": {
"import": "./dist/tools/index.js",
"types": "./dist/tools/index.d.ts"
},
"./roots": {
"import": "./dist/roots/index.js",
"types": "./dist/roots/index.d.ts"
},
"./transports": {
"import": "./dist/transports/index.js",
"types": "./dist/transports/index.d.ts"
},
"./lambda": {
"import": "./dist/lambda/index.js",
"types": "./dist/lambda/index.d.ts"
}
},
"files": [
"dist/**/*",
"README.md",
"LICENSE",
"package.json"
],
"scripts": {
"build": "npm run clean && npm run build:types && npm run build:esm",
"build:all": "npm run build:types && npm run build:esm",
"build:types": "tsc -p tsconfig.build.json",
"build:esm": "esbuild $(find src -name '*.ts' -not -name '*.test.ts' -not -name '*.spec.ts' | tr '\\n' ' ') --platform=node --target=node22 --format=esm --outdir=dist",
"dev": "tsx watch src/index.ts",
"test": "vitest run && pnpm tsc --noEmit && pnpm lint",
"test:watch": "vitest",
"test:coverage": "vitest --coverage",
"lint": "biome check src",
"lint:fix": "biome check --write src",
"format": "biome format --write src",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build:all",
"prepack": "npm run build:all"
},
"keywords": [
"mcp",
"model-context-protocol",
"json-rpc",
"typescript",
"serverless",
"aws-lambda",
"ai",
"llm"
],
"author": "Your Name",
"license": "MIT",
"packageManager": "pnpm@9.15.0",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/aws-lambda": "^8.10.143",
"@types/node": "^22.10.1",
"@vitest/coverage-v8": "^2.1.8",
"esbuild": "^0.24.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"dependencies": {
"@aws-sdk/types": "^3.696.0",
"zod": "^3.24.1"
},
"peerDependencies": {
"aws-lambda": "*"
},
"peerDependenciesMeta": {
"aws-lambda": {
"optional": true
}
}
}