-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 804 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 804 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
{
"name": "example-worker-echoback",
"version": "0.1.4",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build:wrangler": "run-wrangler-build",
"check:lint": "run-eslint",
"check:types": "run-tsc",
"check:workers-types": "run-wrangler-types --check",
"deploy": "run-wrangler-deploy",
"dev": "run-wrangler-dev",
"fix:workers-types": "run-wrangler-types",
"test": "run-vitest"
},
"dependencies": {
"@repo/hono-helpers": "workspace:*",
"hono": "4.9.11",
"workers-tagged-logger": "1.0.0"
},
"devDependencies": {
"@cloudflare/vitest-pool-workers": "0.12.6",
"@repo/eslint-config": "workspace:*",
"@repo/tools": "workspace:*",
"@repo/typescript-config": "workspace:*",
"@types/node": "22.15.27",
"vitest": "3.2.4",
"wrangler": "4.60.0"
}
}