forked from getomni-ai/zerox
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.3 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.3 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
{
"name": "@zamanapp/hadid",
"version": "1.8.0",
"description": "OCR documents using OpenAI, Claude, Azure, and Google. Forked from @getomni-ai/zerox",
"main": "node-hadid/dist/index.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rm -rf node-hadid/dist",
"build": "npm run clean && tsc --noEmitOnError false -p node-hadid/tsconfig.json",
"postinstall": "node node-hadid/scripts/install-dependencies.js",
"prepublishOnly": "npm run build",
"test": "ts-node node-hadid/tests/index.ts",
"claude-test": "ts-node node-hadid/tests/claude-test.ts",
"test:performance": "jest node-hadid/tests/performance.test.ts --runInBand"
},
"author": "tylermaran",
"license": "MIT",
"dependencies": {
"@anthropic-ai/sdk": "^0.41.0",
"@aws-sdk/client-bedrock-runtime": "^3.734.0",
"@google/genai": "^0.9.0",
"@langchain/textsplitters": "^0.1.0",
"@types/file-type": "^10.9.3",
"axios": "^1.7.2",
"child_process": "^1.0.2",
"file-type": "^16.5.4",
"fs-extra": "^11.2.0",
"heic-convert": "^2.1.0",
"libreoffice-convert": "^1.6.0",
"mime-types": "^2.1.35",
"openai": "^4.82.0",
"os": "^0.1.2",
"p-limit": "^3.1.0",
"path": "^0.12.7",
"pdf-parse": "^1.1.1",
"pdf2pic": "^3.1.1",
"sharp": "^0.33.5",
"tesseract.js": "^5.1.1",
"util": "^0.12.5",
"uuid": "^11.0.3",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/fs-extra": "^11.0.4",
"@types/heic-convert": "^2.1.0",
"@types/jest": "^29.5.14",
"@types/mime-types": "^2.1.4",
"@types/node": "^20.14.11",
"@types/pdf-parse": "^1.1.4",
"@types/prompts": "^2.4.9",
"@types/xlsx": "^0.0.35",
"dotenv": "^16.4.5",
"jest": "^29.7.0",
"prompts": "^2.4.2",
"semantic-release": "^22.0.12",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
},
"packageManager": "pnpm@8.15.3",
"repository": {
"type": "git",
"url": "git+https://github.com/zamanapp/hadid.git"
},
"keywords": [
"ocr",
"document",
"llm"
],
"types": "node-hadid/dist/index.d.ts",
"bugs": {
"url": "https://github.com/zamanapp/hadid/issues"
},
"homepage": "https://github.com/zamanapp/hadid#readme"
}