@iqx-limited/quick-pdf 1.0.18 → 1.0.19

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.
Files changed (2) hide show
  1. package/README.md +1 -0
  2. package/package.json +2 -3
package/README.md CHANGED
@@ -13,6 +13,7 @@ This project provides a set of utilities for converting various file formats wit
13
13
  ## Requirements
14
14
 
15
15
  - **Node.js**: This project is built with Node.js and uses ES modules. NodeJS > v22 required.
16
+ - Chromium is a dependency of this project, used via Playwright. To install browsers via cli run `npx playwright install --with-deps chromium`.
16
17
 
17
18
  # Operations Available in the Package
18
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iqx-limited/quick-pdf",
3
- "version": "1.0.18",
3
+ "version": "1.0.19",
4
4
  "author": "IQX",
5
5
  "description": "Converting PDFs to images (📃 to 📸)",
6
6
  "type": "module",
@@ -27,8 +27,7 @@
27
27
  "scripts": {
28
28
  "build": "npm i && npx tsc --build",
29
29
  "lint": "npx --yes eslint",
30
- "test": "npx --yes tsx test.ts",
31
- "postinstall": "node dist/install-playwright.js"
30
+ "test": "npx --yes tsx test.ts"
32
31
  },
33
32
  "engines": {
34
33
  "node": ">=22.0.0"