-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 823 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 823 Bytes
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
{
"name": "lazy-lb",
"version": "3.0.0",
"description": "High-performance load balancer for Cosmos SDK RPC endpoints",
"main": "src/index.ts",
"type": "module",
"scripts": {
"start": "bun run src/index.ts",
"dev": "bun run --watch src/index.ts",
"build": "bun build src/index.ts --outdir dist --target bun",
"test": "bun test",
"lint": "bunx @biomejs/biome check src/",
"format": "bunx @biomejs/biome format --write src/",
"clean": "rm -rf dist"
},
"dependencies": {
"hono": "^4.6.0",
"vitest": "^4.0.14"
},
"devDependencies": {
"@biomejs/biome": "^1.9.0",
"@types/bun": "latest"
},
"engines": {
"bun": ">=1.1.0"
},
"author": "Cordt Hanson",
"license": "MIT",
"repository": "https://github.com/Cordtus/lazy-loadbalancer",
"private": false
}