-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.5 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
{
"name": "mkpdf",
"version": "1.1.1-wip",
"description": "🖨️ CLI & TypeScript API to \"print\" (convert) given URL/HTML/Markdown into a PDF, using Google's Chrome & puppeteer",
"keywords": [
"pdf",
"pdf-generation",
"headless-chrome",
"puppeteer",
"pdf-print",
"html-to-pdf",
"url-to-pdf"
],
"author": "Dr. Juan Miguel Cejuela",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/juanmirocks/mkpdf.git"
},
"files": [
"dist/",
"NOTICE"
],
"private": false,
"type": "commonjs",
"source": "src/cli.ts",
"main": "dist/cli.js",
"scripts": {
"clean": "rm dist/* 2> /dev/null || true",
"dist_license_files_to_workspaces": "for dir in plugins/*; do cp LICENSE NOTICE $dir/; done",
"_prod": "parcel build",
"prod": "npm run clean; npm run _prod; npm run dist_license_files_to_workspaces",
"check": "tsc --noEmit",
"check-watch": "npm run check -- -watch",
"lint": "eslint . --fix",
"test": "jest",
"test-watch": "jest --watch"
},
"dependencies": {
"puppeteer": ">=18.x <=19.x"
},
"devDependencies": {
"@parcel/transformer-typescript-tsc": "^2.8.3",
"@tsconfig/recommended": "^1.0.2",
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^8.38.0",
"jest": "^29.5.0",
"parcel": "^2.8.3",
"ts-jest": "^29.1.0",
"typescript": "^4.9.5"
},
"workspaces": [
"plugins/*"
]
}