swaggerjsontoapidocs 1.3.0 → 1.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +24 -6
package/package.json
CHANGED
|
@@ -1,7 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "swaggerjsontoapidocs",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.0",
|
|
4
4
|
"description": "script to convert swagger json to api docs, this help us to consume functions and center all endpoints in one place",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"swagger",
|
|
7
|
+
"swagger-json",
|
|
8
|
+
"api-docs",
|
|
9
|
+
"api-documentation",
|
|
10
|
+
"cli",
|
|
11
|
+
"typescript",
|
|
12
|
+
"nodejs",
|
|
13
|
+
"swagger-to-docs",
|
|
14
|
+
"swagger-to-api",
|
|
15
|
+
"json-to-api",
|
|
16
|
+
"api-generator"
|
|
17
|
+
],
|
|
18
|
+
"author": "Esteban Fernandez <efernandezdev@gmail.com>",
|
|
19
|
+
"license": "MIT",
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "https://github.com/efernandezdev/swaggerjsontoapidocs"
|
|
23
|
+
},
|
|
24
|
+
"homepage": "https://github.com/efernandezdev/swaggerjsontoapidocs#readme",
|
|
5
25
|
"main": "index.ts",
|
|
6
26
|
"scripts": {
|
|
7
27
|
"build": "tsc",
|
|
@@ -10,8 +30,9 @@
|
|
|
10
30
|
"lint": "eslint .",
|
|
11
31
|
"prepublishOnly": "npm run build"
|
|
12
32
|
},
|
|
13
|
-
"
|
|
14
|
-
|
|
33
|
+
"bin": {
|
|
34
|
+
"swaggerjsontoapidocs": "dist/index.js"
|
|
35
|
+
},
|
|
15
36
|
"dependencies": {
|
|
16
37
|
"chalk": "5.6.2",
|
|
17
38
|
"prettier": "3.7.4",
|
|
@@ -35,8 +56,5 @@
|
|
|
35
56
|
],
|
|
36
57
|
"engines": {
|
|
37
58
|
"node": ">=15.0.0"
|
|
38
|
-
},
|
|
39
|
-
"bin": {
|
|
40
|
-
"swaggerjsontoapidocs": "dist/index.js"
|
|
41
59
|
}
|
|
42
60
|
}
|