-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 848 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 848 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
32
33
{
"name": "auth-eth-bun",
"version": "1.0.0",
"description": "dstack KMS ethereum backend with bun + hono + zod",
"main": "index.ts",
"scripts": {
"dev": "bun run --watch index.ts",
"start": "bun run index.ts",
"build": "bun build index.ts --outdir ./dist --target bun",
"test": "vitest",
"test:run": "vitest run",
"lint": "oxlint .",
"lint:fix": "oxlint --fix .",
"fmt": "oxlint --fix .",
"check": "bun run lint && bun run test:run"
},
"dependencies": {
"hono": "4.9.6",
"@hono/zod-validator": "0.2.2",
"zod": "3.25.76",
"viem": "2.31.7"
},
"devDependencies": {
"@types/bun": "1.2.18",
"@types/node": "^24.0.14",
"@vitest/ui": "1.6.1",
"openapi-types": "12.1.3",
"oxlint": "0.9.10",
"typescript": "5.8.3",
"vitest": "1.6.1"
},
"type": "module"
}