-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
38 lines (38 loc) · 881 Bytes
/
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
{
"name": "@iamdual/html2pdf",
"version": "1.5.0",
"description": "HTML to PDF converter",
"scripts": {
"clean": "rimraf ./dist",
"build": "tsc",
"test": "mocha ./dist/test",
"start": "node ./dist/src/rest-api"
},
"bin": {
"html2pdf": "./dist/bin/html2pdf.js"
},
"author": "Ekin Karadeniz <iamdual@icloud.com>",
"homepage": "https://github.com/iamdual/html2pdf",
"repository": {
"type": "git",
"url": "https://github.com/iamdual/html2pdf"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/iamdual"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@types/express": "^4.17.21",
"express": "^4.19.2",
"puppeteer": "^23.6.0",
"rimraf": "^6.0.1",
"typescript": "^5.5.4",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/mocha": "^10.0.7",
"mocha": "^10.7.0"
}
}