forked from nrhirani/node-qpdf
-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
54 lines (54 loc) · 1.29 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": "node-qpdf2",
"version": "6.1.0",
"description": "A Content Preserving transformations on PDFs wrapped around QPDF",
"keywords": [
"pdf",
"qpdf",
"password protect",
"password protect pdf",
"pdf encryption",
"pdf decryption",
"encrypt",
"dcrypt",
"aes",
"rc4",
"aes-256",
"aes-128",
"rc4-128",
"rc4-40"
],
"homepage": "https://github.com/Sparticuz/node-qpdf2",
"bugs": {
"url": "https://github.com/Sparticuz/node-qpdf2/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sparticuz/node-qpdf2.git"
},
"license": "MIT",
"author": "Kyle McNally <[email protected]>",
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rm -rf dist/** && tsc -p tsconfig.build.json",
"lint": "eslint \"**/*.?(c|m)[jt]s?(x)\"",
"test": "vitest run --coverage"
},
"devDependencies": {
"@sparticuz/eslint-config": "^9.0.4",
"@tsconfig/node18": "^18.2.4",
"@tsconfig/strictest": "^2.0.5",
"@types/node": "^18.18.6",
"@vitest/coverage-v8": "^2.1.2",
"eslint": "^9.11.1",
"prettier": "^3.3.3",
"typescript": "^5.6.2",
"typescript-eslint": "^8.8.0",
"vitest": "^2.1.2"
},
"engines": {
"node": ">=16"
}
}