-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.75 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
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@blindpay/mcp",
"version": "1.7.1",
"description": "Official MCP Server for BlindPay API - Stablecoin API for global payments",
"type": "module",
"main": "build/index.js",
"types": "build/index.d.ts",
"bin": {
"blindpay-mcp": "./build/index.js"
},
"files": [
"build/**"
],
"exports": {
".": {
"types": "./build/index.d.ts",
"import": "./build/index.js"
}
},
"scripts": {
"start": "node build/index.js",
"build": "tsc && chmod 755 build/index.js",
"typecheck": "tsc --noEmit",
"generate": "node --import tsx scripts/generate.ts",
"sync": "node --import tsx scripts/sync.mts",
"sync:check": "node --import tsx scripts/sync.mts --check",
"check-tool-names": "node --import tsx scripts/check-tool-names.mts",
"prepublishOnly": "npm run build"
},
"keywords": [
"blindpay",
"mcp",
"model-context-protocol",
"global-payments",
"stablecoin",
"api",
"ai",
"cursor",
"claude"
],
"author": "BlindPay <eric@blindpay.com> (https://blindpay.com/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/blindpaylabs/blindpay-mcp.git"
},
"homepage": "https://blindpay.com",
"bugs": {
"url": "https://github.com/blindpaylabs/blindpay-mcp/issues"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.10.0",
"axios": "^1.9.0",
"dotenv": "^16.4.5",
"zod": "^3.24.3"
},
"devDependencies": {
"@types/node": "^22.15.2",
"openapi-mcp-generator": "^3.1.5",
"tsx": "^4.19.2",
"typescript": "^5.8.3"
},
"peerDependencies": {
"@types/node": ">=20.x.x"
},
"peerDependenciesMeta": {
"@types/node": {
"optional": true
}
}
}