@leo-h/create-nodejs-app 1.0.37 → 1.0.39
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/package.json +1 -1
- package/templates/react-vite/.env.development +8 -0
- package/templates/react-vite/.env.example +4 -4
- package/templates/react-vite/api/errors.ts +14 -0
- package/templates/react-vite/{src/api → api}/swr-fetcher.ts +11 -10
- package/templates/react-vite/eslint.config.js +1 -1
- package/templates/react-vite/gitignore +7 -0
- package/templates/react-vite/orval.config.ts +5 -13
- package/templates/react-vite/package.json +23 -24
- package/templates/react-vite/pnpm-lock.yaml +566 -516
- package/templates/react-vite/scripts/orval-generate-api-definition.ts +2 -19
- package/templates/react-vite/src/app.tsx +1 -9
- package/templates/react-vite/src/lib/zod-i18n-pt-br-translation.json +101 -0
- package/templates/react-vite/src/lib/zod-i18n.ts +12 -4
- package/templates/react-vite/src/pages/_layouts/app.tsx +7 -5
- package/templates/react-vite/src/pages/_layouts/auth.tsx +7 -5
- package/templates/react-vite/src/pages/app/dashboard/dashboard.tsx +2 -1
- package/templates/react-vite/src/pages/auth/sign-in/index.tsx +4 -2
- package/templates/react-vite/src/private-env.ts +18 -0
- package/templates/react-vite/src/public-env.ts +30 -0
- package/templates/react-vite/src/routes.tsx +29 -45
- package/templates/react-vite/tsconfig.app.json +3 -2
- package/templates/react-vite/tsconfig.json +2 -1
- package/templates/react-vite/tsconfig.node.json +8 -2
- package/templates/react-vite/vite.config.ts +1 -1
- package/templates/react-vite/src/api/errors/api-error.ts +0 -7
- package/templates/react-vite/src/api/errors/api-unexpected-response-error.ts +0 -8
- package/templates/react-vite/src/env.ts +0 -19
- package/templates/react-vite/src/hooks/use-current-route-handle-params.ts +0 -16
- package/templates/react-vite/src/lib/zod-i18n-translation-for-end-users.json +0 -103
|
@@ -9,93 +9,90 @@ importers:
|
|
|
9
9
|
.:
|
|
10
10
|
dependencies:
|
|
11
11
|
'@hookform/resolvers':
|
|
12
|
-
specifier:
|
|
13
|
-
version:
|
|
12
|
+
specifier: 5.0.1
|
|
13
|
+
version: 5.0.1(react-hook-form@7.56.1(react@19.1.0))
|
|
14
14
|
i18next:
|
|
15
|
-
specifier:
|
|
16
|
-
version:
|
|
15
|
+
specifier: 25.0.2
|
|
16
|
+
version: 25.0.2(typescript@5.8.3)
|
|
17
17
|
react:
|
|
18
|
-
specifier:
|
|
19
|
-
version:
|
|
18
|
+
specifier: 19.1.0
|
|
19
|
+
version: 19.1.0
|
|
20
20
|
react-dom:
|
|
21
|
-
specifier:
|
|
22
|
-
version:
|
|
23
|
-
react-helmet-async:
|
|
24
|
-
specifier: 2.0.5
|
|
25
|
-
version: 2.0.5(react@18.3.1)
|
|
21
|
+
specifier: 19.1.0
|
|
22
|
+
version: 19.1.0(react@19.1.0)
|
|
26
23
|
react-hook-form:
|
|
27
|
-
specifier: 7.
|
|
28
|
-
version: 7.
|
|
24
|
+
specifier: 7.56.1
|
|
25
|
+
version: 7.56.1(react@19.1.0)
|
|
29
26
|
react-router:
|
|
30
|
-
specifier: 7.
|
|
31
|
-
version: 7.
|
|
27
|
+
specifier: 7.5.3
|
|
28
|
+
version: 7.5.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
|
|
32
29
|
swr:
|
|
33
30
|
specifier: 2.3.3
|
|
34
|
-
version: 2.3.3(react@
|
|
31
|
+
version: 2.3.3(react@19.1.0)
|
|
35
32
|
zod:
|
|
36
|
-
specifier: 3.24.
|
|
37
|
-
version: 3.24.
|
|
33
|
+
specifier: 3.24.3
|
|
34
|
+
version: 3.24.3
|
|
38
35
|
zod-i18n-map:
|
|
39
36
|
specifier: 2.27.0
|
|
40
|
-
version: 2.27.0(i18next@
|
|
37
|
+
version: 2.27.0(i18next@25.0.2(typescript@5.8.3))(zod@3.24.3)
|
|
41
38
|
devDependencies:
|
|
42
39
|
'@eslint/js':
|
|
43
|
-
specifier: 9.
|
|
44
|
-
version: 9.
|
|
40
|
+
specifier: 9.25.1
|
|
41
|
+
version: 9.25.1
|
|
45
42
|
'@types/react':
|
|
46
|
-
specifier:
|
|
47
|
-
version:
|
|
43
|
+
specifier: 19.1.2
|
|
44
|
+
version: 19.1.2
|
|
48
45
|
'@types/react-dom':
|
|
49
|
-
specifier:
|
|
50
|
-
version:
|
|
46
|
+
specifier: 19.1.2
|
|
47
|
+
version: 19.1.2(@types/react@19.1.2)
|
|
51
48
|
'@vitejs/plugin-react':
|
|
52
|
-
specifier: 4.
|
|
53
|
-
version: 4.
|
|
49
|
+
specifier: 4.4.1
|
|
50
|
+
version: 4.4.1(vite@6.3.3(@types/node@22.10.5)(tsx@4.19.4)(yaml@2.7.1))
|
|
54
51
|
eslint:
|
|
55
|
-
specifier: 9.
|
|
56
|
-
version: 9.
|
|
52
|
+
specifier: 9.25.1
|
|
53
|
+
version: 9.25.1
|
|
57
54
|
eslint-config-prettier:
|
|
58
|
-
specifier:
|
|
59
|
-
version:
|
|
55
|
+
specifier: 10.1.2
|
|
56
|
+
version: 10.1.2(eslint@9.25.1)
|
|
60
57
|
eslint-plugin-react-hooks:
|
|
61
58
|
specifier: 5.2.0
|
|
62
|
-
version: 5.2.0(eslint@9.
|
|
59
|
+
version: 5.2.0(eslint@9.25.1)
|
|
63
60
|
eslint-plugin-react-refresh:
|
|
64
|
-
specifier: 0.4.
|
|
65
|
-
version: 0.4.
|
|
61
|
+
specifier: 0.4.20
|
|
62
|
+
version: 0.4.20(eslint@9.25.1)
|
|
66
63
|
globals:
|
|
67
|
-
specifier:
|
|
68
|
-
version:
|
|
64
|
+
specifier: 16.0.0
|
|
65
|
+
version: 16.0.0
|
|
69
66
|
husky:
|
|
70
67
|
specifier: 9.1.7
|
|
71
68
|
version: 9.1.7
|
|
72
69
|
lint-staged:
|
|
73
|
-
specifier: 15.5.
|
|
74
|
-
version: 15.5.
|
|
70
|
+
specifier: 15.5.1
|
|
71
|
+
version: 15.5.1
|
|
75
72
|
orval:
|
|
76
|
-
specifier: 7.
|
|
77
|
-
version: 7.
|
|
73
|
+
specifier: 7.9.0
|
|
74
|
+
version: 7.9.0(openapi-types@12.1.3)
|
|
78
75
|
prettier:
|
|
79
76
|
specifier: 3.5.3
|
|
80
77
|
version: 3.5.3
|
|
81
78
|
tsx:
|
|
82
|
-
specifier: 4.19.
|
|
83
|
-
version: 4.19.
|
|
79
|
+
specifier: 4.19.4
|
|
80
|
+
version: 4.19.4
|
|
84
81
|
type-fest:
|
|
85
|
-
specifier: 4.
|
|
86
|
-
version: 4.
|
|
82
|
+
specifier: 4.40.1
|
|
83
|
+
version: 4.40.1
|
|
87
84
|
typescript:
|
|
88
|
-
specifier: ~5.8.
|
|
89
|
-
version: 5.8.
|
|
85
|
+
specifier: ~5.8.3
|
|
86
|
+
version: 5.8.3
|
|
90
87
|
typescript-eslint:
|
|
91
|
-
specifier: 8.
|
|
92
|
-
version: 8.
|
|
88
|
+
specifier: 8.31.1
|
|
89
|
+
version: 8.31.1(eslint@9.25.1)(typescript@5.8.3)
|
|
93
90
|
vite:
|
|
94
|
-
specifier: 6.
|
|
95
|
-
version: 6.
|
|
91
|
+
specifier: 6.3.3
|
|
92
|
+
version: 6.3.3(@types/node@22.10.5)(tsx@4.19.4)(yaml@2.7.1)
|
|
96
93
|
vite-tsconfig-paths:
|
|
97
94
|
specifier: 5.1.4
|
|
98
|
-
version: 5.1.4(typescript@5.8.
|
|
95
|
+
version: 5.1.4(typescript@5.8.3)(vite@6.3.3(@types/node@22.10.5)(tsx@4.19.4)(yaml@2.7.1))
|
|
99
96
|
|
|
100
97
|
packages:
|
|
101
98
|
|
|
@@ -126,20 +123,20 @@ packages:
|
|
|
126
123
|
resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
|
|
127
124
|
engines: {node: '>=6.9.0'}
|
|
128
125
|
|
|
129
|
-
'@babel/compat-data@7.26.
|
|
130
|
-
resolution: {integrity: sha512-
|
|
126
|
+
'@babel/compat-data@7.26.8':
|
|
127
|
+
resolution: {integrity: sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ==}
|
|
131
128
|
engines: {node: '>=6.9.0'}
|
|
132
129
|
|
|
133
|
-
'@babel/core@7.26.
|
|
134
|
-
resolution: {integrity: sha512-
|
|
130
|
+
'@babel/core@7.26.10':
|
|
131
|
+
resolution: {integrity: sha512-vMqyb7XCDMPvJFFOaT9kxtiRh42GwlZEg1/uIgtZshS5a/8OaduUfCi7kynKgc3Tw/6Uo2D+db9qBttghhmxwQ==}
|
|
135
132
|
engines: {node: '>=6.9.0'}
|
|
136
133
|
|
|
137
|
-
'@babel/generator@7.
|
|
138
|
-
resolution: {integrity: sha512-
|
|
134
|
+
'@babel/generator@7.27.0':
|
|
135
|
+
resolution: {integrity: sha512-VybsKvpiN1gU1sdMZIp7FcqphVVKEwcuj02x73uvcHE0PTihx1nlBcowYWhDwjpoAXRv43+gDzyggGnn1XZhVw==}
|
|
139
136
|
engines: {node: '>=6.9.0'}
|
|
140
137
|
|
|
141
|
-
'@babel/helper-compilation-targets@7.
|
|
142
|
-
resolution: {integrity: sha512-
|
|
138
|
+
'@babel/helper-compilation-targets@7.27.0':
|
|
139
|
+
resolution: {integrity: sha512-LVk7fbXml0H2xH34dFzKQ7TDZ2G4/rVTOrq9V+icbbadjbVxxeFeDsNHv2SrZeWoA+6ZiTyWYWtScEIW07EAcA==}
|
|
143
140
|
engines: {node: '>=6.9.0'}
|
|
144
141
|
|
|
145
142
|
'@babel/helper-module-imports@7.25.9':
|
|
@@ -168,8 +165,8 @@ packages:
|
|
|
168
165
|
resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==}
|
|
169
166
|
engines: {node: '>=6.9.0'}
|
|
170
167
|
|
|
171
|
-
'@babel/helpers@7.
|
|
172
|
-
resolution: {integrity: sha512-
|
|
168
|
+
'@babel/helpers@7.27.0':
|
|
169
|
+
resolution: {integrity: sha512-U5eyP/CTFPuNE3qk+WZMxFkp/4zUzdceQlfzf7DdGdhp+Fezd7HD+i8Y24ZuTMKX3wQBld449jijbGq6OdGNQg==}
|
|
173
170
|
engines: {node: '>=6.9.0'}
|
|
174
171
|
|
|
175
172
|
'@babel/parser@7.26.3':
|
|
@@ -177,6 +174,11 @@ packages:
|
|
|
177
174
|
engines: {node: '>=6.0.0'}
|
|
178
175
|
hasBin: true
|
|
179
176
|
|
|
177
|
+
'@babel/parser@7.27.0':
|
|
178
|
+
resolution: {integrity: sha512-iaepho73/2Pz7w2eMS0Q5f83+0RKI7i4xmiYeBmDzfRVbQtTOG7Ts0S4HzJVsTMGI9keU8rNfuZr8DKfSt7Yyg==}
|
|
179
|
+
engines: {node: '>=6.0.0'}
|
|
180
|
+
hasBin: true
|
|
181
|
+
|
|
180
182
|
'@babel/plugin-transform-react-jsx-self@7.25.9':
|
|
181
183
|
resolution: {integrity: sha512-y8quW6p0WHkEhmErnfe58r7x0A70uKphQm8Sp8cV7tjNQwK56sNVK0M73LK3WuYmsuyrftut4xAkjjgU0twaMg==}
|
|
182
184
|
engines: {node: '>=6.9.0'}
|
|
@@ -193,18 +195,22 @@ packages:
|
|
|
193
195
|
resolution: {integrity: sha512-VtPOkrdPHZsKc/clNqyi9WUA8TINkZ4cGk63UUE3u4pmB2k+ZMQRDuIOagv8UVd6j7k0T3+RRIb7beKTebNbcw==}
|
|
194
196
|
engines: {node: '>=6.9.0'}
|
|
195
197
|
|
|
196
|
-
'@babel/template@7.
|
|
197
|
-
resolution: {integrity: sha512-
|
|
198
|
+
'@babel/template@7.27.0':
|
|
199
|
+
resolution: {integrity: sha512-2ncevenBqXI6qRMukPlXwHKHchC7RyMuu4xv5JBXRfOGVcTy1mXCD12qrp7Jsoxll1EV3+9sE4GugBVRjT2jFA==}
|
|
198
200
|
engines: {node: '>=6.9.0'}
|
|
199
201
|
|
|
200
|
-
'@babel/traverse@7.
|
|
201
|
-
resolution: {integrity: sha512-
|
|
202
|
+
'@babel/traverse@7.27.0':
|
|
203
|
+
resolution: {integrity: sha512-19lYZFzYVQkkHkl4Cy4WrAVcqBkgvV2YM2TU3xG6DIwO7O3ecbDPfW3yM3bjAGcqcQHi+CCtjMR3dIEHxsd6bA==}
|
|
202
204
|
engines: {node: '>=6.9.0'}
|
|
203
205
|
|
|
204
206
|
'@babel/types@7.26.3':
|
|
205
207
|
resolution: {integrity: sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==}
|
|
206
208
|
engines: {node: '>=6.9.0'}
|
|
207
209
|
|
|
210
|
+
'@babel/types@7.27.0':
|
|
211
|
+
resolution: {integrity: sha512-H45s8fVLYjbhFH62dIJ3WtmJ6RSPt/3DRO0ZcT2SUiYiQyz3BLVb9ADEnLl91m74aQPS3AzzeajZHYOalWe3bg==}
|
|
212
|
+
engines: {node: '>=6.9.0'}
|
|
213
|
+
|
|
208
214
|
'@esbuild/aix-ppc64@0.25.2':
|
|
209
215
|
resolution: {integrity: sha512-wCIboOL2yXZym2cgm6mlA742s9QeJ8DjGVaL39dLN4rRwrOgOyYSnOaFPhKZGLb2ngj4EyfAFjsNJwPXZvseag==}
|
|
210
216
|
engines: {node: '>=18'}
|
|
@@ -365,44 +371,44 @@ packages:
|
|
|
365
371
|
resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
|
|
366
372
|
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
|
|
367
373
|
|
|
368
|
-
'@eslint/config-array@0.
|
|
369
|
-
resolution: {integrity: sha512-
|
|
374
|
+
'@eslint/config-array@0.20.0':
|
|
375
|
+
resolution: {integrity: sha512-fxlS1kkIjx8+vy2SjuCB94q3htSNrufYTXubwiBFeaQHbH6Ipi43gFJq2zCMt6PHhImH3Xmr0NksKDvchWlpQQ==}
|
|
370
376
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
371
377
|
|
|
372
|
-
'@eslint/config-helpers@0.2.
|
|
373
|
-
resolution: {integrity: sha512-
|
|
378
|
+
'@eslint/config-helpers@0.2.1':
|
|
379
|
+
resolution: {integrity: sha512-RI17tsD2frtDu/3dmI7QRrD4bedNKPM08ziRYaC5AhkGrzIAJelm9kJU1TznK+apx6V+cqRz8tfpEeG3oIyjxw==}
|
|
374
380
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
375
381
|
|
|
376
|
-
'@eslint/core@0.
|
|
377
|
-
resolution: {integrity: sha512-
|
|
382
|
+
'@eslint/core@0.13.0':
|
|
383
|
+
resolution: {integrity: sha512-yfkgDw1KR66rkT5A8ci4irzDysN7FRpq3ttJolR88OqQikAWqwA8j5VZyas+vjyBNFIJ7MfybJ9plMILI2UrCw==}
|
|
378
384
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
379
385
|
|
|
380
386
|
'@eslint/eslintrc@3.3.1':
|
|
381
387
|
resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==}
|
|
382
388
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
383
389
|
|
|
384
|
-
'@eslint/js@9.
|
|
385
|
-
resolution: {integrity: sha512-
|
|
390
|
+
'@eslint/js@9.25.1':
|
|
391
|
+
resolution: {integrity: sha512-dEIwmjntEx8u3Uvv+kr3PDeeArL8Hw07H9kyYxCjnM9pBjfEhk6uLXSchxxzgiwtRhhzVzqmUSDFBOi1TuZ7qg==}
|
|
386
392
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
387
393
|
|
|
388
394
|
'@eslint/object-schema@2.1.6':
|
|
389
395
|
resolution: {integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==}
|
|
390
396
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
391
397
|
|
|
392
|
-
'@eslint/plugin-kit@0.2.
|
|
393
|
-
resolution: {integrity: sha512-
|
|
398
|
+
'@eslint/plugin-kit@0.2.8':
|
|
399
|
+
resolution: {integrity: sha512-ZAoA40rNMPwSm+AeHpCq8STiNAwzWLJuP8Xv4CHIc9wv/PSuExjMrmjfYNj682vW0OOiZ1HKxzvjQr9XZIisQA==}
|
|
394
400
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
395
401
|
|
|
396
402
|
'@exodus/schemasafe@1.3.0':
|
|
397
403
|
resolution: {integrity: sha512-5Aap/GaRupgNx/feGBwLLTVv8OQFfv3pq2lPRzPg9R+IOBnDgghTGW7l7EuVXOvg5cc/xSAlRW8rBrjIC3Nvqw==}
|
|
398
404
|
|
|
399
|
-
'@gerrit0/mini-shiki@
|
|
400
|
-
resolution: {integrity: sha512-
|
|
405
|
+
'@gerrit0/mini-shiki@3.3.0':
|
|
406
|
+
resolution: {integrity: sha512-frvArO0+s5Viq68uSod5SieLPVM2cLpXoQ1e07lURwgADXpL/MOypM7jPz9otks0g2DIe2YedDAeVrDyYJZRxA==}
|
|
401
407
|
|
|
402
|
-
'@hookform/resolvers@
|
|
403
|
-
resolution: {integrity: sha512-
|
|
408
|
+
'@hookform/resolvers@5.0.1':
|
|
409
|
+
resolution: {integrity: sha512-u/+Jp83luQNx9AdyW2fIPGY6Y7NG68eN2ZW8FOJYL+M0i4s49+refdJdOp/A9n9HFQtQs3HIDHQvX3ZET2o7YA==}
|
|
404
410
|
peerDependencies:
|
|
405
|
-
react-hook-form: ^7.
|
|
411
|
+
react-hook-form: ^7.55.0
|
|
406
412
|
|
|
407
413
|
'@humanfs/core@0.19.1':
|
|
408
414
|
resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
|
|
@@ -483,136 +489,153 @@ packages:
|
|
|
483
489
|
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
|
|
484
490
|
engines: {node: '>= 8'}
|
|
485
491
|
|
|
486
|
-
'@orval/angular@7.
|
|
487
|
-
resolution: {integrity: sha512-
|
|
492
|
+
'@orval/angular@7.9.0':
|
|
493
|
+
resolution: {integrity: sha512-GzgEdZxK/9wQMLN2bziTlPSD9bkRXwYf1PoUM+RTXj6MGw0aZVWNTMCnp3dFWp9VemThP0kK2geBFqhxC2Bgxg==}
|
|
494
|
+
|
|
495
|
+
'@orval/axios@7.9.0':
|
|
496
|
+
resolution: {integrity: sha512-e77WvQGfFTkkrJIH66v/DpKdZ1eQBlu4NxOt2gCxvBYFP2dxDR2ajsM7uXxdGxi0iqZIS92+opzhxLIo6TVyDQ==}
|
|
488
497
|
|
|
489
|
-
'@orval/
|
|
490
|
-
resolution: {integrity: sha512
|
|
498
|
+
'@orval/core@7.9.0':
|
|
499
|
+
resolution: {integrity: sha512-/Nn6/ARmpevAY7Vl9RRXY2WkJx/q0LIUEE2Eh15bGgzAQIYUcD9aFr9zM5hX2b3lR/fZ8721hFsq0vM9O5ZzXw==}
|
|
491
500
|
|
|
492
|
-
'@orval/
|
|
493
|
-
resolution: {integrity: sha512-
|
|
501
|
+
'@orval/fetch@7.9.0':
|
|
502
|
+
resolution: {integrity: sha512-gIw2a3jXd1If/NpewVq7C6XDfnG2RPMt4PKR/RtEBeDKasXkoJeS2DBvZp/TyC+lt9oMgketF3bmzo/st09uhA==}
|
|
494
503
|
|
|
495
|
-
'@orval/
|
|
496
|
-
resolution: {integrity: sha512-
|
|
504
|
+
'@orval/hono@7.9.0':
|
|
505
|
+
resolution: {integrity: sha512-80VoS5W4I0uUo7Y6sIxr0xGYNX3oIL8sKWru+mYIZdp2L4W1lVHBi4zkpk7u0u9Obv7vmAuPtozV5+QIV0zWBg==}
|
|
497
506
|
|
|
498
|
-
'@orval/
|
|
499
|
-
resolution: {integrity: sha512-
|
|
507
|
+
'@orval/mcp@7.9.0':
|
|
508
|
+
resolution: {integrity: sha512-zMtW4jUKXGiXyJUylVy58kCu/Jf1yF9wp3ul2Guy1vbjlhVeOO1ugCYQ1sYNYH10vN0ajTS0/2pXhTuCR7PxHw==}
|
|
500
509
|
|
|
501
|
-
'@orval/mock@7.
|
|
502
|
-
resolution: {integrity: sha512-
|
|
510
|
+
'@orval/mock@7.9.0':
|
|
511
|
+
resolution: {integrity: sha512-Ixhb+I4VTIfUl0qxDq8LekBnXM2gpD4kS7OFVqX9rdx0ZwZl7y4xArnKSXk5qgDPjo4eOWSmVA3onuL2WCit/g==}
|
|
503
512
|
|
|
504
|
-
'@orval/query@7.
|
|
505
|
-
resolution: {integrity: sha512-
|
|
513
|
+
'@orval/query@7.9.0':
|
|
514
|
+
resolution: {integrity: sha512-IPKP4l00dZw0AOt+7PPB82WNdmpPThsWlYvk4YmdLEZVWCuaUaJ9KyLTT2R+XqoksuuuKTJ/IK0KO7VcjMiHiA==}
|
|
506
515
|
|
|
507
|
-
'@orval/swr@7.
|
|
508
|
-
resolution: {integrity: sha512-
|
|
516
|
+
'@orval/swr@7.9.0':
|
|
517
|
+
resolution: {integrity: sha512-f06MifzMPrnXYdgt2rLLnurJ0YlXexSMyVlXAHhaJENtSVM4zlJp69rA6OULLr1i1biNGTWHSonOizKOf+cNcw==}
|
|
509
518
|
|
|
510
|
-
'@orval/zod@7.
|
|
511
|
-
resolution: {integrity: sha512-
|
|
519
|
+
'@orval/zod@7.9.0':
|
|
520
|
+
resolution: {integrity: sha512-LkkofL+iSswsBVWCr3bPZ6un8065wB7x34DZVnF/gN3kBxy8A35I9X0Eld4EajI/1rbMmxzt7wHUYAf5NlJWHQ==}
|
|
512
521
|
|
|
513
|
-
'@rollup/rollup-android-arm-eabi@4.
|
|
514
|
-
resolution: {integrity: sha512-
|
|
522
|
+
'@rollup/rollup-android-arm-eabi@4.40.1':
|
|
523
|
+
resolution: {integrity: sha512-kxz0YeeCrRUHz3zyqvd7n+TVRlNyTifBsmnmNPtk3hQURUyG9eAB+usz6DAwagMusjx/zb3AjvDUvhFGDAexGw==}
|
|
515
524
|
cpu: [arm]
|
|
516
525
|
os: [android]
|
|
517
526
|
|
|
518
|
-
'@rollup/rollup-android-arm64@4.
|
|
519
|
-
resolution: {integrity: sha512
|
|
527
|
+
'@rollup/rollup-android-arm64@4.40.1':
|
|
528
|
+
resolution: {integrity: sha512-PPkxTOisoNC6TpnDKatjKkjRMsdaWIhyuMkA4UsBXT9WEZY4uHezBTjs6Vl4PbqQQeu6oION1w2voYZv9yquCw==}
|
|
520
529
|
cpu: [arm64]
|
|
521
530
|
os: [android]
|
|
522
531
|
|
|
523
|
-
'@rollup/rollup-darwin-arm64@4.
|
|
524
|
-
resolution: {integrity: sha512-
|
|
532
|
+
'@rollup/rollup-darwin-arm64@4.40.1':
|
|
533
|
+
resolution: {integrity: sha512-VWXGISWFY18v/0JyNUy4A46KCFCb9NVsH+1100XP31lud+TzlezBbz24CYzbnA4x6w4hx+NYCXDfnvDVO6lcAA==}
|
|
525
534
|
cpu: [arm64]
|
|
526
535
|
os: [darwin]
|
|
527
536
|
|
|
528
|
-
'@rollup/rollup-darwin-x64@4.
|
|
529
|
-
resolution: {integrity: sha512-
|
|
537
|
+
'@rollup/rollup-darwin-x64@4.40.1':
|
|
538
|
+
resolution: {integrity: sha512-nIwkXafAI1/QCS7pxSpv/ZtFW6TXcNUEHAIA9EIyw5OzxJZQ1YDrX+CL6JAIQgZ33CInl1R6mHet9Y/UZTg2Bw==}
|
|
530
539
|
cpu: [x64]
|
|
531
540
|
os: [darwin]
|
|
532
541
|
|
|
533
|
-
'@rollup/rollup-freebsd-arm64@4.
|
|
534
|
-
resolution: {integrity: sha512-
|
|
542
|
+
'@rollup/rollup-freebsd-arm64@4.40.1':
|
|
543
|
+
resolution: {integrity: sha512-BdrLJ2mHTrIYdaS2I99mriyJfGGenSaP+UwGi1kB9BLOCu9SR8ZpbkmmalKIALnRw24kM7qCN0IOm6L0S44iWw==}
|
|
535
544
|
cpu: [arm64]
|
|
536
545
|
os: [freebsd]
|
|
537
546
|
|
|
538
|
-
'@rollup/rollup-freebsd-x64@4.
|
|
539
|
-
resolution: {integrity: sha512-
|
|
547
|
+
'@rollup/rollup-freebsd-x64@4.40.1':
|
|
548
|
+
resolution: {integrity: sha512-VXeo/puqvCG8JBPNZXZf5Dqq7BzElNJzHRRw3vjBE27WujdzuOPecDPc/+1DcdcTptNBep3861jNq0mYkT8Z6Q==}
|
|
540
549
|
cpu: [x64]
|
|
541
550
|
os: [freebsd]
|
|
542
551
|
|
|
543
|
-
'@rollup/rollup-linux-arm-gnueabihf@4.
|
|
544
|
-
resolution: {integrity: sha512-
|
|
552
|
+
'@rollup/rollup-linux-arm-gnueabihf@4.40.1':
|
|
553
|
+
resolution: {integrity: sha512-ehSKrewwsESPt1TgSE/na9nIhWCosfGSFqv7vwEtjyAqZcvbGIg4JAcV7ZEh2tfj/IlfBeZjgOXm35iOOjadcg==}
|
|
545
554
|
cpu: [arm]
|
|
546
555
|
os: [linux]
|
|
547
556
|
|
|
548
|
-
'@rollup/rollup-linux-arm-musleabihf@4.
|
|
549
|
-
resolution: {integrity: sha512-
|
|
557
|
+
'@rollup/rollup-linux-arm-musleabihf@4.40.1':
|
|
558
|
+
resolution: {integrity: sha512-m39iO/aaurh5FVIu/F4/Zsl8xppd76S4qoID8E+dSRQvTyZTOI2gVk3T4oqzfq1PtcvOfAVlwLMK3KRQMaR8lg==}
|
|
550
559
|
cpu: [arm]
|
|
551
560
|
os: [linux]
|
|
552
561
|
|
|
553
|
-
'@rollup/rollup-linux-arm64-gnu@4.
|
|
554
|
-
resolution: {integrity: sha512-
|
|
562
|
+
'@rollup/rollup-linux-arm64-gnu@4.40.1':
|
|
563
|
+
resolution: {integrity: sha512-Y+GHnGaku4aVLSgrT0uWe2o2Rq8te9hi+MwqGF9r9ORgXhmHK5Q71N757u0F8yU1OIwUIFy6YiJtKjtyktk5hg==}
|
|
555
564
|
cpu: [arm64]
|
|
556
565
|
os: [linux]
|
|
557
566
|
|
|
558
|
-
'@rollup/rollup-linux-arm64-musl@4.
|
|
559
|
-
resolution: {integrity: sha512-
|
|
567
|
+
'@rollup/rollup-linux-arm64-musl@4.40.1':
|
|
568
|
+
resolution: {integrity: sha512-jEwjn3jCA+tQGswK3aEWcD09/7M5wGwc6+flhva7dsQNRZZTe30vkalgIzV4tjkopsTS9Jd7Y1Bsj6a4lzz8gQ==}
|
|
560
569
|
cpu: [arm64]
|
|
561
570
|
os: [linux]
|
|
562
571
|
|
|
563
|
-
'@rollup/rollup-linux-loongarch64-gnu@4.
|
|
564
|
-
resolution: {integrity: sha512-
|
|
572
|
+
'@rollup/rollup-linux-loongarch64-gnu@4.40.1':
|
|
573
|
+
resolution: {integrity: sha512-ySyWikVhNzv+BV/IDCsrraOAZ3UaC8SZB67FZlqVwXwnFhPihOso9rPOxzZbjp81suB1O2Topw+6Ug3JNegejQ==}
|
|
565
574
|
cpu: [loong64]
|
|
566
575
|
os: [linux]
|
|
567
576
|
|
|
568
|
-
'@rollup/rollup-linux-powerpc64le-gnu@4.
|
|
569
|
-
resolution: {integrity: sha512-
|
|
577
|
+
'@rollup/rollup-linux-powerpc64le-gnu@4.40.1':
|
|
578
|
+
resolution: {integrity: sha512-BvvA64QxZlh7WZWqDPPdt0GH4bznuL6uOO1pmgPnnv86rpUpc8ZxgZwcEgXvo02GRIZX1hQ0j0pAnhwkhwPqWg==}
|
|
570
579
|
cpu: [ppc64]
|
|
571
580
|
os: [linux]
|
|
572
581
|
|
|
573
|
-
'@rollup/rollup-linux-riscv64-gnu@4.
|
|
574
|
-
resolution: {integrity: sha512-
|
|
582
|
+
'@rollup/rollup-linux-riscv64-gnu@4.40.1':
|
|
583
|
+
resolution: {integrity: sha512-EQSP+8+1VuSulm9RKSMKitTav89fKbHymTf25n5+Yr6gAPZxYWpj3DzAsQqoaHAk9YX2lwEyAf9S4W8F4l3VBQ==}
|
|
575
584
|
cpu: [riscv64]
|
|
576
585
|
os: [linux]
|
|
577
586
|
|
|
578
|
-
'@rollup/rollup-linux-
|
|
579
|
-
resolution: {integrity: sha512-
|
|
587
|
+
'@rollup/rollup-linux-riscv64-musl@4.40.1':
|
|
588
|
+
resolution: {integrity: sha512-n/vQ4xRZXKuIpqukkMXZt9RWdl+2zgGNx7Uda8NtmLJ06NL8jiHxUawbwC+hdSq1rrw/9CghCpEONor+l1e2gA==}
|
|
589
|
+
cpu: [riscv64]
|
|
590
|
+
os: [linux]
|
|
591
|
+
|
|
592
|
+
'@rollup/rollup-linux-s390x-gnu@4.40.1':
|
|
593
|
+
resolution: {integrity: sha512-h8d28xzYb98fMQKUz0w2fMc1XuGzLLjdyxVIbhbil4ELfk5/orZlSTpF/xdI9C8K0I8lCkq+1En2RJsawZekkg==}
|
|
580
594
|
cpu: [s390x]
|
|
581
595
|
os: [linux]
|
|
582
596
|
|
|
583
|
-
'@rollup/rollup-linux-x64-gnu@4.
|
|
584
|
-
resolution: {integrity: sha512-
|
|
597
|
+
'@rollup/rollup-linux-x64-gnu@4.40.1':
|
|
598
|
+
resolution: {integrity: sha512-XiK5z70PEFEFqcNj3/zRSz/qX4bp4QIraTy9QjwJAb/Z8GM7kVUsD0Uk8maIPeTyPCP03ChdI+VVmJriKYbRHQ==}
|
|
585
599
|
cpu: [x64]
|
|
586
600
|
os: [linux]
|
|
587
601
|
|
|
588
|
-
'@rollup/rollup-linux-x64-musl@4.
|
|
589
|
-
resolution: {integrity: sha512-
|
|
602
|
+
'@rollup/rollup-linux-x64-musl@4.40.1':
|
|
603
|
+
resolution: {integrity: sha512-2BRORitq5rQ4Da9blVovzNCMaUlyKrzMSvkVR0D4qPuOy/+pMCrh1d7o01RATwVy+6Fa1WBw+da7QPeLWU/1mQ==}
|
|
590
604
|
cpu: [x64]
|
|
591
605
|
os: [linux]
|
|
592
606
|
|
|
593
|
-
'@rollup/rollup-win32-arm64-msvc@4.
|
|
594
|
-
resolution: {integrity: sha512-
|
|
607
|
+
'@rollup/rollup-win32-arm64-msvc@4.40.1':
|
|
608
|
+
resolution: {integrity: sha512-b2bcNm9Kbde03H+q+Jjw9tSfhYkzrDUf2d5MAd1bOJuVplXvFhWz7tRtWvD8/ORZi7qSCy0idW6tf2HgxSXQSg==}
|
|
595
609
|
cpu: [arm64]
|
|
596
610
|
os: [win32]
|
|
597
611
|
|
|
598
|
-
'@rollup/rollup-win32-ia32-msvc@4.
|
|
599
|
-
resolution: {integrity: sha512-
|
|
612
|
+
'@rollup/rollup-win32-ia32-msvc@4.40.1':
|
|
613
|
+
resolution: {integrity: sha512-DfcogW8N7Zg7llVEfpqWMZcaErKfsj9VvmfSyRjCyo4BI3wPEfrzTtJkZG6gKP/Z92wFm6rz2aDO7/JfiR/whA==}
|
|
600
614
|
cpu: [ia32]
|
|
601
615
|
os: [win32]
|
|
602
616
|
|
|
603
|
-
'@rollup/rollup-win32-x64-msvc@4.
|
|
604
|
-
resolution: {integrity: sha512-
|
|
617
|
+
'@rollup/rollup-win32-x64-msvc@4.40.1':
|
|
618
|
+
resolution: {integrity: sha512-ECyOuDeH3C1I8jH2MK1RtBJW+YPMvSfT0a5NN0nHfQYnDSJ6tUiZH3gzwVP5/Kfh/+Tt7tpWVF9LXNTnhTJ3kA==}
|
|
605
619
|
cpu: [x64]
|
|
606
620
|
os: [win32]
|
|
607
621
|
|
|
608
|
-
'@shikijs/engine-oniguruma@
|
|
609
|
-
resolution: {integrity: sha512-
|
|
622
|
+
'@shikijs/engine-oniguruma@3.3.0':
|
|
623
|
+
resolution: {integrity: sha512-l0vIw+GxeNU7uGnsu6B+Crpeqf+WTQ2Va71cHb5ZYWEVEPdfYwY5kXwYqRJwHrxz9WH+pjSpXQz+TJgAsrkA5A==}
|
|
624
|
+
|
|
625
|
+
'@shikijs/langs@3.3.0':
|
|
626
|
+
resolution: {integrity: sha512-zt6Kf/7XpBQKSI9eqku+arLkAcDQ3NHJO6zFjiChI8w0Oz6Jjjay7pToottjQGjSDCFk++R85643WbyINcuL+g==}
|
|
610
627
|
|
|
611
|
-
'@shikijs/
|
|
612
|
-
resolution: {integrity: sha512-
|
|
628
|
+
'@shikijs/themes@3.3.0':
|
|
629
|
+
resolution: {integrity: sha512-tXeCvLXBnqq34B0YZUEaAD1lD4lmN6TOHAhnHacj4Owh7Ptb/rf5XCDeROZt2rEOk5yuka3OOW2zLqClV7/SOg==}
|
|
613
630
|
|
|
614
|
-
'@shikijs/
|
|
615
|
-
resolution: {integrity: sha512-
|
|
631
|
+
'@shikijs/types@3.3.0':
|
|
632
|
+
resolution: {integrity: sha512-KPCGnHG6k06QG/2pnYGbFtFvpVJmC3uIpXrAiPrawETifujPBv0Se2oUxm5qYgjCvGJS9InKvjytOdN+bGuX+Q==}
|
|
633
|
+
|
|
634
|
+
'@shikijs/vscode-textmate@10.0.2':
|
|
635
|
+
resolution: {integrity: sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==}
|
|
636
|
+
|
|
637
|
+
'@standard-schema/utils@0.3.0':
|
|
638
|
+
resolution: {integrity: sha512-e7Mew686owMaPJVNNLs55PUvgz371nKgwsc4vxE49zsODpJEnxgxRo2y/OKrqueavXgZNMDVj3DdHFlaSAeU8g==}
|
|
616
639
|
|
|
617
640
|
'@stoplight/better-ajv-errors@1.0.3':
|
|
618
641
|
resolution: {integrity: sha512-0p9uXkuB22qGdNfy3VeEhxkU5uwvp/KrBTAbrLBURv6ilxIVwanKwjMc41lQfIVgPGcOkmLbTolfFrSsueu7zA==}
|
|
@@ -699,15 +722,15 @@ packages:
|
|
|
699
722
|
'@types/babel__traverse@7.20.6':
|
|
700
723
|
resolution: {integrity: sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==}
|
|
701
724
|
|
|
702
|
-
'@types/cookie@0.6.0':
|
|
703
|
-
resolution: {integrity: sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==}
|
|
704
|
-
|
|
705
725
|
'@types/es-aggregate-error@1.0.6':
|
|
706
726
|
resolution: {integrity: sha512-qJ7LIFp06h1QE1aVxbVd+zJP2wdaugYXYfd6JxsyRMrYHaxb6itXPogW2tz+ylUJ1n1b+JF1PHyYCfYHm0dvUg==}
|
|
707
727
|
|
|
708
728
|
'@types/estree@1.0.6':
|
|
709
729
|
resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
|
|
710
730
|
|
|
731
|
+
'@types/estree@1.0.7':
|
|
732
|
+
resolution: {integrity: sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==}
|
|
733
|
+
|
|
711
734
|
'@types/hast@3.0.4':
|
|
712
735
|
resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==}
|
|
713
736
|
|
|
@@ -717,16 +740,13 @@ packages:
|
|
|
717
740
|
'@types/node@22.10.5':
|
|
718
741
|
resolution: {integrity: sha512-F8Q+SeGimwOo86fiovQh8qiXfFEh2/ocYv7tU5pJ3EXMSSxk1Joj5wefpFK2fHTf/N6HKGSxIDBT9f3gCxXPkQ==}
|
|
719
742
|
|
|
720
|
-
'@types/
|
|
721
|
-
resolution: {integrity: sha512-
|
|
722
|
-
|
|
723
|
-
'@types/react-dom@18.3.5':
|
|
724
|
-
resolution: {integrity: sha512-P4t6saawp+b/dFrUr2cvkVsfvPguwsxtH6dNIYRllMsefqFzkZk5UIjzyDOv5g1dXIPdG4Sp1yCR4Z6RCUsG/Q==}
|
|
743
|
+
'@types/react-dom@19.1.2':
|
|
744
|
+
resolution: {integrity: sha512-XGJkWF41Qq305SKWEILa1O8vzhb3aOo3ogBlSmiqNko/WmRb6QIaweuZCXjKygVDXpzXb5wyxKTSOsmkuqj+Qw==}
|
|
725
745
|
peerDependencies:
|
|
726
|
-
'@types/react': ^
|
|
746
|
+
'@types/react': ^19.0.0
|
|
727
747
|
|
|
728
|
-
'@types/react@
|
|
729
|
-
resolution: {integrity: sha512-
|
|
748
|
+
'@types/react@19.1.2':
|
|
749
|
+
resolution: {integrity: sha512-oxLPMytKchWGbnQM9O7D67uPa9paTNxO7jVoNMXgkkErULBPhPARCfkKL9ytcIJJRGjbsVwW4ugJzyFFvm/Tiw==}
|
|
730
750
|
|
|
731
751
|
'@types/unist@3.0.3':
|
|
732
752
|
resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==}
|
|
@@ -734,55 +754,55 @@ packages:
|
|
|
734
754
|
'@types/urijs@1.19.25':
|
|
735
755
|
resolution: {integrity: sha512-XOfUup9r3Y06nFAZh3WvO0rBU4OtlfPB/vgxpjg+NRdGU6CN6djdc6OEiH+PcqHCY6eFLo9Ista73uarf4gnBg==}
|
|
736
756
|
|
|
737
|
-
'@typescript-eslint/eslint-plugin@8.
|
|
738
|
-
resolution: {integrity: sha512-
|
|
757
|
+
'@typescript-eslint/eslint-plugin@8.31.1':
|
|
758
|
+
resolution: {integrity: sha512-oUlH4h1ABavI4F0Xnl8/fOtML/eu8nI2A1nYd+f+55XI0BLu+RIqKoCiZKNo6DtqZBEQm5aNKA20G3Z5w3R6GQ==}
|
|
739
759
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
740
760
|
peerDependencies:
|
|
741
761
|
'@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
|
|
742
762
|
eslint: ^8.57.0 || ^9.0.0
|
|
743
763
|
typescript: '>=4.8.4 <5.9.0'
|
|
744
764
|
|
|
745
|
-
'@typescript-eslint/parser@8.
|
|
746
|
-
resolution: {integrity: sha512-
|
|
765
|
+
'@typescript-eslint/parser@8.31.1':
|
|
766
|
+
resolution: {integrity: sha512-oU/OtYVydhXnumd0BobL9rkJg7wFJ9bFFPmSmB/bf/XWN85hlViji59ko6bSKBXyseT9V8l+CN1nwmlbiN0G7Q==}
|
|
747
767
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
748
768
|
peerDependencies:
|
|
749
769
|
eslint: ^8.57.0 || ^9.0.0
|
|
750
770
|
typescript: '>=4.8.4 <5.9.0'
|
|
751
771
|
|
|
752
|
-
'@typescript-eslint/scope-manager@8.
|
|
753
|
-
resolution: {integrity: sha512-
|
|
772
|
+
'@typescript-eslint/scope-manager@8.31.1':
|
|
773
|
+
resolution: {integrity: sha512-BMNLOElPxrtNQMIsFHE+3P0Yf1z0dJqV9zLdDxN/xLlWMlXK/ApEsVEKzpizg9oal8bAT5Sc7+ocal7AC1HCVw==}
|
|
754
774
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
755
775
|
|
|
756
|
-
'@typescript-eslint/type-utils@8.
|
|
757
|
-
resolution: {integrity: sha512-
|
|
776
|
+
'@typescript-eslint/type-utils@8.31.1':
|
|
777
|
+
resolution: {integrity: sha512-fNaT/m9n0+dpSp8G/iOQ05GoHYXbxw81x+yvr7TArTuZuCA6VVKbqWYVZrV5dVagpDTtj/O8k5HBEE/p/HM5LA==}
|
|
758
778
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
759
779
|
peerDependencies:
|
|
760
780
|
eslint: ^8.57.0 || ^9.0.0
|
|
761
781
|
typescript: '>=4.8.4 <5.9.0'
|
|
762
782
|
|
|
763
|
-
'@typescript-eslint/types@8.
|
|
764
|
-
resolution: {integrity: sha512-
|
|
783
|
+
'@typescript-eslint/types@8.31.1':
|
|
784
|
+
resolution: {integrity: sha512-SfepaEFUDQYRoA70DD9GtytljBePSj17qPxFHA/h3eg6lPTqGJ5mWOtbXCk1YrVU1cTJRd14nhaXWFu0l2troQ==}
|
|
765
785
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
766
786
|
|
|
767
|
-
'@typescript-eslint/typescript-estree@8.
|
|
768
|
-
resolution: {integrity: sha512-
|
|
787
|
+
'@typescript-eslint/typescript-estree@8.31.1':
|
|
788
|
+
resolution: {integrity: sha512-kaA0ueLe2v7KunYOyWYtlf/QhhZb7+qh4Yw6Ni5kgukMIG+iP773tjgBiLWIXYumWCwEq3nLW+TUywEp8uEeag==}
|
|
769
789
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
770
790
|
peerDependencies:
|
|
771
791
|
typescript: '>=4.8.4 <5.9.0'
|
|
772
792
|
|
|
773
|
-
'@typescript-eslint/utils@8.
|
|
774
|
-
resolution: {integrity: sha512-
|
|
793
|
+
'@typescript-eslint/utils@8.31.1':
|
|
794
|
+
resolution: {integrity: sha512-2DSI4SNfF5T4oRveQ4nUrSjUqjMND0nLq9rEkz0gfGr3tg0S5KB6DhwR+WZPCjzkZl3cH+4x2ce3EsL50FubjQ==}
|
|
775
795
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
776
796
|
peerDependencies:
|
|
777
797
|
eslint: ^8.57.0 || ^9.0.0
|
|
778
798
|
typescript: '>=4.8.4 <5.9.0'
|
|
779
799
|
|
|
780
|
-
'@typescript-eslint/visitor-keys@8.
|
|
781
|
-
resolution: {integrity: sha512-
|
|
800
|
+
'@typescript-eslint/visitor-keys@8.31.1':
|
|
801
|
+
resolution: {integrity: sha512-I+/rgqOVBn6f0o7NDTmAPWWC6NuqhV174lfYvAm9fUaWeiefLdux9/YI3/nLugEn9L8fcSi0XmpKi/r5u0nmpw==}
|
|
782
802
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
783
803
|
|
|
784
|
-
'@vitejs/plugin-react@4.
|
|
785
|
-
resolution: {integrity: sha512-
|
|
804
|
+
'@vitejs/plugin-react@4.4.1':
|
|
805
|
+
resolution: {integrity: sha512-IpEm5ZmeXAP/osiBXVVP5KjFMzbWOonMs0NaQQl+xYnUAcq4oHUBsF2+p4MgKWG4YMmFYJU8A6sxRPuowllm6w==}
|
|
786
806
|
engines: {node: ^14.18.0 || >=16.0.0}
|
|
787
807
|
peerDependencies:
|
|
788
808
|
vite: ^4.2.0 || ^5.0.0 || ^6.0.0
|
|
@@ -801,6 +821,11 @@ packages:
|
|
|
801
821
|
engines: {node: '>=0.4.0'}
|
|
802
822
|
hasBin: true
|
|
803
823
|
|
|
824
|
+
acorn@8.14.1:
|
|
825
|
+
resolution: {integrity: sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==}
|
|
826
|
+
engines: {node: '>=0.4.0'}
|
|
827
|
+
hasBin: true
|
|
828
|
+
|
|
804
829
|
ajv-draft-04@1.0.0:
|
|
805
830
|
resolution: {integrity: sha512-mv00Te6nmYbRp5DCwclxtt7yV/joXJPGS7nM+97GdxvuttCOfgI3K4U25zboyeX0O+myI8ERluxQe5wljMmVIw==}
|
|
806
831
|
peerDependencies:
|
|
@@ -1090,8 +1115,8 @@ packages:
|
|
|
1090
1115
|
resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
|
|
1091
1116
|
engines: {node: '>=10'}
|
|
1092
1117
|
|
|
1093
|
-
eslint-config-prettier@
|
|
1094
|
-
resolution: {integrity: sha512-
|
|
1118
|
+
eslint-config-prettier@10.1.2:
|
|
1119
|
+
resolution: {integrity: sha512-Epgp/EofAUeEpIdZkW60MHKvPyru1ruQJxPL+WIycnaPApuseK0Zpkrh/FwL9oIpQvIhJwV7ptOy0DWUjTlCiA==}
|
|
1095
1120
|
hasBin: true
|
|
1096
1121
|
peerDependencies:
|
|
1097
1122
|
eslint: '>=7.0.0'
|
|
@@ -1102,8 +1127,8 @@ packages:
|
|
|
1102
1127
|
peerDependencies:
|
|
1103
1128
|
eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0
|
|
1104
1129
|
|
|
1105
|
-
eslint-plugin-react-refresh@0.4.
|
|
1106
|
-
resolution: {integrity: sha512-
|
|
1130
|
+
eslint-plugin-react-refresh@0.4.20:
|
|
1131
|
+
resolution: {integrity: sha512-XpbHQ2q5gUF8BGOX4dHe+71qoirYMhApEPZ7sfhF/dNnOF1UXnCMGZf79SFTBO7Bz5YEIT4TMieSlJBWhP9WBA==}
|
|
1107
1132
|
peerDependencies:
|
|
1108
1133
|
eslint: '>=8.40'
|
|
1109
1134
|
|
|
@@ -1119,8 +1144,8 @@ packages:
|
|
|
1119
1144
|
resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==}
|
|
1120
1145
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
1121
1146
|
|
|
1122
|
-
eslint@9.
|
|
1123
|
-
resolution: {integrity: sha512-
|
|
1147
|
+
eslint@9.25.1:
|
|
1148
|
+
resolution: {integrity: sha512-E6Mtz9oGQWDCpV12319d59n4tx9zOTXSTmc8BLVxBx+G/0RdM5MvEEJLU9c0+aleoePYYgVTOsRblx433qmhWQ==}
|
|
1124
1149
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
1125
1150
|
hasBin: true
|
|
1126
1151
|
peerDependencies:
|
|
@@ -1189,6 +1214,14 @@ packages:
|
|
|
1189
1214
|
fastq@1.18.0:
|
|
1190
1215
|
resolution: {integrity: sha512-QKHXPW0hD8g4UET03SdOdunzSouc9N4AuHdsX8XNcTsuz+yYFILVNIX4l9yHABMhiEI9Db0JTTIpu0wB+Y1QQw==}
|
|
1191
1216
|
|
|
1217
|
+
fdir@6.4.4:
|
|
1218
|
+
resolution: {integrity: sha512-1NZP+GK4GfuAv3PqKvxQRDMjdSRZjnkq7KfhlNrCNNlZ0ygQFpebfrnfnq/W7fpUnAv9aGWmY1zKx7FYL3gwhg==}
|
|
1219
|
+
peerDependencies:
|
|
1220
|
+
picomatch: ^3 || ^4
|
|
1221
|
+
peerDependenciesMeta:
|
|
1222
|
+
picomatch:
|
|
1223
|
+
optional: true
|
|
1224
|
+
|
|
1192
1225
|
file-entry-cache@8.0.0:
|
|
1193
1226
|
resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
|
|
1194
1227
|
engines: {node: '>=16.0.0'}
|
|
@@ -1215,6 +1248,10 @@ packages:
|
|
|
1215
1248
|
resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==}
|
|
1216
1249
|
engines: {node: '>=14.14'}
|
|
1217
1250
|
|
|
1251
|
+
fs-extra@11.3.0:
|
|
1252
|
+
resolution: {integrity: sha512-Z4XaCL6dUDHfP/jT25jJKMmtxvuwbkrD1vNSMFlo9lNLY2c5FHYSQgHPRZUjAB26TpDEoW9HCOgplrdbaPV/ew==}
|
|
1253
|
+
engines: {node: '>=14.14'}
|
|
1254
|
+
|
|
1218
1255
|
fsevents@2.3.3:
|
|
1219
1256
|
resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
|
|
1220
1257
|
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
|
|
@@ -1281,8 +1318,8 @@ packages:
|
|
|
1281
1318
|
resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
|
|
1282
1319
|
engines: {node: '>=18'}
|
|
1283
1320
|
|
|
1284
|
-
globals@
|
|
1285
|
-
resolution: {integrity: sha512-
|
|
1321
|
+
globals@16.0.0:
|
|
1322
|
+
resolution: {integrity: sha512-iInW14XItCXET01CQFqudPOWP2jYMl7T+QRQT+UNcR/iQncN/F0UNpgd76iFkBPgNQb4+X3LV9tLJYzwh+Gl3A==}
|
|
1286
1323
|
engines: {node: '>=18'}
|
|
1287
1324
|
|
|
1288
1325
|
globalthis@1.0.4:
|
|
@@ -1349,8 +1386,8 @@ packages:
|
|
|
1349
1386
|
engines: {node: '>=18'}
|
|
1350
1387
|
hasBin: true
|
|
1351
1388
|
|
|
1352
|
-
i18next@
|
|
1353
|
-
resolution: {integrity: sha512-
|
|
1389
|
+
i18next@25.0.2:
|
|
1390
|
+
resolution: {integrity: sha512-xWxgK8GAaPYkV9ia2tdgbtdM+qiC+ysVTBPvXhpCORU/+QkeQe3BSI7Crr+c4ZXULN1PfnXG/HY2n7HGx4KKBg==}
|
|
1354
1391
|
peerDependencies:
|
|
1355
1392
|
typescript: ^5
|
|
1356
1393
|
peerDependenciesMeta:
|
|
@@ -1376,9 +1413,6 @@ packages:
|
|
|
1376
1413
|
resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==}
|
|
1377
1414
|
engines: {node: '>= 0.4'}
|
|
1378
1415
|
|
|
1379
|
-
invariant@2.2.4:
|
|
1380
|
-
resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==}
|
|
1381
|
-
|
|
1382
1416
|
is-array-buffer@3.0.5:
|
|
1383
1417
|
resolution: {integrity: sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==}
|
|
1384
1418
|
engines: {node: '>= 0.4'}
|
|
@@ -1566,8 +1600,8 @@ packages:
|
|
|
1566
1600
|
linkify-it@5.0.0:
|
|
1567
1601
|
resolution: {integrity: sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==}
|
|
1568
1602
|
|
|
1569
|
-
lint-staged@15.5.
|
|
1570
|
-
resolution: {integrity: sha512-
|
|
1603
|
+
lint-staged@15.5.1:
|
|
1604
|
+
resolution: {integrity: sha512-6m7u8mue4Xn6wK6gZvSCQwBvMBR36xfY24nF5bMTf2MHDYG6S3yhJuOgdYVw99hsjyDt2d4z168b3naI8+NWtQ==}
|
|
1571
1605
|
engines: {node: '>=18.12.0'}
|
|
1572
1606
|
hasBin: true
|
|
1573
1607
|
|
|
@@ -1614,10 +1648,6 @@ packages:
|
|
|
1614
1648
|
resolution: {integrity: sha512-HgMmCqIJSAKqo68l0rS2AanEWfkxaZ5wNiEFb5ggm08lDs9Xl2KxBlX3PTcaD2chBM1gXAYf491/M2Rv8Jwayg==}
|
|
1615
1649
|
engines: {node: '>= 0.6.0'}
|
|
1616
1650
|
|
|
1617
|
-
loose-envify@1.4.0:
|
|
1618
|
-
resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
|
|
1619
|
-
hasBin: true
|
|
1620
|
-
|
|
1621
1651
|
lru-cache@5.1.1:
|
|
1622
1652
|
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
|
|
1623
1653
|
|
|
@@ -1764,8 +1794,8 @@ packages:
|
|
|
1764
1794
|
resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
|
|
1765
1795
|
engines: {node: '>= 0.8.0'}
|
|
1766
1796
|
|
|
1767
|
-
orval@7.
|
|
1768
|
-
resolution: {integrity: sha512-
|
|
1797
|
+
orval@7.9.0:
|
|
1798
|
+
resolution: {integrity: sha512-kFftcVojM4wRddRktqJPI/P9uYRpgiwCFOxF82G7XqDrczX9XDu8b5ialof+Z1LIuVZL4CvLV0Y184mRgrJrUA==}
|
|
1769
1799
|
hasBin: true
|
|
1770
1800
|
|
|
1771
1801
|
own-keys@1.0.1:
|
|
@@ -1807,6 +1837,10 @@ packages:
|
|
|
1807
1837
|
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
|
|
1808
1838
|
engines: {node: '>=8.6'}
|
|
1809
1839
|
|
|
1840
|
+
picomatch@4.0.2:
|
|
1841
|
+
resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==}
|
|
1842
|
+
engines: {node: '>=12'}
|
|
1843
|
+
|
|
1810
1844
|
pidtree@0.6.0:
|
|
1811
1845
|
resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==}
|
|
1812
1846
|
engines: {node: '>=0.10'}
|
|
@@ -1844,31 +1878,23 @@ packages:
|
|
|
1844
1878
|
queue-microtask@1.2.3:
|
|
1845
1879
|
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
|
|
1846
1880
|
|
|
1847
|
-
react-dom@
|
|
1848
|
-
resolution: {integrity: sha512-
|
|
1849
|
-
peerDependencies:
|
|
1850
|
-
react: ^18.3.1
|
|
1851
|
-
|
|
1852
|
-
react-fast-compare@3.2.2:
|
|
1853
|
-
resolution: {integrity: sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==}
|
|
1854
|
-
|
|
1855
|
-
react-helmet-async@2.0.5:
|
|
1856
|
-
resolution: {integrity: sha512-rYUYHeus+i27MvFE+Jaa4WsyBKGkL6qVgbJvSBoX8mbsWoABJXdEO0bZyi0F6i+4f0NuIb8AvqPMj3iXFHkMwg==}
|
|
1881
|
+
react-dom@19.1.0:
|
|
1882
|
+
resolution: {integrity: sha512-Xs1hdnE+DyKgeHJeJznQmYMIBG3TKIHJJT95Q58nHLSrElKlGQqDTR2HQ9fx5CN/Gk6Vh/kupBTDLU11/nDk/g==}
|
|
1857
1883
|
peerDependencies:
|
|
1858
|
-
react: ^
|
|
1884
|
+
react: ^19.1.0
|
|
1859
1885
|
|
|
1860
|
-
react-hook-form@7.
|
|
1861
|
-
resolution: {integrity: sha512-
|
|
1886
|
+
react-hook-form@7.56.1:
|
|
1887
|
+
resolution: {integrity: sha512-qWAVokhSpshhcEuQDSANHx3jiAEFzu2HAaaQIzi/r9FNPm1ioAvuJSD4EuZzWd7Al7nTRKcKPnBKO7sRn+zavQ==}
|
|
1862
1888
|
engines: {node: '>=18.0.0'}
|
|
1863
1889
|
peerDependencies:
|
|
1864
1890
|
react: ^16.8.0 || ^17 || ^18 || ^19
|
|
1865
1891
|
|
|
1866
|
-
react-refresh@0.
|
|
1867
|
-
resolution: {integrity: sha512-
|
|
1892
|
+
react-refresh@0.17.0:
|
|
1893
|
+
resolution: {integrity: sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==}
|
|
1868
1894
|
engines: {node: '>=0.10.0'}
|
|
1869
1895
|
|
|
1870
|
-
react-router@7.
|
|
1871
|
-
resolution: {integrity: sha512-
|
|
1896
|
+
react-router@7.5.3:
|
|
1897
|
+
resolution: {integrity: sha512-3iUDM4/fZCQ89SXlDa+Ph3MevBrozBAI655OAfWQlTm9nBR0IKlrmNwFow5lPHttbwvITZfkeeeZFP6zt3F7pw==}
|
|
1872
1898
|
engines: {node: '>=20.0.0'}
|
|
1873
1899
|
peerDependencies:
|
|
1874
1900
|
react: '>=18'
|
|
@@ -1877,8 +1903,8 @@ packages:
|
|
|
1877
1903
|
react-dom:
|
|
1878
1904
|
optional: true
|
|
1879
1905
|
|
|
1880
|
-
react@
|
|
1881
|
-
resolution: {integrity: sha512-
|
|
1906
|
+
react@19.1.0:
|
|
1907
|
+
resolution: {integrity: sha512-FS+XFBNvn3GTAWq26joslQgWNoFu08F4kl0J4CgdNKADkdSGXQyTCnKteIAJy96Br6YbpEU1LSzV5dYtjMkMDg==}
|
|
1882
1908
|
engines: {node: '>=0.10.0'}
|
|
1883
1909
|
|
|
1884
1910
|
readdirp@4.1.1:
|
|
@@ -1925,8 +1951,8 @@ packages:
|
|
|
1925
1951
|
rfdc@1.4.1:
|
|
1926
1952
|
resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==}
|
|
1927
1953
|
|
|
1928
|
-
rollup@4.
|
|
1929
|
-
resolution: {integrity: sha512-
|
|
1954
|
+
rollup@4.40.1:
|
|
1955
|
+
resolution: {integrity: sha512-C5VvvgCCyfyotVITIAv+4efVytl5F7wt+/I2i9q9GZcEXW9BP52YYOXC58igUi+LFZVHukErIIqQSWwv/M3WRw==}
|
|
1930
1956
|
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
|
|
1931
1957
|
hasBin: true
|
|
1932
1958
|
|
|
@@ -1948,8 +1974,8 @@ packages:
|
|
|
1948
1974
|
safe-stable-stringify@1.1.1:
|
|
1949
1975
|
resolution: {integrity: sha512-ERq4hUjKDbJfE4+XtZLFPCDi8Vb1JqaxAPTxWFLBx8XcAlf9Bda/ZJdVezs/NAfsMQScyIlUMx+Yeu7P7rx5jw==}
|
|
1950
1976
|
|
|
1951
|
-
scheduler@0.
|
|
1952
|
-
resolution: {integrity: sha512-
|
|
1977
|
+
scheduler@0.26.0:
|
|
1978
|
+
resolution: {integrity: sha512-NlHwttCI/l5gCPR3D1nNXtWABUmBwvZpEQiD4IXSbIDq8BzLIK/7Ir5gTFSGZDUu37K5cMNp0hFtzO38sC7gWA==}
|
|
1953
1979
|
|
|
1954
1980
|
semver@6.3.1:
|
|
1955
1981
|
resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
|
|
@@ -1975,9 +2001,6 @@ packages:
|
|
|
1975
2001
|
resolution: {integrity: sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==}
|
|
1976
2002
|
engines: {node: '>= 0.4'}
|
|
1977
2003
|
|
|
1978
|
-
shallowequal@1.1.0:
|
|
1979
|
-
resolution: {integrity: sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==}
|
|
1980
|
-
|
|
1981
2004
|
shebang-command@2.0.0:
|
|
1982
2005
|
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
|
|
1983
2006
|
engines: {node: '>=8'}
|
|
@@ -2104,6 +2127,10 @@ packages:
|
|
|
2104
2127
|
peerDependencies:
|
|
2105
2128
|
react: ^16.11.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
|
|
2106
2129
|
|
|
2130
|
+
tinyglobby@0.2.13:
|
|
2131
|
+
resolution: {integrity: sha512-mEwzpUgrLySlveBwEVDMKk5B57bhLPYovRfPAXD5gA/98Opn0rCDj3GtLwFvCvH5RK9uPCExUROW5NjDwvqkxw==}
|
|
2132
|
+
engines: {node: '>=12.0.0'}
|
|
2133
|
+
|
|
2107
2134
|
to-regex-range@5.0.1:
|
|
2108
2135
|
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
|
|
2109
2136
|
engines: {node: '>=8.0'}
|
|
@@ -2143,8 +2170,8 @@ packages:
|
|
|
2143
2170
|
tslib@2.8.1:
|
|
2144
2171
|
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
|
|
2145
2172
|
|
|
2146
|
-
tsx@4.19.
|
|
2147
|
-
resolution: {integrity: sha512-
|
|
2173
|
+
tsx@4.19.4:
|
|
2174
|
+
resolution: {integrity: sha512-gK5GVzDkJK1SI1zwHf32Mqxf2tSJkNx+eYcNly5+nHvWqXUJYUkWBQtKauoESz3ymezAI++ZwT855x5p5eop+Q==}
|
|
2148
2175
|
engines: {node: '>=18.0.0'}
|
|
2149
2176
|
hasBin: true
|
|
2150
2177
|
|
|
@@ -2155,8 +2182,8 @@ packages:
|
|
|
2155
2182
|
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
|
|
2156
2183
|
engines: {node: '>= 0.8.0'}
|
|
2157
2184
|
|
|
2158
|
-
type-fest@4.
|
|
2159
|
-
resolution: {integrity: sha512-
|
|
2185
|
+
type-fest@4.40.1:
|
|
2186
|
+
resolution: {integrity: sha512-9YvLNnORDpI+vghLU/Nf+zSv0kL47KbVJ1o3sKgoTefl6i+zebxbiDQWoe/oWWqPhIgQdRZRT1KA9sCPL810SA==}
|
|
2160
2187
|
engines: {node: '>=16'}
|
|
2161
2188
|
|
|
2162
2189
|
typed-array-buffer@1.0.3:
|
|
@@ -2181,22 +2208,22 @@ packages:
|
|
|
2181
2208
|
peerDependencies:
|
|
2182
2209
|
typedoc: 0.28.x
|
|
2183
2210
|
|
|
2184
|
-
typedoc@0.
|
|
2185
|
-
resolution: {integrity: sha512
|
|
2186
|
-
engines: {node: '>= 18'}
|
|
2211
|
+
typedoc@0.28.3:
|
|
2212
|
+
resolution: {integrity: sha512-5svOCTfXvVSh6zbZKSQluZhR8yN2tKpTeHZxlmWpE6N5vc3R8k/jhg9nnD6n5tN9/ObuQTojkONrOxFdUFUG9w==}
|
|
2213
|
+
engines: {node: '>= 18', pnpm: '>= 10'}
|
|
2187
2214
|
hasBin: true
|
|
2188
2215
|
peerDependencies:
|
|
2189
2216
|
typescript: 5.0.x || 5.1.x || 5.2.x || 5.3.x || 5.4.x || 5.5.x || 5.6.x || 5.7.x || 5.8.x
|
|
2190
2217
|
|
|
2191
|
-
typescript-eslint@8.
|
|
2192
|
-
resolution: {integrity: sha512-
|
|
2218
|
+
typescript-eslint@8.31.1:
|
|
2219
|
+
resolution: {integrity: sha512-j6DsEotD/fH39qKzXTQRwYYWlt7D+0HmfpOK+DVhwJOFLcdmn92hq3mBb7HlKJHbjjI/gTOqEcc9d6JfpFf/VA==}
|
|
2193
2220
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
2194
2221
|
peerDependencies:
|
|
2195
2222
|
eslint: ^8.57.0 || ^9.0.0
|
|
2196
2223
|
typescript: '>=4.8.4 <5.9.0'
|
|
2197
2224
|
|
|
2198
|
-
typescript@5.8.
|
|
2199
|
-
resolution: {integrity: sha512-
|
|
2225
|
+
typescript@5.8.3:
|
|
2226
|
+
resolution: {integrity: sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==}
|
|
2200
2227
|
engines: {node: '>=14.17'}
|
|
2201
2228
|
hasBin: true
|
|
2202
2229
|
|
|
@@ -2247,8 +2274,8 @@ packages:
|
|
|
2247
2274
|
vite:
|
|
2248
2275
|
optional: true
|
|
2249
2276
|
|
|
2250
|
-
vite@6.
|
|
2251
|
-
resolution: {integrity: sha512-
|
|
2277
|
+
vite@6.3.3:
|
|
2278
|
+
resolution: {integrity: sha512-5nXH+QsELbFKhsEfWLkHrvgRpTdGJzqOZ+utSdmPTvwHmvU6ITTm3xx+mRusihkcI8GeC7lCDyn3kDtiki9scw==}
|
|
2252
2279
|
engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
|
|
2253
2280
|
hasBin: true
|
|
2254
2281
|
peerDependencies:
|
|
@@ -2337,11 +2364,6 @@ packages:
|
|
|
2337
2364
|
resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}
|
|
2338
2365
|
engines: {node: '>= 6'}
|
|
2339
2366
|
|
|
2340
|
-
yaml@2.6.1:
|
|
2341
|
-
resolution: {integrity: sha512-7r0XPzioN/Q9kXBro/XPnA6kznR73DHq+GXh5ON7ZozRO6aMjbmiBuKste2wslTFkC5d1dw0GooOCepZXJ2SAg==}
|
|
2342
|
-
engines: {node: '>= 14'}
|
|
2343
|
-
hasBin: true
|
|
2344
|
-
|
|
2345
2367
|
yaml@2.7.1:
|
|
2346
2368
|
resolution: {integrity: sha512-10ULxpnOCQXxJvBgxsn9ptjq6uviG/htZKk9veJGhlqn3w/DxQ631zFF+nlQXLwmImeS5amR2dl2U8sg6U9jsQ==}
|
|
2347
2369
|
engines: {node: '>= 14'}
|
|
@@ -2365,8 +2387,8 @@ packages:
|
|
|
2365
2387
|
i18next: '>=21.3.0'
|
|
2366
2388
|
zod: '>=3.17.0'
|
|
2367
2389
|
|
|
2368
|
-
zod@3.24.
|
|
2369
|
-
resolution: {integrity: sha512-
|
|
2390
|
+
zod@3.24.3:
|
|
2391
|
+
resolution: {integrity: sha512-HhY1oqzWCQWuUqvBFnsyrtZRhyPeR7SUGv+C4+MsisMuVfSPx8HpwWqH8tRahSlt6M3PiFAcoeFhZAqIXTxoSg==}
|
|
2370
2392
|
|
|
2371
2393
|
snapshots:
|
|
2372
2394
|
|
|
@@ -2406,20 +2428,20 @@ snapshots:
|
|
|
2406
2428
|
js-tokens: 4.0.0
|
|
2407
2429
|
picocolors: 1.1.1
|
|
2408
2430
|
|
|
2409
|
-
'@babel/compat-data@7.26.
|
|
2431
|
+
'@babel/compat-data@7.26.8': {}
|
|
2410
2432
|
|
|
2411
|
-
'@babel/core@7.26.
|
|
2433
|
+
'@babel/core@7.26.10':
|
|
2412
2434
|
dependencies:
|
|
2413
2435
|
'@ampproject/remapping': 2.3.0
|
|
2414
2436
|
'@babel/code-frame': 7.26.2
|
|
2415
|
-
'@babel/generator': 7.
|
|
2416
|
-
'@babel/helper-compilation-targets': 7.
|
|
2417
|
-
'@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.
|
|
2418
|
-
'@babel/helpers': 7.
|
|
2419
|
-
'@babel/parser': 7.
|
|
2420
|
-
'@babel/template': 7.
|
|
2421
|
-
'@babel/traverse': 7.
|
|
2422
|
-
'@babel/types': 7.
|
|
2437
|
+
'@babel/generator': 7.27.0
|
|
2438
|
+
'@babel/helper-compilation-targets': 7.27.0
|
|
2439
|
+
'@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.10)
|
|
2440
|
+
'@babel/helpers': 7.27.0
|
|
2441
|
+
'@babel/parser': 7.27.0
|
|
2442
|
+
'@babel/template': 7.27.0
|
|
2443
|
+
'@babel/traverse': 7.27.0
|
|
2444
|
+
'@babel/types': 7.27.0
|
|
2423
2445
|
convert-source-map: 2.0.0
|
|
2424
2446
|
debug: 4.4.0
|
|
2425
2447
|
gensync: 1.0.0-beta.2
|
|
@@ -2428,17 +2450,17 @@ snapshots:
|
|
|
2428
2450
|
transitivePeerDependencies:
|
|
2429
2451
|
- supports-color
|
|
2430
2452
|
|
|
2431
|
-
'@babel/generator@7.
|
|
2453
|
+
'@babel/generator@7.27.0':
|
|
2432
2454
|
dependencies:
|
|
2433
|
-
'@babel/parser': 7.
|
|
2434
|
-
'@babel/types': 7.
|
|
2455
|
+
'@babel/parser': 7.27.0
|
|
2456
|
+
'@babel/types': 7.27.0
|
|
2435
2457
|
'@jridgewell/gen-mapping': 0.3.8
|
|
2436
2458
|
'@jridgewell/trace-mapping': 0.3.25
|
|
2437
2459
|
jsesc: 3.1.0
|
|
2438
2460
|
|
|
2439
|
-
'@babel/helper-compilation-targets@7.
|
|
2461
|
+
'@babel/helper-compilation-targets@7.27.0':
|
|
2440
2462
|
dependencies:
|
|
2441
|
-
'@babel/compat-data': 7.26.
|
|
2463
|
+
'@babel/compat-data': 7.26.8
|
|
2442
2464
|
'@babel/helper-validator-option': 7.25.9
|
|
2443
2465
|
browserslist: 4.24.4
|
|
2444
2466
|
lru-cache: 5.1.1
|
|
@@ -2446,17 +2468,17 @@ snapshots:
|
|
|
2446
2468
|
|
|
2447
2469
|
'@babel/helper-module-imports@7.25.9':
|
|
2448
2470
|
dependencies:
|
|
2449
|
-
'@babel/traverse': 7.
|
|
2450
|
-
'@babel/types': 7.
|
|
2471
|
+
'@babel/traverse': 7.27.0
|
|
2472
|
+
'@babel/types': 7.27.0
|
|
2451
2473
|
transitivePeerDependencies:
|
|
2452
2474
|
- supports-color
|
|
2453
2475
|
|
|
2454
|
-
'@babel/helper-module-transforms@7.26.0(@babel/core@7.26.
|
|
2476
|
+
'@babel/helper-module-transforms@7.26.0(@babel/core@7.26.10)':
|
|
2455
2477
|
dependencies:
|
|
2456
|
-
'@babel/core': 7.26.
|
|
2478
|
+
'@babel/core': 7.26.10
|
|
2457
2479
|
'@babel/helper-module-imports': 7.25.9
|
|
2458
2480
|
'@babel/helper-validator-identifier': 7.25.9
|
|
2459
|
-
'@babel/traverse': 7.
|
|
2481
|
+
'@babel/traverse': 7.27.0
|
|
2460
2482
|
transitivePeerDependencies:
|
|
2461
2483
|
- supports-color
|
|
2462
2484
|
|
|
@@ -2468,42 +2490,46 @@ snapshots:
|
|
|
2468
2490
|
|
|
2469
2491
|
'@babel/helper-validator-option@7.25.9': {}
|
|
2470
2492
|
|
|
2471
|
-
'@babel/helpers@7.
|
|
2493
|
+
'@babel/helpers@7.27.0':
|
|
2472
2494
|
dependencies:
|
|
2473
|
-
'@babel/template': 7.
|
|
2474
|
-
'@babel/types': 7.
|
|
2495
|
+
'@babel/template': 7.27.0
|
|
2496
|
+
'@babel/types': 7.27.0
|
|
2475
2497
|
|
|
2476
2498
|
'@babel/parser@7.26.3':
|
|
2477
2499
|
dependencies:
|
|
2478
2500
|
'@babel/types': 7.26.3
|
|
2479
2501
|
|
|
2480
|
-
'@babel/
|
|
2502
|
+
'@babel/parser@7.27.0':
|
|
2503
|
+
dependencies:
|
|
2504
|
+
'@babel/types': 7.27.0
|
|
2505
|
+
|
|
2506
|
+
'@babel/plugin-transform-react-jsx-self@7.25.9(@babel/core@7.26.10)':
|
|
2481
2507
|
dependencies:
|
|
2482
|
-
'@babel/core': 7.26.
|
|
2508
|
+
'@babel/core': 7.26.10
|
|
2483
2509
|
'@babel/helper-plugin-utils': 7.25.9
|
|
2484
2510
|
|
|
2485
|
-
'@babel/plugin-transform-react-jsx-source@7.25.9(@babel/core@7.26.
|
|
2511
|
+
'@babel/plugin-transform-react-jsx-source@7.25.9(@babel/core@7.26.10)':
|
|
2486
2512
|
dependencies:
|
|
2487
|
-
'@babel/core': 7.26.
|
|
2513
|
+
'@babel/core': 7.26.10
|
|
2488
2514
|
'@babel/helper-plugin-utils': 7.25.9
|
|
2489
2515
|
|
|
2490
2516
|
'@babel/runtime@7.27.0':
|
|
2491
2517
|
dependencies:
|
|
2492
2518
|
regenerator-runtime: 0.14.1
|
|
2493
2519
|
|
|
2494
|
-
'@babel/template@7.
|
|
2520
|
+
'@babel/template@7.27.0':
|
|
2495
2521
|
dependencies:
|
|
2496
2522
|
'@babel/code-frame': 7.26.2
|
|
2497
|
-
'@babel/parser': 7.
|
|
2498
|
-
'@babel/types': 7.
|
|
2523
|
+
'@babel/parser': 7.27.0
|
|
2524
|
+
'@babel/types': 7.27.0
|
|
2499
2525
|
|
|
2500
|
-
'@babel/traverse@7.
|
|
2526
|
+
'@babel/traverse@7.27.0':
|
|
2501
2527
|
dependencies:
|
|
2502
2528
|
'@babel/code-frame': 7.26.2
|
|
2503
|
-
'@babel/generator': 7.
|
|
2504
|
-
'@babel/parser': 7.
|
|
2505
|
-
'@babel/template': 7.
|
|
2506
|
-
'@babel/types': 7.
|
|
2529
|
+
'@babel/generator': 7.27.0
|
|
2530
|
+
'@babel/parser': 7.27.0
|
|
2531
|
+
'@babel/template': 7.27.0
|
|
2532
|
+
'@babel/types': 7.27.0
|
|
2507
2533
|
debug: 4.4.0
|
|
2508
2534
|
globals: 11.12.0
|
|
2509
2535
|
transitivePeerDependencies:
|
|
@@ -2514,6 +2540,11 @@ snapshots:
|
|
|
2514
2540
|
'@babel/helper-string-parser': 7.25.9
|
|
2515
2541
|
'@babel/helper-validator-identifier': 7.25.9
|
|
2516
2542
|
|
|
2543
|
+
'@babel/types@7.27.0':
|
|
2544
|
+
dependencies:
|
|
2545
|
+
'@babel/helper-string-parser': 7.25.9
|
|
2546
|
+
'@babel/helper-validator-identifier': 7.25.9
|
|
2547
|
+
|
|
2517
2548
|
'@esbuild/aix-ppc64@0.25.2':
|
|
2518
2549
|
optional: true
|
|
2519
2550
|
|
|
@@ -2589,14 +2620,14 @@ snapshots:
|
|
|
2589
2620
|
'@esbuild/win32-x64@0.25.2':
|
|
2590
2621
|
optional: true
|
|
2591
2622
|
|
|
2592
|
-
'@eslint-community/eslint-utils@4.4.1(eslint@9.
|
|
2623
|
+
'@eslint-community/eslint-utils@4.4.1(eslint@9.25.1)':
|
|
2593
2624
|
dependencies:
|
|
2594
|
-
eslint: 9.
|
|
2625
|
+
eslint: 9.25.1
|
|
2595
2626
|
eslint-visitor-keys: 3.4.3
|
|
2596
2627
|
|
|
2597
2628
|
'@eslint-community/regexpp@4.12.1': {}
|
|
2598
2629
|
|
|
2599
|
-
'@eslint/config-array@0.
|
|
2630
|
+
'@eslint/config-array@0.20.0':
|
|
2600
2631
|
dependencies:
|
|
2601
2632
|
'@eslint/object-schema': 2.1.6
|
|
2602
2633
|
debug: 4.4.0
|
|
@@ -2604,9 +2635,9 @@ snapshots:
|
|
|
2604
2635
|
transitivePeerDependencies:
|
|
2605
2636
|
- supports-color
|
|
2606
2637
|
|
|
2607
|
-
'@eslint/config-helpers@0.2.
|
|
2638
|
+
'@eslint/config-helpers@0.2.1': {}
|
|
2608
2639
|
|
|
2609
|
-
'@eslint/core@0.
|
|
2640
|
+
'@eslint/core@0.13.0':
|
|
2610
2641
|
dependencies:
|
|
2611
2642
|
'@types/json-schema': 7.0.15
|
|
2612
2643
|
|
|
@@ -2624,26 +2655,29 @@ snapshots:
|
|
|
2624
2655
|
transitivePeerDependencies:
|
|
2625
2656
|
- supports-color
|
|
2626
2657
|
|
|
2627
|
-
'@eslint/js@9.
|
|
2658
|
+
'@eslint/js@9.25.1': {}
|
|
2628
2659
|
|
|
2629
2660
|
'@eslint/object-schema@2.1.6': {}
|
|
2630
2661
|
|
|
2631
|
-
'@eslint/plugin-kit@0.2.
|
|
2662
|
+
'@eslint/plugin-kit@0.2.8':
|
|
2632
2663
|
dependencies:
|
|
2633
|
-
'@eslint/core': 0.
|
|
2664
|
+
'@eslint/core': 0.13.0
|
|
2634
2665
|
levn: 0.4.1
|
|
2635
2666
|
|
|
2636
2667
|
'@exodus/schemasafe@1.3.0': {}
|
|
2637
2668
|
|
|
2638
|
-
'@gerrit0/mini-shiki@
|
|
2669
|
+
'@gerrit0/mini-shiki@3.3.0':
|
|
2639
2670
|
dependencies:
|
|
2640
|
-
'@shikijs/engine-oniguruma':
|
|
2641
|
-
'@shikijs/
|
|
2642
|
-
'@shikijs/
|
|
2671
|
+
'@shikijs/engine-oniguruma': 3.3.0
|
|
2672
|
+
'@shikijs/langs': 3.3.0
|
|
2673
|
+
'@shikijs/themes': 3.3.0
|
|
2674
|
+
'@shikijs/types': 3.3.0
|
|
2675
|
+
'@shikijs/vscode-textmate': 10.0.2
|
|
2643
2676
|
|
|
2644
|
-
'@hookform/resolvers@
|
|
2677
|
+
'@hookform/resolvers@5.0.1(react-hook-form@7.56.1(react@19.1.0))':
|
|
2645
2678
|
dependencies:
|
|
2646
|
-
|
|
2679
|
+
'@standard-schema/utils': 0.3.0
|
|
2680
|
+
react-hook-form: 7.56.1(react@19.1.0)
|
|
2647
2681
|
|
|
2648
2682
|
'@humanfs/core@0.19.1': {}
|
|
2649
2683
|
|
|
@@ -2719,34 +2753,34 @@ snapshots:
|
|
|
2719
2753
|
'@nodelib/fs.scandir': 2.1.5
|
|
2720
2754
|
fastq: 1.18.0
|
|
2721
2755
|
|
|
2722
|
-
'@orval/angular@7.
|
|
2756
|
+
'@orval/angular@7.9.0(openapi-types@12.1.3)':
|
|
2723
2757
|
dependencies:
|
|
2724
|
-
'@orval/core': 7.
|
|
2758
|
+
'@orval/core': 7.9.0(openapi-types@12.1.3)
|
|
2725
2759
|
transitivePeerDependencies:
|
|
2726
2760
|
- encoding
|
|
2727
2761
|
- openapi-types
|
|
2728
2762
|
- supports-color
|
|
2729
2763
|
|
|
2730
|
-
'@orval/axios@7.
|
|
2764
|
+
'@orval/axios@7.9.0(openapi-types@12.1.3)':
|
|
2731
2765
|
dependencies:
|
|
2732
|
-
'@orval/core': 7.
|
|
2766
|
+
'@orval/core': 7.9.0(openapi-types@12.1.3)
|
|
2733
2767
|
transitivePeerDependencies:
|
|
2734
2768
|
- encoding
|
|
2735
2769
|
- openapi-types
|
|
2736
2770
|
- supports-color
|
|
2737
2771
|
|
|
2738
|
-
'@orval/core@7.
|
|
2772
|
+
'@orval/core@7.9.0(openapi-types@12.1.3)':
|
|
2739
2773
|
dependencies:
|
|
2740
2774
|
'@apidevtools/swagger-parser': 10.1.1(openapi-types@12.1.3)
|
|
2741
2775
|
'@ibm-cloud/openapi-ruleset': 1.29.4
|
|
2742
|
-
acorn: 8.14.
|
|
2776
|
+
acorn: 8.14.1
|
|
2743
2777
|
ajv: 8.17.1
|
|
2744
2778
|
chalk: 4.1.2
|
|
2745
2779
|
compare-versions: 6.1.1
|
|
2746
2780
|
debug: 4.4.0
|
|
2747
2781
|
esbuild: 0.25.2
|
|
2748
2782
|
esutils: 2.0.3
|
|
2749
|
-
fs-extra: 11.
|
|
2783
|
+
fs-extra: 11.3.0
|
|
2750
2784
|
globby: 11.1.0
|
|
2751
2785
|
lodash.isempty: 4.4.0
|
|
2752
2786
|
lodash.uniq: 4.5.0
|
|
@@ -2760,129 +2794,151 @@ snapshots:
|
|
|
2760
2794
|
- openapi-types
|
|
2761
2795
|
- supports-color
|
|
2762
2796
|
|
|
2763
|
-
'@orval/fetch@7.
|
|
2797
|
+
'@orval/fetch@7.9.0(openapi-types@12.1.3)':
|
|
2764
2798
|
dependencies:
|
|
2765
|
-
'@orval/core': 7.
|
|
2799
|
+
'@orval/core': 7.9.0(openapi-types@12.1.3)
|
|
2766
2800
|
transitivePeerDependencies:
|
|
2767
2801
|
- encoding
|
|
2768
2802
|
- openapi-types
|
|
2769
2803
|
- supports-color
|
|
2770
2804
|
|
|
2771
|
-
'@orval/hono@7.
|
|
2805
|
+
'@orval/hono@7.9.0(openapi-types@12.1.3)':
|
|
2772
2806
|
dependencies:
|
|
2773
|
-
'@orval/core': 7.
|
|
2774
|
-
'@orval/zod': 7.
|
|
2807
|
+
'@orval/core': 7.9.0(openapi-types@12.1.3)
|
|
2808
|
+
'@orval/zod': 7.9.0(openapi-types@12.1.3)
|
|
2775
2809
|
lodash.uniq: 4.5.0
|
|
2776
2810
|
transitivePeerDependencies:
|
|
2777
2811
|
- encoding
|
|
2778
2812
|
- openapi-types
|
|
2779
2813
|
- supports-color
|
|
2780
2814
|
|
|
2781
|
-
'@orval/
|
|
2815
|
+
'@orval/mcp@7.9.0(openapi-types@12.1.3)':
|
|
2816
|
+
dependencies:
|
|
2817
|
+
'@orval/core': 7.9.0(openapi-types@12.1.3)
|
|
2818
|
+
'@orval/zod': 7.9.0(openapi-types@12.1.3)
|
|
2819
|
+
transitivePeerDependencies:
|
|
2820
|
+
- encoding
|
|
2821
|
+
- openapi-types
|
|
2822
|
+
- supports-color
|
|
2823
|
+
|
|
2824
|
+
'@orval/mock@7.9.0(openapi-types@12.1.3)':
|
|
2782
2825
|
dependencies:
|
|
2783
|
-
'@orval/core': 7.
|
|
2826
|
+
'@orval/core': 7.9.0(openapi-types@12.1.3)
|
|
2784
2827
|
openapi3-ts: 4.4.0
|
|
2785
2828
|
transitivePeerDependencies:
|
|
2786
2829
|
- encoding
|
|
2787
2830
|
- openapi-types
|
|
2788
2831
|
- supports-color
|
|
2789
2832
|
|
|
2790
|
-
'@orval/query@7.
|
|
2833
|
+
'@orval/query@7.9.0(openapi-types@12.1.3)':
|
|
2791
2834
|
dependencies:
|
|
2792
|
-
'@orval/core': 7.
|
|
2793
|
-
'@orval/fetch': 7.
|
|
2835
|
+
'@orval/core': 7.9.0(openapi-types@12.1.3)
|
|
2836
|
+
'@orval/fetch': 7.9.0(openapi-types@12.1.3)
|
|
2794
2837
|
lodash.omitby: 4.6.0
|
|
2795
2838
|
transitivePeerDependencies:
|
|
2796
2839
|
- encoding
|
|
2797
2840
|
- openapi-types
|
|
2798
2841
|
- supports-color
|
|
2799
2842
|
|
|
2800
|
-
'@orval/swr@7.
|
|
2843
|
+
'@orval/swr@7.9.0(openapi-types@12.1.3)':
|
|
2801
2844
|
dependencies:
|
|
2802
|
-
'@orval/core': 7.
|
|
2803
|
-
'@orval/fetch': 7.
|
|
2845
|
+
'@orval/core': 7.9.0(openapi-types@12.1.3)
|
|
2846
|
+
'@orval/fetch': 7.9.0(openapi-types@12.1.3)
|
|
2804
2847
|
transitivePeerDependencies:
|
|
2805
2848
|
- encoding
|
|
2806
2849
|
- openapi-types
|
|
2807
2850
|
- supports-color
|
|
2808
2851
|
|
|
2809
|
-
'@orval/zod@7.
|
|
2852
|
+
'@orval/zod@7.9.0(openapi-types@12.1.3)':
|
|
2810
2853
|
dependencies:
|
|
2811
|
-
'@orval/core': 7.
|
|
2854
|
+
'@orval/core': 7.9.0(openapi-types@12.1.3)
|
|
2812
2855
|
lodash.uniq: 4.5.0
|
|
2813
2856
|
transitivePeerDependencies:
|
|
2814
2857
|
- encoding
|
|
2815
2858
|
- openapi-types
|
|
2816
2859
|
- supports-color
|
|
2817
2860
|
|
|
2818
|
-
'@rollup/rollup-android-arm-eabi@4.
|
|
2861
|
+
'@rollup/rollup-android-arm-eabi@4.40.1':
|
|
2819
2862
|
optional: true
|
|
2820
2863
|
|
|
2821
|
-
'@rollup/rollup-android-arm64@4.
|
|
2864
|
+
'@rollup/rollup-android-arm64@4.40.1':
|
|
2822
2865
|
optional: true
|
|
2823
2866
|
|
|
2824
|
-
'@rollup/rollup-darwin-arm64@4.
|
|
2867
|
+
'@rollup/rollup-darwin-arm64@4.40.1':
|
|
2825
2868
|
optional: true
|
|
2826
2869
|
|
|
2827
|
-
'@rollup/rollup-darwin-x64@4.
|
|
2870
|
+
'@rollup/rollup-darwin-x64@4.40.1':
|
|
2828
2871
|
optional: true
|
|
2829
2872
|
|
|
2830
|
-
'@rollup/rollup-freebsd-arm64@4.
|
|
2873
|
+
'@rollup/rollup-freebsd-arm64@4.40.1':
|
|
2831
2874
|
optional: true
|
|
2832
2875
|
|
|
2833
|
-
'@rollup/rollup-freebsd-x64@4.
|
|
2876
|
+
'@rollup/rollup-freebsd-x64@4.40.1':
|
|
2834
2877
|
optional: true
|
|
2835
2878
|
|
|
2836
|
-
'@rollup/rollup-linux-arm-gnueabihf@4.
|
|
2879
|
+
'@rollup/rollup-linux-arm-gnueabihf@4.40.1':
|
|
2837
2880
|
optional: true
|
|
2838
2881
|
|
|
2839
|
-
'@rollup/rollup-linux-arm-musleabihf@4.
|
|
2882
|
+
'@rollup/rollup-linux-arm-musleabihf@4.40.1':
|
|
2840
2883
|
optional: true
|
|
2841
2884
|
|
|
2842
|
-
'@rollup/rollup-linux-arm64-gnu@4.
|
|
2885
|
+
'@rollup/rollup-linux-arm64-gnu@4.40.1':
|
|
2843
2886
|
optional: true
|
|
2844
2887
|
|
|
2845
|
-
'@rollup/rollup-linux-arm64-musl@4.
|
|
2888
|
+
'@rollup/rollup-linux-arm64-musl@4.40.1':
|
|
2846
2889
|
optional: true
|
|
2847
2890
|
|
|
2848
|
-
'@rollup/rollup-linux-loongarch64-gnu@4.
|
|
2891
|
+
'@rollup/rollup-linux-loongarch64-gnu@4.40.1':
|
|
2849
2892
|
optional: true
|
|
2850
2893
|
|
|
2851
|
-
'@rollup/rollup-linux-powerpc64le-gnu@4.
|
|
2894
|
+
'@rollup/rollup-linux-powerpc64le-gnu@4.40.1':
|
|
2852
2895
|
optional: true
|
|
2853
2896
|
|
|
2854
|
-
'@rollup/rollup-linux-riscv64-gnu@4.
|
|
2897
|
+
'@rollup/rollup-linux-riscv64-gnu@4.40.1':
|
|
2855
2898
|
optional: true
|
|
2856
2899
|
|
|
2857
|
-
'@rollup/rollup-linux-
|
|
2900
|
+
'@rollup/rollup-linux-riscv64-musl@4.40.1':
|
|
2858
2901
|
optional: true
|
|
2859
2902
|
|
|
2860
|
-
'@rollup/rollup-linux-
|
|
2903
|
+
'@rollup/rollup-linux-s390x-gnu@4.40.1':
|
|
2861
2904
|
optional: true
|
|
2862
2905
|
|
|
2863
|
-
'@rollup/rollup-linux-x64-
|
|
2906
|
+
'@rollup/rollup-linux-x64-gnu@4.40.1':
|
|
2864
2907
|
optional: true
|
|
2865
2908
|
|
|
2866
|
-
'@rollup/rollup-
|
|
2909
|
+
'@rollup/rollup-linux-x64-musl@4.40.1':
|
|
2867
2910
|
optional: true
|
|
2868
2911
|
|
|
2869
|
-
'@rollup/rollup-win32-
|
|
2912
|
+
'@rollup/rollup-win32-arm64-msvc@4.40.1':
|
|
2870
2913
|
optional: true
|
|
2871
2914
|
|
|
2872
|
-
'@rollup/rollup-win32-
|
|
2915
|
+
'@rollup/rollup-win32-ia32-msvc@4.40.1':
|
|
2873
2916
|
optional: true
|
|
2874
2917
|
|
|
2875
|
-
'@
|
|
2918
|
+
'@rollup/rollup-win32-x64-msvc@4.40.1':
|
|
2919
|
+
optional: true
|
|
2920
|
+
|
|
2921
|
+
'@shikijs/engine-oniguruma@3.3.0':
|
|
2922
|
+
dependencies:
|
|
2923
|
+
'@shikijs/types': 3.3.0
|
|
2924
|
+
'@shikijs/vscode-textmate': 10.0.2
|
|
2925
|
+
|
|
2926
|
+
'@shikijs/langs@3.3.0':
|
|
2927
|
+
dependencies:
|
|
2928
|
+
'@shikijs/types': 3.3.0
|
|
2929
|
+
|
|
2930
|
+
'@shikijs/themes@3.3.0':
|
|
2876
2931
|
dependencies:
|
|
2877
|
-
'@shikijs/types':
|
|
2878
|
-
'@shikijs/vscode-textmate': 10.0.1
|
|
2932
|
+
'@shikijs/types': 3.3.0
|
|
2879
2933
|
|
|
2880
|
-
'@shikijs/types@
|
|
2934
|
+
'@shikijs/types@3.3.0':
|
|
2881
2935
|
dependencies:
|
|
2882
|
-
'@shikijs/vscode-textmate': 10.0.
|
|
2936
|
+
'@shikijs/vscode-textmate': 10.0.2
|
|
2883
2937
|
'@types/hast': 3.0.4
|
|
2884
2938
|
|
|
2885
|
-
'@shikijs/vscode-textmate@10.0.
|
|
2939
|
+
'@shikijs/vscode-textmate@10.0.2': {}
|
|
2940
|
+
|
|
2941
|
+
'@standard-schema/utils@0.3.0': {}
|
|
2886
2942
|
|
|
2887
2943
|
'@stoplight/better-ajv-errors@1.0.3(ajv@8.17.1)':
|
|
2888
2944
|
dependencies:
|
|
@@ -3068,14 +3124,14 @@ snapshots:
|
|
|
3068
3124
|
dependencies:
|
|
3069
3125
|
'@babel/types': 7.26.3
|
|
3070
3126
|
|
|
3071
|
-
'@types/cookie@0.6.0': {}
|
|
3072
|
-
|
|
3073
3127
|
'@types/es-aggregate-error@1.0.6':
|
|
3074
3128
|
dependencies:
|
|
3075
3129
|
'@types/node': 22.10.5
|
|
3076
3130
|
|
|
3077
3131
|
'@types/estree@1.0.6': {}
|
|
3078
3132
|
|
|
3133
|
+
'@types/estree@1.0.7': {}
|
|
3134
|
+
|
|
3079
3135
|
'@types/hast@3.0.4':
|
|
3080
3136
|
dependencies:
|
|
3081
3137
|
'@types/unist': 3.0.3
|
|
@@ -3086,106 +3142,103 @@ snapshots:
|
|
|
3086
3142
|
dependencies:
|
|
3087
3143
|
undici-types: 6.20.0
|
|
3088
3144
|
|
|
3089
|
-
'@types/
|
|
3090
|
-
|
|
3091
|
-
'@types/react-dom@18.3.5(@types/react@18.3.20)':
|
|
3145
|
+
'@types/react-dom@19.1.2(@types/react@19.1.2)':
|
|
3092
3146
|
dependencies:
|
|
3093
|
-
'@types/react':
|
|
3147
|
+
'@types/react': 19.1.2
|
|
3094
3148
|
|
|
3095
|
-
'@types/react@
|
|
3149
|
+
'@types/react@19.1.2':
|
|
3096
3150
|
dependencies:
|
|
3097
|
-
'@types/prop-types': 15.7.14
|
|
3098
3151
|
csstype: 3.1.3
|
|
3099
3152
|
|
|
3100
3153
|
'@types/unist@3.0.3': {}
|
|
3101
3154
|
|
|
3102
3155
|
'@types/urijs@1.19.25': {}
|
|
3103
3156
|
|
|
3104
|
-
'@typescript-eslint/eslint-plugin@8.
|
|
3157
|
+
'@typescript-eslint/eslint-plugin@8.31.1(@typescript-eslint/parser@8.31.1(eslint@9.25.1)(typescript@5.8.3))(eslint@9.25.1)(typescript@5.8.3)':
|
|
3105
3158
|
dependencies:
|
|
3106
3159
|
'@eslint-community/regexpp': 4.12.1
|
|
3107
|
-
'@typescript-eslint/parser': 8.
|
|
3108
|
-
'@typescript-eslint/scope-manager': 8.
|
|
3109
|
-
'@typescript-eslint/type-utils': 8.
|
|
3110
|
-
'@typescript-eslint/utils': 8.
|
|
3111
|
-
'@typescript-eslint/visitor-keys': 8.
|
|
3112
|
-
eslint: 9.
|
|
3160
|
+
'@typescript-eslint/parser': 8.31.1(eslint@9.25.1)(typescript@5.8.3)
|
|
3161
|
+
'@typescript-eslint/scope-manager': 8.31.1
|
|
3162
|
+
'@typescript-eslint/type-utils': 8.31.1(eslint@9.25.1)(typescript@5.8.3)
|
|
3163
|
+
'@typescript-eslint/utils': 8.31.1(eslint@9.25.1)(typescript@5.8.3)
|
|
3164
|
+
'@typescript-eslint/visitor-keys': 8.31.1
|
|
3165
|
+
eslint: 9.25.1
|
|
3113
3166
|
graphemer: 1.4.0
|
|
3114
3167
|
ignore: 5.3.2
|
|
3115
3168
|
natural-compare: 1.4.0
|
|
3116
|
-
ts-api-utils: 2.1.0(typescript@5.8.
|
|
3117
|
-
typescript: 5.8.
|
|
3169
|
+
ts-api-utils: 2.1.0(typescript@5.8.3)
|
|
3170
|
+
typescript: 5.8.3
|
|
3118
3171
|
transitivePeerDependencies:
|
|
3119
3172
|
- supports-color
|
|
3120
3173
|
|
|
3121
|
-
'@typescript-eslint/parser@8.
|
|
3174
|
+
'@typescript-eslint/parser@8.31.1(eslint@9.25.1)(typescript@5.8.3)':
|
|
3122
3175
|
dependencies:
|
|
3123
|
-
'@typescript-eslint/scope-manager': 8.
|
|
3124
|
-
'@typescript-eslint/types': 8.
|
|
3125
|
-
'@typescript-eslint/typescript-estree': 8.
|
|
3126
|
-
'@typescript-eslint/visitor-keys': 8.
|
|
3176
|
+
'@typescript-eslint/scope-manager': 8.31.1
|
|
3177
|
+
'@typescript-eslint/types': 8.31.1
|
|
3178
|
+
'@typescript-eslint/typescript-estree': 8.31.1(typescript@5.8.3)
|
|
3179
|
+
'@typescript-eslint/visitor-keys': 8.31.1
|
|
3127
3180
|
debug: 4.4.0
|
|
3128
|
-
eslint: 9.
|
|
3129
|
-
typescript: 5.8.
|
|
3181
|
+
eslint: 9.25.1
|
|
3182
|
+
typescript: 5.8.3
|
|
3130
3183
|
transitivePeerDependencies:
|
|
3131
3184
|
- supports-color
|
|
3132
3185
|
|
|
3133
|
-
'@typescript-eslint/scope-manager@8.
|
|
3186
|
+
'@typescript-eslint/scope-manager@8.31.1':
|
|
3134
3187
|
dependencies:
|
|
3135
|
-
'@typescript-eslint/types': 8.
|
|
3136
|
-
'@typescript-eslint/visitor-keys': 8.
|
|
3188
|
+
'@typescript-eslint/types': 8.31.1
|
|
3189
|
+
'@typescript-eslint/visitor-keys': 8.31.1
|
|
3137
3190
|
|
|
3138
|
-
'@typescript-eslint/type-utils@8.
|
|
3191
|
+
'@typescript-eslint/type-utils@8.31.1(eslint@9.25.1)(typescript@5.8.3)':
|
|
3139
3192
|
dependencies:
|
|
3140
|
-
'@typescript-eslint/typescript-estree': 8.
|
|
3141
|
-
'@typescript-eslint/utils': 8.
|
|
3193
|
+
'@typescript-eslint/typescript-estree': 8.31.1(typescript@5.8.3)
|
|
3194
|
+
'@typescript-eslint/utils': 8.31.1(eslint@9.25.1)(typescript@5.8.3)
|
|
3142
3195
|
debug: 4.4.0
|
|
3143
|
-
eslint: 9.
|
|
3144
|
-
ts-api-utils: 2.1.0(typescript@5.8.
|
|
3145
|
-
typescript: 5.8.
|
|
3196
|
+
eslint: 9.25.1
|
|
3197
|
+
ts-api-utils: 2.1.0(typescript@5.8.3)
|
|
3198
|
+
typescript: 5.8.3
|
|
3146
3199
|
transitivePeerDependencies:
|
|
3147
3200
|
- supports-color
|
|
3148
3201
|
|
|
3149
|
-
'@typescript-eslint/types@8.
|
|
3202
|
+
'@typescript-eslint/types@8.31.1': {}
|
|
3150
3203
|
|
|
3151
|
-
'@typescript-eslint/typescript-estree@8.
|
|
3204
|
+
'@typescript-eslint/typescript-estree@8.31.1(typescript@5.8.3)':
|
|
3152
3205
|
dependencies:
|
|
3153
|
-
'@typescript-eslint/types': 8.
|
|
3154
|
-
'@typescript-eslint/visitor-keys': 8.
|
|
3206
|
+
'@typescript-eslint/types': 8.31.1
|
|
3207
|
+
'@typescript-eslint/visitor-keys': 8.31.1
|
|
3155
3208
|
debug: 4.4.0
|
|
3156
3209
|
fast-glob: 3.3.3
|
|
3157
3210
|
is-glob: 4.0.3
|
|
3158
3211
|
minimatch: 9.0.5
|
|
3159
3212
|
semver: 7.6.3
|
|
3160
|
-
ts-api-utils: 2.1.0(typescript@5.8.
|
|
3161
|
-
typescript: 5.8.
|
|
3213
|
+
ts-api-utils: 2.1.0(typescript@5.8.3)
|
|
3214
|
+
typescript: 5.8.3
|
|
3162
3215
|
transitivePeerDependencies:
|
|
3163
3216
|
- supports-color
|
|
3164
3217
|
|
|
3165
|
-
'@typescript-eslint/utils@8.
|
|
3218
|
+
'@typescript-eslint/utils@8.31.1(eslint@9.25.1)(typescript@5.8.3)':
|
|
3166
3219
|
dependencies:
|
|
3167
|
-
'@eslint-community/eslint-utils': 4.4.1(eslint@9.
|
|
3168
|
-
'@typescript-eslint/scope-manager': 8.
|
|
3169
|
-
'@typescript-eslint/types': 8.
|
|
3170
|
-
'@typescript-eslint/typescript-estree': 8.
|
|
3171
|
-
eslint: 9.
|
|
3172
|
-
typescript: 5.8.
|
|
3220
|
+
'@eslint-community/eslint-utils': 4.4.1(eslint@9.25.1)
|
|
3221
|
+
'@typescript-eslint/scope-manager': 8.31.1
|
|
3222
|
+
'@typescript-eslint/types': 8.31.1
|
|
3223
|
+
'@typescript-eslint/typescript-estree': 8.31.1(typescript@5.8.3)
|
|
3224
|
+
eslint: 9.25.1
|
|
3225
|
+
typescript: 5.8.3
|
|
3173
3226
|
transitivePeerDependencies:
|
|
3174
3227
|
- supports-color
|
|
3175
3228
|
|
|
3176
|
-
'@typescript-eslint/visitor-keys@8.
|
|
3229
|
+
'@typescript-eslint/visitor-keys@8.31.1':
|
|
3177
3230
|
dependencies:
|
|
3178
|
-
'@typescript-eslint/types': 8.
|
|
3231
|
+
'@typescript-eslint/types': 8.31.1
|
|
3179
3232
|
eslint-visitor-keys: 4.2.0
|
|
3180
3233
|
|
|
3181
|
-
'@vitejs/plugin-react@4.
|
|
3234
|
+
'@vitejs/plugin-react@4.4.1(vite@6.3.3(@types/node@22.10.5)(tsx@4.19.4)(yaml@2.7.1))':
|
|
3182
3235
|
dependencies:
|
|
3183
|
-
'@babel/core': 7.26.
|
|
3184
|
-
'@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.
|
|
3185
|
-
'@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.
|
|
3236
|
+
'@babel/core': 7.26.10
|
|
3237
|
+
'@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.10)
|
|
3238
|
+
'@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.10)
|
|
3186
3239
|
'@types/babel__core': 7.20.5
|
|
3187
|
-
react-refresh: 0.
|
|
3188
|
-
vite: 6.
|
|
3240
|
+
react-refresh: 0.17.0
|
|
3241
|
+
vite: 6.3.3(@types/node@22.10.5)(tsx@4.19.4)(yaml@2.7.1)
|
|
3189
3242
|
transitivePeerDependencies:
|
|
3190
3243
|
- supports-color
|
|
3191
3244
|
|
|
@@ -3199,6 +3252,8 @@ snapshots:
|
|
|
3199
3252
|
|
|
3200
3253
|
acorn@8.14.0: {}
|
|
3201
3254
|
|
|
3255
|
+
acorn@8.14.1: {}
|
|
3256
|
+
|
|
3202
3257
|
ajv-draft-04@1.0.0(ajv@8.17.1):
|
|
3203
3258
|
optionalDependencies:
|
|
3204
3259
|
ajv: 8.17.1
|
|
@@ -3550,17 +3605,17 @@ snapshots:
|
|
|
3550
3605
|
|
|
3551
3606
|
escape-string-regexp@4.0.0: {}
|
|
3552
3607
|
|
|
3553
|
-
eslint-config-prettier@
|
|
3608
|
+
eslint-config-prettier@10.1.2(eslint@9.25.1):
|
|
3554
3609
|
dependencies:
|
|
3555
|
-
eslint: 9.
|
|
3610
|
+
eslint: 9.25.1
|
|
3556
3611
|
|
|
3557
|
-
eslint-plugin-react-hooks@5.2.0(eslint@9.
|
|
3612
|
+
eslint-plugin-react-hooks@5.2.0(eslint@9.25.1):
|
|
3558
3613
|
dependencies:
|
|
3559
|
-
eslint: 9.
|
|
3614
|
+
eslint: 9.25.1
|
|
3560
3615
|
|
|
3561
|
-
eslint-plugin-react-refresh@0.4.
|
|
3616
|
+
eslint-plugin-react-refresh@0.4.20(eslint@9.25.1):
|
|
3562
3617
|
dependencies:
|
|
3563
|
-
eslint: 9.
|
|
3618
|
+
eslint: 9.25.1
|
|
3564
3619
|
|
|
3565
3620
|
eslint-scope@8.3.0:
|
|
3566
3621
|
dependencies:
|
|
@@ -3571,16 +3626,16 @@ snapshots:
|
|
|
3571
3626
|
|
|
3572
3627
|
eslint-visitor-keys@4.2.0: {}
|
|
3573
3628
|
|
|
3574
|
-
eslint@9.
|
|
3629
|
+
eslint@9.25.1:
|
|
3575
3630
|
dependencies:
|
|
3576
|
-
'@eslint-community/eslint-utils': 4.4.1(eslint@9.
|
|
3631
|
+
'@eslint-community/eslint-utils': 4.4.1(eslint@9.25.1)
|
|
3577
3632
|
'@eslint-community/regexpp': 4.12.1
|
|
3578
|
-
'@eslint/config-array': 0.
|
|
3579
|
-
'@eslint/config-helpers': 0.2.
|
|
3580
|
-
'@eslint/core': 0.
|
|
3633
|
+
'@eslint/config-array': 0.20.0
|
|
3634
|
+
'@eslint/config-helpers': 0.2.1
|
|
3635
|
+
'@eslint/core': 0.13.0
|
|
3581
3636
|
'@eslint/eslintrc': 3.3.1
|
|
3582
|
-
'@eslint/js': 9.
|
|
3583
|
-
'@eslint/plugin-kit': 0.2.
|
|
3637
|
+
'@eslint/js': 9.25.1
|
|
3638
|
+
'@eslint/plugin-kit': 0.2.8
|
|
3584
3639
|
'@humanfs/node': 0.16.6
|
|
3585
3640
|
'@humanwhocodes/module-importer': 1.0.1
|
|
3586
3641
|
'@humanwhocodes/retry': 0.4.2
|
|
@@ -3681,6 +3736,10 @@ snapshots:
|
|
|
3681
3736
|
dependencies:
|
|
3682
3737
|
reusify: 1.0.4
|
|
3683
3738
|
|
|
3739
|
+
fdir@6.4.4(picomatch@4.0.2):
|
|
3740
|
+
optionalDependencies:
|
|
3741
|
+
picomatch: 4.0.2
|
|
3742
|
+
|
|
3684
3743
|
file-entry-cache@8.0.0:
|
|
3685
3744
|
dependencies:
|
|
3686
3745
|
flat-cache: 4.0.1
|
|
@@ -3711,6 +3770,12 @@ snapshots:
|
|
|
3711
3770
|
jsonfile: 6.1.0
|
|
3712
3771
|
universalify: 2.0.1
|
|
3713
3772
|
|
|
3773
|
+
fs-extra@11.3.0:
|
|
3774
|
+
dependencies:
|
|
3775
|
+
graceful-fs: 4.2.11
|
|
3776
|
+
jsonfile: 6.1.0
|
|
3777
|
+
universalify: 2.0.1
|
|
3778
|
+
|
|
3714
3779
|
fsevents@2.3.3:
|
|
3715
3780
|
optional: true
|
|
3716
3781
|
|
|
@@ -3777,7 +3842,7 @@ snapshots:
|
|
|
3777
3842
|
|
|
3778
3843
|
globals@14.0.0: {}
|
|
3779
3844
|
|
|
3780
|
-
globals@
|
|
3845
|
+
globals@16.0.0: {}
|
|
3781
3846
|
|
|
3782
3847
|
globalthis@1.0.4:
|
|
3783
3848
|
dependencies:
|
|
@@ -3831,11 +3896,11 @@ snapshots:
|
|
|
3831
3896
|
|
|
3832
3897
|
husky@9.1.7: {}
|
|
3833
3898
|
|
|
3834
|
-
i18next@
|
|
3899
|
+
i18next@25.0.2(typescript@5.8.3):
|
|
3835
3900
|
dependencies:
|
|
3836
3901
|
'@babel/runtime': 7.27.0
|
|
3837
3902
|
optionalDependencies:
|
|
3838
|
-
typescript: 5.8.
|
|
3903
|
+
typescript: 5.8.3
|
|
3839
3904
|
|
|
3840
3905
|
ignore@5.3.2: {}
|
|
3841
3906
|
|
|
@@ -3854,10 +3919,6 @@ snapshots:
|
|
|
3854
3919
|
hasown: 2.0.2
|
|
3855
3920
|
side-channel: 1.1.0
|
|
3856
3921
|
|
|
3857
|
-
invariant@2.2.4:
|
|
3858
|
-
dependencies:
|
|
3859
|
-
loose-envify: 1.4.0
|
|
3860
|
-
|
|
3861
3922
|
is-array-buffer@3.0.5:
|
|
3862
3923
|
dependencies:
|
|
3863
3924
|
call-bind: 1.0.8
|
|
@@ -4029,7 +4090,7 @@ snapshots:
|
|
|
4029
4090
|
dependencies:
|
|
4030
4091
|
uc.micro: 2.1.0
|
|
4031
4092
|
|
|
4032
|
-
lint-staged@15.5.
|
|
4093
|
+
lint-staged@15.5.1:
|
|
4033
4094
|
dependencies:
|
|
4034
4095
|
chalk: 5.4.1
|
|
4035
4096
|
commander: 13.1.0
|
|
@@ -4085,10 +4146,6 @@ snapshots:
|
|
|
4085
4146
|
|
|
4086
4147
|
loglevel@1.9.2: {}
|
|
4087
4148
|
|
|
4088
|
-
loose-envify@1.4.0:
|
|
4089
|
-
dependencies:
|
|
4090
|
-
js-tokens: 4.0.0
|
|
4091
|
-
|
|
4092
4149
|
lru-cache@5.1.1:
|
|
4093
4150
|
dependencies:
|
|
4094
4151
|
yallist: 3.1.1
|
|
@@ -4233,11 +4290,11 @@ snapshots:
|
|
|
4233
4290
|
|
|
4234
4291
|
openapi3-ts@4.2.2:
|
|
4235
4292
|
dependencies:
|
|
4236
|
-
yaml: 2.
|
|
4293
|
+
yaml: 2.7.1
|
|
4237
4294
|
|
|
4238
4295
|
openapi3-ts@4.4.0:
|
|
4239
4296
|
dependencies:
|
|
4240
|
-
yaml: 2.
|
|
4297
|
+
yaml: 2.7.1
|
|
4241
4298
|
|
|
4242
4299
|
optionator@0.9.4:
|
|
4243
4300
|
dependencies:
|
|
@@ -4248,18 +4305,19 @@ snapshots:
|
|
|
4248
4305
|
type-check: 0.4.0
|
|
4249
4306
|
word-wrap: 1.2.5
|
|
4250
4307
|
|
|
4251
|
-
orval@7.
|
|
4308
|
+
orval@7.9.0(openapi-types@12.1.3):
|
|
4252
4309
|
dependencies:
|
|
4253
4310
|
'@apidevtools/swagger-parser': 10.1.1(openapi-types@12.1.3)
|
|
4254
|
-
'@orval/angular': 7.
|
|
4255
|
-
'@orval/axios': 7.
|
|
4256
|
-
'@orval/core': 7.
|
|
4257
|
-
'@orval/fetch': 7.
|
|
4258
|
-
'@orval/hono': 7.
|
|
4259
|
-
'@orval/
|
|
4260
|
-
'@orval/
|
|
4261
|
-
'@orval/
|
|
4262
|
-
'@orval/
|
|
4311
|
+
'@orval/angular': 7.9.0(openapi-types@12.1.3)
|
|
4312
|
+
'@orval/axios': 7.9.0(openapi-types@12.1.3)
|
|
4313
|
+
'@orval/core': 7.9.0(openapi-types@12.1.3)
|
|
4314
|
+
'@orval/fetch': 7.9.0(openapi-types@12.1.3)
|
|
4315
|
+
'@orval/hono': 7.9.0(openapi-types@12.1.3)
|
|
4316
|
+
'@orval/mcp': 7.9.0(openapi-types@12.1.3)
|
|
4317
|
+
'@orval/mock': 7.9.0(openapi-types@12.1.3)
|
|
4318
|
+
'@orval/query': 7.9.0(openapi-types@12.1.3)
|
|
4319
|
+
'@orval/swr': 7.9.0(openapi-types@12.1.3)
|
|
4320
|
+
'@orval/zod': 7.9.0(openapi-types@12.1.3)
|
|
4263
4321
|
ajv: 8.17.1
|
|
4264
4322
|
cac: 6.7.14
|
|
4265
4323
|
chalk: 4.1.2
|
|
@@ -4271,10 +4329,10 @@ snapshots:
|
|
|
4271
4329
|
lodash.uniq: 4.5.0
|
|
4272
4330
|
openapi3-ts: 4.2.2
|
|
4273
4331
|
string-argv: 0.3.2
|
|
4274
|
-
tsconfck: 2.1.2(typescript@5.8.
|
|
4275
|
-
typedoc: 0.
|
|
4276
|
-
typedoc-plugin-markdown: 4.6.0(typedoc@0.
|
|
4277
|
-
typescript: 5.8.
|
|
4332
|
+
tsconfck: 2.1.2(typescript@5.8.3)
|
|
4333
|
+
typedoc: 0.28.3(typescript@5.8.3)
|
|
4334
|
+
typedoc-plugin-markdown: 4.6.0(typedoc@0.28.3(typescript@5.8.3))
|
|
4335
|
+
typescript: 5.8.3
|
|
4278
4336
|
transitivePeerDependencies:
|
|
4279
4337
|
- encoding
|
|
4280
4338
|
- openapi-types
|
|
@@ -4310,6 +4368,8 @@ snapshots:
|
|
|
4310
4368
|
|
|
4311
4369
|
picomatch@2.3.1: {}
|
|
4312
4370
|
|
|
4371
|
+
picomatch@4.0.2: {}
|
|
4372
|
+
|
|
4313
4373
|
pidtree@0.6.0: {}
|
|
4314
4374
|
|
|
4315
4375
|
pony-cause@1.1.1: {}
|
|
@@ -4332,40 +4392,27 @@ snapshots:
|
|
|
4332
4392
|
|
|
4333
4393
|
queue-microtask@1.2.3: {}
|
|
4334
4394
|
|
|
4335
|
-
react-dom@
|
|
4336
|
-
dependencies:
|
|
4337
|
-
loose-envify: 1.4.0
|
|
4338
|
-
react: 18.3.1
|
|
4339
|
-
scheduler: 0.23.2
|
|
4340
|
-
|
|
4341
|
-
react-fast-compare@3.2.2: {}
|
|
4342
|
-
|
|
4343
|
-
react-helmet-async@2.0.5(react@18.3.1):
|
|
4395
|
+
react-dom@19.1.0(react@19.1.0):
|
|
4344
4396
|
dependencies:
|
|
4345
|
-
|
|
4346
|
-
|
|
4347
|
-
react-fast-compare: 3.2.2
|
|
4348
|
-
shallowequal: 1.1.0
|
|
4397
|
+
react: 19.1.0
|
|
4398
|
+
scheduler: 0.26.0
|
|
4349
4399
|
|
|
4350
|
-
react-hook-form@7.
|
|
4400
|
+
react-hook-form@7.56.1(react@19.1.0):
|
|
4351
4401
|
dependencies:
|
|
4352
|
-
react:
|
|
4402
|
+
react: 19.1.0
|
|
4353
4403
|
|
|
4354
|
-
react-refresh@0.
|
|
4404
|
+
react-refresh@0.17.0: {}
|
|
4355
4405
|
|
|
4356
|
-
react-router@7.
|
|
4406
|
+
react-router@7.5.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
|
|
4357
4407
|
dependencies:
|
|
4358
|
-
'@types/cookie': 0.6.0
|
|
4359
4408
|
cookie: 1.0.2
|
|
4360
|
-
react:
|
|
4409
|
+
react: 19.1.0
|
|
4361
4410
|
set-cookie-parser: 2.7.1
|
|
4362
4411
|
turbo-stream: 2.4.0
|
|
4363
4412
|
optionalDependencies:
|
|
4364
|
-
react-dom:
|
|
4413
|
+
react-dom: 19.1.0(react@19.1.0)
|
|
4365
4414
|
|
|
4366
|
-
react@
|
|
4367
|
-
dependencies:
|
|
4368
|
-
loose-envify: 1.4.0
|
|
4415
|
+
react@19.1.0: {}
|
|
4369
4416
|
|
|
4370
4417
|
readdirp@4.1.1: {}
|
|
4371
4418
|
|
|
@@ -4410,29 +4457,30 @@ snapshots:
|
|
|
4410
4457
|
|
|
4411
4458
|
rfdc@1.4.1: {}
|
|
4412
4459
|
|
|
4413
|
-
rollup@4.
|
|
4460
|
+
rollup@4.40.1:
|
|
4414
4461
|
dependencies:
|
|
4415
|
-
'@types/estree': 1.0.
|
|
4462
|
+
'@types/estree': 1.0.7
|
|
4416
4463
|
optionalDependencies:
|
|
4417
|
-
'@rollup/rollup-android-arm-eabi': 4.
|
|
4418
|
-
'@rollup/rollup-android-arm64': 4.
|
|
4419
|
-
'@rollup/rollup-darwin-arm64': 4.
|
|
4420
|
-
'@rollup/rollup-darwin-x64': 4.
|
|
4421
|
-
'@rollup/rollup-freebsd-arm64': 4.
|
|
4422
|
-
'@rollup/rollup-freebsd-x64': 4.
|
|
4423
|
-
'@rollup/rollup-linux-arm-gnueabihf': 4.
|
|
4424
|
-
'@rollup/rollup-linux-arm-musleabihf': 4.
|
|
4425
|
-
'@rollup/rollup-linux-arm64-gnu': 4.
|
|
4426
|
-
'@rollup/rollup-linux-arm64-musl': 4.
|
|
4427
|
-
'@rollup/rollup-linux-loongarch64-gnu': 4.
|
|
4428
|
-
'@rollup/rollup-linux-powerpc64le-gnu': 4.
|
|
4429
|
-
'@rollup/rollup-linux-riscv64-gnu': 4.
|
|
4430
|
-
'@rollup/rollup-linux-
|
|
4431
|
-
'@rollup/rollup-linux-
|
|
4432
|
-
'@rollup/rollup-linux-x64-
|
|
4433
|
-
'@rollup/rollup-
|
|
4434
|
-
'@rollup/rollup-win32-
|
|
4435
|
-
'@rollup/rollup-win32-
|
|
4464
|
+
'@rollup/rollup-android-arm-eabi': 4.40.1
|
|
4465
|
+
'@rollup/rollup-android-arm64': 4.40.1
|
|
4466
|
+
'@rollup/rollup-darwin-arm64': 4.40.1
|
|
4467
|
+
'@rollup/rollup-darwin-x64': 4.40.1
|
|
4468
|
+
'@rollup/rollup-freebsd-arm64': 4.40.1
|
|
4469
|
+
'@rollup/rollup-freebsd-x64': 4.40.1
|
|
4470
|
+
'@rollup/rollup-linux-arm-gnueabihf': 4.40.1
|
|
4471
|
+
'@rollup/rollup-linux-arm-musleabihf': 4.40.1
|
|
4472
|
+
'@rollup/rollup-linux-arm64-gnu': 4.40.1
|
|
4473
|
+
'@rollup/rollup-linux-arm64-musl': 4.40.1
|
|
4474
|
+
'@rollup/rollup-linux-loongarch64-gnu': 4.40.1
|
|
4475
|
+
'@rollup/rollup-linux-powerpc64le-gnu': 4.40.1
|
|
4476
|
+
'@rollup/rollup-linux-riscv64-gnu': 4.40.1
|
|
4477
|
+
'@rollup/rollup-linux-riscv64-musl': 4.40.1
|
|
4478
|
+
'@rollup/rollup-linux-s390x-gnu': 4.40.1
|
|
4479
|
+
'@rollup/rollup-linux-x64-gnu': 4.40.1
|
|
4480
|
+
'@rollup/rollup-linux-x64-musl': 4.40.1
|
|
4481
|
+
'@rollup/rollup-win32-arm64-msvc': 4.40.1
|
|
4482
|
+
'@rollup/rollup-win32-ia32-msvc': 4.40.1
|
|
4483
|
+
'@rollup/rollup-win32-x64-msvc': 4.40.1
|
|
4436
4484
|
fsevents: 2.3.3
|
|
4437
4485
|
|
|
4438
4486
|
run-parallel@1.2.0:
|
|
@@ -4460,9 +4508,7 @@ snapshots:
|
|
|
4460
4508
|
|
|
4461
4509
|
safe-stable-stringify@1.1.1: {}
|
|
4462
4510
|
|
|
4463
|
-
scheduler@0.
|
|
4464
|
-
dependencies:
|
|
4465
|
-
loose-envify: 1.4.0
|
|
4511
|
+
scheduler@0.26.0: {}
|
|
4466
4512
|
|
|
4467
4513
|
semver@6.3.1: {}
|
|
4468
4514
|
|
|
@@ -4492,8 +4538,6 @@ snapshots:
|
|
|
4492
4538
|
es-errors: 1.3.0
|
|
4493
4539
|
es-object-atoms: 1.0.0
|
|
4494
4540
|
|
|
4495
|
-
shallowequal@1.1.0: {}
|
|
4496
|
-
|
|
4497
4541
|
shebang-command@2.0.0:
|
|
4498
4542
|
dependencies:
|
|
4499
4543
|
shebang-regex: 3.0.0
|
|
@@ -4647,11 +4691,16 @@ snapshots:
|
|
|
4647
4691
|
transitivePeerDependencies:
|
|
4648
4692
|
- encoding
|
|
4649
4693
|
|
|
4650
|
-
swr@2.3.3(react@
|
|
4694
|
+
swr@2.3.3(react@19.1.0):
|
|
4651
4695
|
dependencies:
|
|
4652
4696
|
dequal: 2.0.3
|
|
4653
|
-
react:
|
|
4654
|
-
use-sync-external-store: 1.4.0(react@
|
|
4697
|
+
react: 19.1.0
|
|
4698
|
+
use-sync-external-store: 1.4.0(react@19.1.0)
|
|
4699
|
+
|
|
4700
|
+
tinyglobby@0.2.13:
|
|
4701
|
+
dependencies:
|
|
4702
|
+
fdir: 6.4.4(picomatch@4.0.2)
|
|
4703
|
+
picomatch: 4.0.2
|
|
4655
4704
|
|
|
4656
4705
|
to-regex-range@5.0.1:
|
|
4657
4706
|
dependencies:
|
|
@@ -4659,23 +4708,23 @@ snapshots:
|
|
|
4659
4708
|
|
|
4660
4709
|
tr46@0.0.3: {}
|
|
4661
4710
|
|
|
4662
|
-
ts-api-utils@2.1.0(typescript@5.8.
|
|
4711
|
+
ts-api-utils@2.1.0(typescript@5.8.3):
|
|
4663
4712
|
dependencies:
|
|
4664
|
-
typescript: 5.8.
|
|
4713
|
+
typescript: 5.8.3
|
|
4665
4714
|
|
|
4666
|
-
tsconfck@2.1.2(typescript@5.8.
|
|
4715
|
+
tsconfck@2.1.2(typescript@5.8.3):
|
|
4667
4716
|
optionalDependencies:
|
|
4668
|
-
typescript: 5.8.
|
|
4717
|
+
typescript: 5.8.3
|
|
4669
4718
|
|
|
4670
|
-
tsconfck@3.1.4(typescript@5.8.
|
|
4719
|
+
tsconfck@3.1.4(typescript@5.8.3):
|
|
4671
4720
|
optionalDependencies:
|
|
4672
|
-
typescript: 5.8.
|
|
4721
|
+
typescript: 5.8.3
|
|
4673
4722
|
|
|
4674
4723
|
tslib@1.14.1: {}
|
|
4675
4724
|
|
|
4676
4725
|
tslib@2.8.1: {}
|
|
4677
4726
|
|
|
4678
|
-
tsx@4.19.
|
|
4727
|
+
tsx@4.19.4:
|
|
4679
4728
|
dependencies:
|
|
4680
4729
|
esbuild: 0.25.2
|
|
4681
4730
|
get-tsconfig: 4.8.1
|
|
@@ -4688,7 +4737,7 @@ snapshots:
|
|
|
4688
4737
|
dependencies:
|
|
4689
4738
|
prelude-ls: 1.2.1
|
|
4690
4739
|
|
|
4691
|
-
type-fest@4.
|
|
4740
|
+
type-fest@4.40.1: {}
|
|
4692
4741
|
|
|
4693
4742
|
typed-array-buffer@1.0.3:
|
|
4694
4743
|
dependencies:
|
|
@@ -4723,30 +4772,30 @@ snapshots:
|
|
|
4723
4772
|
possible-typed-array-names: 1.0.0
|
|
4724
4773
|
reflect.getprototypeof: 1.0.10
|
|
4725
4774
|
|
|
4726
|
-
typedoc-plugin-markdown@4.6.0(typedoc@0.
|
|
4775
|
+
typedoc-plugin-markdown@4.6.0(typedoc@0.28.3(typescript@5.8.3)):
|
|
4727
4776
|
dependencies:
|
|
4728
|
-
typedoc: 0.
|
|
4777
|
+
typedoc: 0.28.3(typescript@5.8.3)
|
|
4729
4778
|
|
|
4730
|
-
typedoc@0.
|
|
4779
|
+
typedoc@0.28.3(typescript@5.8.3):
|
|
4731
4780
|
dependencies:
|
|
4732
|
-
'@gerrit0/mini-shiki':
|
|
4781
|
+
'@gerrit0/mini-shiki': 3.3.0
|
|
4733
4782
|
lunr: 2.3.9
|
|
4734
4783
|
markdown-it: 14.1.0
|
|
4735
4784
|
minimatch: 9.0.5
|
|
4736
|
-
typescript: 5.8.
|
|
4737
|
-
yaml: 2.
|
|
4785
|
+
typescript: 5.8.3
|
|
4786
|
+
yaml: 2.7.1
|
|
4738
4787
|
|
|
4739
|
-
typescript-eslint@8.
|
|
4788
|
+
typescript-eslint@8.31.1(eslint@9.25.1)(typescript@5.8.3):
|
|
4740
4789
|
dependencies:
|
|
4741
|
-
'@typescript-eslint/eslint-plugin': 8.
|
|
4742
|
-
'@typescript-eslint/parser': 8.
|
|
4743
|
-
'@typescript-eslint/utils': 8.
|
|
4744
|
-
eslint: 9.
|
|
4745
|
-
typescript: 5.8.
|
|
4790
|
+
'@typescript-eslint/eslint-plugin': 8.31.1(@typescript-eslint/parser@8.31.1(eslint@9.25.1)(typescript@5.8.3))(eslint@9.25.1)(typescript@5.8.3)
|
|
4791
|
+
'@typescript-eslint/parser': 8.31.1(eslint@9.25.1)(typescript@5.8.3)
|
|
4792
|
+
'@typescript-eslint/utils': 8.31.1(eslint@9.25.1)(typescript@5.8.3)
|
|
4793
|
+
eslint: 9.25.1
|
|
4794
|
+
typescript: 5.8.3
|
|
4746
4795
|
transitivePeerDependencies:
|
|
4747
4796
|
- supports-color
|
|
4748
4797
|
|
|
4749
|
-
typescript@5.8.
|
|
4798
|
+
typescript@5.8.3: {}
|
|
4750
4799
|
|
|
4751
4800
|
uc.micro@2.1.0: {}
|
|
4752
4801
|
|
|
@@ -4773,34 +4822,37 @@ snapshots:
|
|
|
4773
4822
|
|
|
4774
4823
|
urijs@1.19.11: {}
|
|
4775
4824
|
|
|
4776
|
-
use-sync-external-store@1.4.0(react@
|
|
4825
|
+
use-sync-external-store@1.4.0(react@19.1.0):
|
|
4777
4826
|
dependencies:
|
|
4778
|
-
react:
|
|
4827
|
+
react: 19.1.0
|
|
4779
4828
|
|
|
4780
4829
|
utility-types@3.11.0: {}
|
|
4781
4830
|
|
|
4782
4831
|
validator@13.12.0: {}
|
|
4783
4832
|
|
|
4784
|
-
vite-tsconfig-paths@5.1.4(typescript@5.8.
|
|
4833
|
+
vite-tsconfig-paths@5.1.4(typescript@5.8.3)(vite@6.3.3(@types/node@22.10.5)(tsx@4.19.4)(yaml@2.7.1)):
|
|
4785
4834
|
dependencies:
|
|
4786
4835
|
debug: 4.4.0
|
|
4787
4836
|
globrex: 0.1.2
|
|
4788
|
-
tsconfck: 3.1.4(typescript@5.8.
|
|
4837
|
+
tsconfck: 3.1.4(typescript@5.8.3)
|
|
4789
4838
|
optionalDependencies:
|
|
4790
|
-
vite: 6.
|
|
4839
|
+
vite: 6.3.3(@types/node@22.10.5)(tsx@4.19.4)(yaml@2.7.1)
|
|
4791
4840
|
transitivePeerDependencies:
|
|
4792
4841
|
- supports-color
|
|
4793
4842
|
- typescript
|
|
4794
4843
|
|
|
4795
|
-
vite@6.
|
|
4844
|
+
vite@6.3.3(@types/node@22.10.5)(tsx@4.19.4)(yaml@2.7.1):
|
|
4796
4845
|
dependencies:
|
|
4797
4846
|
esbuild: 0.25.2
|
|
4847
|
+
fdir: 6.4.4(picomatch@4.0.2)
|
|
4848
|
+
picomatch: 4.0.2
|
|
4798
4849
|
postcss: 8.5.3
|
|
4799
|
-
rollup: 4.
|
|
4850
|
+
rollup: 4.40.1
|
|
4851
|
+
tinyglobby: 0.2.13
|
|
4800
4852
|
optionalDependencies:
|
|
4801
4853
|
'@types/node': 22.10.5
|
|
4802
4854
|
fsevents: 2.3.3
|
|
4803
|
-
tsx: 4.19.
|
|
4855
|
+
tsx: 4.19.4
|
|
4804
4856
|
yaml: 2.7.1
|
|
4805
4857
|
|
|
4806
4858
|
webidl-conversions@3.0.1: {}
|
|
@@ -4874,8 +4926,6 @@ snapshots:
|
|
|
4874
4926
|
|
|
4875
4927
|
yaml@1.10.2: {}
|
|
4876
4928
|
|
|
4877
|
-
yaml@2.6.1: {}
|
|
4878
|
-
|
|
4879
4929
|
yaml@2.7.1: {}
|
|
4880
4930
|
|
|
4881
4931
|
yargs-parser@21.1.1: {}
|
|
@@ -4892,9 +4942,9 @@ snapshots:
|
|
|
4892
4942
|
|
|
4893
4943
|
yocto-queue@0.1.0: {}
|
|
4894
4944
|
|
|
4895
|
-
zod-i18n-map@2.27.0(i18next@
|
|
4945
|
+
zod-i18n-map@2.27.0(i18next@25.0.2(typescript@5.8.3))(zod@3.24.3):
|
|
4896
4946
|
dependencies:
|
|
4897
|
-
i18next:
|
|
4898
|
-
zod: 3.24.
|
|
4947
|
+
i18next: 25.0.2(typescript@5.8.3)
|
|
4948
|
+
zod: 3.24.3
|
|
4899
4949
|
|
|
4900
|
-
zod@3.24.
|
|
4950
|
+
zod@3.24.3: {}
|