forked from Worldpay/worldpay-mcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.22 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.22 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
{
"name": "@worldpay/worldpay-mcp",
"version": "1.1.0",
"description": "Worldpay MCP Server",
"main": "server-http.js",
"type": "module",
"files": [
"dist/**/*"
],
"bin": "dist/server-stdio.js",
"scripts": {
"build": "tsc --build && tsc-alias",
"start": "node dist/server-http.js",
"dev": "npm run build && npm run start",
"test": "jest"
},
"author": "Worldpay",
"keywords": [
"worldpay",
"mcp",
"payments",
"paybylink",
"hostedpaymentpages",
"tokens"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"dotenv": "^16.4.7",
"express": "^5.2.1",
"node-fetch": "^3.3.2",
"winston": "^3.17.0"
},
"overrides": {
"express": {
"qs": "^6.14.2"
},
"@modelcontextprotocol/sdk": {
"ajv": "^8.18.0"
}
},
"devDependencies": {
"@fetch-mock/jest": "^0.2.20",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.19.1",
"cors": "^2.8.5",
"jest": "^29.7.0",
"nodemon": "^3.1.11",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.16",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
}
}