-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.23 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.23 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@nirholas/binance-mcp-server",
"version": "1.0.0",
"description": "MCP server for Binance exchange - spot trading, staking, wallet, NFT, pay, mining, and more",
"type": "module",
"main": "./build/index.js",
"scripts": {
"start": "node build/index.js",
"start:sse": "node build/index.js --sse",
"dev": "tsx watch src/index.ts",
"dev:sse": "tsx watch src/index.ts --sse",
"build": "tsc",
"init": "tsx src/init.ts",
"test": "npx @modelcontextprotocol/inspector tsx src/index.ts"
},
"bin": {
"binance-mcp": "./build/index.js"
},
"files": [
"build",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"author": {
"name": "nich",
"url": "https://x.com/nichxbt"
},
"repository": {
"type": "git",
"url": "https://github.com/nirholas/universal-crypto-mcp"
},
"keywords": [
"mcp",
"model-context-protocol",
"binance",
"crypto",
"trading",
"exchange",
"defi",
"web3"
],
"dependencies": {
"@binance/algo": "^3.1.3",
"@binance/auto-invest": "^2.0.5",
"@binance/c2c": "^4.1.3",
"@binance/connector-typescript": "^0.3.16",
"@binance/convert": "^4.1.3",
"@binance/copy-trading": "^3.1.3",
"@binance/crypto-loan": "^9.0.1",
"@binance/dual-investment": "^4.1.3",
"@binance/fiat": "^6.0.3",
"@binance/mining": "^5.0.0",
"@binance/nft": "^3.1.3",
"@binance/pay": "^5.1.3",
"@binance/rebate": "^3.1.3",
"@binance/simple-earn": "^12.0.0",
"@binance/spot": "^26.0.2",
"@binance/staking": "^7.1.3",
"@binance/sub-account": "^10.1.3",
"@binance/vip-loan": "^8.0.0",
"@binance/wallet": "^15.0.0",
"@modelcontextprotocol/sdk": "^1.11.0",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^4.18.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.0.0",
"chalk": "^5.3.0",
"figlet": "^1.8.0",
"fs-extra": "^11.2.0",
"prompts": "^2.4.2",
"@types/figlet": "^1.5.8",
"@types/fs-extra": "^11.0.4",
"@types/prompts": "^2.4.9",
"tsx": "^4.7.0",
"typescript": "^5.0.0"
},
"license": "MIT",
"engines": {
"node": ">=18.0.0"
}
}