@visulima/jsdoc-open-api 3.0.0 → 3.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.
- package/CHANGELOG.md +7 -0
- package/package.json +43 -43
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## @visulima/jsdoc-open-api [3.0.1](https://github.com/visulima/visulima/compare/%40visulima%2Fjsdoc-open-api%403.0.0...%40visulima%2Fjsdoc-open-api%403.0.1) (2026-07-15)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Dependencies
|
|
5
|
+
|
|
6
|
+
* **@visulima/fs:** upgraded to 5.0.1
|
|
7
|
+
|
|
1
8
|
## @visulima/jsdoc-open-api [3.0.0](https://github.com/visulima/visulima/compare/@visulima/jsdoc-open-api@2.0.95...@visulima/jsdoc-open-api@3.0.0) (2026-07-03)
|
|
2
9
|
|
|
3
10
|
### ⚠ BREAKING CHANGES
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visulima/jsdoc-open-api",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.1",
|
|
4
4
|
"description": "Generates swagger doc based on JSDoc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"api",
|
|
@@ -16,6 +16,11 @@
|
|
|
16
16
|
],
|
|
17
17
|
"homepage": "https://visulima.com/packages/jsdoc-open-api/",
|
|
18
18
|
"bugs": "https://github.com/visulima/visulima/issues",
|
|
19
|
+
"license": "MIT",
|
|
20
|
+
"author": {
|
|
21
|
+
"name": "Daniel Bannert",
|
|
22
|
+
"email": "d.bannert@anolilab.de"
|
|
23
|
+
},
|
|
19
24
|
"repository": {
|
|
20
25
|
"type": "git",
|
|
21
26
|
"url": "https://github.com/visulima/visulima.git",
|
|
@@ -31,28 +36,24 @@
|
|
|
31
36
|
"url": "https://anolilab.com/support"
|
|
32
37
|
}
|
|
33
38
|
],
|
|
34
|
-
"
|
|
35
|
-
|
|
36
|
-
"name": "Daniel Bannert",
|
|
37
|
-
"email": "d.bannert@anolilab.de"
|
|
39
|
+
"bin": {
|
|
40
|
+
"jsdoc-open-api": "./bin/index.js"
|
|
38
41
|
},
|
|
39
|
-
"
|
|
42
|
+
"files": [
|
|
43
|
+
"bin/**",
|
|
44
|
+
"cli/**",
|
|
45
|
+
"dist/**",
|
|
46
|
+
"README.md",
|
|
47
|
+
"CHANGELOG.md",
|
|
48
|
+
"LICENSE.md"
|
|
49
|
+
],
|
|
50
|
+
"os": [
|
|
51
|
+
"darwin",
|
|
52
|
+
"linux",
|
|
53
|
+
"win32"
|
|
54
|
+
],
|
|
40
55
|
"type": "module",
|
|
41
|
-
"
|
|
42
|
-
".": {
|
|
43
|
-
"types": "./dist/index.d.ts",
|
|
44
|
-
"default": "./dist/index.js"
|
|
45
|
-
},
|
|
46
|
-
"./cli": {
|
|
47
|
-
"types": "./dist/cli/index.d.ts",
|
|
48
|
-
"default": "./dist/cli/index.js"
|
|
49
|
-
},
|
|
50
|
-
"./cli/commander": {
|
|
51
|
-
"types": "./dist/cli/commander/index.d.ts",
|
|
52
|
-
"default": "./dist/cli/commander/index.js"
|
|
53
|
-
},
|
|
54
|
-
"./package.json": "./package.json"
|
|
55
|
-
},
|
|
56
|
+
"sideEffects": false,
|
|
56
57
|
"module": "dist/index.js",
|
|
57
58
|
"types": "dist/index.d.ts",
|
|
58
59
|
"typesVersions": {
|
|
@@ -68,39 +69,38 @@
|
|
|
68
69
|
]
|
|
69
70
|
}
|
|
70
71
|
},
|
|
71
|
-
"
|
|
72
|
-
"
|
|
72
|
+
"exports": {
|
|
73
|
+
".": {
|
|
74
|
+
"types": "./dist/index.d.ts",
|
|
75
|
+
"default": "./dist/index.js"
|
|
76
|
+
},
|
|
77
|
+
"./cli": {
|
|
78
|
+
"types": "./dist/cli/index.d.ts",
|
|
79
|
+
"default": "./dist/cli/index.js"
|
|
80
|
+
},
|
|
81
|
+
"./cli/commander": {
|
|
82
|
+
"types": "./dist/cli/commander/index.d.ts",
|
|
83
|
+
"default": "./dist/cli/commander/index.js"
|
|
84
|
+
},
|
|
85
|
+
"./package.json": "./package.json"
|
|
86
|
+
},
|
|
87
|
+
"publishConfig": {
|
|
88
|
+
"access": "public",
|
|
89
|
+
"provenance": true
|
|
73
90
|
},
|
|
74
|
-
"files": [
|
|
75
|
-
"bin/**",
|
|
76
|
-
"cli/**",
|
|
77
|
-
"dist/**",
|
|
78
|
-
"README.md",
|
|
79
|
-
"CHANGELOG.md",
|
|
80
|
-
"LICENSE.md"
|
|
81
|
-
],
|
|
82
91
|
"dependencies": {
|
|
83
92
|
"@apidevtools/swagger-parser": "^12.1.0",
|
|
84
|
-
"@visulima/fs": "5.0.
|
|
93
|
+
"@visulima/fs": "5.0.1",
|
|
85
94
|
"comment-parser": "1.4.7",
|
|
86
|
-
"es-toolkit": "^1.
|
|
95
|
+
"es-toolkit": "^1.49.0",
|
|
87
96
|
"yaml": "2.9.0"
|
|
88
97
|
},
|
|
89
98
|
"optionalDependencies": {
|
|
90
99
|
"cli-progress": "^3.12.0",
|
|
91
100
|
"commander": "^15.0.0",
|
|
92
|
-
"webpack": "^5.
|
|
101
|
+
"webpack": "^5.108.3"
|
|
93
102
|
},
|
|
94
103
|
"engines": {
|
|
95
104
|
"node": "^22.14.0 || >=24.10.0"
|
|
96
|
-
},
|
|
97
|
-
"os": [
|
|
98
|
-
"darwin",
|
|
99
|
-
"linux",
|
|
100
|
-
"win32"
|
|
101
|
-
],
|
|
102
|
-
"publishConfig": {
|
|
103
|
-
"access": "public",
|
|
104
|
-
"provenance": true
|
|
105
105
|
}
|
|
106
106
|
}
|