-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
41 lines (41 loc) · 1.08 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
{
"name": "puppeteer-report",
"version": "3.1.0",
"description": "create pdf report with header, footer and page number with puppeteer",
"main": "out/index.js",
"types": "out/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/PejmanNik/puppeteer-report"
},
"scripts": {
"build": "tsc",
"build-bundle": "rollup -c",
"example": "cd examples && npm update && ts-node index",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"puppeteer",
"pdf",
"report",
"page-number"
],
"author": "pejmanNikram",
"license": "MIT",
"dependencies": {
"pdf-lib": "^1.17.1"
},
"devDependencies": {
"@rollup/plugin-json": "^4.1.0",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"eslint": "^8.29.0",
"rollup": "^2.70.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"typescript": "^4.9.3",
"puppeteer-core": "^19.3.0"
}
}