-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 821 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 821 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
{
"name": "auth-mock",
"version": "1.0.0",
"description": "dstack KMS mock 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.12.12",
"@hono/zod-validator": "0.2.2",
"zod": "3.25.76"
},
"devDependencies": {
"@types/bun": "1.2.18",
"@types/node": "22.10.8",
"@vitest/ui": "1.6.1",
"openapi-types": "12.1.3",
"oxlint": "0.9.10",
"typescript": "5.8.3",
"vitest": "1.6.1"
},
"type": "module"
}