-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.79 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.79 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
{
"name": "hyperliquid-cli",
"version": "0.0.5",
"description": "CLI tool for Hyperliquid DEX",
"author": "Chris Ling",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/chrisling-dev/hyperliquid-cli.git"
},
"homepage": "https://github.com/chrisling-dev/hyperliquid-cli#readme",
"bugs": {
"url": "https://github.com/chrisling-dev/hyperliquid-cli/issues"
},
"keywords": [
"hyperliquid",
"cli",
"dex",
"trading",
"perpetuals",
"crypto"
],
"type": "module",
"bin": {
"hl": "./dist/index.js",
"hl-server": "./dist/server/index.js"
},
"files": [
"dist",
"README.md",
"SKILLS.md"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepublishOnly": "pnpm build"
},
"dependencies": {
"@inquirer/prompts": "^8.2.0",
"@nktkas/hyperliquid": "^0.30.2",
"better-sqlite3": "^12.6.2",
"commander": "^12.1.0",
"ink": "^5.0.1",
"ink-spinner": "^5.0.0",
"react": "^18.3.1",
"viem": "^2.21.0",
"ws": "^8.19.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.0.0",
"@types/react": "^18.3.3",
"@types/ws": "^8.18.1",
"eslint": "^9.39.2",
"globals": "^17.2.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"typescript-eslint": "^8.54.0",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@9.15.0+sha512.76e2379760a4328ec4415815bcd6628dee727af3779aaa4c914e3944156c4299921a89f976381ee107d41f12cfa4b66681ca9c718f0668fa0831ed4c6d8ba56c"
}