-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 736 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 736 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
{
"name": "taskworker",
"version": "0.0.0",
"private": true,
"scripts": {
"deploy": "wrangler deploy",
"dev": "wrangler dev",
"start": "wrangler dev",
"test": "vitest",
"cf-typegen": "wrangler types",
"format:check": "biome format .",
"format:fix": "biome format --write .",
"lint:check": "biome lint .",
"lint:fix": "biome lint --write .",
"lint:tsc": "tsc --noEmit",
"lint": "npm run format:check && npm run lint:check && npm run lint:tsc"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@cloudflare/vitest-pool-workers": "^0.8.19",
"typescript": "^5.5.2",
"vitest": "~3.2.0",
"wrangler": "^4.58.0"
},
"dependencies": {
"hono": "^4.11.4"
}
}