-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.33 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
{
"name": "@nylium/hyperliquid-sdk",
"version": "1.0.2",
"description": "Real-time Hyperliquid market data SDK - prices, order books, trades, and user data via WebSocket",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build"
},
"keywords": [
"hyperliquid",
"trading",
"websocket",
"real-time",
"crypto",
"market-data",
"orderbook",
"prices",
"sdk",
"nylium"
],
"author": "Walid1Dev",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Walid1Dev/hyperliquid-sdk"
},
"homepage": "https://nylium.xyz",
"bugs": {
"url": "https://github.com/Walid1Dev/hyperliquid-sdk/issues"
},
"dependencies": {
"socket.io-client": "^4.7.2"
},
"devDependencies": {
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vitest": "^1.1.0"
},
"peerDependencies": {},
"engines": {
"node": ">=16.0.0"
}
}