forked from ol-th/pdf-img-convert.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 893 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
{
"name": "pdf-img-convert",
"version": "1.2.1",
"description": "A simple module to convert PDF files into image buffers (without filesystem usage)",
"main": "pdf-img-convert.js",
"types": "pdf-img-convert.d.ts",
"dependencies": {
"canvas": "^2.10.2",
"is-url": "^1.2.4",
"node-fetch": "^2.6.7",
"pdfjs-dist": "^2.14.305"
},
"files": [
"pdf-img-convert.d.ts",
"pdf-img-convert.js"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ol-th/pdf-img-convert.js.git"
},
"keywords": [
"pdf",
"img",
"image",
"png",
"convert"
],
"author": "Oliver Thwaites",
"license": "MIT",
"bugs": {
"url": "https://github.com/ol-th/pdf-img-convert.js/issues"
},
"homepage": "https://github.com/ol-th/pdf-img-convert.js#readme"
}