@iqx-limited/quick-pdf
Version:
Converting PDFs to images (📃 to 📸)
76 lines (75 loc) • 2 kB
JSON
{
"name": "@iqx-limited/quick-pdf",
"version": "1.9.1",
"author": "IQX",
"description": "Converting PDFs to images (📃 to 📸)",
"type": "module",
"license": "MIT",
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"types": "dist/types/index.d.ts",
"keywords": [
"pdf",
"jpeg",
"html",
"png",
"webp",
"img",
"pdf-to-img",
"pdf-to-png",
"pdf-to-jpeg",
"html-to-pdf"
],
"repository": "https://github.com/IQXLimited/quickpdf",
"scripts": {
"build": "npm ci --no-audit && rollup -c",
"lint": "npx --yes eslint",
"test": "npm run build && npm run test:cjs && npm run test:esm && npm run test:firefox",
"test:esm": "npm run build && node test/test-esm.mjs",
"test:cjs": "npm run build && node test/test-cjs.cjs",
"test:firefox": "npm run build && node test/browser/test-dangling-firefox.mjs"
},
"engines": {
"node": ">=20.0.0"
},
"engineStrict": true,
"dependencies": {
"file-type": "^21.3.0",
"html-validate": "^10.6.0",
"image-size": "^2.0.2",
"path2d-polyfill": "^3.2.1",
"pdfkit": "^0.17.2",
"puppeteer": "^24.35.0",
"rollup-plugin-node-externals": "^8.1.2",
"semver": "^7.7.3"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"@stylistic/eslint-plugin": "^5.7.0",
"@types/node": "^25.0.9",
"@types/pdfkit": "^0.17.4",
"@types/semver": "^7.7.1",
"eslint": "^9.39.2",
"rollup": "^4.55.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.1"
},
"volta": {
"node": "24.13.0"
}
}