-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathpackage.json
64 lines (64 loc) · 1.27 KB
/
package.json
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
{
"name": "hyperliquid",
"version": "1.5.8",
"description": "SDK for Hyperliquid API",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"src",
"dist"
],
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts --clean",
"build:watch": "tsc --watch",
"clean": "rimraf dist",
"prepare": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "ts-node src/index.ts"
},
"keywords": [
"hyperliquid",
"api",
"sdk",
"rest",
"websocket",
"trading",
"crypto",
"blockchain",
"arbitrum",
"dex"
],
"author": "Nomeida",
"license": "MIT",
"dependencies": {
"@msgpack/msgpack": "^3.0.0-beta2",
"@types/ws": "^8.5.11",
"axios": "^1.7.2",
"ethers": "^6.13.2",
"typescript": "^5.5.4",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"dotenv": "^16.4.5",
"rimraf": "^5.0.0",
"ts-node": "^10.9.1",
"tsup": "^8.3.5"
},
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "https://github.com/nomeida/hyperliquid-api"
},
"engines": {
"node": ">=16.0.0"
}
}