-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.11 KB
/
package.json
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
{
"name": "@solar-republic/cosmos-sync-balancer",
"version": "0.0.8",
"description": "A zero-downtime, hot-reloading, load balancer with fallbacks for routing to healthy Cosmos nodes' RPC and LCD endpoints.",
"homepage": "https://starshell.net/",
"repository": "github:@solar-republic/cosmos-sync-balancer",
"license": "ISC",
"files": [
"dist"
],
"main": "dist/configurator.js",
"publishConfig": {
"access": "public"
},
"type": "module",
"config": {
"env": "prod"
},
"scripts": {
"docker-build": "docker build -t ghcr.io/solarrepublic/cosmos-sync-balancer .",
"build:tsc": "npx tsc && npx tsc-esm-fix --target=dist",
"build": "npm run build:tsc && npm run docker-build",
"start": "npm run docker-run"
},
"dependencies": {
"@blake.regalia/belt": "^0.51.0"
},
"devDependencies": {
"@blake.regalia/eslint-config-elite": "^0.5.11",
"@blake.regalia/tsconfig": "^0.2.0",
"@types/bun": "latest",
"@types/node": "^22.10.5",
"@typescript-eslint/parser": "^8.19.0",
"eslint": "^9.17.0",
"tsc-esm-fix": "^3.1.2",
"typescript": "^5.7.2"
}
}