forked from firecrawl/anydoc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.47 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
{
"name": "@firecrawl/anydoc",
"version": "0.1.7",
"description": "Convert documents (doc, docx, odt, rtf, epub, pdf, presentations, spreadsheets, csv) to GitHub-Flavored Markdown",
"license": "MIT",
"homepage": "https://github.com/firecrawl/anydoc#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/firecrawl/anydoc.git",
"directory": "node"
},
"bugs": {
"url": "https://github.com/firecrawl/anydoc/issues"
},
"keywords": [
"markdown",
"docx",
"pdf",
"pptx",
"xlsx",
"epub",
"converter",
"document"
],
"main": "index.js",
"types": "index.d.ts",
"bin": {
"anydoc": "cli.js"
},
"files": [
"index.js",
"index.d.ts",
"cli.js",
"README.md"
],
"engines": {
"node": ">= 20"
},
"napi": {
"binaryName": "anydoc",
"packageName": "@firecrawl/anydoc",
"dtsHeaderFile": "dts-header.d.ts",
"targets": [
"x86_64-apple-darwin",
"aarch64-apple-darwin",
"x86_64-unknown-linux-gnu",
"aarch64-unknown-linux-gnu",
"x86_64-unknown-linux-musl",
"aarch64-unknown-linux-musl",
"x86_64-pc-windows-msvc"
]
},
"scripts": {
"artifacts": "napi artifacts",
"build": "napi build --platform --release",
"build:debug": "napi build --platform",
"prepublishOnly": "napi prepublish -t npm --no-gh-release",
"test": "node --test",
"version": "napi version"
},
"devDependencies": {
"@napi-rs/cli": "^3.8.2"
}
}