-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.41 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.41 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@quicknode/hypercore-cli",
"version": "0.1.1",
"description": "Developer-friendly CLI for streaming and backfilling HyperCore datasets from Quicknode",
"keywords": [
"quicknode",
"hypercore",
"hyperliquid",
"cli",
"websocket",
"json-rpc",
"backfill",
"market-data",
"trading",
"cryptocurrency",
"sqlite",
"typescript"
],
"license": "MIT",
"author": "Quicknode",
"homepage": "https://github.com/quiknode-labs/hypercore-cli",
"repository": {
"type": "git",
"url": "https://github.com/quiknode-labs/hypercore-cli.git"
},
"bugs": {
"url": "https://github.com/quiknode-labs/hypercore-cli/issues"
},
"engines": {
"node": ">=20"
},
"bin": {
"hypercore-cli": "./bin/hypercore-cli.js"
},
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"default": "./dist/src/index.js"
}
},
"files": [
"bin",
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"build": "tsc -p tsconfig.json && cp -r src/proto dist/src/proto",
"typecheck": "tsc -p tsconfig.json --noEmit",
"lint": "tsc -p tsconfig.json --noEmit",
"test": "pnpm -s build && node --test tests/**/*.test.mjs",
"test:watch": "node --test --watch tests/**/*.test.mjs",
"test:socket": "ENABLE_SOCKET_TESTS=1 node --test tests/integration/stream-runtime-reconnect.test.mjs",
"perf:smoke": "pnpm -s build && node scripts/perf-smoke.mjs",
"pack:dry-run": "npm pack --dry-run --cache \"${TMPDIR:-/tmp}/hypercore-cli-npm-cache\"",
"prepublishOnly": "pnpm typecheck && pnpm test && pnpm build"
},
"dependencies": {
"@bufbuild/protobuf": "^2.11.0",
"@connectrpc/connect": "^2.1.1",
"@connectrpc/connect-web": "^2.1.1",
"@grpc/grpc-js": "^1.14.3",
"@grpc/proto-loader": "^0.8.0",
"@x402/evm": "^2.3.0",
"@x402/fetch": "^2.3.0",
"commander": "^14.0.2",
"siwe": "^2.3.2",
"viem": "^2.30.0",
"ws": "^8.18.3",
"zod": "^3.25.76"
},
"optionalDependencies": {
"better-sqlite3": "^11.10.0",
"keytar": "^7.9.0"
},
"devDependencies": {
"@bufbuild/buf": "^1.65.0",
"@bufbuild/protoc-gen-es": "^2.11.0",
"@types/node": "^22.0.0",
"typescript": "^5.9.2"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"keytar"
]
},
"packageManager": "pnpm@10.24.0"
}