-
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.02 KB
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 1.02 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
{
"name": "personal-api",
"version": "0.4.0",
"private": true,
"type": "module",
"scripts": {
"dev": "wrangler dev src/index.ts",
"deploy": "wrangler deploy src/index.ts",
"backup:d1": "node scripts/backup-d1.mjs",
"backup:r2-manifest": "node scripts/backup-r2-manifest.mjs",
"import:tv-time:shelf": "node scripts/import-tv-time-shelf.mjs",
"enrich:shelf-posters:tmdb": "node scripts/enrich-shelf-posters-tmdb.mjs",
"backfill:shelf-tmdb-metadata": "node scripts/backfill-shelf-tmdb-metadata.mjs",
"enrich:shelf-books": "node scripts/enrich-shelf-books.mjs",
"sync:shelf-posters": "node scripts/enrich-shelf-posters-tmdb.mjs --commit",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@asteasolutions/zod-to-openapi": "^7.3.4",
"hono": "^4.11.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260526.1",
"typescript": "^5.4.5",
"vitest": "^4.0.17",
"wrangler": "^4.82.2"
}
}