-
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) · 868 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 868 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": "monito",
"version": "0.1.0",
"description": "API Health Check Monitor — anti-BetterStack for developers. Worker API + CLI.",
"type": "module",
"private": true,
"scripts": {
"dev": "wrangler dev --port 8788",
"deploy": "wrangler deploy",
"prebuild": "rm -rf dist",
"build": "node build.mjs",
"cli:dev": "tsx src/cli.ts",
"typecheck": "tsc --noEmit",
"db:local": "wrangler d1 migrations apply monito-db --local",
"db:remote": "wrangler d1 migrations apply monito-db --remote",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"hono": "^4.7.0",
"resend": "^4.1.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20250214.0",
"@types/node": "^25.9.3",
"esbuild": "^0.25.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
}
}