UNPKG

@surgbc/egw-pdf-generator

Version:

PDF generator for EGW Writings with configurable formatting and pagination

62 lines 1.52 kB
{ "name": "@surgbc/egw-pdf-generator", "version": "1.0.0", "description": "PDF generator for EGW Writings with configurable formatting and pagination", "main": "dist/index.js", "bin": { "egw-pdf-generator": "dist/index.js" }, "type": "module", "license": "MIT", "private": false, "publishConfig": { "access": "public" }, "repository": { "type": "git", "url": "https://github.com/gospelsounders/egw-writings-mcp.git", "directory": "packages/egw-pdf-generator" }, "author": { "name": "Brian Onango", "url": "https://github.com/surgbc" }, "homepage": "https://github.com/gospelsounders/egw-writings-mcp#readme", "bugs": { "url": "https://github.com/gospelsounders/egw-writings-mcp/issues" }, "keywords": [ "egw", "ellen-white", "writings", "pdf", "generator", "books", "research", "educational" ], "dependencies": { "@surgbc/egw-writings-shared": "^1.0.0", "commander": "^11.0.0", "pdf-lib": "^1.17.1", "puppeteer": "^22.0.0", "handlebars": "^4.7.8", "dotenv": "^16.0.0" }, "devDependencies": { "@types/node": "^20.0.0", "@typescript-eslint/eslint-plugin": "^6.0.0", "@typescript-eslint/parser": "^6.0.0", "eslint": "^8.0.0", "rimraf": "^5.0.0", "tsx": "^4.0.0", "typescript": "^5.0.0" }, "scripts": { "build": "tsc", "start": "node dist/index.js", "dev": "tsx src/index.ts", "clean": "rimraf dist", "lint": "eslint src/ --ext .ts" } }