-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1006 Bytes
/
package.json
File metadata and controls
49 lines (49 loc) · 1006 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
40
41
42
43
44
45
46
47
48
49
{
"name": "@erscoder/hyperliquid-cli",
"version": "1.0.0",
"description": "Agent-friendly CLI for the Hyperliquid DEX — market data, trading, and account management",
"main": "dist/index.js",
"bin": {
"hl": "./bin/hl"
},
"files": [
"dist",
"bin",
"README.md"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"hyperliquid",
"cli",
"trading",
"defi",
"perpetuals",
"agents"
],
"author": "Enrique Rubio <enrique.rubio.developer@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/erscoder/hyperliquid-cli"
},
"dependencies": {
"@nktkas/hyperliquid": "^0.17.4",
"commander": "^12.1.0",
"viem": "^2.47.4"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsx": "^4.19.0",
"typescript": "^5.5.0"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
}
}