-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.7 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.7 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
{
"name": "@paystack/mcp-server",
"version": "0.0.2",
"description": "Model Context Protocol (MCP) server for Paystack API integration",
"mcpName": "io.github.PaystackOSS/paystack",
"repository": {
"type": "git",
"url": "https://github.com/PaystackOSS/paystack-mcp-server.git"
},
"bin": {
"paystack-mcp-server": "./build/index.js"
},
"scripts": {
"build": "tsc && cp -r src/data build/",
"build:watch": "tsc --watch",
"prepack": "npm run build",
"prepublishOnly": "npm run build && npm test",
"dev": "tsx src/index.ts",
"inspect": "set DANGEROUSLY_OMIT_AUTH=true && CLIENT_PORT=8090 SERVER_PORT=9000 npx @modelcontextprotocol/inspector npm run dev",
"test": "mocha",
"lint": "eslint src/ test/",
"lint:fix": "eslint src/ test/ --fix",
"format:check": "prettier --check src/ test/",
"format": "prettier --write src/ test/"
},
"engines": {
"node": ">=20.0.0"
},
"files": [ "build", "README.md" ],
"keywords": [
"paystack",
"mcp",
"model-context-protocol",
"api",
"payment",
"integration"
],
"author": "Andrew-Paystack",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"@apidevtools/swagger-parser": "^12.1.0",
"dotenv": "^17.2.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@modelcontextprotocol/inspector": "^0.18.0",
"@types/mocha": "^10.0.10",
"@types/node": "^25.0.7",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.0.0",
"js-yaml": "^4.1.1",
"mocha": "^11.3.0",
"openapi-types": "^12.1.3",
"prettier": "^3.0.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.0.0"
}
}