openapi-to-xlsx 1.0.0 → 1.0.1

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 +4 -0
  2. package/package.json +11 -3
package/README.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # OpenAPI to XLSX (Swagger Exporter)
2
2
 
3
+ [![npm version](https://img.shields.io/npm/v/openapi-to-xlsx.svg)](https://www.npmjs.com/package/openapi-to-xlsx)
4
+ [![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0)
5
+ [![NPM Downloads](https://img.shields.io/npm/dm/openapi-to-xlsx.svg)](https://www.npmjs.com/package/openapi-to-xlsx)
6
+
3
7
  A robust Node.js-based CLI utility that converts OpenAPI 3.x and Swagger 2.0 specifications into elegant, professionally styled, and fully hyperlinked Excel workbooks (`.xlsx`).
4
8
 
5
9
  Whether you provide a local JSON/YAML file, a direct remote spec URL, or a Swagger UI webpage URL, the tool automatically resolves, parses, and exports a comprehensive API catalog.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openapi-to-xlsx",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Generate an Excel workbook (index + per-operation sheets with cross-sheet hyperlinks) from OpenAPI/Swagger specs",
5
5
  "main": "exporter.js",
6
6
  "type": "commonjs",
@@ -32,5 +32,13 @@
32
32
  "exporter"
33
33
  ],
34
34
  "author": "Eddie Hsu <aoe102198@gmail.com>",
35
- "license": "GPL-3.0-only"
36
- }
35
+ "license": "GPL-3.0-only",
36
+ "repository": {
37
+ "type": "git",
38
+ "url": "git+https://github.com/D50000/swagger-exporter.git"
39
+ },
40
+ "bugs": {
41
+ "url": "https://github.com/D50000/swagger-exporter/issues"
42
+ },
43
+ "homepage": "https://github.com/D50000/swagger-exporter#readme"
44
+ }