-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
40 lines (40 loc) · 1.16 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": "jspdf-html2canvas",
"version": "1.5.2",
"description": "A combine usage with jsPDF and html2canvas, which translating html content to PDF file.",
"main": "dist/jspdf-html2canvas.min.js",
"module": "dist/jspdf-html2canvas.min.js",
"scripts": {
"prebuild": "rm -rf ./dist",
"dev": "cross-env NODE_ENV=development webpack --mode development --watch",
"build": "cross-env NODE_ENV=production webpack --mode production",
"ci": "yarn install --immutable --immutable-cache --check-cache"
},
"repository": {
"type": "git",
"url": "git+https://github.com/johnnywang1994/jsPDF-html2canvas.git"
},
"keywords": [
"npm",
"jsPDF",
"html2canvas"
],
"author": "johnnywang",
"license": "ISC",
"bugs": {
"url": "https://github.com/johnnywang1994/jsPDF-html2canvas/issues"
},
"homepage": "https://github.com/johnnywang1994/jsPDF-html2canvas#readme",
"types": "dist/index.d.ts",
"dependencies": {
"html2canvas": "^1.4.1",
"jspdf": "^2.5.1"
},
"devDependencies": {
"cross-env": "^7.0.2",
"ts-loader": "^9.4.4",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
}
}