-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 1.01 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
{
"private": true,
"type": "module",
"scripts": {
"workspace:init": "touch dev.local.env",
"dev:init": "touch dev.local.env",
"dev": "node --run dev:init && tsx watch --include='*.env' --clear-screen=false --env-file=dev.env --env-file-if-exists=dev.local.env src/index.ts",
"build": "tsc",
"start": "node --enable-source-maps dist/index.js",
"check": "oxfmt --check && oxlint",
"fix": "oxfmt && oxlint --fix"
},
"dependencies": {
"@badrap/libapp": "^0.11.1",
"@badrap/valita": "^0.5.4",
"@hono/node-server": "^2.0.4",
"hono": "^4.12.23",
"ms": "^2.1.3",
"sorted-queue": "^0.4.4"
},
"devDependencies": {
"@types/ms": "^2.1.0",
"@types/node": "^25.9.2",
"oxfmt": "^0.53.0",
"oxlint": "^1.68.0",
"oxlint-tsgolint": "^0.23.0",
"tsx": "^4.22.4",
"typescript": "^6.0.3"
},
"packageManager": "pnpm@11.5.2+sha512.71c631e382066efc25625d5cf029075de07b61b37f6e27350fbd84b1bda5864c8c1967adc280776b45c30a715c0359a3be08fef42d5bb09e2b99029979692916"
}