-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.04 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.04 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
{
"name": "@pspdfkit/pdf-to-markdown",
"version": "0.1.0",
"description": "Standalone CLI wrapper for Nutrient's PDF-to-Markdown extractor",
"bin": {
"pdf-to-markdown": "bin/pdf-to-markdown"
},
"files": [
"bin",
"docs/benchmarks.md",
"docs/distribution-model.md",
"README.md",
"LICENSE.md",
"install.sh"
],
"scripts": {
"check": "sh -n ./install.sh && sh -n ./bin/pdf-to-markdown",
"pack:dry-run": "npm pack --dry-run"
},
"os": [
"darwin",
"linux"
],
"cpu": [
"x64",
"arm64"
],
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"pdf",
"markdown",
"cli",
"nutrient",
"pspdfkit",
"document-processing"
],
"repository": {
"type": "git",
"url": "git+https://github.com/PSPDFKit/pdf-to-markdown.git"
},
"homepage": "https://github.com/PSPDFKit/pdf-to-markdown#readme",
"bugs": {
"url": "https://github.com/PSPDFKit/pdf-to-markdown/issues"
},
"publishConfig": {
"access": "public"
},
"license": "SEE LICENSE IN LICENSE.md"
}