-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 747 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 747 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
38
{
"name": "@alerix/monobank-mcp",
"version": "1.1.2",
"description": "Monobank MCP Server",
"type": "module",
"main": "dist/index.js",
"bin": {
"@alerix/monobank-mcp": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"dev": "tsx --watch src/index.ts",
"prepare": "npm run build",
"build": "tsc"
},
"author": "Alerix Nightfield",
"repository": {
"type": "git",
"url": "https://github.com/aler1x/monobank-mcp"
},
"keywords": [
"mcp",
"monobank",
"api"
],
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/node": "^22.10.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}