@visulima/api-platform 2.0.3 → 2.0.5

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/CHANGELOG.md +30 -0
  2. package/package.json +27 -31
package/CHANGELOG.md CHANGED
@@ -1,3 +1,33 @@
1
+ ## @visulima/api-platform [2.0.5](https://github.com/visulima/visulima/compare/@visulima/api-platform@2.0.4...@visulima/api-platform@2.0.5) (2023-10-16)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * updated all deps ([a8aa029](https://github.com/visulima/visulima/commit/a8aa0295118a4d5248844e89a95ea332f65434cb))
7
+
8
+
9
+
10
+ ### Dependencies
11
+
12
+ * **@visulima/connect:** upgraded to 2.1.3
13
+ * **@visulima/jsdoc-open-api:** upgraded to 2.0.5
14
+
15
+ ## @visulima/api-platform [2.0.4](https://github.com/visulima/visulima/compare/@visulima/api-platform@2.0.3...@visulima/api-platform@2.0.4) (2023-10-15)
16
+
17
+
18
+ ### Bug Fixes
19
+
20
+ * removed types from exports key ([80bd356](https://github.com/visulima/visulima/commit/80bd356659a45bd351a60870b0f380569c75e0c1))
21
+
22
+
23
+
24
+ ### Dependencies
25
+
26
+ * **@visulima/connect:** upgraded to 2.1.2
27
+ * **@visulima/jsdoc-open-api:** upgraded to 2.0.4
28
+ * **@visulima/crud:** upgraded to 2.0.4
29
+ * **@visulima/readdir:** upgraded to 2.0.4
30
+
1
31
  ## @visulima/api-platform [2.0.3](https://github.com/visulima/visulima/compare/@visulima/api-platform@2.0.2...@visulima/api-platform@2.0.3) (2023-10-11)
2
32
 
3
33
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visulima/api-platform",
3
- "version": "2.0.3",
3
+ "version": "2.0.5",
4
4
  "description": "Visulima API platform is a set of tools to build and consume web APIs",
5
5
  "keywords": [
6
6
  "anolilab",
@@ -54,7 +54,6 @@
54
54
  "sideEffects": false,
55
55
  "exports": {
56
56
  ".": {
57
- "types": "./dist/index-server.d.ts",
58
57
  "browser": "./dist/index-browser.js",
59
58
  "require": {
60
59
  "types": "./dist/index-server.d.ts",
@@ -66,7 +65,6 @@
66
65
  }
67
66
  },
68
67
  "./next": {
69
- "types": "./dist/framework/next/index-server.d.ts",
70
68
  "browser": "./dist/framework/next/index-browser.js",
71
69
  "require": {
72
70
  "types": "./dist/framework/next/index-server.d.ts",
@@ -78,7 +76,6 @@
78
76
  }
79
77
  },
80
78
  "./next/pages/swagger": {
81
- "types": "./dist/framework/next/routes/pages/swagger/index.d.ts",
82
79
  "browser": "./dist/framework/next/routes/pages/swagger/index.js",
83
80
  "require": {
84
81
  "types": "./dist/framework/next/routes/pages/swagger/index.d.ts",
@@ -90,7 +87,6 @@
90
87
  }
91
88
  },
92
89
  "./next/pages/redoc": {
93
- "types": "./dist/framework/next/routes/pages/redoc/index.d.ts",
94
90
  "browser": "./dist/framework/next/routes/pages/redoc/index.js",
95
91
  "require": {
96
92
  "types": "./dist/framework/next/routes/pages/redoc/index.d.ts",
@@ -102,14 +98,13 @@
102
98
  }
103
99
  },
104
100
  "./cli": {
105
- "types": "./dist/framework/cli/index-server.d.ts",
106
101
  "require": {
107
- "types": "./dist/framework/cli/index-server.d.ts",
108
- "default": "./dist/framework/cli/index-server.js"
102
+ "types": "./dist/framework/cli/index.d.ts",
103
+ "default": "./dist/framework/cli/index.js"
109
104
  },
110
105
  "import": {
111
- "types": "./dist/framework/cli/index-server.d.mts",
112
- "default": "./dist/framework/cli/index-server.mjs"
106
+ "types": "./dist/framework/cli/index.d.mts",
107
+ "default": "./dist/framework/cli/index.mjs"
113
108
  }
114
109
  },
115
110
  "./package.json": "./package.json"
@@ -138,6 +133,7 @@
138
133
  "dev": "pnpm run build --watch",
139
134
  "lint:eslint": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.js",
140
135
  "lint:eslint:fix": "pnpm run lint:eslint --fix",
136
+ "lint:packagejson": "publint --strict",
141
137
  "lint:prettier": "prettier --config=.prettierrc.js --check .",
142
138
  "lint:prettier:fix": "prettier --config=.prettierrc.js --write .",
143
139
  "lint:types": "tsc --noEmit --project tsconfig.json",
@@ -145,8 +141,8 @@
145
141
  "test:watch": "vitest"
146
142
  },
147
143
  "dependencies": {
148
- "@visulima/connect": "2.1.1",
149
- "@visulima/jsdoc-open-api": "2.0.3",
144
+ "@visulima/connect": "2.1.3",
145
+ "@visulima/jsdoc-open-api": "2.0.5",
150
146
  "accepts": "^1.3.8",
151
147
  "debug": "^4.3.4",
152
148
  "http-errors": "^2.0.0",
@@ -154,8 +150,8 @@
154
150
  "jstoxml": "^3.2.8",
155
151
  "lodash.merge": "^4.6.2",
156
152
  "schema-dts": "^1.1.2",
157
- "ts-japi": "^1.9.0",
158
- "yaml": "^2.3.2",
153
+ "ts-japi": "^1.9.1",
154
+ "yaml": "^2.3.3",
159
155
  "zod-to-ts": "^1.2.0"
160
156
  },
161
157
  "devDependencies": {
@@ -163,7 +159,7 @@
163
159
  "@anolilab/prettier-config": "^5.0.11",
164
160
  "@anolilab/semantic-release-preset": "^8.0.0",
165
161
  "@arthurgeron/eslint-plugin-react-usememo": "^2.0.1",
166
- "@babel/core": "^7.23.0",
162
+ "@babel/core": "^7.23.2",
167
163
  "@hapi/hapi": "^21.3.2",
168
164
  "@koa/router": "^12.0.0",
169
165
  "@secretlint/secretlint-rule-preset-recommend": "^7.0.7",
@@ -180,17 +176,17 @@
180
176
  "@types/koa__router": "^12.0.1",
181
177
  "@types/lodash.merge": "^4.6.7",
182
178
  "@types/lodash.set": "^4.3.7",
183
- "@types/node": "18.17.12",
179
+ "@types/node": "18.18.5",
184
180
  "@types/qs": "^6.9.8",
185
181
  "@types/react": "^18.2.28",
186
182
  "@types/react-dom": "^18.2.13",
187
- "@types/swagger-ui-react": "^4.18.0",
183
+ "@types/swagger-ui-react": "^4.18.1",
188
184
  "@types/webpack": "^5.28.3",
189
- "@visulima/crud": "2.0.3",
190
- "@visulima/readdir": "2.0.3",
185
+ "@visulima/crud": "2.0.4",
186
+ "@visulima/readdir": "2.0.4",
191
187
  "@vitest/coverage-v8": "^0.34.6",
192
188
  "chalk": "5.3.0",
193
- "commander": "^11.0.0",
189
+ "commander": "^11.1.0",
194
190
  "core-js": "^3.33.0",
195
191
  "cors": "^2.8.5",
196
192
  "cross-env": "^7.0.3",
@@ -203,16 +199,16 @@
203
199
  "eslint-plugin-react": "7.33.2",
204
200
  "eslint-plugin-react-hooks": "4.6.0",
205
201
  "eslint-plugin-ssr-friendly": "^1.2.0",
206
- "eslint-plugin-testing-library": "^6.0.2",
202
+ "eslint-plugin-testing-library": "^6.1.0",
207
203
  "eslint-plugin-validate-jsx-nesting": "^0.1.1",
208
204
  "eslint-plugin-vitest": "^0.3.2",
209
205
  "eslint-plugin-vitest-globals": "^1.4.0",
210
206
  "eslint-plugin-zod": "^1.4.0",
211
207
  "express": "^4.18.2",
212
- "fastify": "^4.23.2",
208
+ "fastify": "^4.24.2",
213
209
  "koa": "^2.14.2",
214
210
  "mobx": "^6.10.2",
215
- "next": "^13.4.19",
211
+ "next": "^13.5.4",
216
212
  "next-test-api-route-handler": "^4.0.0-canary.1",
217
213
  "node-mocks-http": "^1.13.0",
218
214
  "openapi-types": "^12.1.3",
@@ -225,14 +221,14 @@
225
221
  "secretlint": "7.0.7",
226
222
  "semantic-release": "^22.0.5",
227
223
  "sort-package-json": "^2.6.0",
228
- "styled-components": "^6.0.8",
224
+ "styled-components": "^6.1.0",
229
225
  "swagger-ui-dist": "^4.19.1",
230
226
  "swagger-ui-react": "^4.19.1",
231
227
  "tsup": "^7.2.0",
232
228
  "type-fest": "^4.4.0",
233
229
  "typescript": "^5.2.2",
234
230
  "vitest": "^0.34.6",
235
- "webpack": "^5.88.2",
231
+ "webpack": "^5.89.0",
236
232
  "zod": "^3.22.4"
237
233
  },
238
234
  "peerDependencies": {
@@ -243,20 +239,20 @@
243
239
  "optionalDependencies": {
244
240
  "@hapi/hapi": "^21.3.2",
245
241
  "@koa/router": "^12.0.0",
246
- "@visulima/crud": "2.0.3",
247
- "@visulima/readdir": "2.0.3",
242
+ "@visulima/crud": "2.0.4",
243
+ "@visulima/readdir": "2.0.4",
248
244
  "chalk": "5.3.0",
249
- "commander": "^11.0.0",
245
+ "commander": "^11.1.0",
250
246
  "cors": "^2.8.5",
251
247
  "express": "^4.18.2",
252
- "fastify": "^4.23.2",
248
+ "fastify": "^4.24.2",
253
249
  "koa": "^2.14.2",
254
- "next": "^13.4.19",
250
+ "next": "^13.5.4",
255
251
  "rate-limiter-flexible": "^3.0.0",
256
252
  "redoc": "^2.1.2",
257
253
  "swagger-ui-dist": "^4.19.1",
258
254
  "swagger-ui-react": "^4.19.1",
259
- "webpack": "^5.88.2"
255
+ "webpack": "^5.89.0"
260
256
  },
261
257
  "engines": {
262
258
  "node": ">=18.* <=20.*"