-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.2 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.2 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
{
"name": "@spntn/wallet-mcp",
"version": "1.1.0",
"description": "MCP server for EVM wallet operations — balance, transfer, swap across Polygon, Ethereum, and Base",
"main": "dist/api-server.js",
"bin": {
"wallet-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc",
"postbuild": "node copy-openapi.js",
"heroku-postbuild": "npm run build && node copy-openapi.js",
"dev": "ts-node src/index.ts",
"start": "node dist/api-server.js"
},
"keywords": [
"mcp",
"wallet",
"ethereum",
"polygon",
"base",
"web3",
"defi"
],
"author": "spntn",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"ethers": "^6.0.0",
"ioredis": "^5.10.1",
"js-yaml": "^4.1.1",
"node-cache": "^5.1.2",
"prom-client": "^15.1.3",
"swagger-ui-express": "^5.0.1",
"winston": "^3.19.0",
"zod": "^3.22.0"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/ioredis": "^4.28.10",
"@types/node": "^20.0.0",
"@types/node-cache": "^4.1.3",
"@types/swagger-ui-express": "^4.1.8",
"@types/winston": "^2.4.4",
"@types/ws": "^8.18.1",
"ts-node": "^10.9.0",
"typescript": "^5.0.0"
}
}