@lensjs/core 1.0.1

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 (84) hide show
  1. package/README.md +1 -0
  2. package/copy-front-build.cjs +16 -0
  3. package/package.json +40 -0
  4. package/src/abstracts/adapter.ts +41 -0
  5. package/src/abstracts/store.ts +36 -0
  6. package/src/context/container.ts +67 -0
  7. package/src/context/context.ts +9 -0
  8. package/src/core/api_controller.ts +116 -0
  9. package/src/core/lens.ts +147 -0
  10. package/src/core/watcher.ts +6 -0
  11. package/src/index.ts +11 -0
  12. package/src/stores/better_sqlite.ts +176 -0
  13. package/src/stores/index.ts +1 -0
  14. package/src/types/index.ts +103 -0
  15. package/src/ui/README.md +69 -0
  16. package/src/ui/bun.lock +750 -0
  17. package/src/ui/eslint.config.js +27 -0
  18. package/src/ui/index.html +13 -0
  19. package/src/ui/package-lock.json +2953 -0
  20. package/src/ui/package.json +40 -0
  21. package/src/ui/public/favicon.ico +0 -0
  22. package/src/ui/src/App.tsx +40 -0
  23. package/src/ui/src/components/DetailPanel.tsx +70 -0
  24. package/src/ui/src/components/JsonViewer.tsx +232 -0
  25. package/src/ui/src/components/LoadMore.tsx +25 -0
  26. package/src/ui/src/components/MethodBadge.tsx +19 -0
  27. package/src/ui/src/components/Modal.tsx +48 -0
  28. package/src/ui/src/components/StatusCode.tsx +20 -0
  29. package/src/ui/src/components/Table.tsx +127 -0
  30. package/src/ui/src/components/layout/DeleteButton.tsx +60 -0
  31. package/src/ui/src/components/layout/Footer.tsx +12 -0
  32. package/src/ui/src/components/layout/Header.tsx +40 -0
  33. package/src/ui/src/components/layout/Layout.tsx +49 -0
  34. package/src/ui/src/components/layout/LoadingScreen.tsx +14 -0
  35. package/src/ui/src/components/layout/Sidebar.tsx +67 -0
  36. package/src/ui/src/components/queryFormatters/MongoViewer.tsx +92 -0
  37. package/src/ui/src/components/queryFormatters/QueryViewer.tsx +18 -0
  38. package/src/ui/src/components/queryFormatters/SqlViewer.tsx +105 -0
  39. package/src/ui/src/components/table/NoData.tsx +26 -0
  40. package/src/ui/src/components/tabs/TabbedDataViewer.tsx +77 -0
  41. package/src/ui/src/containers/queries/QueriesContainer.tsx +21 -0
  42. package/src/ui/src/containers/queries/QueryDetailsContainer.tsx +15 -0
  43. package/src/ui/src/containers/requests/RequestDetailsContainer.tsx +16 -0
  44. package/src/ui/src/containers/requests/RequestsContainer.tsx +22 -0
  45. package/src/ui/src/hooks/useLensApi.ts +92 -0
  46. package/src/ui/src/hooks/useLoadMore.ts +48 -0
  47. package/src/ui/src/hooks/useQueries.ts +58 -0
  48. package/src/ui/src/hooks/useRequests.ts +79 -0
  49. package/src/ui/src/hooks/useTanstackApi.ts +126 -0
  50. package/src/ui/src/index.css +78 -0
  51. package/src/ui/src/interfaces/index.ts +10 -0
  52. package/src/ui/src/main.tsx +33 -0
  53. package/src/ui/src/router/Router.ts +11 -0
  54. package/src/ui/src/router/routes/Loading.tsx +5 -0
  55. package/src/ui/src/router/routes/index.tsx +85 -0
  56. package/src/ui/src/types/index.ts +95 -0
  57. package/src/ui/src/utils/api.ts +7 -0
  58. package/src/ui/src/utils/context.ts +24 -0
  59. package/src/ui/src/utils/date.ts +36 -0
  60. package/src/ui/src/views/queries/QueryDetails.tsx +58 -0
  61. package/src/ui/src/views/queries/QueryTable.tsx +21 -0
  62. package/src/ui/src/views/queries/columns.tsx +83 -0
  63. package/src/ui/src/views/requests/BasicRequestDetails.tsx +82 -0
  64. package/src/ui/src/views/requests/RequestDetails.tsx +70 -0
  65. package/src/ui/src/views/requests/RequetsTable.tsx +19 -0
  66. package/src/ui/src/views/requests/columns.tsx +62 -0
  67. package/src/ui/src/vite-env.d.ts +1 -0
  68. package/src/ui/tsconfig.app.json +27 -0
  69. package/src/ui/tsconfig.json +7 -0
  70. package/src/ui/tsconfig.node.json +25 -0
  71. package/src/ui/vite.config.ts +9 -0
  72. package/src/utils/event_emitter.ts +13 -0
  73. package/src/utils/index.ts +176 -0
  74. package/src/watchers/index.ts +2 -0
  75. package/src/watchers/query_watcher.ts +15 -0
  76. package/src/watchers/request_watcher.ts +27 -0
  77. package/tests/core/lens.test.ts +89 -0
  78. package/tests/stores/better_sqlite.test.ts +168 -0
  79. package/tests/utils/index.test.ts +182 -0
  80. package/tests/watchers/query_watcher.test.ts +35 -0
  81. package/tests/watchers/request_watcher.test.ts +59 -0
  82. package/tsconfig.json +3 -0
  83. package/tsup.config.ts +15 -0
  84. package/vitest.config.ts +9 -0
