-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.25 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.25 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
{
"name": "@0xarchive/cli",
"version": "1.7.0",
"description": "Terminal-first 0xArchive client for Hyperliquid and Lighter.xyz market data, including Hyperliquid HIP-3, HIP-4, and Spot",
"type": "module",
"bin": {
"oxa": "./dist/cli.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsup",
"dev": "tsx src/cli.ts",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build"
},
"keywords": [
"0xarchive",
"cli",
"market-data",
"hyperliquid",
"lighterxyz",
"orderbook",
"trades",
"replay",
"agents",
"historical-data",
"crypto"
],
"author": "0xarchive",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/0xArchiveIO/0xarchive-cli"
},
"homepage": "https://www.0xarchive.io/github-cli",
"bugs": {
"url": "https://github.com/0xArchiveIO/0xarchive-cli/issues"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@0xarchive/sdk": "^1.7.0",
"commander": "^13.0.0",
"chalk": "^5.4.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsup": "^8.0.0",
"tsx": "^4.0.0",
"typescript": "^5.4.0",
"vitest": "^2.0.0"
}
}