-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.06 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.06 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
{
"name": "mcp-chatbot-typescript",
"version": "0.5.18",
"type": "module",
"main": "build/main.js",
"types": "build/main.d.ts",
"scripts": {
"build": "tsc",
"start": "node build/main.js",
"lint": "eslint . --ext .ts"
},
"dependencies": {
"@aws-crypto/sha256-js": "^5.2.0",
"@aws-sdk/client-bedrock-runtime": "^3.1043.0",
"@aws-sdk/client-cloudformation": "^3.1027.0",
"@aws-sdk/client-s3": "^3.1041.0",
"@aws-sdk/client-ssm": "^3.1027.0",
"@aws-sdk/credential-provider-node": "^3.972.39",
"@aws-sdk/protocol-http": "^3.374.0",
"@aws-sdk/types": "^3.973.1",
"@modelcontextprotocol/sdk": "^1.29.0",
"@smithy/signature-v4": "^5.3.14",
"@strands-agents/sdk": "^0.7.0",
"@types/json-schema": "^7.0.15",
"readline-sync": "^1.4.10",
"winston": "^3.19.0"
},
"devDependencies": {
"@cfworker/json-schema": "^4.1.1",
"@eslint/js": "^10.0.1",
"@types/node": "^25.6.0",
"@types/readline-sync": "^1.4.8",
"eslint": "^10.2.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.58.1"
}
}