-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.35 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "@jigs1996/node-pdfgen",
"version": "1.0.2",
"description": "Easily convert web pages and HTML content into polished PDFs with @jigs1996/node-pdfgen, supporting public/private URLs and local HTML files with customizable headers, footers, watermarks, dynamic page sizes, and robust error handling.",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "tsc",
"lint": "eslint \"src/*.ts\"",
"lint:fix": "eslint \"src/*.ts\" --fix",
"prettier": "prettier --write 'src/*.{js,ts,json,md}'",
"format": "npm run prettier && npm run lint:fix",
"prod": "npm run format && npm run build"
},
"keywords": [
"node",
"html",
"pdf"
],
"author": "Jignesh Sanghani",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.14.9",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.3.2",
"standard": "^17.1.0",
"typescript": "^5.5.3"
},
"files": [
"dist"
],
"dependencies": {
"puppeteer": "^22.12.1"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=9.0.0"
}
}