@usherlabs/cex-broker 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +576 -0
- package/dist/commands/cli.d.ts +3 -0
- package/dist/commands/cli.js +290581 -0
- package/dist/index.js +288445 -0
- package/package.json +58 -0
package/package.json
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@usherlabs/cex-broker",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Unified gRPC API to CEXs by Usher Labs",
|
|
5
|
+
"repository": "git@gitlab.com:usherlabs/cex-broker.git",
|
|
6
|
+
"homepage": "https://usher.so/",
|
|
7
|
+
"author": "Oki Ayobami <oki@usher.so>",
|
|
8
|
+
"module": "src/index.ts",
|
|
9
|
+
"type": "module",
|
|
10
|
+
"license": "MIT",
|
|
11
|
+
"main": "dist/index.js",
|
|
12
|
+
"types": "dist/index.d.ts",
|
|
13
|
+
"devDependencies": {
|
|
14
|
+
"@biomejs/biome": "2.0.6",
|
|
15
|
+
"@types/bun": "latest",
|
|
16
|
+
"bun-plugin-dts": "latest",
|
|
17
|
+
"bun-types": "latest",
|
|
18
|
+
"dotenv": "^17.2.0",
|
|
19
|
+
"husky": "^9.1.7"
|
|
20
|
+
},
|
|
21
|
+
"files": [
|
|
22
|
+
"dist"
|
|
23
|
+
],
|
|
24
|
+
"bin": {
|
|
25
|
+
"cex-broker": "dist/commands/cli.js"
|
|
26
|
+
},
|
|
27
|
+
"scripts": {
|
|
28
|
+
"proto-gen": "./proto-gen.sh",
|
|
29
|
+
"start": "bun run ./src/index.ts",
|
|
30
|
+
"build:ts": "bun run ./src/build.ts",
|
|
31
|
+
"test": "bun test",
|
|
32
|
+
"format": "bunx biome format --write",
|
|
33
|
+
"lint": "bunx biome lint --write",
|
|
34
|
+
"check": "bunx biome check --write",
|
|
35
|
+
"prepare": "bunx husky",
|
|
36
|
+
"postinstall": "./proto-gen.sh"
|
|
37
|
+
},
|
|
38
|
+
"peerDependencies": {
|
|
39
|
+
"typescript": "^5"
|
|
40
|
+
},
|
|
41
|
+
"dependencies": {
|
|
42
|
+
"@grpc/grpc-js": "^1.13.4",
|
|
43
|
+
"@grpc/proto-loader": "^0.7.15",
|
|
44
|
+
"@usherlabs/ccxt": "^0.0.4",
|
|
45
|
+
"commander": "^14.0.0",
|
|
46
|
+
"joi": "^17.13.3",
|
|
47
|
+
"tslog": "^4.9.3"
|
|
48
|
+
},
|
|
49
|
+
"publishConfig": {
|
|
50
|
+
"registry": "https://registry.npmjs.org"
|
|
51
|
+
},
|
|
52
|
+
"contributors": [
|
|
53
|
+
"Oki Ayobami (https://github.com/xlassix)"
|
|
54
|
+
],
|
|
55
|
+
"patchedDependencies": {
|
|
56
|
+
"@protobufjs/inquire@1.1.0": "patches/@protobufjs%2Finquire@1.1.0.patch"
|
|
57
|
+
}
|
|
58
|
+
}
|