-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 880 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 880 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": "payment-mcp",
"version": "0.1.0",
"description": "A Model Context Protocol (MCP) server that generates cryptocurrency payment button components for frontend projects. Supports ETH, USDT, and USDC on Ethereum mainnet.",
"type": "module",
"main": "dist/index.js",
"bin": {
"payment-mcp": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"clean": "rm -rf dist",
"type-check": "tsc --noEmit"
},
"keywords": [
"mcp",
"model-context-protocol",
"cryptocurrency",
"payments",
"blockchain"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}