-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.53 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.53 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
{
"name": "perp-cli",
"version": "0.6.4",
"description": "Multi-DEX Perpetual Futures CLI - Pacifica, Hyperliquid, Lighter",
"bin": {
"perp": "dist/index.js",
"perp-mcp": "dist/mcp-server.js"
},
"files": [
"dist",
"skills"
],
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run --exclude '**/integration/**'",
"test:integration": "vitest run -c vitest.integration.config.ts",
"test:all": "vitest run",
"prepublishOnly": "pnpm run build"
},
"keywords": [
"pacifica",
"hyperliquid",
"lighter",
"solana",
"perps",
"dex",
"cli",
"trading",
"funding-rate",
"arbitrage",
"mcp",
"mcp-server",
"model-context-protocol",
"ai-agent",
"perpetual-futures",
"defi",
"ethereum"
],
"license": "MIT",
"engines": {
"node": "^20.0.0 || ^22.0.0 || ^24.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"@msgpack/msgpack": "^3.1.3",
"@solana/web3.js": "^1.98.0",
"bs58": "^6.0.0",
"chalk": "^5.4.1",
"cli-table3": "^0.6.5",
"commander": "^13.1.0",
"dotenv": "^16.5.0",
"ethers": "^6.13.2",
"hyperliquid": "^1.7.7",
"lighter-ts-sdk": "^1.0.10",
"tweetnacl": "^1.0.3",
"ws": "^8.19.0",
"yaml": "^2.8.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.3.3",
"@types/ws": "^8.18.1",
"ts-morph": "^27.0.2",
"tsup": "^8.4.0",
"tsx": "^4.21.0",
"typescript": "^5.7.0",
"vitest": "^4.0.18"
}
}