-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.71 KB
/
package.json
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
{
"name": "scribe.js-ocr",
"version": "0.3.1",
"description": "High-quality OCR and text extraction for images and PDFs.",
"main": "scribe.js",
"directories": {
"lib": "lib"
},
"type": "module",
"devDependencies": {
"@playwright/test": "^1.40.1",
"@types/mocha": "^10.0.7",
"@types/node": "^18.0.6",
"@types/opentype.js": "^1.3.8",
"chai": "^5.1.1",
"documentation": "^14.0.3",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"express": "^4.18.2",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-firefox-launcher": "^2.1.3",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"mocha": "^10.6.0",
"npm-run-all": "^4.1.5",
"wait-on": "^7.2.0"
},
"scripts": {
"docs": "documentation build scribe.js -f md --access public > docs/API.md",
"start": "node tests/scripts/server.js",
"stop": "curl http://localhost:3031/shutdown",
"test": "npm-run-all test:cli test:module",
"test:module:browser": "karma start karma.conf.cjs",
"test:module:node": "mocha tests/module/*.js",
"test:module": "npm-run-all -p test:module:browser test:module:node",
"test:cli": "mocha tests/cli",
"wait": "wait-on http://localhost:3031/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scribeocr/scribe.js"
},
"author": "Balearica",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/scribeocr/scribe.js/issues"
},
"homepage": "https://github.com/scribeocr/scribe.js#readme",
"dependencies": {
"canvas": "^2.11.2",
"commander": "^11.1.0",
"puppeteer": "^22.13.0",
"@scribe.js/tesseract.js": "^5.1.2"
}
}