forked from Inkognitoo/Pdf2Png
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1018 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
43
{
"name": "pdf2png-ts",
"version": "0.1.3",
"description": "Takes a PDF-document and converts and delivers a PNG (Typescript Support and simplified dependencies)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"axios": "^0.21.4",
"tmp": "^0.2.1"
},
"repository": {
"type": "git",
"url": "[email protected]:tr3ysmith/Pdf2Png.git"
},
"homepage": "https://github.com/tr3ysmith/Pdf2Png",
"bugs": {
"url": "https://github.com/tr3ysmith/Pdf2Png/issues"
},
"maintainers": [
"tr3ysmith"
],
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/node": "^16.9.1",
"@types/tmp": "^0.2.1",
"gulp": "^4.0.2",
"typescript": "^4.4.3"
},
"scripts": {
"build": "tsc && gulp copy-executables",
"prepare": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"convert",
"pdf",
"to",
"png",
"image"
],
"author": "tr3ysmith <[email protected]>",
"license": "MIT"
}