-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.55 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.55 KB
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
{
"name": "pdf-made-easy",
"version": "1.0.1",
"type": "module",
"license": "Apache-2.0",
"author": "Matthew Espino",
"description": "A CLI application for building and developing PDF documents.",
"keywords": [
"cli",
"yaml",
"template",
"liquid",
"html",
"puppeteer",
"pdf",
"document"
],
"homepage": "https://github.com/mcecode/pdf-made-easy#readme",
"bugs": "https://github.com/mcecode/pdf-made-easy/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/mcecode/pdf-made-easy.git"
},
"files": [
"./cli.js",
"./index.js",
"./lib.js",
"./CHANGELOG.md"
],
"exports": "./index.js",
"bin": {
"pme": "cli.js"
},
"engines": {
"node": "^20 || ^22 || >=24"
},
"scripts": {
"format": "prettier --write .",
"lint": "tsc && eslint && prettier --check .",
"test": "node --test --test-reporter spec test/test.js",
"test:update-snapshots": "node --test --test-reporter spec --test-update-snapshots test/test.js",
"install-chrome-for-puppeteer": "puppeteer browsers install chrome"
},
"dependencies": {
"chokidar": "^5.0.0",
"liquidjs": "^10.24.0",
"puppeteer": "^24.34.0",
"yaml": "^2.8.2",
"yargs": "^18.0.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/yargs": "^17.0.35",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsdoc": "^61.5.0",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-unicorn": "^62.0.0",
"globals": "^16.5.0",
"pdfjs-dist": "^5.4.449",
"prettier": "3.7.4",
"typescript": "^5.9.3",
"typescript-eslint": "^8.50.1"
}
}