forked from malaupa/openapi2pdf
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
64 lines (64 loc) · 1.38 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
55
56
57
58
59
60
61
62
63
64
{
"name": "@andste82/openapi2pdf",
"version": "1.0.10",
"type": "module",
"description": "openapi2pdf - Generate PDF from Open API spec",
"contributors": [
"Mrinmoy Majumdar <[email protected]>",
"Stefan Schubert",
"andste82"
],
"repository": {
"type": "git",
"url": "https://github.com/Andste82/openapi2pdf"
},
"license": "MIT",
"keywords": [
"OpenAPI",
"OpenAPI Specification",
"Swagger",
"JSON-Schema",
"API",
"REST",
"documentation",
"swagger",
"pdf",
"swagger pdf",
"openapi pdf"
],
"tags": [
"OpenAPI",
"Swagger",
"pdf"
],
"bin": {
"openapi2pdf": "bin/cli.mjs"
},
"dependencies": {
"fs-extra": "^11.2.0",
"html-to-pdfmake": "^2.5.20",
"jsdom": "^26.0.0",
"marked": "^15.0.6",
"pdfmake": "^0.2.18",
"swagger-client": "^3.33.2",
"swagger-parser": "^10.0.3",
"swagger2openapi": "^7.0.8",
"yargs": "^17.7.2"
},
"scripts": {
"lint": "eslint ./src/**/*.mjs",
"lint-fix": "eslint --fix ./src/**/*.mjs",
"test": "node bin/cli.mjs --spec ./test/petstore.yaml --out ./test/gen/petstore.pdf"
},
"engines": {
"node": ">= 14.17.5",
"npm": ">= 6.14.13"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.2",
"globals": "^15.14.0"
}
}