-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 858 Bytes
/
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
{
"name": "pdfman",
"version": "1.0.3",
"description": "A CLI based PDF manipulation tool",
"type": "module",
"main": "index.js",
"bin": {
"pdfman": "./bin/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"lint:check": "eslint .",
"lint:write": "eslint --fix ."
},
"keywords": [
"pdf",
"edit",
"merge",
"cut",
"copy",
"paste",
"watermark"
],
"author": "jesintharnold",
"license": "ISC",
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.1.1"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^11.1.0",
"ora": "^8.0.1",
"pdf-lib": "^1.17.1"
},
"engines": {
"node": ">=18.19.0"
}
}