-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 748 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 748 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
{
"name": "rootstock-mcp",
"version": "0.1.0",
"description": "MCP server for querying the Rootstock blockchain",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.10.2",
"@rsksmart/bridge-transaction-parser": "^2.1.1",
"@rsksmart/powpeg-redeemscript-parser": "^1.1.0",
"@rsksmart/rsk-precompiled-abis": "^9.0.0-VETIVER",
"dotenv": "^16.4.7",
"ethers": "^6.16.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22.15.18",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"viem": "^2.48.11"
},
"engines": {
"node": ">=18"
}
}