-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 951 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 951 Bytes
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
{
"name": "web2pdf",
"version": "0.0.3",
"description": "A CLI running in docker to export HTMLs into a PDF file.",
"main": "index.ts",
"type": "module",
"scripts": {
"start": "tsx index.ts"
},
"engines": {
"node": ">=22.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/allape/web2pdf.git"
},
"keywords": [
"pdf",
"html2pdf",
"web2pdf"
],
"author": "allape",
"license": "MIT",
"bugs": {
"url": "https://github.com/allape/web2pdf/issues"
},
"homepage": "https://github.com/allape/web2pdf#readme",
"devDependencies": {
"@eslint/js": "^9.14.0",
"@types/prompts": "^2.4.9",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.12.0",
"prettier": "^3.3.3",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0"
},
"dependencies": {
"arg": "^5.0.2",
"puppeteer": "^23.7.0"
}
}