thinkpdf 1.0.4 → 1.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -9,11 +9,11 @@ Read directly into memory or save as Markdown.
9
9
  ## Install
10
10
 
11
11
  ```bash
12
- npm install -g thinkpdf
12
+ npx thinkpdf # run without installing
13
+ npm i thinkpdf # install locally
14
+ npm i -g thinkpdf # install globally
13
15
  ```
14
16
 
15
- This will automatically install the Python package via pip.
16
-
17
17
  ## Quick Start
18
18
 
19
19
  ```bash
package/bin/thinkpdf.js CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env node
1
+ #!/usr/bin/env node
2
2
 
3
3
  const { spawnSync } = require('child_process');
4
4
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "thinkpdf",
3
- "version": "1.0.4",
3
+ "version": "1.0.6",
4
4
  "description": "NPM wrapper for thinkpdf - The PDF to Markdown converter for LLMs",
5
5
  "bin": {
6
6
  "thinkpdf": "./bin/thinkpdf.js"
@@ -11,10 +11,14 @@
11
11
  "keywords": [
12
12
  "pdf",
13
13
  "markdown",
14
+ "rag",
14
15
  "llm",
15
16
  "ai",
16
- "converter",
17
- "wrapper"
17
+ "ocr",
18
+ "tables",
19
+ "text-extraction",
20
+ "document",
21
+ "parser"
18
22
  ],
19
23
  "author": "Augusto Cesar Perin",
20
24
  "license": "AGPL-3.0",
@@ -23,4 +27,4 @@
23
27
  "url": "https://github.com/augustocesarperin/thinkpdf"
24
28
  },
25
29
  "homepage": "https://pypi.org/project/thinkpdf/"
26
- }
30
+ }