-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.44 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.44 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": "multilingual-purejs-ocr",
"version": "1.0.1",
"description": "Pure JavaScript OCR library with multilingual support using ONNX Runtime Node - no Python dependencies required!",
"main": "index.js",
"type": "module",
"scripts": {
"test": "node example.js",
"example:basic": "node example.js --basic",
"example:advanced": "node example.js --advanced"
},
"keywords": [
"ocr",
"optical-character-recognition",
"text-detection",
"text-recognition",
"paddleocr",
"multilingual",
"javascript",
"nodejs",
"computer-vision",
"image-processing",
"onnx",
"onnxruntime-node",
"pure-js",
"no-python"
],
"author": "Vraj Vyas <vyasvraj92@gmail.com>",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/VrajVyas11/Multilingual_PureJS_Based_OCR.git"
},
"bugs": {
"url": "https://github.com/VrajVyas11/Multilingual_PureJS_Based_OCR/issues"
},
"homepage": "https://github.com/VrajVyas11/Multilingual_PureJS_Based_OCR#readme",
"engines": {
"node": ">=14.0.0"
},
"files": [
"index.js",
"example.js",
"bs.jpeg",
"models/",
"README.md",
"LICENSE",
"types.d.ts"
],
"dependencies": {
"@techstark/opencv-js": "^4.9.0-release.3",
"js-clipper": "^1.0.1",
"onnxruntime-node": "^1.23.0",
"sharp": "^0.34.4",
"tiny-invariant": "^1.3.3"
},
"devDependencies": {},
"peerDependencies": {}
}