forked from mektigboy/server-hyperliquid
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 734 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 734 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
{
"name": "@mektigboy/server-hyperliquid",
"version": "0.0.1",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"prepare": "npm run build",
"watch": "tsc --watch",
"inspect": "npx @modelcontextprotocol/inspector dist/index.js"
},
"author": "mektigboy",
"license": "MIT",
"type": "module",
"files": [
"dist"
],
"bin": {
"hyperliquid": "dist/index.js"
},
"description": "MCP server for Hyperliquid",
"dependencies": {
"@modelcontextprotocol/sdk": "1.6.1",
"@nktkas/hyperliquid": "^0.16.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^22.13.9",
"shx": "^0.3.4",
"typescript": "^5.8.2"
}
}