-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 1.97 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 1.97 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@tuchsoft/ocrideu",
"version": "1.1.5",
"description": "Optical Character Recognition for Identity Document of the European Union",
"license": "GPL-3.0-only",
"main": "dist/index.js",
"exports": {
".": "./dist/index.js"
},
"publishConfig": {
"access": "public"
},
"type": "module",
"types": "dist/index.d.ts",
"homepage": "https://tuchsoft.com/",
"author": {
"name": "Mattia Bonzi",
"email": "mattia@mattiabonzi.it",
"url": "https://tuchsoft.com"
},
"repository": {
"type": "git",
"url": "https://github.com/tuchsoft/ocrideu.git"
},
"bugs": {
"url": "https://github.com/tuchsoft/ocrideu/issues"
},
"scripts": {
"build:js": "babel src --out-dir dist",
"build:types": "tsc --emitDeclarationOnly",
"build": "npm run build:js && npm run build:types",
"start": "node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"deploy": "npm run build && npm publish"
},
"files": [
"dist",
"resources/ocrb.traineddata"
],
"dependencies": {
"@ericblade/quagga2": "1.7.1",
"@jtkkempower/opencv-js": "^4.11.2-release.1",
"@zxing/library": "^0.21.3",
"buffer-crc32": "^1.0.0",
"deepmerge": "^4.3.1",
"file-type": "^21.1.0",
"mrz": "^4.2.1",
"sharp": "^0.34.5",
"tesseract.js": "^6"
},
"devDependencies": {
"@babel/cli": "^7.28.3",
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@types/node": "^20.0.0",
"typescript": "^5.9.3"
},
"keywords": [
"ocr",
"mrz",
"id",
"passport",
"document",
"eu",
"european union",
"identity",
"recognition",
"extraction",
"data extraction",
"parsing",
"verification",
"scanning",
"barcode",
"qr",
"ID card",
"digital identity",
"document verification",
"document parser",
"IDV",
"eIDAS",
"CIE",
"DNIe",
"CNIe",
"eID",
"CC",
"ID-kaart",
"ATK",
"e-DO",
"eOI"
]
}