-
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) · 991 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 991 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": "sdk-mcp-server",
"version": "0.1.0",
"description": "MCP Server for Fystack Platform SDK with MPC wallets",
"type": "module",
"main": "dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@ethersproject/bignumber": "^5.8.0",
"@ethersproject/constants": "^5.8.0",
"@ethersproject/contracts": "^5.8.0",
"@ethersproject/providers": "^5.8.0",
"@ethersproject/units": "^5.8.0",
"@fystack/sdk": "^0.1.4",
"@modelcontextprotocol/sdk": "^1.20.1",
"@uniswap/sdk-core": "^7.8.0",
"@uniswap/smart-order-router": "^4.22.26",
"dotenv": "^17.2.3",
"ethers": "^5.7.2",
"ethers6": "npm:ethers@6.10.0",
"uuid": "^13.0.0"
},
"devDependencies": {
"@types/node": "^20.10.5",
"@types/uuid": "^9.0.7",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}