-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 841 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 841 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
{
"name": "cloudflare-hono",
"scripts": {
"dev": "wrangler dev",
"build": "wrangler deploy --dry-run --var E2E_TEST_DSN=$E2E_TEST_DSN",
"test": "vitest",
"typecheck": "tsc --noEmit",
"cf-typegen": "wrangler types --env-interface CloudflareBindings",
"test:build": "pnpm install && pnpm build",
"//": "Just checking if it builds correctly and types don't break",
"test:assert": "pnpm typecheck && vitest run ."
},
"dependencies": {
"@sentry/cloudflare": "latest || *",
"hono": "4.11.4"
},
"devDependencies": {
"@cloudflare/vitest-pool-workers": "^0.8.31",
"@cloudflare/workers-types": "^4.20250521.0",
"typescript": "^5.9.3",
"vitest": "3.1.0",
"wrangler": "4.22.0"
},
"volta": {
"extends": "../../package.json"
},
"sentryTest": {
"optional": true
}
}