-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 2 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
{
"name": "basic",
"type": "module",
"private": true,
"scripts": {
"dev": "vite",
"dev:bun": "bun --bun vite --runtime bun",
"dev:workers": "vite --runtime cloudflare-workers",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"test": "bun test",
"audit:structure": "bun run scripts/audit-agent-structure.ts",
"check": "bun run typecheck && bun run lint && bun test && bun run build",
"build": "vite build --mode client && vite build",
"build:workers": "vite build --mode client && vite build --runtime cloudflare-workers",
"build:bun": "vite build --mode client && vite build --runtime bun",
"compile:bun": "bun run build:bun && bun build --compile --minify --sourcemap --bytecode ./dist/index.js --outfile dist/hono-admin-bun",
"scaffold:crud": "bun run scripts/scaffold-admin-crud.ts",
"preview": "wrangler dev --config wrangler.local.jsonc",
"dev:worker": "bun run build:workers && wrangler dev --config wrangler.local.jsonc",
"deploy": "bun run build:workers && wrangler deploy --config wrangler.local.jsonc"
},
"dependencies": {
"@hono/standard-validator": "^0.2.2",
"@hono/swagger-ui": "^0.6.1",
"@hono/zod-validator": "^0.7.6",
"@hotwired/stimulus": "^3.2.2",
"@hotwired/turbo": "^8.0.23",
"@iconify/vue": "^5.0.0",
"dayjs": "^1.11.20",
"hono": "^4.12.18",
"hono-openapi": "^1.3.0",
"honox": "^0.1.55",
"mysql2": "^3.22.4",
"postgres": "^3.4.9",
"zod": "^4.4.2",
"zod-openapi": "^5.4.6"
},
"devDependencies": {
"@antfu/eslint-config": "^8.2.0",
"@cloudflare/workers-types": "^4.20250214.0",
"@hono/vite-build": "^1.3.0",
"@hono/vite-dev-server": "^0.18.2",
"@iconify-json/ri": "^1.2.10",
"@iconify/tailwind4": "^1.2.3",
"@tailwindcss/vite": "^4.0.9",
"bun-types": "^1.3.13",
"daisyui": "^5.5.19",
"eslint": "^10.3.0",
"eslint-plugin-format": "^2.0.1",
"tailwindcss": "^4.0.9",
"typescript": "^6.0.3",
"vite": "^6.3.5",
"wrangler": "^4.4.0"
}
}