pdfile
Version:
PDFile is a Node.js library for generating high-quality, dynamic PDFs using Handlebars templates and Puppeteer. It supports multi-page PDFs and offers full customization. Perfect for web developers, it enables easy creation of multi-page PDFs by simply de
67 lines (66 loc) • 1.66 kB
JSON
{
"version": "1.0.0",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=18"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint",
"prepare": "tsdx build"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "pdfile",
"module": "dist/pdfile.esm.js",
"description": "PDFile is a Node.js library for generating high-quality, dynamic PDFs using Handlebars templates and Puppeteer. It supports multi-page PDFs and offers full customization. Perfect for web developers, it enables easy creation of multi-page PDFs by simply designing HTML templates for output.",
"author": "Afsarul Islam Meraj <afsarulislammeraj4@gmail.com> (https://github.com/aim3r4j)",
"repository": {
"type": "git",
"url": "git+https://github.com/aim3r4j/pdfile.git"
},
"keywords": [
"pdf-generator",
"pdf",
"pdf-view",
"multi-page-pdf",
"dynamic-pdf",
"puppeteer-pdf",
"easy-pdf",
"handlebars"
],
"bugs": {
"url": "https://github.com/aim3r4j/pdfile/issues"
},
"homepage": "https://github.com/aim3r4j/pdfile#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"husky": "^8.0.2",
"jest": "^24.9.0",
"tsdx": "^0.14.1",
"tslib": "^2.4.1",
"typescript": "^3.9.10"
},
"dependencies": {
"fs": "^0.0.1-security",
"handlebars": "^4.7.8",
"puppeteer": "^18.1.0"
}
}