-
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) · 936 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 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
38
{
"name": "paymcp-summarizer",
"version": "1.0.0",
"description": "Paid MCP server that charges per tool invocation via x402 protocol",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc && node dist/index.js",
"payment-server": "node dist/server.js",
"start:all": "tsc && (node dist/server.js & node dist/index.js)"
},
"keywords": [
"mcp",
"x402",
"payment"
],
"author": "",
"license": "ISC",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"@supabase/supabase-js": "^2.101.1",
"axios": "^1.14.0",
"cheerio": "^1.2.0",
"dotenv": "^17.4.0",
"viem": "^2.47.6",
"x402": "^1.1.0",
"x402-express": "^1.1.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^20.11.0",
"express": "^5.2.1",
"typescript": "^5.3.0"
}
}