-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.6 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "reepub",
"version": "1.1.0",
"description": "Scanned PDFs, web pages and broken EPUBs into clean, reflowable EPUB3 that passes official epubcheck at zero errors. Apple Vision OCR on your own Mac, and the OCR ships as its own CLI. 100% offline.",
"main": "src/builder.js",
"license": "MIT",
"author": "CVER Inc.",
"homepage": "https://github.com/CVERInc/reepub",
"repository": {
"type": "git",
"url": "https://github.com/CVERInc/reepub.git"
},
"bugs": {
"url": "https://github.com/CVERInc/reepub/issues"
},
"keywords": [
"epub",
"epub3",
"pdf-to-epub",
"ocr",
"ocr-cli",
"vision",
"apple-vision",
"scanned-pdf",
"ebook",
"epubcheck",
"macos",
"swift",
"offline",
"cjk",
"vertical-writing",
"zh-hant"
],
"os": [
"darwin"
],
"scripts": {
"app": "bash macos/build-app.sh",
"build": "make build",
"ocr": "./bin/scan-ocr",
"convert": "node src/builder.js",
"start": "node src/server.js",
"merge": "node src/merge.js",
"heal": "node src/heal.js",
"validate": "node src/validator.js",
"epubcheck": "node scripts/fetch-epubcheck.mjs",
"pretest": "node scripts/fetch-epubcheck.mjs",
"test": "node src/test-validation.js && node src/test-builder.js && npm run test:spec",
"test:spec": "node src/test-web-spec.js && node src/test-epub-conformance.js && node src/test-core-spec.js",
"readiness": "node scripts/check-release-readiness.mjs"
},
"devDependencies": {
"playwright": "^1.62.1"
},
"dependencies": {
"cheerio": "^1.2.0",
"sharp": "^0.35.3"
}
}