-
Notifications
You must be signed in to change notification settings - Fork 106
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 836 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 836 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
{
"name": "og",
"type": "module",
"scripts": {
"build": "echo 'No build step needed for Cloudflare Worker'",
"dev": "wrangler dev",
"deploy": "wrangler deploy",
"check": "pnpm check:biome && pnpm check:types",
"check:biome": "biome check --write --unsafe",
"check:types": "tsgo --project tsconfig.json --noEmit",
"gen:types": "wrangler types --env-interface='CloudflareBindings' --env-file='.env.example'",
"postinstall": "pnpm gen:types"
},
"dependencies": {
"@hono/zod-validator": "catalog:",
"@takumi-rs/image-response": "^0.73.1",
"@takumi-rs/wasm": "^0.73.1",
"hono": "catalog:",
"ox": "catalog:",
"viem": "catalog:",
"zod": "catalog:"
},
"devDependencies": {
"@biomejs/biome": "catalog:",
"@cloudflare/workers-types": "catalog:",
"@types/node": "catalog:",
"wrangler": "catalog:"
}
}