fork of hey-api/openapi-ts because I need some additional things

Merge pull request #2493 from hey-api/docs/zod-datetimes

docs(zod): document iso datetimes

authored by

Lubos and committed by
GitHub
3ce51897 75c344d9

+269 -540
+1 -1
docs/openapi-ts/configuration.md
··· 67 67 68 68 You must provide an input so we can load your OpenAPI specification. 69 69 70 - The input can be a string path, URL, API registry shorthand, an object containing any of these, or an object representing an OpenAPI specification. Hey API supports all valid OpenAPI versions and file formats. 70 + The input can be a string path, URL, [API registry](/openapi-ts/configuration/input#api-registry) shorthand, an object containing any of these, or an object representing an OpenAPI specification. Hey API supports all valid OpenAPI versions and file formats. 71 71 72 72 You can learn more on the [Input](/openapi-ts/configuration/input) page. 73 73
+1 -1
docs/openapi-ts/configuration/input.md
··· 9 9 10 10 ## Input 11 11 12 - The input can be a string path, URL, API registry shorthand, an object containing any of these, or an object representing an OpenAPI specification. Hey API supports all valid OpenAPI versions and file formats. 12 + The input can be a string path, URL, [API registry](#api-registry), an object containing any of these, or an object representing an OpenAPI specification. Hey API supports all valid OpenAPI versions and file formats. 13 13 14 14 ::: code-group 15 15
+60
docs/openapi-ts/plugins/zod.md
··· 175 175 176 176 You can customize the naming and casing pattern for `definitions` schemas using the `.name` and `.case` options. 177 177 178 + ## ISO Datetimes 179 + 180 + By default, values without a timezone or with a timezone offset are not allowed in the `z.iso.datetime()` method. 181 + 182 + ### Timezone offsets 183 + 184 + You can allow values with timezone offsets by setting `dates.offset` to `true`. 185 + 186 + ::: code-group 187 + 188 + ```ts [example] 189 + export const zFoo = z.iso.datetime({ offset: true }); 190 + ``` 191 + 192 + ```js [config] 193 + export default { 194 + input: 'hey-api/backend', // sign up at app.heyapi.dev 195 + output: 'src/client', 196 + plugins: [ 197 + // ...other plugins 198 + { 199 + name: 'zod', 200 + dates: { 201 + offset: true, // [!code ++] 202 + }, 203 + }, 204 + ], 205 + }; 206 + ``` 207 + 208 + ::: 209 + 210 + ### Local times 211 + 212 + You can allow values without a timezone by setting `dates.local` to `true`. 213 + 214 + ::: code-group 215 + 216 + ```ts [example] 217 + export const zFoo = z.iso.datetime({ local: true }); 218 + ``` 219 + 220 + ```js [config] 221 + export default { 222 + input: 'hey-api/backend', // sign up at app.heyapi.dev 223 + output: 'src/client', 224 + plugins: [ 225 + // ...other plugins 226 + { 227 + name: 'zod', 228 + dates: { 229 + local: true, // [!code ++] 230 + }, 231 + }, 232 + ], 233 + }; 234 + ``` 235 + 236 + ::: 237 + 178 238 ## Metadata 179 239 180 240 It's often useful to associate a schema with some additional [metadata](https://zod.dev/metadata) for documentation, code generation, AI structured outputs, form validation, and other purposes. If this is your use case, you can set `metadata` to `true` to generate additional metadata about schemas.
+72 -2
docs/openapi-ts/plugins/zod/mini.md
··· 36 36 plugins: [ 37 37 // ...other plugins 38 38 { 39 - compatibilityVersion: 'mini', // [!code ++] 40 39 name: 'zod', // [!code ++] 40 + compatibilityVersion: 'mini', // [!code ++] 41 41 }, 42 42 ], 43 43 }; ··· 53 53 output: 'src/client', 54 54 plugins: [ 55 55 // ...other plugins 56 - 'zod', 56 + { 57 + name: 'zod', 58 + compatibilityVersion: 'mini', 59 + }, 57 60 { 58 61 name: '@hey-api/sdk', // [!code ++] 59 62 validator: true, // [!code ++] ··· 97 100 // ...other plugins 98 101 { 99 102 name: 'zod', 103 + compatibilityVersion: 'mini', 100 104 requests: true, // [!code ++] 101 105 }, 102 106 ], ··· 136 140 // ...other plugins 137 141 { 138 142 name: 'zod', 143 + compatibilityVersion: 'mini', 139 144 responses: true, // [!code ++] 140 145 }, 141 146 ], ··· 168 173 // ...other plugins 169 174 { 170 175 name: 'zod', 176 + compatibilityVersion: 'mini', 171 177 definitions: true, // [!code ++] 172 178 }, 173 179 ], ··· 178 184 179 185 You can customize the naming and casing pattern for `definitions` schemas using the `.name` and `.case` options. 180 186 187 + ## ISO Datetimes 188 + 189 + By default, values without a timezone or with a timezone offset are not allowed in the `z.iso.datetime()` method. 190 + 191 + ### Timezone offsets 192 + 193 + You can allow values with timezone offsets by setting `dates.offset` to `true`. 194 + 195 + ::: code-group 196 + 197 + ```ts [example] 198 + export const zFoo = z.iso.datetime({ offset: true }); 199 + ``` 200 + 201 + ```js [config] 202 + export default { 203 + input: 'hey-api/backend', // sign up at app.heyapi.dev 204 + output: 'src/client', 205 + plugins: [ 206 + // ...other plugins 207 + { 208 + name: 'zod', 209 + compatibilityVersion: 'mini', 210 + dates: { 211 + offset: true, // [!code ++] 212 + }, 213 + }, 214 + ], 215 + }; 216 + ``` 217 + 218 + ::: 219 + 220 + ### Local times 221 + 222 + You can allow values without a timezone by setting `dates.local` to `true`. 223 + 224 + ::: code-group 225 + 226 + ```ts [example] 227 + export const zFoo = z.iso.datetime({ local: true }); 228 + ``` 229 + 230 + ```js [config] 231 + export default { 232 + input: 'hey-api/backend', // sign up at app.heyapi.dev 233 + output: 'src/client', 234 + plugins: [ 235 + // ...other plugins 236 + { 237 + name: 'zod', 238 + compatibilityVersion: 'mini', 239 + dates: { 240 + local: true, // [!code ++] 241 + }, 242 + }, 243 + ], 244 + }; 245 + ``` 246 + 247 + ::: 248 + 181 249 ## Metadata 182 250 183 251 It's often useful to associate a schema with some additional [metadata](https://zod.dev/metadata) for documentation, code generation, AI structured outputs, form validation, and other purposes. If this is your use case, you can set `metadata` to `true` to generate additional metadata about schemas. ··· 198 266 // ...other plugins 199 267 { 200 268 name: 'zod', 269 + compatibilityVersion: 'mini', 201 270 metadata: true, // [!code ++] 202 271 }, 203 272 ], ··· 224 293 // ...other plugins 225 294 { 226 295 name: 'zod', 296 + compatibilityVersion: 'mini', 227 297 types: { 228 298 infer: false, // by default, no `z.infer` types [!code ++] 229 299 },
+72 -2
docs/openapi-ts/plugins/zod/v3.md
··· 36 36 plugins: [ 37 37 // ...other plugins 38 38 { 39 - compatibilityVersion: 3, // [!code ++] 40 39 name: 'zod', // [!code ++] 40 + compatibilityVersion: 3, // [!code ++] 41 41 }, 42 42 ], 43 43 }; ··· 53 53 output: 'src/client', 54 54 plugins: [ 55 55 // ...other plugins 56 - 'zod', 56 + { 57 + name: 'zod', 58 + compatibilityVersion: 3, 59 + }, 57 60 { 58 61 name: '@hey-api/sdk', // [!code ++] 59 62 validator: true, // [!code ++] ··· 97 100 // ...other plugins 98 101 { 99 102 name: 'zod', 103 + compatibilityVersion: 3, 100 104 requests: true, // [!code ++] 101 105 }, 102 106 ], ··· 136 140 // ...other plugins 137 141 { 138 142 name: 'zod', 143 + compatibilityVersion: 3, 139 144 responses: true, // [!code ++] 140 145 }, 141 146 ], ··· 168 173 // ...other plugins 169 174 { 170 175 name: 'zod', 176 + compatibilityVersion: 3, 171 177 definitions: true, // [!code ++] 172 178 }, 173 179 ], ··· 178 184 179 185 You can customize the naming and casing pattern for `definitions` schemas using the `.name` and `.case` options. 180 186 187 + ## ISO Datetimes 188 + 189 + By default, values without a timezone or with a timezone offset are not allowed in the `z.string().datetime()` method. 190 + 191 + ### Timezone offsets 192 + 193 + You can allow values with timezone offsets by setting `dates.offset` to `true`. 194 + 195 + ::: code-group 196 + 197 + ```ts [example] 198 + export const zFoo = z.string().datetime({ offset: true }); 199 + ``` 200 + 201 + ```js [config] 202 + export default { 203 + input: 'hey-api/backend', // sign up at app.heyapi.dev 204 + output: 'src/client', 205 + plugins: [ 206 + // ...other plugins 207 + { 208 + name: 'zod', 209 + compatibilityVersion: 3, 210 + dates: { 211 + offset: true, // [!code ++] 212 + }, 213 + }, 214 + ], 215 + }; 216 + ``` 217 + 218 + ::: 219 + 220 + ### Local times 221 + 222 + You can allow values without a timezone by setting `dates.local` to `true`. 223 + 224 + ::: code-group 225 + 226 + ```ts [example] 227 + export const zFoo = z.string().datetime({ local: true }); 228 + ``` 229 + 230 + ```js [config] 231 + export default { 232 + input: 'hey-api/backend', // sign up at app.heyapi.dev 233 + output: 'src/client', 234 + plugins: [ 235 + // ...other plugins 236 + { 237 + name: 'zod', 238 + compatibilityVersion: 3, 239 + dates: { 240 + local: true, // [!code ++] 241 + }, 242 + }, 243 + ], 244 + }; 245 + ``` 246 + 247 + ::: 248 + 181 249 ## Metadata 182 250 183 251 It's often useful to associate a schema with some additional [metadata](https://v3.zod.dev/?id=describe) for documentation, code generation, AI structured outputs, form validation, and other purposes. If this is your use case, you can set `metadata` to `true` to generate additional metadata about schemas. ··· 196 264 // ...other plugins 197 265 { 198 266 name: 'zod', 267 + compatibilityVersion: 3, 199 268 metadata: true, // [!code ++] 200 269 }, 201 270 ], ··· 222 291 // ...other plugins 223 292 { 224 293 name: 'zod', 294 + compatibilityVersion: 3, 225 295 types: { 226 296 infer: false, // by default, no `z.infer` types [!code ++] 227 297 },
+1 -1
docs/package.json
··· 16 16 }, 17 17 "devDependencies": { 18 18 "sharp": "0.33.5", 19 - "vitepress": "2.0.0-alpha.11", 19 + "vitepress": "2.0.0-alpha.12", 20 20 "vitepress-plugin-llms": "1.7.3", 21 21 "vue": "3.5.13" 22 22 },
+13 -12
packages/openapi-ts-tests/main/test/openapi-ts.config.ts
··· 35 35 getSpecsPath(), 36 36 '3.1.x', 37 37 // 'invalid', 38 - 'openai.yaml', 39 - // 'full.yaml', 38 + // 'openai.yaml', 39 + 'full.yaml', 40 40 // 'validators-circular-ref.json', 41 41 ), 42 42 // https://registry.scalar.com/@lubos-heyapi-dev-team/apis/demo-api-scalar-galaxy/latest?format=json ··· 106 106 }, 107 107 transforms: { 108 108 enums: { 109 - // enabled: false, 109 + enabled: false, 110 110 mode: 'root', 111 111 // name: '{{name}}', 112 112 }, ··· 144 144 // error: '他們_error_{{name}}', 145 145 // name: '你們_errors_{{name}}', 146 146 // }, 147 - name: '@hey-api/typescript', 147 + // name: '@hey-api/typescript', 148 148 // requests: '我們_data_{{name}}', 149 149 // responses: { 150 150 // name: '我_responses_{{name}}', ··· 166 166 // responseStyle: 'data', 167 167 // transformer: '@hey-api/transformers', 168 168 // transformer: true, 169 - // validator: 'zod', 169 + validator: 'valibot', 170 170 // validator: { 171 171 // request: 'zod', 172 172 // response: 'zod', ··· 205 205 // case: 'SCREAMING_SNAKE_CASE', 206 206 // comments: false, 207 207 definitions: 'z{{name}}Definition', 208 - // exportFromIndex: true, 208 + exportFromIndex: true, 209 209 metadata: true, 210 - // name: 'valibot', 210 + name: 'valibot', 211 211 requests: { 212 212 // case: 'SCREAMING_SNAKE_CASE', 213 213 name: 'z{{name}}TestData', ··· 220 220 { 221 221 // case: 'snake_case', 222 222 // comments: false, 223 - compatibilityVersion: 4, 224 - // dates: { 225 - // offset: true, 226 - // }, 223 + compatibilityVersion: 3, 224 + dates: { 225 + local: true, 226 + // offset: true, 227 + }, 227 228 definitions: { 228 229 // name: 'z{{name}}Definition', 229 230 // types: { ··· 232 233 }, 233 234 exportFromIndex: true, 234 235 metadata: true, 235 - // name: 'zod', 236 + name: 'zod', 236 237 // requests: { 237 238 // // case: 'SCREAMING_SNAKE_CASE', 238 239 // // name: 'z{{name}}TestData',
+49 -521
pnpm-lock.yaml
··· 108 108 specifier: 0.33.5 109 109 version: 0.33.5 110 110 vitepress: 111 - specifier: 2.0.0-alpha.11 112 - version: 2.0.0-alpha.11(patch_hash=828e6d2347338f051e3210f9d54e3a79212e9afb26e6b8a746d7ad5f58e9385b)(@types/node@22.10.5)(axios@1.8.2)(change-case@5.4.4)(jiti@2.4.2)(less@4.2.2)(postcss@8.5.6)(sass@1.85.0)(terser@5.39.0)(typescript@5.8.3)(yaml@2.8.0) 111 + specifier: 2.0.0-alpha.12 112 + version: 2.0.0-alpha.12(patch_hash=828e6d2347338f051e3210f9d54e3a79212e9afb26e6b8a746d7ad5f58e9385b)(@types/node@22.10.5)(axios@1.8.2)(change-case@5.4.4)(jiti@2.4.2)(less@4.2.2)(postcss@8.5.6)(sass@1.85.0)(terser@5.39.0)(typescript@5.8.3)(yaml@2.8.0) 113 113 vitepress-plugin-llms: 114 114 specifier: 1.7.3 115 115 version: 1.7.3 ··· 161 161 devDependencies: 162 162 '@angular-devkit/build-angular': 163 163 specifier: 19.2.0 164 - version: 19.2.0(efa4f2cee9584e5120d9fba0b4f995e8) 164 + version: 19.2.0(ad8313302c6bd1bca846720d94a92e78) 165 165 '@angular/cli': 166 166 specifier: 19.2.0 167 167 version: 19.2.0(@types/node@22.10.5)(chokidar@4.0.3) ··· 1142 1142 version: 3.3.2 1143 1143 nuxt: 1144 1144 specifier: 3.14.1592 1145 - version: 3.14.1592(@parcel/watcher@2.5.1)(@types/node@22.10.5)(db0@0.3.1)(encoding@0.1.13)(eslint@9.17.0(jiti@2.4.2))(ioredis@5.6.0)(less@4.2.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.41.1)(sass@1.85.0)(terser@5.39.0)(typescript@5.8.3)(vite@5.4.19(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)) 1145 + version: 3.14.1592(@parcel/watcher@2.5.1)(@types/node@22.10.5)(db0@0.3.1)(encoding@0.1.13)(eslint@9.17.0(jiti@2.4.2))(ioredis@5.6.0)(less@4.2.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.46.2)(sass@1.85.0)(terser@5.39.0)(typescript@5.8.3)(vite@7.1.2(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.0)) 1146 1146 prettier: 1147 1147 specifier: 3.4.2 1148 1148 version: 3.4.2 ··· 12300 12300 vitepress-plugin-llms@1.7.3: 12301 12301 resolution: {integrity: sha512-XhTVbUrKwrzrwlRKd/zT2owvjwi5cdB21HgDRcHqp9PYK4Fy+mBYJUoTcLaJ5IKD1DDrJZMo0DuJeyC5RSDI9Q==} 12302 12302 12303 - vitepress@2.0.0-alpha.11: 12304 - resolution: {integrity: sha512-l3FFkGtcB3u3iMlpnvkCR+MdOYqNaz2z+xPRlgZZnx8Xne4XLgQR0yfEfTqY/UyloTymXwxvRvu443Yo9Cr8pA==} 12303 + vitepress@2.0.0-alpha.12: 12304 + resolution: {integrity: sha512-yZwCwRRepcpN5QeAhwSnEJxS3I6zJcVixqL1dnm6km4cnriLpQyy2sXQDsE5Ti3pxGPbhU51nTMwI+XC1KNnJg==} 12305 12305 hasBin: true 12306 12306 peerDependencies: 12307 12307 markdown-it-mathjax3: ^4 12308 - oxc-minify: ^0.81.0 12308 + oxc-minify: ^0.82.1 12309 12309 postcss: ^8 12310 12310 peerDependenciesMeta: 12311 12311 markdown-it-mathjax3: ··· 12778 12778 dependencies: 12779 12779 '@ampproject/remapping': 2.3.0 12780 12780 '@angular-devkit/architect': 0.1902.0(chokidar@4.0.3) 12781 - '@angular-devkit/build-webpack': 0.1902.0(chokidar@4.0.3)(webpack-dev-server@5.2.0(webpack@5.98.0(esbuild@0.25.2)))(webpack@5.98.0(esbuild@0.25.0)) 12781 + '@angular-devkit/build-webpack': 0.1902.0(chokidar@4.0.3)(webpack-dev-server@5.2.0(webpack@5.98.0(esbuild@0.25.0)))(webpack@5.98.0(esbuild@0.25.0)) 12782 12782 '@angular-devkit/core': 19.2.0(chokidar@4.0.3) 12783 12783 '@angular/build': 19.2.0(@angular/compiler-cli@19.2.0(@angular/compiler@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.8.3))(@angular/compiler@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/platform-server@19.2.0(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/compiler@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.2.0(@angular/animations@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0))))(@angular/ssr@19.2.15(24d23304438129326e0525b7f7a17114))(@types/node@22.10.5)(chokidar@4.0.3)(jiti@2.4.2)(karma@6.4.4)(less@4.2.2)(postcss@8.5.2)(tailwindcss@3.4.9(ts-node@10.9.2(@types/node@22.10.5)(typescript@5.8.3)))(terser@5.39.0)(typescript@5.8.3)(yaml@2.8.0) 12784 12784 '@angular/compiler-cli': 19.2.0(@angular/compiler@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.8.3) ··· 12828 12828 tree-kill: 1.2.2 12829 12829 tslib: 2.8.1 12830 12830 typescript: 5.8.3 12831 - webpack: 5.98.0(esbuild@0.25.0) 12832 - webpack-dev-middleware: 7.4.2(webpack@5.98.0(esbuild@0.25.2)) 12833 - webpack-dev-server: 5.2.0(webpack@5.98.0(esbuild@0.25.2)) 12831 + webpack: 5.98.0(esbuild@0.25.2) 12832 + webpack-dev-middleware: 7.4.2(webpack@5.98.0(esbuild@0.25.0)) 12833 + webpack-dev-server: 5.2.0(webpack@5.98.0(esbuild@0.25.0)) 12834 12834 webpack-merge: 6.0.1 12835 12835 webpack-subresource-integrity: 5.1.0(webpack@5.98.0(esbuild@0.25.0)) 12836 12836 optionalDependencies: ··· 12866 12866 dependencies: 12867 12867 '@ampproject/remapping': 2.3.0 12868 12868 '@angular-devkit/architect': 0.1902.0(chokidar@4.0.3) 12869 - '@angular-devkit/build-webpack': 0.1902.0(chokidar@4.0.3)(webpack-dev-server@5.2.0(webpack@5.98.0(esbuild@0.25.2)))(webpack@5.98.0(esbuild@0.25.0)) 12869 + '@angular-devkit/build-webpack': 0.1902.0(chokidar@4.0.3)(webpack-dev-server@5.2.0(webpack@5.98.0(esbuild@0.25.0)))(webpack@5.98.0(esbuild@0.25.0)) 12870 12870 '@angular-devkit/core': 19.2.0(chokidar@4.0.3) 12871 12871 '@angular/build': 19.2.0(@angular/compiler-cli@19.2.0(@angular/compiler@19.2.0(@angular/core@19.2.0(rxjs@7.8.2)(zone.js@0.15.0)))(typescript@5.8.3))(@angular/compiler@19.2.0(@angular/core@19.2.0(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/platform-server@19.2.0(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/compiler@19.2.0(@angular/core@19.2.0(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/core@19.2.0(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@19.2.0(@angular/animations@19.2.0(@angular/core@19.2.0(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@19.2.0(rxjs@7.8.2)(zone.js@0.15.0))))(@angular/ssr@19.2.15(ceabc1ed65574f458ee716bf39609b5c))(@types/node@22.10.5)(chokidar@4.0.3)(jiti@2.4.2)(karma@6.4.4)(less@4.2.2)(postcss@8.5.2)(tailwindcss@3.4.9(ts-node@10.9.2(@types/node@22.10.5)(typescript@5.8.3)))(terser@5.39.0)(typescript@5.8.3)(yaml@2.8.0) 12872 12872 '@angular/compiler-cli': 19.2.0(@angular/compiler@19.2.0(@angular/core@19.2.0(rxjs@7.8.2)(zone.js@0.15.0)))(typescript@5.8.3) ··· 12916 12916 tree-kill: 1.2.2 12917 12917 tslib: 2.8.1 12918 12918 typescript: 5.8.3 12919 - webpack: 5.98.0(esbuild@0.25.0) 12920 - webpack-dev-middleware: 7.4.2(webpack@5.98.0(esbuild@0.25.2)) 12921 - webpack-dev-server: 5.2.0(webpack@5.98.0(esbuild@0.25.2)) 12922 - webpack-merge: 6.0.1 12923 - webpack-subresource-integrity: 5.1.0(webpack@5.98.0(esbuild@0.25.0)) 12924 - optionalDependencies: 12925 - '@angular/platform-server': 19.2.0(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/compiler@19.2.0(@angular/core@19.2.0(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/core@19.2.0(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@19.2.0(@angular/animations@19.2.0(@angular/core@19.2.0(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@19.2.0(rxjs@7.8.2)(zone.js@0.15.0))) 12926 - '@angular/ssr': 19.2.15(ceabc1ed65574f458ee716bf39609b5c) 12927 - esbuild: 0.25.0 12928 - karma: 6.4.4 12929 - tailwindcss: 3.4.9(ts-node@10.9.2(@types/node@22.10.5)(typescript@5.8.3)) 12930 - transitivePeerDependencies: 12931 - - '@angular/compiler' 12932 - - '@rspack/core' 12933 - - '@swc/core' 12934 - - '@types/node' 12935 - - bufferutil 12936 - - chokidar 12937 - - debug 12938 - - html-webpack-plugin 12939 - - jiti 12940 - - lightningcss 12941 - - node-sass 12942 - - sass-embedded 12943 - - stylus 12944 - - sugarss 12945 - - supports-color 12946 - - tsx 12947 - - uglify-js 12948 - - utf-8-validate 12949 - - vite 12950 - - webpack-cli 12951 - - yaml 12952 - 12953 - '@angular-devkit/build-angular@19.2.0(efa4f2cee9584e5120d9fba0b4f995e8)': 12954 - dependencies: 12955 - '@ampproject/remapping': 2.3.0 12956 - '@angular-devkit/architect': 0.1902.0(chokidar@4.0.3) 12957 - '@angular-devkit/build-webpack': 0.1902.0(chokidar@4.0.3)(webpack-dev-server@5.2.0(webpack@5.98.0(esbuild@0.25.2)))(webpack@5.98.0(esbuild@0.25.0)) 12958 - '@angular-devkit/core': 19.2.0(chokidar@4.0.3) 12959 - '@angular/build': 19.2.0(@angular/compiler-cli@19.2.0(@angular/compiler@19.2.0(@angular/core@19.2.0(rxjs@7.8.2)(zone.js@0.15.0)))(typescript@5.8.3))(@angular/compiler@19.2.0(@angular/core@19.2.0(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/platform-server@19.2.0(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/compiler@19.2.0(@angular/core@19.2.0(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/core@19.2.0(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@19.2.0(@angular/animations@19.2.0(@angular/core@19.2.0(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@19.2.0(@angular/core@19.2.0(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@19.2.0(rxjs@7.8.2)(zone.js@0.15.0))))(@angular/ssr@19.2.15(ceabc1ed65574f458ee716bf39609b5c))(@types/node@22.10.5)(chokidar@4.0.3)(jiti@2.4.2)(karma@6.4.4)(less@4.2.2)(postcss@8.5.2)(tailwindcss@3.4.9(ts-node@10.9.2(@types/node@22.10.5)(typescript@5.8.3)))(terser@5.39.0)(typescript@5.8.3)(yaml@2.8.0) 12960 - '@angular/compiler-cli': 19.2.0(@angular/compiler@19.2.0(@angular/core@19.2.0(rxjs@7.8.2)(zone.js@0.15.0)))(typescript@5.8.3) 12961 - '@babel/core': 7.26.9 12962 - '@babel/generator': 7.26.9 12963 - '@babel/helper-annotate-as-pure': 7.25.9 12964 - '@babel/helper-split-export-declaration': 7.24.7 12965 - '@babel/plugin-transform-async-generator-functions': 7.26.8(@babel/core@7.26.9) 12966 - '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.26.9) 12967 - '@babel/plugin-transform-runtime': 7.26.9(@babel/core@7.26.9) 12968 - '@babel/preset-env': 7.26.9(@babel/core@7.26.9) 12969 - '@babel/runtime': 7.26.9 12970 - '@discoveryjs/json-ext': 0.6.3 12971 - '@ngtools/webpack': 19.2.0(@angular/compiler-cli@19.2.0(@angular/compiler@19.2.0(@angular/core@19.2.0(rxjs@7.8.2)(zone.js@0.15.0)))(typescript@5.8.3))(typescript@5.8.3)(webpack@5.98.0(esbuild@0.25.0)) 12972 - '@vitejs/plugin-basic-ssl': 1.2.0(vite@6.1.0(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.0)) 12973 - ansi-colors: 4.1.3 12974 - autoprefixer: 10.4.20(postcss@8.5.2) 12975 - babel-loader: 9.2.1(@babel/core@7.26.9)(webpack@5.98.0(esbuild@0.25.0)) 12976 - browserslist: 4.24.4 12977 - copy-webpack-plugin: 12.0.2(webpack@5.98.0(esbuild@0.25.0)) 12978 - css-loader: 7.1.2(webpack@5.98.0(esbuild@0.25.0)) 12979 - esbuild-wasm: 0.25.0 12980 - fast-glob: 3.3.3 12981 - http-proxy-middleware: 3.0.3 12982 - istanbul-lib-instrument: 6.0.3 12983 - jsonc-parser: 3.3.1 12984 - karma-source-map-support: 1.4.0 12985 - less: 4.2.2 12986 - less-loader: 12.2.0(less@4.2.2)(webpack@5.98.0(esbuild@0.25.0)) 12987 - license-webpack-plugin: 4.0.2(webpack@5.98.0(esbuild@0.25.0)) 12988 - loader-utils: 3.3.1 12989 - mini-css-extract-plugin: 2.9.2(webpack@5.98.0(esbuild@0.25.0)) 12990 - open: 10.1.0 12991 - ora: 5.4.1 12992 - picomatch: 4.0.2 12993 - piscina: 4.8.0 12994 - postcss: 8.5.2 12995 - postcss-loader: 8.1.1(postcss@8.5.2)(typescript@5.8.3)(webpack@5.98.0(esbuild@0.25.0)) 12996 - resolve-url-loader: 5.0.0 12997 - rxjs: 7.8.1 12998 - sass: 1.85.0 12999 - sass-loader: 16.0.5(sass@1.85.0)(webpack@5.98.0(esbuild@0.25.0)) 13000 - semver: 7.7.1 13001 - source-map-loader: 5.0.0(webpack@5.98.0(esbuild@0.25.0)) 13002 - source-map-support: 0.5.21 13003 - terser: 5.39.0 13004 - tree-kill: 1.2.2 13005 - tslib: 2.8.1 13006 - typescript: 5.8.3 13007 - webpack: 5.98.0(esbuild@0.25.0) 13008 - webpack-dev-middleware: 7.4.2(webpack@5.98.0(esbuild@0.25.2)) 13009 - webpack-dev-server: 5.2.0(webpack@5.98.0(esbuild@0.25.2)) 12919 + webpack: 5.98.0(esbuild@0.25.2) 12920 + webpack-dev-middleware: 7.4.2(webpack@5.98.0(esbuild@0.25.0)) 12921 + webpack-dev-server: 5.2.0(webpack@5.98.0(esbuild@0.25.0)) 13010 12922 webpack-merge: 6.0.1 13011 12923 webpack-subresource-integrity: 5.1.0(webpack@5.98.0(esbuild@0.25.0)) 13012 12924 optionalDependencies: ··· 13038 12950 - webpack-cli 13039 12951 - yaml 13040 12952 13041 - '@angular-devkit/build-webpack@0.1902.0(chokidar@4.0.3)(webpack-dev-server@5.2.0(webpack@5.98.0(esbuild@0.25.2)))(webpack@5.98.0(esbuild@0.25.0))': 12953 + '@angular-devkit/build-webpack@0.1902.0(chokidar@4.0.3)(webpack-dev-server@5.2.0(webpack@5.98.0(esbuild@0.25.0)))(webpack@5.98.0(esbuild@0.25.0))': 13042 12954 dependencies: 13043 12955 '@angular-devkit/architect': 0.1902.0(chokidar@4.0.3) 13044 12956 rxjs: 7.8.1 13045 - webpack: 5.98.0(esbuild@0.25.0) 13046 - webpack-dev-server: 5.2.0(webpack@5.98.0(esbuild@0.25.2)) 12957 + webpack: 5.98.0(esbuild@0.25.2) 12958 + webpack-dev-server: 5.2.0(webpack@5.98.0(esbuild@0.25.0)) 13047 12959 transitivePeerDependencies: 13048 12960 - chokidar 13049 12961 ··· 15405 15317 dependencies: 15406 15318 '@angular/compiler-cli': 19.2.0(@angular/compiler@19.2.0(@angular/core@19.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.8.3) 15407 15319 typescript: 5.8.3 15408 - webpack: 5.98.0(esbuild@0.25.0) 15320 + webpack: 5.98.0(esbuild@0.25.2) 15409 15321 15410 15322 '@ngtools/webpack@19.2.0(@angular/compiler-cli@19.2.0(@angular/compiler@19.2.0(@angular/core@19.2.0(rxjs@7.8.2)(zone.js@0.15.0)))(typescript@5.8.3))(typescript@5.8.3)(webpack@5.98.0(esbuild@0.25.0))': 15411 15323 dependencies: 15412 15324 '@angular/compiler-cli': 19.2.0(@angular/compiler@19.2.0(@angular/core@19.2.0(rxjs@7.8.2)(zone.js@0.15.0)))(typescript@5.8.3) 15413 15325 typescript: 5.8.3 15414 - webpack: 5.98.0(esbuild@0.25.0) 15326 + webpack: 5.98.0(esbuild@0.25.2) 15415 15327 15416 15328 '@nodelib/fs.scandir@2.1.5': 15417 15329 dependencies: ··· 15488 15400 15489 15401 '@nuxt/devalue@2.0.2': {} 15490 15402 15491 - '@nuxt/devtools-kit@1.7.0(magicast@0.3.5)(vite@5.4.19(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))': 15492 - dependencies: 15493 - '@nuxt/kit': 3.15.4(magicast@0.3.5) 15494 - '@nuxt/schema': 3.16.2 15495 - execa: 7.2.0 15496 - vite: 5.4.19(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0) 15497 - transitivePeerDependencies: 15498 - - magicast 15499 - - supports-color 15500 - 15501 15403 '@nuxt/devtools-kit@1.7.0(magicast@0.3.5)(vite@7.1.2(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.0))': 15502 15404 dependencies: 15503 15405 '@nuxt/kit': 3.15.4(magicast@0.3.5) ··· 15568 15470 - utf-8-validate 15569 15471 - vue 15570 15472 15571 - '@nuxt/devtools@1.7.0(rollup@4.41.1)(vite@5.4.19(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue@3.5.13(typescript@5.8.3))': 15572 - dependencies: 15573 - '@antfu/utils': 0.7.10 15574 - '@nuxt/devtools-kit': 1.7.0(magicast@0.3.5)(vite@5.4.19(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)) 15575 - '@nuxt/devtools-wizard': 1.7.0 15576 - '@nuxt/kit': 3.15.4(magicast@0.3.5) 15577 - '@vue/devtools-core': 7.6.8(vite@5.4.19(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue@3.5.13(typescript@5.8.3)) 15578 - '@vue/devtools-kit': 7.6.8 15579 - birpc: 0.2.19 15580 - consola: 3.4.2 15581 - cronstrue: 2.56.0 15582 - destr: 2.0.3 15583 - error-stack-parser-es: 0.1.5 15584 - execa: 7.2.0 15585 - fast-npm-meta: 0.2.2 15586 - flatted: 3.3.3 15587 - get-port-please: 3.1.2 15588 - hookable: 5.5.3 15589 - image-meta: 0.2.1 15590 - is-installed-globally: 1.0.0 15591 - launch-editor: 2.10.0 15592 - local-pkg: 0.5.1 15593 - magicast: 0.3.5 15594 - nypm: 0.4.1 15595 - ohash: 1.1.6 15596 - pathe: 1.1.2 15597 - perfect-debounce: 1.0.0 15598 - pkg-types: 1.3.1 15599 - rc9: 2.1.2 15600 - scule: 1.3.0 15601 - semver: 7.7.2 15602 - simple-git: 3.27.0 15603 - sirv: 3.0.1 15604 - tinyglobby: 0.2.12 15605 - unimport: 3.14.6(rollup@4.41.1) 15606 - vite: 5.4.19(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0) 15607 - vite-plugin-inspect: 0.8.9(@nuxt/kit@3.15.4(magicast@0.3.5))(rollup@4.41.1)(vite@5.4.19(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)) 15608 - vite-plugin-vue-inspector: 5.3.1(vite@5.4.19(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)) 15609 - which: 3.0.1 15610 - ws: 8.18.1 15611 - transitivePeerDependencies: 15612 - - bufferutil 15613 - - rollup 15614 - - supports-color 15615 - - utf-8-validate 15616 - - vue 15617 - 15618 15473 '@nuxt/devtools@1.7.0(rollup@4.46.2)(vite@7.1.2(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.0))(vue@3.5.13(typescript@5.8.3))': 15619 15474 dependencies: 15620 15475 '@antfu/utils': 0.7.10 ··· 15689 15544 - rollup 15690 15545 - supports-color 15691 15546 15692 - '@nuxt/kit@3.14.1592(magicast@0.3.5)(rollup@4.41.1)': 15693 - dependencies: 15694 - '@nuxt/schema': 3.14.1592(magicast@0.3.5)(rollup@4.41.1) 15695 - c12: 2.0.1(magicast@0.3.5) 15696 - consola: 3.4.2 15697 - defu: 6.1.4 15698 - destr: 2.0.3 15699 - globby: 14.1.0 15700 - hash-sum: 2.0.0 15701 - ignore: 6.0.2 15702 - jiti: 2.4.2 15703 - klona: 2.0.6 15704 - knitwork: 1.2.0 15705 - mlly: 1.7.4 15706 - pathe: 1.1.2 15707 - pkg-types: 1.3.1 15708 - scule: 1.3.0 15709 - semver: 7.7.2 15710 - ufo: 1.5.4 15711 - unctx: 2.4.1 15712 - unimport: 3.14.6(rollup@4.41.1) 15713 - untyped: 1.5.2 15714 - transitivePeerDependencies: 15715 - - magicast 15716 - - rollup 15717 - - supports-color 15718 - 15719 15547 '@nuxt/kit@3.14.1592(magicast@0.3.5)(rollup@4.46.2)': 15720 15548 dependencies: 15721 15549 '@nuxt/schema': 3.14.1592(magicast@0.3.5)(rollup@4.46.2) ··· 15829 15657 ufo: 1.5.4 15830 15658 uncrypto: 0.1.3 15831 15659 unimport: 3.14.6(rollup@3.29.5) 15832 - untyped: 1.5.2 15833 - transitivePeerDependencies: 15834 - - magicast 15835 - - rollup 15836 - - supports-color 15837 - 15838 - '@nuxt/schema@3.14.1592(magicast@0.3.5)(rollup@4.41.1)': 15839 - dependencies: 15840 - c12: 2.0.1(magicast@0.3.5) 15841 - compatx: 0.1.8 15842 - consola: 3.4.2 15843 - defu: 6.1.4 15844 - hookable: 5.5.3 15845 - pathe: 1.1.2 15846 - pkg-types: 1.3.1 15847 - scule: 1.3.0 15848 - std-env: 3.8.1 15849 - ufo: 1.5.4 15850 - uncrypto: 0.1.3 15851 - unimport: 3.14.6(rollup@4.41.1) 15852 15660 untyped: 1.5.2 15853 15661 transitivePeerDependencies: 15854 15662 - magicast ··· 16008 15816 - vti 16009 15817 - vue-tsc 16010 15818 16011 - '@nuxt/vite-builder@3.14.1592(@types/node@22.10.5)(eslint@9.17.0(jiti@2.4.2))(less@4.2.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.41.1)(sass@1.85.0)(terser@5.39.0)(typescript@5.8.3)(vue@3.5.13(typescript@5.8.3))': 16012 - dependencies: 16013 - '@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@4.41.1) 16014 - '@rollup/plugin-replace': 6.0.2(rollup@4.41.1) 16015 - '@vitejs/plugin-vue': 5.2.1(vite@5.4.19(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue@3.5.13(typescript@5.8.3)) 16016 - '@vitejs/plugin-vue-jsx': 4.1.1(vite@5.4.19(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue@3.5.13(typescript@5.8.3)) 16017 - autoprefixer: 10.4.20(postcss@8.5.6) 16018 - clear: 0.1.0 16019 - consola: 3.4.2 16020 - cssnano: 7.0.6(postcss@8.5.6) 16021 - defu: 6.1.4 16022 - esbuild: 0.24.2 16023 - escape-string-regexp: 5.0.0 16024 - estree-walker: 3.0.3 16025 - externality: 1.0.2 16026 - get-port-please: 3.1.2 16027 - h3: 1.15.1 16028 - jiti: 2.4.2 16029 - knitwork: 1.2.0 16030 - magic-string: 0.30.17 16031 - mlly: 1.7.4 16032 - ohash: 1.1.6 16033 - pathe: 1.1.2 16034 - perfect-debounce: 1.0.0 16035 - pkg-types: 1.3.1 16036 - postcss: 8.5.6 16037 - rollup-plugin-visualizer: 5.14.0(rollup@4.41.1) 16038 - std-env: 3.8.1 16039 - strip-literal: 2.1.1 16040 - ufo: 1.5.4 16041 - unenv: 1.10.0 16042 - unplugin: 1.16.1 16043 - vite: 5.4.19(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0) 16044 - vite-node: 2.1.9(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0) 16045 - vite-plugin-checker: 0.8.0(eslint@9.17.0(jiti@2.4.2))(optionator@0.9.4)(typescript@5.8.3)(vite@5.4.19(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)) 16046 - vue: 3.5.13(typescript@5.8.3) 16047 - vue-bundle-renderer: 2.1.1 16048 - transitivePeerDependencies: 16049 - - '@biomejs/biome' 16050 - - '@types/node' 16051 - - eslint 16052 - - less 16053 - - lightningcss 16054 - - magicast 16055 - - meow 16056 - - optionator 16057 - - rolldown 16058 - - rollup 16059 - - sass 16060 - - sass-embedded 16061 - - stylelint 16062 - - stylus 16063 - - sugarss 16064 - - supports-color 16065 - - terser 16066 - - typescript 16067 - - vls 16068 - - vti 16069 - - vue-tsc 16070 - 16071 15819 '@nuxt/vite-builder@3.14.1592(@types/node@22.10.5)(eslint@9.17.0(jiti@2.4.2))(less@4.2.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.46.2)(sass@1.85.0)(terser@5.39.0)(typescript@5.8.3)(vue@3.5.13(typescript@5.8.3))': 16072 15820 dependencies: 16073 15821 '@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@4.46.2) ··· 18184 17932 dependencies: 18185 17933 '@vue/devtools-kit': 8.0.0 18186 17934 18187 - '@vue/devtools-core@7.6.8(vite@5.4.19(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue@3.5.13(typescript@5.8.3))': 18188 - dependencies: 18189 - '@vue/devtools-kit': 7.7.2 18190 - '@vue/devtools-shared': 7.7.2 18191 - mitt: 3.0.1 18192 - nanoid: 5.1.5 18193 - pathe: 1.1.2 18194 - vite-hot-client: 0.2.4(vite@5.4.19(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)) 18195 - vue: 3.5.13(typescript@5.8.3) 18196 - transitivePeerDependencies: 18197 - - vite 18198 - 18199 17935 '@vue/devtools-core@7.6.8(vite@7.1.2(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.0))(vue@3.5.13(typescript@5.8.3))': 18200 17936 dependencies: 18201 17937 '@vue/devtools-kit': 7.7.2 ··· 18765 18501 '@babel/core': 7.26.9 18766 18502 find-cache-dir: 4.0.0 18767 18503 schema-utils: 4.3.0 18768 - webpack: 5.98.0(esbuild@0.25.0) 18504 + webpack: 5.98.0(esbuild@0.25.2) 18769 18505 18770 18506 babel-plugin-polyfill-corejs2@0.4.12(@babel/core@7.26.9): 18771 18507 dependencies: ··· 19312 19048 normalize-path: 3.0.0 19313 19049 schema-utils: 4.3.0 19314 19050 serialize-javascript: 6.0.2 19315 - webpack: 5.98.0(esbuild@0.25.0) 19051 + webpack: 5.98.0(esbuild@0.25.2) 19316 19052 19317 19053 core-js-compat@3.41.0: 19318 19054 dependencies: ··· 19384 19120 postcss-value-parser: 4.2.0 19385 19121 semver: 7.7.2 19386 19122 optionalDependencies: 19387 - webpack: 5.98.0(esbuild@0.25.0) 19123 + webpack: 5.98.0(esbuild@0.25.2) 19388 19124 19389 19125 css-select@5.1.0: 19390 19126 dependencies: ··· 20054 19790 '@typescript-eslint/parser': 8.29.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.3) 20055 19791 eslint: 9.17.0(jiti@2.4.2) 20056 19792 eslint-import-resolver-node: 0.3.9 20057 - eslint-import-resolver-typescript: 3.8.5(eslint-plugin-import@2.31.0)(eslint@9.17.0(jiti@2.4.2)) 20058 - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-typescript@3.8.5)(eslint@9.17.0(jiti@2.4.2)) 19793 + eslint-import-resolver-typescript: 3.8.5(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2)) 19794 + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-typescript@3.8.5(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2)) 20059 19795 eslint-plugin-jsx-a11y: 6.10.2(eslint@9.17.0(jiti@2.4.2)) 20060 19796 eslint-plugin-react: 7.37.4(eslint@9.17.0(jiti@2.4.2)) 20061 19797 eslint-plugin-react-hooks: 5.2.0(eslint@9.17.0(jiti@2.4.2)) ··· 20078 19814 transitivePeerDependencies: 20079 19815 - supports-color 20080 19816 20081 - eslint-import-resolver-typescript@3.8.5(eslint-plugin-import@2.31.0)(eslint@9.17.0(jiti@2.4.2)): 19817 + eslint-import-resolver-typescript@3.8.5(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2)): 20082 19818 dependencies: 20083 19819 '@nolyfill/is-core-module': 1.0.39 20084 19820 debug: 4.4.0(supports-color@9.4.0) ··· 20089 19825 stable-hash: 0.0.4 20090 19826 tinyglobby: 0.2.12 20091 19827 optionalDependencies: 20092 - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-typescript@3.8.5)(eslint@9.17.0(jiti@2.4.2)) 19828 + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-typescript@3.8.5(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2)) 20093 19829 transitivePeerDependencies: 20094 19830 - supports-color 20095 19831 20096 - eslint-module-utils@2.12.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.8.5)(eslint@9.17.0(jiti@2.4.2)): 19832 + eslint-module-utils@2.12.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.8.5(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2)): 20097 19833 dependencies: 20098 19834 debug: 3.2.7 20099 19835 optionalDependencies: 20100 19836 '@typescript-eslint/parser': 8.29.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.3) 20101 19837 eslint: 9.17.0(jiti@2.4.2) 20102 19838 eslint-import-resolver-node: 0.3.9 20103 - eslint-import-resolver-typescript: 3.8.5(eslint-plugin-import@2.31.0)(eslint@9.17.0(jiti@2.4.2)) 19839 + eslint-import-resolver-typescript: 3.8.5(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2)) 20104 19840 transitivePeerDependencies: 20105 19841 - supports-color 20106 19842 20107 - eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-typescript@3.8.5)(eslint@9.17.0(jiti@2.4.2)): 19843 + eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-typescript@3.8.5(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2)): 20108 19844 dependencies: 20109 19845 '@rtsao/scc': 1.1.0 20110 19846 array-includes: 3.1.8 ··· 20115 19851 doctrine: 2.1.0 20116 19852 eslint: 9.17.0(jiti@2.4.2) 20117 19853 eslint-import-resolver-node: 0.3.9 20118 - eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.8.5)(eslint@9.17.0(jiti@2.4.2)) 19854 + eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.8.5(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2)) 20119 19855 hasown: 2.0.2 20120 19856 is-core-module: 2.16.1 20121 19857 is-glob: 4.0.3 ··· 21207 20943 transitivePeerDependencies: 21208 20944 - rollup 21209 20945 21210 - impound@0.2.2(rollup@4.41.1): 21211 - dependencies: 21212 - '@rollup/pluginutils': 5.1.4(rollup@4.41.1) 21213 - mlly: 1.7.4 21214 - mocked-exports: 0.1.1 21215 - pathe: 2.0.3 21216 - unplugin: 2.3.2 21217 - transitivePeerDependencies: 21218 - - rollup 21219 - 21220 20946 impound@0.2.2(rollup@4.46.2): 21221 20947 dependencies: 21222 20948 '@rollup/pluginutils': 5.1.4(rollup@4.46.2) ··· 21786 21512 dependencies: 21787 21513 less: 4.2.2 21788 21514 optionalDependencies: 21789 - webpack: 5.98.0(esbuild@0.25.0) 21515 + webpack: 5.98.0(esbuild@0.25.2) 21790 21516 21791 21517 less@4.2.2: 21792 21518 dependencies: ··· 21811 21537 dependencies: 21812 21538 webpack-sources: 3.2.3 21813 21539 optionalDependencies: 21814 - webpack: 5.98.0(esbuild@0.25.0) 21540 + webpack: 5.98.0(esbuild@0.25.2) 21815 21541 21816 21542 light-my-request@6.6.0: 21817 21543 dependencies: ··· 22334 22060 dependencies: 22335 22061 schema-utils: 4.3.0 22336 22062 tapable: 2.2.1 22337 - webpack: 5.98.0(esbuild@0.25.0) 22063 + webpack: 5.98.0(esbuild@0.25.2) 22338 22064 22339 22065 minimalistic-assert@1.0.1: {} 22340 22066 ··· 22906 22632 - vue-tsc 22907 22633 - xml2js 22908 22634 22909 - nuxt@3.14.1592(@parcel/watcher@2.5.1)(@types/node@22.10.5)(db0@0.3.1)(encoding@0.1.13)(eslint@9.17.0(jiti@2.4.2))(ioredis@5.6.0)(less@4.2.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.41.1)(sass@1.85.0)(terser@5.39.0)(typescript@5.8.3)(vite@5.4.19(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)): 22910 - dependencies: 22911 - '@nuxt/devalue': 2.0.2 22912 - '@nuxt/devtools': 1.7.0(rollup@4.41.1)(vite@5.4.19(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0))(vue@3.5.13(typescript@5.8.3)) 22913 - '@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@4.41.1) 22914 - '@nuxt/schema': 3.14.1592(magicast@0.3.5)(rollup@4.41.1) 22915 - '@nuxt/telemetry': 2.6.5(magicast@0.3.5) 22916 - '@nuxt/vite-builder': 3.14.1592(@types/node@22.10.5)(eslint@9.17.0(jiti@2.4.2))(less@4.2.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.41.1)(sass@1.85.0)(terser@5.39.0)(typescript@5.8.3)(vue@3.5.13(typescript@5.8.3)) 22917 - '@unhead/dom': 1.11.20 22918 - '@unhead/shared': 1.11.20 22919 - '@unhead/ssr': 1.11.20 22920 - '@unhead/vue': 1.11.20(vue@3.5.13(typescript@5.8.3)) 22921 - '@vue/shared': 3.5.18 22922 - acorn: 8.14.0 22923 - c12: 2.0.1(magicast@0.3.5) 22924 - chokidar: 4.0.3 22925 - compatx: 0.1.8 22926 - consola: 3.4.2 22927 - cookie-es: 1.2.2 22928 - defu: 6.1.4 22929 - destr: 2.0.3 22930 - devalue: 5.1.1 22931 - errx: 0.1.0 22932 - esbuild: 0.24.2 22933 - escape-string-regexp: 5.0.0 22934 - estree-walker: 3.0.3 22935 - globby: 14.1.0 22936 - h3: 1.15.1 22937 - hookable: 5.5.3 22938 - ignore: 6.0.2 22939 - impound: 0.2.2(rollup@4.41.1) 22940 - jiti: 2.4.2 22941 - klona: 2.0.6 22942 - knitwork: 1.2.0 22943 - magic-string: 0.30.17 22944 - mlly: 1.7.4 22945 - nanotar: 0.1.1 22946 - nitropack: 2.11.6(encoding@0.1.13)(typescript@5.8.3) 22947 - nuxi: 3.22.5 22948 - nypm: 0.3.12 22949 - ofetch: 1.4.1 22950 - ohash: 1.1.6 22951 - pathe: 1.1.2 22952 - perfect-debounce: 1.0.0 22953 - pkg-types: 1.3.1 22954 - radix3: 1.1.2 22955 - scule: 1.3.0 22956 - semver: 7.7.2 22957 - std-env: 3.8.1 22958 - strip-literal: 2.1.1 22959 - tinyglobby: 0.2.10 22960 - ufo: 1.5.4 22961 - ultrahtml: 1.5.3 22962 - uncrypto: 0.1.3 22963 - unctx: 2.4.1 22964 - unenv: 1.10.0 22965 - unhead: 1.11.20 22966 - unimport: 3.14.6(rollup@4.41.1) 22967 - unplugin: 1.16.1 22968 - unplugin-vue-router: 0.10.9(rollup@4.41.1)(vue-router@4.5.0(vue@3.5.13(typescript@5.8.3)))(vue@3.5.13(typescript@5.8.3)) 22969 - unstorage: 1.15.0(db0@0.3.1)(ioredis@5.6.0) 22970 - untyped: 1.5.2 22971 - vue: 3.5.13(typescript@5.8.3) 22972 - vue-bundle-renderer: 2.1.1 22973 - vue-devtools-stub: 0.1.0 22974 - vue-router: 4.5.0(vue@3.5.13(typescript@5.8.3)) 22975 - optionalDependencies: 22976 - '@parcel/watcher': 2.5.1 22977 - '@types/node': 22.10.5 22978 - transitivePeerDependencies: 22979 - - '@azure/app-configuration' 22980 - - '@azure/cosmos' 22981 - - '@azure/data-tables' 22982 - - '@azure/identity' 22983 - - '@azure/keyvault-secrets' 22984 - - '@azure/storage-blob' 22985 - - '@biomejs/biome' 22986 - - '@capacitor/preferences' 22987 - - '@deno/kv' 22988 - - '@electric-sql/pglite' 22989 - - '@libsql/client' 22990 - - '@netlify/blobs' 22991 - - '@planetscale/database' 22992 - - '@upstash/redis' 22993 - - '@vercel/blob' 22994 - - '@vercel/kv' 22995 - - aws4fetch 22996 - - better-sqlite3 22997 - - bufferutil 22998 - - db0 22999 - - drizzle-orm 23000 - - encoding 23001 - - eslint 23002 - - idb-keyval 23003 - - ioredis 23004 - - less 23005 - - lightningcss 23006 - - magicast 23007 - - meow 23008 - - mysql2 23009 - - optionator 23010 - - rolldown 23011 - - rollup 23012 - - sass 23013 - - sass-embedded 23014 - - sqlite3 23015 - - stylelint 23016 - - stylus 23017 - - sugarss 23018 - - supports-color 23019 - - terser 23020 - - typescript 23021 - - uploadthing 23022 - - utf-8-validate 23023 - - vite 23024 - - vls 23025 - - vti 23026 - - vue-tsc 23027 - - xml2js 23028 - 23029 22635 nuxt@3.14.1592(@parcel/watcher@2.5.1)(@types/node@22.10.5)(db0@0.3.1)(encoding@0.1.13)(eslint@9.17.0(jiti@2.4.2))(ioredis@5.6.0)(less@4.2.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.46.2)(sass@1.85.0)(terser@5.39.0)(typescript@5.8.3)(vite@7.1.2(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.0)): 23030 22636 dependencies: 23031 22637 '@nuxt/devalue': 2.0.2 ··· 23679 23285 postcss: 8.5.2 23680 23286 semver: 7.7.2 23681 23287 optionalDependencies: 23682 - webpack: 5.98.0(esbuild@0.25.0) 23288 + webpack: 5.98.0(esbuild@0.25.2) 23683 23289 transitivePeerDependencies: 23684 23290 - typescript 23685 23291 ··· 24512 24118 neo-async: 2.6.2 24513 24119 optionalDependencies: 24514 24120 sass: 1.85.0 24515 - webpack: 5.98.0(esbuild@0.25.0) 24121 + webpack: 5.98.0(esbuild@0.25.2) 24516 24122 24517 24123 sass@1.85.0: 24518 24124 dependencies: ··· 24857 24463 dependencies: 24858 24464 iconv-lite: 0.6.3 24859 24465 source-map-js: 1.2.1 24860 - webpack: 5.98.0(esbuild@0.25.0) 24466 + webpack: 5.98.0(esbuild@0.25.2) 24861 24467 24862 24468 source-map-support@0.5.21: 24863 24469 dependencies: ··· 25240 24846 25241 24847 term-size@2.2.1: {} 25242 24848 25243 - terser-webpack-plugin@5.3.14(esbuild@0.25.0)(webpack@5.98.0(esbuild@0.25.2)): 24849 + terser-webpack-plugin@5.3.14(esbuild@0.25.2)(webpack@5.98.0(esbuild@0.25.0)): 25244 24850 dependencies: 25245 24851 '@jridgewell/trace-mapping': 0.3.25 25246 24852 jest-worker: 27.5.1 25247 24853 schema-utils: 4.3.0 25248 24854 serialize-javascript: 6.0.2 25249 24855 terser: 5.39.0 25250 - webpack: 5.98.0(esbuild@0.25.0) 24856 + webpack: 5.98.0(esbuild@0.25.2) 25251 24857 optionalDependencies: 25252 - esbuild: 0.25.0 24858 + esbuild: 0.25.2 25253 24859 25254 24860 terser@5.39.0: 25255 24861 dependencies: ··· 25666 25272 transitivePeerDependencies: 25667 25273 - rollup 25668 25274 25669 - unimport@3.14.6(rollup@4.41.1): 25670 - dependencies: 25671 - '@rollup/pluginutils': 5.1.4(rollup@4.41.1) 25672 - acorn: 8.14.1 25673 - escape-string-regexp: 5.0.0 25674 - estree-walker: 3.0.3 25675 - fast-glob: 3.3.3 25676 - local-pkg: 1.1.1 25677 - magic-string: 0.30.17 25678 - mlly: 1.7.4 25679 - pathe: 2.0.3 25680 - picomatch: 4.0.2 25681 - pkg-types: 1.3.1 25682 - scule: 1.3.0 25683 - strip-literal: 2.1.1 25684 - unplugin: 1.16.1 25685 - transitivePeerDependencies: 25686 - - rollup 25687 - 25688 25275 unimport@3.14.6(rollup@4.46.2): 25689 25276 dependencies: 25690 25277 '@rollup/pluginutils': 5.1.4(rollup@4.46.2) ··· 25810 25397 - rollup 25811 25398 - vue 25812 25399 25813 - unplugin-vue-router@0.10.9(rollup@4.41.1)(vue-router@4.5.0(vue@3.5.13(typescript@5.8.3)))(vue@3.5.13(typescript@5.8.3)): 25814 - dependencies: 25815 - '@babel/types': 7.26.10 25816 - '@rollup/pluginutils': 5.1.4(rollup@4.41.1) 25817 - '@vue-macros/common': 1.16.1(vue@3.5.13(typescript@5.8.3)) 25818 - ast-walker-scope: 0.6.2 25819 - chokidar: 3.6.0 25820 - fast-glob: 3.3.3 25821 - json5: 2.2.3 25822 - local-pkg: 0.5.1 25823 - magic-string: 0.30.17 25824 - mlly: 1.7.4 25825 - pathe: 1.1.2 25826 - scule: 1.3.0 25827 - unplugin: 2.0.0-beta.1 25828 - yaml: 2.8.0 25829 - optionalDependencies: 25830 - vue-router: 4.5.0(vue@3.5.13(typescript@5.8.3)) 25831 - transitivePeerDependencies: 25832 - - rollup 25833 - - vue 25834 - 25835 25400 unplugin-vue-router@0.10.9(rollup@4.46.2)(vue-router@4.5.0(vue@3.5.13(typescript@5.8.3)))(vue@3.5.13(typescript@5.8.3)): 25836 25401 dependencies: 25837 25402 '@babel/types': 7.26.10 ··· 25996 25561 '@types/unist': 3.0.3 25997 25562 vfile-message: 4.0.2 25998 25563 25999 - vite-hot-client@0.2.4(vite@5.4.19(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)): 26000 - dependencies: 26001 - vite: 5.4.19(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0) 26002 - 26003 25564 vite-hot-client@0.2.4(vite@7.1.2(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.0)): 26004 25565 dependencies: 26005 25566 vite: 7.1.2(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.0) ··· 26083 25644 - rollup 26084 25645 - supports-color 26085 25646 26086 - vite-plugin-inspect@0.8.9(@nuxt/kit@3.15.4(magicast@0.3.5))(rollup@4.41.1)(vite@5.4.19(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)): 26087 - dependencies: 26088 - '@antfu/utils': 0.7.10 26089 - '@rollup/pluginutils': 5.1.4(rollup@4.41.1) 26090 - debug: 4.4.0(supports-color@9.4.0) 26091 - error-stack-parser-es: 0.1.5 26092 - fs-extra: 11.3.0 26093 - open: 10.1.0 26094 - perfect-debounce: 1.0.0 26095 - picocolors: 1.1.1 26096 - sirv: 3.0.1 26097 - vite: 5.4.19(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0) 26098 - optionalDependencies: 26099 - '@nuxt/kit': 3.15.4(magicast@0.3.5) 26100 - transitivePeerDependencies: 26101 - - rollup 26102 - - supports-color 26103 - 26104 25647 vite-plugin-inspect@0.8.9(@nuxt/kit@3.15.4(magicast@0.3.5))(rollup@4.46.2)(vite@7.1.2(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.0)): 26105 25648 dependencies: 26106 25649 '@antfu/utils': 0.7.10 ··· 26134 25677 - rollup 26135 25678 - supports-color 26136 25679 - vue 26137 - 26138 - vite-plugin-vue-inspector@5.3.1(vite@5.4.19(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)): 26139 - dependencies: 26140 - '@babel/core': 7.26.10 26141 - '@babel/plugin-proposal-decorators': 7.25.9(@babel/core@7.26.10) 26142 - '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.10) 26143 - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.26.10) 26144 - '@babel/plugin-transform-typescript': 7.26.8(@babel/core@7.26.10) 26145 - '@vue/babel-plugin-jsx': 1.4.0(@babel/core@7.26.10) 26146 - '@vue/compiler-dom': 3.5.18 26147 - kolorist: 1.8.0 26148 - magic-string: 0.30.17 26149 - vite: 5.4.19(@types/node@22.10.5)(less@4.2.2)(sass@1.85.0)(terser@5.39.0) 26150 - transitivePeerDependencies: 26151 - - supports-color 26152 25680 26153 25681 vite-plugin-vue-inspector@5.3.1(vite@7.1.2(@types/node@22.10.5)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.0)): 26154 25682 dependencies: ··· 26245 25773 - '@75lb/nature' 26246 25774 - supports-color 26247 25775 26248 - vitepress@2.0.0-alpha.11(patch_hash=828e6d2347338f051e3210f9d54e3a79212e9afb26e6b8a746d7ad5f58e9385b)(@types/node@22.10.5)(axios@1.8.2)(change-case@5.4.4)(jiti@2.4.2)(less@4.2.2)(postcss@8.5.6)(sass@1.85.0)(terser@5.39.0)(typescript@5.8.3)(yaml@2.8.0): 25776 + vitepress@2.0.0-alpha.12(patch_hash=828e6d2347338f051e3210f9d54e3a79212e9afb26e6b8a746d7ad5f58e9385b)(@types/node@22.10.5)(axios@1.8.2)(change-case@5.4.4)(jiti@2.4.2)(less@4.2.2)(postcss@8.5.6)(sass@1.85.0)(terser@5.39.0)(typescript@5.8.3)(yaml@2.8.0): 26249 25777 dependencies: 26250 25778 '@docsearch/css': 4.0.0-beta.7 26251 25779 '@docsearch/js': 4.0.0-beta.7 ··· 26475 26003 26476 26004 webidl-conversions@7.0.0: {} 26477 26005 26478 - webpack-dev-middleware@7.4.2(webpack@5.98.0(esbuild@0.25.2)): 26006 + webpack-dev-middleware@7.4.2(webpack@5.98.0(esbuild@0.25.0)): 26479 26007 dependencies: 26480 26008 colorette: 2.0.20 26481 26009 memfs: 4.17.0 ··· 26484 26012 range-parser: 1.2.1 26485 26013 schema-utils: 4.3.0 26486 26014 optionalDependencies: 26487 - webpack: 5.98.0(esbuild@0.25.0) 26015 + webpack: 5.98.0(esbuild@0.25.2) 26488 26016 26489 - webpack-dev-server@5.2.0(webpack@5.98.0(esbuild@0.25.2)): 26017 + webpack-dev-server@5.2.0(webpack@5.98.0(esbuild@0.25.0)): 26490 26018 dependencies: 26491 26019 '@types/bonjour': 3.5.13 26492 26020 '@types/connect-history-api-fallback': 1.5.4 ··· 26513 26041 serve-index: 1.9.1 26514 26042 sockjs: 0.3.24 26515 26043 spdy: 4.0.2 26516 - webpack-dev-middleware: 7.4.2(webpack@5.98.0(esbuild@0.25.2)) 26044 + webpack-dev-middleware: 7.4.2(webpack@5.98.0(esbuild@0.25.0)) 26517 26045 ws: 8.18.1 26518 26046 optionalDependencies: 26519 - webpack: 5.98.0(esbuild@0.25.0) 26047 + webpack: 5.98.0(esbuild@0.25.2) 26520 26048 transitivePeerDependencies: 26521 26049 - bufferutil 26522 26050 - debug ··· 26534 26062 webpack-subresource-integrity@5.1.0(webpack@5.98.0(esbuild@0.25.0)): 26535 26063 dependencies: 26536 26064 typed-assert: 1.0.9 26537 - webpack: 5.98.0(esbuild@0.25.0) 26065 + webpack: 5.98.0(esbuild@0.25.2) 26538 26066 26539 26067 webpack-virtual-modules@0.6.2: {} 26540 26068 26541 - webpack@5.98.0(esbuild@0.25.0): 26069 + webpack@5.98.0(esbuild@0.25.2): 26542 26070 dependencies: 26543 26071 '@types/eslint-scope': 3.7.7 26544 26072 '@types/estree': 1.0.6 ··· 26560 26088 neo-async: 2.6.2 26561 26089 schema-utils: 4.3.0 26562 26090 tapable: 2.2.1 26563 - terser-webpack-plugin: 5.3.14(esbuild@0.25.0)(webpack@5.98.0(esbuild@0.25.2)) 26091 + terser-webpack-plugin: 5.3.14(esbuild@0.25.2)(webpack@5.98.0(esbuild@0.25.0)) 26564 26092 watchpack: 2.4.2 26565 26093 webpack-sources: 3.2.3 26566 26094 transitivePeerDependencies: