create-jinmankn-app 1.0.12 → 1.0.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (54) hide show
  1. package/package.json +1 -1
  2. package/templates/EPMS(Employee Payroll Managment System)/package-lock.json +13 -0
  3. package/templates/SMS(Stock Managment System)/backend-project/server.js +1 -1
  4. package/templates/SMS(Stock Managment System)/frontend-project/src/components/AppLayout.jsx +1 -1
  5. package/templates/SMS(Stock Managment System)/frontend-project/src/pages/Login.jsx +1 -1
  6. package/templates/SMS(Stock Managment System)/frontend-project/src/pages/Product.jsx +211 -78
  7. package/templates/SMS(Stock Managment System)/frontend-project/src/pages/Profile.jsx +1 -1
  8. package/templates/SMS(Stock Managment System)/frontend-project/src/pages/Register.jsx +1 -1
  9. package/templates/SMS(Stock Managment System)/frontend-project/src/pages/Reports.jsx +1 -1
  10. package/templates/SMS(Stock Managment System)/frontend-project/src/pages/Sales.jsx +6 -6
  11. package/templates/SMS(Stock Managment System)/frontend-project/src/pages/Warehouse.jsx +150 -44
  12. package/templates/SMS(Stock Managment System)/package-lock.json +13 -0
  13. package/templates/index/README.md +34 -0
  14. package/templates/index/backend/config/db.js +12 -0
  15. package/templates/index/backend/controllers/authController.js +88 -0
  16. package/templates/index/backend/controllers/departmentController.js +74 -0
  17. package/templates/index/backend/controllers/employeeController.js +204 -0
  18. package/templates/index/backend/controllers/positionController.js +78 -0
  19. package/templates/index/backend/controllers/reportController.js +45 -0
  20. package/templates/index/backend/middleware/auth.js +27 -0
  21. package/templates/index/backend/models/Department.js +15 -0
  22. package/templates/index/backend/models/Employee.js +73 -0
  23. package/templates/index/backend/models/Position.js +20 -0
  24. package/templates/index/backend/models/User.js +32 -0
  25. package/templates/index/backend/package-lock.json +2190 -0
  26. package/templates/index/backend/package.json +22 -0
  27. package/templates/index/backend/routes/authRoutes.js +11 -0
  28. package/templates/index/backend/routes/departmentRoutes.js +17 -0
  29. package/templates/index/backend/routes/employeeRoutes.js +19 -0
  30. package/templates/index/backend/routes/positionRoutes.js +17 -0
  31. package/templates/index/backend/routes/protectedRoutes.js +10 -0
  32. package/templates/index/backend/routes/reportRoutes.js +9 -0
  33. package/templates/index/backend/server.js +30 -0
  34. package/templates/index/frontend/README.md +16 -0
  35. package/templates/index/frontend/eslint.config.js +21 -0
  36. package/templates/index/frontend/index.html +13 -0
  37. package/templates/index/frontend/package-lock.json +3095 -0
  38. package/templates/index/frontend/package.json +31 -0
  39. package/templates/index/frontend/public/favicon.svg +1 -0
  40. package/templates/index/frontend/src/App.css +0 -0
  41. package/templates/index/frontend/src/App.jsx +35 -0
  42. package/templates/index/frontend/src/assets/hero.png +0 -0
  43. package/templates/index/frontend/src/components/DashboardLayout.jsx +90 -0
  44. package/templates/index/frontend/src/components/ProtectedRoute.jsx +9 -0
  45. package/templates/index/frontend/src/index.css +59 -0
  46. package/templates/index/frontend/src/main.jsx +11 -0
  47. package/templates/index/frontend/src/pages/DashboardHome.jsx +58 -0
  48. package/templates/index/frontend/src/pages/Department.jsx +150 -0
  49. package/templates/index/frontend/src/pages/Employee.jsx +366 -0
  50. package/templates/index/frontend/src/pages/Login.jsx +81 -0
  51. package/templates/index/frontend/src/pages/Position.jsx +169 -0
  52. package/templates/index/frontend/src/pages/Register.jsx +102 -0
  53. package/templates/index/frontend/src/pages/Reports.jsx +94 -0
  54. package/templates/index/frontend/vite.config.js +7 -0
@@ -0,0 +1,3095 @@
1
+ {
2
+ "name": "frontend",
3
+ "version": "0.0.0",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "frontend",
9
+ "version": "0.0.0",
10
+ "dependencies": {
11
+ "@tailwindcss/vite": "^4.3.0",
12
+ "axios": "^1.16.1",
13
+ "react": "^19.2.6",
14
+ "react-dom": "^19.2.6",
15
+ "react-router-dom": "^7.15.1",
16
+ "tailwindcss": "^4.3.0"
17
+ },
18
+ "devDependencies": {
19
+ "@eslint/js": "^10.0.1",
20
+ "@types/react": "^19.2.14",
21
+ "@types/react-dom": "^19.2.3",
22
+ "@vitejs/plugin-react": "^6.0.1",
23
+ "eslint": "^10.3.0",
24
+ "eslint-plugin-react-hooks": "^7.1.1",
25
+ "eslint-plugin-react-refresh": "^0.5.2",
26
+ "globals": "^17.6.0",
27
+ "vite": "^8.0.12"
28
+ }
29
+ },
30
+ "node_modules/@babel/code-frame": {
31
+ "version": "7.29.7",
32
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.7.tgz",
33
+ "integrity": "sha512-Aup7aUOfpbAUg2ROOJN6Iw5f9DMBlzu0mIkm/malLQFN/YQgO48wCj0Kxa3sEHJvPVFg7siR+qRInwXd2qhQKw==",
34
+ "dev": true,
35
+ "license": "MIT",
36
+ "dependencies": {
37
+ "@babel/helper-validator-identifier": "^7.29.7",
38
+ "js-tokens": "^4.0.0",
39
+ "picocolors": "^1.1.1"
40
+ },
41
+ "engines": {
42
+ "node": ">=6.9.0"
43
+ }
44
+ },
45
+ "node_modules/@babel/compat-data": {
46
+ "version": "7.29.7",
47
+ "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.29.7.tgz",
48
+ "integrity": "sha512-locTkQyKvwIEgBzVrn8693ebc97F2U8ZHjbXwDXJ5Fn2TCpNwTlKcaKLkdHop5c/icOFE7qt7Q9JC5hnKNa6Gg==",
49
+ "dev": true,
50
+ "license": "MIT",
51
+ "engines": {
52
+ "node": ">=6.9.0"
53
+ }
54
+ },
55
+ "node_modules/@babel/core": {
56
+ "version": "7.29.7",
57
+ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.29.7.tgz",
58
+ "integrity": "sha512-RgHBCvtjbOK2gXSNBNIkNoEc9qoVEtau3hj8gEqKQuL3HZAibKarWFEI3Lfm6EYKkLalOh8eSrj9b+ch9H/VBA==",
59
+ "dev": true,
60
+ "license": "MIT",
61
+ "dependencies": {
62
+ "@babel/code-frame": "^7.29.7",
63
+ "@babel/generator": "^7.29.7",
64
+ "@babel/helper-compilation-targets": "^7.29.7",
65
+ "@babel/helper-module-transforms": "^7.29.7",
66
+ "@babel/helpers": "^7.29.7",
67
+ "@babel/parser": "^7.29.7",
68
+ "@babel/template": "^7.29.7",
69
+ "@babel/traverse": "^7.29.7",
70
+ "@babel/types": "^7.29.7",
71
+ "@jridgewell/remapping": "^2.3.5",
72
+ "convert-source-map": "^2.0.0",
73
+ "debug": "^4.1.0",
74
+ "gensync": "^1.0.0-beta.2",
75
+ "json5": "^2.2.3",
76
+ "semver": "^6.3.1"
77
+ },
78
+ "engines": {
79
+ "node": ">=6.9.0"
80
+ },
81
+ "funding": {
82
+ "type": "opencollective",
83
+ "url": "https://opencollective.com/babel"
84
+ }
85
+ },
86
+ "node_modules/@babel/generator": {
87
+ "version": "7.29.7",
88
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.7.tgz",
89
+ "integrity": "sha512-DkXD5OJQaAQIdZ1bt3UZdEnHAn9Imd3IVBdX03UFe+ony9Ojw5pzr9YVKGDY1jt+Gcn/FnGkNf8r+Vj5NOJWtQ==",
90
+ "dev": true,
91
+ "license": "MIT",
92
+ "dependencies": {
93
+ "@babel/parser": "^7.29.7",
94
+ "@babel/types": "^7.29.7",
95
+ "@jridgewell/gen-mapping": "^0.3.12",
96
+ "@jridgewell/trace-mapping": "^0.3.28",
97
+ "jsesc": "^3.0.2"
98
+ },
99
+ "engines": {
100
+ "node": ">=6.9.0"
101
+ }
102
+ },
103
+ "node_modules/@babel/helper-compilation-targets": {
104
+ "version": "7.29.7",
105
+ "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.29.7.tgz",
106
+ "integrity": "sha512-wem6WaBj4NaVYVdNhLPPVacES6ZJ+KBBfSkTMD3YZxbP3rm3Di85tJU5ljaUNhaOynt+Aj0xruhYuzQBt8n71g==",
107
+ "dev": true,
108
+ "license": "MIT",
109
+ "dependencies": {
110
+ "@babel/compat-data": "^7.29.7",
111
+ "@babel/helper-validator-option": "^7.29.7",
112
+ "browserslist": "^4.24.0",
113
+ "lru-cache": "^5.1.1",
114
+ "semver": "^6.3.1"
115
+ },
116
+ "engines": {
117
+ "node": ">=6.9.0"
118
+ }
119
+ },
120
+ "node_modules/@babel/helper-globals": {
121
+ "version": "7.29.7",
122
+ "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.29.7.tgz",
123
+ "integrity": "sha512-3nQVUAtvkKH9zahfWgw96Jc/uFOmjACE1kQz82E2lqWmHBgjzbNlsC22nuQTfahmWeQtTq5nQ/4Nnd2A1wj4zA==",
124
+ "dev": true,
125
+ "license": "MIT",
126
+ "engines": {
127
+ "node": ">=6.9.0"
128
+ }
129
+ },
130
+ "node_modules/@babel/helper-module-imports": {
131
+ "version": "7.29.7",
132
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.29.7.tgz",
133
+ "integrity": "sha512-ejHwrQQYcm9xnTivShn2IDOlIzInN34AXskvq9QicvCtEzq1Vzclu/tKF8Jq1Cg8JG2GL6/EmjgsCT7lXepE3g==",
134
+ "dev": true,
135
+ "license": "MIT",
136
+ "dependencies": {
137
+ "@babel/traverse": "^7.29.7",
138
+ "@babel/types": "^7.29.7"
139
+ },
140
+ "engines": {
141
+ "node": ">=6.9.0"
142
+ }
143
+ },
144
+ "node_modules/@babel/helper-module-transforms": {
145
+ "version": "7.29.7",
146
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.29.7.tgz",
147
+ "integrity": "sha512-UPUVSyXbOh627KiCIGQSgwWzGeBKLkaJ9PJEdrngIwMSzxLR4jS4+f1f1jb7VzBbg8nFLaYotvVPFCTqdrmTAg==",
148
+ "dev": true,
149
+ "license": "MIT",
150
+ "dependencies": {
151
+ "@babel/helper-module-imports": "^7.29.7",
152
+ "@babel/helper-validator-identifier": "^7.29.7",
153
+ "@babel/traverse": "^7.29.7"
154
+ },
155
+ "engines": {
156
+ "node": ">=6.9.0"
157
+ },
158
+ "peerDependencies": {
159
+ "@babel/core": "^7.0.0"
160
+ }
161
+ },
162
+ "node_modules/@babel/helper-string-parser": {
163
+ "version": "7.29.7",
164
+ "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.29.7.tgz",
165
+ "integrity": "sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==",
166
+ "dev": true,
167
+ "license": "MIT",
168
+ "engines": {
169
+ "node": ">=6.9.0"
170
+ }
171
+ },
172
+ "node_modules/@babel/helper-validator-identifier": {
173
+ "version": "7.29.7",
174
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.29.7.tgz",
175
+ "integrity": "sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==",
176
+ "dev": true,
177
+ "license": "MIT",
178
+ "engines": {
179
+ "node": ">=6.9.0"
180
+ }
181
+ },
182
+ "node_modules/@babel/helper-validator-option": {
183
+ "version": "7.29.7",
184
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.29.7.tgz",
185
+ "integrity": "sha512-N9ZErrD+yW5geCDtBqnOoxmR8+tNKiGuxKlDpuJxfsqpa2dFcexaziGAE/qoHLiDDreVNMupxGmSoNlyvsA3gw==",
186
+ "dev": true,
187
+ "license": "MIT",
188
+ "engines": {
189
+ "node": ">=6.9.0"
190
+ }
191
+ },
192
+ "node_modules/@babel/helpers": {
193
+ "version": "7.29.7",
194
+ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.29.7.tgz",
195
+ "integrity": "sha512-1k2lAGRMfHTcwuNYcCNUmaUffmQv8KWMfh2iJUUeRlwlwH4FdNG7mfPI10NPfLHJFThE4Tyr4mv7kTNZOiPuBg==",
196
+ "dev": true,
197
+ "license": "MIT",
198
+ "dependencies": {
199
+ "@babel/template": "^7.29.7",
200
+ "@babel/types": "^7.29.7"
201
+ },
202
+ "engines": {
203
+ "node": ">=6.9.0"
204
+ }
205
+ },
206
+ "node_modules/@babel/parser": {
207
+ "version": "7.29.7",
208
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.7.tgz",
209
+ "integrity": "sha512-hnORnjP/1P/zFEndoeX+n+t1RwWRJiJpM/jO7FW32Kn9r5+sJB2JWOdYo4L6k78j15eCwY3Gm/7364B1EMwtNg==",
210
+ "dev": true,
211
+ "license": "MIT",
212
+ "dependencies": {
213
+ "@babel/types": "^7.29.7"
214
+ },
215
+ "bin": {
216
+ "parser": "bin/babel-parser.js"
217
+ },
218
+ "engines": {
219
+ "node": ">=6.0.0"
220
+ }
221
+ },
222
+ "node_modules/@babel/template": {
223
+ "version": "7.29.7",
224
+ "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.29.7.tgz",
225
+ "integrity": "sha512-puq+Gf35oI24FeN11LkoUQFqv9uwNeWpxXZi/Ji3rRIoKAzKnxRaZ+Gkj0vKS9ZCiTESfng1N9LyOyXvo+m+Gg==",
226
+ "dev": true,
227
+ "license": "MIT",
228
+ "dependencies": {
229
+ "@babel/code-frame": "^7.29.7",
230
+ "@babel/parser": "^7.29.7",
231
+ "@babel/types": "^7.29.7"
232
+ },
233
+ "engines": {
234
+ "node": ">=6.9.0"
235
+ }
236
+ },
237
+ "node_modules/@babel/traverse": {
238
+ "version": "7.29.7",
239
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.29.7.tgz",
240
+ "integrity": "sha512-EhlfNQtZ+NK22w5BM61ciuiq1m58ed33Wr1Xan//ZRTy6hgjnwyCffRYwzsGXdASJSUJ1guZILsErh1eQcl+zw==",
241
+ "dev": true,
242
+ "license": "MIT",
243
+ "dependencies": {
244
+ "@babel/code-frame": "^7.29.7",
245
+ "@babel/generator": "^7.29.7",
246
+ "@babel/helper-globals": "^7.29.7",
247
+ "@babel/parser": "^7.29.7",
248
+ "@babel/template": "^7.29.7",
249
+ "@babel/types": "^7.29.7",
250
+ "debug": "^4.3.1"
251
+ },
252
+ "engines": {
253
+ "node": ">=6.9.0"
254
+ }
255
+ },
256
+ "node_modules/@babel/types": {
257
+ "version": "7.29.7",
258
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.7.tgz",
259
+ "integrity": "sha512-4zBIxpPzowiZpusoFkyGVwakdRJUyuH5PxQ/PrqghfdFWWasvnCdPfQXHrenDai+gyLARulZjZowCOj6fjT4pA==",
260
+ "dev": true,
261
+ "license": "MIT",
262
+ "dependencies": {
263
+ "@babel/helper-string-parser": "^7.29.7",
264
+ "@babel/helper-validator-identifier": "^7.29.7"
265
+ },
266
+ "engines": {
267
+ "node": ">=6.9.0"
268
+ }
269
+ },
270
+ "node_modules/@emnapi/core": {
271
+ "version": "1.10.0",
272
+ "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.10.0.tgz",
273
+ "integrity": "sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw==",
274
+ "license": "MIT",
275
+ "optional": true,
276
+ "dependencies": {
277
+ "@emnapi/wasi-threads": "1.2.1",
278
+ "tslib": "^2.4.0"
279
+ }
280
+ },
281
+ "node_modules/@emnapi/runtime": {
282
+ "version": "1.10.0",
283
+ "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.10.0.tgz",
284
+ "integrity": "sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==",
285
+ "license": "MIT",
286
+ "optional": true,
287
+ "dependencies": {
288
+ "tslib": "^2.4.0"
289
+ }
290
+ },
291
+ "node_modules/@emnapi/wasi-threads": {
292
+ "version": "1.2.1",
293
+ "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.1.tgz",
294
+ "integrity": "sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==",
295
+ "license": "MIT",
296
+ "optional": true,
297
+ "dependencies": {
298
+ "tslib": "^2.4.0"
299
+ }
300
+ },
301
+ "node_modules/@eslint-community/eslint-utils": {
302
+ "version": "4.9.1",
303
+ "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.9.1.tgz",
304
+ "integrity": "sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==",
305
+ "dev": true,
306
+ "license": "MIT",
307
+ "dependencies": {
308
+ "eslint-visitor-keys": "^3.4.3"
309
+ },
310
+ "engines": {
311
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
312
+ },
313
+ "funding": {
314
+ "url": "https://opencollective.com/eslint"
315
+ },
316
+ "peerDependencies": {
317
+ "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
318
+ }
319
+ },
320
+ "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": {
321
+ "version": "3.4.3",
322
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz",
323
+ "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==",
324
+ "dev": true,
325
+ "license": "Apache-2.0",
326
+ "engines": {
327
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
328
+ },
329
+ "funding": {
330
+ "url": "https://opencollective.com/eslint"
331
+ }
332
+ },
333
+ "node_modules/@eslint-community/regexpp": {
334
+ "version": "4.12.2",
335
+ "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.2.tgz",
336
+ "integrity": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==",
337
+ "dev": true,
338
+ "license": "MIT",
339
+ "engines": {
340
+ "node": "^12.0.0 || ^14.0.0 || >=16.0.0"
341
+ }
342
+ },
343
+ "node_modules/@eslint/config-array": {
344
+ "version": "0.23.5",
345
+ "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.23.5.tgz",
346
+ "integrity": "sha512-Y3kKLvC1dvTOT+oGlqNQ1XLqK6D1HU2YXPc52NmAlJZbMMWDzGYXMiPRJ8TYD39muD/OTjlZmNJ4ib7dvSrMBA==",
347
+ "dev": true,
348
+ "license": "Apache-2.0",
349
+ "dependencies": {
350
+ "@eslint/object-schema": "^3.0.5",
351
+ "debug": "^4.3.1",
352
+ "minimatch": "^10.2.4"
353
+ },
354
+ "engines": {
355
+ "node": "^20.19.0 || ^22.13.0 || >=24"
356
+ }
357
+ },
358
+ "node_modules/@eslint/config-helpers": {
359
+ "version": "0.6.0",
360
+ "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.6.0.tgz",
361
+ "integrity": "sha512-ii6Bw9jJ2zi2cWA2Z+9/QZ/+3DX6kwaV5Q986D/CdP3Lap3w/pgQZ373FV7byY/i7L4IRH/G43I5dz1ClsCbpA==",
362
+ "dev": true,
363
+ "license": "Apache-2.0",
364
+ "dependencies": {
365
+ "@eslint/core": "^1.2.1"
366
+ },
367
+ "engines": {
368
+ "node": "^20.19.0 || ^22.13.0 || >=24"
369
+ }
370
+ },
371
+ "node_modules/@eslint/core": {
372
+ "version": "1.2.1",
373
+ "resolved": "https://registry.npmjs.org/@eslint/core/-/core-1.2.1.tgz",
374
+ "integrity": "sha512-MwcE1P+AZ4C6DWlpin/OmOA54mmIZ/+xZuJiQd4SyB29oAJjN30UW9wkKNptW2ctp4cEsvhlLY/CsQ1uoHDloQ==",
375
+ "dev": true,
376
+ "license": "Apache-2.0",
377
+ "dependencies": {
378
+ "@types/json-schema": "^7.0.15"
379
+ },
380
+ "engines": {
381
+ "node": "^20.19.0 || ^22.13.0 || >=24"
382
+ }
383
+ },
384
+ "node_modules/@eslint/js": {
385
+ "version": "10.0.1",
386
+ "resolved": "https://registry.npmjs.org/@eslint/js/-/js-10.0.1.tgz",
387
+ "integrity": "sha512-zeR9k5pd4gxjZ0abRoIaxdc7I3nDktoXZk2qOv9gCNWx3mVwEn32VRhyLaRsDiJjTs0xq/T8mfPtyuXu7GWBcA==",
388
+ "dev": true,
389
+ "license": "MIT",
390
+ "engines": {
391
+ "node": "^20.19.0 || ^22.13.0 || >=24"
392
+ },
393
+ "funding": {
394
+ "url": "https://eslint.org/donate"
395
+ },
396
+ "peerDependencies": {
397
+ "eslint": "^10.0.0"
398
+ },
399
+ "peerDependenciesMeta": {
400
+ "eslint": {
401
+ "optional": true
402
+ }
403
+ }
404
+ },
405
+ "node_modules/@eslint/object-schema": {
406
+ "version": "3.0.5",
407
+ "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-3.0.5.tgz",
408
+ "integrity": "sha512-vqTaUEgxzm+YDSdElad6PiRoX4t8VGDjCtt05zn4nU810UIx/uNEV7/lZJ6KwFThKZOzOxzXy48da+No7HZaMw==",
409
+ "dev": true,
410
+ "license": "Apache-2.0",
411
+ "engines": {
412
+ "node": "^20.19.0 || ^22.13.0 || >=24"
413
+ }
414
+ },
415
+ "node_modules/@eslint/plugin-kit": {
416
+ "version": "0.7.1",
417
+ "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.7.1.tgz",
418
+ "integrity": "sha512-rZAP3aVgB9ds9KOeUSL+zZ21hPmo8dh6fnIFwRQj5EAZl9gzR7wxYbYXYysAM8CTqGmUGyp2S4kUdV17MnGuWQ==",
419
+ "dev": true,
420
+ "license": "Apache-2.0",
421
+ "dependencies": {
422
+ "@eslint/core": "^1.2.1",
423
+ "levn": "^0.4.1"
424
+ },
425
+ "engines": {
426
+ "node": "^20.19.0 || ^22.13.0 || >=24"
427
+ }
428
+ },
429
+ "node_modules/@humanfs/core": {
430
+ "version": "0.19.2",
431
+ "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.2.tgz",
432
+ "integrity": "sha512-UhXNm+CFMWcbChXywFwkmhqjs3PRCmcSa/hfBgLIb7oQ5HNb1wS0icWsGtSAUNgefHeI+eBrA8I1fxmbHsGdvA==",
433
+ "dev": true,
434
+ "license": "Apache-2.0",
435
+ "dependencies": {
436
+ "@humanfs/types": "^0.15.0"
437
+ },
438
+ "engines": {
439
+ "node": ">=18.18.0"
440
+ }
441
+ },
442
+ "node_modules/@humanfs/node": {
443
+ "version": "0.16.8",
444
+ "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.8.tgz",
445
+ "integrity": "sha512-gE1eQNZ3R++kTzFUpdGlpmy8kDZD/MLyHqDwqjkVQI0JMdI1D51sy1H958PNXYkM2rAac7e5/CnIKZrHtPh3BQ==",
446
+ "dev": true,
447
+ "license": "Apache-2.0",
448
+ "dependencies": {
449
+ "@humanfs/core": "^0.19.2",
450
+ "@humanfs/types": "^0.15.0",
451
+ "@humanwhocodes/retry": "^0.4.0"
452
+ },
453
+ "engines": {
454
+ "node": ">=18.18.0"
455
+ }
456
+ },
457
+ "node_modules/@humanfs/types": {
458
+ "version": "0.15.0",
459
+ "resolved": "https://registry.npmjs.org/@humanfs/types/-/types-0.15.0.tgz",
460
+ "integrity": "sha512-ZZ1w0aoQkwuUuC7Yf+7sdeaNfqQiiLcSRbfI08oAxqLtpXQr9AIVX7Ay7HLDuiLYAaFPu8oBYNq/QIi9URHJ3Q==",
461
+ "dev": true,
462
+ "license": "Apache-2.0",
463
+ "engines": {
464
+ "node": ">=18.18.0"
465
+ }
466
+ },
467
+ "node_modules/@humanwhocodes/module-importer": {
468
+ "version": "1.0.1",
469
+ "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
470
+ "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
471
+ "dev": true,
472
+ "license": "Apache-2.0",
473
+ "engines": {
474
+ "node": ">=12.22"
475
+ },
476
+ "funding": {
477
+ "type": "github",
478
+ "url": "https://github.com/sponsors/nzakas"
479
+ }
480
+ },
481
+ "node_modules/@humanwhocodes/retry": {
482
+ "version": "0.4.3",
483
+ "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.3.tgz",
484
+ "integrity": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==",
485
+ "dev": true,
486
+ "license": "Apache-2.0",
487
+ "engines": {
488
+ "node": ">=18.18"
489
+ },
490
+ "funding": {
491
+ "type": "github",
492
+ "url": "https://github.com/sponsors/nzakas"
493
+ }
494
+ },
495
+ "node_modules/@jridgewell/gen-mapping": {
496
+ "version": "0.3.13",
497
+ "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
498
+ "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
499
+ "license": "MIT",
500
+ "dependencies": {
501
+ "@jridgewell/sourcemap-codec": "^1.5.0",
502
+ "@jridgewell/trace-mapping": "^0.3.24"
503
+ }
504
+ },
505
+ "node_modules/@jridgewell/remapping": {
506
+ "version": "2.3.5",
507
+ "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz",
508
+ "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==",
509
+ "license": "MIT",
510
+ "dependencies": {
511
+ "@jridgewell/gen-mapping": "^0.3.5",
512
+ "@jridgewell/trace-mapping": "^0.3.24"
513
+ }
514
+ },
515
+ "node_modules/@jridgewell/resolve-uri": {
516
+ "version": "3.1.2",
517
+ "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
518
+ "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
519
+ "license": "MIT",
520
+ "engines": {
521
+ "node": ">=6.0.0"
522
+ }
523
+ },
524
+ "node_modules/@jridgewell/sourcemap-codec": {
525
+ "version": "1.5.5",
526
+ "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
527
+ "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
528
+ "license": "MIT"
529
+ },
530
+ "node_modules/@jridgewell/trace-mapping": {
531
+ "version": "0.3.31",
532
+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
533
+ "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
534
+ "license": "MIT",
535
+ "dependencies": {
536
+ "@jridgewell/resolve-uri": "^3.1.0",
537
+ "@jridgewell/sourcemap-codec": "^1.4.14"
538
+ }
539
+ },
540
+ "node_modules/@napi-rs/wasm-runtime": {
541
+ "version": "1.1.4",
542
+ "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.4.tgz",
543
+ "integrity": "sha512-3NQNNgA1YSlJb/kMH1ildASP9HW7/7kYnRI2szWJaofaS1hWmbGI4H+d3+22aGzXXN9IJ+n+GiFVcGipJP18ow==",
544
+ "license": "MIT",
545
+ "optional": true,
546
+ "dependencies": {
547
+ "@tybys/wasm-util": "^0.10.1"
548
+ },
549
+ "funding": {
550
+ "type": "github",
551
+ "url": "https://github.com/sponsors/Brooooooklyn"
552
+ },
553
+ "peerDependencies": {
554
+ "@emnapi/core": "^1.7.1",
555
+ "@emnapi/runtime": "^1.7.1"
556
+ }
557
+ },
558
+ "node_modules/@oxc-project/types": {
559
+ "version": "0.132.0",
560
+ "resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.132.0.tgz",
561
+ "integrity": "sha512-FESMOxil5Se014ui/Eq8fT5uHJo6nIRwH0PfJrZJXs6Gek3ZVFOrpUv3YIZT20m+extU98Hg1Ym72U58rlsxUQ==",
562
+ "license": "MIT",
563
+ "funding": {
564
+ "url": "https://github.com/sponsors/Boshen"
565
+ }
566
+ },
567
+ "node_modules/@rolldown/binding-android-arm64": {
568
+ "version": "1.0.2",
569
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm64/-/binding-android-arm64-1.0.2.tgz",
570
+ "integrity": "sha512-ZS4D1JPGn/MYQN/SYDWftIE/nVsM8j/AFOYEzAoOE2O3NktQOZru+/vYXGbR/qtdLdIfGCP0lcoJiYVzsEz+iQ==",
571
+ "cpu": [
572
+ "arm64"
573
+ ],
574
+ "license": "MIT",
575
+ "optional": true,
576
+ "os": [
577
+ "android"
578
+ ],
579
+ "engines": {
580
+ "node": "^20.19.0 || >=22.12.0"
581
+ }
582
+ },
583
+ "node_modules/@rolldown/binding-darwin-arm64": {
584
+ "version": "1.0.2",
585
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.0.2.tgz",
586
+ "integrity": "sha512-vdFA9+C/rekyGce7WqHs/xoT0ioZEWaOFyZLIV1mEeNFaFDUQrPIo8Vs2GvJ6eetb3rzDUtUBgzto3ExpXJB3w==",
587
+ "cpu": [
588
+ "arm64"
589
+ ],
590
+ "license": "MIT",
591
+ "optional": true,
592
+ "os": [
593
+ "darwin"
594
+ ],
595
+ "engines": {
596
+ "node": "^20.19.0 || >=22.12.0"
597
+ }
598
+ },
599
+ "node_modules/@rolldown/binding-darwin-x64": {
600
+ "version": "1.0.2",
601
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.0.2.tgz",
602
+ "integrity": "sha512-BewSOwTHazv77DTYiAZXSqqKZ4KP/KonFisDMVU7PImxoWfB2aepnPhd2E4SWz3zDzYgDNbs6jBmTdgNnF02GA==",
603
+ "cpu": [
604
+ "x64"
605
+ ],
606
+ "license": "MIT",
607
+ "optional": true,
608
+ "os": [
609
+ "darwin"
610
+ ],
611
+ "engines": {
612
+ "node": "^20.19.0 || >=22.12.0"
613
+ }
614
+ },
615
+ "node_modules/@rolldown/binding-freebsd-x64": {
616
+ "version": "1.0.2",
617
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.0.2.tgz",
618
+ "integrity": "sha512-m41o7M0YWtUdqk61Tb+jnKb2rN++iRdIASlExkUoKfIAH30DOHCB8fVLzSUpbWHHU8esmEioY62PxzexE8MBuA==",
619
+ "cpu": [
620
+ "x64"
621
+ ],
622
+ "license": "MIT",
623
+ "optional": true,
624
+ "os": [
625
+ "freebsd"
626
+ ],
627
+ "engines": {
628
+ "node": "^20.19.0 || >=22.12.0"
629
+ }
630
+ },
631
+ "node_modules/@rolldown/binding-linux-arm-gnueabihf": {
632
+ "version": "1.0.2",
633
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.0.2.tgz",
634
+ "integrity": "sha512-jcojB9H7W/jS29pMKWAK1N+fU99vXodHDTatS3b3y/XSOCiHo0kkA74pL3jJmkoQtYpOCxDvaKs1fo2Ij/1X5w==",
635
+ "cpu": [
636
+ "arm"
637
+ ],
638
+ "license": "MIT",
639
+ "optional": true,
640
+ "os": [
641
+ "linux"
642
+ ],
643
+ "engines": {
644
+ "node": "^20.19.0 || >=22.12.0"
645
+ }
646
+ },
647
+ "node_modules/@rolldown/binding-linux-arm64-gnu": {
648
+ "version": "1.0.2",
649
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.0.2.tgz",
650
+ "integrity": "sha512-1jn6qDU5iiOgFgygDzKUuKP0maTi0/f1+sBLgvij/76C77Nm3ts6ufz9Bjg5q5dduxiUIxtq86JIoBvo1xQ4Ig==",
651
+ "cpu": [
652
+ "arm64"
653
+ ],
654
+ "libc": [
655
+ "glibc"
656
+ ],
657
+ "license": "MIT",
658
+ "optional": true,
659
+ "os": [
660
+ "linux"
661
+ ],
662
+ "engines": {
663
+ "node": "^20.19.0 || >=22.12.0"
664
+ }
665
+ },
666
+ "node_modules/@rolldown/binding-linux-arm64-musl": {
667
+ "version": "1.0.2",
668
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.0.2.tgz",
669
+ "integrity": "sha512-QVLO/czFMdoMFSqlX3bcswcJNm/23r+qoa/jgtmFc/qEp6/jXmIkDjF/XIo8dPfGaiwy1xfQn8o77L79GeXFgw==",
670
+ "cpu": [
671
+ "arm64"
672
+ ],
673
+ "libc": [
674
+ "musl"
675
+ ],
676
+ "license": "MIT",
677
+ "optional": true,
678
+ "os": [
679
+ "linux"
680
+ ],
681
+ "engines": {
682
+ "node": "^20.19.0 || >=22.12.0"
683
+ }
684
+ },
685
+ "node_modules/@rolldown/binding-linux-ppc64-gnu": {
686
+ "version": "1.0.2",
687
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.0.2.tgz",
688
+ "integrity": "sha512-hgO5Abm0w5UL6FEa2iFnZqo2KlK7TQ5QhV5x09hujBf7t5KzHQ1VmfPuTpqRy/rNlSxua3eWH374xxiVrP+lcA==",
689
+ "cpu": [
690
+ "ppc64"
691
+ ],
692
+ "libc": [
693
+ "glibc"
694
+ ],
695
+ "license": "MIT",
696
+ "optional": true,
697
+ "os": [
698
+ "linux"
699
+ ],
700
+ "engines": {
701
+ "node": "^20.19.0 || >=22.12.0"
702
+ }
703
+ },
704
+ "node_modules/@rolldown/binding-linux-s390x-gnu": {
705
+ "version": "1.0.2",
706
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.0.2.tgz",
707
+ "integrity": "sha512-fy8rXxuYEu602abC8MUNaPjYLIFzReOaEIEMKMUa0rFEUxNpVXhs15KSSQ4qlqSaM7B6rcj9rDZgADh/IGDzLQ==",
708
+ "cpu": [
709
+ "s390x"
710
+ ],
711
+ "libc": [
712
+ "glibc"
713
+ ],
714
+ "license": "MIT",
715
+ "optional": true,
716
+ "os": [
717
+ "linux"
718
+ ],
719
+ "engines": {
720
+ "node": "^20.19.0 || >=22.12.0"
721
+ }
722
+ },
723
+ "node_modules/@rolldown/binding-linux-x64-gnu": {
724
+ "version": "1.0.2",
725
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.0.2.tgz",
726
+ "integrity": "sha512-0+bOkiQ779+r1WpoHOWHqncvyySci0vKph+myNDYb+im6meJAzHQXay6oEgnkHuUGouM1LKTZwqKpBow6Kj7CQ==",
727
+ "cpu": [
728
+ "x64"
729
+ ],
730
+ "libc": [
731
+ "glibc"
732
+ ],
733
+ "license": "MIT",
734
+ "optional": true,
735
+ "os": [
736
+ "linux"
737
+ ],
738
+ "engines": {
739
+ "node": "^20.19.0 || >=22.12.0"
740
+ }
741
+ },
742
+ "node_modules/@rolldown/binding-linux-x64-musl": {
743
+ "version": "1.0.2",
744
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.0.2.tgz",
745
+ "integrity": "sha512-mjSkrzZK5Qsl0a9d1JgILOiuZOSDTVdKENcSXBoqbzSrspLR/4/IRVDo5wd2GgZjNss/viBFJdeq+j7qH2nypw==",
746
+ "cpu": [
747
+ "x64"
748
+ ],
749
+ "libc": [
750
+ "musl"
751
+ ],
752
+ "license": "MIT",
753
+ "optional": true,
754
+ "os": [
755
+ "linux"
756
+ ],
757
+ "engines": {
758
+ "node": "^20.19.0 || >=22.12.0"
759
+ }
760
+ },
761
+ "node_modules/@rolldown/binding-openharmony-arm64": {
762
+ "version": "1.0.2",
763
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.0.2.tgz",
764
+ "integrity": "sha512-1v5vHasdfQAZoEHakBV72LIFAC9JjnymsiKxp+GEr/ma3+NJCPSaYK+qavInOovJkgwFrs7GccX2d6IgDA3Z5w==",
765
+ "cpu": [
766
+ "arm64"
767
+ ],
768
+ "license": "MIT",
769
+ "optional": true,
770
+ "os": [
771
+ "openharmony"
772
+ ],
773
+ "engines": {
774
+ "node": "^20.19.0 || >=22.12.0"
775
+ }
776
+ },
777
+ "node_modules/@rolldown/binding-wasm32-wasi": {
778
+ "version": "1.0.2",
779
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.0.2.tgz",
780
+ "integrity": "sha512-mb1VobWn6NheziTk5/WEaR6AKVbrwT5sOi6C7zk3gy/pD1qtJfU1j4PgTo2NJnOtbL9Dl3Aeei8w9jJ7qC2jZQ==",
781
+ "cpu": [
782
+ "wasm32"
783
+ ],
784
+ "license": "MIT",
785
+ "optional": true,
786
+ "dependencies": {
787
+ "@emnapi/core": "1.10.0",
788
+ "@emnapi/runtime": "1.10.0",
789
+ "@napi-rs/wasm-runtime": "^1.1.4"
790
+ },
791
+ "engines": {
792
+ "node": "^20.19.0 || >=22.12.0"
793
+ }
794
+ },
795
+ "node_modules/@rolldown/binding-win32-arm64-msvc": {
796
+ "version": "1.0.2",
797
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.0.2.tgz",
798
+ "integrity": "sha512-SqKonF56vA/L2yHwHYcEp2P34URpOZ7d1fS635cTkpDnUtEGdUbhI6NzsPdqeSWvAAeGDrxjWjNmibDIdFf9/A==",
799
+ "cpu": [
800
+ "arm64"
801
+ ],
802
+ "license": "MIT",
803
+ "optional": true,
804
+ "os": [
805
+ "win32"
806
+ ],
807
+ "engines": {
808
+ "node": "^20.19.0 || >=22.12.0"
809
+ }
810
+ },
811
+ "node_modules/@rolldown/binding-win32-x64-msvc": {
812
+ "version": "1.0.2",
813
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.0.2.tgz",
814
+ "integrity": "sha512-v7qRI7gXLRINcOGXt+7YmAZ6iFuyZVMIoXAxhd8oP+DR9dLfL9GfNIx7PLMxmhZdvq8waUJBQiWN9EKNy+TRBQ==",
815
+ "cpu": [
816
+ "x64"
817
+ ],
818
+ "license": "MIT",
819
+ "optional": true,
820
+ "os": [
821
+ "win32"
822
+ ],
823
+ "engines": {
824
+ "node": "^20.19.0 || >=22.12.0"
825
+ }
826
+ },
827
+ "node_modules/@rolldown/pluginutils": {
828
+ "version": "1.0.1",
829
+ "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.1.tgz",
830
+ "integrity": "sha512-2j9bGt5Jh8hj+vPtgzPtl72j0yRxHAyumoo6TNfAjsLB04UtpSvPbPcDcBMxz7n+9CYB0c1GxQFxYRg2jimqGw==",
831
+ "license": "MIT"
832
+ },
833
+ "node_modules/@tailwindcss/node": {
834
+ "version": "4.3.0",
835
+ "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.3.0.tgz",
836
+ "integrity": "sha512-aFb4gUhFOgdh9AXo4IzBEOzBkkAxm9VigwDJnMIYv3lcfXCJVesNfbEaBl4BNgVRyid92AmdviqwBUBRKSeY3g==",
837
+ "license": "MIT",
838
+ "dependencies": {
839
+ "@jridgewell/remapping": "^2.3.5",
840
+ "enhanced-resolve": "^5.21.0",
841
+ "jiti": "^2.6.1",
842
+ "lightningcss": "1.32.0",
843
+ "magic-string": "^0.30.21",
844
+ "source-map-js": "^1.2.1",
845
+ "tailwindcss": "4.3.0"
846
+ }
847
+ },
848
+ "node_modules/@tailwindcss/oxide": {
849
+ "version": "4.3.0",
850
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.3.0.tgz",
851
+ "integrity": "sha512-F7HZGBeN9I0/AuuJS5PwcD8xayx5ri5GhjYUDBEVYUkexyA/giwbDNjRVrxSezE3T250OU2K/wp/ltWx3UOefg==",
852
+ "license": "MIT",
853
+ "engines": {
854
+ "node": ">= 20"
855
+ },
856
+ "optionalDependencies": {
857
+ "@tailwindcss/oxide-android-arm64": "4.3.0",
858
+ "@tailwindcss/oxide-darwin-arm64": "4.3.0",
859
+ "@tailwindcss/oxide-darwin-x64": "4.3.0",
860
+ "@tailwindcss/oxide-freebsd-x64": "4.3.0",
861
+ "@tailwindcss/oxide-linux-arm-gnueabihf": "4.3.0",
862
+ "@tailwindcss/oxide-linux-arm64-gnu": "4.3.0",
863
+ "@tailwindcss/oxide-linux-arm64-musl": "4.3.0",
864
+ "@tailwindcss/oxide-linux-x64-gnu": "4.3.0",
865
+ "@tailwindcss/oxide-linux-x64-musl": "4.3.0",
866
+ "@tailwindcss/oxide-wasm32-wasi": "4.3.0",
867
+ "@tailwindcss/oxide-win32-arm64-msvc": "4.3.0",
868
+ "@tailwindcss/oxide-win32-x64-msvc": "4.3.0"
869
+ }
870
+ },
871
+ "node_modules/@tailwindcss/oxide-android-arm64": {
872
+ "version": "4.3.0",
873
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.3.0.tgz",
874
+ "integrity": "sha512-TJPiq67tKlLuObP6RkwvVGDoxCMBVtDgKkLfa/uyj7/FyxvQwHS+UOnVrXXgbEsfUaMgiVvC4KbJnRr26ho4Ng==",
875
+ "cpu": [
876
+ "arm64"
877
+ ],
878
+ "license": "MIT",
879
+ "optional": true,
880
+ "os": [
881
+ "android"
882
+ ],
883
+ "engines": {
884
+ "node": ">= 20"
885
+ }
886
+ },
887
+ "node_modules/@tailwindcss/oxide-darwin-arm64": {
888
+ "version": "4.3.0",
889
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.3.0.tgz",
890
+ "integrity": "sha512-oMN/WZRb+SO37BmUElEgeEWuU8E/HXRkiODxJxLe1UTHVXLrdVSgfaJV7pSlhRGMSOiXLuxTIjfsF3wYvz8cgQ==",
891
+ "cpu": [
892
+ "arm64"
893
+ ],
894
+ "license": "MIT",
895
+ "optional": true,
896
+ "os": [
897
+ "darwin"
898
+ ],
899
+ "engines": {
900
+ "node": ">= 20"
901
+ }
902
+ },
903
+ "node_modules/@tailwindcss/oxide-darwin-x64": {
904
+ "version": "4.3.0",
905
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.3.0.tgz",
906
+ "integrity": "sha512-N6CUmu4a6bKVADfw77p+iw6Yd9Q3OBhe0veaDX+QazfuVYlQsHfDgxBrsjQ/IW+zywL8mTrNd0SdJT/zgtvMdA==",
907
+ "cpu": [
908
+ "x64"
909
+ ],
910
+ "license": "MIT",
911
+ "optional": true,
912
+ "os": [
913
+ "darwin"
914
+ ],
915
+ "engines": {
916
+ "node": ">= 20"
917
+ }
918
+ },
919
+ "node_modules/@tailwindcss/oxide-freebsd-x64": {
920
+ "version": "4.3.0",
921
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.3.0.tgz",
922
+ "integrity": "sha512-zDL5hBkQdH5C6MpqbK3gQAgP80tsMwSI26vjOzjJtNCMUo0lFgOItzHKBIupOZNQxt3ouPH7RPhvNhiTfCe5CQ==",
923
+ "cpu": [
924
+ "x64"
925
+ ],
926
+ "license": "MIT",
927
+ "optional": true,
928
+ "os": [
929
+ "freebsd"
930
+ ],
931
+ "engines": {
932
+ "node": ">= 20"
933
+ }
934
+ },
935
+ "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": {
936
+ "version": "4.3.0",
937
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.3.0.tgz",
938
+ "integrity": "sha512-R06HdNi7A7OEoMsf6d4tjZ71RCWnZQPHj2mnotSFURjNLdBC+cIgXQ7l81CqeoiQftjf6OOblxXMInMgN2VzMA==",
939
+ "cpu": [
940
+ "arm"
941
+ ],
942
+ "license": "MIT",
943
+ "optional": true,
944
+ "os": [
945
+ "linux"
946
+ ],
947
+ "engines": {
948
+ "node": ">= 20"
949
+ }
950
+ },
951
+ "node_modules/@tailwindcss/oxide-linux-arm64-gnu": {
952
+ "version": "4.3.0",
953
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.3.0.tgz",
954
+ "integrity": "sha512-qTJHELX8jetjhRQHCLilkVLmybpzNQAtaI/gaoVoidn/ufbNDbAo8KlK2J+yPoc8wQxvDxCmh/5lr8nC1+lTbg==",
955
+ "cpu": [
956
+ "arm64"
957
+ ],
958
+ "libc": [
959
+ "glibc"
960
+ ],
961
+ "license": "MIT",
962
+ "optional": true,
963
+ "os": [
964
+ "linux"
965
+ ],
966
+ "engines": {
967
+ "node": ">= 20"
968
+ }
969
+ },
970
+ "node_modules/@tailwindcss/oxide-linux-arm64-musl": {
971
+ "version": "4.3.0",
972
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.3.0.tgz",
973
+ "integrity": "sha512-Z6sukiQsngnWO+l39X4pPbiWT81IC+PLKF+PHxIlyZbGNb9MODfYlXEVlFvej5BOZInWX01kVyzeLvHsXhfczQ==",
974
+ "cpu": [
975
+ "arm64"
976
+ ],
977
+ "libc": [
978
+ "musl"
979
+ ],
980
+ "license": "MIT",
981
+ "optional": true,
982
+ "os": [
983
+ "linux"
984
+ ],
985
+ "engines": {
986
+ "node": ">= 20"
987
+ }
988
+ },
989
+ "node_modules/@tailwindcss/oxide-linux-x64-gnu": {
990
+ "version": "4.3.0",
991
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.3.0.tgz",
992
+ "integrity": "sha512-DRNdQRpSGzRGfARVuVkxvM8Q12nh19l4BF/G7zGA1oe+9wcC6saFBHTISrpIcKzhiXtSrlSrluCfvMuledoCTQ==",
993
+ "cpu": [
994
+ "x64"
995
+ ],
996
+ "libc": [
997
+ "glibc"
998
+ ],
999
+ "license": "MIT",
1000
+ "optional": true,
1001
+ "os": [
1002
+ "linux"
1003
+ ],
1004
+ "engines": {
1005
+ "node": ">= 20"
1006
+ }
1007
+ },
1008
+ "node_modules/@tailwindcss/oxide-linux-x64-musl": {
1009
+ "version": "4.3.0",
1010
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.3.0.tgz",
1011
+ "integrity": "sha512-Z0IADbDo8bh6I7h2IQMx601AdXBLfFpEdUotft86evd/8ZPflZe9COPO8Q1vw+pfLWIUo9zN/JGZvwuAJqduqg==",
1012
+ "cpu": [
1013
+ "x64"
1014
+ ],
1015
+ "libc": [
1016
+ "musl"
1017
+ ],
1018
+ "license": "MIT",
1019
+ "optional": true,
1020
+ "os": [
1021
+ "linux"
1022
+ ],
1023
+ "engines": {
1024
+ "node": ">= 20"
1025
+ }
1026
+ },
1027
+ "node_modules/@tailwindcss/oxide-wasm32-wasi": {
1028
+ "version": "4.3.0",
1029
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.3.0.tgz",
1030
+ "integrity": "sha512-HNZGOUxEmElksYR7S6sC5jTeNGpobAsy9u7Gu0AskJ8/20FR9GqebUyB+HBcU/ax6BHuiuJi+Oda4B+YX6H1yA==",
1031
+ "bundleDependencies": [
1032
+ "@napi-rs/wasm-runtime",
1033
+ "@emnapi/core",
1034
+ "@emnapi/runtime",
1035
+ "@tybys/wasm-util",
1036
+ "@emnapi/wasi-threads",
1037
+ "tslib"
1038
+ ],
1039
+ "cpu": [
1040
+ "wasm32"
1041
+ ],
1042
+ "license": "MIT",
1043
+ "optional": true,
1044
+ "dependencies": {
1045
+ "@emnapi/core": "^1.10.0",
1046
+ "@emnapi/runtime": "^1.10.0",
1047
+ "@emnapi/wasi-threads": "^1.2.1",
1048
+ "@napi-rs/wasm-runtime": "^1.1.4",
1049
+ "@tybys/wasm-util": "^0.10.1",
1050
+ "tslib": "^2.8.1"
1051
+ },
1052
+ "engines": {
1053
+ "node": ">=14.0.0"
1054
+ }
1055
+ },
1056
+ "node_modules/@tailwindcss/oxide-win32-arm64-msvc": {
1057
+ "version": "4.3.0",
1058
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.3.0.tgz",
1059
+ "integrity": "sha512-Pe+RPVTi1T+qymuuRpcdvwSVZjnll/f7n8gBxMMh3xLTctMDKqpdfGimbMyioqtLhUYZxdJ9wGNhV7MKHvgZsQ==",
1060
+ "cpu": [
1061
+ "arm64"
1062
+ ],
1063
+ "license": "MIT",
1064
+ "optional": true,
1065
+ "os": [
1066
+ "win32"
1067
+ ],
1068
+ "engines": {
1069
+ "node": ">= 20"
1070
+ }
1071
+ },
1072
+ "node_modules/@tailwindcss/oxide-win32-x64-msvc": {
1073
+ "version": "4.3.0",
1074
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.3.0.tgz",
1075
+ "integrity": "sha512-Mvrf2kXW/yeW/OTezZlCGOirXRcUuLIBx/5Y12BaPM7wJoryG6dfS/NJL8aBPqtTEx/Vm4T4vKzFUcKDT+TKUA==",
1076
+ "cpu": [
1077
+ "x64"
1078
+ ],
1079
+ "license": "MIT",
1080
+ "optional": true,
1081
+ "os": [
1082
+ "win32"
1083
+ ],
1084
+ "engines": {
1085
+ "node": ">= 20"
1086
+ }
1087
+ },
1088
+ "node_modules/@tailwindcss/vite": {
1089
+ "version": "4.3.0",
1090
+ "resolved": "https://registry.npmjs.org/@tailwindcss/vite/-/vite-4.3.0.tgz",
1091
+ "integrity": "sha512-t6J3OrB5Fc0ExuhohouH0fWUGMYL6PTLhW+E7zIk/pdbnJARZDCwjBznFnkh5ynRnIRSI4YjtTH0t6USjJISrw==",
1092
+ "license": "MIT",
1093
+ "dependencies": {
1094
+ "@tailwindcss/node": "4.3.0",
1095
+ "@tailwindcss/oxide": "4.3.0",
1096
+ "tailwindcss": "4.3.0"
1097
+ },
1098
+ "peerDependencies": {
1099
+ "vite": "^5.2.0 || ^6 || ^7 || ^8"
1100
+ }
1101
+ },
1102
+ "node_modules/@tybys/wasm-util": {
1103
+ "version": "0.10.2",
1104
+ "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.2.tgz",
1105
+ "integrity": "sha512-RoBvJ2X0wuKlWFIjrwffGw1IqZHKQqzIchKaadZZfnNpsAYp2mM0h36JtPCjNDAHGgYez/15uMBpfGwchhiMgg==",
1106
+ "license": "MIT",
1107
+ "optional": true,
1108
+ "dependencies": {
1109
+ "tslib": "^2.4.0"
1110
+ }
1111
+ },
1112
+ "node_modules/@types/esrecurse": {
1113
+ "version": "4.3.1",
1114
+ "resolved": "https://registry.npmjs.org/@types/esrecurse/-/esrecurse-4.3.1.tgz",
1115
+ "integrity": "sha512-xJBAbDifo5hpffDBuHl0Y8ywswbiAp/Wi7Y/GtAgSlZyIABppyurxVueOPE8LUQOxdlgi6Zqce7uoEpqNTeiUw==",
1116
+ "dev": true,
1117
+ "license": "MIT"
1118
+ },
1119
+ "node_modules/@types/estree": {
1120
+ "version": "1.0.9",
1121
+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.9.tgz",
1122
+ "integrity": "sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==",
1123
+ "dev": true,
1124
+ "license": "MIT"
1125
+ },
1126
+ "node_modules/@types/json-schema": {
1127
+ "version": "7.0.15",
1128
+ "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz",
1129
+ "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==",
1130
+ "dev": true,
1131
+ "license": "MIT"
1132
+ },
1133
+ "node_modules/@types/react": {
1134
+ "version": "19.2.15",
1135
+ "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.15.tgz",
1136
+ "integrity": "sha512-eRwcGNHve+E8qtEQSSRl6urh+rFop4v8gm6O8rGv25CodbvFdLjA1vVQ1KkiFE0w0UPOnb8tDiFKL5lp0rtY5Q==",
1137
+ "dev": true,
1138
+ "license": "MIT",
1139
+ "dependencies": {
1140
+ "csstype": "^3.2.2"
1141
+ }
1142
+ },
1143
+ "node_modules/@types/react-dom": {
1144
+ "version": "19.2.3",
1145
+ "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.3.tgz",
1146
+ "integrity": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==",
1147
+ "dev": true,
1148
+ "license": "MIT",
1149
+ "peerDependencies": {
1150
+ "@types/react": "^19.2.0"
1151
+ }
1152
+ },
1153
+ "node_modules/@vitejs/plugin-react": {
1154
+ "version": "6.0.2",
1155
+ "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-6.0.2.tgz",
1156
+ "integrity": "sha512-DlSMqo4WhThw4vB8Mpn0Woe9J+Jfq1geJ61AKW0QEgLzGMNwtIMdxbDUzLxcun8W7NbJO0e2Jg/Nxm3cCSVzzg==",
1157
+ "dev": true,
1158
+ "license": "MIT",
1159
+ "dependencies": {
1160
+ "@rolldown/pluginutils": "^1.0.0"
1161
+ },
1162
+ "engines": {
1163
+ "node": "^20.19.0 || >=22.12.0"
1164
+ },
1165
+ "peerDependencies": {
1166
+ "@rolldown/plugin-babel": "^0.1.7 || ^0.2.0",
1167
+ "babel-plugin-react-compiler": "^1.0.0",
1168
+ "vite": "^8.0.0"
1169
+ },
1170
+ "peerDependenciesMeta": {
1171
+ "@rolldown/plugin-babel": {
1172
+ "optional": true
1173
+ },
1174
+ "babel-plugin-react-compiler": {
1175
+ "optional": true
1176
+ }
1177
+ }
1178
+ },
1179
+ "node_modules/acorn": {
1180
+ "version": "8.16.0",
1181
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.16.0.tgz",
1182
+ "integrity": "sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==",
1183
+ "dev": true,
1184
+ "license": "MIT",
1185
+ "bin": {
1186
+ "acorn": "bin/acorn"
1187
+ },
1188
+ "engines": {
1189
+ "node": ">=0.4.0"
1190
+ }
1191
+ },
1192
+ "node_modules/acorn-jsx": {
1193
+ "version": "5.3.2",
1194
+ "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
1195
+ "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
1196
+ "dev": true,
1197
+ "license": "MIT",
1198
+ "peerDependencies": {
1199
+ "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
1200
+ }
1201
+ },
1202
+ "node_modules/agent-base": {
1203
+ "version": "6.0.2",
1204
+ "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz",
1205
+ "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==",
1206
+ "license": "MIT",
1207
+ "dependencies": {
1208
+ "debug": "4"
1209
+ },
1210
+ "engines": {
1211
+ "node": ">= 6.0.0"
1212
+ }
1213
+ },
1214
+ "node_modules/ajv": {
1215
+ "version": "6.15.0",
1216
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.15.0.tgz",
1217
+ "integrity": "sha512-fgFx7Hfoq60ytK2c7DhnF8jIvzYgOMxfugjLOSMHjLIPgenqa7S7oaagATUq99mV6IYvN2tRmC0wnTYX6iPbMw==",
1218
+ "dev": true,
1219
+ "license": "MIT",
1220
+ "dependencies": {
1221
+ "fast-deep-equal": "^3.1.1",
1222
+ "fast-json-stable-stringify": "^2.0.0",
1223
+ "json-schema-traverse": "^0.4.1",
1224
+ "uri-js": "^4.2.2"
1225
+ },
1226
+ "funding": {
1227
+ "type": "github",
1228
+ "url": "https://github.com/sponsors/epoberezkin"
1229
+ }
1230
+ },
1231
+ "node_modules/asynckit": {
1232
+ "version": "0.4.0",
1233
+ "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
1234
+ "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
1235
+ "license": "MIT"
1236
+ },
1237
+ "node_modules/axios": {
1238
+ "version": "1.16.1",
1239
+ "resolved": "https://registry.npmjs.org/axios/-/axios-1.16.1.tgz",
1240
+ "integrity": "sha512-caYkukvroVPO8KrzuJEb50Hm07KwfBZPEC3VeFHTsqWHvKTsy54hjJz9BS/cdaypROE2rH6xvm9mHX4fgWkr3A==",
1241
+ "license": "MIT",
1242
+ "dependencies": {
1243
+ "follow-redirects": "^1.16.0",
1244
+ "form-data": "^4.0.5",
1245
+ "https-proxy-agent": "^5.0.1",
1246
+ "proxy-from-env": "^2.1.0"
1247
+ }
1248
+ },
1249
+ "node_modules/balanced-match": {
1250
+ "version": "4.0.4",
1251
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz",
1252
+ "integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==",
1253
+ "dev": true,
1254
+ "license": "MIT",
1255
+ "engines": {
1256
+ "node": "18 || 20 || >=22"
1257
+ }
1258
+ },
1259
+ "node_modules/baseline-browser-mapping": {
1260
+ "version": "2.10.32",
1261
+ "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.32.tgz",
1262
+ "integrity": "sha512-wbPvpyjJPC0zdfdKXxqEL3Ea+bOMD/87X4lftiJkkaBiuG6ALQy1SLmEd7BSmVCuwCQsBrCamgBoLyfFDD1EPg==",
1263
+ "dev": true,
1264
+ "license": "Apache-2.0",
1265
+ "bin": {
1266
+ "baseline-browser-mapping": "dist/cli.cjs"
1267
+ },
1268
+ "engines": {
1269
+ "node": ">=6.0.0"
1270
+ }
1271
+ },
1272
+ "node_modules/brace-expansion": {
1273
+ "version": "5.0.6",
1274
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.6.tgz",
1275
+ "integrity": "sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g==",
1276
+ "dev": true,
1277
+ "license": "MIT",
1278
+ "dependencies": {
1279
+ "balanced-match": "^4.0.2"
1280
+ },
1281
+ "engines": {
1282
+ "node": "18 || 20 || >=22"
1283
+ }
1284
+ },
1285
+ "node_modules/browserslist": {
1286
+ "version": "4.28.2",
1287
+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.2.tgz",
1288
+ "integrity": "sha512-48xSriZYYg+8qXna9kwqjIVzuQxi+KYWp2+5nCYnYKPTr0LvD89Jqk2Or5ogxz0NUMfIjhh2lIUX/LyX9B4oIg==",
1289
+ "dev": true,
1290
+ "funding": [
1291
+ {
1292
+ "type": "opencollective",
1293
+ "url": "https://opencollective.com/browserslist"
1294
+ },
1295
+ {
1296
+ "type": "tidelift",
1297
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
1298
+ },
1299
+ {
1300
+ "type": "github",
1301
+ "url": "https://github.com/sponsors/ai"
1302
+ }
1303
+ ],
1304
+ "license": "MIT",
1305
+ "dependencies": {
1306
+ "baseline-browser-mapping": "^2.10.12",
1307
+ "caniuse-lite": "^1.0.30001782",
1308
+ "electron-to-chromium": "^1.5.328",
1309
+ "node-releases": "^2.0.36",
1310
+ "update-browserslist-db": "^1.2.3"
1311
+ },
1312
+ "bin": {
1313
+ "browserslist": "cli.js"
1314
+ },
1315
+ "engines": {
1316
+ "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
1317
+ }
1318
+ },
1319
+ "node_modules/call-bind-apply-helpers": {
1320
+ "version": "1.0.2",
1321
+ "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
1322
+ "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
1323
+ "license": "MIT",
1324
+ "dependencies": {
1325
+ "es-errors": "^1.3.0",
1326
+ "function-bind": "^1.1.2"
1327
+ },
1328
+ "engines": {
1329
+ "node": ">= 0.4"
1330
+ }
1331
+ },
1332
+ "node_modules/caniuse-lite": {
1333
+ "version": "1.0.30001793",
1334
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001793.tgz",
1335
+ "integrity": "sha512-iwSsYWaCOoh26cV8NwNRViHlrfUvYsHDfRVcbtmw0Kg6PJIZZXwMkj1442FYLBGkeUf1juAsU3DTfxW579mrPA==",
1336
+ "dev": true,
1337
+ "funding": [
1338
+ {
1339
+ "type": "opencollective",
1340
+ "url": "https://opencollective.com/browserslist"
1341
+ },
1342
+ {
1343
+ "type": "tidelift",
1344
+ "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
1345
+ },
1346
+ {
1347
+ "type": "github",
1348
+ "url": "https://github.com/sponsors/ai"
1349
+ }
1350
+ ],
1351
+ "license": "CC-BY-4.0"
1352
+ },
1353
+ "node_modules/combined-stream": {
1354
+ "version": "1.0.8",
1355
+ "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
1356
+ "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
1357
+ "license": "MIT",
1358
+ "dependencies": {
1359
+ "delayed-stream": "~1.0.0"
1360
+ },
1361
+ "engines": {
1362
+ "node": ">= 0.8"
1363
+ }
1364
+ },
1365
+ "node_modules/convert-source-map": {
1366
+ "version": "2.0.0",
1367
+ "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
1368
+ "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
1369
+ "dev": true,
1370
+ "license": "MIT"
1371
+ },
1372
+ "node_modules/cookie": {
1373
+ "version": "1.1.1",
1374
+ "resolved": "https://registry.npmjs.org/cookie/-/cookie-1.1.1.tgz",
1375
+ "integrity": "sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ==",
1376
+ "license": "MIT",
1377
+ "engines": {
1378
+ "node": ">=18"
1379
+ },
1380
+ "funding": {
1381
+ "type": "opencollective",
1382
+ "url": "https://opencollective.com/express"
1383
+ }
1384
+ },
1385
+ "node_modules/cross-spawn": {
1386
+ "version": "7.0.6",
1387
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
1388
+ "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
1389
+ "dev": true,
1390
+ "license": "MIT",
1391
+ "dependencies": {
1392
+ "path-key": "^3.1.0",
1393
+ "shebang-command": "^2.0.0",
1394
+ "which": "^2.0.1"
1395
+ },
1396
+ "engines": {
1397
+ "node": ">= 8"
1398
+ }
1399
+ },
1400
+ "node_modules/csstype": {
1401
+ "version": "3.2.3",
1402
+ "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz",
1403
+ "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
1404
+ "dev": true,
1405
+ "license": "MIT"
1406
+ },
1407
+ "node_modules/debug": {
1408
+ "version": "4.4.3",
1409
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
1410
+ "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
1411
+ "license": "MIT",
1412
+ "dependencies": {
1413
+ "ms": "^2.1.3"
1414
+ },
1415
+ "engines": {
1416
+ "node": ">=6.0"
1417
+ },
1418
+ "peerDependenciesMeta": {
1419
+ "supports-color": {
1420
+ "optional": true
1421
+ }
1422
+ }
1423
+ },
1424
+ "node_modules/deep-is": {
1425
+ "version": "0.1.4",
1426
+ "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz",
1427
+ "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==",
1428
+ "dev": true,
1429
+ "license": "MIT"
1430
+ },
1431
+ "node_modules/delayed-stream": {
1432
+ "version": "1.0.0",
1433
+ "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
1434
+ "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
1435
+ "license": "MIT",
1436
+ "engines": {
1437
+ "node": ">=0.4.0"
1438
+ }
1439
+ },
1440
+ "node_modules/detect-libc": {
1441
+ "version": "2.1.2",
1442
+ "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
1443
+ "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
1444
+ "license": "Apache-2.0",
1445
+ "engines": {
1446
+ "node": ">=8"
1447
+ }
1448
+ },
1449
+ "node_modules/dunder-proto": {
1450
+ "version": "1.0.1",
1451
+ "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
1452
+ "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
1453
+ "license": "MIT",
1454
+ "dependencies": {
1455
+ "call-bind-apply-helpers": "^1.0.1",
1456
+ "es-errors": "^1.3.0",
1457
+ "gopd": "^1.2.0"
1458
+ },
1459
+ "engines": {
1460
+ "node": ">= 0.4"
1461
+ }
1462
+ },
1463
+ "node_modules/electron-to-chromium": {
1464
+ "version": "1.5.361",
1465
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.361.tgz",
1466
+ "integrity": "sha512-Q6Hts7N9FnJc5LeGRINFvLhCI9xZmNtTDe5ZbcVezQz7cU4a8Aua3GH1b8J2XY8Al9PF+OCwYqhgsOOheMdvkA==",
1467
+ "dev": true,
1468
+ "license": "ISC"
1469
+ },
1470
+ "node_modules/enhanced-resolve": {
1471
+ "version": "5.22.0",
1472
+ "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.22.0.tgz",
1473
+ "integrity": "sha512-xYcDWrpELkFzz9SpZ3PlI6Eu6eD93Yf0WLDRxikGhWJ3MAir2SNZTIVCVZqZ/NUyx8AdMc2gT9C0gPiw18kG+A==",
1474
+ "license": "MIT",
1475
+ "dependencies": {
1476
+ "graceful-fs": "^4.2.4",
1477
+ "tapable": "^2.3.3"
1478
+ },
1479
+ "engines": {
1480
+ "node": ">=10.13.0"
1481
+ }
1482
+ },
1483
+ "node_modules/es-define-property": {
1484
+ "version": "1.0.1",
1485
+ "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
1486
+ "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
1487
+ "license": "MIT",
1488
+ "engines": {
1489
+ "node": ">= 0.4"
1490
+ }
1491
+ },
1492
+ "node_modules/es-errors": {
1493
+ "version": "1.3.0",
1494
+ "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
1495
+ "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
1496
+ "license": "MIT",
1497
+ "engines": {
1498
+ "node": ">= 0.4"
1499
+ }
1500
+ },
1501
+ "node_modules/es-object-atoms": {
1502
+ "version": "1.1.2",
1503
+ "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.2.tgz",
1504
+ "integrity": "sha512-HWcBoN6NileqtSydK2FqHbS/LoDd2pqrnQHLyJzBj4kOp/ky2MWMN694xOfkK8/SnUsW2DH7EfyVlydKCsm1Zw==",
1505
+ "license": "MIT",
1506
+ "dependencies": {
1507
+ "es-errors": "^1.3.0"
1508
+ },
1509
+ "engines": {
1510
+ "node": ">= 0.4"
1511
+ }
1512
+ },
1513
+ "node_modules/es-set-tostringtag": {
1514
+ "version": "2.1.0",
1515
+ "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz",
1516
+ "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==",
1517
+ "license": "MIT",
1518
+ "dependencies": {
1519
+ "es-errors": "^1.3.0",
1520
+ "get-intrinsic": "^1.2.6",
1521
+ "has-tostringtag": "^1.0.2",
1522
+ "hasown": "^2.0.2"
1523
+ },
1524
+ "engines": {
1525
+ "node": ">= 0.4"
1526
+ }
1527
+ },
1528
+ "node_modules/escalade": {
1529
+ "version": "3.2.0",
1530
+ "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
1531
+ "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
1532
+ "dev": true,
1533
+ "license": "MIT",
1534
+ "engines": {
1535
+ "node": ">=6"
1536
+ }
1537
+ },
1538
+ "node_modules/escape-string-regexp": {
1539
+ "version": "4.0.0",
1540
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
1541
+ "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
1542
+ "dev": true,
1543
+ "license": "MIT",
1544
+ "engines": {
1545
+ "node": ">=10"
1546
+ },
1547
+ "funding": {
1548
+ "url": "https://github.com/sponsors/sindresorhus"
1549
+ }
1550
+ },
1551
+ "node_modules/eslint": {
1552
+ "version": "10.4.0",
1553
+ "resolved": "https://registry.npmjs.org/eslint/-/eslint-10.4.0.tgz",
1554
+ "integrity": "sha512-loXy6bWOoP3EP6JA7jo6p5jMpBJmHmsNZM5SFRHLdh1MGOPurMnNBj4ZlAbaqUAaQWbCr7jHV4P7gzAyryZWkQ==",
1555
+ "dev": true,
1556
+ "license": "MIT",
1557
+ "dependencies": {
1558
+ "@eslint-community/eslint-utils": "^4.8.0",
1559
+ "@eslint-community/regexpp": "^4.12.2",
1560
+ "@eslint/config-array": "^0.23.5",
1561
+ "@eslint/config-helpers": "^0.6.0",
1562
+ "@eslint/core": "^1.2.1",
1563
+ "@eslint/plugin-kit": "^0.7.1",
1564
+ "@humanfs/node": "^0.16.6",
1565
+ "@humanwhocodes/module-importer": "^1.0.1",
1566
+ "@humanwhocodes/retry": "^0.4.2",
1567
+ "@types/estree": "^1.0.6",
1568
+ "ajv": "^6.14.0",
1569
+ "cross-spawn": "^7.0.6",
1570
+ "debug": "^4.3.2",
1571
+ "escape-string-regexp": "^4.0.0",
1572
+ "eslint-scope": "^9.1.2",
1573
+ "eslint-visitor-keys": "^5.0.1",
1574
+ "espree": "^11.2.0",
1575
+ "esquery": "^1.7.0",
1576
+ "esutils": "^2.0.2",
1577
+ "fast-deep-equal": "^3.1.3",
1578
+ "file-entry-cache": "^8.0.0",
1579
+ "find-up": "^5.0.0",
1580
+ "glob-parent": "^6.0.2",
1581
+ "ignore": "^5.2.0",
1582
+ "imurmurhash": "^0.1.4",
1583
+ "is-glob": "^4.0.0",
1584
+ "json-stable-stringify-without-jsonify": "^1.0.1",
1585
+ "minimatch": "^10.2.4",
1586
+ "natural-compare": "^1.4.0",
1587
+ "optionator": "^0.9.3"
1588
+ },
1589
+ "bin": {
1590
+ "eslint": "bin/eslint.js"
1591
+ },
1592
+ "engines": {
1593
+ "node": "^20.19.0 || ^22.13.0 || >=24"
1594
+ },
1595
+ "funding": {
1596
+ "url": "https://eslint.org/donate"
1597
+ },
1598
+ "peerDependencies": {
1599
+ "jiti": "*"
1600
+ },
1601
+ "peerDependenciesMeta": {
1602
+ "jiti": {
1603
+ "optional": true
1604
+ }
1605
+ }
1606
+ },
1607
+ "node_modules/eslint-plugin-react-hooks": {
1608
+ "version": "7.1.1",
1609
+ "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-7.1.1.tgz",
1610
+ "integrity": "sha512-f2I7Gw6JbvCexzIInuSbZpfdQ44D7iqdWX01FKLvrPgqxoE7oMj8clOfto8U6vYiz4yd5oKu39rRSVOe1zRu0g==",
1611
+ "dev": true,
1612
+ "license": "MIT",
1613
+ "dependencies": {
1614
+ "@babel/core": "^7.24.4",
1615
+ "@babel/parser": "^7.24.4",
1616
+ "hermes-parser": "^0.25.1",
1617
+ "zod": "^3.25.0 || ^4.0.0",
1618
+ "zod-validation-error": "^3.5.0 || ^4.0.0"
1619
+ },
1620
+ "engines": {
1621
+ "node": ">=18"
1622
+ },
1623
+ "peerDependencies": {
1624
+ "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0 || ^10.0.0"
1625
+ }
1626
+ },
1627
+ "node_modules/eslint-plugin-react-refresh": {
1628
+ "version": "0.5.2",
1629
+ "resolved": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.5.2.tgz",
1630
+ "integrity": "sha512-hmgTH57GfzoTFjVN0yBwTggnsVUF2tcqi7RJZHqi9lIezSs4eFyAMktA68YD4r5kNw1mxyY4dmkyoFDb3FIqrA==",
1631
+ "dev": true,
1632
+ "license": "MIT",
1633
+ "peerDependencies": {
1634
+ "eslint": "^9 || ^10"
1635
+ }
1636
+ },
1637
+ "node_modules/eslint-scope": {
1638
+ "version": "9.1.2",
1639
+ "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-9.1.2.tgz",
1640
+ "integrity": "sha512-xS90H51cKw0jltxmvmHy2Iai1LIqrfbw57b79w/J7MfvDfkIkFZ+kj6zC3BjtUwh150HsSSdxXZcsuv72miDFQ==",
1641
+ "dev": true,
1642
+ "license": "BSD-2-Clause",
1643
+ "dependencies": {
1644
+ "@types/esrecurse": "^4.3.1",
1645
+ "@types/estree": "^1.0.8",
1646
+ "esrecurse": "^4.3.0",
1647
+ "estraverse": "^5.2.0"
1648
+ },
1649
+ "engines": {
1650
+ "node": "^20.19.0 || ^22.13.0 || >=24"
1651
+ },
1652
+ "funding": {
1653
+ "url": "https://opencollective.com/eslint"
1654
+ }
1655
+ },
1656
+ "node_modules/eslint-visitor-keys": {
1657
+ "version": "5.0.1",
1658
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-5.0.1.tgz",
1659
+ "integrity": "sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==",
1660
+ "dev": true,
1661
+ "license": "Apache-2.0",
1662
+ "engines": {
1663
+ "node": "^20.19.0 || ^22.13.0 || >=24"
1664
+ },
1665
+ "funding": {
1666
+ "url": "https://opencollective.com/eslint"
1667
+ }
1668
+ },
1669
+ "node_modules/espree": {
1670
+ "version": "11.2.0",
1671
+ "resolved": "https://registry.npmjs.org/espree/-/espree-11.2.0.tgz",
1672
+ "integrity": "sha512-7p3DrVEIopW1B1avAGLuCSh1jubc01H2JHc8B4qqGblmg5gI9yumBgACjWo4JlIc04ufug4xJ3SQI8HkS/Rgzw==",
1673
+ "dev": true,
1674
+ "license": "BSD-2-Clause",
1675
+ "dependencies": {
1676
+ "acorn": "^8.16.0",
1677
+ "acorn-jsx": "^5.3.2",
1678
+ "eslint-visitor-keys": "^5.0.1"
1679
+ },
1680
+ "engines": {
1681
+ "node": "^20.19.0 || ^22.13.0 || >=24"
1682
+ },
1683
+ "funding": {
1684
+ "url": "https://opencollective.com/eslint"
1685
+ }
1686
+ },
1687
+ "node_modules/esquery": {
1688
+ "version": "1.7.0",
1689
+ "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.7.0.tgz",
1690
+ "integrity": "sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==",
1691
+ "dev": true,
1692
+ "license": "BSD-3-Clause",
1693
+ "dependencies": {
1694
+ "estraverse": "^5.1.0"
1695
+ },
1696
+ "engines": {
1697
+ "node": ">=0.10"
1698
+ }
1699
+ },
1700
+ "node_modules/esrecurse": {
1701
+ "version": "4.3.0",
1702
+ "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
1703
+ "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
1704
+ "dev": true,
1705
+ "license": "BSD-2-Clause",
1706
+ "dependencies": {
1707
+ "estraverse": "^5.2.0"
1708
+ },
1709
+ "engines": {
1710
+ "node": ">=4.0"
1711
+ }
1712
+ },
1713
+ "node_modules/estraverse": {
1714
+ "version": "5.3.0",
1715
+ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
1716
+ "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
1717
+ "dev": true,
1718
+ "license": "BSD-2-Clause",
1719
+ "engines": {
1720
+ "node": ">=4.0"
1721
+ }
1722
+ },
1723
+ "node_modules/esutils": {
1724
+ "version": "2.0.3",
1725
+ "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
1726
+ "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
1727
+ "dev": true,
1728
+ "license": "BSD-2-Clause",
1729
+ "engines": {
1730
+ "node": ">=0.10.0"
1731
+ }
1732
+ },
1733
+ "node_modules/fast-deep-equal": {
1734
+ "version": "3.1.3",
1735
+ "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
1736
+ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
1737
+ "dev": true,
1738
+ "license": "MIT"
1739
+ },
1740
+ "node_modules/fast-json-stable-stringify": {
1741
+ "version": "2.1.0",
1742
+ "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
1743
+ "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
1744
+ "dev": true,
1745
+ "license": "MIT"
1746
+ },
1747
+ "node_modules/fast-levenshtein": {
1748
+ "version": "2.0.6",
1749
+ "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
1750
+ "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==",
1751
+ "dev": true,
1752
+ "license": "MIT"
1753
+ },
1754
+ "node_modules/fdir": {
1755
+ "version": "6.5.0",
1756
+ "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
1757
+ "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
1758
+ "license": "MIT",
1759
+ "engines": {
1760
+ "node": ">=12.0.0"
1761
+ },
1762
+ "peerDependencies": {
1763
+ "picomatch": "^3 || ^4"
1764
+ },
1765
+ "peerDependenciesMeta": {
1766
+ "picomatch": {
1767
+ "optional": true
1768
+ }
1769
+ }
1770
+ },
1771
+ "node_modules/file-entry-cache": {
1772
+ "version": "8.0.0",
1773
+ "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz",
1774
+ "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==",
1775
+ "dev": true,
1776
+ "license": "MIT",
1777
+ "dependencies": {
1778
+ "flat-cache": "^4.0.0"
1779
+ },
1780
+ "engines": {
1781
+ "node": ">=16.0.0"
1782
+ }
1783
+ },
1784
+ "node_modules/find-up": {
1785
+ "version": "5.0.0",
1786
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
1787
+ "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
1788
+ "dev": true,
1789
+ "license": "MIT",
1790
+ "dependencies": {
1791
+ "locate-path": "^6.0.0",
1792
+ "path-exists": "^4.0.0"
1793
+ },
1794
+ "engines": {
1795
+ "node": ">=10"
1796
+ },
1797
+ "funding": {
1798
+ "url": "https://github.com/sponsors/sindresorhus"
1799
+ }
1800
+ },
1801
+ "node_modules/flat-cache": {
1802
+ "version": "4.0.1",
1803
+ "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz",
1804
+ "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==",
1805
+ "dev": true,
1806
+ "license": "MIT",
1807
+ "dependencies": {
1808
+ "flatted": "^3.2.9",
1809
+ "keyv": "^4.5.4"
1810
+ },
1811
+ "engines": {
1812
+ "node": ">=16"
1813
+ }
1814
+ },
1815
+ "node_modules/flatted": {
1816
+ "version": "3.4.2",
1817
+ "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.4.2.tgz",
1818
+ "integrity": "sha512-PjDse7RzhcPkIJwy5t7KPWQSZ9cAbzQXcafsetQoD7sOJRQlGikNbx7yZp2OotDnJyrDcbyRq3Ttb18iYOqkxA==",
1819
+ "dev": true,
1820
+ "license": "ISC"
1821
+ },
1822
+ "node_modules/follow-redirects": {
1823
+ "version": "1.16.0",
1824
+ "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.16.0.tgz",
1825
+ "integrity": "sha512-y5rN/uOsadFT/JfYwhxRS5R7Qce+g3zG97+JrtFZlC9klX/W5hD7iiLzScI4nZqUS7DNUdhPgw4xI8W2LuXlUw==",
1826
+ "funding": [
1827
+ {
1828
+ "type": "individual",
1829
+ "url": "https://github.com/sponsors/RubenVerborgh"
1830
+ }
1831
+ ],
1832
+ "license": "MIT",
1833
+ "engines": {
1834
+ "node": ">=4.0"
1835
+ },
1836
+ "peerDependenciesMeta": {
1837
+ "debug": {
1838
+ "optional": true
1839
+ }
1840
+ }
1841
+ },
1842
+ "node_modules/form-data": {
1843
+ "version": "4.0.5",
1844
+ "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.5.tgz",
1845
+ "integrity": "sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==",
1846
+ "license": "MIT",
1847
+ "dependencies": {
1848
+ "asynckit": "^0.4.0",
1849
+ "combined-stream": "^1.0.8",
1850
+ "es-set-tostringtag": "^2.1.0",
1851
+ "hasown": "^2.0.2",
1852
+ "mime-types": "^2.1.12"
1853
+ },
1854
+ "engines": {
1855
+ "node": ">= 6"
1856
+ }
1857
+ },
1858
+ "node_modules/fsevents": {
1859
+ "version": "2.3.3",
1860
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
1861
+ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
1862
+ "hasInstallScript": true,
1863
+ "license": "MIT",
1864
+ "optional": true,
1865
+ "os": [
1866
+ "darwin"
1867
+ ],
1868
+ "engines": {
1869
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
1870
+ }
1871
+ },
1872
+ "node_modules/function-bind": {
1873
+ "version": "1.1.2",
1874
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
1875
+ "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
1876
+ "license": "MIT",
1877
+ "funding": {
1878
+ "url": "https://github.com/sponsors/ljharb"
1879
+ }
1880
+ },
1881
+ "node_modules/gensync": {
1882
+ "version": "1.0.0-beta.2",
1883
+ "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
1884
+ "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
1885
+ "dev": true,
1886
+ "license": "MIT",
1887
+ "engines": {
1888
+ "node": ">=6.9.0"
1889
+ }
1890
+ },
1891
+ "node_modules/get-intrinsic": {
1892
+ "version": "1.3.0",
1893
+ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
1894
+ "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
1895
+ "license": "MIT",
1896
+ "dependencies": {
1897
+ "call-bind-apply-helpers": "^1.0.2",
1898
+ "es-define-property": "^1.0.1",
1899
+ "es-errors": "^1.3.0",
1900
+ "es-object-atoms": "^1.1.1",
1901
+ "function-bind": "^1.1.2",
1902
+ "get-proto": "^1.0.1",
1903
+ "gopd": "^1.2.0",
1904
+ "has-symbols": "^1.1.0",
1905
+ "hasown": "^2.0.2",
1906
+ "math-intrinsics": "^1.1.0"
1907
+ },
1908
+ "engines": {
1909
+ "node": ">= 0.4"
1910
+ },
1911
+ "funding": {
1912
+ "url": "https://github.com/sponsors/ljharb"
1913
+ }
1914
+ },
1915
+ "node_modules/get-proto": {
1916
+ "version": "1.0.1",
1917
+ "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
1918
+ "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
1919
+ "license": "MIT",
1920
+ "dependencies": {
1921
+ "dunder-proto": "^1.0.1",
1922
+ "es-object-atoms": "^1.0.0"
1923
+ },
1924
+ "engines": {
1925
+ "node": ">= 0.4"
1926
+ }
1927
+ },
1928
+ "node_modules/glob-parent": {
1929
+ "version": "6.0.2",
1930
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
1931
+ "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
1932
+ "dev": true,
1933
+ "license": "ISC",
1934
+ "dependencies": {
1935
+ "is-glob": "^4.0.3"
1936
+ },
1937
+ "engines": {
1938
+ "node": ">=10.13.0"
1939
+ }
1940
+ },
1941
+ "node_modules/globals": {
1942
+ "version": "17.6.0",
1943
+ "resolved": "https://registry.npmjs.org/globals/-/globals-17.6.0.tgz",
1944
+ "integrity": "sha512-sepffkT8stwnIYbsMBpoCHJuJM5l98FUF2AnE07hfvE0m/qp3R586hw4jF4uadbhvg1ooIdzuu7CsfD2jzCaNA==",
1945
+ "dev": true,
1946
+ "license": "MIT",
1947
+ "engines": {
1948
+ "node": ">=18"
1949
+ },
1950
+ "funding": {
1951
+ "url": "https://github.com/sponsors/sindresorhus"
1952
+ }
1953
+ },
1954
+ "node_modules/gopd": {
1955
+ "version": "1.2.0",
1956
+ "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
1957
+ "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
1958
+ "license": "MIT",
1959
+ "engines": {
1960
+ "node": ">= 0.4"
1961
+ },
1962
+ "funding": {
1963
+ "url": "https://github.com/sponsors/ljharb"
1964
+ }
1965
+ },
1966
+ "node_modules/graceful-fs": {
1967
+ "version": "4.2.11",
1968
+ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
1969
+ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
1970
+ "license": "ISC"
1971
+ },
1972
+ "node_modules/has-symbols": {
1973
+ "version": "1.1.0",
1974
+ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
1975
+ "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
1976
+ "license": "MIT",
1977
+ "engines": {
1978
+ "node": ">= 0.4"
1979
+ },
1980
+ "funding": {
1981
+ "url": "https://github.com/sponsors/ljharb"
1982
+ }
1983
+ },
1984
+ "node_modules/has-tostringtag": {
1985
+ "version": "1.0.2",
1986
+ "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
1987
+ "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
1988
+ "license": "MIT",
1989
+ "dependencies": {
1990
+ "has-symbols": "^1.0.3"
1991
+ },
1992
+ "engines": {
1993
+ "node": ">= 0.4"
1994
+ },
1995
+ "funding": {
1996
+ "url": "https://github.com/sponsors/ljharb"
1997
+ }
1998
+ },
1999
+ "node_modules/hasown": {
2000
+ "version": "2.0.3",
2001
+ "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.3.tgz",
2002
+ "integrity": "sha512-ej4AhfhfL2Q2zpMmLo7U1Uv9+PyhIZpgQLGT1F9miIGmiCJIoCgSmczFdrc97mWT4kVY72KA+WnnhJ5pghSvSg==",
2003
+ "license": "MIT",
2004
+ "dependencies": {
2005
+ "function-bind": "^1.1.2"
2006
+ },
2007
+ "engines": {
2008
+ "node": ">= 0.4"
2009
+ }
2010
+ },
2011
+ "node_modules/hermes-estree": {
2012
+ "version": "0.25.1",
2013
+ "resolved": "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.25.1.tgz",
2014
+ "integrity": "sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw==",
2015
+ "dev": true,
2016
+ "license": "MIT"
2017
+ },
2018
+ "node_modules/hermes-parser": {
2019
+ "version": "0.25.1",
2020
+ "resolved": "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.25.1.tgz",
2021
+ "integrity": "sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==",
2022
+ "dev": true,
2023
+ "license": "MIT",
2024
+ "dependencies": {
2025
+ "hermes-estree": "0.25.1"
2026
+ }
2027
+ },
2028
+ "node_modules/https-proxy-agent": {
2029
+ "version": "5.0.1",
2030
+ "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz",
2031
+ "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==",
2032
+ "license": "MIT",
2033
+ "dependencies": {
2034
+ "agent-base": "6",
2035
+ "debug": "4"
2036
+ },
2037
+ "engines": {
2038
+ "node": ">= 6"
2039
+ }
2040
+ },
2041
+ "node_modules/ignore": {
2042
+ "version": "5.3.2",
2043
+ "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz",
2044
+ "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==",
2045
+ "dev": true,
2046
+ "license": "MIT",
2047
+ "engines": {
2048
+ "node": ">= 4"
2049
+ }
2050
+ },
2051
+ "node_modules/imurmurhash": {
2052
+ "version": "0.1.4",
2053
+ "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
2054
+ "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
2055
+ "dev": true,
2056
+ "license": "MIT",
2057
+ "engines": {
2058
+ "node": ">=0.8.19"
2059
+ }
2060
+ },
2061
+ "node_modules/is-extglob": {
2062
+ "version": "2.1.1",
2063
+ "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
2064
+ "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
2065
+ "dev": true,
2066
+ "license": "MIT",
2067
+ "engines": {
2068
+ "node": ">=0.10.0"
2069
+ }
2070
+ },
2071
+ "node_modules/is-glob": {
2072
+ "version": "4.0.3",
2073
+ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
2074
+ "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
2075
+ "dev": true,
2076
+ "license": "MIT",
2077
+ "dependencies": {
2078
+ "is-extglob": "^2.1.1"
2079
+ },
2080
+ "engines": {
2081
+ "node": ">=0.10.0"
2082
+ }
2083
+ },
2084
+ "node_modules/isexe": {
2085
+ "version": "2.0.0",
2086
+ "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
2087
+ "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
2088
+ "dev": true,
2089
+ "license": "ISC"
2090
+ },
2091
+ "node_modules/jiti": {
2092
+ "version": "2.7.0",
2093
+ "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.7.0.tgz",
2094
+ "integrity": "sha512-AC/7JofJvZGrrneWNaEnJeOLUx+JlGt7tNa0wZiRPT4MY1wmfKjt2+6O2p2uz2+skll8OZZmJMNqeke7kKbNgQ==",
2095
+ "license": "MIT",
2096
+ "bin": {
2097
+ "jiti": "lib/jiti-cli.mjs"
2098
+ }
2099
+ },
2100
+ "node_modules/js-tokens": {
2101
+ "version": "4.0.0",
2102
+ "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
2103
+ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
2104
+ "dev": true,
2105
+ "license": "MIT"
2106
+ },
2107
+ "node_modules/jsesc": {
2108
+ "version": "3.1.0",
2109
+ "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
2110
+ "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
2111
+ "dev": true,
2112
+ "license": "MIT",
2113
+ "bin": {
2114
+ "jsesc": "bin/jsesc"
2115
+ },
2116
+ "engines": {
2117
+ "node": ">=6"
2118
+ }
2119
+ },
2120
+ "node_modules/json-buffer": {
2121
+ "version": "3.0.1",
2122
+ "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz",
2123
+ "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==",
2124
+ "dev": true,
2125
+ "license": "MIT"
2126
+ },
2127
+ "node_modules/json-schema-traverse": {
2128
+ "version": "0.4.1",
2129
+ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
2130
+ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
2131
+ "dev": true,
2132
+ "license": "MIT"
2133
+ },
2134
+ "node_modules/json-stable-stringify-without-jsonify": {
2135
+ "version": "1.0.1",
2136
+ "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
2137
+ "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==",
2138
+ "dev": true,
2139
+ "license": "MIT"
2140
+ },
2141
+ "node_modules/json5": {
2142
+ "version": "2.2.3",
2143
+ "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
2144
+ "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
2145
+ "dev": true,
2146
+ "license": "MIT",
2147
+ "bin": {
2148
+ "json5": "lib/cli.js"
2149
+ },
2150
+ "engines": {
2151
+ "node": ">=6"
2152
+ }
2153
+ },
2154
+ "node_modules/keyv": {
2155
+ "version": "4.5.4",
2156
+ "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz",
2157
+ "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==",
2158
+ "dev": true,
2159
+ "license": "MIT",
2160
+ "dependencies": {
2161
+ "json-buffer": "3.0.1"
2162
+ }
2163
+ },
2164
+ "node_modules/levn": {
2165
+ "version": "0.4.1",
2166
+ "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz",
2167
+ "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
2168
+ "dev": true,
2169
+ "license": "MIT",
2170
+ "dependencies": {
2171
+ "prelude-ls": "^1.2.1",
2172
+ "type-check": "~0.4.0"
2173
+ },
2174
+ "engines": {
2175
+ "node": ">= 0.8.0"
2176
+ }
2177
+ },
2178
+ "node_modules/lightningcss": {
2179
+ "version": "1.32.0",
2180
+ "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.32.0.tgz",
2181
+ "integrity": "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==",
2182
+ "license": "MPL-2.0",
2183
+ "dependencies": {
2184
+ "detect-libc": "^2.0.3"
2185
+ },
2186
+ "engines": {
2187
+ "node": ">= 12.0.0"
2188
+ },
2189
+ "funding": {
2190
+ "type": "opencollective",
2191
+ "url": "https://opencollective.com/parcel"
2192
+ },
2193
+ "optionalDependencies": {
2194
+ "lightningcss-android-arm64": "1.32.0",
2195
+ "lightningcss-darwin-arm64": "1.32.0",
2196
+ "lightningcss-darwin-x64": "1.32.0",
2197
+ "lightningcss-freebsd-x64": "1.32.0",
2198
+ "lightningcss-linux-arm-gnueabihf": "1.32.0",
2199
+ "lightningcss-linux-arm64-gnu": "1.32.0",
2200
+ "lightningcss-linux-arm64-musl": "1.32.0",
2201
+ "lightningcss-linux-x64-gnu": "1.32.0",
2202
+ "lightningcss-linux-x64-musl": "1.32.0",
2203
+ "lightningcss-win32-arm64-msvc": "1.32.0",
2204
+ "lightningcss-win32-x64-msvc": "1.32.0"
2205
+ }
2206
+ },
2207
+ "node_modules/lightningcss-android-arm64": {
2208
+ "version": "1.32.0",
2209
+ "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.32.0.tgz",
2210
+ "integrity": "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==",
2211
+ "cpu": [
2212
+ "arm64"
2213
+ ],
2214
+ "license": "MPL-2.0",
2215
+ "optional": true,
2216
+ "os": [
2217
+ "android"
2218
+ ],
2219
+ "engines": {
2220
+ "node": ">= 12.0.0"
2221
+ },
2222
+ "funding": {
2223
+ "type": "opencollective",
2224
+ "url": "https://opencollective.com/parcel"
2225
+ }
2226
+ },
2227
+ "node_modules/lightningcss-darwin-arm64": {
2228
+ "version": "1.32.0",
2229
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.32.0.tgz",
2230
+ "integrity": "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==",
2231
+ "cpu": [
2232
+ "arm64"
2233
+ ],
2234
+ "license": "MPL-2.0",
2235
+ "optional": true,
2236
+ "os": [
2237
+ "darwin"
2238
+ ],
2239
+ "engines": {
2240
+ "node": ">= 12.0.0"
2241
+ },
2242
+ "funding": {
2243
+ "type": "opencollective",
2244
+ "url": "https://opencollective.com/parcel"
2245
+ }
2246
+ },
2247
+ "node_modules/lightningcss-darwin-x64": {
2248
+ "version": "1.32.0",
2249
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.32.0.tgz",
2250
+ "integrity": "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==",
2251
+ "cpu": [
2252
+ "x64"
2253
+ ],
2254
+ "license": "MPL-2.0",
2255
+ "optional": true,
2256
+ "os": [
2257
+ "darwin"
2258
+ ],
2259
+ "engines": {
2260
+ "node": ">= 12.0.0"
2261
+ },
2262
+ "funding": {
2263
+ "type": "opencollective",
2264
+ "url": "https://opencollective.com/parcel"
2265
+ }
2266
+ },
2267
+ "node_modules/lightningcss-freebsd-x64": {
2268
+ "version": "1.32.0",
2269
+ "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.32.0.tgz",
2270
+ "integrity": "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==",
2271
+ "cpu": [
2272
+ "x64"
2273
+ ],
2274
+ "license": "MPL-2.0",
2275
+ "optional": true,
2276
+ "os": [
2277
+ "freebsd"
2278
+ ],
2279
+ "engines": {
2280
+ "node": ">= 12.0.0"
2281
+ },
2282
+ "funding": {
2283
+ "type": "opencollective",
2284
+ "url": "https://opencollective.com/parcel"
2285
+ }
2286
+ },
2287
+ "node_modules/lightningcss-linux-arm-gnueabihf": {
2288
+ "version": "1.32.0",
2289
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.32.0.tgz",
2290
+ "integrity": "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==",
2291
+ "cpu": [
2292
+ "arm"
2293
+ ],
2294
+ "license": "MPL-2.0",
2295
+ "optional": true,
2296
+ "os": [
2297
+ "linux"
2298
+ ],
2299
+ "engines": {
2300
+ "node": ">= 12.0.0"
2301
+ },
2302
+ "funding": {
2303
+ "type": "opencollective",
2304
+ "url": "https://opencollective.com/parcel"
2305
+ }
2306
+ },
2307
+ "node_modules/lightningcss-linux-arm64-gnu": {
2308
+ "version": "1.32.0",
2309
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.32.0.tgz",
2310
+ "integrity": "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==",
2311
+ "cpu": [
2312
+ "arm64"
2313
+ ],
2314
+ "libc": [
2315
+ "glibc"
2316
+ ],
2317
+ "license": "MPL-2.0",
2318
+ "optional": true,
2319
+ "os": [
2320
+ "linux"
2321
+ ],
2322
+ "engines": {
2323
+ "node": ">= 12.0.0"
2324
+ },
2325
+ "funding": {
2326
+ "type": "opencollective",
2327
+ "url": "https://opencollective.com/parcel"
2328
+ }
2329
+ },
2330
+ "node_modules/lightningcss-linux-arm64-musl": {
2331
+ "version": "1.32.0",
2332
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.32.0.tgz",
2333
+ "integrity": "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==",
2334
+ "cpu": [
2335
+ "arm64"
2336
+ ],
2337
+ "libc": [
2338
+ "musl"
2339
+ ],
2340
+ "license": "MPL-2.0",
2341
+ "optional": true,
2342
+ "os": [
2343
+ "linux"
2344
+ ],
2345
+ "engines": {
2346
+ "node": ">= 12.0.0"
2347
+ },
2348
+ "funding": {
2349
+ "type": "opencollective",
2350
+ "url": "https://opencollective.com/parcel"
2351
+ }
2352
+ },
2353
+ "node_modules/lightningcss-linux-x64-gnu": {
2354
+ "version": "1.32.0",
2355
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.32.0.tgz",
2356
+ "integrity": "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==",
2357
+ "cpu": [
2358
+ "x64"
2359
+ ],
2360
+ "libc": [
2361
+ "glibc"
2362
+ ],
2363
+ "license": "MPL-2.0",
2364
+ "optional": true,
2365
+ "os": [
2366
+ "linux"
2367
+ ],
2368
+ "engines": {
2369
+ "node": ">= 12.0.0"
2370
+ },
2371
+ "funding": {
2372
+ "type": "opencollective",
2373
+ "url": "https://opencollective.com/parcel"
2374
+ }
2375
+ },
2376
+ "node_modules/lightningcss-linux-x64-musl": {
2377
+ "version": "1.32.0",
2378
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.32.0.tgz",
2379
+ "integrity": "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==",
2380
+ "cpu": [
2381
+ "x64"
2382
+ ],
2383
+ "libc": [
2384
+ "musl"
2385
+ ],
2386
+ "license": "MPL-2.0",
2387
+ "optional": true,
2388
+ "os": [
2389
+ "linux"
2390
+ ],
2391
+ "engines": {
2392
+ "node": ">= 12.0.0"
2393
+ },
2394
+ "funding": {
2395
+ "type": "opencollective",
2396
+ "url": "https://opencollective.com/parcel"
2397
+ }
2398
+ },
2399
+ "node_modules/lightningcss-win32-arm64-msvc": {
2400
+ "version": "1.32.0",
2401
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.32.0.tgz",
2402
+ "integrity": "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==",
2403
+ "cpu": [
2404
+ "arm64"
2405
+ ],
2406
+ "license": "MPL-2.0",
2407
+ "optional": true,
2408
+ "os": [
2409
+ "win32"
2410
+ ],
2411
+ "engines": {
2412
+ "node": ">= 12.0.0"
2413
+ },
2414
+ "funding": {
2415
+ "type": "opencollective",
2416
+ "url": "https://opencollective.com/parcel"
2417
+ }
2418
+ },
2419
+ "node_modules/lightningcss-win32-x64-msvc": {
2420
+ "version": "1.32.0",
2421
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz",
2422
+ "integrity": "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==",
2423
+ "cpu": [
2424
+ "x64"
2425
+ ],
2426
+ "license": "MPL-2.0",
2427
+ "optional": true,
2428
+ "os": [
2429
+ "win32"
2430
+ ],
2431
+ "engines": {
2432
+ "node": ">= 12.0.0"
2433
+ },
2434
+ "funding": {
2435
+ "type": "opencollective",
2436
+ "url": "https://opencollective.com/parcel"
2437
+ }
2438
+ },
2439
+ "node_modules/locate-path": {
2440
+ "version": "6.0.0",
2441
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
2442
+ "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
2443
+ "dev": true,
2444
+ "license": "MIT",
2445
+ "dependencies": {
2446
+ "p-locate": "^5.0.0"
2447
+ },
2448
+ "engines": {
2449
+ "node": ">=10"
2450
+ },
2451
+ "funding": {
2452
+ "url": "https://github.com/sponsors/sindresorhus"
2453
+ }
2454
+ },
2455
+ "node_modules/lru-cache": {
2456
+ "version": "5.1.1",
2457
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
2458
+ "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
2459
+ "dev": true,
2460
+ "license": "ISC",
2461
+ "dependencies": {
2462
+ "yallist": "^3.0.2"
2463
+ }
2464
+ },
2465
+ "node_modules/magic-string": {
2466
+ "version": "0.30.21",
2467
+ "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz",
2468
+ "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==",
2469
+ "license": "MIT",
2470
+ "dependencies": {
2471
+ "@jridgewell/sourcemap-codec": "^1.5.5"
2472
+ }
2473
+ },
2474
+ "node_modules/math-intrinsics": {
2475
+ "version": "1.1.0",
2476
+ "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
2477
+ "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
2478
+ "license": "MIT",
2479
+ "engines": {
2480
+ "node": ">= 0.4"
2481
+ }
2482
+ },
2483
+ "node_modules/mime-db": {
2484
+ "version": "1.52.0",
2485
+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
2486
+ "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
2487
+ "license": "MIT",
2488
+ "engines": {
2489
+ "node": ">= 0.6"
2490
+ }
2491
+ },
2492
+ "node_modules/mime-types": {
2493
+ "version": "2.1.35",
2494
+ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
2495
+ "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
2496
+ "license": "MIT",
2497
+ "dependencies": {
2498
+ "mime-db": "1.52.0"
2499
+ },
2500
+ "engines": {
2501
+ "node": ">= 0.6"
2502
+ }
2503
+ },
2504
+ "node_modules/minimatch": {
2505
+ "version": "10.2.5",
2506
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.5.tgz",
2507
+ "integrity": "sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==",
2508
+ "dev": true,
2509
+ "license": "BlueOak-1.0.0",
2510
+ "dependencies": {
2511
+ "brace-expansion": "^5.0.5"
2512
+ },
2513
+ "engines": {
2514
+ "node": "18 || 20 || >=22"
2515
+ },
2516
+ "funding": {
2517
+ "url": "https://github.com/sponsors/isaacs"
2518
+ }
2519
+ },
2520
+ "node_modules/ms": {
2521
+ "version": "2.1.3",
2522
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
2523
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
2524
+ "license": "MIT"
2525
+ },
2526
+ "node_modules/nanoid": {
2527
+ "version": "3.3.12",
2528
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.12.tgz",
2529
+ "integrity": "sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ==",
2530
+ "funding": [
2531
+ {
2532
+ "type": "github",
2533
+ "url": "https://github.com/sponsors/ai"
2534
+ }
2535
+ ],
2536
+ "license": "MIT",
2537
+ "bin": {
2538
+ "nanoid": "bin/nanoid.cjs"
2539
+ },
2540
+ "engines": {
2541
+ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
2542
+ }
2543
+ },
2544
+ "node_modules/natural-compare": {
2545
+ "version": "1.4.0",
2546
+ "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
2547
+ "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==",
2548
+ "dev": true,
2549
+ "license": "MIT"
2550
+ },
2551
+ "node_modules/node-releases": {
2552
+ "version": "2.0.46",
2553
+ "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.46.tgz",
2554
+ "integrity": "sha512-GYVXHE2KnrzAfsAjl4uP++evGFCrAU1jta4ubEjIG7YWt/64Gqv66a30yKwWczVjA6j3bM4nBwH7Pk1JmDHaxQ==",
2555
+ "dev": true,
2556
+ "license": "MIT",
2557
+ "engines": {
2558
+ "node": ">=18"
2559
+ }
2560
+ },
2561
+ "node_modules/optionator": {
2562
+ "version": "0.9.4",
2563
+ "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz",
2564
+ "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==",
2565
+ "dev": true,
2566
+ "license": "MIT",
2567
+ "dependencies": {
2568
+ "deep-is": "^0.1.3",
2569
+ "fast-levenshtein": "^2.0.6",
2570
+ "levn": "^0.4.1",
2571
+ "prelude-ls": "^1.2.1",
2572
+ "type-check": "^0.4.0",
2573
+ "word-wrap": "^1.2.5"
2574
+ },
2575
+ "engines": {
2576
+ "node": ">= 0.8.0"
2577
+ }
2578
+ },
2579
+ "node_modules/p-limit": {
2580
+ "version": "3.1.0",
2581
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
2582
+ "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
2583
+ "dev": true,
2584
+ "license": "MIT",
2585
+ "dependencies": {
2586
+ "yocto-queue": "^0.1.0"
2587
+ },
2588
+ "engines": {
2589
+ "node": ">=10"
2590
+ },
2591
+ "funding": {
2592
+ "url": "https://github.com/sponsors/sindresorhus"
2593
+ }
2594
+ },
2595
+ "node_modules/p-locate": {
2596
+ "version": "5.0.0",
2597
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
2598
+ "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
2599
+ "dev": true,
2600
+ "license": "MIT",
2601
+ "dependencies": {
2602
+ "p-limit": "^3.0.2"
2603
+ },
2604
+ "engines": {
2605
+ "node": ">=10"
2606
+ },
2607
+ "funding": {
2608
+ "url": "https://github.com/sponsors/sindresorhus"
2609
+ }
2610
+ },
2611
+ "node_modules/path-exists": {
2612
+ "version": "4.0.0",
2613
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
2614
+ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
2615
+ "dev": true,
2616
+ "license": "MIT",
2617
+ "engines": {
2618
+ "node": ">=8"
2619
+ }
2620
+ },
2621
+ "node_modules/path-key": {
2622
+ "version": "3.1.1",
2623
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
2624
+ "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
2625
+ "dev": true,
2626
+ "license": "MIT",
2627
+ "engines": {
2628
+ "node": ">=8"
2629
+ }
2630
+ },
2631
+ "node_modules/picocolors": {
2632
+ "version": "1.1.1",
2633
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
2634
+ "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
2635
+ "license": "ISC"
2636
+ },
2637
+ "node_modules/picomatch": {
2638
+ "version": "4.0.4",
2639
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz",
2640
+ "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==",
2641
+ "license": "MIT",
2642
+ "engines": {
2643
+ "node": ">=12"
2644
+ },
2645
+ "funding": {
2646
+ "url": "https://github.com/sponsors/jonschlinkert"
2647
+ }
2648
+ },
2649
+ "node_modules/postcss": {
2650
+ "version": "8.5.15",
2651
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.15.tgz",
2652
+ "integrity": "sha512-FfR8sjd4em2T6fb3I2MwAJU7HWVMr9zba+enmQeeWFfCbm+UOC/0X4DS8XtpUTMwWMGbjKYP7xjfNekzyGmB3A==",
2653
+ "funding": [
2654
+ {
2655
+ "type": "opencollective",
2656
+ "url": "https://opencollective.com/postcss/"
2657
+ },
2658
+ {
2659
+ "type": "tidelift",
2660
+ "url": "https://tidelift.com/funding/github/npm/postcss"
2661
+ },
2662
+ {
2663
+ "type": "github",
2664
+ "url": "https://github.com/sponsors/ai"
2665
+ }
2666
+ ],
2667
+ "license": "MIT",
2668
+ "dependencies": {
2669
+ "nanoid": "^3.3.12",
2670
+ "picocolors": "^1.1.1",
2671
+ "source-map-js": "^1.2.1"
2672
+ },
2673
+ "engines": {
2674
+ "node": "^10 || ^12 || >=14"
2675
+ }
2676
+ },
2677
+ "node_modules/prelude-ls": {
2678
+ "version": "1.2.1",
2679
+ "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",
2680
+ "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
2681
+ "dev": true,
2682
+ "license": "MIT",
2683
+ "engines": {
2684
+ "node": ">= 0.8.0"
2685
+ }
2686
+ },
2687
+ "node_modules/proxy-from-env": {
2688
+ "version": "2.1.0",
2689
+ "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-2.1.0.tgz",
2690
+ "integrity": "sha512-cJ+oHTW1VAEa8cJslgmUZrc+sjRKgAKl3Zyse6+PV38hZe/V6Z14TbCuXcan9F9ghlz4QrFr2c92TNF82UkYHA==",
2691
+ "license": "MIT",
2692
+ "engines": {
2693
+ "node": ">=10"
2694
+ }
2695
+ },
2696
+ "node_modules/punycode": {
2697
+ "version": "2.3.1",
2698
+ "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
2699
+ "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
2700
+ "dev": true,
2701
+ "license": "MIT",
2702
+ "engines": {
2703
+ "node": ">=6"
2704
+ }
2705
+ },
2706
+ "node_modules/react": {
2707
+ "version": "19.2.6",
2708
+ "resolved": "https://registry.npmjs.org/react/-/react-19.2.6.tgz",
2709
+ "integrity": "sha512-sfWGGfavi0xr8Pg0sVsyHMAOziVYKgPLNrS7ig+ivMNb3wbCBw3KxtflsGBAwD3gYQlE/AEZsTLgToRrSCjb0Q==",
2710
+ "license": "MIT",
2711
+ "engines": {
2712
+ "node": ">=0.10.0"
2713
+ }
2714
+ },
2715
+ "node_modules/react-dom": {
2716
+ "version": "19.2.6",
2717
+ "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.6.tgz",
2718
+ "integrity": "sha512-0prMI+hvBbPjsWnxDLxlCGyM8PN6UuWjEUCYmZhO67xIV9Xasa/r/vDnq+Xyq4Lo27g8QSbO5YzARu0D1Sps3g==",
2719
+ "license": "MIT",
2720
+ "dependencies": {
2721
+ "scheduler": "^0.27.0"
2722
+ },
2723
+ "peerDependencies": {
2724
+ "react": "^19.2.6"
2725
+ }
2726
+ },
2727
+ "node_modules/react-router": {
2728
+ "version": "7.15.1",
2729
+ "resolved": "https://registry.npmjs.org/react-router/-/react-router-7.15.1.tgz",
2730
+ "integrity": "sha512-R8rl9HhgikFYoPJymnUtPXWbnDb3oget6lQnfIoupbt61aT9aOhRkDsY2XRhZRyX1Z/8a5sL74fXmFNm3NRK5A==",
2731
+ "license": "MIT",
2732
+ "dependencies": {
2733
+ "cookie": "^1.0.1",
2734
+ "set-cookie-parser": "^2.6.0"
2735
+ },
2736
+ "engines": {
2737
+ "node": ">=20.0.0"
2738
+ },
2739
+ "peerDependencies": {
2740
+ "react": ">=18",
2741
+ "react-dom": ">=18"
2742
+ },
2743
+ "peerDependenciesMeta": {
2744
+ "react-dom": {
2745
+ "optional": true
2746
+ }
2747
+ }
2748
+ },
2749
+ "node_modules/react-router-dom": {
2750
+ "version": "7.15.1",
2751
+ "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-7.15.1.tgz",
2752
+ "integrity": "sha512-AzF62gjY6U9rkMq4RfP/r2EVtQ7DMfNMjyOp/flLTCrtRylLiK4wT4pSq6O8rOXZ2eXdZYJPEYe+ifomiv+Igg==",
2753
+ "license": "MIT",
2754
+ "dependencies": {
2755
+ "react-router": "7.15.1"
2756
+ },
2757
+ "engines": {
2758
+ "node": ">=20.0.0"
2759
+ },
2760
+ "peerDependencies": {
2761
+ "react": ">=18",
2762
+ "react-dom": ">=18"
2763
+ }
2764
+ },
2765
+ "node_modules/rolldown": {
2766
+ "version": "1.0.2",
2767
+ "resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.0.2.tgz",
2768
+ "integrity": "sha512-oZx5zVDtVB44AW3eaifgDml1gWRDZGvjcfdxonE4swNPG98PrrXjaO/KrnUjzlMnztCCRVlUueA1kCXhARGk6g==",
2769
+ "license": "MIT",
2770
+ "dependencies": {
2771
+ "@oxc-project/types": "=0.132.0",
2772
+ "@rolldown/pluginutils": "^1.0.0"
2773
+ },
2774
+ "bin": {
2775
+ "rolldown": "bin/cli.mjs"
2776
+ },
2777
+ "engines": {
2778
+ "node": "^20.19.0 || >=22.12.0"
2779
+ },
2780
+ "optionalDependencies": {
2781
+ "@rolldown/binding-android-arm64": "1.0.2",
2782
+ "@rolldown/binding-darwin-arm64": "1.0.2",
2783
+ "@rolldown/binding-darwin-x64": "1.0.2",
2784
+ "@rolldown/binding-freebsd-x64": "1.0.2",
2785
+ "@rolldown/binding-linux-arm-gnueabihf": "1.0.2",
2786
+ "@rolldown/binding-linux-arm64-gnu": "1.0.2",
2787
+ "@rolldown/binding-linux-arm64-musl": "1.0.2",
2788
+ "@rolldown/binding-linux-ppc64-gnu": "1.0.2",
2789
+ "@rolldown/binding-linux-s390x-gnu": "1.0.2",
2790
+ "@rolldown/binding-linux-x64-gnu": "1.0.2",
2791
+ "@rolldown/binding-linux-x64-musl": "1.0.2",
2792
+ "@rolldown/binding-openharmony-arm64": "1.0.2",
2793
+ "@rolldown/binding-wasm32-wasi": "1.0.2",
2794
+ "@rolldown/binding-win32-arm64-msvc": "1.0.2",
2795
+ "@rolldown/binding-win32-x64-msvc": "1.0.2"
2796
+ }
2797
+ },
2798
+ "node_modules/scheduler": {
2799
+ "version": "0.27.0",
2800
+ "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz",
2801
+ "integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==",
2802
+ "license": "MIT"
2803
+ },
2804
+ "node_modules/semver": {
2805
+ "version": "6.3.1",
2806
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
2807
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
2808
+ "dev": true,
2809
+ "license": "ISC",
2810
+ "bin": {
2811
+ "semver": "bin/semver.js"
2812
+ }
2813
+ },
2814
+ "node_modules/set-cookie-parser": {
2815
+ "version": "2.7.2",
2816
+ "resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.7.2.tgz",
2817
+ "integrity": "sha512-oeM1lpU/UvhTxw+g3cIfxXHyJRc/uidd3yK1P242gzHds0udQBYzs3y8j4gCCW+ZJ7ad0yctld8RYO+bdurlvw==",
2818
+ "license": "MIT"
2819
+ },
2820
+ "node_modules/shebang-command": {
2821
+ "version": "2.0.0",
2822
+ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
2823
+ "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
2824
+ "dev": true,
2825
+ "license": "MIT",
2826
+ "dependencies": {
2827
+ "shebang-regex": "^3.0.0"
2828
+ },
2829
+ "engines": {
2830
+ "node": ">=8"
2831
+ }
2832
+ },
2833
+ "node_modules/shebang-regex": {
2834
+ "version": "3.0.0",
2835
+ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
2836
+ "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
2837
+ "dev": true,
2838
+ "license": "MIT",
2839
+ "engines": {
2840
+ "node": ">=8"
2841
+ }
2842
+ },
2843
+ "node_modules/source-map-js": {
2844
+ "version": "1.2.1",
2845
+ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
2846
+ "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
2847
+ "license": "BSD-3-Clause",
2848
+ "engines": {
2849
+ "node": ">=0.10.0"
2850
+ }
2851
+ },
2852
+ "node_modules/tailwindcss": {
2853
+ "version": "4.3.0",
2854
+ "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.3.0.tgz",
2855
+ "integrity": "sha512-y6nxMGB1nMW9R6k96e5gdIFzcfL/gTJRNaqGes1YvkLnPVXzWgbqFF2yLC0T8G774n24cx3Pe8XrKoniCOAH+Q==",
2856
+ "license": "MIT"
2857
+ },
2858
+ "node_modules/tapable": {
2859
+ "version": "2.3.3",
2860
+ "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.3.tgz",
2861
+ "integrity": "sha512-uxc/zpqFg6x7C8vOE7lh6Lbda8eEL9zmVm/PLeTPBRhh1xCgdWaQ+J1CUieGpIfm2HdtsUpRv+HshiasBMcc6A==",
2862
+ "license": "MIT",
2863
+ "engines": {
2864
+ "node": ">=6"
2865
+ },
2866
+ "funding": {
2867
+ "type": "opencollective",
2868
+ "url": "https://opencollective.com/webpack"
2869
+ }
2870
+ },
2871
+ "node_modules/tinyglobby": {
2872
+ "version": "0.2.16",
2873
+ "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.16.tgz",
2874
+ "integrity": "sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg==",
2875
+ "license": "MIT",
2876
+ "dependencies": {
2877
+ "fdir": "^6.5.0",
2878
+ "picomatch": "^4.0.4"
2879
+ },
2880
+ "engines": {
2881
+ "node": ">=12.0.0"
2882
+ },
2883
+ "funding": {
2884
+ "url": "https://github.com/sponsors/SuperchupuDev"
2885
+ }
2886
+ },
2887
+ "node_modules/tslib": {
2888
+ "version": "2.8.1",
2889
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
2890
+ "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
2891
+ "license": "0BSD",
2892
+ "optional": true
2893
+ },
2894
+ "node_modules/type-check": {
2895
+ "version": "0.4.0",
2896
+ "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
2897
+ "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
2898
+ "dev": true,
2899
+ "license": "MIT",
2900
+ "dependencies": {
2901
+ "prelude-ls": "^1.2.1"
2902
+ },
2903
+ "engines": {
2904
+ "node": ">= 0.8.0"
2905
+ }
2906
+ },
2907
+ "node_modules/update-browserslist-db": {
2908
+ "version": "1.2.3",
2909
+ "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz",
2910
+ "integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==",
2911
+ "dev": true,
2912
+ "funding": [
2913
+ {
2914
+ "type": "opencollective",
2915
+ "url": "https://opencollective.com/browserslist"
2916
+ },
2917
+ {
2918
+ "type": "tidelift",
2919
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
2920
+ },
2921
+ {
2922
+ "type": "github",
2923
+ "url": "https://github.com/sponsors/ai"
2924
+ }
2925
+ ],
2926
+ "license": "MIT",
2927
+ "dependencies": {
2928
+ "escalade": "^3.2.0",
2929
+ "picocolors": "^1.1.1"
2930
+ },
2931
+ "bin": {
2932
+ "update-browserslist-db": "cli.js"
2933
+ },
2934
+ "peerDependencies": {
2935
+ "browserslist": ">= 4.21.0"
2936
+ }
2937
+ },
2938
+ "node_modules/uri-js": {
2939
+ "version": "4.4.1",
2940
+ "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
2941
+ "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
2942
+ "dev": true,
2943
+ "license": "BSD-2-Clause",
2944
+ "dependencies": {
2945
+ "punycode": "^2.1.0"
2946
+ }
2947
+ },
2948
+ "node_modules/vite": {
2949
+ "version": "8.0.14",
2950
+ "resolved": "https://registry.npmjs.org/vite/-/vite-8.0.14.tgz",
2951
+ "integrity": "sha512-s4BJJ+5y1pYL6Otw51FHhVJQhPnuRinKig64g/1+EUNaJsd3gCKdD31IPFvswUgW9/60QT9oFHbZHbQK5imcxw==",
2952
+ "license": "MIT",
2953
+ "dependencies": {
2954
+ "lightningcss": "^1.32.0",
2955
+ "picomatch": "^4.0.4",
2956
+ "postcss": "^8.5.15",
2957
+ "rolldown": "1.0.2",
2958
+ "tinyglobby": "^0.2.16"
2959
+ },
2960
+ "bin": {
2961
+ "vite": "bin/vite.js"
2962
+ },
2963
+ "engines": {
2964
+ "node": "^20.19.0 || >=22.12.0"
2965
+ },
2966
+ "funding": {
2967
+ "url": "https://github.com/vitejs/vite?sponsor=1"
2968
+ },
2969
+ "optionalDependencies": {
2970
+ "fsevents": "~2.3.3"
2971
+ },
2972
+ "peerDependencies": {
2973
+ "@types/node": "^20.19.0 || >=22.12.0",
2974
+ "@vitejs/devtools": "^0.1.18",
2975
+ "esbuild": "^0.27.0 || ^0.28.0",
2976
+ "jiti": ">=1.21.0",
2977
+ "less": "^4.0.0",
2978
+ "sass": "^1.70.0",
2979
+ "sass-embedded": "^1.70.0",
2980
+ "stylus": ">=0.54.8",
2981
+ "sugarss": "^5.0.0",
2982
+ "terser": "^5.16.0",
2983
+ "tsx": "^4.8.1",
2984
+ "yaml": "^2.4.2"
2985
+ },
2986
+ "peerDependenciesMeta": {
2987
+ "@types/node": {
2988
+ "optional": true
2989
+ },
2990
+ "@vitejs/devtools": {
2991
+ "optional": true
2992
+ },
2993
+ "esbuild": {
2994
+ "optional": true
2995
+ },
2996
+ "jiti": {
2997
+ "optional": true
2998
+ },
2999
+ "less": {
3000
+ "optional": true
3001
+ },
3002
+ "sass": {
3003
+ "optional": true
3004
+ },
3005
+ "sass-embedded": {
3006
+ "optional": true
3007
+ },
3008
+ "stylus": {
3009
+ "optional": true
3010
+ },
3011
+ "sugarss": {
3012
+ "optional": true
3013
+ },
3014
+ "terser": {
3015
+ "optional": true
3016
+ },
3017
+ "tsx": {
3018
+ "optional": true
3019
+ },
3020
+ "yaml": {
3021
+ "optional": true
3022
+ }
3023
+ }
3024
+ },
3025
+ "node_modules/which": {
3026
+ "version": "2.0.2",
3027
+ "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
3028
+ "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
3029
+ "dev": true,
3030
+ "license": "ISC",
3031
+ "dependencies": {
3032
+ "isexe": "^2.0.0"
3033
+ },
3034
+ "bin": {
3035
+ "node-which": "bin/node-which"
3036
+ },
3037
+ "engines": {
3038
+ "node": ">= 8"
3039
+ }
3040
+ },
3041
+ "node_modules/word-wrap": {
3042
+ "version": "1.2.5",
3043
+ "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz",
3044
+ "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==",
3045
+ "dev": true,
3046
+ "license": "MIT",
3047
+ "engines": {
3048
+ "node": ">=0.10.0"
3049
+ }
3050
+ },
3051
+ "node_modules/yallist": {
3052
+ "version": "3.1.1",
3053
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
3054
+ "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
3055
+ "dev": true,
3056
+ "license": "ISC"
3057
+ },
3058
+ "node_modules/yocto-queue": {
3059
+ "version": "0.1.0",
3060
+ "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
3061
+ "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
3062
+ "dev": true,
3063
+ "license": "MIT",
3064
+ "engines": {
3065
+ "node": ">=10"
3066
+ },
3067
+ "funding": {
3068
+ "url": "https://github.com/sponsors/sindresorhus"
3069
+ }
3070
+ },
3071
+ "node_modules/zod": {
3072
+ "version": "4.4.3",
3073
+ "resolved": "https://registry.npmjs.org/zod/-/zod-4.4.3.tgz",
3074
+ "integrity": "sha512-ytENFjIJFl2UwYglde2jchW2Hwm4GJFLDiSXWdTrJQBIN9Fcyp7n4DhxJEiWNAJMV1/BqWfW/kkg71UDcHJyTQ==",
3075
+ "dev": true,
3076
+ "license": "MIT",
3077
+ "funding": {
3078
+ "url": "https://github.com/sponsors/colinhacks"
3079
+ }
3080
+ },
3081
+ "node_modules/zod-validation-error": {
3082
+ "version": "4.0.2",
3083
+ "resolved": "https://registry.npmjs.org/zod-validation-error/-/zod-validation-error-4.0.2.tgz",
3084
+ "integrity": "sha512-Q6/nZLe6jxuU80qb/4uJ4t5v2VEZ44lzQjPDhYJNztRQ4wyWc6VF3D3Kb/fAuPetZQnhS3hnajCf9CsWesghLQ==",
3085
+ "dev": true,
3086
+ "license": "MIT",
3087
+ "engines": {
3088
+ "node": ">=18.0.0"
3089
+ },
3090
+ "peerDependencies": {
3091
+ "zod": "^3.25.0 || ^4.0.0"
3092
+ }
3093
+ }
3094
+ }
3095
+ }