-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 973 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 973 Bytes
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
{
"name": "xtract-txt",
"version": "0.1.0",
"description": "An image to text package with tesseract.",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "tsx src/test"
},
"keywords": [
"Text Extractor",
"Image to text",
"For facebook bots",
"Tesseract.js projects"
],
"author": "RyannKim327",
"license": "MIT",
"dependencies": {
"ansi-colors": "^4.1.3",
"cli-progress": "^3.11.2",
"jimp": "^1.6.0",
"tesseract.js": "^3.0.3"
},
"devDependencies": {
"@types/cli-progress": "^3.11.6",
"@types/node": "^22.15.29",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RyannKim327/image-to-text.git"
},
"bugs": {
"url": "https://github.com/RyannKim327/image-to-text/issues"
},
"homepage": "https://github.com/RyannKim327/image-to-text#readme"
}