-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.91 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "ocr-llm",
"version": "0.4.9",
"description": "Fast, ultra-accurate text extraction from any image or PDF, even challenging ones, with structured markdown output powered by vision models.",
"exports": {
".": {
"types": "./build/index.d.mts",
"import": "./build/index.mjs",
"require": "./build/index.js"
},
"./browser": {
"types": "./build/browser.d.mts",
"import": "./build/browser.mjs",
"require": "./build/browser.js"
}
},
"files": [
"build",
"scripts"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"dev:website": "pnpm -C website dev",
"test": "vitest",
"tsc": "tsc --noEmit",
"lint": "eslint . --ext .ts,.tsx --fix",
"format": "prettier --write .",
"validate": "pnpm build && pnpm format && pnpm tsc && pnpm lint",
"release": "release-it",
"prepare": "husky",
"postinstall": "node scripts/install-image-processors.js"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@ianvs/prettier-plugin-sort-imports": "^4.2.1",
"@release-it/conventional-changelog": "^8.0.2",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"eslint": "^8.57.0",
"husky": "^9.1.6",
"openai": "^4.60.1",
"prettier": "^3.2.5",
"release-it": "^17.6.0",
"tsup": "^8.0.2",
"typescript": "^5.4.3",
"vitest": "^2.0.5"
},
"keywords": [
"ocr",
"llm",
"text",
"recognition"
],
"repository": {
"type": "git",
"url": "git+https://github.com/arshad-yaseen/ocr-llm.git"
},
"maintainers": [
{
"name": "Arshad Yaseen",
"email": "[email protected]",
"url": "https://arshadyaseen.com"
}
],
"license": "MIT",
"author": "Arshad Yaseen <[email protected]> (https://arshadyaseen.com)",
"dependencies": {
"pdf-lib": "^1.17.1",
"pdf2pic": "^3.1.3",
"pdfjs-dist": "^4.8.69"
}
}