forked from mxx1111/mdlook
-
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) · 978 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 978 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": "@md/api",
"type": "module",
"version": "0.1.0",
"private": true,
"description": "Backend API for doocs/md – Cloudflare Worker (Hono + D1): GitHub OAuth account, cloud sync, and billing",
"scripts": {
"dev": "wrangler dev",
"deploy": "wrangler deploy --minify",
"build:node": "esbuild src/node.ts --bundle --platform=node --format=esm --target=node22 --outfile=dist/node-server.mjs --external:fsevents",
"start:node": "node dist/node-server.mjs",
"db:migrate:local": "wrangler d1 migrations apply md-sync --local",
"db:migrate:remote": "wrangler d1 migrations apply md-sync --remote",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@hono/node-server": "^1.19.14",
"@md/shared": "workspace:*",
"hono": "^4.12.25"
},
"devDependencies": {
"@cloudflare/workers-types": "4.20260613.1",
"@types/node": "^25.9.3",
"esbuild": "^0.28.1",
"typescript": "~6.0.3",
"wrangler": "^4.100.0"
}
}