UNPKG

@maistik/nuxt-pdf

Version:

A Nuxt 3 & 4 module for server-side PDF generation using Handlebars templates

63 lines 1.75 kB
{ "name": "@maistik/nuxt-pdf", "version": "1.1.5", "description": "A Nuxt 3 & 4 module for server-side PDF generation using Handlebars templates", "type": "module", "private": false, "main": "./dist/module.mjs", "files": [ "dist" ], "engines": { "node": ">=22.0.0" }, "dependencies": { "@nuxt/kit": "^4.4.8", "handlebars": "^4.7.9", "puppeteer": "^25.1.0", "form-data": "^4.0.6" }, "devDependencies": { "@nuxt/devtools": "latest", "@nuxt/eslint-config": "^1.16.0", "@nuxt/module-builder": "^1.0.2", "@nuxt/schema": "^4.4.8", "@nuxt/test-utils": "^4.0.3", "@playwright/test": "^1.60.0", "changelogen": "^0.6.2", "eslint": "^10.5.0", "nuxt": "^4.4.8", "unbuild": "^3.6.1", "vitest": "^4.1.8" }, "keywords": [ "nuxt", "nuxt3", "nuxt4", "pdf", "handlebars", "gotenberg", "browserless", "puppeteer" ], "author": "Maistik Studio", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/Maistik-Studio/nuxt-pdf" }, "scripts": { "build": "nuxt-module-build prepare && nuxt-module-build build", "dev": "nuxi dev playground", "dev:build": "nuxi build playground", "dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground", "release": "npm run lint && npm run test:unit && npm run prepack && changelogen --release && npm publish --access public && git push --follow-tags", "lint": "eslint .", "lint:fix": "eslint . --fix", "test": "vitest run && playwright test", "test:watch": "vitest watch", "test:unit": "vitest run", "test:e2e": "playwright test", "test:e2e:ui": "playwright test --ui" } }