-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
32 lines (32 loc) · 1.04 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
{
"name": "@gutenye/ocr-node",
"description": "Guten OCR is a high accurate text detection (OCR) Javascript/Typescript library that runs on Node.js, Browser, React Native and C++. Based on PaddleOCR and ONNX runtime",
"keywords": ["ocr", "paddleocr", "typescript", "onnxruntime", "node"],
"version": "1.3.0",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gutenye/ocr.git",
"directory": "packages/node"
},
"exports": {
"bun": "./src/index.ts",
"node": "./build/index.js",
"react-native": "./src/index.ts",
"default": "./src/index.ts"
},
"files": ["src", "build", "tsconfig.json", "!**/__tests__"],
"scripts": {
"prepublishOnly": "cp ../../README.md . && ./ake build",
"postpublish": "rm README.md && rm -rf build"
},
"dependencies": {
"@gutenye/ocr-common": "^1.2.0",
"@gutenye/ocr-models": "^1.2.2",
"@techstark/opencv-js": "^4.9.0-release.3",
"js-clipper": "^1.0.1",
"onnxruntime-node": "^1.17.3-rev.1",
"sharp": "^0.33.3"
}
}