-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
70 lines (70 loc) · 1.48 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@humanwhocodes/print-ready",
"version": "0.3.1",
"description": "Convert HTML to PDF",
"type": "module",
"main": "dist/print-ready.cjs",
"module": "dist/print-ready.js",
"types": "dist/print-ready.d.ts",
"bin": {
"print-ready": "dist/cli.js"
},
"exports": {
"require": "./dist/print-ready.cjs",
"import": "./dist/print-ready.js"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/nzakas"
},
"scripts": {
"build": "rollup -c && tsc",
"prepare": "npm run build",
"lint": "eslint src/ tests/",
"lint:fix": "eslint src/ tests/ --fix",
"pretest": "npm run build",
"test": "mocha tests/ --timeout 10000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/humanwhocodes/print-ready.git"
},
"keywords": [
"puppeteer",
"pdf",
"pagedjs"
],
"author": "Nicholas C. Zaks",
"license": "MIT",
"devDependencies": {
"@types/puppeteer": "5.4.7",
"chai": "4.3.6",
"eslint": "8.36.0",
"lint-staged": "10.5.4",
"mocha": "10.2.0",
"pdfjs-dist": "2.16.105",
"rollup": "3.20.2",
"typescript": "4.7.2",
"yorkie": "2.0.0"
},
"dependencies": {
"pagedjs": "^0.5.0-beta.0",
"pdf-lib": "^1.17.1",
"puppeteer": "^19.0.0",
"yargs": "^17.0.0"
}
}