Skip to content

Commit

Permalink
feat: pdf conversion utils
Browse files Browse the repository at this point in the history
  • Loading branch information
arshad-yaseen committed Nov 10, 2024
1 parent fd6cda8 commit 8290062
Show file tree
Hide file tree
Showing 18 changed files with 60,937 additions and 989 deletions.
19 changes: 14 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,25 @@
"name": "ocr-llm",
"version": "0.3.12",
"description": "Fast, ultra-accurate text extraction from any image or PDF, even challenging ones, with structured markdown output powered by vision models.",
"main": "./build/index.js",
"module": "./build/index.mjs",
"types": "./build/index.d.ts",
"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 src/index.ts",
"dev": "tsup src/index.ts --watch",
"build": "tsup",
"dev": "tsup --watch",
"dev:website": "pnpm -C website dev",
"test": "vitest",
"tsc": "tsc --noEmit",
Expand Down
Loading

0 comments on commit 8290062

Please sign in to comment.