-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 912 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 912 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
32
33
34
35
36
{
"name": "mojistow",
"type": "module",
"private": true,
"packageManager": "pnpm@10.28.2",
"scripts": {
"dev": "wrangler dev",
"build": "wrangler deploy --dry-run --outdir=dist",
"deploy": "wrangler deploy",
"test": "pnpm vitest --run",
"test:watch": "pnpm vitest",
"cf-typegen": "wrangler types --env-interface CloudflareBindings",
"typecheck": "pnpm run cf-typegen && tsc --noEmit",
"lint": "eslint ."
},
"dependencies": {
"@hono/arktype-validator": "2.0.1",
"arktype": "2.1.20",
"hono": "4.11.10",
"nanotar": "0.2.1"
},
"devDependencies": {
"@cloudflare/vitest-pool-workers": "0.8.66",
"@luxass/eslint-config": "4.19.0",
"eslint": "^9.22.0",
"eslint-plugin-format": "^1.0.1",
"typescript": "5.9.2",
"vitest": "3.2.1",
"wrangler": "4.59.1"
},
"pnpm": {
"onlyBuiltDependencies": [
"workerd"
]
}
}