-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.07 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.07 KB
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
{
"name": "@aux4/pdf",
"version": "0.0.1",
"description": "PDF CLI tool",
"type": "module",
"main": "package/lib/aux4-pdf.js",
"exports": {
".": "./package/lib/aux4-pdf.js"
},
"scripts": {
"build": "rollup -c",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aux4/pdf.git"
},
"keywords": [
"aux4",
"pdf",
"cli"
],
"author": "aux4",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/aux4/pdf/issues"
},
"homepage": "https://github.com/aux4/pdf#readme",
"dependencies": {
"@napi-rs/canvas": "^0.1.97",
"@thednp/dommatrix": "^3.0.3",
"fast-xml-parser": "^5.6.0",
"pdf-lib": "^1.17.1",
"pdf-parse": "^2.4.5",
"pdf.js-extract": "^0.2.1",
"pdf2pic": "^3.2.0",
"pdfjs-dist": "^5.5.207"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-replace": "^6.0.3",
"rollup": "^4.60.0"
}
}