@@ -0,0 +1,2953 @@
1
+ {
2
+ "name": "ui",
3
+ "version": "0.0.0",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "ui",
9
+ "version": "0.0.0",
10
+ "dependencies": {
11
+ "@tailwindcss/vite": "^4.1.11",
12
+ "@tanstack/react-query": "^5.85.0",
13
+ "dayjs": "^1.11.13",
14
+ "js-beautify": "^1.15.4",
15
+ "lucide-react": "^0.541.0",
16
+ "react": "^19.1.1",
17
+ "react-dom": "^19.1.1",
18
+ "react-router-dom": "^7.8.0",
19
+ "tailwindcss": "^4.1.11"
20
+ },
21
+ "devDependencies": {
22
+ "@eslint/js": "^9.32.0",
23
+ "@tanstack/eslint-plugin-query": "^5.83.1",
24
+ "@types/js-beautify": "^1.14.3",
25
+ "@types/react": "^19.1.9",
26
+ "@types/react-dom": "^19.1.7",
27
+ "@vitejs/plugin-react-swc": "^3.11.0",
28
+ "cross-env": "^10.0.0",
29
+ "eslint": "^9.32.0",
30
+ "eslint-plugin-react-hooks": "^5.2.0",
31
+ "eslint-plugin-react-refresh": "^0.4.20",
32
+ "globals": "^16.3.0",
33
+ "sass-embedded": "^1.90.0",
34
+ "typescript": "~5.8.3",
35
+ "typescript-eslint": "^8.39.0",
36
+ "vite": "^7.1.0"
37
+ }
38
+ },
39
+ "node_modules/@ampproject/remapping": {
40
+ "version": "2.3.0",
41
+ "license": "Apache-2.0",
42
+ "dependencies": {
43
+ "@jridgewell/gen-mapping": "^0.3.5",
44
+ "@jridgewell/trace-mapping": "^0.3.24"
45
+ },
46
+ "engines": {
47
+ "node": ">=6.0.0"
48
+ }
49
+ },
50
+ "node_modules/@bufbuild/protobuf": {
51
+ "version": "2.6.3",
52
+ "devOptional": true,
53
+ "license": "(Apache-2.0 AND BSD-3-Clause)"
54
+ },
55
+ "node_modules/@epic-web/invariant": {
56
+ "version": "1.0.0",
57
+ "dev": true,
58
+ "license": "MIT"
59
+ },
60
+ "node_modules/@esbuild/linux-x64": {
61
+ "version": "0.25.8",
62
+ "cpu": [
63
+ "x64"
64
+ ],
65
+ "license": "MIT",
66
+ "optional": true,
67
+ "os": [
68
+ "linux"
69
+ ],
70
+ "engines": {
71
+ "node": ">=18"
72
+ }
73
+ },
74
+ "node_modules/@eslint-community/eslint-utils": {
75
+ "version": "4.7.0",
76
+ "dev": true,
77
+ "license": "MIT",
78
+ "dependencies": {
79
+ "eslint-visitor-keys": "^3.4.3"
80
+ },
81
+ "engines": {
82
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
83
+ },
84
+ "funding": {
85
+ "url": "https://opencollective.com/eslint"
86
+ },
87
+ "peerDependencies": {
88
+ "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
89
+ }
90
+ },
91
+ "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": {
92
+ "version": "3.4.3",
93
+ "dev": true,
94
+ "license": "Apache-2.0",
95
+ "engines": {
96
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
97
+ },
98
+ "funding": {
99
+ "url": "https://opencollective.com/eslint"
100
+ }
101
+ },
102
+ "node_modules/@eslint-community/regexpp": {
103
+ "version": "4.12.1",
104
+ "dev": true,
105
+ "license": "MIT",
106
+ "engines": {
107
+ "node": "^12.0.0 || ^14.0.0 || >=16.0.0"
108
+ }
109
+ },
110
+ "node_modules/@eslint/config-array": {
111
+ "version": "0.21.0",
112
+ "dev": true,
113
+ "license": "Apache-2.0",
114
+ "dependencies": {
115
+ "@eslint/object-schema": "^2.1.6",
116
+ "debug": "^4.3.1",
117
+ "minimatch": "^3.1.2"
118
+ },
119
+ "engines": {
120
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
121
+ }
122
+ },
123
+ "node_modules/@eslint/config-helpers": {
124
+ "version": "0.3.1",
125
+ "dev": true,
126
+ "license": "Apache-2.0",
127
+ "engines": {
128
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
129
+ }
130
+ },
131
+ "node_modules/@eslint/core": {
132
+ "version": "0.15.2",
133
+ "dev": true,
134
+ "license": "Apache-2.0",
135
+ "dependencies": {
136
+ "@types/json-schema": "^7.0.15"
137
+ },
138
+ "engines": {
139
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
140
+ }
141
+ },
142
+ "node_modules/@eslint/eslintrc": {
143
+ "version": "3.3.1",
144
+ "dev": true,
145
+ "license": "MIT",
146
+ "dependencies": {
147
+ "ajv": "^6.12.4",
148
+ "debug": "^4.3.2",
149
+ "espree": "^10.0.1",
150
+ "globals": "^14.0.0",
151
+ "ignore": "^5.2.0",
152
+ "import-fresh": "^3.2.1",
153
+ "js-yaml": "^4.1.0",
154
+ "minimatch": "^3.1.2",
155
+ "strip-json-comments": "^3.1.1"
156
+ },
157
+ "engines": {
158
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
159
+ },
160
+ "funding": {
161
+ "url": "https://opencollective.com/eslint"
162
+ }
163
+ },
164
+ "node_modules/@eslint/eslintrc/node_modules/globals": {
165
+ "version": "14.0.0",
166
+ "dev": true,
167
+ "license": "MIT",
168
+ "engines": {
169
+ "node": ">=18"
170
+ },
171
+ "funding": {
172
+ "url": "https://github.com/sponsors/sindresorhus"
173
+ }
174
+ },
175
+ "node_modules/@eslint/js": {
176
+ "version": "9.33.0",
177
+ "dev": true,
178
+ "license": "MIT",
179
+ "engines": {
180
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
181
+ },
182
+ "funding": {
183
+ "url": "https://eslint.org/donate"
184
+ }
185
+ },
186
+ "node_modules/@eslint/object-schema": {
187
+ "version": "2.1.6",
188
+ "dev": true,
189
+ "license": "Apache-2.0",
190
+ "engines": {
191
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
192
+ }
193
+ },
194
+ "node_modules/@eslint/plugin-kit": {
195
+ "version": "0.3.5",
196
+ "dev": true,
197
+ "license": "Apache-2.0",
198
+ "dependencies": {
199
+ "@eslint/core": "^0.15.2",
200
+ "levn": "^0.4.1"
201
+ },
202
+ "engines": {
203
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
204
+ }
205
+ },
206
+ "node_modules/@humanfs/core": {
207
+ "version": "0.19.1",
208
+ "dev": true,
209
+ "license": "Apache-2.0",
210
+ "engines": {
211
+ "node": ">=18.18.0"
212
+ }
213
+ },
214
+ "node_modules/@humanfs/node": {
215
+ "version": "0.16.6",
216
+ "dev": true,
217
+ "license": "Apache-2.0",
218
+ "dependencies": {
219
+ "@humanfs/core": "^0.19.1",
220
+ "@humanwhocodes/retry": "^0.3.0"
221
+ },
222
+ "engines": {
223
+ "node": ">=18.18.0"
224
+ }
225
+ },
226
+ "node_modules/@humanfs/node/node_modules/@humanwhocodes/retry": {
227
+ "version": "0.3.1",
228
+ "dev": true,
229
+ "license": "Apache-2.0",
230
+ "engines": {
231
+ "node": ">=18.18"
232
+ },
233
+ "funding": {
234
+ "type": "github",
235
+ "url": "https://github.com/sponsors/nzakas"
236
+ }
237
+ },
238
+ "node_modules/@humanwhocodes/module-importer": {
239
+ "version": "1.0.1",
240
+ "dev": true,
241
+ "license": "Apache-2.0",
242
+ "engines": {
243
+ "node": ">=12.22"
244
+ },
245
+ "funding": {
246
+ "type": "github",
247
+ "url": "https://github.com/sponsors/nzakas"
248
+ }
249
+ },
250
+ "node_modules/@humanwhocodes/retry": {
251
+ "version": "0.4.3",
252
+ "dev": true,
253
+ "license": "Apache-2.0",
254
+ "engines": {
255
+ "node": ">=18.18"
256
+ },
257
+ "funding": {
258
+ "type": "github",
259
+ "url": "https://github.com/sponsors/nzakas"
260
+ }
261
+ },
262
+ "node_modules/@isaacs/cliui": {
263
+ "version": "8.0.2",
264
+ "license": "ISC",
265
+ "dependencies": {
266
+ "string-width": "^5.1.2",
267
+ "string-width-cjs": "npm:string-width@^4.2.0",
268
+ "strip-ansi": "^7.0.1",
269
+ "strip-ansi-cjs": "npm:strip-ansi@^6.0.1",
270
+ "wrap-ansi": "^8.1.0",
271
+ "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0"
272
+ },
273
+ "engines": {
274
+ "node": ">=12"
275
+ }
276
+ },
277
+ "node_modules/@isaacs/fs-minipass": {
278
+ "version": "4.0.1",
279
+ "license": "ISC",
280
+ "dependencies": {
281
+ "minipass": "^7.0.4"
282
+ },
283
+ "engines": {
284
+ "node": ">=18.0.0"
285
+ }
286
+ },
287
+ "node_modules/@jridgewell/gen-mapping": {
288
+ "version": "0.3.12",
289
+ "license": "MIT",
290
+ "dependencies": {
291
+ "@jridgewell/sourcemap-codec": "^1.5.0",
292
+ "@jridgewell/trace-mapping": "^0.3.24"
293
+ }
294
+ },
295
+ "node_modules/@jridgewell/resolve-uri": {
296
+ "version": "3.1.2",
297
+ "license": "MIT",
298
+ "engines": {
299
+ "node": ">=6.0.0"
300
+ }
301
+ },
302
+ "node_modules/@jridgewell/sourcemap-codec": {
303
+ "version": "1.5.4",
304
+ "license": "MIT"
305
+ },
306
+ "node_modules/@jridgewell/trace-mapping": {
307
+ "version": "0.3.29",
308
+ "license": "MIT",
309
+ "dependencies": {
310
+ "@jridgewell/resolve-uri": "^3.1.0",
311
+ "@jridgewell/sourcemap-codec": "^1.4.14"
312
+ }
313
+ },
314
+ "node_modules/@nodelib/fs.scandir": {
315
+ "version": "2.1.5",
316
+ "dev": true,
317
+ "license": "MIT",
318
+ "dependencies": {
319
+ "@nodelib/fs.stat": "2.0.5",
320
+ "run-parallel": "^1.1.9"
321
+ },
322
+ "engines": {
323
+ "node": ">= 8"
324
+ }
325
+ },
326
+ "node_modules/@nodelib/fs.stat": {
327
+ "version": "2.0.5",
328
+ "dev": true,
329
+ "license": "MIT",
330
+ "engines": {
331
+ "node": ">= 8"
332
+ }
333
+ },
334
+ "node_modules/@nodelib/fs.walk": {
335
+ "version": "1.2.8",
336
+ "dev": true,
337
+ "license": "MIT",
338
+ "dependencies": {
339
+ "@nodelib/fs.scandir": "2.1.5",
340
+ "fastq": "^1.6.0"
341
+ },
342
+ "engines": {
343
+ "node": ">= 8"
344
+ }
345
+ },
346
+ "node_modules/@one-ini/wasm": {
347
+ "version": "0.1.1",
348
+ "license": "MIT"
349
+ },
350
+ "node_modules/@parcel/watcher": {
351
+ "version": "2.5.1",
352
+ "hasInstallScript": true,
353
+ "license": "MIT",
354
+ "optional": true,
355
+ "peer": true,
356
+ "dependencies": {
357
+ "detect-libc": "^1.0.3",
358
+ "is-glob": "^4.0.3",
359
+ "micromatch": "^4.0.5",
360
+ "node-addon-api": "^7.0.0"
361
+ },
362
+ "engines": {
363
+ "node": ">= 10.0.0"
364
+ },
365
+ "funding": {
366
+ "type": "opencollective",
367
+ "url": "https://opencollective.com/parcel"
368
+ },
369
+ "optionalDependencies": {
370
+ "@parcel/watcher-android-arm64": "2.5.1",
371
+ "@parcel/watcher-darwin-arm64": "2.5.1",
372
+ "@parcel/watcher-darwin-x64": "2.5.1",
373
+ "@parcel/watcher-freebsd-x64": "2.5.1",
374
+ "@parcel/watcher-linux-arm-glibc": "2.5.1",
375
+ "@parcel/watcher-linux-arm-musl": "2.5.1",
376
+ "@parcel/watcher-linux-arm64-glibc": "2.5.1",
377
+ "@parcel/watcher-linux-arm64-musl": "2.5.1",
378
+ "@parcel/watcher-linux-x64-glibc": "2.5.1",
379
+ "@parcel/watcher-linux-x64-musl": "2.5.1",
380
+ "@parcel/watcher-win32-arm64": "2.5.1",
381
+ "@parcel/watcher-win32-ia32": "2.5.1",
382
+ "@parcel/watcher-win32-x64": "2.5.1"
383
+ }
384
+ },
385
+ "node_modules/@parcel/watcher-linux-x64-glibc": {
386
+ "version": "2.5.1",
387
+ "cpu": [
388
+ "x64"
389
+ ],
390
+ "license": "MIT",
391
+ "optional": true,
392
+ "os": [
393
+ "linux"
394
+ ],
395
+ "peer": true,
396
+ "engines": {
397
+ "node": ">= 10.0.0"
398
+ },
399
+ "funding": {
400
+ "type": "opencollective",
401
+ "url": "https://opencollective.com/parcel"
402
+ }
403
+ },
404
+ "node_modules/@parcel/watcher-linux-x64-musl": {
405
+ "version": "2.5.1",
406
+ "cpu": [
407
+ "x64"
408
+ ],
409
+ "license": "MIT",
410
+ "optional": true,
411
+ "os": [
412
+ "linux"
413
+ ],
414
+ "peer": true,
415
+ "engines": {
416
+ "node": ">= 10.0.0"
417
+ },
418
+ "funding": {
419
+ "type": "opencollective",
420
+ "url": "https://opencollective.com/parcel"
421
+ }
422
+ },
423
+ "node_modules/@parcel/watcher/node_modules/detect-libc": {
424
+ "version": "1.0.3",
425
+ "license": "Apache-2.0",
426
+ "optional": true,
427
+ "peer": true,
428
+ "bin": {
429
+ "detect-libc": "bin/detect-libc.js"
430
+ },
431
+ "engines": {
432
+ "node": ">=0.10"
433
+ }
434
+ },
435
+ "node_modules/@pkgjs/parseargs": {
436
+ "version": "0.11.0",
437
+ "license": "MIT",
438
+ "optional": true,
439
+ "engines": {
440
+ "node": ">=14"
441
+ }
442
+ },
443
+ "node_modules/@rolldown/pluginutils": {
444
+ "version": "1.0.0-beta.27",
445
+ "dev": true,
446
+ "license": "MIT"
447
+ },
448
+ "node_modules/@rollup/rollup-linux-x64-gnu": {
449
+ "version": "4.46.2",
450
+ "cpu": [
451
+ "x64"
452
+ ],
453
+ "license": "MIT",
454
+ "optional": true,
455
+ "os": [
456
+ "linux"
457
+ ]
458
+ },
459
+ "node_modules/@rollup/rollup-linux-x64-musl": {
460
+ "version": "4.46.2",
461
+ "cpu": [
462
+ "x64"
463
+ ],
464
+ "license": "MIT",
465
+ "optional": true,
466
+ "os": [
467
+ "linux"
468
+ ]
469
+ },
470
+ "node_modules/@swc/core": {
471
+ "version": "1.13.3",
472
+ "dev": true,
473
+ "hasInstallScript": true,
474
+ "license": "Apache-2.0",
475
+ "dependencies": {
476
+ "@swc/counter": "^0.1.3",
477
+ "@swc/types": "^0.1.23"
478
+ },
479
+ "engines": {
480
+ "node": ">=10"
481
+ },
482
+ "funding": {
483
+ "type": "opencollective",
484
+ "url": "https://opencollective.com/swc"
485
+ },
486
+ "optionalDependencies": {
487
+ "@swc/core-darwin-arm64": "1.13.3",
488
+ "@swc/core-darwin-x64": "1.13.3",
489
+ "@swc/core-linux-arm-gnueabihf": "1.13.3",
490
+ "@swc/core-linux-arm64-gnu": "1.13.3",
491
+ "@swc/core-linux-arm64-musl": "1.13.3",
492
+ "@swc/core-linux-x64-gnu": "1.13.3",
493
+ "@swc/core-linux-x64-musl": "1.13.3",
494
+ "@swc/core-win32-arm64-msvc": "1.13.3",
495
+ "@swc/core-win32-ia32-msvc": "1.13.3",
496
+ "@swc/core-win32-x64-msvc": "1.13.3"
497
+ },
498
+ "peerDependencies": {
499
+ "@swc/helpers": ">=0.5.17"
500
+ },
501
+ "peerDependenciesMeta": {
502
+ "@swc/helpers": {
503
+ "optional": true
504
+ }
505
+ }
506
+ },
507
+ "node_modules/@swc/core-linux-x64-gnu": {
508
+ "version": "1.13.3",
509
+ "cpu": [
510
+ "x64"
511
+ ],
512
+ "dev": true,
513
+ "license": "Apache-2.0 AND MIT",
514
+ "optional": true,
515
+ "os": [
516
+ "linux"
517
+ ],
518
+ "engines": {
519
+ "node": ">=10"
520
+ }
521
+ },
522
+ "node_modules/@swc/core-linux-x64-musl": {
523
+ "version": "1.13.3",
524
+ "cpu": [
525
+ "x64"
526
+ ],
527
+ "dev": true,
528
+ "license": "Apache-2.0 AND MIT",
529
+ "optional": true,
530
+ "os": [
531
+ "linux"
532
+ ],
533
+ "engines": {
534
+ "node": ">=10"
535
+ }
536
+ },
537
+ "node_modules/@swc/counter": {
538
+ "version": "0.1.3",
539
+ "dev": true,
540
+ "license": "Apache-2.0"
541
+ },
542
+ "node_modules/@swc/types": {
543
+ "version": "0.1.24",
544
+ "dev": true,
545
+ "license": "Apache-2.0",
546
+ "dependencies": {
547
+ "@swc/counter": "^0.1.3"
548
+ }
549
+ },
550
+ "node_modules/@tailwindcss/node": {
551
+ "version": "4.1.11",
552
+ "license": "MIT",
553
+ "dependencies": {
554
+ "@ampproject/remapping": "^2.3.0",
555
+ "enhanced-resolve": "^5.18.1",
556
+ "jiti": "^2.4.2",
557
+ "lightningcss": "1.30.1",
558
+ "magic-string": "^0.30.17",
559
+ "source-map-js": "^1.2.1",
560
+ "tailwindcss": "4.1.11"
561
+ }
562
+ },
563
+ "node_modules/@tailwindcss/oxide": {
564
+ "version": "4.1.11",
565
+ "hasInstallScript": true,
566
+ "license": "MIT",
567
+ "dependencies": {
568
+ "detect-libc": "^2.0.4",
569
+ "tar": "^7.4.3"
570
+ },
571
+ "engines": {
572
+ "node": ">= 10"
573
+ },
574
+ "optionalDependencies": {
575
+ "@tailwindcss/oxide-android-arm64": "4.1.11",
576
+ "@tailwindcss/oxide-darwin-arm64": "4.1.11",
577
+ "@tailwindcss/oxide-darwin-x64": "4.1.11",
578
+ "@tailwindcss/oxide-freebsd-x64": "4.1.11",
579
+ "@tailwindcss/oxide-linux-arm-gnueabihf": "4.1.11",
580
+ "@tailwindcss/oxide-linux-arm64-gnu": "4.1.11",
581
+ "@tailwindcss/oxide-linux-arm64-musl": "4.1.11",
582
+ "@tailwindcss/oxide-linux-x64-gnu": "4.1.11",
583
+ "@tailwindcss/oxide-linux-x64-musl": "4.1.11",
584
+ "@tailwindcss/oxide-wasm32-wasi": "4.1.11",
585
+ "@tailwindcss/oxide-win32-arm64-msvc": "4.1.11",
586
+ "@tailwindcss/oxide-win32-x64-msvc": "4.1.11"
587
+ }
588
+ },
589
+ "node_modules/@tailwindcss/oxide-linux-x64-gnu": {
590
+ "version": "4.1.11",
591
+ "cpu": [
592
+ "x64"
593
+ ],
594
+ "license": "MIT",
595
+ "optional": true,
596
+ "os": [
597
+ "linux"
598
+ ],
599
+ "engines": {
600
+ "node": ">= 10"
601
+ }
602
+ },
603
+ "node_modules/@tailwindcss/oxide-linux-x64-musl": {
604
+ "version": "4.1.11",
605
+ "cpu": [
606
+ "x64"
607
+ ],
608
+ "license": "MIT",
609
+ "optional": true,
610
+ "os": [
611
+ "linux"
612
+ ],
613
+ "engines": {
614
+ "node": ">= 10"
615
+ }
616
+ },
617
+ "node_modules/@tailwindcss/vite": {
618
+ "version": "4.1.11",
619
+ "license": "MIT",
620
+ "dependencies": {
621
+ "@tailwindcss/node": "4.1.11",
622
+ "@tailwindcss/oxide": "4.1.11",
623
+ "tailwindcss": "4.1.11"
624
+ },
625
+ "peerDependencies": {
626
+ "vite": "^5.2.0 || ^6 || ^7"
627
+ }
628
+ },
629
+ "node_modules/@tanstack/eslint-plugin-query": {
630
+ "version": "5.83.1",
631
+ "dev": true,
632
+ "license": "MIT",
633
+ "dependencies": {
634
+ "@typescript-eslint/utils": "^8.37.0"
635
+ },
636
+ "funding": {
637
+ "type": "github",
638
+ "url": "https://github.com/sponsors/tannerlinsley"
639
+ },
640
+ "peerDependencies": {
641
+ "eslint": "^8.57.0 || ^9.0.0"
642
+ }
643
+ },
644
+ "node_modules/@tanstack/query-core": {
645
+ "version": "5.83.1",
646
+ "license": "MIT",
647
+ "funding": {
648
+ "type": "github",
649
+ "url": "https://github.com/sponsors/tannerlinsley"
650
+ }
651
+ },
652
+ "node_modules/@tanstack/react-query": {
653
+ "version": "5.85.0",
654
+ "license": "MIT",
655
+ "dependencies": {
656
+ "@tanstack/query-core": "5.83.1"
657
+ },
658
+ "funding": {
659
+ "type": "github",
660
+ "url": "https://github.com/sponsors/tannerlinsley"
661
+ },
662
+ "peerDependencies": {
663
+ "react": "^18 || ^19"
664
+ }
665
+ },
666
+ "node_modules/@types/estree": {
667
+ "version": "1.0.8",
668
+ "license": "MIT"
669
+ },
670
+ "node_modules/@types/js-beautify": {
671
+ "version": "1.14.3",
672
+ "dev": true,
673
+ "license": "MIT"
674
+ },
675
+ "node_modules/@types/json-schema": {
676
+ "version": "7.0.15",
677
+ "dev": true,
678
+ "license": "MIT"
679
+ },
680
+ "node_modules/@types/react": {
681
+ "version": "19.1.9",
682
+ "dev": true,
683
+ "license": "MIT",
684
+ "dependencies": {
685
+ "csstype": "^3.0.2"
686
+ }
687
+ },
688
+ "node_modules/@types/react-dom": {
689
+ "version": "19.1.7",
690
+ "dev": true,
691
+ "license": "MIT",
692
+ "peerDependencies": {
693
+ "@types/react": "^19.0.0"
694
+ }
695
+ },
696
+ "node_modules/@typescript-eslint/eslint-plugin": {
697
+ "version": "8.39.0",
698
+ "dev": true,
699
+ "license": "MIT",
700
+ "dependencies": {
701
+ "@eslint-community/regexpp": "^4.10.0",
702
+ "@typescript-eslint/scope-manager": "8.39.0",
703
+ "@typescript-eslint/type-utils": "8.39.0",
704
+ "@typescript-eslint/utils": "8.39.0",
705
+ "@typescript-eslint/visitor-keys": "8.39.0",
706
+ "graphemer": "^1.4.0",
707
+ "ignore": "^7.0.0",
708
+ "natural-compare": "^1.4.0",
709
+ "ts-api-utils": "^2.1.0"
710
+ },
711
+ "engines": {
712
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
713
+ },
714
+ "funding": {
715
+ "type": "opencollective",
716
+ "url": "https://opencollective.com/typescript-eslint"
717
+ },
718
+ "peerDependencies": {
719
+ "@typescript-eslint/parser": "^8.39.0",
720
+ "eslint": "^8.57.0 || ^9.0.0",
721
+ "typescript": ">=4.8.4 <6.0.0"
722
+ }
723
+ },
724
+ "node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": {
725
+ "version": "7.0.5",
726
+ "dev": true,
727
+ "license": "MIT",
728
+ "engines": {
729
+ "node": ">= 4"
730
+ }
731
+ },
732
+ "node_modules/@typescript-eslint/parser": {
733
+ "version": "8.39.0",
734
+ "dev": true,
735
+ "license": "MIT",
736
+ "dependencies": {
737
+ "@typescript-eslint/scope-manager": "8.39.0",
738
+ "@typescript-eslint/types": "8.39.0",
739
+ "@typescript-eslint/typescript-estree": "8.39.0",
740
+ "@typescript-eslint/visitor-keys": "8.39.0",
741
+ "debug": "^4.3.4"
742
+ },
743
+ "engines": {
744
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
745
+ },
746
+ "funding": {
747
+ "type": "opencollective",
748
+ "url": "https://opencollective.com/typescript-eslint"
749
+ },
750
+ "peerDependencies": {
751
+ "eslint": "^8.57.0 || ^9.0.0",
752
+ "typescript": ">=4.8.4 <6.0.0"
753
+ }
754
+ },
755
+ "node_modules/@typescript-eslint/project-service": {
756
+ "version": "8.39.0",
757
+ "dev": true,
758
+ "license": "MIT",
759
+ "dependencies": {
760
+ "@typescript-eslint/tsconfig-utils": "^8.39.0",
761
+ "@typescript-eslint/types": "^8.39.0",
762
+ "debug": "^4.3.4"
763
+ },
764
+ "engines": {
765
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
766
+ },
767
+ "funding": {
768
+ "type": "opencollective",
769
+ "url": "https://opencollective.com/typescript-eslint"
770
+ },
771
+ "peerDependencies": {
772
+ "typescript": ">=4.8.4 <6.0.0"
773
+ }
774
+ },
775
+ "node_modules/@typescript-eslint/scope-manager": {
776
+ "version": "8.39.0",
777
+ "dev": true,
778
+ "license": "MIT",
779
+ "dependencies": {
780
+ "@typescript-eslint/types": "8.39.0",
781
+ "@typescript-eslint/visitor-keys": "8.39.0"
782
+ },
783
+ "engines": {
784
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
785
+ },
786
+ "funding": {
787
+ "type": "opencollective",
788
+ "url": "https://opencollective.com/typescript-eslint"
789
+ }
790
+ },
791
+ "node_modules/@typescript-eslint/tsconfig-utils": {
792
+ "version": "8.39.0",
793
+ "dev": true,
794
+ "license": "MIT",
795
+ "engines": {
796
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
797
+ },
798
+ "funding": {
799
+ "type": "opencollective",
800
+ "url": "https://opencollective.com/typescript-eslint"
801
+ },
802
+ "peerDependencies": {
803
+ "typescript": ">=4.8.4 <6.0.0"
804
+ }
805
+ },
806
+ "node_modules/@typescript-eslint/type-utils": {
807
+ "version": "8.39.0",
808
+ "dev": true,
809
+ "license": "MIT",
810
+ "dependencies": {
811
+ "@typescript-eslint/types": "8.39.0",
812
+ "@typescript-eslint/typescript-estree": "8.39.0",
813
+ "@typescript-eslint/utils": "8.39.0",
814
+ "debug": "^4.3.4",
815
+ "ts-api-utils": "^2.1.0"
816
+ },
817
+ "engines": {
818
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
819
+ },
820
+ "funding": {
821
+ "type": "opencollective",
822
+ "url": "https://opencollective.com/typescript-eslint"
823
+ },
824
+ "peerDependencies": {
825
+ "eslint": "^8.57.0 || ^9.0.0",
826
+ "typescript": ">=4.8.4 <6.0.0"
827
+ }
828
+ },
829
+ "node_modules/@typescript-eslint/types": {
830
+ "version": "8.39.0",
831
+ "dev": true,
832
+ "license": "MIT",
833
+ "engines": {
834
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
835
+ },
836
+ "funding": {
837
+ "type": "opencollective",
838
+ "url": "https://opencollective.com/typescript-eslint"
839
+ }
840
+ },
841
+ "node_modules/@typescript-eslint/typescript-estree": {
842
+ "version": "8.39.0",
843
+ "dev": true,
844
+ "license": "MIT",
845
+ "dependencies": {
846
+ "@typescript-eslint/project-service": "8.39.0",
847
+ "@typescript-eslint/tsconfig-utils": "8.39.0",
848
+ "@typescript-eslint/types": "8.39.0",
849
+ "@typescript-eslint/visitor-keys": "8.39.0",
850
+ "debug": "^4.3.4",
851
+ "fast-glob": "^3.3.2",
852
+ "is-glob": "^4.0.3",
853
+ "minimatch": "^9.0.4",
854
+ "semver": "^7.6.0",
855
+ "ts-api-utils": "^2.1.0"
856
+ },
857
+ "engines": {
858
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
859
+ },
860
+ "funding": {
861
+ "type": "opencollective",
862
+ "url": "https://opencollective.com/typescript-eslint"
863
+ },
864
+ "peerDependencies": {
865
+ "typescript": ">=4.8.4 <6.0.0"
866
+ }
867
+ },
868
+ "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": {
869
+ "version": "9.0.5",
870
+ "dev": true,
871
+ "license": "ISC",
872
+ "dependencies": {
873
+ "brace-expansion": "^2.0.1"
874
+ },
875
+ "engines": {
876
+ "node": ">=16 || 14 >=14.17"
877
+ },
878
+ "funding": {
879
+ "url": "https://github.com/sponsors/isaacs"
880
+ }
881
+ },
882
+ "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/node_modules/brace-expansion": {
883
+ "version": "2.0.2",
884
+ "dev": true,
885
+ "license": "MIT",
886
+ "dependencies": {
887
+ "balanced-match": "^1.0.0"
888
+ }
889
+ },
890
+ "node_modules/@typescript-eslint/utils": {
891
+ "version": "8.39.0",
892
+ "dev": true,
893
+ "license": "MIT",
894
+ "dependencies": {
895
+ "@eslint-community/eslint-utils": "^4.7.0",
896
+ "@typescript-eslint/scope-manager": "8.39.0",
897
+ "@typescript-eslint/types": "8.39.0",
898
+ "@typescript-eslint/typescript-estree": "8.39.0"
899
+ },
900
+ "engines": {
901
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
902
+ },
903
+ "funding": {
904
+ "type": "opencollective",
905
+ "url": "https://opencollective.com/typescript-eslint"
906
+ },
907
+ "peerDependencies": {
908
+ "eslint": "^8.57.0 || ^9.0.0",
909
+ "typescript": ">=4.8.4 <6.0.0"
910
+ }
911
+ },
912
+ "node_modules/@typescript-eslint/visitor-keys": {
913
+ "version": "8.39.0",
914
+ "dev": true,
915
+ "license": "MIT",
916
+ "dependencies": {
917
+ "@typescript-eslint/types": "8.39.0",
918
+ "eslint-visitor-keys": "^4.2.1"
919
+ },
920
+ "engines": {
921
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
922
+ },
923
+ "funding": {
924
+ "type": "opencollective",
925
+ "url": "https://opencollective.com/typescript-eslint"
926
+ }
927
+ },
928
+ "node_modules/@vitejs/plugin-react-swc": {
929
+ "version": "3.11.0",
930
+ "dev": true,
931
+ "license": "MIT",
932
+ "dependencies": {
933
+ "@rolldown/pluginutils": "1.0.0-beta.27",
934
+ "@swc/core": "^1.12.11"
935
+ },
936
+ "peerDependencies": {
937
+ "vite": "^4 || ^5 || ^6 || ^7"
938
+ }
939
+ },
940
+ "node_modules/abbrev": {
941
+ "version": "2.0.0",
942
+ "license": "ISC",
943
+ "engines": {
944
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
945
+ }
946
+ },
947
+ "node_modules/acorn": {
948
+ "version": "8.15.0",
949
+ "dev": true,
950
+ "license": "MIT",
951
+ "bin": {
952
+ "acorn": "bin/acorn"
953
+ },
954
+ "engines": {
955
+ "node": ">=0.4.0"
956
+ }
957
+ },
958
+ "node_modules/acorn-jsx": {
959
+ "version": "5.3.2",
960
+ "dev": true,
961
+ "license": "MIT",
962
+ "peerDependencies": {
963
+ "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
964
+ }
965
+ },
966
+ "node_modules/ajv": {
967
+ "version": "6.12.6",
968
+ "dev": true,
969
+ "license": "MIT",
970
+ "dependencies": {
971
+ "fast-deep-equal": "^3.1.1",
972
+ "fast-json-stable-stringify": "^2.0.0",
973
+ "json-schema-traverse": "^0.4.1",
974
+ "uri-js": "^4.2.2"
975
+ },
976
+ "funding": {
977
+ "type": "github",
978
+ "url": "https://github.com/sponsors/epoberezkin"
979
+ }
980
+ },
981
+ "node_modules/ansi-regex": {
982
+ "version": "6.1.0",
983
+ "license": "MIT",
984
+ "engines": {
985
+ "node": ">=12"
986
+ },
987
+ "funding": {
988
+ "url": "https://github.com/chalk/ansi-regex?sponsor=1"
989
+ }
990
+ },
991
+ "node_modules/ansi-styles": {
992
+ "version": "4.3.0",
993
+ "license": "MIT",
994
+ "dependencies": {
995
+ "color-convert": "^2.0.1"
996
+ },
997
+ "engines": {
998
+ "node": ">=8"
999
+ },
1000
+ "funding": {
1001
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
1002
+ }
1003
+ },
1004
+ "node_modules/argparse": {
1005
+ "version": "2.0.1",
1006
+ "dev": true,
1007
+ "license": "Python-2.0"
1008
+ },
1009
+ "node_modules/balanced-match": {
1010
+ "version": "1.0.2",
1011
+ "license": "MIT"
1012
+ },
1013
+ "node_modules/brace-expansion": {
1014
+ "version": "1.1.12",
1015
+ "dev": true,
1016
+ "license": "MIT",
1017
+ "dependencies": {
1018
+ "balanced-match": "^1.0.0",
1019
+ "concat-map": "0.0.1"
1020
+ }
1021
+ },
1022
+ "node_modules/braces": {
1023
+ "version": "3.0.3",
1024
+ "devOptional": true,
1025
+ "license": "MIT",
1026
+ "dependencies": {
1027
+ "fill-range": "^7.1.1"
1028
+ },
1029
+ "engines": {
1030
+ "node": ">=8"
1031
+ }
1032
+ },
1033
+ "node_modules/buffer-builder": {
1034
+ "version": "0.2.0",
1035
+ "devOptional": true,
1036
+ "license": "MIT/X11"
1037
+ },
1038
+ "node_modules/callsites": {
1039
+ "version": "3.1.0",
1040
+ "dev": true,
1041
+ "license": "MIT",
1042
+ "engines": {
1043
+ "node": ">=6"
1044
+ }
1045
+ },
1046
+ "node_modules/chalk": {
1047
+ "version": "4.1.2",
1048
+ "dev": true,
1049
+ "license": "MIT",
1050
+ "dependencies": {
1051
+ "ansi-styles": "^4.1.0",
1052
+ "supports-color": "^7.1.0"
1053
+ },
1054
+ "engines": {
1055
+ "node": ">=10"
1056
+ },
1057
+ "funding": {
1058
+ "url": "https://github.com/chalk/chalk?sponsor=1"
1059
+ }
1060
+ },
1061
+ "node_modules/chalk/node_modules/supports-color": {
1062
+ "version": "7.2.0",
1063
+ "dev": true,
1064
+ "license": "MIT",
1065
+ "dependencies": {
1066
+ "has-flag": "^4.0.0"
1067
+ },
1068
+ "engines": {
1069
+ "node": ">=8"
1070
+ }
1071
+ },
1072
+ "node_modules/chokidar": {
1073
+ "version": "4.0.3",
1074
+ "license": "MIT",
1075
+ "optional": true,
1076
+ "peer": true,
1077
+ "dependencies": {
1078
+ "readdirp": "^4.0.1"
1079
+ },
1080
+ "engines": {
1081
+ "node": ">= 14.16.0"
1082
+ },
1083
+ "funding": {
1084
+ "url": "https://paulmillr.com/funding/"
1085
+ }
1086
+ },
1087
+ "node_modules/chownr": {
1088
+ "version": "3.0.0",
1089
+ "license": "BlueOak-1.0.0",
1090
+ "engines": {
1091
+ "node": ">=18"
1092
+ }
1093
+ },
1094
+ "node_modules/color-convert": {
1095
+ "version": "2.0.1",
1096
+ "license": "MIT",
1097
+ "dependencies": {
1098
+ "color-name": "~1.1.4"
1099
+ },
1100
+ "engines": {
1101
+ "node": ">=7.0.0"
1102
+ }
1103
+ },
1104
+ "node_modules/color-name": {
1105
+ "version": "1.1.4",
1106
+ "license": "MIT"
1107
+ },
1108
+ "node_modules/colorjs.io": {
1109
+ "version": "0.5.2",
1110
+ "devOptional": true,
1111
+ "license": "MIT"
1112
+ },
1113
+ "node_modules/commander": {
1114
+ "version": "10.0.1",
1115
+ "license": "MIT",
1116
+ "engines": {
1117
+ "node": ">=14"
1118
+ }
1119
+ },
1120
+ "node_modules/concat-map": {
1121
+ "version": "0.0.1",
1122
+ "dev": true,
1123
+ "license": "MIT"
1124
+ },
1125
+ "node_modules/config-chain": {
1126
+ "version": "1.1.13",
1127
+ "license": "MIT",
1128
+ "dependencies": {
1129
+ "ini": "^1.3.4",
1130
+ "proto-list": "~1.2.1"
1131
+ }
1132
+ },
1133
+ "node_modules/cookie": {
1134
+ "version": "1.0.2",
1135
+ "license": "MIT",
1136
+ "engines": {
1137
+ "node": ">=18"
1138
+ }
1139
+ },
1140
+ "node_modules/cross-env": {
1141
+ "version": "10.0.0",
1142
+ "dev": true,
1143
+ "license": "MIT",
1144
+ "dependencies": {
1145
+ "@epic-web/invariant": "^1.0.0",
1146
+ "cross-spawn": "^7.0.6"
1147
+ },
1148
+ "bin": {
1149
+ "cross-env": "dist/bin/cross-env.js",
1150
+ "cross-env-shell": "dist/bin/cross-env-shell.js"
1151
+ },
1152
+ "engines": {
1153
+ "node": ">=20"
1154
+ }
1155
+ },
1156
+ "node_modules/cross-spawn": {
1157
+ "version": "7.0.6",
1158
+ "license": "MIT",
1159
+ "dependencies": {
1160
+ "path-key": "^3.1.0",
1161
+ "shebang-command": "^2.0.0",
1162
+ "which": "^2.0.1"
1163
+ },
1164
+ "engines": {
1165
+ "node": ">= 8"
1166
+ }
1167
+ },
1168
+ "node_modules/csstype": {
1169
+ "version": "3.1.3",
1170
+ "dev": true,
1171
+ "license": "MIT"
1172
+ },
1173
+ "node_modules/dayjs": {
1174
+ "version": "1.11.13",
1175
+ "license": "MIT"
1176
+ },
1177
+ "node_modules/debug": {
1178
+ "version": "4.4.1",
1179
+ "dev": true,
1180
+ "license": "MIT",
1181
+ "dependencies": {
1182
+ "ms": "^2.1.3"
1183
+ },
1184
+ "engines": {
1185
+ "node": ">=6.0"
1186
+ },
1187
+ "peerDependenciesMeta": {
1188
+ "supports-color": {
1189
+ "optional": true
1190
+ }
1191
+ }
1192
+ },
1193
+ "node_modules/deep-is": {
1194
+ "version": "0.1.4",
1195
+ "dev": true,
1196
+ "license": "MIT"
1197
+ },
1198
+ "node_modules/detect-libc": {
1199
+ "version": "2.0.4",
1200
+ "license": "Apache-2.0",
1201
+ "engines": {
1202
+ "node": ">=8"
1203
+ }
1204
+ },
1205
+ "node_modules/eastasianwidth": {
1206
+ "version": "0.2.0",
1207
+ "license": "MIT"
1208
+ },
1209
+ "node_modules/editorconfig": {
1210
+ "version": "1.0.4",
1211
+ "license": "MIT",
1212
+ "dependencies": {
1213
+ "@one-ini/wasm": "0.1.1",
1214
+ "commander": "^10.0.0",
1215
+ "minimatch": "9.0.1",
1216
+ "semver": "^7.5.3"
1217
+ },
1218
+ "bin": {
1219
+ "editorconfig": "bin/editorconfig"
1220
+ },
1221
+ "engines": {
1222
+ "node": ">=14"
1223
+ }
1224
+ },
1225
+ "node_modules/editorconfig/node_modules/minimatch": {
1226
+ "version": "9.0.1",
1227
+ "license": "ISC",
1228
+ "dependencies": {
1229
+ "brace-expansion": "^2.0.1"
1230
+ },
1231
+ "engines": {
1232
+ "node": ">=16 || 14 >=14.17"
1233
+ },
1234
+ "funding": {
1235
+ "url": "https://github.com/sponsors/isaacs"
1236
+ }
1237
+ },
1238
+ "node_modules/editorconfig/node_modules/minimatch/node_modules/brace-expansion": {
1239
+ "version": "2.0.2",
1240
+ "license": "MIT",
1241
+ "dependencies": {
1242
+ "balanced-match": "^1.0.0"
1243
+ }
1244
+ },
1245
+ "node_modules/emoji-regex": {
1246
+ "version": "9.2.2",
1247
+ "license": "MIT"
1248
+ },
1249
+ "node_modules/enhanced-resolve": {
1250
+ "version": "5.18.3",
1251
+ "license": "MIT",
1252
+ "dependencies": {
1253
+ "graceful-fs": "^4.2.4",
1254
+ "tapable": "^2.2.0"
1255
+ },
1256
+ "engines": {
1257
+ "node": ">=10.13.0"
1258
+ }
1259
+ },
1260
+ "node_modules/esbuild": {
1261
+ "version": "0.25.8",
1262
+ "hasInstallScript": true,
1263
+ "license": "MIT",
1264
+ "bin": {
1265
+ "esbuild": "bin/esbuild"
1266
+ },
1267
+ "engines": {
1268
+ "node": ">=18"
1269
+ },
1270
+ "optionalDependencies": {
1271
+ "@esbuild/aix-ppc64": "0.25.8",
1272
+ "@esbuild/android-arm": "0.25.8",
1273
+ "@esbuild/android-arm64": "0.25.8",
1274
+ "@esbuild/android-x64": "0.25.8",
1275
+ "@esbuild/darwin-arm64": "0.25.8",
1276
+ "@esbuild/darwin-x64": "0.25.8",
1277
+ "@esbuild/freebsd-arm64": "0.25.8",
1278
+ "@esbuild/freebsd-x64": "0.25.8",
1279
+ "@esbuild/linux-arm": "0.25.8",
1280
+ "@esbuild/linux-arm64": "0.25.8",
1281
+ "@esbuild/linux-ia32": "0.25.8",
1282
+ "@esbuild/linux-loong64": "0.25.8",
1283
+ "@esbuild/linux-mips64el": "0.25.8",
1284
+ "@esbuild/linux-ppc64": "0.25.8",
1285
+ "@esbuild/linux-riscv64": "0.25.8",
1286
+ "@esbuild/linux-s390x": "0.25.8",
1287
+ "@esbuild/linux-x64": "0.25.8",
1288
+ "@esbuild/netbsd-arm64": "0.25.8",
1289
+ "@esbuild/netbsd-x64": "0.25.8",
1290
+ "@esbuild/openbsd-arm64": "0.25.8",
1291
+ "@esbuild/openbsd-x64": "0.25.8",
1292
+ "@esbuild/openharmony-arm64": "0.25.8",
1293
+ "@esbuild/sunos-x64": "0.25.8",
1294
+ "@esbuild/win32-arm64": "0.25.8",
1295
+ "@esbuild/win32-ia32": "0.25.8",
1296
+ "@esbuild/win32-x64": "0.25.8"
1297
+ }
1298
+ },
1299
+ "node_modules/escape-string-regexp": {
1300
+ "version": "4.0.0",
1301
+ "dev": true,
1302
+ "license": "MIT",
1303
+ "engines": {
1304
+ "node": ">=10"
1305
+ },
1306
+ "funding": {
1307
+ "url": "https://github.com/sponsors/sindresorhus"
1308
+ }
1309
+ },
1310
+ "node_modules/eslint": {
1311
+ "version": "9.33.0",
1312
+ "dev": true,
1313
+ "license": "MIT",
1314
+ "dependencies": {
1315
+ "@eslint-community/eslint-utils": "^4.2.0",
1316
+ "@eslint-community/regexpp": "^4.12.1",
1317
+ "@eslint/config-array": "^0.21.0",
1318
+ "@eslint/config-helpers": "^0.3.1",
1319
+ "@eslint/core": "^0.15.2",
1320
+ "@eslint/eslintrc": "^3.3.1",
1321
+ "@eslint/js": "9.33.0",
1322
+ "@eslint/plugin-kit": "^0.3.5",
1323
+ "@humanfs/node": "^0.16.6",
1324
+ "@humanwhocodes/module-importer": "^1.0.1",
1325
+ "@humanwhocodes/retry": "^0.4.2",
1326
+ "@types/estree": "^1.0.6",
1327
+ "@types/json-schema": "^7.0.15",
1328
+ "ajv": "^6.12.4",
1329
+ "chalk": "^4.0.0",
1330
+ "cross-spawn": "^7.0.6",
1331
+ "debug": "^4.3.2",
1332
+ "escape-string-regexp": "^4.0.0",
1333
+ "eslint-scope": "^8.4.0",
1334
+ "eslint-visitor-keys": "^4.2.1",
1335
+ "espree": "^10.4.0",
1336
+ "esquery": "^1.5.0",
1337
+ "esutils": "^2.0.2",
1338
+ "fast-deep-equal": "^3.1.3",
1339
+ "file-entry-cache": "^8.0.0",
1340
+ "find-up": "^5.0.0",
1341
+ "glob-parent": "^6.0.2",
1342
+ "ignore": "^5.2.0",
1343
+ "imurmurhash": "^0.1.4",
1344
+ "is-glob": "^4.0.0",
1345
+ "json-stable-stringify-without-jsonify": "^1.0.1",
1346
+ "lodash.merge": "^4.6.2",
1347
+ "minimatch": "^3.1.2",
1348
+ "natural-compare": "^1.4.0",
1349
+ "optionator": "^0.9.3"
1350
+ },
1351
+ "bin": {
1352
+ "eslint": "bin/eslint.js"
1353
+ },
1354
+ "engines": {
1355
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1356
+ },
1357
+ "funding": {
1358
+ "url": "https://eslint.org/donate"
1359
+ },
1360
+ "peerDependencies": {
1361
+ "jiti": "*"
1362
+ },
1363
+ "peerDependenciesMeta": {
1364
+ "jiti": {
1365
+ "optional": true
1366
+ }
1367
+ }
1368
+ },
1369
+ "node_modules/eslint-plugin-react-hooks": {
1370
+ "version": "5.2.0",
1371
+ "dev": true,
1372
+ "license": "MIT",
1373
+ "engines": {
1374
+ "node": ">=10"
1375
+ },
1376
+ "peerDependencies": {
1377
+ "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0"
1378
+ }
1379
+ },
1380
+ "node_modules/eslint-plugin-react-refresh": {
1381
+ "version": "0.4.20",
1382
+ "dev": true,
1383
+ "license": "MIT",
1384
+ "peerDependencies": {
1385
+ "eslint": ">=8.40"
1386
+ }
1387
+ },
1388
+ "node_modules/eslint-scope": {
1389
+ "version": "8.4.0",
1390
+ "dev": true,
1391
+ "license": "BSD-2-Clause",
1392
+ "dependencies": {
1393
+ "esrecurse": "^4.3.0",
1394
+ "estraverse": "^5.2.0"
1395
+ },
1396
+ "engines": {
1397
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1398
+ },
1399
+ "funding": {
1400
+ "url": "https://opencollective.com/eslint"
1401
+ }
1402
+ },
1403
+ "node_modules/eslint-visitor-keys": {
1404
+ "version": "4.2.1",
1405
+ "dev": true,
1406
+ "license": "Apache-2.0",
1407
+ "engines": {
1408
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1409
+ },
1410
+ "funding": {
1411
+ "url": "https://opencollective.com/eslint"
1412
+ }
1413
+ },
1414
+ "node_modules/espree": {
1415
+ "version": "10.4.0",
1416
+ "dev": true,
1417
+ "license": "BSD-2-Clause",
1418
+ "dependencies": {
1419
+ "acorn": "^8.15.0",
1420
+ "acorn-jsx": "^5.3.2",
1421
+ "eslint-visitor-keys": "^4.2.1"
1422
+ },
1423
+ "engines": {
1424
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1425
+ },
1426
+ "funding": {
1427
+ "url": "https://opencollective.com/eslint"
1428
+ }
1429
+ },
1430
+ "node_modules/esquery": {
1431
+ "version": "1.6.0",
1432
+ "dev": true,
1433
+ "license": "BSD-3-Clause",
1434
+ "dependencies": {
1435
+ "estraverse": "^5.1.0"
1436
+ },
1437
+ "engines": {
1438
+ "node": ">=0.10"
1439
+ }
1440
+ },
1441
+ "node_modules/esrecurse": {
1442
+ "version": "4.3.0",
1443
+ "dev": true,
1444
+ "license": "BSD-2-Clause",
1445
+ "dependencies": {
1446
+ "estraverse": "^5.2.0"
1447
+ },
1448
+ "engines": {
1449
+ "node": ">=4.0"
1450
+ }
1451
+ },
1452
+ "node_modules/estraverse": {
1453
+ "version": "5.3.0",
1454
+ "dev": true,
1455
+ "license": "BSD-2-Clause",
1456
+ "engines": {
1457
+ "node": ">=4.0"
1458
+ }
1459
+ },
1460
+ "node_modules/esutils": {
1461
+ "version": "2.0.3",
1462
+ "dev": true,
1463
+ "license": "BSD-2-Clause",
1464
+ "engines": {
1465
+ "node": ">=0.10.0"
1466
+ }
1467
+ },
1468
+ "node_modules/fast-deep-equal": {
1469
+ "version": "3.1.3",
1470
+ "dev": true,
1471
+ "license": "MIT"
1472
+ },
1473
+ "node_modules/fast-glob": {
1474
+ "version": "3.3.3",
1475
+ "dev": true,
1476
+ "license": "MIT",
1477
+ "dependencies": {
1478
+ "@nodelib/fs.stat": "^2.0.2",
1479
+ "@nodelib/fs.walk": "^1.2.3",
1480
+ "glob-parent": "^5.1.2",
1481
+ "merge2": "^1.3.0",
1482
+ "micromatch": "^4.0.8"
1483
+ },
1484
+ "engines": {
1485
+ "node": ">=8.6.0"
1486
+ }
1487
+ },
1488
+ "node_modules/fast-glob/node_modules/glob-parent": {
1489
+ "version": "5.1.2",
1490
+ "dev": true,
1491
+ "license": "ISC",
1492
+ "dependencies": {
1493
+ "is-glob": "^4.0.1"
1494
+ },
1495
+ "engines": {
1496
+ "node": ">= 6"
1497
+ }
1498
+ },
1499
+ "node_modules/fast-json-stable-stringify": {
1500
+ "version": "2.1.0",
1501
+ "dev": true,
1502
+ "license": "MIT"
1503
+ },
1504
+ "node_modules/fast-levenshtein": {
1505
+ "version": "2.0.6",
1506
+ "dev": true,
1507
+ "license": "MIT"
1508
+ },
1509
+ "node_modules/fastq": {
1510
+ "version": "1.19.1",
1511
+ "dev": true,
1512
+ "license": "ISC",
1513
+ "dependencies": {
1514
+ "reusify": "^1.0.4"
1515
+ }
1516
+ },
1517
+ "node_modules/fdir": {
1518
+ "version": "6.4.6",
1519
+ "license": "MIT",
1520
+ "peerDependencies": {
1521
+ "picomatch": "^3 || ^4"
1522
+ },
1523
+ "peerDependenciesMeta": {
1524
+ "picomatch": {
1525
+ "optional": true
1526
+ }
1527
+ }
1528
+ },
1529
+ "node_modules/file-entry-cache": {
1530
+ "version": "8.0.0",
1531
+ "dev": true,
1532
+ "license": "MIT",
1533
+ "dependencies": {
1534
+ "flat-cache": "^4.0.0"
1535
+ },
1536
+ "engines": {
1537
+ "node": ">=16.0.0"
1538
+ }
1539
+ },
1540
+ "node_modules/fill-range": {
1541
+ "version": "7.1.1",
1542
+ "devOptional": true,
1543
+ "license": "MIT",
1544
+ "dependencies": {
1545
+ "to-regex-range": "^5.0.1"
1546
+ },
1547
+ "engines": {
1548
+ "node": ">=8"
1549
+ }
1550
+ },
1551
+ "node_modules/find-up": {
1552
+ "version": "5.0.0",
1553
+ "dev": true,
1554
+ "license": "MIT",
1555
+ "dependencies": {
1556
+ "locate-path": "^6.0.0",
1557
+ "path-exists": "^4.0.0"
1558
+ },
1559
+ "engines": {
1560
+ "node": ">=10"
1561
+ },
1562
+ "funding": {
1563
+ "url": "https://github.com/sponsors/sindresorhus"
1564
+ }
1565
+ },
1566
+ "node_modules/flat-cache": {
1567
+ "version": "4.0.1",
1568
+ "dev": true,
1569
+ "license": "MIT",
1570
+ "dependencies": {
1571
+ "flatted": "^3.2.9",
1572
+ "keyv": "^4.5.4"
1573
+ },
1574
+ "engines": {
1575
+ "node": ">=16"
1576
+ }
1577
+ },
1578
+ "node_modules/flatted": {
1579
+ "version": "3.3.3",
1580
+ "dev": true,
1581
+ "license": "ISC"
1582
+ },
1583
+ "node_modules/foreground-child": {
1584
+ "version": "3.3.1",
1585
+ "license": "ISC",
1586
+ "dependencies": {
1587
+ "cross-spawn": "^7.0.6",
1588
+ "signal-exit": "^4.0.1"
1589
+ },
1590
+ "engines": {
1591
+ "node": ">=14"
1592
+ },
1593
+ "funding": {
1594
+ "url": "https://github.com/sponsors/isaacs"
1595
+ }
1596
+ },
1597
+ "node_modules/glob": {
1598
+ "version": "10.4.5",
1599
+ "license": "ISC",
1600
+ "dependencies": {
1601
+ "foreground-child": "^3.1.0",
1602
+ "jackspeak": "^3.1.2",
1603
+ "minimatch": "^9.0.4",
1604
+ "minipass": "^7.1.2",
1605
+ "package-json-from-dist": "^1.0.0",
1606
+ "path-scurry": "^1.11.1"
1607
+ },
1608
+ "bin": {
1609
+ "glob": "dist/esm/bin.mjs"
1610
+ },
1611
+ "funding": {
1612
+ "url": "https://github.com/sponsors/isaacs"
1613
+ }
1614
+ },
1615
+ "node_modules/glob-parent": {
1616
+ "version": "6.0.2",
1617
+ "dev": true,
1618
+ "license": "ISC",
1619
+ "dependencies": {
1620
+ "is-glob": "^4.0.3"
1621
+ },
1622
+ "engines": {
1623
+ "node": ">=10.13.0"
1624
+ }
1625
+ },
1626
+ "node_modules/glob/node_modules/minimatch": {
1627
+ "version": "9.0.5",
1628
+ "license": "ISC",
1629
+ "dependencies": {
1630
+ "brace-expansion": "^2.0.1"
1631
+ },
1632
+ "engines": {
1633
+ "node": ">=16 || 14 >=14.17"
1634
+ },
1635
+ "funding": {
1636
+ "url": "https://github.com/sponsors/isaacs"
1637
+ }
1638
+ },
1639
+ "node_modules/glob/node_modules/minimatch/node_modules/brace-expansion": {
1640
+ "version": "2.0.2",
1641
+ "license": "MIT",
1642
+ "dependencies": {
1643
+ "balanced-match": "^1.0.0"
1644
+ }
1645
+ },
1646
+ "node_modules/globals": {
1647
+ "version": "16.3.0",
1648
+ "dev": true,
1649
+ "license": "MIT",
1650
+ "engines": {
1651
+ "node": ">=18"
1652
+ },
1653
+ "funding": {
1654
+ "url": "https://github.com/sponsors/sindresorhus"
1655
+ }
1656
+ },
1657
+ "node_modules/graceful-fs": {
1658
+ "version": "4.2.11",
1659
+ "license": "ISC"
1660
+ },
1661
+ "node_modules/graphemer": {
1662
+ "version": "1.4.0",
1663
+ "dev": true,
1664
+ "license": "MIT"
1665
+ },
1666
+ "node_modules/has-flag": {
1667
+ "version": "4.0.0",
1668
+ "devOptional": true,
1669
+ "license": "MIT",
1670
+ "engines": {
1671
+ "node": ">=8"
1672
+ }
1673
+ },
1674
+ "node_modules/ignore": {
1675
+ "version": "5.3.2",
1676
+ "dev": true,
1677
+ "license": "MIT",
1678
+ "engines": {
1679
+ "node": ">= 4"
1680
+ }
1681
+ },
1682
+ "node_modules/immutable": {
1683
+ "version": "5.1.3",
1684
+ "devOptional": true,
1685
+ "license": "MIT"
1686
+ },
1687
+ "node_modules/import-fresh": {
1688
+ "version": "3.3.1",
1689
+ "dev": true,
1690
+ "license": "MIT",
1691
+ "dependencies": {
1692
+ "parent-module": "^1.0.0",
1693
+ "resolve-from": "^4.0.0"
1694
+ },
1695
+ "engines": {
1696
+ "node": ">=6"
1697
+ },
1698
+ "funding": {
1699
+ "url": "https://github.com/sponsors/sindresorhus"
1700
+ }
1701
+ },
1702
+ "node_modules/imurmurhash": {
1703
+ "version": "0.1.4",
1704
+ "dev": true,
1705
+ "license": "MIT",
1706
+ "engines": {
1707
+ "node": ">=0.8.19"
1708
+ }
1709
+ },
1710
+ "node_modules/ini": {
1711
+ "version": "1.3.8",
1712
+ "license": "ISC"
1713
+ },
1714
+ "node_modules/is-extglob": {
1715
+ "version": "2.1.1",
1716
+ "devOptional": true,
1717
+ "license": "MIT",
1718
+ "engines": {
1719
+ "node": ">=0.10.0"
1720
+ }
1721
+ },
1722
+ "node_modules/is-fullwidth-code-point": {
1723
+ "version": "3.0.0",
1724
+ "license": "MIT",
1725
+ "engines": {
1726
+ "node": ">=8"
1727
+ }
1728
+ },
1729
+ "node_modules/is-glob": {
1730
+ "version": "4.0.3",
1731
+ "devOptional": true,
1732
+ "license": "MIT",
1733
+ "dependencies": {
1734
+ "is-extglob": "^2.1.1"
1735
+ },
1736
+ "engines": {
1737
+ "node": ">=0.10.0"
1738
+ }
1739
+ },
1740
+ "node_modules/is-number": {
1741
+ "version": "7.0.0",
1742
+ "devOptional": true,
1743
+ "license": "MIT",
1744
+ "engines": {
1745
+ "node": ">=0.12.0"
1746
+ }
1747
+ },
1748
+ "node_modules/isexe": {
1749
+ "version": "2.0.0",
1750
+ "license": "ISC"
1751
+ },
1752
+ "node_modules/jackspeak": {
1753
+ "version": "3.4.3",
1754
+ "license": "BlueOak-1.0.0",
1755
+ "dependencies": {
1756
+ "@isaacs/cliui": "^8.0.2"
1757
+ },
1758
+ "funding": {
1759
+ "url": "https://github.com/sponsors/isaacs"
1760
+ },
1761
+ "optionalDependencies": {
1762
+ "@pkgjs/parseargs": "^0.11.0"
1763
+ }
1764
+ },
1765
+ "node_modules/jiti": {
1766
+ "version": "2.5.1",
1767
+ "license": "MIT",
1768
+ "bin": {
1769
+ "jiti": "lib/jiti-cli.mjs"
1770
+ }
1771
+ },
1772
+ "node_modules/js-beautify": {
1773
+ "version": "1.15.4",
1774
+ "license": "MIT",
1775
+ "dependencies": {
1776
+ "config-chain": "^1.1.13",
1777
+ "editorconfig": "^1.0.4",
1778
+ "glob": "^10.4.2",
1779
+ "js-cookie": "^3.0.5",
1780
+ "nopt": "^7.2.1"
1781
+ },
1782
+ "bin": {
1783
+ "css-beautify": "js/bin/css-beautify.js",
1784
+ "html-beautify": "js/bin/html-beautify.js",
1785
+ "js-beautify": "js/bin/js-beautify.js"
1786
+ },
1787
+ "engines": {
1788
+ "node": ">=14"
1789
+ }
1790
+ },
1791
+ "node_modules/js-cookie": {
1792
+ "version": "3.0.5",
1793
+ "license": "MIT",
1794
+ "engines": {
1795
+ "node": ">=14"
1796
+ }
1797
+ },
1798
+ "node_modules/js-yaml": {
1799
+ "version": "4.1.0",
1800
+ "dev": true,
1801
+ "license": "MIT",
1802
+ "dependencies": {
1803
+ "argparse": "^2.0.1"
1804
+ },
1805
+ "bin": {
1806
+ "js-yaml": "bin/js-yaml.js"
1807
+ }
1808
+ },
1809
+ "node_modules/json-buffer": {
1810
+ "version": "3.0.1",
1811
+ "dev": true,
1812
+ "license": "MIT"
1813
+ },
1814
+ "node_modules/json-schema-traverse": {
1815
+ "version": "0.4.1",
1816
+ "dev": true,
1817
+ "license": "MIT"
1818
+ },
1819
+ "node_modules/json-stable-stringify-without-jsonify": {
1820
+ "version": "1.0.1",
1821
+ "dev": true,
1822
+ "license": "MIT"
1823
+ },
1824
+ "node_modules/keyv": {
1825
+ "version": "4.5.4",
1826
+ "dev": true,
1827
+ "license": "MIT",
1828
+ "dependencies": {
1829
+ "json-buffer": "3.0.1"
1830
+ }
1831
+ },
1832
+ "node_modules/levn": {
1833
+ "version": "0.4.1",
1834
+ "dev": true,
1835
+ "license": "MIT",
1836
+ "dependencies": {
1837
+ "prelude-ls": "^1.2.1",
1838
+ "type-check": "~0.4.0"
1839
+ },
1840
+ "engines": {
1841
+ "node": ">= 0.8.0"
1842
+ }
1843
+ },
1844
+ "node_modules/lightningcss": {
1845
+ "version": "1.30.1",
1846
+ "license": "MPL-2.0",
1847
+ "dependencies": {
1848
+ "detect-libc": "^2.0.3"
1849
+ },
1850
+ "engines": {
1851
+ "node": ">= 12.0.0"
1852
+ },
1853
+ "funding": {
1854
+ "type": "opencollective",
1855
+ "url": "https://opencollective.com/parcel"
1856
+ },
1857
+ "optionalDependencies": {
1858
+ "lightningcss-darwin-arm64": "1.30.1",
1859
+ "lightningcss-darwin-x64": "1.30.1",
1860
+ "lightningcss-freebsd-x64": "1.30.1",
1861
+ "lightningcss-linux-arm-gnueabihf": "1.30.1",
1862
+ "lightningcss-linux-arm64-gnu": "1.30.1",
1863
+ "lightningcss-linux-arm64-musl": "1.30.1",
1864
+ "lightningcss-linux-x64-gnu": "1.30.1",
1865
+ "lightningcss-linux-x64-musl": "1.30.1",
1866
+ "lightningcss-win32-arm64-msvc": "1.30.1",
1867
+ "lightningcss-win32-x64-msvc": "1.30.1"
1868
+ }
1869
+ },
1870
+ "node_modules/lightningcss-linux-x64-gnu": {
1871
+ "version": "1.30.1",
1872
+ "cpu": [
1873
+ "x64"
1874
+ ],
1875
+ "license": "MPL-2.0",
1876
+ "optional": true,
1877
+ "os": [
1878
+ "linux"
1879
+ ],
1880
+ "engines": {
1881
+ "node": ">= 12.0.0"
1882
+ },
1883
+ "funding": {
1884
+ "type": "opencollective",
1885
+ "url": "https://opencollective.com/parcel"
1886
+ }
1887
+ },
1888
+ "node_modules/lightningcss-linux-x64-musl": {
1889
+ "version": "1.30.1",
1890
+ "cpu": [
1891
+ "x64"
1892
+ ],
1893
+ "license": "MPL-2.0",
1894
+ "optional": true,
1895
+ "os": [
1896
+ "linux"
1897
+ ],
1898
+ "engines": {
1899
+ "node": ">= 12.0.0"
1900
+ },
1901
+ "funding": {
1902
+ "type": "opencollective",
1903
+ "url": "https://opencollective.com/parcel"
1904
+ }
1905
+ },
1906
+ "node_modules/locate-path": {
1907
+ "version": "6.0.0",
1908
+ "dev": true,
1909
+ "license": "MIT",
1910
+ "dependencies": {
1911
+ "p-locate": "^5.0.0"
1912
+ },
1913
+ "engines": {
1914
+ "node": ">=10"
1915
+ },
1916
+ "funding": {
1917
+ "url": "https://github.com/sponsors/sindresorhus"
1918
+ }
1919
+ },
1920
+ "node_modules/lodash.merge": {
1921
+ "version": "4.6.2",
1922
+ "dev": true,
1923
+ "license": "MIT"
1924
+ },
1925
+ "node_modules/lru-cache": {
1926
+ "version": "10.4.3",
1927
+ "license": "ISC"
1928
+ },
1929
+ "node_modules/lucide-react": {
1930
+ "version": "0.541.0",
1931
+ "resolved": "https://registry.npmjs.org/lucide-react/-/lucide-react-0.541.0.tgz",
1932
+ "integrity": "sha512-s0Vircsu5WaGv2KoJZ5+SoxiAJ3UXV5KqEM3eIFDHaHkcLIFdIWgXtZ412+Gh02UsdS7Was+jvEpBvPCWQISlg==",
1933
+ "license": "ISC",
1934
+ "peerDependencies": {
1935
+ "react": "^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0"
1936
+ }
1937
+ },
1938
+ "node_modules/magic-string": {
1939
+ "version": "0.30.17",
1940
+ "license": "MIT",
1941
+ "dependencies": {
1942
+ "@jridgewell/sourcemap-codec": "^1.5.0"
1943
+ }
1944
+ },
1945
+ "node_modules/merge2": {
1946
+ "version": "1.4.1",
1947
+ "dev": true,
1948
+ "license": "MIT",
1949
+ "engines": {
1950
+ "node": ">= 8"
1951
+ }
1952
+ },
1953
+ "node_modules/micromatch": {
1954
+ "version": "4.0.8",
1955
+ "devOptional": true,
1956
+ "license": "MIT",
1957
+ "dependencies": {
1958
+ "braces": "^3.0.3",
1959
+ "picomatch": "^2.3.1"
1960
+ },
1961
+ "engines": {
1962
+ "node": ">=8.6"
1963
+ }
1964
+ },
1965
+ "node_modules/micromatch/node_modules/picomatch": {
1966
+ "version": "2.3.1",
1967
+ "devOptional": true,
1968
+ "license": "MIT",
1969
+ "engines": {
1970
+ "node": ">=8.6"
1971
+ },
1972
+ "funding": {
1973
+ "url": "https://github.com/sponsors/jonschlinkert"
1974
+ }
1975
+ },
1976
+ "node_modules/minimatch": {
1977
+ "version": "3.1.2",
1978
+ "dev": true,
1979
+ "license": "ISC",
1980
+ "dependencies": {
1981
+ "brace-expansion": "^1.1.7"
1982
+ },
1983
+ "engines": {
1984
+ "node": "*"
1985
+ }
1986
+ },
1987
+ "node_modules/minipass": {
1988
+ "version": "7.1.2",
1989
+ "license": "ISC",
1990
+ "engines": {
1991
+ "node": ">=16 || 14 >=14.17"
1992
+ }
1993
+ },
1994
+ "node_modules/minizlib": {
1995
+ "version": "3.0.2",
1996
+ "license": "MIT",
1997
+ "dependencies": {
1998
+ "minipass": "^7.1.2"
1999
+ },
2000
+ "engines": {
2001
+ "node": ">= 18"
2002
+ }
2003
+ },
2004
+ "node_modules/mkdirp": {
2005
+ "version": "3.0.1",
2006
+ "license": "MIT",
2007
+ "bin": {
2008
+ "mkdirp": "dist/cjs/src/bin.js"
2009
+ },
2010
+ "engines": {
2011
+ "node": ">=10"
2012
+ },
2013
+ "funding": {
2014
+ "url": "https://github.com/sponsors/isaacs"
2015
+ }
2016
+ },
2017
+ "node_modules/ms": {
2018
+ "version": "2.1.3",
2019
+ "dev": true,
2020
+ "license": "MIT"
2021
+ },
2022
+ "node_modules/nanoid": {
2023
+ "version": "3.3.11",
2024
+ "funding": [
2025
+ {
2026
+ "type": "github",
2027
+ "url": "https://github.com/sponsors/ai"
2028
+ }
2029
+ ],
2030
+ "license": "MIT",
2031
+ "bin": {
2032
+ "nanoid": "bin/nanoid.cjs"
2033
+ },
2034
+ "engines": {
2035
+ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
2036
+ }
2037
+ },
2038
+ "node_modules/natural-compare": {
2039
+ "version": "1.4.0",
2040
+ "dev": true,
2041
+ "license": "MIT"
2042
+ },
2043
+ "node_modules/node-addon-api": {
2044
+ "version": "7.1.1",
2045
+ "license": "MIT",
2046
+ "optional": true,
2047
+ "peer": true
2048
+ },
2049
+ "node_modules/nopt": {
2050
+ "version": "7.2.1",
2051
+ "license": "ISC",
2052
+ "dependencies": {
2053
+ "abbrev": "^2.0.0"
2054
+ },
2055
+ "bin": {
2056
+ "nopt": "bin/nopt.js"
2057
+ },
2058
+ "engines": {
2059
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2060
+ }
2061
+ },
2062
+ "node_modules/optionator": {
2063
+ "version": "0.9.4",
2064
+ "dev": true,
2065
+ "license": "MIT",
2066
+ "dependencies": {
2067
+ "deep-is": "^0.1.3",
2068
+ "fast-levenshtein": "^2.0.6",
2069
+ "levn": "^0.4.1",
2070
+ "prelude-ls": "^1.2.1",
2071
+ "type-check": "^0.4.0",
2072
+ "word-wrap": "^1.2.5"
2073
+ },
2074
+ "engines": {
2075
+ "node": ">= 0.8.0"
2076
+ }
2077
+ },
2078
+ "node_modules/p-limit": {
2079
+ "version": "3.1.0",
2080
+ "dev": true,
2081
+ "license": "MIT",
2082
+ "dependencies": {
2083
+ "yocto-queue": "^0.1.0"
2084
+ },
2085
+ "engines": {
2086
+ "node": ">=10"
2087
+ },
2088
+ "funding": {
2089
+ "url": "https://github.com/sponsors/sindresorhus"
2090
+ }
2091
+ },
2092
+ "node_modules/p-locate": {
2093
+ "version": "5.0.0",
2094
+ "dev": true,
2095
+ "license": "MIT",
2096
+ "dependencies": {
2097
+ "p-limit": "^3.0.2"
2098
+ },
2099
+ "engines": {
2100
+ "node": ">=10"
2101
+ },
2102
+ "funding": {
2103
+ "url": "https://github.com/sponsors/sindresorhus"
2104
+ }
2105
+ },
2106
+ "node_modules/package-json-from-dist": {
2107
+ "version": "1.0.1",
2108
+ "license": "BlueOak-1.0.0"
2109
+ },
2110
+ "node_modules/parent-module": {
2111
+ "version": "1.0.1",
2112
+ "dev": true,
2113
+ "license": "MIT",
2114
+ "dependencies": {
2115
+ "callsites": "^3.0.0"
2116
+ },
2117
+ "engines": {
2118
+ "node": ">=6"
2119
+ }
2120
+ },
2121
+ "node_modules/path-exists": {
2122
+ "version": "4.0.0",
2123
+ "dev": true,
2124
+ "license": "MIT",
2125
+ "engines": {
2126
+ "node": ">=8"
2127
+ }
2128
+ },
2129
+ "node_modules/path-key": {
2130
+ "version": "3.1.1",
2131
+ "license": "MIT",
2132
+ "engines": {
2133
+ "node": ">=8"
2134
+ }
2135
+ },
2136
+ "node_modules/path-scurry": {
2137
+ "version": "1.11.1",
2138
+ "license": "BlueOak-1.0.0",
2139
+ "dependencies": {
2140
+ "lru-cache": "^10.2.0",
2141
+ "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0"
2142
+ },
2143
+ "engines": {
2144
+ "node": ">=16 || 14 >=14.18"
2145
+ },
2146
+ "funding": {
2147
+ "url": "https://github.com/sponsors/isaacs"
2148
+ }
2149
+ },
2150
+ "node_modules/picocolors": {
2151
+ "version": "1.1.1",
2152
+ "license": "ISC"
2153
+ },
2154
+ "node_modules/picomatch": {
2155
+ "version": "4.0.3",
2156
+ "license": "MIT",
2157
+ "engines": {
2158
+ "node": ">=12"
2159
+ },
2160
+ "funding": {
2161
+ "url": "https://github.com/sponsors/jonschlinkert"
2162
+ }
2163
+ },
2164
+ "node_modules/postcss": {
2165
+ "version": "8.5.6",
2166
+ "funding": [
2167
+ {
2168
+ "type": "opencollective",
2169
+ "url": "https://opencollective.com/postcss/"
2170
+ },
2171
+ {
2172
+ "type": "tidelift",
2173
+ "url": "https://tidelift.com/funding/github/npm/postcss"
2174
+ },
2175
+ {
2176
+ "type": "github",
2177
+ "url": "https://github.com/sponsors/ai"
2178
+ }
2179
+ ],
2180
+ "license": "MIT",
2181
+ "dependencies": {
2182
+ "nanoid": "^3.3.11",
2183
+ "picocolors": "^1.1.1",
2184
+ "source-map-js": "^1.2.1"
2185
+ },
2186
+ "engines": {
2187
+ "node": "^10 || ^12 || >=14"
2188
+ }
2189
+ },
2190
+ "node_modules/prelude-ls": {
2191
+ "version": "1.2.1",
2192
+ "dev": true,
2193
+ "license": "MIT",
2194
+ "engines": {
2195
+ "node": ">= 0.8.0"
2196
+ }
2197
+ },
2198
+ "node_modules/proto-list": {
2199
+ "version": "1.2.4",
2200
+ "license": "ISC"
2201
+ },
2202
+ "node_modules/punycode": {
2203
+ "version": "2.3.1",
2204
+ "dev": true,
2205
+ "license": "MIT",
2206
+ "engines": {
2207
+ "node": ">=6"
2208
+ }
2209
+ },
2210
+ "node_modules/queue-microtask": {
2211
+ "version": "1.2.3",
2212
+ "dev": true,
2213
+ "funding": [
2214
+ {
2215
+ "type": "github",
2216
+ "url": "https://github.com/sponsors/feross"
2217
+ },
2218
+ {
2219
+ "type": "patreon",
2220
+ "url": "https://www.patreon.com/feross"
2221
+ },
2222
+ {
2223
+ "type": "consulting",
2224
+ "url": "https://feross.org/support"
2225
+ }
2226
+ ],
2227
+ "license": "MIT"
2228
+ },
2229
+ "node_modules/react": {
2230
+ "version": "19.1.1",
2231
+ "license": "MIT",
2232
+ "engines": {
2233
+ "node": ">=0.10.0"
2234
+ }
2235
+ },
2236
+ "node_modules/react-dom": {
2237
+ "version": "19.1.1",
2238
+ "license": "MIT",
2239
+ "dependencies": {
2240
+ "scheduler": "^0.26.0"
2241
+ },
2242
+ "peerDependencies": {
2243
+ "react": "^19.1.1"
2244
+ }
2245
+ },
2246
+ "node_modules/react-router": {
2247
+ "version": "7.8.0",
2248
+ "license": "MIT",
2249
+ "dependencies": {
2250
+ "cookie": "^1.0.1",
2251
+ "set-cookie-parser": "^2.6.0"
2252
+ },
2253
+ "engines": {
2254
+ "node": ">=20.0.0"
2255
+ },
2256
+ "peerDependencies": {
2257
+ "react": ">=18",
2258
+ "react-dom": ">=18"
2259
+ },
2260
+ "peerDependenciesMeta": {
2261
+ "react-dom": {
2262
+ "optional": true
2263
+ }
2264
+ }
2265
+ },
2266
+ "node_modules/react-router-dom": {
2267
+ "version": "7.8.0",
2268
+ "license": "MIT",
2269
+ "dependencies": {
2270
+ "react-router": "7.8.0"
2271
+ },
2272
+ "engines": {
2273
+ "node": ">=20.0.0"
2274
+ },
2275
+ "peerDependencies": {
2276
+ "react": ">=18",
2277
+ "react-dom": ">=18"
2278
+ }
2279
+ },
2280
+ "node_modules/readdirp": {
2281
+ "version": "4.1.2",
2282
+ "license": "MIT",
2283
+ "optional": true,
2284
+ "peer": true,
2285
+ "engines": {
2286
+ "node": ">= 14.18.0"
2287
+ },
2288
+ "funding": {
2289
+ "type": "individual",
2290
+ "url": "https://paulmillr.com/funding/"
2291
+ }
2292
+ },
2293
+ "node_modules/resolve-from": {
2294
+ "version": "4.0.0",
2295
+ "dev": true,
2296
+ "license": "MIT",
2297
+ "engines": {
2298
+ "node": ">=4"
2299
+ }
2300
+ },
2301
+ "node_modules/reusify": {
2302
+ "version": "1.1.0",
2303
+ "dev": true,
2304
+ "license": "MIT",
2305
+ "engines": {
2306
+ "iojs": ">=1.0.0",
2307
+ "node": ">=0.10.0"
2308
+ }
2309
+ },
2310
+ "node_modules/rollup": {
2311
+ "version": "4.46.2",
2312
+ "license": "MIT",
2313
+ "dependencies": {
2314
+ "@types/estree": "1.0.8"
2315
+ },
2316
+ "bin": {
2317
+ "rollup": "dist/bin/rollup"
2318
+ },
2319
+ "engines": {
2320
+ "node": ">=18.0.0",
2321
+ "npm": ">=8.0.0"
2322
+ },
2323
+ "optionalDependencies": {
2324
+ "@rollup/rollup-android-arm-eabi": "4.46.2",
2325
+ "@rollup/rollup-android-arm64": "4.46.2",
2326
+ "@rollup/rollup-darwin-arm64": "4.46.2",
2327
+ "@rollup/rollup-darwin-x64": "4.46.2",
2328
+ "@rollup/rollup-freebsd-arm64": "4.46.2",
2329
+ "@rollup/rollup-freebsd-x64": "4.46.2",
2330
+ "@rollup/rollup-linux-arm-gnueabihf": "4.46.2",
2331
+ "@rollup/rollup-linux-arm-musleabihf": "4.46.2",
2332
+ "@rollup/rollup-linux-arm64-gnu": "4.46.2",
2333
+ "@rollup/rollup-linux-arm64-musl": "4.46.2",
2334
+ "@rollup/rollup-linux-loongarch64-gnu": "4.46.2",
2335
+ "@rollup/rollup-linux-ppc64-gnu": "4.46.2",
2336
+ "@rollup/rollup-linux-riscv64-gnu": "4.46.2",
2337
+ "@rollup/rollup-linux-riscv64-musl": "4.46.2",
2338
+ "@rollup/rollup-linux-s390x-gnu": "4.46.2",
2339
+ "@rollup/rollup-linux-x64-gnu": "4.46.2",
2340
+ "@rollup/rollup-linux-x64-musl": "4.46.2",
2341
+ "@rollup/rollup-win32-arm64-msvc": "4.46.2",
2342
+ "@rollup/rollup-win32-ia32-msvc": "4.46.2",
2343
+ "@rollup/rollup-win32-x64-msvc": "4.46.2",
2344
+ "fsevents": "~2.3.2"
2345
+ }
2346
+ },
2347
+ "node_modules/run-parallel": {
2348
+ "version": "1.2.0",
2349
+ "dev": true,
2350
+ "funding": [
2351
+ {
2352
+ "type": "github",
2353
+ "url": "https://github.com/sponsors/feross"
2354
+ },
2355
+ {
2356
+ "type": "patreon",
2357
+ "url": "https://www.patreon.com/feross"
2358
+ },
2359
+ {
2360
+ "type": "consulting",
2361
+ "url": "https://feross.org/support"
2362
+ }
2363
+ ],
2364
+ "license": "MIT",
2365
+ "dependencies": {
2366
+ "queue-microtask": "^1.2.2"
2367
+ }
2368
+ },
2369
+ "node_modules/rxjs": {
2370
+ "version": "7.8.2",
2371
+ "devOptional": true,
2372
+ "license": "Apache-2.0",
2373
+ "dependencies": {
2374
+ "tslib": "^2.1.0"
2375
+ }
2376
+ },
2377
+ "node_modules/sass": {
2378
+ "version": "1.90.0",
2379
+ "license": "MIT",
2380
+ "optional": true,
2381
+ "peer": true,
2382
+ "dependencies": {
2383
+ "chokidar": "^4.0.0",
2384
+ "immutable": "^5.0.2",
2385
+ "source-map-js": ">=0.6.2 <2.0.0"
2386
+ },
2387
+ "bin": {
2388
+ "sass": "sass.js"
2389
+ },
2390
+ "engines": {
2391
+ "node": ">=14.0.0"
2392
+ },
2393
+ "optionalDependencies": {
2394
+ "@parcel/watcher": "^2.4.1"
2395
+ }
2396
+ },
2397
+ "node_modules/sass-embedded": {
2398
+ "version": "1.90.0",
2399
+ "devOptional": true,
2400
+ "license": "MIT",
2401
+ "dependencies": {
2402
+ "@bufbuild/protobuf": "^2.5.0",
2403
+ "buffer-builder": "^0.2.0",
2404
+ "colorjs.io": "^0.5.0",
2405
+ "immutable": "^5.0.2",
2406
+ "rxjs": "^7.4.0",
2407
+ "supports-color": "^8.1.1",
2408
+ "sync-child-process": "^1.0.2",
2409
+ "varint": "^6.0.0"
2410
+ },
2411
+ "bin": {
2412
+ "sass": "dist/bin/sass.js"
2413
+ },
2414
+ "engines": {
2415
+ "node": ">=16.0.0"
2416
+ },
2417
+ "optionalDependencies": {
2418
+ "sass-embedded-all-unknown": "1.90.0",
2419
+ "sass-embedded-android-arm": "1.90.0",
2420
+ "sass-embedded-android-arm64": "1.90.0",
2421
+ "sass-embedded-android-riscv64": "1.90.0",
2422
+ "sass-embedded-android-x64": "1.90.0",
2423
+ "sass-embedded-darwin-arm64": "1.90.0",
2424
+ "sass-embedded-darwin-x64": "1.90.0",
2425
+ "sass-embedded-linux-arm": "1.90.0",
2426
+ "sass-embedded-linux-arm64": "1.90.0",
2427
+ "sass-embedded-linux-musl-arm": "1.90.0",
2428
+ "sass-embedded-linux-musl-arm64": "1.90.0",
2429
+ "sass-embedded-linux-musl-riscv64": "1.90.0",
2430
+ "sass-embedded-linux-musl-x64": "1.90.0",
2431
+ "sass-embedded-linux-riscv64": "1.90.0",
2432
+ "sass-embedded-linux-x64": "1.90.0",
2433
+ "sass-embedded-unknown-all": "1.90.0",
2434
+ "sass-embedded-win32-arm64": "1.90.0",
2435
+ "sass-embedded-win32-x64": "1.90.0"
2436
+ }
2437
+ },
2438
+ "node_modules/sass-embedded-linux-musl-x64": {
2439
+ "version": "1.90.0",
2440
+ "cpu": [
2441
+ "x64"
2442
+ ],
2443
+ "license": "MIT",
2444
+ "optional": true,
2445
+ "os": [
2446
+ "linux"
2447
+ ],
2448
+ "engines": {
2449
+ "node": ">=14.0.0"
2450
+ }
2451
+ },
2452
+ "node_modules/sass-embedded-linux-x64": {
2453
+ "version": "1.90.0",
2454
+ "cpu": [
2455
+ "x64"
2456
+ ],
2457
+ "license": "MIT",
2458
+ "optional": true,
2459
+ "os": [
2460
+ "linux"
2461
+ ],
2462
+ "engines": {
2463
+ "node": ">=14.0.0"
2464
+ }
2465
+ },
2466
+ "node_modules/scheduler": {
2467
+ "version": "0.26.0",
2468
+ "license": "MIT"
2469
+ },
2470
+ "node_modules/semver": {
2471
+ "version": "7.7.2",
2472
+ "license": "ISC",
2473
+ "bin": {
2474
+ "semver": "bin/semver.js"
2475
+ },
2476
+ "engines": {
2477
+ "node": ">=10"
2478
+ }
2479
+ },
2480
+ "node_modules/set-cookie-parser": {
2481
+ "version": "2.7.1",
2482
+ "license": "MIT"
2483
+ },
2484
+ "node_modules/shebang-command": {
2485
+ "version": "2.0.0",
2486
+ "license": "MIT",
2487
+ "dependencies": {
2488
+ "shebang-regex": "^3.0.0"
2489
+ },
2490
+ "engines": {
2491
+ "node": ">=8"
2492
+ }
2493
+ },
2494
+ "node_modules/shebang-regex": {
2495
+ "version": "3.0.0",
2496
+ "license": "MIT",
2497
+ "engines": {
2498
+ "node": ">=8"
2499
+ }
2500
+ },
2501
+ "node_modules/signal-exit": {
2502
+ "version": "4.1.0",
2503
+ "license": "ISC",
2504
+ "engines": {
2505
+ "node": ">=14"
2506
+ },
2507
+ "funding": {
2508
+ "url": "https://github.com/sponsors/isaacs"
2509
+ }
2510
+ },
2511
+ "node_modules/source-map-js": {
2512
+ "version": "1.2.1",
2513
+ "license": "BSD-3-Clause",
2514
+ "engines": {
2515
+ "node": ">=0.10.0"
2516
+ }
2517
+ },
2518
+ "node_modules/string-width": {
2519
+ "version": "5.1.2",
2520
+ "license": "MIT",
2521
+ "dependencies": {
2522
+ "eastasianwidth": "^0.2.0",
2523
+ "emoji-regex": "^9.2.2",
2524
+ "strip-ansi": "^7.0.1"
2525
+ },
2526
+ "engines": {
2527
+ "node": ">=12"
2528
+ },
2529
+ "funding": {
2530
+ "url": "https://github.com/sponsors/sindresorhus"
2531
+ }
2532
+ },
2533
+ "node_modules/string-width-cjs": {
2534
+ "name": "string-width",
2535
+ "version": "4.2.3",
2536
+ "license": "MIT",
2537
+ "dependencies": {
2538
+ "emoji-regex": "^8.0.0",
2539
+ "is-fullwidth-code-point": "^3.0.0",
2540
+ "strip-ansi": "^6.0.1"
2541
+ },
2542
+ "engines": {
2543
+ "node": ">=8"
2544
+ }
2545
+ },
2546
+ "node_modules/string-width-cjs/node_modules/emoji-regex": {
2547
+ "version": "8.0.0",
2548
+ "license": "MIT"
2549
+ },
2550
+ "node_modules/string-width-cjs/node_modules/strip-ansi": {
2551
+ "version": "6.0.1",
2552
+ "license": "MIT",
2553
+ "dependencies": {
2554
+ "ansi-regex": "^5.0.1"
2555
+ },
2556
+ "engines": {
2557
+ "node": ">=8"
2558
+ }
2559
+ },
2560
+ "node_modules/string-width-cjs/node_modules/strip-ansi/node_modules/ansi-regex": {
2561
+ "version": "5.0.1",
2562
+ "license": "MIT",
2563
+ "engines": {
2564
+ "node": ">=8"
2565
+ }
2566
+ },
2567
+ "node_modules/strip-ansi": {
2568
+ "version": "7.1.0",
2569
+ "license": "MIT",
2570
+ "dependencies": {
2571
+ "ansi-regex": "^6.0.1"
2572
+ },
2573
+ "engines": {
2574
+ "node": ">=12"
2575
+ },
2576
+ "funding": {
2577
+ "url": "https://github.com/chalk/strip-ansi?sponsor=1"
2578
+ }
2579
+ },
2580
+ "node_modules/strip-ansi-cjs": {
2581
+ "name": "strip-ansi",
2582
+ "version": "6.0.1",
2583
+ "license": "MIT",
2584
+ "dependencies": {
2585
+ "ansi-regex": "^5.0.1"
2586
+ },
2587
+ "engines": {
2588
+ "node": ">=8"
2589
+ }
2590
+ },
2591
+ "node_modules/strip-ansi-cjs/node_modules/ansi-regex": {
2592
+ "version": "5.0.1",
2593
+ "license": "MIT",
2594
+ "engines": {
2595
+ "node": ">=8"
2596
+ }
2597
+ },
2598
+ "node_modules/strip-json-comments": {
2599
+ "version": "3.1.1",
2600
+ "dev": true,
2601
+ "license": "MIT",
2602
+ "engines": {
2603
+ "node": ">=8"
2604
+ },
2605
+ "funding": {
2606
+ "url": "https://github.com/sponsors/sindresorhus"
2607
+ }
2608
+ },
2609
+ "node_modules/supports-color": {
2610
+ "version": "8.1.1",
2611
+ "devOptional": true,
2612
+ "license": "MIT",
2613
+ "dependencies": {
2614
+ "has-flag": "^4.0.0"
2615
+ },
2616
+ "engines": {
2617
+ "node": ">=10"
2618
+ },
2619
+ "funding": {
2620
+ "url": "https://github.com/chalk/supports-color?sponsor=1"
2621
+ }
2622
+ },
2623
+ "node_modules/sync-child-process": {
2624
+ "version": "1.0.2",
2625
+ "devOptional": true,
2626
+ "license": "MIT",
2627
+ "dependencies": {
2628
+ "sync-message-port": "^1.0.0"
2629
+ },
2630
+ "engines": {
2631
+ "node": ">=16.0.0"
2632
+ }
2633
+ },
2634
+ "node_modules/sync-message-port": {
2635
+ "version": "1.1.3",
2636
+ "devOptional": true,
2637
+ "license": "MIT",
2638
+ "engines": {
2639
+ "node": ">=16.0.0"
2640
+ }
2641
+ },
2642
+ "node_modules/tailwindcss": {
2643
+ "version": "4.1.11",
2644
+ "license": "MIT"
2645
+ },
2646
+ "node_modules/tapable": {
2647
+ "version": "2.2.2",
2648
+ "license": "MIT",
2649
+ "engines": {
2650
+ "node": ">=6"
2651
+ }
2652
+ },
2653
+ "node_modules/tar": {
2654
+ "version": "7.4.3",
2655
+ "license": "ISC",
2656
+ "dependencies": {
2657
+ "@isaacs/fs-minipass": "^4.0.0",
2658
+ "chownr": "^3.0.0",
2659
+ "minipass": "^7.1.2",
2660
+ "minizlib": "^3.0.1",
2661
+ "mkdirp": "^3.0.1",
2662
+ "yallist": "^5.0.0"
2663
+ },
2664
+ "engines": {
2665
+ "node": ">=18"
2666
+ }
2667
+ },
2668
+ "node_modules/tinyglobby": {
2669
+ "version": "0.2.14",
2670
+ "license": "MIT",
2671
+ "dependencies": {
2672
+ "fdir": "^6.4.4",
2673
+ "picomatch": "^4.0.2"
2674
+ },
2675
+ "engines": {
2676
+ "node": ">=12.0.0"
2677
+ },
2678
+ "funding": {
2679
+ "url": "https://github.com/sponsors/SuperchupuDev"
2680
+ }
2681
+ },
2682
+ "node_modules/to-regex-range": {
2683
+ "version": "5.0.1",
2684
+ "devOptional": true,
2685
+ "license": "MIT",
2686
+ "dependencies": {
2687
+ "is-number": "^7.0.0"
2688
+ },
2689
+ "engines": {
2690
+ "node": ">=8.0"
2691
+ }
2692
+ },
2693
+ "node_modules/ts-api-utils": {
2694
+ "version": "2.1.0",
2695
+ "dev": true,
2696
+ "license": "MIT",
2697
+ "engines": {
2698
+ "node": ">=18.12"
2699
+ },
2700
+ "peerDependencies": {
2701
+ "typescript": ">=4.8.4"
2702
+ }
2703
+ },
2704
+ "node_modules/tslib": {
2705
+ "version": "2.8.1",
2706
+ "devOptional": true,
2707
+ "license": "0BSD"
2708
+ },
2709
+ "node_modules/type-check": {
2710
+ "version": "0.4.0",
2711
+ "dev": true,
2712
+ "license": "MIT",
2713
+ "dependencies": {
2714
+ "prelude-ls": "^1.2.1"
2715
+ },
2716
+ "engines": {
2717
+ "node": ">= 0.8.0"
2718
+ }
2719
+ },
2720
+ "node_modules/typescript": {
2721
+ "version": "5.8.3",
2722
+ "dev": true,
2723
+ "license": "Apache-2.0",
2724
+ "bin": {
2725
+ "tsc": "bin/tsc",
2726
+ "tsserver": "bin/tsserver"
2727
+ },
2728
+ "engines": {
2729
+ "node": ">=14.17"
2730
+ }
2731
+ },
2732
+ "node_modules/typescript-eslint": {
2733
+ "version": "8.39.0",
2734
+ "dev": true,
2735
+ "license": "MIT",
2736
+ "dependencies": {
2737
+ "@typescript-eslint/eslint-plugin": "8.39.0",
2738
+ "@typescript-eslint/parser": "8.39.0",
2739
+ "@typescript-eslint/typescript-estree": "8.39.0",
2740
+ "@typescript-eslint/utils": "8.39.0"
2741
+ },
2742
+ "engines": {
2743
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
2744
+ },
2745
+ "funding": {
2746
+ "type": "opencollective",
2747
+ "url": "https://opencollective.com/typescript-eslint"
2748
+ },
2749
+ "peerDependencies": {
2750
+ "eslint": "^8.57.0 || ^9.0.0",
2751
+ "typescript": ">=4.8.4 <6.0.0"
2752
+ }
2753
+ },
2754
+ "node_modules/uri-js": {
2755
+ "version": "4.4.1",
2756
+ "dev": true,
2757
+ "license": "BSD-2-Clause",
2758
+ "dependencies": {
2759
+ "punycode": "^2.1.0"
2760
+ }
2761
+ },
2762
+ "node_modules/varint": {
2763
+ "version": "6.0.0",
2764
+ "devOptional": true,
2765
+ "license": "MIT"
2766
+ },
2767
+ "node_modules/vite": {
2768
+ "version": "7.1.1",
2769
+ "license": "MIT",
2770
+ "dependencies": {
2771
+ "esbuild": "^0.25.0",
2772
+ "fdir": "^6.4.6",
2773
+ "picomatch": "^4.0.3",
2774
+ "postcss": "^8.5.6",
2775
+ "rollup": "^4.43.0",
2776
+ "tinyglobby": "^0.2.14"
2777
+ },
2778
+ "bin": {
2779
+ "vite": "bin/vite.js"
2780
+ },
2781
+ "engines": {
2782
+ "node": "^20.19.0 || >=22.12.0"
2783
+ },
2784
+ "funding": {
2785
+ "url": "https://github.com/vitejs/vite?sponsor=1"
2786
+ },
2787
+ "optionalDependencies": {
2788
+ "fsevents": "~2.3.3"
2789
+ },
2790
+ "peerDependencies": {
2791
+ "@types/node": "^20.19.0 || >=22.12.0",
2792
+ "jiti": ">=1.21.0",
2793
+ "less": "^4.0.0",
2794
+ "lightningcss": "^1.21.0",
2795
+ "sass": "^1.70.0",
2796
+ "sass-embedded": "^1.70.0",
2797
+ "stylus": ">=0.54.8",
2798
+ "sugarss": "^5.0.0",
2799
+ "terser": "^5.16.0",
2800
+ "tsx": "^4.8.1",
2801
+ "yaml": "^2.4.2"
2802
+ },
2803
+ "peerDependenciesMeta": {
2804
+ "@types/node": {
2805
+ "optional": true
2806
+ },
2807
+ "jiti": {
2808
+ "optional": true
2809
+ },
2810
+ "less": {
2811
+ "optional": true
2812
+ },
2813
+ "lightningcss": {
2814
+ "optional": true
2815
+ },
2816
+ "sass": {
2817
+ "optional": true
2818
+ },
2819
+ "sass-embedded": {
2820
+ "optional": true
2821
+ },
2822
+ "stylus": {
2823
+ "optional": true
2824
+ },
2825
+ "sugarss": {
2826
+ "optional": true
2827
+ },
2828
+ "terser": {
2829
+ "optional": true
2830
+ },
2831
+ "tsx": {
2832
+ "optional": true
2833
+ },
2834
+ "yaml": {
2835
+ "optional": true
2836
+ }
2837
+ }
2838
+ },
2839
+ "node_modules/which": {
2840
+ "version": "2.0.2",
2841
+ "license": "ISC",
2842
+ "dependencies": {
2843
+ "isexe": "^2.0.0"
2844
+ },
2845
+ "bin": {
2846
+ "node-which": "bin/node-which"
2847
+ },
2848
+ "engines": {
2849
+ "node": ">= 8"
2850
+ }
2851
+ },
2852
+ "node_modules/word-wrap": {
2853
+ "version": "1.2.5",
2854
+ "dev": true,
2855
+ "license": "MIT",
2856
+ "engines": {
2857
+ "node": ">=0.10.0"
2858
+ }
2859
+ },
2860
+ "node_modules/wrap-ansi": {
2861
+ "version": "8.1.0",
2862
+ "license": "MIT",
2863
+ "dependencies": {
2864
+ "ansi-styles": "^6.1.0",
2865
+ "string-width": "^5.0.1",
2866
+ "strip-ansi": "^7.0.1"
2867
+ },
2868
+ "engines": {
2869
+ "node": ">=12"
2870
+ },
2871
+ "funding": {
2872
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
2873
+ }
2874
+ },
2875
+ "node_modules/wrap-ansi-cjs": {
2876
+ "name": "wrap-ansi",
2877
+ "version": "7.0.0",
2878
+ "license": "MIT",
2879
+ "dependencies": {
2880
+ "ansi-styles": "^4.0.0",
2881
+ "string-width": "^4.1.0",
2882
+ "strip-ansi": "^6.0.0"
2883
+ },
2884
+ "engines": {
2885
+ "node": ">=10"
2886
+ },
2887
+ "funding": {
2888
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
2889
+ }
2890
+ },
2891
+ "node_modules/wrap-ansi-cjs/node_modules/string-width": {
2892
+ "version": "4.2.3",
2893
+ "license": "MIT",
2894
+ "dependencies": {
2895
+ "emoji-regex": "^8.0.0",
2896
+ "is-fullwidth-code-point": "^3.0.0",
2897
+ "strip-ansi": "^6.0.1"
2898
+ },
2899
+ "engines": {
2900
+ "node": ">=8"
2901
+ }
2902
+ },
2903
+ "node_modules/wrap-ansi-cjs/node_modules/string-width/node_modules/emoji-regex": {
2904
+ "version": "8.0.0",
2905
+ "license": "MIT"
2906
+ },
2907
+ "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": {
2908
+ "version": "6.0.1",
2909
+ "license": "MIT",
2910
+ "dependencies": {
2911
+ "ansi-regex": "^5.0.1"
2912
+ },
2913
+ "engines": {
2914
+ "node": ">=8"
2915
+ }
2916
+ },
2917
+ "node_modules/wrap-ansi-cjs/node_modules/strip-ansi/node_modules/ansi-regex": {
2918
+ "version": "5.0.1",
2919
+ "license": "MIT",
2920
+ "engines": {
2921
+ "node": ">=8"
2922
+ }
2923
+ },
2924
+ "node_modules/wrap-ansi/node_modules/ansi-styles": {
2925
+ "version": "6.2.1",
2926
+ "license": "MIT",
2927
+ "engines": {
2928
+ "node": ">=12"
2929
+ },
2930
+ "funding": {
2931
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
2932
+ }
2933
+ },
2934
+ "node_modules/yallist": {
2935
+ "version": "5.0.0",
2936
+ "license": "BlueOak-1.0.0",
2937
+ "engines": {
2938
+ "node": ">=18"
2939
+ }
2940
+ },
2941
+ "node_modules/yocto-queue": {
2942
+ "version": "0.1.0",
2943
+ "dev": true,
2944
+ "license": "MIT",
2945
+ "engines": {
2946
+ "node": ">=10"
2947
+ },
2948
+ "funding": {
2949
+ "url": "https://github.com/sponsors/sindresorhus"
2950
+ }
2951
+ }
2952
+ }
2953
+ }