-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.72 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.72 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
{
"name": "@usherlabs/cex-broker",
"version": "0.2.7",
"description": "Unified gRPC API to CEXs by Usher Labs.",
"repository": {
"type": "git",
"url": "https://github.com/usherlabs/cex-broker"
},
"homepage": "https://usher.so/",
"author": "Usher Labs <labs@usher.so>",
"module": "dist/index.js",
"type": "module",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"devDependencies": {
"@biomejs/biome": "2.0.6",
"@types/bun": "latest",
"bun-plugin-dts": "latest",
"bun-types": "latest",
"cpx": "^1.5.0",
"dotenv": "^17.2.0",
"husky": "^9.1.7"
},
"files": [
"dist"
],
"bin": {
"cex-broker": "dist/commands/cli.js"
},
"scripts": {
"proto-gen": "./proto-gen.sh",
"start": "bun run ./src/index.ts",
"build": "bun run proto-gen && bun run ./build.ts && bun run build:ts && bun run copy:dts && bun run copy:proto",
"prepack": "bun run build",
"start-broker": "bun run ./src/cli.ts",
"start-broker-server": "bunx nodemon --watch src --watch policy --ext ts,js,json --exec 'bun run start-broker --policy policy/policy.json --port 8086 --whitelistAll'",
"start-broker-server-with-verity": "bunx nodemon --watch src --watch policy --ext ts,js,json --exec 'bun run start-broker --policy policy/policy.json --port 8086 --whitelistAll --verityProverUrl http://verity-prover:8080'",
"build:ts": "bunx tsc",
"test": "bun test",
"format": "bunx biome format --write",
"lint": "bunx biome lint",
"lint:fix": "bunx biome lint --write",
"check": "bunx biome check",
"check:fix": "bunx biome check --write",
"copy:dts": "cpx \"build/**/*.d.ts\" ./dist/",
"copy:proto": "cpx \"src/proto/*.proto\" ./dist/proto",
"prepare": "bunx husky"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@grpc/grpc-js": "^1.13.4",
"@grpc/proto-loader": "^0.7.15",
"@loglayer/plugin-opentelemetry": "^3.0.2",
"@loglayer/transport-opentelemetry": "^4.0.2",
"@loglayer/transport-tslog": "^4.0.2",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/api-logs": "^0.212.0",
"@opentelemetry/exporter-logs-otlp-http": "^0.212.0",
"@opentelemetry/exporter-metrics-otlp-http": "^0.212.0",
"@opentelemetry/resources": "^2.5.1",
"@opentelemetry/sdk-logs": "^0.212.0",
"@opentelemetry/sdk-metrics": "^2.5.1",
"@usherlabs/ccxt": "^0.0.14",
"@usherlabs/verity-client": "^0.1.1",
"commander": "^14.0.0",
"joi": "^17.13.3",
"loglayer": "^9.1.0",
"protobufjs": "^7.4.0",
"serialize-error": "^13.0.1",
"tslog": "^4.9.3",
"zod": "^4.3.6"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"contributors": [
"Oki Ayobami (https://github.com/xlassix)"
],
"patchedDependencies": {
"@protobufjs/inquire@1.1.0": "patches/@protobufjs%2Finquire@1.1.0.patch"
}
}