forked from frinyvonnick/node-html-to-image
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.13 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
{
"name": "node-html-to-image",
"version": "3.12.0",
"description": "A Node.js library that generates images from HTML",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "[email protected]:frinyvonnick/node-html-to-image.git",
"author": "FRIN Yvonnick <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"handlebars": "^4.5.3",
"puppeteer": "^15.3.0",
"puppeteer-cluster": "^0.23.0"
},
"scripts": {
"test": "jest",
"lint": "eslint ./src",
"build": "tsc"
},
"files": ["dist/**"],
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^28.1.4",
"@types/node": "^16.11.43",
"@types/puppeteer": "^5.4.6",
"@types/puppeteer-core": "^5.4.0",
"@typescript-eslint/eslint-plugin": "^5.30.4",
"@typescript-eslint/parser": "^5.30.4",
"eslint": "^8.19.0",
"gitmoji-changelog": "2.3.0",
"jest": "^28.1.2",
"jest-circus": "^28.1.2",
"puppeteer-core": "^15.3.0",
"rimraf": "^3.0.2",
"tesseract.js": "^2.1.5",
"typescript": "^4.7.4"
}
}