-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 793 Bytes
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 793 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "hip4-kit",
"version": "0.1.0",
"description": "TypeScript toolkit for Hyperliquid HIP-4 prediction markets — asset-id encoding, canonical price wire format, market/odds fetching, holdings parsing. Battle-tested with real money.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": ["dist", "src", "README.md", "LICENSE"],
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit"
},
"keywords": ["hyperliquid", "hip-4", "prediction-markets", "outcome-markets", "trading", "defi", "telegram-bot"],
"author": "Arjun Varma (https://github.com/Arjun0606)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Arjun0606/hip4-kit"
},
"devDependencies": {
"typescript": "^5.5.0"
}
}