-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
54 lines (54 loc) · 1.23 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
50
51
52
53
54
{
"name": "pdf-to-img",
"version": "4.3.0",
"author": "Kyle Hensel",
"description": "📃📸 Converts PDFs to images in nodejs",
"exports": "./dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"license": "MIT",
"files": [
"dist"
],
"keywords": [
"pdf",
"pdfjs",
"pdf-to-img",
"pdf-to-png",
"vitest",
"jest"
],
"repository": "https://github.com/k-yle/pdf-to-img",
"scripts": {
"build": "tsc && rm -rf dist && mv temp/src dist && rm -rf temp",
"lint": "eslint --ignore-path .gitignore .",
"test": "vitest --pool=forks",
"trypublish": "npm publish --provenance || true"
},
"bin": {
"pdf2img": "./bin/cli.mjs"
},
"engines": {
"node": ">=18"
},
"engineStrict": true,
"dependencies": {
"canvas": "2.11.2",
"pdfjs-dist": "4.2.67"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.5.1",
"@types/jest-image-snapshot": "^6.2.1",
"@types/node": "^20.8.6",
"@types/pdfjs-dist": "2.10.377",
"@vitest/coverage-v8": "^1.6.0",
"eslint": "^8.50.0",
"eslint-config-kyle": "^14.12.3",
"jest-image-snapshot": "^6.2.0",
"typescript": "^5.2.2",
"vitest": "^1.6.0"
},
"prettier": {
"trailingComma": "es5"
}
}