-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.16 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.16 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
{
"name": "mcp-test-client",
"version": "1.0.0",
"description": "Test client for demonstrating MCP (Model Context Protocol) workflows",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "npm run build && node dist/index.js",
"dev": "tsx src/index.ts",
"demo": "npm run build && node dist/index.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage --watchAll=false"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.6.0",
"chalk": "^5.3.0",
"inquirer": "^12.9.0",
"node-fetch": "^3.3.2",
"uuid": "^9.0.1"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/inquirer": "^9.0.9",
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"@types/uuid": "^9.0.7",
"jest": "^29.7.0",
"ts-jest": "^29.1.0",
"tsx": "^4.0.0",
"typescript": "^5.3.0"
},
"overrides": {
"tmp": "^0.2.4"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"mcp",
"model-context-protocol",
"test-client",
"banking-api",
"demo"
],
"author": "",
"license": "MIT"
}