-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.89 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
32
33
34
35
36
37
38
39
40
41
{
"name": "recipe-kit",
"version": "0.1.0",
"description": "Digitize recipe photos into clean Cooklang plaintext (transcribe/) and render them into a print-ready binder with an auto-regenerating table of contents and a print tracker (src/).",
"type": "module",
"engines": {
"node": ">=20.10.0 <21"
},
"scripts": {
"typecheck": "tsc --noEmit",
"build": "node scripts/build.mjs",
"package": "node scripts/build.mjs && node scripts/package-binary.mjs",
"verify-format": "node transcribe/verify-format.mjs",
"test": "node transcribe/verify-format.mjs && node --import tsx --test src/config.test.ts src/config.parity.test.ts src/configure/configure.test.ts src/clarifications.test.ts src/cook/parse.test.ts src/cook/format.test.ts src/units/convert.test.ts src/render/view-model.test.ts src/render/freshness.test.ts src/slug.test.ts src/recipe-id.test.ts print-hardware/print-state.test.ts src/print-bridge.test.ts src/env/doctor.test.ts src/photos/detect.test.ts src/photos/normalize.test.ts src/audit/heartbeat.test.ts src/audit/approve.test.ts transcribe/slice-image.test.mjs",
"recipes": "tsx src/cli.ts",
"queue-recipes": "tsx src/cli.ts queue-recipes",
"print-hardware": "tsx print-hardware/cli.ts",
"configure": "tsx src/cli.ts configure",
"audit:check": "tsx src/cli.ts audit",
"audit:review": "tsx src/cli.ts audit-review",
"audit:approve": "tsx src/cli.ts audit-approve"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/react": "^19.2.17",
"esbuild": "^0.25.0",
"postject": "1.0.0-alpha.6",
"tsx": "^4.7.0",
"typescript": "^5.4.0"
},
"dependencies": {
"@react-pdf/renderer": "^4.5.1",
"heic-convert": "^2.1.0",
"jimp": "^1.6.0",
"react": "^19.2.7"
},
"packageManager": "pnpm@10.34.3+sha256.1c40544020a2e633068ed43a98eb5c0fed7d64a1c6d6f2382e43df91419dad62",
"pnpm": {
"onlyBuiltDependencies": []
}
}