@jackgreen2018/pdf-engine 1.0.86 → 1.0.88
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 +5 -9
- package/package.json +4 -3
- package/pkg/README.md +4 -4
- package/pkg/package.json +1 -1
package/README.md
CHANGED
|
@@ -114,22 +114,18 @@ npm run benchmark
|
|
|
114
114
|
|
|
115
115
|
| Operation | pdf-engine (ms) | pdf-lib (ms) |
|
|
116
116
|
|-----------|-----------------|--------------|
|
|
117
|
-
| Page Count | 0.
|
|
117
|
+
| Page Count | 0.77 | 1.55 |
|
|
118
118
|
| Text Extraction | 0.20 | — |
|
|
119
|
-
| Merge (2 files) |
|
|
120
|
-
| Split (pages [0,1]) | 0.20 |
|
|
119
|
+
| Merge (2 files) | 0.91 | 3.90 |
|
|
120
|
+
| Split (pages [0,1]) | 0.20 | 2.56 |
|
|
121
121
|
|
|
122
122
|
*extractText correctness: PASS — gated via `tests/fixtures/text-fixture.pdf` (FlateDecode-compressed, real-world content stream). v1.0.30 fixes extractText to return actual text instead of "No text extracted."*
|
|
123
123
|
|
|
124
|
-
*Run 2026-08-
|
|
124
|
+
*Run 2026-08-03 (v1.0.88); raw JSON at benchmark-results.json.*
|
|
125
125
|
|
|
126
126
|
## Commercial license & support
|
|
127
127
|
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
**[Buy the commercial license →](https://creem.io/product/prod_3ZlNAxFzbn9vwfT4Ho3OKJ)**
|
|
131
|
-
|
|
132
|
-
See [COMMERCIAL-LICENSE.md](./COMMERCIAL-LICENSE.md) for full terms. Team licenses, POs, or questions: `jackgreen2018+sponsors@gmail.com`.
|
|
128
|
+
For teams or organizations that need the package without MIT attribution obligations, or require a formal SLA, a commercial license is available. See [COMMERCIAL-LICENSE.md](./COMMERCIAL-LICENSE.md) for pricing and terms. To purchase, email `jackgreen2018+sponsors@gmail.com`.
|
|
133
129
|
|
|
134
130
|
## License
|
|
135
131
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jackgreen2018/pdf-engine",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.88",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -21,7 +21,8 @@
|
|
|
21
21
|
"scripts": {
|
|
22
22
|
"build": "wasm-pack build --target bundler && rm -f pkg/.gitignore && tsc",
|
|
23
23
|
"benchmark": "node benchmark.mjs",
|
|
24
|
-
"test": "node tests/smoke.js"
|
|
24
|
+
"test": "node tests/smoke.js",
|
|
25
|
+
"prepare": "npm run build"
|
|
25
26
|
},
|
|
26
27
|
"publishConfig": {
|
|
27
28
|
"access": "public"
|
|
@@ -58,4 +59,4 @@
|
|
|
58
59
|
"tslib": "^1.14.1",
|
|
59
60
|
"undici-types": "^8.3.0"
|
|
60
61
|
}
|
|
61
|
-
}
|
|
62
|
+
}
|
package/pkg/README.md
CHANGED
|
@@ -114,14 +114,14 @@ npm run benchmark
|
|
|
114
114
|
|
|
115
115
|
| Operation | pdf-engine (ms) | pdf-lib (ms) |
|
|
116
116
|
|-----------|-----------------|--------------|
|
|
117
|
-
| Page Count | 0.
|
|
117
|
+
| Page Count | 0.77 | 1.55 |
|
|
118
118
|
| Text Extraction | 0.20 | — |
|
|
119
|
-
| Merge (2 files) |
|
|
120
|
-
| Split (pages [0,1]) | 0.20 |
|
|
119
|
+
| Merge (2 files) | 0.91 | 3.90 |
|
|
120
|
+
| Split (pages [0,1]) | 0.20 | 2.56 |
|
|
121
121
|
|
|
122
122
|
*extractText correctness: PASS — gated via `tests/fixtures/text-fixture.pdf` (FlateDecode-compressed, real-world content stream). v1.0.30 fixes extractText to return actual text instead of "No text extracted."*
|
|
123
123
|
|
|
124
|
-
*Run 2026-08-
|
|
124
|
+
*Run 2026-08-03 (v1.0.88); raw JSON at benchmark-results.json.*
|
|
125
125
|
|
|
126
126
|
## Commercial license & support
|
|
127
127
|
|