forked from getomni-ai/zerox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.49 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
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
{
"name": "zerox",
"version": "1.0.41",
"description": "ocr documents using gpt-4o-mini",
"main": "node-zerox/dist/index.js",
"scripts": {
"build": "tsc -p node-zerox/tsconfig.json",
"postinstall": "node node-zerox/scripts/install-dependencies.js",
"prepublishOnly": "npm run build",
"test": "ts-node node-zerox/tests/index.ts",
"test:performance": "jest node-zerox/tests/performance.test.ts --runInBand"
},
"author": "tylermaran",
"license": "MIT",
"dependencies": {
"axios": "^1.7.2",
"child_process": "^1.0.2",
"fs-extra": "^11.2.0",
"libreoffice-convert": "^1.6.0",
"mime-types": "^2.1.35",
"os": "^0.1.2",
"p-limit": "^3.1.0",
"path": "^0.12.7",
"pdf2pic": "^3.1.1",
"sharp": "^0.33.5",
"tesseract.js": "^5.1.1",
"util": "^0.12.5",
"uuid": "^11.0.3"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.14",
"@types/mime-types": "^2.1.4",
"@types/node": "^20.14.11",
"@types/prompts": "^2.4.9",
"dotenv": "^16.4.5",
"jest": "^29.7.0",
"prompts": "^2.4.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/getomni-ai/zerox.git"
},
"keywords": [
"ocr",
"document",
"llm"
],
"types": "node-zerox/dist/index.d.ts",
"bugs": {
"url": "https://github.com/getomni-ai/zerox/issues"
},
"homepage": "https://github.com/getomni-ai/zerox#readme"
}