-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.27 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.27 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
{
"name": "hono-4",
"type": "module",
"version": "0.0.0",
"private": true,
"scripts": {
"dev:cf": "wrangler dev --var \"E2E_TEST_DSN:$E2E_TEST_DSN\" --log-level=$(test $CI && echo 'none' || echo 'log')",
"dev:node": "node --import tsx/esm --import ./src/instrument.node.ts src/entry.node.ts",
"dev:bun": "bun src/entry.bun.ts",
"build": "wrangler deploy --dry-run",
"test:build": "pnpm install && pnpm build",
"test:assert": "TEST_ENV=production playwright test"
},
"dependencies": {
"@sentry/bun": "latest || *",
"@sentry/cloudflare": "latest || *",
"@sentry/hono": "latest || *",
"@sentry/node": "latest || *",
"@hono/node-server": "^1.19.10",
"hono": "^4.12.14"
},
"devDependencies": {
"@playwright/test": "~1.56.0",
"@cloudflare/workers-types": "^4.20240725.0",
"@sentry-internal/test-utils": "link:../../../test-utils",
"tsx": "^4.20.3",
"typescript": "^5.5.2",
"wrangler": "^4.61.0"
},
"volta": {
"extends": "../../package.json"
},
"sentryTest": {
"variants": [
{
"assert-command": "RUNTIME=node pnpm test:assert",
"label": "hono-4 (node)"
},
{
"assert-command": "RUNTIME=bun pnpm test:assert",
"label": "hono-4 (bun)"
}
]
}
}