-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 832 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 832 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
{
"name": "hyperliquid-trades-feed",
"version": "1.0.3",
"description": "Get notified when big trades happen on Hyperliquid. Not affiliated with Hyperliquid",
"main": "dist/index.js",
"type": "commonjs",
"include": [
"src/**/*.ts"
],
"engines": {
"node": ">=22.4.0"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"deploy": "npm run build && npm start"
},
"keywords": [
"hyperliquid"
],
"author": "rokitgg",
"license": "MIT",
"dependencies": {
"@nktkas/hyperliquid": "^0.17.3",
"dotenv": "^16.4.4",
"p-limit": "^3.1.0",
"telegraf": "^4.15.3",
"ws": "^8.16.0"
},
"devDependencies": {
"@types/node": "^20.11.19",
"@types/ws": "^8.5.10",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}