-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.52 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
66
67
68
69
70
71
{
"name": "@pdfmonkey/cli",
"version": "1.1.0-rc.0",
"description": "A CLI tool to edit your PDFMonkey template locally with your favorite tools.",
"keywords": [
"PDFMonkey",
"PDF",
"CLI",
"automation",
"tools"
],
"repository": {
"type": "git",
"url": "git+https://github.com/pdfmonkey/pdfmonkey-cli.git"
},
"homepage": "https://pdfmonkey.io",
"bugs": {
"url": "https://github.com/pdfmonkey/pdfmonkey-cli/issues"
},
"main": "index.js",
"author": "Simon Courtois",
"license": "MIT",
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky"
},
"dependencies": {
"@clack/prompts": "^0.9.1",
"chalk": "^5.4.1",
"chokidar": "^4.0.3",
"commander": "^13.0.0",
"diff": "^7.0.0",
"livereload": "^0.9.3",
"open": "^10.1.0",
"shell-escape": "^0.2.0"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.2",
"globals": "^15.14.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.1",
"prettier": "^3.4.2"
},
"bin": {
"pdfmonkey": "bin/index.js"
},
"files": [
"bin/",
"src/",
"LICENSE",
"README.md"
],
"node": ">=18",
"publishConfig": {
"access": "public",
"provenance": true
},
"type": "module",
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
}
}