-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 870 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 870 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
32
{
"name": "ia2audio",
"version": "0.1.0",
"private": false,
"license": "Apache-2.0",
"description": "Internet Archive → OCR (OpenAI Vision) → Markdown → TXT/EPUB → Edge TTS → M4B",
"type": "module",
"packageManager": "pnpm@9.12.2",
"engines": {
"node": ">=18"
},
"scripts": {
"playwright:install": "npx playwright install chromium",
"capture": "tsx src/extract-ia-book.ts",
"ocr": "tsx src/transcribe-book-content.ts",
"export": "tsx src/export-book-markdown.ts",
"all": "pnpm capture && pnpm ocr && pnpm export",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"delay": "^6.0.0",
"dotenv": "^16.4.5",
"globby": "^14.0.2",
"openai-fetch": "3.4.2",
"playwright": "^1.47.0",
"tsx": "^4.19.0"
},
"devDependencies": {
"typescript": "^5.6.2",
"@types/node": "^20.14.12"
}
}