-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.09 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.09 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
{
"name": "node-easyocr",
"version": "1.0.9",
"description": "A Node.js wrapper for the Python EasyOCR library",
"main": "dist/easyocr.js",
"types": "dist/easyocr.d.ts",
"scripts": {
"build": "tsc && npm run copy-files",
"copy-files": "copyfiles -u 1 src/**/*.py dist/",
"preinstall": "node setup-python-env.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"ocr",
"easyocr",
"optical-character-recognition",
"image-processing",
"text-extraction",
"document-analysis",
"python-wrapper",
"image-to-text"
],
"author": "VJ",
"license": "MIT",
"engines": {
"node": ">=12.0.0"
},
"devDependencies": {
"@types/node": "^14.14.31",
"copyfiles": "^2.4.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"repository": {
"type": "git",
"url": "https://github.com/techbyvj/node-easyocr.git"
},
"bugs": {
"url": "https://github.com/techbyvj/node-easyocr/issues"
},
"homepage": "https://github.com/techbyvj/node-easyocr#readme",
"files": [
"dist",
"setup-python-env.js"
]
}