-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 936 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 936 Bytes
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": "paystack-mcp",
"version": "0.0.1",
"description": "",
"bin": {
"paystack": "./build/index.js"
},
"scripts": {
"build": "tsc && cp -r src/data build/",
"build:watch": "tsc --watch",
"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"
},
"files": [
"build"
],
"keywords": [],
"author": "Andrew-Paystack",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/inspector": "^0.18.0",
"@modelcontextprotocol/sdk": "^1.26.0",
"dotenv": "^17.2.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@apidevtools/swagger-parser": "^12.1.0",
"@types/mocha": "^10.0.10",
"@types/node": "^25.0.7",
"js-yaml": "^4.1.1",
"mocha": "^11.3.0",
"openapi-types": "^12.1.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}