@visulima/jsdoc-open-api 2.0.42 → 2.0.44
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 +26 -0
- package/package.json +175 -175
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,29 @@
|
|
|
1
|
+
## @visulima/jsdoc-open-api [2.0.44](https://github.com/visulima/visulima/compare/@visulima/jsdoc-open-api@2.0.43...@visulima/jsdoc-open-api@2.0.44) (2024-05-24)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Styles
|
|
5
|
+
|
|
6
|
+
* cs fixes on some package.json files ([12fc0f7](https://github.com/visulima/visulima/commit/12fc0f74e206cef77863b0b89ec41174ca9ff0bd))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Miscellaneous Chores
|
|
10
|
+
|
|
11
|
+
* changed semantic-release-npm to pnpm ([b6d100a](https://github.com/visulima/visulima/commit/b6d100a2bf3fd026577be48726a37754947f0973))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Dependencies
|
|
16
|
+
|
|
17
|
+
* **@visulima/fs:** upgraded to 2.1.2
|
|
18
|
+
|
|
19
|
+
## @visulima/jsdoc-open-api [2.0.43](https://github.com/visulima/visulima/compare/@visulima/jsdoc-open-api@2.0.42...@visulima/jsdoc-open-api@2.0.43) (2024-05-15)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
### Dependencies
|
|
24
|
+
|
|
25
|
+
* **@visulima/fs:** upgraded to 2.1.1
|
|
26
|
+
|
|
1
27
|
## @visulima/jsdoc-open-api [2.0.42](https://github.com/visulima/visulima/compare/@visulima/jsdoc-open-api@2.0.41...@visulima/jsdoc-open-api@2.0.42) (2024-05-06)
|
|
2
28
|
|
|
3
29
|
|
package/package.json
CHANGED
|
@@ -1,180 +1,180 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
2
|
+
"name": "@visulima/jsdoc-open-api",
|
|
3
|
+
"version": "2.0.44",
|
|
4
|
+
"description": "Generates swagger doc based on JSDoc.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"visulima",
|
|
7
|
+
"javascript",
|
|
8
|
+
"openapi",
|
|
9
|
+
"swagger",
|
|
10
|
+
"jsdoc",
|
|
11
|
+
"comment",
|
|
12
|
+
"api",
|
|
13
|
+
"webpack",
|
|
14
|
+
"cli",
|
|
15
|
+
"command"
|
|
16
|
+
],
|
|
17
|
+
"homepage": "https://www.visulima.com/docs/package/jsdoc-open-api",
|
|
18
|
+
"bugs": {
|
|
19
|
+
"url": "https://github.com/visulima/visulima/issues"
|
|
20
|
+
},
|
|
21
|
+
"repository": {
|
|
22
|
+
"type": "git",
|
|
23
|
+
"url": "https://github.com/visulima/visulima.git",
|
|
24
|
+
"directory": "packages/jsdoc-open-api"
|
|
25
|
+
},
|
|
26
|
+
"funding": [
|
|
27
|
+
{
|
|
28
|
+
"type": "github",
|
|
29
|
+
"url": "https://github.com/sponsors/prisis"
|
|
20
30
|
},
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
31
|
+
{
|
|
32
|
+
"type": "consulting",
|
|
33
|
+
"url": "https://anolilab.com/support"
|
|
34
|
+
}
|
|
35
|
+
],
|
|
36
|
+
"license": "MIT",
|
|
37
|
+
"author": {
|
|
38
|
+
"name": "Daniel Bannert",
|
|
39
|
+
"email": "d.bannert@anolilab.de"
|
|
40
|
+
},
|
|
41
|
+
"sideEffects": false,
|
|
42
|
+
"exports": {
|
|
43
|
+
".": {
|
|
44
|
+
"require": {
|
|
45
|
+
"types": "./dist/index.d.ts",
|
|
46
|
+
"default": "./dist/index.js"
|
|
47
|
+
},
|
|
48
|
+
"import": {
|
|
49
|
+
"types": "./dist/index.d.mts",
|
|
50
|
+
"default": "./dist/index.mjs"
|
|
51
|
+
}
|
|
25
52
|
},
|
|
26
|
-
"
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
],
|
|
36
|
-
"license": "MIT",
|
|
37
|
-
"author": {
|
|
38
|
-
"name": "Daniel Bannert",
|
|
39
|
-
"email": "d.bannert@anolilab.de"
|
|
53
|
+
"./cli": {
|
|
54
|
+
"require": {
|
|
55
|
+
"types": "./dist/cli/index.d.ts",
|
|
56
|
+
"default": "./dist/cli/index.js"
|
|
57
|
+
},
|
|
58
|
+
"import": {
|
|
59
|
+
"types": "./dist/cli/index.d.mts",
|
|
60
|
+
"default": "./dist/cli/index.mjs"
|
|
61
|
+
}
|
|
40
62
|
},
|
|
41
|
-
"
|
|
42
|
-
|
|
43
|
-
"
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
"default": "./dist/index.mjs"
|
|
51
|
-
}
|
|
52
|
-
},
|
|
53
|
-
"./cli": {
|
|
54
|
-
"require": {
|
|
55
|
-
"types": "./dist/cli/index.d.ts",
|
|
56
|
-
"default": "./dist/cli/index.js"
|
|
57
|
-
},
|
|
58
|
-
"import": {
|
|
59
|
-
"types": "./dist/cli/index.d.mts",
|
|
60
|
-
"default": "./dist/cli/index.mjs"
|
|
61
|
-
}
|
|
62
|
-
},
|
|
63
|
-
"./cli/commander": {
|
|
64
|
-
"require": {
|
|
65
|
-
"types": "./dist/cli/commander/index.d.ts",
|
|
66
|
-
"default": "./dist/cli/commander/index.js"
|
|
67
|
-
},
|
|
68
|
-
"import": {
|
|
69
|
-
"types": "./dist/cli/commander/index.d.mts",
|
|
70
|
-
"default": "./dist/cli/commander/index.mjs"
|
|
71
|
-
}
|
|
72
|
-
},
|
|
73
|
-
"./package.json": "./package.json"
|
|
63
|
+
"./cli/commander": {
|
|
64
|
+
"require": {
|
|
65
|
+
"types": "./dist/cli/commander/index.d.ts",
|
|
66
|
+
"default": "./dist/cli/commander/index.js"
|
|
67
|
+
},
|
|
68
|
+
"import": {
|
|
69
|
+
"types": "./dist/cli/commander/index.d.mts",
|
|
70
|
+
"default": "./dist/cli/commander/index.mjs"
|
|
71
|
+
}
|
|
74
72
|
},
|
|
75
|
-
"
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
"
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
"
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
"
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
"
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
"
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
"
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
"
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
"
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
73
|
+
"./package.json": "./package.json"
|
|
74
|
+
},
|
|
75
|
+
"main": "dist/index.js",
|
|
76
|
+
"module": "dist/index.mjs",
|
|
77
|
+
"types": "dist/index.d.ts",
|
|
78
|
+
"bin": {
|
|
79
|
+
"jsdoc-open-api": "./bin/index.js"
|
|
80
|
+
},
|
|
81
|
+
"files": [
|
|
82
|
+
"bin/**",
|
|
83
|
+
"cli/**",
|
|
84
|
+
"dist/**",
|
|
85
|
+
"README.md",
|
|
86
|
+
"CHANGELOG.md",
|
|
87
|
+
"LICENSE.md"
|
|
88
|
+
],
|
|
89
|
+
"dependencies": {
|
|
90
|
+
"@apidevtools/swagger-parser": "^10.1.0",
|
|
91
|
+
"@visulima/fs": "2.1.2",
|
|
92
|
+
"comment-parser": "^1.4.1",
|
|
93
|
+
"lodash.mergewith": "^4.6.2",
|
|
94
|
+
"read-pkg-up": "^7.0.1",
|
|
95
|
+
"yaml": "^2.4.2"
|
|
96
|
+
},
|
|
97
|
+
"devDependencies": {
|
|
98
|
+
"@anolilab/eslint-config": "^15.0.3",
|
|
99
|
+
"@anolilab/prettier-config": "^5.0.14",
|
|
100
|
+
"@anolilab/semantic-release-pnpm": "^1.1.0",
|
|
101
|
+
"@anolilab/semantic-release-preset": "^8.1.0",
|
|
102
|
+
"@babel/core": "^7.24.5",
|
|
103
|
+
"@rushstack/eslint-plugin-security": "^0.8.1",
|
|
104
|
+
"@types/cli-progress": "^3.11.5",
|
|
105
|
+
"@types/http-errors": "^2.0.4",
|
|
106
|
+
"@types/lodash.mergewith": "^4.6.9",
|
|
107
|
+
"@types/node": "18.18.14",
|
|
108
|
+
"@types/webpack": "^5.28.5",
|
|
109
|
+
"@vitest/coverage-v8": "^1.6.0",
|
|
110
|
+
"@vitest/ui": "^1.6.0",
|
|
111
|
+
"cli-progress": "^3.12.0",
|
|
112
|
+
"commander": "^12.1.0",
|
|
113
|
+
"cross-env": "^7.0.3",
|
|
114
|
+
"eslint": "^8.57.0",
|
|
115
|
+
"eslint-plugin-deprecation": "^2.0.0",
|
|
116
|
+
"eslint-plugin-etc": "^2.0.3",
|
|
117
|
+
"eslint-plugin-import": "npm:eslint-plugin-i@^2.29.1",
|
|
118
|
+
"eslint-plugin-mdx": "^3.1.5",
|
|
119
|
+
"eslint-plugin-vitest": "^0.4.1",
|
|
120
|
+
"eslint-plugin-vitest-globals": "^1.5.0",
|
|
121
|
+
"openapi-types": "^12.1.3",
|
|
122
|
+
"prettier": "^3.2.5",
|
|
123
|
+
"rimraf": "^5.0.7",
|
|
124
|
+
"semantic-release": "^23.1.1",
|
|
125
|
+
"tsup": "^8.0.2",
|
|
126
|
+
"typescript": "^5.4.5",
|
|
127
|
+
"vitest": "^1.6.0",
|
|
128
|
+
"webpack": "^5.91.0"
|
|
129
|
+
},
|
|
130
|
+
"optionalDependencies": {
|
|
131
|
+
"cli-progress": "^3.12.0",
|
|
132
|
+
"commander": "^12.1.0",
|
|
133
|
+
"webpack": "^5.91.0"
|
|
134
|
+
},
|
|
135
|
+
"engines": {
|
|
136
|
+
"node": ">=18.* <=21.*"
|
|
137
|
+
},
|
|
138
|
+
"os": [
|
|
139
|
+
"darwin",
|
|
140
|
+
"linux",
|
|
141
|
+
"win32"
|
|
142
|
+
],
|
|
143
|
+
"publishConfig": {
|
|
144
|
+
"access": "public",
|
|
145
|
+
"provenance": true
|
|
146
|
+
},
|
|
147
|
+
"anolilab": {
|
|
148
|
+
"eslint-config": {
|
|
149
|
+
"plugin": {
|
|
150
|
+
"tsdoc": false
|
|
151
|
+
},
|
|
152
|
+
"warn_on_unsupported_typescript_version": false,
|
|
153
|
+
"info_on_disabling_jsx_react_rule": false,
|
|
154
|
+
"info_on_disabling_prettier_conflict_rule": false,
|
|
155
|
+
"info_on_disabling_jsonc_sort_keys_rule": false,
|
|
156
|
+
"info_on_disabling_etc_no_deprecated": false
|
|
157
|
+
}
|
|
158
|
+
},
|
|
159
|
+
"sources": [
|
|
160
|
+
"src/index.ts",
|
|
161
|
+
"src/cli/index.ts",
|
|
162
|
+
"src/cli/commander/index.ts"
|
|
163
|
+
],
|
|
164
|
+
"scripts": {
|
|
165
|
+
"build": "cross-env NODE_ENV=development tsup",
|
|
166
|
+
"build:prod": "cross-env NODE_ENV=production tsup",
|
|
167
|
+
"clean": "rimraf node_modules dist .eslintcache",
|
|
168
|
+
"dev": "pnpm run build --watch",
|
|
169
|
+
"lint:eslint": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.js",
|
|
170
|
+
"lint:eslint:fix": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.js --fix",
|
|
171
|
+
"lint:package-json": "publint --strict",
|
|
172
|
+
"lint:prettier": "prettier --config=.prettierrc.js --check .",
|
|
173
|
+
"lint:prettier:fix": "prettier --config=.prettierrc.js --write .",
|
|
174
|
+
"lint:types": "tsc --noEmit",
|
|
175
|
+
"test": "vitest run",
|
|
176
|
+
"test:coverage": "vitest run --coverage",
|
|
177
|
+
"test:ui": "vitest --ui --coverage.enabled=true",
|
|
178
|
+
"test:watch": "vitest"
|
|
179
|
+
}
|
|
180
|
+
}
|