-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 898 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 898 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
38
39
{
"name": "jupiter-perps-mcp",
"version": "1.0.0",
"description": "MCP server for Jupiter Perps trading on Solana",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"start:remote": "node dist/index.js --remote"
},
"keywords": [
"mcp",
"jupiter",
"solana",
"perps",
"trading"
],
"author": "",
"license": "MIT",
"dependencies": {
"@coral-xyz/anchor": "^0.29.0",
"@modelcontextprotocol/sdk": "^1.23.0",
"@solana/spl-token": "^0.4.9",
"@solana/web3.js": "^1.95.8",
"@types/express": "^5.0.5",
"bn.js": "^5.2.1",
"bs58": "^6.0.0",
"dotenv": "^16.4.7",
"express": "^5.1.0",
"technicalindicators": "^3.1.0"
},
"devDependencies": {
"@types/bn.js": "^5.2.0",
"@types/node": "^22.10.2",
"typescript": "^5.7.2"
}
}