-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.11 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
{
"name": "@xcrap/image-text-extractor",
"version": "0.0.5",
"description": "Xcrap Image Text Extractor is a package of the Xcrap framework that abstracts the extraction of texts from images using the node-tesseract-ocr library.",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/*",
"!/**/__tests__"
],
"scripts": {
"test": "jest",
"build": "tsc"
},
"keywords": [
"xcrap",
"extractor",
"web scraping",
"image text extractor"
],
"author": "Marcuth",
"license": "MIT",
"type": "commonjs",
"devDependencies": {
"@types/node": "^25.3.2",
"@xcrap/parser": "^0.2.4",
"jest": "^30.2.0",
"ts-jest": "^29.3.1",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"dependencies": {
"node-tesseract-ocr": "^2.2.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Xcrap-Cloud/image-text-extractor.git"
},
"bugs": {
"url": "https://github.com/Xcrap-Cloud/image-text-extractor/issues"
},
"homepage": "https://github.com/Xcrap-Cloud/image-text-extractor#readme"
}