-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 863 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
{
"name": "pdf-cutter",
"version": "1.0.1",
"private": true,
"description": "Cuts and converts the provided PDF file into multiple image files",
"author": {
"name": "Peter Dyumin",
"url": "https://github.com/peterdee"
},
"homepage": "https://github.com/peterdee/pdf-cutter",
"main": "index.js",
"scripts": {
"lint": "eslint",
"start": "node ./index.js"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peterdee/pdf-cutter"
},
"keywords": [
"Node",
"PDF",
"PDF2Pic",
"PDF.js"
],
"license": "MIT",
"dependencies": {
"pdf2pic": "^2.1.4",
"pdfjs-dist": "^2.10.377"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.2"
}
}