swagger-autogen-ast 1.0.5 → 1.0.6

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.
Files changed (2) hide show
  1. package/README.md +8 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -2,13 +2,18 @@
2
2
 
3
3
  **Zero-config OpenAPI 3.0 generation for Express.**
4
4
 
5
+ [![npm version](https://img.shields.io/npm/v/swagger-autogen-ast.svg)](https://www.npmjs.com/package/swagger-autogen-ast)
6
+ [![npm downloads](https://img.shields.io/npm/dm/swagger-autogen-ast.svg)](https://www.npmjs.com/package/swagger-autogen-ast)
7
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
8
+
9
+ [View on NPM](https://www.npmjs.com/package/swagger-autogen-ast) | [View on GitHub](https://github.com/anthfgreco/swagger-autogen-ast)
10
+
11
+ ---
12
+
5
13
  This is the AST-based successor to [swagger-autogen](https://www.npmjs.com/package/swagger-autogen). It uses the TypeScript Compiler API to statically analyze your routes, types, and controller logic to generate a spec that matches your code.
6
14
 
7
15
  Intended for use with [swagger-ui-react](https://www.npmjs.com/package/swagger-ui-react) and/or importing to [Postman](https://www.postman.com/).
8
16
 
9
- [![npm](https://img.shields.io/npm/v/swagger-autogen-ast)](https://www.npmjs.com/package/swagger-autogen-ast)
10
- [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
11
-
12
17
  ## Why?
13
18
 
14
19
  Swagger generators are annoying. They require tons of manual config or intrusive code annotations (both which I didn't want to do).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "swagger-autogen-ast",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "A zero-config OpenAPI 3.0 generator for Express. The AST-based spiritual successor to swagger-autogen with automatic type inference.",
5
5
  "keywords": [
6
6
  "swagger",