-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.85 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
65
66
67
68
69
70
71
72
73
{
"name": "@alexstep/doc-extract",
"version": "0.1.5",
"description": "Native document text extraction for Node.js and Bun (PDF, Office, EPUB, and more)",
"license": "MIT",
"type": "commonjs",
"main": "doc-extract.js",
"types": "doc-extract.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/alexstep/doc-extract.git"
},
"keywords": [
"napi-rs",
"pdf",
"docx",
"text-extraction",
"rust",
"native"
],
"files": [
"doc-extract.js",
"doc-extract.d.ts",
"index.js",
"index.d.ts",
"README.md",
"LICENSE"
],
"scripts": {
"artifacts": "napi artifacts",
"build": "napi build --platform --release",
"build:debug": "napi build --platform",
"cargo:test": "cargo test",
"prepublishOnly": "napi create-npm-dirs && napi prepublish -t npm --no-gh-release",
"test": "bun test",
"demo": "node scripts/demo-server.mjs",
"test:wasi": "node scripts/test-wasi.cjs",
"test:show": "bun test __tests__/show-extract.test.ts",
"version": "napi version"
},
"devDependencies": {
"@emnapi/core": "^1.10.0",
"@emnapi/runtime": "^1.10.0",
"@napi-rs/cli": "^3.7.0",
"@napi-rs/wasm-runtime": "^1.1.4",
"@types/bun": "^1.3.3",
"fflate": "^0.8.2"
},
"napi": {
"binaryName": "doc-extract",
"targets": [
"x86_64-pc-windows-msvc",
"i686-pc-windows-msvc",
"aarch64-pc-windows-msvc",
"x86_64-apple-darwin",
"aarch64-apple-darwin",
"x86_64-unknown-linux-gnu",
"x86_64-unknown-linux-musl",
"aarch64-unknown-linux-gnu",
"aarch64-unknown-linux-musl",
"armv7-unknown-linux-gnueabihf",
"x86_64-unknown-freebsd",
"wasm32-wasip1-threads"
]
},
"engines": {
"node": ">= 18"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}