-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
49 lines (49 loc) · 1.05 KB
/
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
43
44
45
46
47
48
49
{
"name": "pdf-img-convert",
"version": "2.0.0",
"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.11.2",
"is-url": "^1.2.4",
"node-fetch": "^3.3.2",
"pdfjs-dist": "^4.6.82"
},
"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",
"module",
"es6",
"esm"
],
"author": "Oliver Thwaites",
"license": "MIT",
"contributors": [
{
"name": "Samm waturu",
"email": "[email protected]"
}
],
"bugs": {
"url": "https://github.com/ol-th/pdf-img-convert.js/issues"
},
"homepage": "https://github.com/ol-th/pdf-img-convert.js#readme",
"directories": {
"example": "examples"
}
}