lyrics-transcriber 0.41.0__py3-none-any.whl → 0.43.0__py3-none-any.whl

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 (78) hide show
  1. lyrics_transcriber/core/controller.py +30 -52
  2. lyrics_transcriber/correction/anchor_sequence.py +325 -150
  3. lyrics_transcriber/correction/corrector.py +224 -107
  4. lyrics_transcriber/correction/handlers/base.py +28 -10
  5. lyrics_transcriber/correction/handlers/extend_anchor.py +47 -24
  6. lyrics_transcriber/correction/handlers/levenshtein.py +75 -33
  7. lyrics_transcriber/correction/handlers/llm.py +290 -0
  8. lyrics_transcriber/correction/handlers/no_space_punct_match.py +81 -36
  9. lyrics_transcriber/correction/handlers/relaxed_word_count_match.py +46 -26
  10. lyrics_transcriber/correction/handlers/repeat.py +28 -11
  11. lyrics_transcriber/correction/handlers/sound_alike.py +68 -32
  12. lyrics_transcriber/correction/handlers/syllables_match.py +80 -30
  13. lyrics_transcriber/correction/handlers/word_count_match.py +36 -19
  14. lyrics_transcriber/correction/handlers/word_operations.py +68 -22
  15. lyrics_transcriber/correction/text_utils.py +3 -7
  16. lyrics_transcriber/frontend/.yarn/install-state.gz +0 -0
  17. lyrics_transcriber/frontend/.yarn/releases/yarn-4.6.0.cjs +934 -0
  18. lyrics_transcriber/frontend/.yarnrc.yml +3 -0
  19. lyrics_transcriber/frontend/dist/assets/{index-DKnNJHRK.js → index-D0Gr3Ep7.js} +16509 -9038
  20. lyrics_transcriber/frontend/dist/assets/index-D0Gr3Ep7.js.map +1 -0
  21. lyrics_transcriber/frontend/dist/index.html +1 -1
  22. lyrics_transcriber/frontend/package.json +6 -2
  23. lyrics_transcriber/frontend/src/App.tsx +18 -2
  24. lyrics_transcriber/frontend/src/api.ts +103 -6
  25. lyrics_transcriber/frontend/src/components/AudioPlayer.tsx +14 -6
  26. lyrics_transcriber/frontend/src/components/DetailsModal.tsx +86 -59
  27. lyrics_transcriber/frontend/src/components/EditModal.tsx +281 -63
  28. lyrics_transcriber/frontend/src/components/FileUpload.tsx +2 -2
  29. lyrics_transcriber/frontend/src/components/Header.tsx +249 -0
  30. lyrics_transcriber/frontend/src/components/LyricsAnalyzer.tsx +320 -266
  31. lyrics_transcriber/frontend/src/components/PreviewVideoSection.tsx +120 -0
  32. lyrics_transcriber/frontend/src/components/ReferenceView.tsx +174 -52
  33. lyrics_transcriber/frontend/src/components/ReviewChangesModal.tsx +158 -114
  34. lyrics_transcriber/frontend/src/components/TimelineEditor.tsx +59 -78
  35. lyrics_transcriber/frontend/src/components/TranscriptionView.tsx +39 -16
  36. lyrics_transcriber/frontend/src/components/WordEditControls.tsx +4 -10
  37. lyrics_transcriber/frontend/src/components/shared/components/HighlightedText.tsx +134 -68
  38. lyrics_transcriber/frontend/src/components/shared/components/Word.tsx +1 -1
  39. lyrics_transcriber/frontend/src/components/shared/hooks/useWordClick.ts +85 -115
  40. lyrics_transcriber/frontend/src/components/shared/types.js +2 -0
  41. lyrics_transcriber/frontend/src/components/shared/types.ts +15 -7
  42. lyrics_transcriber/frontend/src/components/shared/utils/keyboardHandlers.ts +67 -0
  43. lyrics_transcriber/frontend/src/components/shared/utils/localStorage.ts +78 -0
  44. lyrics_transcriber/frontend/src/components/shared/utils/referenceLineCalculator.ts +7 -7
  45. lyrics_transcriber/frontend/src/components/shared/utils/segmentOperations.ts +121 -0
  46. lyrics_transcriber/frontend/src/components/shared/utils/wordUtils.ts +22 -0
  47. lyrics_transcriber/frontend/src/types/global.d.ts +9 -0
  48. lyrics_transcriber/frontend/src/types.js +2 -0
  49. lyrics_transcriber/frontend/src/types.ts +70 -49
  50. lyrics_transcriber/frontend/src/validation.ts +132 -0
  51. lyrics_transcriber/frontend/tsconfig.tsbuildinfo +1 -1
  52. lyrics_transcriber/frontend/yarn.lock +3752 -0
  53. lyrics_transcriber/lyrics/base_lyrics_provider.py +75 -12
  54. lyrics_transcriber/lyrics/file_provider.py +6 -5
  55. lyrics_transcriber/lyrics/genius.py +5 -2
  56. lyrics_transcriber/lyrics/spotify.py +58 -21
  57. lyrics_transcriber/output/ass/config.py +16 -5
  58. lyrics_transcriber/output/cdg.py +1 -1
  59. lyrics_transcriber/output/generator.py +22 -8
  60. lyrics_transcriber/output/plain_text.py +15 -10
  61. lyrics_transcriber/output/segment_resizer.py +16 -3
  62. lyrics_transcriber/output/subtitles.py +27 -1
  63. lyrics_transcriber/output/video.py +107 -1
  64. lyrics_transcriber/review/__init__.py +0 -1
  65. lyrics_transcriber/review/server.py +337 -164
  66. lyrics_transcriber/transcribers/audioshake.py +3 -0
  67. lyrics_transcriber/transcribers/base_transcriber.py +11 -3
  68. lyrics_transcriber/transcribers/whisper.py +11 -1
  69. lyrics_transcriber/types.py +151 -105
  70. lyrics_transcriber/utils/word_utils.py +27 -0
  71. {lyrics_transcriber-0.41.0.dist-info → lyrics_transcriber-0.43.0.dist-info}/METADATA +3 -1
  72. {lyrics_transcriber-0.41.0.dist-info → lyrics_transcriber-0.43.0.dist-info}/RECORD +75 -61
  73. {lyrics_transcriber-0.41.0.dist-info → lyrics_transcriber-0.43.0.dist-info}/WHEEL +1 -1
  74. lyrics_transcriber/frontend/dist/assets/index-DKnNJHRK.js.map +0 -1
  75. lyrics_transcriber/frontend/package-lock.json +0 -4260
  76. lyrics_transcriber/frontend/src/components/shared/utils/initializeDataWithIds.tsx +0 -202
  77. {lyrics_transcriber-0.41.0.dist-info → lyrics_transcriber-0.43.0.dist-info}/LICENSE +0 -0
  78. {lyrics_transcriber-0.41.0.dist-info → lyrics_transcriber-0.43.0.dist-info}/entry_points.txt +0 -0
@@ -1,4260 +0,0 @@
1
- {
2
- "name": "lyrics-transcriber-frontend",
3
- "version": "0.0.0",
4
- "lockfileVersion": 3,
5
- "requires": true,
6
- "packages": {
7
- "": {
8
- "name": "lyrics-transcriber-frontend",
9
- "version": "0.0.0",
10
- "dependencies": {
11
- "@emotion/react": "^11.14.0",
12
- "@emotion/styled": "^11.14.0",
13
- "@mui/icons-material": "^6.3.0",
14
- "@mui/material": "^6.3.0",
15
- "react": "^18.3.1",
16
- "react-dom": "^18.3.1"
17
- },
18
- "devDependencies": {
19
- "@eslint/js": "^9.17.0",
20
- "@types/react": "^18.3.18",
21
- "@types/react-dom": "^18.3.5",
22
- "@vitejs/plugin-react": "^4.3.4",
23
- "eslint": "^9.17.0",
24
- "eslint-plugin-react-hooks": "^5.0.0",
25
- "eslint-plugin-react-refresh": "^0.4.16",
26
- "gh-pages": "^6.3.0",
27
- "globals": "^15.14.0",
28
- "typescript": "~5.6.2",
29
- "typescript-eslint": "^8.18.2",
30
- "vite": "^6.0.5"
31
- }
32
- },
33
- "node_modules/@ampproject/remapping": {
34
- "version": "2.3.0",
35
- "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz",
36
- "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==",
37
- "dev": true,
38
- "license": "Apache-2.0",
39
- "dependencies": {
40
- "@jridgewell/gen-mapping": "^0.3.5",
41
- "@jridgewell/trace-mapping": "^0.3.24"
42
- },
43
- "engines": {
44
- "node": ">=6.0.0"
45
- }
46
- },
47
- "node_modules/@babel/code-frame": {
48
- "version": "7.26.2",
49
- "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz",
50
- "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==",
51
- "license": "MIT",
52
- "dependencies": {
53
- "@babel/helper-validator-identifier": "^7.25.9",
54
- "js-tokens": "^4.0.0",
55
- "picocolors": "^1.0.0"
56
- },
57
- "engines": {
58
- "node": ">=6.9.0"
59
- }
60
- },
61
- "node_modules/@babel/compat-data": {
62
- "version": "7.26.5",
63
- "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.5.tgz",
64
- "integrity": "sha512-XvcZi1KWf88RVbF9wn8MN6tYFloU5qX8KjuF3E1PVBmJ9eypXfs4GRiJwLuTZL0iSnJUKn1BFPa5BPZZJyFzPg==",
65
- "dev": true,
66
- "license": "MIT",
67
- "engines": {
68
- "node": ">=6.9.0"
69
- }
70
- },
71
- "node_modules/@babel/core": {
72
- "version": "7.26.7",
73
- "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.26.7.tgz",
74
- "integrity": "sha512-SRijHmF0PSPgLIBYlWnG0hyeJLwXE2CgpsXaMOrtt2yp9/86ALw6oUlj9KYuZ0JN07T4eBMVIW4li/9S1j2BGA==",
75
- "dev": true,
76
- "license": "MIT",
77
- "dependencies": {
78
- "@ampproject/remapping": "^2.2.0",
79
- "@babel/code-frame": "^7.26.2",
80
- "@babel/generator": "^7.26.5",
81
- "@babel/helper-compilation-targets": "^7.26.5",
82
- "@babel/helper-module-transforms": "^7.26.0",
83
- "@babel/helpers": "^7.26.7",
84
- "@babel/parser": "^7.26.7",
85
- "@babel/template": "^7.25.9",
86
- "@babel/traverse": "^7.26.7",
87
- "@babel/types": "^7.26.7",
88
- "convert-source-map": "^2.0.0",
89
- "debug": "^4.1.0",
90
- "gensync": "^1.0.0-beta.2",
91
- "json5": "^2.2.3",
92
- "semver": "^6.3.1"
93
- },
94
- "engines": {
95
- "node": ">=6.9.0"
96
- },
97
- "funding": {
98
- "type": "opencollective",
99
- "url": "https://opencollective.com/babel"
100
- }
101
- },
102
- "node_modules/@babel/core/node_modules/convert-source-map": {
103
- "version": "2.0.0",
104
- "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
105
- "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
106
- "dev": true,
107
- "license": "MIT"
108
- },
109
- "node_modules/@babel/generator": {
110
- "version": "7.26.5",
111
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.5.tgz",
112
- "integrity": "sha512-2caSP6fN9I7HOe6nqhtft7V4g7/V/gfDsC3Ag4W7kEzzvRGKqiv0pu0HogPiZ3KaVSoNDhUws6IJjDjpfmYIXw==",
113
- "license": "MIT",
114
- "dependencies": {
115
- "@babel/parser": "^7.26.5",
116
- "@babel/types": "^7.26.5",
117
- "@jridgewell/gen-mapping": "^0.3.5",
118
- "@jridgewell/trace-mapping": "^0.3.25",
119
- "jsesc": "^3.0.2"
120
- },
121
- "engines": {
122
- "node": ">=6.9.0"
123
- }
124
- },
125
- "node_modules/@babel/helper-compilation-targets": {
126
- "version": "7.26.5",
127
- "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.26.5.tgz",
128
- "integrity": "sha512-IXuyn5EkouFJscIDuFF5EsiSolseme1s0CZB+QxVugqJLYmKdxI1VfIBOst0SUu4rnk2Z7kqTwmoO1lp3HIfnA==",
129
- "dev": true,
130
- "license": "MIT",
131
- "dependencies": {
132
- "@babel/compat-data": "^7.26.5",
133
- "@babel/helper-validator-option": "^7.25.9",
134
- "browserslist": "^4.24.0",
135
- "lru-cache": "^5.1.1",
136
- "semver": "^6.3.1"
137
- },
138
- "engines": {
139
- "node": ">=6.9.0"
140
- }
141
- },
142
- "node_modules/@babel/helper-module-imports": {
143
- "version": "7.25.9",
144
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz",
145
- "integrity": "sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==",
146
- "license": "MIT",
147
- "dependencies": {
148
- "@babel/traverse": "^7.25.9",
149
- "@babel/types": "^7.25.9"
150
- },
151
- "engines": {
152
- "node": ">=6.9.0"
153
- }
154
- },
155
- "node_modules/@babel/helper-module-transforms": {
156
- "version": "7.26.0",
157
- "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz",
158
- "integrity": "sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==",
159
- "dev": true,
160
- "license": "MIT",
161
- "dependencies": {
162
- "@babel/helper-module-imports": "^7.25.9",
163
- "@babel/helper-validator-identifier": "^7.25.9",
164
- "@babel/traverse": "^7.25.9"
165
- },
166
- "engines": {
167
- "node": ">=6.9.0"
168
- },
169
- "peerDependencies": {
170
- "@babel/core": "^7.0.0"
171
- }
172
- },
173
- "node_modules/@babel/helper-plugin-utils": {
174
- "version": "7.26.5",
175
- "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.26.5.tgz",
176
- "integrity": "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==",
177
- "dev": true,
178
- "license": "MIT",
179
- "engines": {
180
- "node": ">=6.9.0"
181
- }
182
- },
183
- "node_modules/@babel/helper-string-parser": {
184
- "version": "7.25.9",
185
- "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz",
186
- "integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==",
187
- "license": "MIT",
188
- "engines": {
189
- "node": ">=6.9.0"
190
- }
191
- },
192
- "node_modules/@babel/helper-validator-identifier": {
193
- "version": "7.25.9",
194
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz",
195
- "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==",
196
- "license": "MIT",
197
- "engines": {
198
- "node": ">=6.9.0"
199
- }
200
- },
201
- "node_modules/@babel/helper-validator-option": {
202
- "version": "7.25.9",
203
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz",
204
- "integrity": "sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==",
205
- "dev": true,
206
- "license": "MIT",
207
- "engines": {
208
- "node": ">=6.9.0"
209
- }
210
- },
211
- "node_modules/@babel/helpers": {
212
- "version": "7.26.7",
213
- "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.26.7.tgz",
214
- "integrity": "sha512-8NHiL98vsi0mbPQmYAGWwfcFaOy4j2HY49fXJCfuDcdE7fMIsH9a7GdaeXpIBsbT7307WU8KCMp5pUVDNL4f9A==",
215
- "dev": true,
216
- "license": "MIT",
217
- "dependencies": {
218
- "@babel/template": "^7.25.9",
219
- "@babel/types": "^7.26.7"
220
- },
221
- "engines": {
222
- "node": ">=6.9.0"
223
- }
224
- },
225
- "node_modules/@babel/parser": {
226
- "version": "7.26.7",
227
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.7.tgz",
228
- "integrity": "sha512-kEvgGGgEjRUutvdVvZhbn/BxVt+5VSpwXz1j3WYXQbXDo8KzFOPNG2GQbdAiNq8g6wn1yKk7C/qrke03a84V+w==",
229
- "license": "MIT",
230
- "dependencies": {
231
- "@babel/types": "^7.26.7"
232
- },
233
- "bin": {
234
- "parser": "bin/babel-parser.js"
235
- },
236
- "engines": {
237
- "node": ">=6.0.0"
238
- }
239
- },
240
- "node_modules/@babel/plugin-transform-react-jsx-self": {
241
- "version": "7.25.9",
242
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.25.9.tgz",
243
- "integrity": "sha512-y8quW6p0WHkEhmErnfe58r7x0A70uKphQm8Sp8cV7tjNQwK56sNVK0M73LK3WuYmsuyrftut4xAkjjgU0twaMg==",
244
- "dev": true,
245
- "license": "MIT",
246
- "dependencies": {
247
- "@babel/helper-plugin-utils": "^7.25.9"
248
- },
249
- "engines": {
250
- "node": ">=6.9.0"
251
- },
252
- "peerDependencies": {
253
- "@babel/core": "^7.0.0-0"
254
- }
255
- },
256
- "node_modules/@babel/plugin-transform-react-jsx-source": {
257
- "version": "7.25.9",
258
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.25.9.tgz",
259
- "integrity": "sha512-+iqjT8xmXhhYv4/uiYd8FNQsraMFZIfxVSqxxVSZP0WbbSAWvBXAul0m/zu+7Vv4O/3WtApy9pmaTMiumEZgfg==",
260
- "dev": true,
261
- "license": "MIT",
262
- "dependencies": {
263
- "@babel/helper-plugin-utils": "^7.25.9"
264
- },
265
- "engines": {
266
- "node": ">=6.9.0"
267
- },
268
- "peerDependencies": {
269
- "@babel/core": "^7.0.0-0"
270
- }
271
- },
272
- "node_modules/@babel/runtime": {
273
- "version": "7.26.7",
274
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.26.7.tgz",
275
- "integrity": "sha512-AOPI3D+a8dXnja+iwsUqGRjr1BbZIe771sXdapOtYI531gSqpi92vXivKcq2asu/DFpdl1ceFAKZyRzK2PCVcQ==",
276
- "license": "MIT",
277
- "dependencies": {
278
- "regenerator-runtime": "^0.14.0"
279
- },
280
- "engines": {
281
- "node": ">=6.9.0"
282
- }
283
- },
284
- "node_modules/@babel/template": {
285
- "version": "7.25.9",
286
- "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.9.tgz",
287
- "integrity": "sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==",
288
- "license": "MIT",
289
- "dependencies": {
290
- "@babel/code-frame": "^7.25.9",
291
- "@babel/parser": "^7.25.9",
292
- "@babel/types": "^7.25.9"
293
- },
294
- "engines": {
295
- "node": ">=6.9.0"
296
- }
297
- },
298
- "node_modules/@babel/traverse": {
299
- "version": "7.26.7",
300
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.7.tgz",
301
- "integrity": "sha512-1x1sgeyRLC3r5fQOM0/xtQKsYjyxmFjaOrLJNtZ81inNjyJHGIolTULPiSc/2qe1/qfpFLisLQYFnnZl7QoedA==",
302
- "license": "MIT",
303
- "dependencies": {
304
- "@babel/code-frame": "^7.26.2",
305
- "@babel/generator": "^7.26.5",
306
- "@babel/parser": "^7.26.7",
307
- "@babel/template": "^7.25.9",
308
- "@babel/types": "^7.26.7",
309
- "debug": "^4.3.1",
310
- "globals": "^11.1.0"
311
- },
312
- "engines": {
313
- "node": ">=6.9.0"
314
- }
315
- },
316
- "node_modules/@babel/traverse/node_modules/globals": {
317
- "version": "11.12.0",
318
- "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz",
319
- "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==",
320
- "license": "MIT",
321
- "engines": {
322
- "node": ">=4"
323
- }
324
- },
325
- "node_modules/@babel/types": {
326
- "version": "7.26.7",
327
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.7.tgz",
328
- "integrity": "sha512-t8kDRGrKXyp6+tjUh7hw2RLyclsW4TRoRvRHtSyAX9Bb5ldlFh+90YAYY6awRXrlB4G5G2izNeGySpATlFzmOg==",
329
- "license": "MIT",
330
- "dependencies": {
331
- "@babel/helper-string-parser": "^7.25.9",
332
- "@babel/helper-validator-identifier": "^7.25.9"
333
- },
334
- "engines": {
335
- "node": ">=6.9.0"
336
- }
337
- },
338
- "node_modules/@emotion/babel-plugin": {
339
- "version": "11.13.5",
340
- "resolved": "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.13.5.tgz",
341
- "integrity": "sha512-pxHCpT2ex+0q+HH91/zsdHkw/lXd468DIN2zvfvLtPKLLMo6gQj7oLObq8PhkrxOZb/gGCq03S3Z7PDhS8pduQ==",
342
- "license": "MIT",
343
- "dependencies": {
344
- "@babel/helper-module-imports": "^7.16.7",
345
- "@babel/runtime": "^7.18.3",
346
- "@emotion/hash": "^0.9.2",
347
- "@emotion/memoize": "^0.9.0",
348
- "@emotion/serialize": "^1.3.3",
349
- "babel-plugin-macros": "^3.1.0",
350
- "convert-source-map": "^1.5.0",
351
- "escape-string-regexp": "^4.0.0",
352
- "find-root": "^1.1.0",
353
- "source-map": "^0.5.7",
354
- "stylis": "4.2.0"
355
- }
356
- },
357
- "node_modules/@emotion/cache": {
358
- "version": "11.14.0",
359
- "resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-11.14.0.tgz",
360
- "integrity": "sha512-L/B1lc/TViYk4DcpGxtAVbx0ZyiKM5ktoIyafGkH6zg/tj+mA+NE//aPYKG0k8kCHSHVJrpLpcAlOBEXQ3SavA==",
361
- "license": "MIT",
362
- "dependencies": {
363
- "@emotion/memoize": "^0.9.0",
364
- "@emotion/sheet": "^1.4.0",
365
- "@emotion/utils": "^1.4.2",
366
- "@emotion/weak-memoize": "^0.4.0",
367
- "stylis": "4.2.0"
368
- }
369
- },
370
- "node_modules/@emotion/hash": {
371
- "version": "0.9.2",
372
- "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.9.2.tgz",
373
- "integrity": "sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==",
374
- "license": "MIT"
375
- },
376
- "node_modules/@emotion/is-prop-valid": {
377
- "version": "1.3.1",
378
- "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.3.1.tgz",
379
- "integrity": "sha512-/ACwoqx7XQi9knQs/G0qKvv5teDMhD7bXYns9N/wM8ah8iNb8jZ2uNO0YOgiq2o2poIvVtJS2YALasQuMSQ7Kw==",
380
- "license": "MIT",
381
- "dependencies": {
382
- "@emotion/memoize": "^0.9.0"
383
- }
384
- },
385
- "node_modules/@emotion/memoize": {
386
- "version": "0.9.0",
387
- "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.9.0.tgz",
388
- "integrity": "sha512-30FAj7/EoJ5mwVPOWhAyCX+FPfMDrVecJAM+Iw9NRoSl4BBAQeqj4cApHHUXOVvIPgLVDsCFoz/hGD+5QQD1GQ==",
389
- "license": "MIT"
390
- },
391
- "node_modules/@emotion/react": {
392
- "version": "11.14.0",
393
- "resolved": "https://registry.npmjs.org/@emotion/react/-/react-11.14.0.tgz",
394
- "integrity": "sha512-O000MLDBDdk/EohJPFUqvnp4qnHeYkVP5B0xEG0D/L7cOKP9kefu2DXn8dj74cQfsEzUqh+sr1RzFqiL1o+PpA==",
395
- "license": "MIT",
396
- "dependencies": {
397
- "@babel/runtime": "^7.18.3",
398
- "@emotion/babel-plugin": "^11.13.5",
399
- "@emotion/cache": "^11.14.0",
400
- "@emotion/serialize": "^1.3.3",
401
- "@emotion/use-insertion-effect-with-fallbacks": "^1.2.0",
402
- "@emotion/utils": "^1.4.2",
403
- "@emotion/weak-memoize": "^0.4.0",
404
- "hoist-non-react-statics": "^3.3.1"
405
- },
406
- "peerDependencies": {
407
- "react": ">=16.8.0"
408
- },
409
- "peerDependenciesMeta": {
410
- "@types/react": {
411
- "optional": true
412
- }
413
- }
414
- },
415
- "node_modules/@emotion/serialize": {
416
- "version": "1.3.3",
417
- "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.3.3.tgz",
418
- "integrity": "sha512-EISGqt7sSNWHGI76hC7x1CksiXPahbxEOrC5RjmFRJTqLyEK9/9hZvBbiYn70dw4wuwMKiEMCUlR6ZXTSWQqxA==",
419
- "license": "MIT",
420
- "dependencies": {
421
- "@emotion/hash": "^0.9.2",
422
- "@emotion/memoize": "^0.9.0",
423
- "@emotion/unitless": "^0.10.0",
424
- "@emotion/utils": "^1.4.2",
425
- "csstype": "^3.0.2"
426
- }
427
- },
428
- "node_modules/@emotion/sheet": {
429
- "version": "1.4.0",
430
- "resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.4.0.tgz",
431
- "integrity": "sha512-fTBW9/8r2w3dXWYM4HCB1Rdp8NLibOw2+XELH5m5+AkWiL/KqYX6dc0kKYlaYyKjrQ6ds33MCdMPEwgs2z1rqg==",
432
- "license": "MIT"
433
- },
434
- "node_modules/@emotion/styled": {
435
- "version": "11.14.0",
436
- "resolved": "https://registry.npmjs.org/@emotion/styled/-/styled-11.14.0.tgz",
437
- "integrity": "sha512-XxfOnXFffatap2IyCeJyNov3kiDQWoR08gPUQxvbL7fxKryGBKUZUkG6Hz48DZwVrJSVh9sJboyV1Ds4OW6SgA==",
438
- "license": "MIT",
439
- "dependencies": {
440
- "@babel/runtime": "^7.18.3",
441
- "@emotion/babel-plugin": "^11.13.5",
442
- "@emotion/is-prop-valid": "^1.3.0",
443
- "@emotion/serialize": "^1.3.3",
444
- "@emotion/use-insertion-effect-with-fallbacks": "^1.2.0",
445
- "@emotion/utils": "^1.4.2"
446
- },
447
- "peerDependencies": {
448
- "@emotion/react": "^11.0.0-rc.0",
449
- "react": ">=16.8.0"
450
- },
451
- "peerDependenciesMeta": {
452
- "@types/react": {
453
- "optional": true
454
- }
455
- }
456
- },
457
- "node_modules/@emotion/unitless": {
458
- "version": "0.10.0",
459
- "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.10.0.tgz",
460
- "integrity": "sha512-dFoMUuQA20zvtVTuxZww6OHoJYgrzfKM1t52mVySDJnMSEa08ruEvdYQbhvyu6soU+NeLVd3yKfTfT0NeV6qGg==",
461
- "license": "MIT"
462
- },
463
- "node_modules/@emotion/use-insertion-effect-with-fallbacks": {
464
- "version": "1.2.0",
465
- "resolved": "https://registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.2.0.tgz",
466
- "integrity": "sha512-yJMtVdH59sxi/aVJBpk9FQq+OR8ll5GT8oWd57UpeaKEVGab41JWaCFA7FRLoMLloOZF/c/wsPoe+bfGmRKgDg==",
467
- "license": "MIT",
468
- "peerDependencies": {
469
- "react": ">=16.8.0"
470
- }
471
- },
472
- "node_modules/@emotion/utils": {
473
- "version": "1.4.2",
474
- "resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-1.4.2.tgz",
475
- "integrity": "sha512-3vLclRofFziIa3J2wDh9jjbkUz9qk5Vi3IZ/FSTKViB0k+ef0fPV7dYrUIugbgupYDx7v9ud/SjrtEP8Y4xLoA==",
476
- "license": "MIT"
477
- },
478
- "node_modules/@emotion/weak-memoize": {
479
- "version": "0.4.0",
480
- "resolved": "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.4.0.tgz",
481
- "integrity": "sha512-snKqtPW01tN0ui7yu9rGv69aJXr/a/Ywvl11sUjNtEcRc+ng/mQriFL0wLXMef74iHa/EkftbDzU9F8iFbH+zg==",
482
- "license": "MIT"
483
- },
484
- "node_modules/@esbuild/aix-ppc64": {
485
- "version": "0.24.2",
486
- "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.24.2.tgz",
487
- "integrity": "sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA==",
488
- "cpu": [
489
- "ppc64"
490
- ],
491
- "dev": true,
492
- "license": "MIT",
493
- "optional": true,
494
- "os": [
495
- "aix"
496
- ],
497
- "engines": {
498
- "node": ">=18"
499
- }
500
- },
501
- "node_modules/@esbuild/android-arm": {
502
- "version": "0.24.2",
503
- "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.24.2.tgz",
504
- "integrity": "sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q==",
505
- "cpu": [
506
- "arm"
507
- ],
508
- "dev": true,
509
- "license": "MIT",
510
- "optional": true,
511
- "os": [
512
- "android"
513
- ],
514
- "engines": {
515
- "node": ">=18"
516
- }
517
- },
518
- "node_modules/@esbuild/android-arm64": {
519
- "version": "0.24.2",
520
- "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.24.2.tgz",
521
- "integrity": "sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg==",
522
- "cpu": [
523
- "arm64"
524
- ],
525
- "dev": true,
526
- "license": "MIT",
527
- "optional": true,
528
- "os": [
529
- "android"
530
- ],
531
- "engines": {
532
- "node": ">=18"
533
- }
534
- },
535
- "node_modules/@esbuild/android-x64": {
536
- "version": "0.24.2",
537
- "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.24.2.tgz",
538
- "integrity": "sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw==",
539
- "cpu": [
540
- "x64"
541
- ],
542
- "dev": true,
543
- "license": "MIT",
544
- "optional": true,
545
- "os": [
546
- "android"
547
- ],
548
- "engines": {
549
- "node": ">=18"
550
- }
551
- },
552
- "node_modules/@esbuild/darwin-arm64": {
553
- "version": "0.24.2",
554
- "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.24.2.tgz",
555
- "integrity": "sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA==",
556
- "cpu": [
557
- "arm64"
558
- ],
559
- "dev": true,
560
- "license": "MIT",
561
- "optional": true,
562
- "os": [
563
- "darwin"
564
- ],
565
- "engines": {
566
- "node": ">=18"
567
- }
568
- },
569
- "node_modules/@esbuild/darwin-x64": {
570
- "version": "0.24.2",
571
- "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.24.2.tgz",
572
- "integrity": "sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA==",
573
- "cpu": [
574
- "x64"
575
- ],
576
- "dev": true,
577
- "license": "MIT",
578
- "optional": true,
579
- "os": [
580
- "darwin"
581
- ],
582
- "engines": {
583
- "node": ">=18"
584
- }
585
- },
586
- "node_modules/@esbuild/freebsd-arm64": {
587
- "version": "0.24.2",
588
- "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.24.2.tgz",
589
- "integrity": "sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg==",
590
- "cpu": [
591
- "arm64"
592
- ],
593
- "dev": true,
594
- "license": "MIT",
595
- "optional": true,
596
- "os": [
597
- "freebsd"
598
- ],
599
- "engines": {
600
- "node": ">=18"
601
- }
602
- },
603
- "node_modules/@esbuild/freebsd-x64": {
604
- "version": "0.24.2",
605
- "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.24.2.tgz",
606
- "integrity": "sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q==",
607
- "cpu": [
608
- "x64"
609
- ],
610
- "dev": true,
611
- "license": "MIT",
612
- "optional": true,
613
- "os": [
614
- "freebsd"
615
- ],
616
- "engines": {
617
- "node": ">=18"
618
- }
619
- },
620
- "node_modules/@esbuild/linux-arm": {
621
- "version": "0.24.2",
622
- "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.24.2.tgz",
623
- "integrity": "sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA==",
624
- "cpu": [
625
- "arm"
626
- ],
627
- "dev": true,
628
- "license": "MIT",
629
- "optional": true,
630
- "os": [
631
- "linux"
632
- ],
633
- "engines": {
634
- "node": ">=18"
635
- }
636
- },
637
- "node_modules/@esbuild/linux-arm64": {
638
- "version": "0.24.2",
639
- "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.24.2.tgz",
640
- "integrity": "sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg==",
641
- "cpu": [
642
- "arm64"
643
- ],
644
- "dev": true,
645
- "license": "MIT",
646
- "optional": true,
647
- "os": [
648
- "linux"
649
- ],
650
- "engines": {
651
- "node": ">=18"
652
- }
653
- },
654
- "node_modules/@esbuild/linux-ia32": {
655
- "version": "0.24.2",
656
- "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.24.2.tgz",
657
- "integrity": "sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw==",
658
- "cpu": [
659
- "ia32"
660
- ],
661
- "dev": true,
662
- "license": "MIT",
663
- "optional": true,
664
- "os": [
665
- "linux"
666
- ],
667
- "engines": {
668
- "node": ">=18"
669
- }
670
- },
671
- "node_modules/@esbuild/linux-loong64": {
672
- "version": "0.24.2",
673
- "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.24.2.tgz",
674
- "integrity": "sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ==",
675
- "cpu": [
676
- "loong64"
677
- ],
678
- "dev": true,
679
- "license": "MIT",
680
- "optional": true,
681
- "os": [
682
- "linux"
683
- ],
684
- "engines": {
685
- "node": ">=18"
686
- }
687
- },
688
- "node_modules/@esbuild/linux-mips64el": {
689
- "version": "0.24.2",
690
- "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.24.2.tgz",
691
- "integrity": "sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw==",
692
- "cpu": [
693
- "mips64el"
694
- ],
695
- "dev": true,
696
- "license": "MIT",
697
- "optional": true,
698
- "os": [
699
- "linux"
700
- ],
701
- "engines": {
702
- "node": ">=18"
703
- }
704
- },
705
- "node_modules/@esbuild/linux-ppc64": {
706
- "version": "0.24.2",
707
- "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.24.2.tgz",
708
- "integrity": "sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw==",
709
- "cpu": [
710
- "ppc64"
711
- ],
712
- "dev": true,
713
- "license": "MIT",
714
- "optional": true,
715
- "os": [
716
- "linux"
717
- ],
718
- "engines": {
719
- "node": ">=18"
720
- }
721
- },
722
- "node_modules/@esbuild/linux-riscv64": {
723
- "version": "0.24.2",
724
- "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.24.2.tgz",
725
- "integrity": "sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q==",
726
- "cpu": [
727
- "riscv64"
728
- ],
729
- "dev": true,
730
- "license": "MIT",
731
- "optional": true,
732
- "os": [
733
- "linux"
734
- ],
735
- "engines": {
736
- "node": ">=18"
737
- }
738
- },
739
- "node_modules/@esbuild/linux-s390x": {
740
- "version": "0.24.2",
741
- "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.24.2.tgz",
742
- "integrity": "sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw==",
743
- "cpu": [
744
- "s390x"
745
- ],
746
- "dev": true,
747
- "license": "MIT",
748
- "optional": true,
749
- "os": [
750
- "linux"
751
- ],
752
- "engines": {
753
- "node": ">=18"
754
- }
755
- },
756
- "node_modules/@esbuild/linux-x64": {
757
- "version": "0.24.2",
758
- "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.24.2.tgz",
759
- "integrity": "sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q==",
760
- "cpu": [
761
- "x64"
762
- ],
763
- "dev": true,
764
- "license": "MIT",
765
- "optional": true,
766
- "os": [
767
- "linux"
768
- ],
769
- "engines": {
770
- "node": ">=18"
771
- }
772
- },
773
- "node_modules/@esbuild/netbsd-arm64": {
774
- "version": "0.24.2",
775
- "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.24.2.tgz",
776
- "integrity": "sha512-wuLK/VztRRpMt9zyHSazyCVdCXlpHkKm34WUyinD2lzK07FAHTq0KQvZZlXikNWkDGoT6x3TD51jKQ7gMVpopw==",
777
- "cpu": [
778
- "arm64"
779
- ],
780
- "dev": true,
781
- "license": "MIT",
782
- "optional": true,
783
- "os": [
784
- "netbsd"
785
- ],
786
- "engines": {
787
- "node": ">=18"
788
- }
789
- },
790
- "node_modules/@esbuild/netbsd-x64": {
791
- "version": "0.24.2",
792
- "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.24.2.tgz",
793
- "integrity": "sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw==",
794
- "cpu": [
795
- "x64"
796
- ],
797
- "dev": true,
798
- "license": "MIT",
799
- "optional": true,
800
- "os": [
801
- "netbsd"
802
- ],
803
- "engines": {
804
- "node": ">=18"
805
- }
806
- },
807
- "node_modules/@esbuild/openbsd-arm64": {
808
- "version": "0.24.2",
809
- "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.24.2.tgz",
810
- "integrity": "sha512-YQbi46SBct6iKnszhSvdluqDmxCJA+Pu280Av9WICNwQmMxV7nLRHZfjQzwbPs3jeWnuAhE9Jy0NrnJ12Oz+0A==",
811
- "cpu": [
812
- "arm64"
813
- ],
814
- "dev": true,
815
- "license": "MIT",
816
- "optional": true,
817
- "os": [
818
- "openbsd"
819
- ],
820
- "engines": {
821
- "node": ">=18"
822
- }
823
- },
824
- "node_modules/@esbuild/openbsd-x64": {
825
- "version": "0.24.2",
826
- "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.24.2.tgz",
827
- "integrity": "sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA==",
828
- "cpu": [
829
- "x64"
830
- ],
831
- "dev": true,
832
- "license": "MIT",
833
- "optional": true,
834
- "os": [
835
- "openbsd"
836
- ],
837
- "engines": {
838
- "node": ">=18"
839
- }
840
- },
841
- "node_modules/@esbuild/sunos-x64": {
842
- "version": "0.24.2",
843
- "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.24.2.tgz",
844
- "integrity": "sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig==",
845
- "cpu": [
846
- "x64"
847
- ],
848
- "dev": true,
849
- "license": "MIT",
850
- "optional": true,
851
- "os": [
852
- "sunos"
853
- ],
854
- "engines": {
855
- "node": ">=18"
856
- }
857
- },
858
- "node_modules/@esbuild/win32-arm64": {
859
- "version": "0.24.2",
860
- "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.24.2.tgz",
861
- "integrity": "sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ==",
862
- "cpu": [
863
- "arm64"
864
- ],
865
- "dev": true,
866
- "license": "MIT",
867
- "optional": true,
868
- "os": [
869
- "win32"
870
- ],
871
- "engines": {
872
- "node": ">=18"
873
- }
874
- },
875
- "node_modules/@esbuild/win32-ia32": {
876
- "version": "0.24.2",
877
- "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.24.2.tgz",
878
- "integrity": "sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA==",
879
- "cpu": [
880
- "ia32"
881
- ],
882
- "dev": true,
883
- "license": "MIT",
884
- "optional": true,
885
- "os": [
886
- "win32"
887
- ],
888
- "engines": {
889
- "node": ">=18"
890
- }
891
- },
892
- "node_modules/@esbuild/win32-x64": {
893
- "version": "0.24.2",
894
- "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.24.2.tgz",
895
- "integrity": "sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg==",
896
- "cpu": [
897
- "x64"
898
- ],
899
- "dev": true,
900
- "license": "MIT",
901
- "optional": true,
902
- "os": [
903
- "win32"
904
- ],
905
- "engines": {
906
- "node": ">=18"
907
- }
908
- },
909
- "node_modules/@eslint-community/eslint-utils": {
910
- "version": "4.4.1",
911
- "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz",
912
- "integrity": "sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==",
913
- "dev": true,
914
- "license": "MIT",
915
- "dependencies": {
916
- "eslint-visitor-keys": "^3.4.3"
917
- },
918
- "engines": {
919
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
920
- },
921
- "funding": {
922
- "url": "https://opencollective.com/eslint"
923
- },
924
- "peerDependencies": {
925
- "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
926
- }
927
- },
928
- "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": {
929
- "version": "3.4.3",
930
- "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz",
931
- "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==",
932
- "dev": true,
933
- "license": "Apache-2.0",
934
- "engines": {
935
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
936
- },
937
- "funding": {
938
- "url": "https://opencollective.com/eslint"
939
- }
940
- },
941
- "node_modules/@eslint-community/regexpp": {
942
- "version": "4.12.1",
943
- "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz",
944
- "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==",
945
- "dev": true,
946
- "license": "MIT",
947
- "engines": {
948
- "node": "^12.0.0 || ^14.0.0 || >=16.0.0"
949
- }
950
- },
951
- "node_modules/@eslint/config-array": {
952
- "version": "0.19.1",
953
- "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.19.1.tgz",
954
- "integrity": "sha512-fo6Mtm5mWyKjA/Chy1BYTdn5mGJoDNjC7C64ug20ADsRDGrA85bN3uK3MaKbeRkRuuIEAR5N33Jr1pbm411/PA==",
955
- "dev": true,
956
- "license": "Apache-2.0",
957
- "dependencies": {
958
- "@eslint/object-schema": "^2.1.5",
959
- "debug": "^4.3.1",
960
- "minimatch": "^3.1.2"
961
- },
962
- "engines": {
963
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
964
- }
965
- },
966
- "node_modules/@eslint/core": {
967
- "version": "0.10.0",
968
- "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.10.0.tgz",
969
- "integrity": "sha512-gFHJ+xBOo4G3WRlR1e/3G8A6/KZAH6zcE/hkLRCZTi/B9avAG365QhFA8uOGzTMqgTghpn7/fSnscW++dpMSAw==",
970
- "dev": true,
971
- "license": "Apache-2.0",
972
- "dependencies": {
973
- "@types/json-schema": "^7.0.15"
974
- },
975
- "engines": {
976
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
977
- }
978
- },
979
- "node_modules/@eslint/eslintrc": {
980
- "version": "3.2.0",
981
- "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.2.0.tgz",
982
- "integrity": "sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==",
983
- "dev": true,
984
- "license": "MIT",
985
- "dependencies": {
986
- "ajv": "^6.12.4",
987
- "debug": "^4.3.2",
988
- "espree": "^10.0.1",
989
- "globals": "^14.0.0",
990
- "ignore": "^5.2.0",
991
- "import-fresh": "^3.2.1",
992
- "js-yaml": "^4.1.0",
993
- "minimatch": "^3.1.2",
994
- "strip-json-comments": "^3.1.1"
995
- },
996
- "engines": {
997
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
998
- },
999
- "funding": {
1000
- "url": "https://opencollective.com/eslint"
1001
- }
1002
- },
1003
- "node_modules/@eslint/eslintrc/node_modules/globals": {
1004
- "version": "14.0.0",
1005
- "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz",
1006
- "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==",
1007
- "dev": true,
1008
- "license": "MIT",
1009
- "engines": {
1010
- "node": ">=18"
1011
- },
1012
- "funding": {
1013
- "url": "https://github.com/sponsors/sindresorhus"
1014
- }
1015
- },
1016
- "node_modules/@eslint/js": {
1017
- "version": "9.19.0",
1018
- "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.19.0.tgz",
1019
- "integrity": "sha512-rbq9/g38qjfqFLOVPvwjIvFFdNziEC5S65jmjPw5r6A//QH+W91akh9irMwjDN8zKUTak6W9EsAv4m/7Wnw0UQ==",
1020
- "dev": true,
1021
- "license": "MIT",
1022
- "engines": {
1023
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1024
- }
1025
- },
1026
- "node_modules/@eslint/object-schema": {
1027
- "version": "2.1.5",
1028
- "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.5.tgz",
1029
- "integrity": "sha512-o0bhxnL89h5Bae5T318nFoFzGy+YE5i/gGkoPAgkmTVdRKTiv3p8JHevPiPaMwoloKfEiiaHlawCqaZMqRm+XQ==",
1030
- "dev": true,
1031
- "license": "Apache-2.0",
1032
- "engines": {
1033
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1034
- }
1035
- },
1036
- "node_modules/@eslint/plugin-kit": {
1037
- "version": "0.2.5",
1038
- "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.2.5.tgz",
1039
- "integrity": "sha512-lB05FkqEdUg2AA0xEbUz0SnkXT1LcCTa438W4IWTUh4hdOnVbQyOJ81OrDXsJk/LSiJHubgGEFoR5EHq1NsH1A==",
1040
- "dev": true,
1041
- "license": "Apache-2.0",
1042
- "dependencies": {
1043
- "@eslint/core": "^0.10.0",
1044
- "levn": "^0.4.1"
1045
- },
1046
- "engines": {
1047
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1048
- }
1049
- },
1050
- "node_modules/@humanfs/core": {
1051
- "version": "0.19.1",
1052
- "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz",
1053
- "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==",
1054
- "dev": true,
1055
- "license": "Apache-2.0",
1056
- "engines": {
1057
- "node": ">=18.18.0"
1058
- }
1059
- },
1060
- "node_modules/@humanfs/node": {
1061
- "version": "0.16.6",
1062
- "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.6.tgz",
1063
- "integrity": "sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==",
1064
- "dev": true,
1065
- "license": "Apache-2.0",
1066
- "dependencies": {
1067
- "@humanfs/core": "^0.19.1",
1068
- "@humanwhocodes/retry": "^0.3.0"
1069
- },
1070
- "engines": {
1071
- "node": ">=18.18.0"
1072
- }
1073
- },
1074
- "node_modules/@humanfs/node/node_modules/@humanwhocodes/retry": {
1075
- "version": "0.3.1",
1076
- "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.3.1.tgz",
1077
- "integrity": "sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==",
1078
- "dev": true,
1079
- "license": "Apache-2.0",
1080
- "engines": {
1081
- "node": ">=18.18"
1082
- },
1083
- "funding": {
1084
- "type": "github",
1085
- "url": "https://github.com/sponsors/nzakas"
1086
- }
1087
- },
1088
- "node_modules/@humanwhocodes/module-importer": {
1089
- "version": "1.0.1",
1090
- "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
1091
- "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
1092
- "dev": true,
1093
- "license": "Apache-2.0",
1094
- "engines": {
1095
- "node": ">=12.22"
1096
- },
1097
- "funding": {
1098
- "type": "github",
1099
- "url": "https://github.com/sponsors/nzakas"
1100
- }
1101
- },
1102
- "node_modules/@humanwhocodes/retry": {
1103
- "version": "0.4.1",
1104
- "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.1.tgz",
1105
- "integrity": "sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==",
1106
- "dev": true,
1107
- "license": "Apache-2.0",
1108
- "engines": {
1109
- "node": ">=18.18"
1110
- },
1111
- "funding": {
1112
- "type": "github",
1113
- "url": "https://github.com/sponsors/nzakas"
1114
- }
1115
- },
1116
- "node_modules/@jridgewell/gen-mapping": {
1117
- "version": "0.3.8",
1118
- "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz",
1119
- "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==",
1120
- "license": "MIT",
1121
- "dependencies": {
1122
- "@jridgewell/set-array": "^1.2.1",
1123
- "@jridgewell/sourcemap-codec": "^1.4.10",
1124
- "@jridgewell/trace-mapping": "^0.3.24"
1125
- },
1126
- "engines": {
1127
- "node": ">=6.0.0"
1128
- }
1129
- },
1130
- "node_modules/@jridgewell/resolve-uri": {
1131
- "version": "3.1.2",
1132
- "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
1133
- "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
1134
- "license": "MIT",
1135
- "engines": {
1136
- "node": ">=6.0.0"
1137
- }
1138
- },
1139
- "node_modules/@jridgewell/set-array": {
1140
- "version": "1.2.1",
1141
- "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz",
1142
- "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==",
1143
- "license": "MIT",
1144
- "engines": {
1145
- "node": ">=6.0.0"
1146
- }
1147
- },
1148
- "node_modules/@jridgewell/sourcemap-codec": {
1149
- "version": "1.5.0",
1150
- "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz",
1151
- "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==",
1152
- "license": "MIT"
1153
- },
1154
- "node_modules/@jridgewell/trace-mapping": {
1155
- "version": "0.3.25",
1156
- "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz",
1157
- "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==",
1158
- "license": "MIT",
1159
- "dependencies": {
1160
- "@jridgewell/resolve-uri": "^3.1.0",
1161
- "@jridgewell/sourcemap-codec": "^1.4.14"
1162
- }
1163
- },
1164
- "node_modules/@mui/core-downloads-tracker": {
1165
- "version": "6.4.1",
1166
- "resolved": "https://registry.npmjs.org/@mui/core-downloads-tracker/-/core-downloads-tracker-6.4.1.tgz",
1167
- "integrity": "sha512-SfDLWMV5b5oXgDf3NTa2hCTPC1d2defhDH2WgFKmAiejC4mSfXYbyi+AFCLzpizauXhgBm8OaZy9BHKnrSpahQ==",
1168
- "license": "MIT",
1169
- "funding": {
1170
- "type": "opencollective",
1171
- "url": "https://opencollective.com/mui-org"
1172
- }
1173
- },
1174
- "node_modules/@mui/icons-material": {
1175
- "version": "6.4.1",
1176
- "resolved": "https://registry.npmjs.org/@mui/icons-material/-/icons-material-6.4.1.tgz",
1177
- "integrity": "sha512-wsxFcUTQxt4s+7Bg4GgobqRjyaHLmZGNOs+HJpbwrwmLbT6mhIJxhpqsKzzWq9aDY8xIe7HCjhpH7XI5UD6teA==",
1178
- "license": "MIT",
1179
- "dependencies": {
1180
- "@babel/runtime": "^7.26.0"
1181
- },
1182
- "engines": {
1183
- "node": ">=14.0.0"
1184
- },
1185
- "funding": {
1186
- "type": "opencollective",
1187
- "url": "https://opencollective.com/mui-org"
1188
- },
1189
- "peerDependencies": {
1190
- "@mui/material": "^6.4.1",
1191
- "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0",
1192
- "react": "^17.0.0 || ^18.0.0 || ^19.0.0"
1193
- },
1194
- "peerDependenciesMeta": {
1195
- "@types/react": {
1196
- "optional": true
1197
- }
1198
- }
1199
- },
1200
- "node_modules/@mui/material": {
1201
- "version": "6.4.1",
1202
- "resolved": "https://registry.npmjs.org/@mui/material/-/material-6.4.1.tgz",
1203
- "integrity": "sha512-MFBfia6UiKxyoLeGkAh8M15bkeDmfnsUTMRJd/vTQue6YQ8AQ6lw9HqDthyYghzDEWIvZO/lQQzLrZE8XwNJLA==",
1204
- "license": "MIT",
1205
- "dependencies": {
1206
- "@babel/runtime": "^7.26.0",
1207
- "@mui/core-downloads-tracker": "^6.4.1",
1208
- "@mui/system": "^6.4.1",
1209
- "@mui/types": "^7.2.21",
1210
- "@mui/utils": "^6.4.1",
1211
- "@popperjs/core": "^2.11.8",
1212
- "@types/react-transition-group": "^4.4.12",
1213
- "clsx": "^2.1.1",
1214
- "csstype": "^3.1.3",
1215
- "prop-types": "^15.8.1",
1216
- "react-is": "^19.0.0",
1217
- "react-transition-group": "^4.4.5"
1218
- },
1219
- "engines": {
1220
- "node": ">=14.0.0"
1221
- },
1222
- "funding": {
1223
- "type": "opencollective",
1224
- "url": "https://opencollective.com/mui-org"
1225
- },
1226
- "peerDependencies": {
1227
- "@emotion/react": "^11.5.0",
1228
- "@emotion/styled": "^11.3.0",
1229
- "@mui/material-pigment-css": "^6.4.1",
1230
- "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0",
1231
- "react": "^17.0.0 || ^18.0.0 || ^19.0.0",
1232
- "react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0"
1233
- },
1234
- "peerDependenciesMeta": {
1235
- "@emotion/react": {
1236
- "optional": true
1237
- },
1238
- "@emotion/styled": {
1239
- "optional": true
1240
- },
1241
- "@mui/material-pigment-css": {
1242
- "optional": true
1243
- },
1244
- "@types/react": {
1245
- "optional": true
1246
- }
1247
- }
1248
- },
1249
- "node_modules/@mui/private-theming": {
1250
- "version": "6.4.1",
1251
- "resolved": "https://registry.npmjs.org/@mui/private-theming/-/private-theming-6.4.1.tgz",
1252
- "integrity": "sha512-DcT7mwK89owwgcEuiE7w458te4CIjHbYWW6Kn6PiR6eLtxBsoBYphA968uqsQAOBQDpbYxvkuFLwhgk4bxoN/Q==",
1253
- "license": "MIT",
1254
- "dependencies": {
1255
- "@babel/runtime": "^7.26.0",
1256
- "@mui/utils": "^6.4.1",
1257
- "prop-types": "^15.8.1"
1258
- },
1259
- "engines": {
1260
- "node": ">=14.0.0"
1261
- },
1262
- "funding": {
1263
- "type": "opencollective",
1264
- "url": "https://opencollective.com/mui-org"
1265
- },
1266
- "peerDependencies": {
1267
- "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0",
1268
- "react": "^17.0.0 || ^18.0.0 || ^19.0.0"
1269
- },
1270
- "peerDependenciesMeta": {
1271
- "@types/react": {
1272
- "optional": true
1273
- }
1274
- }
1275
- },
1276
- "node_modules/@mui/styled-engine": {
1277
- "version": "6.4.0",
1278
- "resolved": "https://registry.npmjs.org/@mui/styled-engine/-/styled-engine-6.4.0.tgz",
1279
- "integrity": "sha512-ek/ZrDujrger12P6o4luQIfRd2IziH7jQod2WMbLqGE03Iy0zUwYmckRTVhRQTLPNccpD8KXGcALJF+uaUQlbg==",
1280
- "license": "MIT",
1281
- "dependencies": {
1282
- "@babel/runtime": "^7.26.0",
1283
- "@emotion/cache": "^11.13.5",
1284
- "@emotion/serialize": "^1.3.3",
1285
- "@emotion/sheet": "^1.4.0",
1286
- "csstype": "^3.1.3",
1287
- "prop-types": "^15.8.1"
1288
- },
1289
- "engines": {
1290
- "node": ">=14.0.0"
1291
- },
1292
- "funding": {
1293
- "type": "opencollective",
1294
- "url": "https://opencollective.com/mui-org"
1295
- },
1296
- "peerDependencies": {
1297
- "@emotion/react": "^11.4.1",
1298
- "@emotion/styled": "^11.3.0",
1299
- "react": "^17.0.0 || ^18.0.0 || ^19.0.0"
1300
- },
1301
- "peerDependenciesMeta": {
1302
- "@emotion/react": {
1303
- "optional": true
1304
- },
1305
- "@emotion/styled": {
1306
- "optional": true
1307
- }
1308
- }
1309
- },
1310
- "node_modules/@mui/system": {
1311
- "version": "6.4.1",
1312
- "resolved": "https://registry.npmjs.org/@mui/system/-/system-6.4.1.tgz",
1313
- "integrity": "sha512-rgQzgcsHCTtzF9MZ+sL0tOhf2ZBLazpjrujClcb4Siju5lTrK0xX4PsiropActzCemNfM+mOu+0jezAVnfRK8g==",
1314
- "license": "MIT",
1315
- "dependencies": {
1316
- "@babel/runtime": "^7.26.0",
1317
- "@mui/private-theming": "^6.4.1",
1318
- "@mui/styled-engine": "^6.4.0",
1319
- "@mui/types": "^7.2.21",
1320
- "@mui/utils": "^6.4.1",
1321
- "clsx": "^2.1.1",
1322
- "csstype": "^3.1.3",
1323
- "prop-types": "^15.8.1"
1324
- },
1325
- "engines": {
1326
- "node": ">=14.0.0"
1327
- },
1328
- "funding": {
1329
- "type": "opencollective",
1330
- "url": "https://opencollective.com/mui-org"
1331
- },
1332
- "peerDependencies": {
1333
- "@emotion/react": "^11.5.0",
1334
- "@emotion/styled": "^11.3.0",
1335
- "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0",
1336
- "react": "^17.0.0 || ^18.0.0 || ^19.0.0"
1337
- },
1338
- "peerDependenciesMeta": {
1339
- "@emotion/react": {
1340
- "optional": true
1341
- },
1342
- "@emotion/styled": {
1343
- "optional": true
1344
- },
1345
- "@types/react": {
1346
- "optional": true
1347
- }
1348
- }
1349
- },
1350
- "node_modules/@mui/types": {
1351
- "version": "7.2.21",
1352
- "resolved": "https://registry.npmjs.org/@mui/types/-/types-7.2.21.tgz",
1353
- "integrity": "sha512-6HstngiUxNqLU+/DPqlUJDIPbzUBxIVHb1MmXP0eTWDIROiCR2viugXpEif0PPe2mLqqakPzzRClWAnK+8UJww==",
1354
- "license": "MIT",
1355
- "peerDependencies": {
1356
- "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0"
1357
- },
1358
- "peerDependenciesMeta": {
1359
- "@types/react": {
1360
- "optional": true
1361
- }
1362
- }
1363
- },
1364
- "node_modules/@mui/utils": {
1365
- "version": "6.4.1",
1366
- "resolved": "https://registry.npmjs.org/@mui/utils/-/utils-6.4.1.tgz",
1367
- "integrity": "sha512-iQUDUeYh87SvR4lVojaRaYnQix8BbRV51MxaV6MBmqthecQoxwSbS5e2wnbDJUeFxY2ppV505CiqPLtd0OWkqw==",
1368
- "license": "MIT",
1369
- "dependencies": {
1370
- "@babel/runtime": "^7.26.0",
1371
- "@mui/types": "^7.2.21",
1372
- "@types/prop-types": "^15.7.14",
1373
- "clsx": "^2.1.1",
1374
- "prop-types": "^15.8.1",
1375
- "react-is": "^19.0.0"
1376
- },
1377
- "engines": {
1378
- "node": ">=14.0.0"
1379
- },
1380
- "funding": {
1381
- "type": "opencollective",
1382
- "url": "https://opencollective.com/mui-org"
1383
- },
1384
- "peerDependencies": {
1385
- "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0",
1386
- "react": "^17.0.0 || ^18.0.0 || ^19.0.0"
1387
- },
1388
- "peerDependenciesMeta": {
1389
- "@types/react": {
1390
- "optional": true
1391
- }
1392
- }
1393
- },
1394
- "node_modules/@nodelib/fs.scandir": {
1395
- "version": "2.1.5",
1396
- "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
1397
- "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
1398
- "dev": true,
1399
- "license": "MIT",
1400
- "dependencies": {
1401
- "@nodelib/fs.stat": "2.0.5",
1402
- "run-parallel": "^1.1.9"
1403
- },
1404
- "engines": {
1405
- "node": ">= 8"
1406
- }
1407
- },
1408
- "node_modules/@nodelib/fs.stat": {
1409
- "version": "2.0.5",
1410
- "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
1411
- "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
1412
- "dev": true,
1413
- "license": "MIT",
1414
- "engines": {
1415
- "node": ">= 8"
1416
- }
1417
- },
1418
- "node_modules/@nodelib/fs.walk": {
1419
- "version": "1.2.8",
1420
- "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
1421
- "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
1422
- "dev": true,
1423
- "license": "MIT",
1424
- "dependencies": {
1425
- "@nodelib/fs.scandir": "2.1.5",
1426
- "fastq": "^1.6.0"
1427
- },
1428
- "engines": {
1429
- "node": ">= 8"
1430
- }
1431
- },
1432
- "node_modules/@popperjs/core": {
1433
- "version": "2.11.8",
1434
- "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz",
1435
- "integrity": "sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==",
1436
- "license": "MIT",
1437
- "funding": {
1438
- "type": "opencollective",
1439
- "url": "https://opencollective.com/popperjs"
1440
- }
1441
- },
1442
- "node_modules/@rollup/rollup-android-arm-eabi": {
1443
- "version": "4.32.1",
1444
- "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.32.1.tgz",
1445
- "integrity": "sha512-/pqA4DmqyCm8u5YIDzIdlLcEmuvxb0v8fZdFhVMszSpDTgbQKdw3/mB3eMUHIbubtJ6F9j+LtmyCnHTEqIHyzA==",
1446
- "cpu": [
1447
- "arm"
1448
- ],
1449
- "dev": true,
1450
- "license": "MIT",
1451
- "optional": true,
1452
- "os": [
1453
- "android"
1454
- ]
1455
- },
1456
- "node_modules/@rollup/rollup-android-arm64": {
1457
- "version": "4.32.1",
1458
- "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.32.1.tgz",
1459
- "integrity": "sha512-If3PDskT77q7zgqVqYuj7WG3WC08G1kwXGVFi9Jr8nY6eHucREHkfpX79c0ACAjLj3QIWKPJR7w4i+f5EdLH5Q==",
1460
- "cpu": [
1461
- "arm64"
1462
- ],
1463
- "dev": true,
1464
- "license": "MIT",
1465
- "optional": true,
1466
- "os": [
1467
- "android"
1468
- ]
1469
- },
1470
- "node_modules/@rollup/rollup-darwin-arm64": {
1471
- "version": "4.32.1",
1472
- "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.32.1.tgz",
1473
- "integrity": "sha512-zCpKHioQ9KgZToFp5Wvz6zaWbMzYQ2LJHQ+QixDKq52KKrF65ueu6Af4hLlLWHjX1Wf/0G5kSJM9PySW9IrvHA==",
1474
- "cpu": [
1475
- "arm64"
1476
- ],
1477
- "dev": true,
1478
- "license": "MIT",
1479
- "optional": true,
1480
- "os": [
1481
- "darwin"
1482
- ]
1483
- },
1484
- "node_modules/@rollup/rollup-darwin-x64": {
1485
- "version": "4.32.1",
1486
- "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.32.1.tgz",
1487
- "integrity": "sha512-sFvF+t2+TyUo/ZQqUcifrJIgznx58oFZbdHS9TvHq3xhPVL9nOp+yZ6LKrO9GWTP+6DbFtoyLDbjTpR62Mbr3Q==",
1488
- "cpu": [
1489
- "x64"
1490
- ],
1491
- "dev": true,
1492
- "license": "MIT",
1493
- "optional": true,
1494
- "os": [
1495
- "darwin"
1496
- ]
1497
- },
1498
- "node_modules/@rollup/rollup-freebsd-arm64": {
1499
- "version": "4.32.1",
1500
- "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.32.1.tgz",
1501
- "integrity": "sha512-NbOa+7InvMWRcY9RG+B6kKIMD/FsnQPH0MWUvDlQB1iXnF/UcKSudCXZtv4lW+C276g3w5AxPbfry5rSYvyeYA==",
1502
- "cpu": [
1503
- "arm64"
1504
- ],
1505
- "dev": true,
1506
- "license": "MIT",
1507
- "optional": true,
1508
- "os": [
1509
- "freebsd"
1510
- ]
1511
- },
1512
- "node_modules/@rollup/rollup-freebsd-x64": {
1513
- "version": "4.32.1",
1514
- "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.32.1.tgz",
1515
- "integrity": "sha512-JRBRmwvHPXR881j2xjry8HZ86wIPK2CcDw0EXchE1UgU0ubWp9nvlT7cZYKc6bkypBt745b4bglf3+xJ7hXWWw==",
1516
- "cpu": [
1517
- "x64"
1518
- ],
1519
- "dev": true,
1520
- "license": "MIT",
1521
- "optional": true,
1522
- "os": [
1523
- "freebsd"
1524
- ]
1525
- },
1526
- "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
1527
- "version": "4.32.1",
1528
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.32.1.tgz",
1529
- "integrity": "sha512-PKvszb+9o/vVdUzCCjL0sKHukEQV39tD3fepXxYrHE3sTKrRdCydI7uldRLbjLmDA3TFDmh418XH19NOsDRH8g==",
1530
- "cpu": [
1531
- "arm"
1532
- ],
1533
- "dev": true,
1534
- "license": "MIT",
1535
- "optional": true,
1536
- "os": [
1537
- "linux"
1538
- ]
1539
- },
1540
- "node_modules/@rollup/rollup-linux-arm-musleabihf": {
1541
- "version": "4.32.1",
1542
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.32.1.tgz",
1543
- "integrity": "sha512-9WHEMV6Y89eL606ReYowXuGF1Yb2vwfKWKdD1A5h+OYnPZSJvxbEjxTRKPgi7tkP2DSnW0YLab1ooy+i/FQp/Q==",
1544
- "cpu": [
1545
- "arm"
1546
- ],
1547
- "dev": true,
1548
- "license": "MIT",
1549
- "optional": true,
1550
- "os": [
1551
- "linux"
1552
- ]
1553
- },
1554
- "node_modules/@rollup/rollup-linux-arm64-gnu": {
1555
- "version": "4.32.1",
1556
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.32.1.tgz",
1557
- "integrity": "sha512-tZWc9iEt5fGJ1CL2LRPw8OttkCBDs+D8D3oEM8mH8S1ICZCtFJhD7DZ3XMGM8kpqHvhGUTvNUYVDnmkj4BDXnw==",
1558
- "cpu": [
1559
- "arm64"
1560
- ],
1561
- "dev": true,
1562
- "license": "MIT",
1563
- "optional": true,
1564
- "os": [
1565
- "linux"
1566
- ]
1567
- },
1568
- "node_modules/@rollup/rollup-linux-arm64-musl": {
1569
- "version": "4.32.1",
1570
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.32.1.tgz",
1571
- "integrity": "sha512-FTYc2YoTWUsBz5GTTgGkRYYJ5NGJIi/rCY4oK/I8aKowx1ToXeoVVbIE4LGAjsauvlhjfl0MYacxClLld1VrOw==",
1572
- "cpu": [
1573
- "arm64"
1574
- ],
1575
- "dev": true,
1576
- "license": "MIT",
1577
- "optional": true,
1578
- "os": [
1579
- "linux"
1580
- ]
1581
- },
1582
- "node_modules/@rollup/rollup-linux-loongarch64-gnu": {
1583
- "version": "4.32.1",
1584
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.32.1.tgz",
1585
- "integrity": "sha512-F51qLdOtpS6P1zJVRzYM0v6MrBNypyPEN1GfMiz0gPu9jN8ScGaEFIZQwteSsGKg799oR5EaP7+B2jHgL+d+Kw==",
1586
- "cpu": [
1587
- "loong64"
1588
- ],
1589
- "dev": true,
1590
- "license": "MIT",
1591
- "optional": true,
1592
- "os": [
1593
- "linux"
1594
- ]
1595
- },
1596
- "node_modules/@rollup/rollup-linux-powerpc64le-gnu": {
1597
- "version": "4.32.1",
1598
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.32.1.tgz",
1599
- "integrity": "sha512-wO0WkfSppfX4YFm5KhdCCpnpGbtgQNj/tgvYzrVYFKDpven8w2N6Gg5nB6w+wAMO3AIfSTWeTjfVe+uZ23zAlg==",
1600
- "cpu": [
1601
- "ppc64"
1602
- ],
1603
- "dev": true,
1604
- "license": "MIT",
1605
- "optional": true,
1606
- "os": [
1607
- "linux"
1608
- ]
1609
- },
1610
- "node_modules/@rollup/rollup-linux-riscv64-gnu": {
1611
- "version": "4.32.1",
1612
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.32.1.tgz",
1613
- "integrity": "sha512-iWswS9cIXfJO1MFYtI/4jjlrGb/V58oMu4dYJIKnR5UIwbkzR0PJ09O0PDZT0oJ3LYWXBSWahNf/Mjo6i1E5/g==",
1614
- "cpu": [
1615
- "riscv64"
1616
- ],
1617
- "dev": true,
1618
- "license": "MIT",
1619
- "optional": true,
1620
- "os": [
1621
- "linux"
1622
- ]
1623
- },
1624
- "node_modules/@rollup/rollup-linux-s390x-gnu": {
1625
- "version": "4.32.1",
1626
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.32.1.tgz",
1627
- "integrity": "sha512-RKt8NI9tebzmEthMnfVgG3i/XeECkMPS+ibVZjZ6mNekpbbUmkNWuIN2yHsb/mBPyZke4nlI4YqIdFPgKuoyQQ==",
1628
- "cpu": [
1629
- "s390x"
1630
- ],
1631
- "dev": true,
1632
- "license": "MIT",
1633
- "optional": true,
1634
- "os": [
1635
- "linux"
1636
- ]
1637
- },
1638
- "node_modules/@rollup/rollup-linux-x64-gnu": {
1639
- "version": "4.32.1",
1640
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.32.1.tgz",
1641
- "integrity": "sha512-WQFLZ9c42ECqEjwg/GHHsouij3pzLXkFdz0UxHa/0OM12LzvX7DzedlY0SIEly2v18YZLRhCRoHZDxbBSWoGYg==",
1642
- "cpu": [
1643
- "x64"
1644
- ],
1645
- "dev": true,
1646
- "license": "MIT",
1647
- "optional": true,
1648
- "os": [
1649
- "linux"
1650
- ]
1651
- },
1652
- "node_modules/@rollup/rollup-linux-x64-musl": {
1653
- "version": "4.32.1",
1654
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.32.1.tgz",
1655
- "integrity": "sha512-BLoiyHDOWoS3uccNSADMza6V6vCNiphi94tQlVIL5de+r6r/CCQuNnerf+1g2mnk2b6edp5dk0nhdZ7aEjOBsA==",
1656
- "cpu": [
1657
- "x64"
1658
- ],
1659
- "dev": true,
1660
- "license": "MIT",
1661
- "optional": true,
1662
- "os": [
1663
- "linux"
1664
- ]
1665
- },
1666
- "node_modules/@rollup/rollup-win32-arm64-msvc": {
1667
- "version": "4.32.1",
1668
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.32.1.tgz",
1669
- "integrity": "sha512-w2l3UnlgYTNNU+Z6wOR8YdaioqfEnwPjIsJ66KxKAf0p+AuL2FHeTX6qvM+p/Ue3XPBVNyVSfCrfZiQh7vZHLQ==",
1670
- "cpu": [
1671
- "arm64"
1672
- ],
1673
- "dev": true,
1674
- "license": "MIT",
1675
- "optional": true,
1676
- "os": [
1677
- "win32"
1678
- ]
1679
- },
1680
- "node_modules/@rollup/rollup-win32-ia32-msvc": {
1681
- "version": "4.32.1",
1682
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.32.1.tgz",
1683
- "integrity": "sha512-Am9H+TGLomPGkBnaPWie4F3x+yQ2rr4Bk2jpwy+iV+Gel9jLAu/KqT8k3X4jxFPW6Zf8OMnehyutsd+eHoq1WQ==",
1684
- "cpu": [
1685
- "ia32"
1686
- ],
1687
- "dev": true,
1688
- "license": "MIT",
1689
- "optional": true,
1690
- "os": [
1691
- "win32"
1692
- ]
1693
- },
1694
- "node_modules/@rollup/rollup-win32-x64-msvc": {
1695
- "version": "4.32.1",
1696
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.32.1.tgz",
1697
- "integrity": "sha512-ar80GhdZb4DgmW3myIS9nRFYcpJRSME8iqWgzH2i44u+IdrzmiXVxeFnExQ5v4JYUSpg94bWjevMG8JHf1Da5Q==",
1698
- "cpu": [
1699
- "x64"
1700
- ],
1701
- "dev": true,
1702
- "license": "MIT",
1703
- "optional": true,
1704
- "os": [
1705
- "win32"
1706
- ]
1707
- },
1708
- "node_modules/@types/babel__core": {
1709
- "version": "7.20.5",
1710
- "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz",
1711
- "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==",
1712
- "dev": true,
1713
- "license": "MIT",
1714
- "dependencies": {
1715
- "@babel/parser": "^7.20.7",
1716
- "@babel/types": "^7.20.7",
1717
- "@types/babel__generator": "*",
1718
- "@types/babel__template": "*",
1719
- "@types/babel__traverse": "*"
1720
- }
1721
- },
1722
- "node_modules/@types/babel__generator": {
1723
- "version": "7.6.8",
1724
- "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz",
1725
- "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==",
1726
- "dev": true,
1727
- "license": "MIT",
1728
- "dependencies": {
1729
- "@babel/types": "^7.0.0"
1730
- }
1731
- },
1732
- "node_modules/@types/babel__template": {
1733
- "version": "7.4.4",
1734
- "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz",
1735
- "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==",
1736
- "dev": true,
1737
- "license": "MIT",
1738
- "dependencies": {
1739
- "@babel/parser": "^7.1.0",
1740
- "@babel/types": "^7.0.0"
1741
- }
1742
- },
1743
- "node_modules/@types/babel__traverse": {
1744
- "version": "7.20.6",
1745
- "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.6.tgz",
1746
- "integrity": "sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==",
1747
- "dev": true,
1748
- "license": "MIT",
1749
- "dependencies": {
1750
- "@babel/types": "^7.20.7"
1751
- }
1752
- },
1753
- "node_modules/@types/estree": {
1754
- "version": "1.0.6",
1755
- "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz",
1756
- "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==",
1757
- "dev": true,
1758
- "license": "MIT"
1759
- },
1760
- "node_modules/@types/json-schema": {
1761
- "version": "7.0.15",
1762
- "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz",
1763
- "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==",
1764
- "dev": true,
1765
- "license": "MIT"
1766
- },
1767
- "node_modules/@types/parse-json": {
1768
- "version": "4.0.2",
1769
- "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz",
1770
- "integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==",
1771
- "license": "MIT"
1772
- },
1773
- "node_modules/@types/prop-types": {
1774
- "version": "15.7.14",
1775
- "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.14.tgz",
1776
- "integrity": "sha512-gNMvNH49DJ7OJYv+KAKn0Xp45p8PLl6zo2YnvDIbTd4J6MER2BmWN49TG7n9LvkyihINxeKW8+3bfS2yDC9dzQ==",
1777
- "license": "MIT"
1778
- },
1779
- "node_modules/@types/react": {
1780
- "version": "18.3.18",
1781
- "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.18.tgz",
1782
- "integrity": "sha512-t4yC+vtgnkYjNSKlFx1jkAhH8LgTo2N/7Qvi83kdEaUtMDiwpbLAktKDaAMlRcJ5eSxZkH74eEGt1ky31d7kfQ==",
1783
- "license": "MIT",
1784
- "dependencies": {
1785
- "@types/prop-types": "*",
1786
- "csstype": "^3.0.2"
1787
- }
1788
- },
1789
- "node_modules/@types/react-dom": {
1790
- "version": "18.3.5",
1791
- "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.3.5.tgz",
1792
- "integrity": "sha512-P4t6saawp+b/dFrUr2cvkVsfvPguwsxtH6dNIYRllMsefqFzkZk5UIjzyDOv5g1dXIPdG4Sp1yCR4Z6RCUsG/Q==",
1793
- "dev": true,
1794
- "license": "MIT",
1795
- "peerDependencies": {
1796
- "@types/react": "^18.0.0"
1797
- }
1798
- },
1799
- "node_modules/@types/react-transition-group": {
1800
- "version": "4.4.12",
1801
- "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.12.tgz",
1802
- "integrity": "sha512-8TV6R3h2j7a91c+1DXdJi3Syo69zzIZbz7Lg5tORM5LEJG7X/E6a1V3drRyBRZq7/utz7A+c4OgYLiLcYGHG6w==",
1803
- "license": "MIT",
1804
- "peerDependencies": {
1805
- "@types/react": "*"
1806
- }
1807
- },
1808
- "node_modules/@typescript-eslint/eslint-plugin": {
1809
- "version": "8.22.0",
1810
- "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.22.0.tgz",
1811
- "integrity": "sha512-4Uta6REnz/xEJMvwf72wdUnC3rr4jAQf5jnTkeRQ9b6soxLxhDEbS/pfMPoJLDfFPNVRdryqWUIV/2GZzDJFZw==",
1812
- "dev": true,
1813
- "license": "MIT",
1814
- "dependencies": {
1815
- "@eslint-community/regexpp": "^4.10.0",
1816
- "@typescript-eslint/scope-manager": "8.22.0",
1817
- "@typescript-eslint/type-utils": "8.22.0",
1818
- "@typescript-eslint/utils": "8.22.0",
1819
- "@typescript-eslint/visitor-keys": "8.22.0",
1820
- "graphemer": "^1.4.0",
1821
- "ignore": "^5.3.1",
1822
- "natural-compare": "^1.4.0",
1823
- "ts-api-utils": "^2.0.0"
1824
- },
1825
- "engines": {
1826
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1827
- },
1828
- "funding": {
1829
- "type": "opencollective",
1830
- "url": "https://opencollective.com/typescript-eslint"
1831
- },
1832
- "peerDependencies": {
1833
- "@typescript-eslint/parser": "^8.0.0 || ^8.0.0-alpha.0",
1834
- "eslint": "^8.57.0 || ^9.0.0",
1835
- "typescript": ">=4.8.4 <5.8.0"
1836
- }
1837
- },
1838
- "node_modules/@typescript-eslint/parser": {
1839
- "version": "8.22.0",
1840
- "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.22.0.tgz",
1841
- "integrity": "sha512-MqtmbdNEdoNxTPzpWiWnqNac54h8JDAmkWtJExBVVnSrSmi9z+sZUt0LfKqk9rjqmKOIeRhO4fHHJ1nQIjduIQ==",
1842
- "dev": true,
1843
- "license": "MIT",
1844
- "dependencies": {
1845
- "@typescript-eslint/scope-manager": "8.22.0",
1846
- "@typescript-eslint/types": "8.22.0",
1847
- "@typescript-eslint/typescript-estree": "8.22.0",
1848
- "@typescript-eslint/visitor-keys": "8.22.0",
1849
- "debug": "^4.3.4"
1850
- },
1851
- "engines": {
1852
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1853
- },
1854
- "funding": {
1855
- "type": "opencollective",
1856
- "url": "https://opencollective.com/typescript-eslint"
1857
- },
1858
- "peerDependencies": {
1859
- "eslint": "^8.57.0 || ^9.0.0",
1860
- "typescript": ">=4.8.4 <5.8.0"
1861
- }
1862
- },
1863
- "node_modules/@typescript-eslint/scope-manager": {
1864
- "version": "8.22.0",
1865
- "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.22.0.tgz",
1866
- "integrity": "sha512-/lwVV0UYgkj7wPSw0o8URy6YI64QmcOdwHuGuxWIYznO6d45ER0wXUbksr9pYdViAofpUCNJx/tAzNukgvaaiQ==",
1867
- "dev": true,
1868
- "license": "MIT",
1869
- "dependencies": {
1870
- "@typescript-eslint/types": "8.22.0",
1871
- "@typescript-eslint/visitor-keys": "8.22.0"
1872
- },
1873
- "engines": {
1874
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1875
- },
1876
- "funding": {
1877
- "type": "opencollective",
1878
- "url": "https://opencollective.com/typescript-eslint"
1879
- }
1880
- },
1881
- "node_modules/@typescript-eslint/type-utils": {
1882
- "version": "8.22.0",
1883
- "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.22.0.tgz",
1884
- "integrity": "sha512-NzE3aB62fDEaGjaAYZE4LH7I1MUwHooQ98Byq0G0y3kkibPJQIXVUspzlFOmOfHhiDLwKzMlWxaNv+/qcZurJA==",
1885
- "dev": true,
1886
- "license": "MIT",
1887
- "dependencies": {
1888
- "@typescript-eslint/typescript-estree": "8.22.0",
1889
- "@typescript-eslint/utils": "8.22.0",
1890
- "debug": "^4.3.4",
1891
- "ts-api-utils": "^2.0.0"
1892
- },
1893
- "engines": {
1894
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1895
- },
1896
- "funding": {
1897
- "type": "opencollective",
1898
- "url": "https://opencollective.com/typescript-eslint"
1899
- },
1900
- "peerDependencies": {
1901
- "eslint": "^8.57.0 || ^9.0.0",
1902
- "typescript": ">=4.8.4 <5.8.0"
1903
- }
1904
- },
1905
- "node_modules/@typescript-eslint/types": {
1906
- "version": "8.22.0",
1907
- "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.22.0.tgz",
1908
- "integrity": "sha512-0S4M4baNzp612zwpD4YOieP3VowOARgK2EkN/GBn95hpyF8E2fbMT55sRHWBq+Huaqk3b3XK+rxxlM8sPgGM6A==",
1909
- "dev": true,
1910
- "license": "MIT",
1911
- "engines": {
1912
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1913
- },
1914
- "funding": {
1915
- "type": "opencollective",
1916
- "url": "https://opencollective.com/typescript-eslint"
1917
- }
1918
- },
1919
- "node_modules/@typescript-eslint/typescript-estree": {
1920
- "version": "8.22.0",
1921
- "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.22.0.tgz",
1922
- "integrity": "sha512-SJX99NAS2ugGOzpyhMza/tX+zDwjvwAtQFLsBo3GQxiGcvaKlqGBkmZ+Y1IdiSi9h4Q0Lr5ey+Cp9CGWNY/F/w==",
1923
- "dev": true,
1924
- "license": "MIT",
1925
- "dependencies": {
1926
- "@typescript-eslint/types": "8.22.0",
1927
- "@typescript-eslint/visitor-keys": "8.22.0",
1928
- "debug": "^4.3.4",
1929
- "fast-glob": "^3.3.2",
1930
- "is-glob": "^4.0.3",
1931
- "minimatch": "^9.0.4",
1932
- "semver": "^7.6.0",
1933
- "ts-api-utils": "^2.0.0"
1934
- },
1935
- "engines": {
1936
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1937
- },
1938
- "funding": {
1939
- "type": "opencollective",
1940
- "url": "https://opencollective.com/typescript-eslint"
1941
- },
1942
- "peerDependencies": {
1943
- "typescript": ">=4.8.4 <5.8.0"
1944
- }
1945
- },
1946
- "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": {
1947
- "version": "2.0.1",
1948
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
1949
- "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
1950
- "dev": true,
1951
- "license": "MIT",
1952
- "dependencies": {
1953
- "balanced-match": "^1.0.0"
1954
- }
1955
- },
1956
- "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": {
1957
- "version": "9.0.5",
1958
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
1959
- "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
1960
- "dev": true,
1961
- "license": "ISC",
1962
- "dependencies": {
1963
- "brace-expansion": "^2.0.1"
1964
- },
1965
- "engines": {
1966
- "node": ">=16 || 14 >=14.17"
1967
- },
1968
- "funding": {
1969
- "url": "https://github.com/sponsors/isaacs"
1970
- }
1971
- },
1972
- "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": {
1973
- "version": "7.6.3",
1974
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
1975
- "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==",
1976
- "dev": true,
1977
- "license": "ISC",
1978
- "bin": {
1979
- "semver": "bin/semver.js"
1980
- },
1981
- "engines": {
1982
- "node": ">=10"
1983
- }
1984
- },
1985
- "node_modules/@typescript-eslint/utils": {
1986
- "version": "8.22.0",
1987
- "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.22.0.tgz",
1988
- "integrity": "sha512-T8oc1MbF8L+Bk2msAvCUzjxVB2Z2f+vXYfcucE2wOmYs7ZUwco5Ep0fYZw8quNwOiw9K8GYVL+Kgc2pETNTLOg==",
1989
- "dev": true,
1990
- "license": "MIT",
1991
- "dependencies": {
1992
- "@eslint-community/eslint-utils": "^4.4.0",
1993
- "@typescript-eslint/scope-manager": "8.22.0",
1994
- "@typescript-eslint/types": "8.22.0",
1995
- "@typescript-eslint/typescript-estree": "8.22.0"
1996
- },
1997
- "engines": {
1998
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1999
- },
2000
- "funding": {
2001
- "type": "opencollective",
2002
- "url": "https://opencollective.com/typescript-eslint"
2003
- },
2004
- "peerDependencies": {
2005
- "eslint": "^8.57.0 || ^9.0.0",
2006
- "typescript": ">=4.8.4 <5.8.0"
2007
- }
2008
- },
2009
- "node_modules/@typescript-eslint/visitor-keys": {
2010
- "version": "8.22.0",
2011
- "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.22.0.tgz",
2012
- "integrity": "sha512-AWpYAXnUgvLNabGTy3uBylkgZoosva/miNd1I8Bz3SjotmQPbVqhO4Cczo8AsZ44XVErEBPr/CRSgaj8sG7g0w==",
2013
- "dev": true,
2014
- "license": "MIT",
2015
- "dependencies": {
2016
- "@typescript-eslint/types": "8.22.0",
2017
- "eslint-visitor-keys": "^4.2.0"
2018
- },
2019
- "engines": {
2020
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
2021
- },
2022
- "funding": {
2023
- "type": "opencollective",
2024
- "url": "https://opencollective.com/typescript-eslint"
2025
- }
2026
- },
2027
- "node_modules/@vitejs/plugin-react": {
2028
- "version": "4.3.4",
2029
- "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-4.3.4.tgz",
2030
- "integrity": "sha512-SCCPBJtYLdE8PX/7ZQAs1QAZ8Jqwih+0VBLum1EGqmCCQal+MIUqLCzj3ZUy8ufbC0cAM4LRlSTm7IQJwWT4ug==",
2031
- "dev": true,
2032
- "license": "MIT",
2033
- "dependencies": {
2034
- "@babel/core": "^7.26.0",
2035
- "@babel/plugin-transform-react-jsx-self": "^7.25.9",
2036
- "@babel/plugin-transform-react-jsx-source": "^7.25.9",
2037
- "@types/babel__core": "^7.20.5",
2038
- "react-refresh": "^0.14.2"
2039
- },
2040
- "engines": {
2041
- "node": "^14.18.0 || >=16.0.0"
2042
- },
2043
- "peerDependencies": {
2044
- "vite": "^4.2.0 || ^5.0.0 || ^6.0.0"
2045
- }
2046
- },
2047
- "node_modules/acorn": {
2048
- "version": "8.14.0",
2049
- "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz",
2050
- "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==",
2051
- "dev": true,
2052
- "license": "MIT",
2053
- "bin": {
2054
- "acorn": "bin/acorn"
2055
- },
2056
- "engines": {
2057
- "node": ">=0.4.0"
2058
- }
2059
- },
2060
- "node_modules/acorn-jsx": {
2061
- "version": "5.3.2",
2062
- "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
2063
- "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
2064
- "dev": true,
2065
- "license": "MIT",
2066
- "peerDependencies": {
2067
- "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
2068
- }
2069
- },
2070
- "node_modules/ajv": {
2071
- "version": "6.12.6",
2072
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
2073
- "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
2074
- "dev": true,
2075
- "license": "MIT",
2076
- "dependencies": {
2077
- "fast-deep-equal": "^3.1.1",
2078
- "fast-json-stable-stringify": "^2.0.0",
2079
- "json-schema-traverse": "^0.4.1",
2080
- "uri-js": "^4.2.2"
2081
- },
2082
- "funding": {
2083
- "type": "github",
2084
- "url": "https://github.com/sponsors/epoberezkin"
2085
- }
2086
- },
2087
- "node_modules/ansi-styles": {
2088
- "version": "4.3.0",
2089
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
2090
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
2091
- "dev": true,
2092
- "license": "MIT",
2093
- "dependencies": {
2094
- "color-convert": "^2.0.1"
2095
- },
2096
- "engines": {
2097
- "node": ">=8"
2098
- },
2099
- "funding": {
2100
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
2101
- }
2102
- },
2103
- "node_modules/argparse": {
2104
- "version": "2.0.1",
2105
- "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
2106
- "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
2107
- "dev": true,
2108
- "license": "Python-2.0"
2109
- },
2110
- "node_modules/array-union": {
2111
- "version": "2.1.0",
2112
- "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz",
2113
- "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==",
2114
- "dev": true,
2115
- "license": "MIT",
2116
- "engines": {
2117
- "node": ">=8"
2118
- }
2119
- },
2120
- "node_modules/async": {
2121
- "version": "3.2.6",
2122
- "resolved": "https://registry.npmjs.org/async/-/async-3.2.6.tgz",
2123
- "integrity": "sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==",
2124
- "dev": true,
2125
- "license": "MIT"
2126
- },
2127
- "node_modules/babel-plugin-macros": {
2128
- "version": "3.1.0",
2129
- "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz",
2130
- "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==",
2131
- "license": "MIT",
2132
- "dependencies": {
2133
- "@babel/runtime": "^7.12.5",
2134
- "cosmiconfig": "^7.0.0",
2135
- "resolve": "^1.19.0"
2136
- },
2137
- "engines": {
2138
- "node": ">=10",
2139
- "npm": ">=6"
2140
- }
2141
- },
2142
- "node_modules/balanced-match": {
2143
- "version": "1.0.2",
2144
- "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
2145
- "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
2146
- "dev": true,
2147
- "license": "MIT"
2148
- },
2149
- "node_modules/brace-expansion": {
2150
- "version": "1.1.11",
2151
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
2152
- "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
2153
- "dev": true,
2154
- "license": "MIT",
2155
- "dependencies": {
2156
- "balanced-match": "^1.0.0",
2157
- "concat-map": "0.0.1"
2158
- }
2159
- },
2160
- "node_modules/braces": {
2161
- "version": "3.0.3",
2162
- "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
2163
- "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
2164
- "dev": true,
2165
- "license": "MIT",
2166
- "dependencies": {
2167
- "fill-range": "^7.1.1"
2168
- },
2169
- "engines": {
2170
- "node": ">=8"
2171
- }
2172
- },
2173
- "node_modules/browserslist": {
2174
- "version": "4.24.4",
2175
- "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.4.tgz",
2176
- "integrity": "sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==",
2177
- "dev": true,
2178
- "funding": [
2179
- {
2180
- "type": "opencollective",
2181
- "url": "https://opencollective.com/browserslist"
2182
- },
2183
- {
2184
- "type": "tidelift",
2185
- "url": "https://tidelift.com/funding/github/npm/browserslist"
2186
- },
2187
- {
2188
- "type": "github",
2189
- "url": "https://github.com/sponsors/ai"
2190
- }
2191
- ],
2192
- "license": "MIT",
2193
- "dependencies": {
2194
- "caniuse-lite": "^1.0.30001688",
2195
- "electron-to-chromium": "^1.5.73",
2196
- "node-releases": "^2.0.19",
2197
- "update-browserslist-db": "^1.1.1"
2198
- },
2199
- "bin": {
2200
- "browserslist": "cli.js"
2201
- },
2202
- "engines": {
2203
- "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
2204
- }
2205
- },
2206
- "node_modules/callsites": {
2207
- "version": "3.1.0",
2208
- "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
2209
- "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
2210
- "license": "MIT",
2211
- "engines": {
2212
- "node": ">=6"
2213
- }
2214
- },
2215
- "node_modules/caniuse-lite": {
2216
- "version": "1.0.30001695",
2217
- "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001695.tgz",
2218
- "integrity": "sha512-vHyLade6wTgI2u1ec3WQBxv+2BrTERV28UXQu9LO6lZ9pYeMk34vjXFLOxo1A4UBA8XTL4njRQZdno/yYaSmWw==",
2219
- "dev": true,
2220
- "funding": [
2221
- {
2222
- "type": "opencollective",
2223
- "url": "https://opencollective.com/browserslist"
2224
- },
2225
- {
2226
- "type": "tidelift",
2227
- "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
2228
- },
2229
- {
2230
- "type": "github",
2231
- "url": "https://github.com/sponsors/ai"
2232
- }
2233
- ],
2234
- "license": "CC-BY-4.0"
2235
- },
2236
- "node_modules/chalk": {
2237
- "version": "4.1.2",
2238
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
2239
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
2240
- "dev": true,
2241
- "license": "MIT",
2242
- "dependencies": {
2243
- "ansi-styles": "^4.1.0",
2244
- "supports-color": "^7.1.0"
2245
- },
2246
- "engines": {
2247
- "node": ">=10"
2248
- },
2249
- "funding": {
2250
- "url": "https://github.com/chalk/chalk?sponsor=1"
2251
- }
2252
- },
2253
- "node_modules/clsx": {
2254
- "version": "2.1.1",
2255
- "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz",
2256
- "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==",
2257
- "license": "MIT",
2258
- "engines": {
2259
- "node": ">=6"
2260
- }
2261
- },
2262
- "node_modules/color-convert": {
2263
- "version": "2.0.1",
2264
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
2265
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
2266
- "dev": true,
2267
- "license": "MIT",
2268
- "dependencies": {
2269
- "color-name": "~1.1.4"
2270
- },
2271
- "engines": {
2272
- "node": ">=7.0.0"
2273
- }
2274
- },
2275
- "node_modules/color-name": {
2276
- "version": "1.1.4",
2277
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
2278
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
2279
- "dev": true,
2280
- "license": "MIT"
2281
- },
2282
- "node_modules/commander": {
2283
- "version": "13.1.0",
2284
- "resolved": "https://registry.npmjs.org/commander/-/commander-13.1.0.tgz",
2285
- "integrity": "sha512-/rFeCpNJQbhSZjGVwO9RFV3xPqbnERS8MmIQzCtD/zl6gpJuV/bMLuN92oG3F7d8oDEHHRrujSXNUr8fpjntKw==",
2286
- "dev": true,
2287
- "license": "MIT",
2288
- "engines": {
2289
- "node": ">=18"
2290
- }
2291
- },
2292
- "node_modules/commondir": {
2293
- "version": "1.0.1",
2294
- "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz",
2295
- "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==",
2296
- "dev": true,
2297
- "license": "MIT"
2298
- },
2299
- "node_modules/concat-map": {
2300
- "version": "0.0.1",
2301
- "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
2302
- "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
2303
- "dev": true,
2304
- "license": "MIT"
2305
- },
2306
- "node_modules/convert-source-map": {
2307
- "version": "1.9.0",
2308
- "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz",
2309
- "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==",
2310
- "license": "MIT"
2311
- },
2312
- "node_modules/cosmiconfig": {
2313
- "version": "7.1.0",
2314
- "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz",
2315
- "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==",
2316
- "license": "MIT",
2317
- "dependencies": {
2318
- "@types/parse-json": "^4.0.0",
2319
- "import-fresh": "^3.2.1",
2320
- "parse-json": "^5.0.0",
2321
- "path-type": "^4.0.0",
2322
- "yaml": "^1.10.0"
2323
- },
2324
- "engines": {
2325
- "node": ">=10"
2326
- }
2327
- },
2328
- "node_modules/cosmiconfig/node_modules/yaml": {
2329
- "version": "1.10.2",
2330
- "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz",
2331
- "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==",
2332
- "license": "ISC",
2333
- "engines": {
2334
- "node": ">= 6"
2335
- }
2336
- },
2337
- "node_modules/cross-spawn": {
2338
- "version": "7.0.6",
2339
- "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
2340
- "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
2341
- "dev": true,
2342
- "license": "MIT",
2343
- "dependencies": {
2344
- "path-key": "^3.1.0",
2345
- "shebang-command": "^2.0.0",
2346
- "which": "^2.0.1"
2347
- },
2348
- "engines": {
2349
- "node": ">= 8"
2350
- }
2351
- },
2352
- "node_modules/csstype": {
2353
- "version": "3.1.3",
2354
- "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz",
2355
- "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==",
2356
- "license": "MIT"
2357
- },
2358
- "node_modules/debug": {
2359
- "version": "4.4.0",
2360
- "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz",
2361
- "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==",
2362
- "license": "MIT",
2363
- "dependencies": {
2364
- "ms": "^2.1.3"
2365
- },
2366
- "engines": {
2367
- "node": ">=6.0"
2368
- },
2369
- "peerDependenciesMeta": {
2370
- "supports-color": {
2371
- "optional": true
2372
- }
2373
- }
2374
- },
2375
- "node_modules/deep-is": {
2376
- "version": "0.1.4",
2377
- "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz",
2378
- "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==",
2379
- "dev": true,
2380
- "license": "MIT"
2381
- },
2382
- "node_modules/dir-glob": {
2383
- "version": "3.0.1",
2384
- "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz",
2385
- "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==",
2386
- "dev": true,
2387
- "license": "MIT",
2388
- "dependencies": {
2389
- "path-type": "^4.0.0"
2390
- },
2391
- "engines": {
2392
- "node": ">=8"
2393
- }
2394
- },
2395
- "node_modules/dom-helpers": {
2396
- "version": "5.2.1",
2397
- "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz",
2398
- "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==",
2399
- "license": "MIT",
2400
- "dependencies": {
2401
- "@babel/runtime": "^7.8.7",
2402
- "csstype": "^3.0.2"
2403
- }
2404
- },
2405
- "node_modules/electron-to-chromium": {
2406
- "version": "1.5.88",
2407
- "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.88.tgz",
2408
- "integrity": "sha512-K3C2qf1o+bGzbilTDCTBhTQcMS9KW60yTAaTeeXsfvQuTDDwlokLam/AdqlqcSy9u4UainDgsHV23ksXAOgamw==",
2409
- "dev": true,
2410
- "license": "ISC"
2411
- },
2412
- "node_modules/email-addresses": {
2413
- "version": "5.0.0",
2414
- "resolved": "https://registry.npmjs.org/email-addresses/-/email-addresses-5.0.0.tgz",
2415
- "integrity": "sha512-4OIPYlA6JXqtVn8zpHpGiI7vE6EQOAg16aGnDMIAlZVinnoZ8208tW1hAbjWydgN/4PLTT9q+O1K6AH/vALJGw==",
2416
- "dev": true,
2417
- "license": "MIT"
2418
- },
2419
- "node_modules/error-ex": {
2420
- "version": "1.3.2",
2421
- "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz",
2422
- "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==",
2423
- "license": "MIT",
2424
- "dependencies": {
2425
- "is-arrayish": "^0.2.1"
2426
- }
2427
- },
2428
- "node_modules/esbuild": {
2429
- "version": "0.24.2",
2430
- "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.24.2.tgz",
2431
- "integrity": "sha512-+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA==",
2432
- "dev": true,
2433
- "hasInstallScript": true,
2434
- "license": "MIT",
2435
- "bin": {
2436
- "esbuild": "bin/esbuild"
2437
- },
2438
- "engines": {
2439
- "node": ">=18"
2440
- },
2441
- "optionalDependencies": {
2442
- "@esbuild/aix-ppc64": "0.24.2",
2443
- "@esbuild/android-arm": "0.24.2",
2444
- "@esbuild/android-arm64": "0.24.2",
2445
- "@esbuild/android-x64": "0.24.2",
2446
- "@esbuild/darwin-arm64": "0.24.2",
2447
- "@esbuild/darwin-x64": "0.24.2",
2448
- "@esbuild/freebsd-arm64": "0.24.2",
2449
- "@esbuild/freebsd-x64": "0.24.2",
2450
- "@esbuild/linux-arm": "0.24.2",
2451
- "@esbuild/linux-arm64": "0.24.2",
2452
- "@esbuild/linux-ia32": "0.24.2",
2453
- "@esbuild/linux-loong64": "0.24.2",
2454
- "@esbuild/linux-mips64el": "0.24.2",
2455
- "@esbuild/linux-ppc64": "0.24.2",
2456
- "@esbuild/linux-riscv64": "0.24.2",
2457
- "@esbuild/linux-s390x": "0.24.2",
2458
- "@esbuild/linux-x64": "0.24.2",
2459
- "@esbuild/netbsd-arm64": "0.24.2",
2460
- "@esbuild/netbsd-x64": "0.24.2",
2461
- "@esbuild/openbsd-arm64": "0.24.2",
2462
- "@esbuild/openbsd-x64": "0.24.2",
2463
- "@esbuild/sunos-x64": "0.24.2",
2464
- "@esbuild/win32-arm64": "0.24.2",
2465
- "@esbuild/win32-ia32": "0.24.2",
2466
- "@esbuild/win32-x64": "0.24.2"
2467
- }
2468
- },
2469
- "node_modules/escalade": {
2470
- "version": "3.2.0",
2471
- "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
2472
- "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
2473
- "dev": true,
2474
- "license": "MIT",
2475
- "engines": {
2476
- "node": ">=6"
2477
- }
2478
- },
2479
- "node_modules/escape-string-regexp": {
2480
- "version": "4.0.0",
2481
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
2482
- "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
2483
- "license": "MIT",
2484
- "engines": {
2485
- "node": ">=10"
2486
- },
2487
- "funding": {
2488
- "url": "https://github.com/sponsors/sindresorhus"
2489
- }
2490
- },
2491
- "node_modules/eslint": {
2492
- "version": "9.19.0",
2493
- "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.19.0.tgz",
2494
- "integrity": "sha512-ug92j0LepKlbbEv6hD911THhoRHmbdXt2gX+VDABAW/Ir7D3nqKdv5Pf5vtlyY6HQMTEP2skXY43ueqTCWssEA==",
2495
- "dev": true,
2496
- "license": "MIT",
2497
- "dependencies": {
2498
- "@eslint-community/eslint-utils": "^4.2.0",
2499
- "@eslint-community/regexpp": "^4.12.1",
2500
- "@eslint/config-array": "^0.19.0",
2501
- "@eslint/core": "^0.10.0",
2502
- "@eslint/eslintrc": "^3.2.0",
2503
- "@eslint/js": "9.19.0",
2504
- "@eslint/plugin-kit": "^0.2.5",
2505
- "@humanfs/node": "^0.16.6",
2506
- "@humanwhocodes/module-importer": "^1.0.1",
2507
- "@humanwhocodes/retry": "^0.4.1",
2508
- "@types/estree": "^1.0.6",
2509
- "@types/json-schema": "^7.0.15",
2510
- "ajv": "^6.12.4",
2511
- "chalk": "^4.0.0",
2512
- "cross-spawn": "^7.0.6",
2513
- "debug": "^4.3.2",
2514
- "escape-string-regexp": "^4.0.0",
2515
- "eslint-scope": "^8.2.0",
2516
- "eslint-visitor-keys": "^4.2.0",
2517
- "espree": "^10.3.0",
2518
- "esquery": "^1.5.0",
2519
- "esutils": "^2.0.2",
2520
- "fast-deep-equal": "^3.1.3",
2521
- "file-entry-cache": "^8.0.0",
2522
- "find-up": "^5.0.0",
2523
- "glob-parent": "^6.0.2",
2524
- "ignore": "^5.2.0",
2525
- "imurmurhash": "^0.1.4",
2526
- "is-glob": "^4.0.0",
2527
- "json-stable-stringify-without-jsonify": "^1.0.1",
2528
- "lodash.merge": "^4.6.2",
2529
- "minimatch": "^3.1.2",
2530
- "natural-compare": "^1.4.0",
2531
- "optionator": "^0.9.3"
2532
- },
2533
- "bin": {
2534
- "eslint": "bin/eslint.js"
2535
- },
2536
- "engines": {
2537
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
2538
- },
2539
- "funding": {
2540
- "url": "https://eslint.org/donate"
2541
- },
2542
- "peerDependencies": {
2543
- "jiti": "*"
2544
- },
2545
- "peerDependenciesMeta": {
2546
- "jiti": {
2547
- "optional": true
2548
- }
2549
- }
2550
- },
2551
- "node_modules/eslint-plugin-react-hooks": {
2552
- "version": "5.1.0",
2553
- "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-5.1.0.tgz",
2554
- "integrity": "sha512-mpJRtPgHN2tNAvZ35AMfqeB3Xqeo273QxrHJsbBEPWODRM4r0yB6jfoROqKEYrOn27UtRPpcpHc2UqyBSuUNTw==",
2555
- "dev": true,
2556
- "license": "MIT",
2557
- "engines": {
2558
- "node": ">=10"
2559
- },
2560
- "peerDependencies": {
2561
- "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0"
2562
- }
2563
- },
2564
- "node_modules/eslint-plugin-react-refresh": {
2565
- "version": "0.4.18",
2566
- "resolved": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.18.tgz",
2567
- "integrity": "sha512-IRGEoFn3OKalm3hjfolEWGqoF/jPqeEYFp+C8B0WMzwGwBMvlRDQd06kghDhF0C61uJ6WfSDhEZE/sAQjduKgw==",
2568
- "dev": true,
2569
- "license": "MIT",
2570
- "peerDependencies": {
2571
- "eslint": ">=8.40"
2572
- }
2573
- },
2574
- "node_modules/eslint-scope": {
2575
- "version": "8.2.0",
2576
- "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.2.0.tgz",
2577
- "integrity": "sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==",
2578
- "dev": true,
2579
- "license": "BSD-2-Clause",
2580
- "dependencies": {
2581
- "esrecurse": "^4.3.0",
2582
- "estraverse": "^5.2.0"
2583
- },
2584
- "engines": {
2585
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
2586
- },
2587
- "funding": {
2588
- "url": "https://opencollective.com/eslint"
2589
- }
2590
- },
2591
- "node_modules/eslint-visitor-keys": {
2592
- "version": "4.2.0",
2593
- "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz",
2594
- "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==",
2595
- "dev": true,
2596
- "license": "Apache-2.0",
2597
- "engines": {
2598
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
2599
- },
2600
- "funding": {
2601
- "url": "https://opencollective.com/eslint"
2602
- }
2603
- },
2604
- "node_modules/espree": {
2605
- "version": "10.3.0",
2606
- "resolved": "https://registry.npmjs.org/espree/-/espree-10.3.0.tgz",
2607
- "integrity": "sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==",
2608
- "dev": true,
2609
- "license": "BSD-2-Clause",
2610
- "dependencies": {
2611
- "acorn": "^8.14.0",
2612
- "acorn-jsx": "^5.3.2",
2613
- "eslint-visitor-keys": "^4.2.0"
2614
- },
2615
- "engines": {
2616
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
2617
- },
2618
- "funding": {
2619
- "url": "https://opencollective.com/eslint"
2620
- }
2621
- },
2622
- "node_modules/esquery": {
2623
- "version": "1.6.0",
2624
- "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz",
2625
- "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==",
2626
- "dev": true,
2627
- "license": "BSD-3-Clause",
2628
- "dependencies": {
2629
- "estraverse": "^5.1.0"
2630
- },
2631
- "engines": {
2632
- "node": ">=0.10"
2633
- }
2634
- },
2635
- "node_modules/esrecurse": {
2636
- "version": "4.3.0",
2637
- "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
2638
- "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
2639
- "dev": true,
2640
- "license": "BSD-2-Clause",
2641
- "dependencies": {
2642
- "estraverse": "^5.2.0"
2643
- },
2644
- "engines": {
2645
- "node": ">=4.0"
2646
- }
2647
- },
2648
- "node_modules/estraverse": {
2649
- "version": "5.3.0",
2650
- "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
2651
- "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
2652
- "dev": true,
2653
- "license": "BSD-2-Clause",
2654
- "engines": {
2655
- "node": ">=4.0"
2656
- }
2657
- },
2658
- "node_modules/esutils": {
2659
- "version": "2.0.3",
2660
- "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
2661
- "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
2662
- "dev": true,
2663
- "license": "BSD-2-Clause",
2664
- "engines": {
2665
- "node": ">=0.10.0"
2666
- }
2667
- },
2668
- "node_modules/fast-deep-equal": {
2669
- "version": "3.1.3",
2670
- "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
2671
- "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
2672
- "dev": true,
2673
- "license": "MIT"
2674
- },
2675
- "node_modules/fast-glob": {
2676
- "version": "3.3.3",
2677
- "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz",
2678
- "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==",
2679
- "dev": true,
2680
- "license": "MIT",
2681
- "dependencies": {
2682
- "@nodelib/fs.stat": "^2.0.2",
2683
- "@nodelib/fs.walk": "^1.2.3",
2684
- "glob-parent": "^5.1.2",
2685
- "merge2": "^1.3.0",
2686
- "micromatch": "^4.0.8"
2687
- },
2688
- "engines": {
2689
- "node": ">=8.6.0"
2690
- }
2691
- },
2692
- "node_modules/fast-glob/node_modules/glob-parent": {
2693
- "version": "5.1.2",
2694
- "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
2695
- "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
2696
- "dev": true,
2697
- "license": "ISC",
2698
- "dependencies": {
2699
- "is-glob": "^4.0.1"
2700
- },
2701
- "engines": {
2702
- "node": ">= 6"
2703
- }
2704
- },
2705
- "node_modules/fast-json-stable-stringify": {
2706
- "version": "2.1.0",
2707
- "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
2708
- "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
2709
- "dev": true,
2710
- "license": "MIT"
2711
- },
2712
- "node_modules/fast-levenshtein": {
2713
- "version": "2.0.6",
2714
- "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
2715
- "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==",
2716
- "dev": true,
2717
- "license": "MIT"
2718
- },
2719
- "node_modules/fastq": {
2720
- "version": "1.18.0",
2721
- "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.18.0.tgz",
2722
- "integrity": "sha512-QKHXPW0hD8g4UET03SdOdunzSouc9N4AuHdsX8XNcTsuz+yYFILVNIX4l9yHABMhiEI9Db0JTTIpu0wB+Y1QQw==",
2723
- "dev": true,
2724
- "license": "ISC",
2725
- "dependencies": {
2726
- "reusify": "^1.0.4"
2727
- }
2728
- },
2729
- "node_modules/file-entry-cache": {
2730
- "version": "8.0.0",
2731
- "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz",
2732
- "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==",
2733
- "dev": true,
2734
- "license": "MIT",
2735
- "dependencies": {
2736
- "flat-cache": "^4.0.0"
2737
- },
2738
- "engines": {
2739
- "node": ">=16.0.0"
2740
- }
2741
- },
2742
- "node_modules/filename-reserved-regex": {
2743
- "version": "2.0.0",
2744
- "resolved": "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz",
2745
- "integrity": "sha512-lc1bnsSr4L4Bdif8Xb/qrtokGbq5zlsms/CYH8PP+WtCkGNF65DPiQY8vG3SakEdRn8Dlnm+gW/qWKKjS5sZzQ==",
2746
- "dev": true,
2747
- "license": "MIT",
2748
- "engines": {
2749
- "node": ">=4"
2750
- }
2751
- },
2752
- "node_modules/filenamify": {
2753
- "version": "4.3.0",
2754
- "resolved": "https://registry.npmjs.org/filenamify/-/filenamify-4.3.0.tgz",
2755
- "integrity": "sha512-hcFKyUG57yWGAzu1CMt/dPzYZuv+jAJUT85bL8mrXvNe6hWj6yEHEc4EdcgiA6Z3oi1/9wXJdZPXF2dZNgwgOg==",
2756
- "dev": true,
2757
- "license": "MIT",
2758
- "dependencies": {
2759
- "filename-reserved-regex": "^2.0.0",
2760
- "strip-outer": "^1.0.1",
2761
- "trim-repeated": "^1.0.0"
2762
- },
2763
- "engines": {
2764
- "node": ">=8"
2765
- },
2766
- "funding": {
2767
- "url": "https://github.com/sponsors/sindresorhus"
2768
- }
2769
- },
2770
- "node_modules/fill-range": {
2771
- "version": "7.1.1",
2772
- "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
2773
- "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
2774
- "dev": true,
2775
- "license": "MIT",
2776
- "dependencies": {
2777
- "to-regex-range": "^5.0.1"
2778
- },
2779
- "engines": {
2780
- "node": ">=8"
2781
- }
2782
- },
2783
- "node_modules/find-cache-dir": {
2784
- "version": "3.3.2",
2785
- "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz",
2786
- "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==",
2787
- "dev": true,
2788
- "license": "MIT",
2789
- "dependencies": {
2790
- "commondir": "^1.0.1",
2791
- "make-dir": "^3.0.2",
2792
- "pkg-dir": "^4.1.0"
2793
- },
2794
- "engines": {
2795
- "node": ">=8"
2796
- },
2797
- "funding": {
2798
- "url": "https://github.com/avajs/find-cache-dir?sponsor=1"
2799
- }
2800
- },
2801
- "node_modules/find-root": {
2802
- "version": "1.1.0",
2803
- "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz",
2804
- "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==",
2805
- "license": "MIT"
2806
- },
2807
- "node_modules/find-up": {
2808
- "version": "5.0.0",
2809
- "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
2810
- "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
2811
- "dev": true,
2812
- "license": "MIT",
2813
- "dependencies": {
2814
- "locate-path": "^6.0.0",
2815
- "path-exists": "^4.0.0"
2816
- },
2817
- "engines": {
2818
- "node": ">=10"
2819
- },
2820
- "funding": {
2821
- "url": "https://github.com/sponsors/sindresorhus"
2822
- }
2823
- },
2824
- "node_modules/flat-cache": {
2825
- "version": "4.0.1",
2826
- "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz",
2827
- "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==",
2828
- "dev": true,
2829
- "license": "MIT",
2830
- "dependencies": {
2831
- "flatted": "^3.2.9",
2832
- "keyv": "^4.5.4"
2833
- },
2834
- "engines": {
2835
- "node": ">=16"
2836
- }
2837
- },
2838
- "node_modules/flatted": {
2839
- "version": "3.3.2",
2840
- "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.2.tgz",
2841
- "integrity": "sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==",
2842
- "dev": true,
2843
- "license": "ISC"
2844
- },
2845
- "node_modules/fs-extra": {
2846
- "version": "11.3.0",
2847
- "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.3.0.tgz",
2848
- "integrity": "sha512-Z4XaCL6dUDHfP/jT25jJKMmtxvuwbkrD1vNSMFlo9lNLY2c5FHYSQgHPRZUjAB26TpDEoW9HCOgplrdbaPV/ew==",
2849
- "dev": true,
2850
- "license": "MIT",
2851
- "dependencies": {
2852
- "graceful-fs": "^4.2.0",
2853
- "jsonfile": "^6.0.1",
2854
- "universalify": "^2.0.0"
2855
- },
2856
- "engines": {
2857
- "node": ">=14.14"
2858
- }
2859
- },
2860
- "node_modules/fsevents": {
2861
- "version": "2.3.3",
2862
- "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
2863
- "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
2864
- "dev": true,
2865
- "hasInstallScript": true,
2866
- "license": "MIT",
2867
- "optional": true,
2868
- "os": [
2869
- "darwin"
2870
- ],
2871
- "engines": {
2872
- "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
2873
- }
2874
- },
2875
- "node_modules/function-bind": {
2876
- "version": "1.1.2",
2877
- "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
2878
- "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
2879
- "license": "MIT",
2880
- "funding": {
2881
- "url": "https://github.com/sponsors/ljharb"
2882
- }
2883
- },
2884
- "node_modules/gensync": {
2885
- "version": "1.0.0-beta.2",
2886
- "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
2887
- "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
2888
- "dev": true,
2889
- "license": "MIT",
2890
- "engines": {
2891
- "node": ">=6.9.0"
2892
- }
2893
- },
2894
- "node_modules/gh-pages": {
2895
- "version": "6.3.0",
2896
- "resolved": "https://registry.npmjs.org/gh-pages/-/gh-pages-6.3.0.tgz",
2897
- "integrity": "sha512-Ot5lU6jK0Eb+sszG8pciXdjMXdBJ5wODvgjR+imihTqsUWF2K6dJ9HST55lgqcs8wWcw6o6wAsUzfcYRhJPXbA==",
2898
- "dev": true,
2899
- "license": "MIT",
2900
- "dependencies": {
2901
- "async": "^3.2.4",
2902
- "commander": "^13.0.0",
2903
- "email-addresses": "^5.0.0",
2904
- "filenamify": "^4.3.0",
2905
- "find-cache-dir": "^3.3.1",
2906
- "fs-extra": "^11.1.1",
2907
- "globby": "^11.1.0"
2908
- },
2909
- "bin": {
2910
- "gh-pages": "bin/gh-pages.js",
2911
- "gh-pages-clean": "bin/gh-pages-clean.js"
2912
- },
2913
- "engines": {
2914
- "node": ">=10"
2915
- }
2916
- },
2917
- "node_modules/glob-parent": {
2918
- "version": "6.0.2",
2919
- "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
2920
- "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
2921
- "dev": true,
2922
- "license": "ISC",
2923
- "dependencies": {
2924
- "is-glob": "^4.0.3"
2925
- },
2926
- "engines": {
2927
- "node": ">=10.13.0"
2928
- }
2929
- },
2930
- "node_modules/globals": {
2931
- "version": "15.14.0",
2932
- "resolved": "https://registry.npmjs.org/globals/-/globals-15.14.0.tgz",
2933
- "integrity": "sha512-OkToC372DtlQeje9/zHIo5CT8lRP/FUgEOKBEhU4e0abL7J7CD24fD9ohiLN5hagG/kWCYj4K5oaxxtj2Z0Dig==",
2934
- "dev": true,
2935
- "license": "MIT",
2936
- "engines": {
2937
- "node": ">=18"
2938
- },
2939
- "funding": {
2940
- "url": "https://github.com/sponsors/sindresorhus"
2941
- }
2942
- },
2943
- "node_modules/globby": {
2944
- "version": "11.1.0",
2945
- "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz",
2946
- "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==",
2947
- "dev": true,
2948
- "license": "MIT",
2949
- "dependencies": {
2950
- "array-union": "^2.1.0",
2951
- "dir-glob": "^3.0.1",
2952
- "fast-glob": "^3.2.9",
2953
- "ignore": "^5.2.0",
2954
- "merge2": "^1.4.1",
2955
- "slash": "^3.0.0"
2956
- },
2957
- "engines": {
2958
- "node": ">=10"
2959
- },
2960
- "funding": {
2961
- "url": "https://github.com/sponsors/sindresorhus"
2962
- }
2963
- },
2964
- "node_modules/graceful-fs": {
2965
- "version": "4.2.11",
2966
- "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
2967
- "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
2968
- "dev": true,
2969
- "license": "ISC"
2970
- },
2971
- "node_modules/graphemer": {
2972
- "version": "1.4.0",
2973
- "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz",
2974
- "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==",
2975
- "dev": true,
2976
- "license": "MIT"
2977
- },
2978
- "node_modules/has-flag": {
2979
- "version": "4.0.0",
2980
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
2981
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
2982
- "dev": true,
2983
- "license": "MIT",
2984
- "engines": {
2985
- "node": ">=8"
2986
- }
2987
- },
2988
- "node_modules/hasown": {
2989
- "version": "2.0.2",
2990
- "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
2991
- "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
2992
- "license": "MIT",
2993
- "dependencies": {
2994
- "function-bind": "^1.1.2"
2995
- },
2996
- "engines": {
2997
- "node": ">= 0.4"
2998
- }
2999
- },
3000
- "node_modules/hoist-non-react-statics": {
3001
- "version": "3.3.2",
3002
- "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz",
3003
- "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==",
3004
- "license": "BSD-3-Clause",
3005
- "dependencies": {
3006
- "react-is": "^16.7.0"
3007
- }
3008
- },
3009
- "node_modules/hoist-non-react-statics/node_modules/react-is": {
3010
- "version": "16.13.1",
3011
- "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
3012
- "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==",
3013
- "license": "MIT"
3014
- },
3015
- "node_modules/ignore": {
3016
- "version": "5.3.2",
3017
- "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz",
3018
- "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==",
3019
- "dev": true,
3020
- "license": "MIT",
3021
- "engines": {
3022
- "node": ">= 4"
3023
- }
3024
- },
3025
- "node_modules/import-fresh": {
3026
- "version": "3.3.0",
3027
- "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz",
3028
- "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==",
3029
- "license": "MIT",
3030
- "dependencies": {
3031
- "parent-module": "^1.0.0",
3032
- "resolve-from": "^4.0.0"
3033
- },
3034
- "engines": {
3035
- "node": ">=6"
3036
- },
3037
- "funding": {
3038
- "url": "https://github.com/sponsors/sindresorhus"
3039
- }
3040
- },
3041
- "node_modules/imurmurhash": {
3042
- "version": "0.1.4",
3043
- "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
3044
- "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
3045
- "dev": true,
3046
- "license": "MIT",
3047
- "engines": {
3048
- "node": ">=0.8.19"
3049
- }
3050
- },
3051
- "node_modules/is-arrayish": {
3052
- "version": "0.2.1",
3053
- "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
3054
- "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==",
3055
- "license": "MIT"
3056
- },
3057
- "node_modules/is-core-module": {
3058
- "version": "2.16.1",
3059
- "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz",
3060
- "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==",
3061
- "license": "MIT",
3062
- "dependencies": {
3063
- "hasown": "^2.0.2"
3064
- },
3065
- "engines": {
3066
- "node": ">= 0.4"
3067
- },
3068
- "funding": {
3069
- "url": "https://github.com/sponsors/ljharb"
3070
- }
3071
- },
3072
- "node_modules/is-extglob": {
3073
- "version": "2.1.1",
3074
- "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
3075
- "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
3076
- "dev": true,
3077
- "license": "MIT",
3078
- "engines": {
3079
- "node": ">=0.10.0"
3080
- }
3081
- },
3082
- "node_modules/is-glob": {
3083
- "version": "4.0.3",
3084
- "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
3085
- "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
3086
- "dev": true,
3087
- "license": "MIT",
3088
- "dependencies": {
3089
- "is-extglob": "^2.1.1"
3090
- },
3091
- "engines": {
3092
- "node": ">=0.10.0"
3093
- }
3094
- },
3095
- "node_modules/is-number": {
3096
- "version": "7.0.0",
3097
- "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
3098
- "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
3099
- "dev": true,
3100
- "license": "MIT",
3101
- "engines": {
3102
- "node": ">=0.12.0"
3103
- }
3104
- },
3105
- "node_modules/isexe": {
3106
- "version": "2.0.0",
3107
- "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
3108
- "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
3109
- "dev": true,
3110
- "license": "ISC"
3111
- },
3112
- "node_modules/js-tokens": {
3113
- "version": "4.0.0",
3114
- "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
3115
- "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
3116
- "license": "MIT"
3117
- },
3118
- "node_modules/js-yaml": {
3119
- "version": "4.1.0",
3120
- "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
3121
- "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
3122
- "dev": true,
3123
- "license": "MIT",
3124
- "dependencies": {
3125
- "argparse": "^2.0.1"
3126
- },
3127
- "bin": {
3128
- "js-yaml": "bin/js-yaml.js"
3129
- }
3130
- },
3131
- "node_modules/jsesc": {
3132
- "version": "3.1.0",
3133
- "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
3134
- "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
3135
- "license": "MIT",
3136
- "bin": {
3137
- "jsesc": "bin/jsesc"
3138
- },
3139
- "engines": {
3140
- "node": ">=6"
3141
- }
3142
- },
3143
- "node_modules/json-buffer": {
3144
- "version": "3.0.1",
3145
- "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz",
3146
- "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==",
3147
- "dev": true,
3148
- "license": "MIT"
3149
- },
3150
- "node_modules/json-parse-even-better-errors": {
3151
- "version": "2.3.1",
3152
- "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz",
3153
- "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==",
3154
- "license": "MIT"
3155
- },
3156
- "node_modules/json-schema-traverse": {
3157
- "version": "0.4.1",
3158
- "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
3159
- "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
3160
- "dev": true,
3161
- "license": "MIT"
3162
- },
3163
- "node_modules/json-stable-stringify-without-jsonify": {
3164
- "version": "1.0.1",
3165
- "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
3166
- "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==",
3167
- "dev": true,
3168
- "license": "MIT"
3169
- },
3170
- "node_modules/json5": {
3171
- "version": "2.2.3",
3172
- "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
3173
- "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
3174
- "dev": true,
3175
- "license": "MIT",
3176
- "bin": {
3177
- "json5": "lib/cli.js"
3178
- },
3179
- "engines": {
3180
- "node": ">=6"
3181
- }
3182
- },
3183
- "node_modules/jsonfile": {
3184
- "version": "6.1.0",
3185
- "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
3186
- "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
3187
- "dev": true,
3188
- "license": "MIT",
3189
- "dependencies": {
3190
- "universalify": "^2.0.0"
3191
- },
3192
- "optionalDependencies": {
3193
- "graceful-fs": "^4.1.6"
3194
- }
3195
- },
3196
- "node_modules/keyv": {
3197
- "version": "4.5.4",
3198
- "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz",
3199
- "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==",
3200
- "dev": true,
3201
- "license": "MIT",
3202
- "dependencies": {
3203
- "json-buffer": "3.0.1"
3204
- }
3205
- },
3206
- "node_modules/levn": {
3207
- "version": "0.4.1",
3208
- "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz",
3209
- "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
3210
- "dev": true,
3211
- "license": "MIT",
3212
- "dependencies": {
3213
- "prelude-ls": "^1.2.1",
3214
- "type-check": "~0.4.0"
3215
- },
3216
- "engines": {
3217
- "node": ">= 0.8.0"
3218
- }
3219
- },
3220
- "node_modules/lines-and-columns": {
3221
- "version": "1.2.4",
3222
- "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
3223
- "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==",
3224
- "license": "MIT"
3225
- },
3226
- "node_modules/locate-path": {
3227
- "version": "6.0.0",
3228
- "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
3229
- "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
3230
- "dev": true,
3231
- "license": "MIT",
3232
- "dependencies": {
3233
- "p-locate": "^5.0.0"
3234
- },
3235
- "engines": {
3236
- "node": ">=10"
3237
- },
3238
- "funding": {
3239
- "url": "https://github.com/sponsors/sindresorhus"
3240
- }
3241
- },
3242
- "node_modules/lodash.merge": {
3243
- "version": "4.6.2",
3244
- "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
3245
- "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==",
3246
- "dev": true,
3247
- "license": "MIT"
3248
- },
3249
- "node_modules/loose-envify": {
3250
- "version": "1.4.0",
3251
- "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
3252
- "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
3253
- "license": "MIT",
3254
- "dependencies": {
3255
- "js-tokens": "^3.0.0 || ^4.0.0"
3256
- },
3257
- "bin": {
3258
- "loose-envify": "cli.js"
3259
- }
3260
- },
3261
- "node_modules/lru-cache": {
3262
- "version": "5.1.1",
3263
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
3264
- "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
3265
- "dev": true,
3266
- "license": "ISC",
3267
- "dependencies": {
3268
- "yallist": "^3.0.2"
3269
- }
3270
- },
3271
- "node_modules/make-dir": {
3272
- "version": "3.1.0",
3273
- "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz",
3274
- "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==",
3275
- "dev": true,
3276
- "license": "MIT",
3277
- "dependencies": {
3278
- "semver": "^6.0.0"
3279
- },
3280
- "engines": {
3281
- "node": ">=8"
3282
- },
3283
- "funding": {
3284
- "url": "https://github.com/sponsors/sindresorhus"
3285
- }
3286
- },
3287
- "node_modules/merge2": {
3288
- "version": "1.4.1",
3289
- "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
3290
- "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
3291
- "dev": true,
3292
- "license": "MIT",
3293
- "engines": {
3294
- "node": ">= 8"
3295
- }
3296
- },
3297
- "node_modules/micromatch": {
3298
- "version": "4.0.8",
3299
- "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz",
3300
- "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
3301
- "dev": true,
3302
- "license": "MIT",
3303
- "dependencies": {
3304
- "braces": "^3.0.3",
3305
- "picomatch": "^2.3.1"
3306
- },
3307
- "engines": {
3308
- "node": ">=8.6"
3309
- }
3310
- },
3311
- "node_modules/minimatch": {
3312
- "version": "3.1.2",
3313
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
3314
- "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
3315
- "dev": true,
3316
- "license": "ISC",
3317
- "dependencies": {
3318
- "brace-expansion": "^1.1.7"
3319
- },
3320
- "engines": {
3321
- "node": "*"
3322
- }
3323
- },
3324
- "node_modules/ms": {
3325
- "version": "2.1.3",
3326
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
3327
- "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
3328
- "license": "MIT"
3329
- },
3330
- "node_modules/nanoid": {
3331
- "version": "3.3.8",
3332
- "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz",
3333
- "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==",
3334
- "dev": true,
3335
- "funding": [
3336
- {
3337
- "type": "github",
3338
- "url": "https://github.com/sponsors/ai"
3339
- }
3340
- ],
3341
- "license": "MIT",
3342
- "bin": {
3343
- "nanoid": "bin/nanoid.cjs"
3344
- },
3345
- "engines": {
3346
- "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
3347
- }
3348
- },
3349
- "node_modules/natural-compare": {
3350
- "version": "1.4.0",
3351
- "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
3352
- "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==",
3353
- "dev": true,
3354
- "license": "MIT"
3355
- },
3356
- "node_modules/node-releases": {
3357
- "version": "2.0.19",
3358
- "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz",
3359
- "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==",
3360
- "dev": true,
3361
- "license": "MIT"
3362
- },
3363
- "node_modules/object-assign": {
3364
- "version": "4.1.1",
3365
- "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
3366
- "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
3367
- "license": "MIT",
3368
- "engines": {
3369
- "node": ">=0.10.0"
3370
- }
3371
- },
3372
- "node_modules/optionator": {
3373
- "version": "0.9.4",
3374
- "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz",
3375
- "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==",
3376
- "dev": true,
3377
- "license": "MIT",
3378
- "dependencies": {
3379
- "deep-is": "^0.1.3",
3380
- "fast-levenshtein": "^2.0.6",
3381
- "levn": "^0.4.1",
3382
- "prelude-ls": "^1.2.1",
3383
- "type-check": "^0.4.0",
3384
- "word-wrap": "^1.2.5"
3385
- },
3386
- "engines": {
3387
- "node": ">= 0.8.0"
3388
- }
3389
- },
3390
- "node_modules/p-limit": {
3391
- "version": "3.1.0",
3392
- "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
3393
- "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
3394
- "dev": true,
3395
- "license": "MIT",
3396
- "dependencies": {
3397
- "yocto-queue": "^0.1.0"
3398
- },
3399
- "engines": {
3400
- "node": ">=10"
3401
- },
3402
- "funding": {
3403
- "url": "https://github.com/sponsors/sindresorhus"
3404
- }
3405
- },
3406
- "node_modules/p-locate": {
3407
- "version": "5.0.0",
3408
- "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
3409
- "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
3410
- "dev": true,
3411
- "license": "MIT",
3412
- "dependencies": {
3413
- "p-limit": "^3.0.2"
3414
- },
3415
- "engines": {
3416
- "node": ">=10"
3417
- },
3418
- "funding": {
3419
- "url": "https://github.com/sponsors/sindresorhus"
3420
- }
3421
- },
3422
- "node_modules/p-try": {
3423
- "version": "2.2.0",
3424
- "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
3425
- "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
3426
- "dev": true,
3427
- "license": "MIT",
3428
- "engines": {
3429
- "node": ">=6"
3430
- }
3431
- },
3432
- "node_modules/parent-module": {
3433
- "version": "1.0.1",
3434
- "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
3435
- "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
3436
- "license": "MIT",
3437
- "dependencies": {
3438
- "callsites": "^3.0.0"
3439
- },
3440
- "engines": {
3441
- "node": ">=6"
3442
- }
3443
- },
3444
- "node_modules/parse-json": {
3445
- "version": "5.2.0",
3446
- "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz",
3447
- "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==",
3448
- "license": "MIT",
3449
- "dependencies": {
3450
- "@babel/code-frame": "^7.0.0",
3451
- "error-ex": "^1.3.1",
3452
- "json-parse-even-better-errors": "^2.3.0",
3453
- "lines-and-columns": "^1.1.6"
3454
- },
3455
- "engines": {
3456
- "node": ">=8"
3457
- },
3458
- "funding": {
3459
- "url": "https://github.com/sponsors/sindresorhus"
3460
- }
3461
- },
3462
- "node_modules/path-exists": {
3463
- "version": "4.0.0",
3464
- "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
3465
- "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
3466
- "dev": true,
3467
- "license": "MIT",
3468
- "engines": {
3469
- "node": ">=8"
3470
- }
3471
- },
3472
- "node_modules/path-key": {
3473
- "version": "3.1.1",
3474
- "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
3475
- "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
3476
- "dev": true,
3477
- "license": "MIT",
3478
- "engines": {
3479
- "node": ">=8"
3480
- }
3481
- },
3482
- "node_modules/path-parse": {
3483
- "version": "1.0.7",
3484
- "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
3485
- "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==",
3486
- "license": "MIT"
3487
- },
3488
- "node_modules/path-type": {
3489
- "version": "4.0.0",
3490
- "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz",
3491
- "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==",
3492
- "license": "MIT",
3493
- "engines": {
3494
- "node": ">=8"
3495
- }
3496
- },
3497
- "node_modules/picocolors": {
3498
- "version": "1.1.1",
3499
- "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
3500
- "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
3501
- "license": "ISC"
3502
- },
3503
- "node_modules/picomatch": {
3504
- "version": "2.3.1",
3505
- "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
3506
- "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
3507
- "dev": true,
3508
- "license": "MIT",
3509
- "engines": {
3510
- "node": ">=8.6"
3511
- },
3512
- "funding": {
3513
- "url": "https://github.com/sponsors/jonschlinkert"
3514
- }
3515
- },
3516
- "node_modules/pkg-dir": {
3517
- "version": "4.2.0",
3518
- "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz",
3519
- "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==",
3520
- "dev": true,
3521
- "license": "MIT",
3522
- "dependencies": {
3523
- "find-up": "^4.0.0"
3524
- },
3525
- "engines": {
3526
- "node": ">=8"
3527
- }
3528
- },
3529
- "node_modules/pkg-dir/node_modules/find-up": {
3530
- "version": "4.1.0",
3531
- "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
3532
- "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
3533
- "dev": true,
3534
- "license": "MIT",
3535
- "dependencies": {
3536
- "locate-path": "^5.0.0",
3537
- "path-exists": "^4.0.0"
3538
- },
3539
- "engines": {
3540
- "node": ">=8"
3541
- }
3542
- },
3543
- "node_modules/pkg-dir/node_modules/locate-path": {
3544
- "version": "5.0.0",
3545
- "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
3546
- "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
3547
- "dev": true,
3548
- "license": "MIT",
3549
- "dependencies": {
3550
- "p-locate": "^4.1.0"
3551
- },
3552
- "engines": {
3553
- "node": ">=8"
3554
- }
3555
- },
3556
- "node_modules/pkg-dir/node_modules/p-limit": {
3557
- "version": "2.3.0",
3558
- "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
3559
- "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
3560
- "dev": true,
3561
- "license": "MIT",
3562
- "dependencies": {
3563
- "p-try": "^2.0.0"
3564
- },
3565
- "engines": {
3566
- "node": ">=6"
3567
- },
3568
- "funding": {
3569
- "url": "https://github.com/sponsors/sindresorhus"
3570
- }
3571
- },
3572
- "node_modules/pkg-dir/node_modules/p-locate": {
3573
- "version": "4.1.0",
3574
- "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
3575
- "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
3576
- "dev": true,
3577
- "license": "MIT",
3578
- "dependencies": {
3579
- "p-limit": "^2.2.0"
3580
- },
3581
- "engines": {
3582
- "node": ">=8"
3583
- }
3584
- },
3585
- "node_modules/postcss": {
3586
- "version": "8.5.1",
3587
- "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.1.tgz",
3588
- "integrity": "sha512-6oz2beyjc5VMn/KV1pPw8fliQkhBXrVn1Z3TVyqZxU8kZpzEKhBdmCFqI6ZbmGtamQvQGuU1sgPTk8ZrXDD7jQ==",
3589
- "dev": true,
3590
- "funding": [
3591
- {
3592
- "type": "opencollective",
3593
- "url": "https://opencollective.com/postcss/"
3594
- },
3595
- {
3596
- "type": "tidelift",
3597
- "url": "https://tidelift.com/funding/github/npm/postcss"
3598
- },
3599
- {
3600
- "type": "github",
3601
- "url": "https://github.com/sponsors/ai"
3602
- }
3603
- ],
3604
- "license": "MIT",
3605
- "dependencies": {
3606
- "nanoid": "^3.3.8",
3607
- "picocolors": "^1.1.1",
3608
- "source-map-js": "^1.2.1"
3609
- },
3610
- "engines": {
3611
- "node": "^10 || ^12 || >=14"
3612
- }
3613
- },
3614
- "node_modules/prelude-ls": {
3615
- "version": "1.2.1",
3616
- "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",
3617
- "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
3618
- "dev": true,
3619
- "license": "MIT",
3620
- "engines": {
3621
- "node": ">= 0.8.0"
3622
- }
3623
- },
3624
- "node_modules/prop-types": {
3625
- "version": "15.8.1",
3626
- "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz",
3627
- "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==",
3628
- "license": "MIT",
3629
- "dependencies": {
3630
- "loose-envify": "^1.4.0",
3631
- "object-assign": "^4.1.1",
3632
- "react-is": "^16.13.1"
3633
- }
3634
- },
3635
- "node_modules/prop-types/node_modules/react-is": {
3636
- "version": "16.13.1",
3637
- "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
3638
- "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==",
3639
- "license": "MIT"
3640
- },
3641
- "node_modules/punycode": {
3642
- "version": "2.3.1",
3643
- "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
3644
- "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
3645
- "dev": true,
3646
- "license": "MIT",
3647
- "engines": {
3648
- "node": ">=6"
3649
- }
3650
- },
3651
- "node_modules/queue-microtask": {
3652
- "version": "1.2.3",
3653
- "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
3654
- "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
3655
- "dev": true,
3656
- "funding": [
3657
- {
3658
- "type": "github",
3659
- "url": "https://github.com/sponsors/feross"
3660
- },
3661
- {
3662
- "type": "patreon",
3663
- "url": "https://www.patreon.com/feross"
3664
- },
3665
- {
3666
- "type": "consulting",
3667
- "url": "https://feross.org/support"
3668
- }
3669
- ],
3670
- "license": "MIT"
3671
- },
3672
- "node_modules/react": {
3673
- "version": "18.3.1",
3674
- "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz",
3675
- "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==",
3676
- "license": "MIT",
3677
- "dependencies": {
3678
- "loose-envify": "^1.1.0"
3679
- },
3680
- "engines": {
3681
- "node": ">=0.10.0"
3682
- }
3683
- },
3684
- "node_modules/react-dom": {
3685
- "version": "18.3.1",
3686
- "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz",
3687
- "integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==",
3688
- "license": "MIT",
3689
- "dependencies": {
3690
- "loose-envify": "^1.1.0",
3691
- "scheduler": "^0.23.2"
3692
- },
3693
- "peerDependencies": {
3694
- "react": "^18.3.1"
3695
- }
3696
- },
3697
- "node_modules/react-is": {
3698
- "version": "19.0.0",
3699
- "resolved": "https://registry.npmjs.org/react-is/-/react-is-19.0.0.tgz",
3700
- "integrity": "sha512-H91OHcwjZsbq3ClIDHMzBShc1rotbfACdWENsmEf0IFvZ3FgGPtdHMcsv45bQ1hAbgdfiA8SnxTKfDS+x/8m2g==",
3701
- "license": "MIT"
3702
- },
3703
- "node_modules/react-refresh": {
3704
- "version": "0.14.2",
3705
- "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.2.tgz",
3706
- "integrity": "sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==",
3707
- "dev": true,
3708
- "license": "MIT",
3709
- "engines": {
3710
- "node": ">=0.10.0"
3711
- }
3712
- },
3713
- "node_modules/react-transition-group": {
3714
- "version": "4.4.5",
3715
- "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz",
3716
- "integrity": "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==",
3717
- "license": "BSD-3-Clause",
3718
- "dependencies": {
3719
- "@babel/runtime": "^7.5.5",
3720
- "dom-helpers": "^5.0.1",
3721
- "loose-envify": "^1.4.0",
3722
- "prop-types": "^15.6.2"
3723
- },
3724
- "peerDependencies": {
3725
- "react": ">=16.6.0",
3726
- "react-dom": ">=16.6.0"
3727
- }
3728
- },
3729
- "node_modules/regenerator-runtime": {
3730
- "version": "0.14.1",
3731
- "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz",
3732
- "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==",
3733
- "license": "MIT"
3734
- },
3735
- "node_modules/resolve": {
3736
- "version": "1.22.10",
3737
- "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz",
3738
- "integrity": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==",
3739
- "license": "MIT",
3740
- "dependencies": {
3741
- "is-core-module": "^2.16.0",
3742
- "path-parse": "^1.0.7",
3743
- "supports-preserve-symlinks-flag": "^1.0.0"
3744
- },
3745
- "bin": {
3746
- "resolve": "bin/resolve"
3747
- },
3748
- "engines": {
3749
- "node": ">= 0.4"
3750
- },
3751
- "funding": {
3752
- "url": "https://github.com/sponsors/ljharb"
3753
- }
3754
- },
3755
- "node_modules/resolve-from": {
3756
- "version": "4.0.0",
3757
- "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
3758
- "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
3759
- "license": "MIT",
3760
- "engines": {
3761
- "node": ">=4"
3762
- }
3763
- },
3764
- "node_modules/reusify": {
3765
- "version": "1.0.4",
3766
- "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz",
3767
- "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==",
3768
- "dev": true,
3769
- "license": "MIT",
3770
- "engines": {
3771
- "iojs": ">=1.0.0",
3772
- "node": ">=0.10.0"
3773
- }
3774
- },
3775
- "node_modules/rollup": {
3776
- "version": "4.32.1",
3777
- "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.32.1.tgz",
3778
- "integrity": "sha512-z+aeEsOeEa3mEbS1Tjl6sAZ8NE3+AalQz1RJGj81M+fizusbdDMoEJwdJNHfaB40Scr4qNu+welOfes7maKonA==",
3779
- "dev": true,
3780
- "license": "MIT",
3781
- "dependencies": {
3782
- "@types/estree": "1.0.6"
3783
- },
3784
- "bin": {
3785
- "rollup": "dist/bin/rollup"
3786
- },
3787
- "engines": {
3788
- "node": ">=18.0.0",
3789
- "npm": ">=8.0.0"
3790
- },
3791
- "optionalDependencies": {
3792
- "@rollup/rollup-android-arm-eabi": "4.32.1",
3793
- "@rollup/rollup-android-arm64": "4.32.1",
3794
- "@rollup/rollup-darwin-arm64": "4.32.1",
3795
- "@rollup/rollup-darwin-x64": "4.32.1",
3796
- "@rollup/rollup-freebsd-arm64": "4.32.1",
3797
- "@rollup/rollup-freebsd-x64": "4.32.1",
3798
- "@rollup/rollup-linux-arm-gnueabihf": "4.32.1",
3799
- "@rollup/rollup-linux-arm-musleabihf": "4.32.1",
3800
- "@rollup/rollup-linux-arm64-gnu": "4.32.1",
3801
- "@rollup/rollup-linux-arm64-musl": "4.32.1",
3802
- "@rollup/rollup-linux-loongarch64-gnu": "4.32.1",
3803
- "@rollup/rollup-linux-powerpc64le-gnu": "4.32.1",
3804
- "@rollup/rollup-linux-riscv64-gnu": "4.32.1",
3805
- "@rollup/rollup-linux-s390x-gnu": "4.32.1",
3806
- "@rollup/rollup-linux-x64-gnu": "4.32.1",
3807
- "@rollup/rollup-linux-x64-musl": "4.32.1",
3808
- "@rollup/rollup-win32-arm64-msvc": "4.32.1",
3809
- "@rollup/rollup-win32-ia32-msvc": "4.32.1",
3810
- "@rollup/rollup-win32-x64-msvc": "4.32.1",
3811
- "fsevents": "~2.3.2"
3812
- }
3813
- },
3814
- "node_modules/run-parallel": {
3815
- "version": "1.2.0",
3816
- "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
3817
- "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
3818
- "dev": true,
3819
- "funding": [
3820
- {
3821
- "type": "github",
3822
- "url": "https://github.com/sponsors/feross"
3823
- },
3824
- {
3825
- "type": "patreon",
3826
- "url": "https://www.patreon.com/feross"
3827
- },
3828
- {
3829
- "type": "consulting",
3830
- "url": "https://feross.org/support"
3831
- }
3832
- ],
3833
- "license": "MIT",
3834
- "dependencies": {
3835
- "queue-microtask": "^1.2.2"
3836
- }
3837
- },
3838
- "node_modules/scheduler": {
3839
- "version": "0.23.2",
3840
- "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz",
3841
- "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==",
3842
- "license": "MIT",
3843
- "dependencies": {
3844
- "loose-envify": "^1.1.0"
3845
- }
3846
- },
3847
- "node_modules/semver": {
3848
- "version": "6.3.1",
3849
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
3850
- "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
3851
- "dev": true,
3852
- "license": "ISC",
3853
- "bin": {
3854
- "semver": "bin/semver.js"
3855
- }
3856
- },
3857
- "node_modules/shebang-command": {
3858
- "version": "2.0.0",
3859
- "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
3860
- "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
3861
- "dev": true,
3862
- "license": "MIT",
3863
- "dependencies": {
3864
- "shebang-regex": "^3.0.0"
3865
- },
3866
- "engines": {
3867
- "node": ">=8"
3868
- }
3869
- },
3870
- "node_modules/shebang-regex": {
3871
- "version": "3.0.0",
3872
- "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
3873
- "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
3874
- "dev": true,
3875
- "license": "MIT",
3876
- "engines": {
3877
- "node": ">=8"
3878
- }
3879
- },
3880
- "node_modules/slash": {
3881
- "version": "3.0.0",
3882
- "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
3883
- "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
3884
- "dev": true,
3885
- "license": "MIT",
3886
- "engines": {
3887
- "node": ">=8"
3888
- }
3889
- },
3890
- "node_modules/source-map": {
3891
- "version": "0.5.7",
3892
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
3893
- "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==",
3894
- "license": "BSD-3-Clause",
3895
- "engines": {
3896
- "node": ">=0.10.0"
3897
- }
3898
- },
3899
- "node_modules/source-map-js": {
3900
- "version": "1.2.1",
3901
- "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
3902
- "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
3903
- "dev": true,
3904
- "license": "BSD-3-Clause",
3905
- "engines": {
3906
- "node": ">=0.10.0"
3907
- }
3908
- },
3909
- "node_modules/strip-json-comments": {
3910
- "version": "3.1.1",
3911
- "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
3912
- "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
3913
- "dev": true,
3914
- "license": "MIT",
3915
- "engines": {
3916
- "node": ">=8"
3917
- },
3918
- "funding": {
3919
- "url": "https://github.com/sponsors/sindresorhus"
3920
- }
3921
- },
3922
- "node_modules/strip-outer": {
3923
- "version": "1.0.1",
3924
- "resolved": "https://registry.npmjs.org/strip-outer/-/strip-outer-1.0.1.tgz",
3925
- "integrity": "sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==",
3926
- "dev": true,
3927
- "license": "MIT",
3928
- "dependencies": {
3929
- "escape-string-regexp": "^1.0.2"
3930
- },
3931
- "engines": {
3932
- "node": ">=0.10.0"
3933
- }
3934
- },
3935
- "node_modules/strip-outer/node_modules/escape-string-regexp": {
3936
- "version": "1.0.5",
3937
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
3938
- "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==",
3939
- "dev": true,
3940
- "license": "MIT",
3941
- "engines": {
3942
- "node": ">=0.8.0"
3943
- }
3944
- },
3945
- "node_modules/stylis": {
3946
- "version": "4.2.0",
3947
- "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.2.0.tgz",
3948
- "integrity": "sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==",
3949
- "license": "MIT"
3950
- },
3951
- "node_modules/supports-color": {
3952
- "version": "7.2.0",
3953
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
3954
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
3955
- "dev": true,
3956
- "license": "MIT",
3957
- "dependencies": {
3958
- "has-flag": "^4.0.0"
3959
- },
3960
- "engines": {
3961
- "node": ">=8"
3962
- }
3963
- },
3964
- "node_modules/supports-preserve-symlinks-flag": {
3965
- "version": "1.0.0",
3966
- "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
3967
- "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
3968
- "license": "MIT",
3969
- "engines": {
3970
- "node": ">= 0.4"
3971
- },
3972
- "funding": {
3973
- "url": "https://github.com/sponsors/ljharb"
3974
- }
3975
- },
3976
- "node_modules/to-regex-range": {
3977
- "version": "5.0.1",
3978
- "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
3979
- "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
3980
- "dev": true,
3981
- "license": "MIT",
3982
- "dependencies": {
3983
- "is-number": "^7.0.0"
3984
- },
3985
- "engines": {
3986
- "node": ">=8.0"
3987
- }
3988
- },
3989
- "node_modules/trim-repeated": {
3990
- "version": "1.0.0",
3991
- "resolved": "https://registry.npmjs.org/trim-repeated/-/trim-repeated-1.0.0.tgz",
3992
- "integrity": "sha512-pkonvlKk8/ZuR0D5tLW8ljt5I8kmxp2XKymhepUeOdCEfKpZaktSArkLHZt76OB1ZvO9bssUsDty4SWhLvZpLg==",
3993
- "dev": true,
3994
- "license": "MIT",
3995
- "dependencies": {
3996
- "escape-string-regexp": "^1.0.2"
3997
- },
3998
- "engines": {
3999
- "node": ">=0.10.0"
4000
- }
4001
- },
4002
- "node_modules/trim-repeated/node_modules/escape-string-regexp": {
4003
- "version": "1.0.5",
4004
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
4005
- "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==",
4006
- "dev": true,
4007
- "license": "MIT",
4008
- "engines": {
4009
- "node": ">=0.8.0"
4010
- }
4011
- },
4012
- "node_modules/ts-api-utils": {
4013
- "version": "2.0.0",
4014
- "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.0.0.tgz",
4015
- "integrity": "sha512-xCt/TOAc+EOHS1XPnijD3/yzpH6qg2xppZO1YDqGoVsNXfQfzHpOdNuXwrwOU8u4ITXJyDCTyt8w5g1sZv9ynQ==",
4016
- "dev": true,
4017
- "license": "MIT",
4018
- "engines": {
4019
- "node": ">=18.12"
4020
- },
4021
- "peerDependencies": {
4022
- "typescript": ">=4.8.4"
4023
- }
4024
- },
4025
- "node_modules/type-check": {
4026
- "version": "0.4.0",
4027
- "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
4028
- "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
4029
- "dev": true,
4030
- "license": "MIT",
4031
- "dependencies": {
4032
- "prelude-ls": "^1.2.1"
4033
- },
4034
- "engines": {
4035
- "node": ">= 0.8.0"
4036
- }
4037
- },
4038
- "node_modules/typescript": {
4039
- "version": "5.6.3",
4040
- "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.6.3.tgz",
4041
- "integrity": "sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==",
4042
- "dev": true,
4043
- "license": "Apache-2.0",
4044
- "bin": {
4045
- "tsc": "bin/tsc",
4046
- "tsserver": "bin/tsserver"
4047
- },
4048
- "engines": {
4049
- "node": ">=14.17"
4050
- }
4051
- },
4052
- "node_modules/typescript-eslint": {
4053
- "version": "8.22.0",
4054
- "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.22.0.tgz",
4055
- "integrity": "sha512-Y2rj210FW1Wb6TWXzQc5+P+EWI9/zdS57hLEc0gnyuvdzWo8+Y8brKlbj0muejonhMI/xAZCnZZwjbIfv1CkOw==",
4056
- "dev": true,
4057
- "license": "MIT",
4058
- "dependencies": {
4059
- "@typescript-eslint/eslint-plugin": "8.22.0",
4060
- "@typescript-eslint/parser": "8.22.0",
4061
- "@typescript-eslint/utils": "8.22.0"
4062
- },
4063
- "engines": {
4064
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
4065
- },
4066
- "funding": {
4067
- "type": "opencollective",
4068
- "url": "https://opencollective.com/typescript-eslint"
4069
- },
4070
- "peerDependencies": {
4071
- "eslint": "^8.57.0 || ^9.0.0",
4072
- "typescript": ">=4.8.4 <5.8.0"
4073
- }
4074
- },
4075
- "node_modules/universalify": {
4076
- "version": "2.0.1",
4077
- "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz",
4078
- "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==",
4079
- "dev": true,
4080
- "license": "MIT",
4081
- "engines": {
4082
- "node": ">= 10.0.0"
4083
- }
4084
- },
4085
- "node_modules/update-browserslist-db": {
4086
- "version": "1.1.2",
4087
- "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.2.tgz",
4088
- "integrity": "sha512-PPypAm5qvlD7XMZC3BujecnaOxwhrtoFR+Dqkk5Aa/6DssiH0ibKoketaj9w8LP7Bont1rYeoV5plxD7RTEPRg==",
4089
- "dev": true,
4090
- "funding": [
4091
- {
4092
- "type": "opencollective",
4093
- "url": "https://opencollective.com/browserslist"
4094
- },
4095
- {
4096
- "type": "tidelift",
4097
- "url": "https://tidelift.com/funding/github/npm/browserslist"
4098
- },
4099
- {
4100
- "type": "github",
4101
- "url": "https://github.com/sponsors/ai"
4102
- }
4103
- ],
4104
- "license": "MIT",
4105
- "dependencies": {
4106
- "escalade": "^3.2.0",
4107
- "picocolors": "^1.1.1"
4108
- },
4109
- "bin": {
4110
- "update-browserslist-db": "cli.js"
4111
- },
4112
- "peerDependencies": {
4113
- "browserslist": ">= 4.21.0"
4114
- }
4115
- },
4116
- "node_modules/uri-js": {
4117
- "version": "4.4.1",
4118
- "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
4119
- "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
4120
- "dev": true,
4121
- "license": "BSD-2-Clause",
4122
- "dependencies": {
4123
- "punycode": "^2.1.0"
4124
- }
4125
- },
4126
- "node_modules/vite": {
4127
- "version": "6.0.11",
4128
- "resolved": "https://registry.npmjs.org/vite/-/vite-6.0.11.tgz",
4129
- "integrity": "sha512-4VL9mQPKoHy4+FE0NnRE/kbY51TOfaknxAjt3fJbGJxhIpBZiqVzlZDEesWWsuREXHwNdAoOFZ9MkPEVXczHwg==",
4130
- "dev": true,
4131
- "license": "MIT",
4132
- "dependencies": {
4133
- "esbuild": "^0.24.2",
4134
- "postcss": "^8.4.49",
4135
- "rollup": "^4.23.0"
4136
- },
4137
- "bin": {
4138
- "vite": "bin/vite.js"
4139
- },
4140
- "engines": {
4141
- "node": "^18.0.0 || ^20.0.0 || >=22.0.0"
4142
- },
4143
- "funding": {
4144
- "url": "https://github.com/vitejs/vite?sponsor=1"
4145
- },
4146
- "optionalDependencies": {
4147
- "fsevents": "~2.3.3"
4148
- },
4149
- "peerDependencies": {
4150
- "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0",
4151
- "jiti": ">=1.21.0",
4152
- "less": "*",
4153
- "lightningcss": "^1.21.0",
4154
- "sass": "*",
4155
- "sass-embedded": "*",
4156
- "stylus": "*",
4157
- "sugarss": "*",
4158
- "terser": "^5.16.0",
4159
- "tsx": "^4.8.1",
4160
- "yaml": "^2.4.2"
4161
- },
4162
- "peerDependenciesMeta": {
4163
- "@types/node": {
4164
- "optional": true
4165
- },
4166
- "jiti": {
4167
- "optional": true
4168
- },
4169
- "less": {
4170
- "optional": true
4171
- },
4172
- "lightningcss": {
4173
- "optional": true
4174
- },
4175
- "sass": {
4176
- "optional": true
4177
- },
4178
- "sass-embedded": {
4179
- "optional": true
4180
- },
4181
- "stylus": {
4182
- "optional": true
4183
- },
4184
- "sugarss": {
4185
- "optional": true
4186
- },
4187
- "terser": {
4188
- "optional": true
4189
- },
4190
- "tsx": {
4191
- "optional": true
4192
- },
4193
- "yaml": {
4194
- "optional": true
4195
- }
4196
- }
4197
- },
4198
- "node_modules/which": {
4199
- "version": "2.0.2",
4200
- "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
4201
- "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
4202
- "dev": true,
4203
- "license": "ISC",
4204
- "dependencies": {
4205
- "isexe": "^2.0.0"
4206
- },
4207
- "bin": {
4208
- "node-which": "bin/node-which"
4209
- },
4210
- "engines": {
4211
- "node": ">= 8"
4212
- }
4213
- },
4214
- "node_modules/word-wrap": {
4215
- "version": "1.2.5",
4216
- "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz",
4217
- "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==",
4218
- "dev": true,
4219
- "license": "MIT",
4220
- "engines": {
4221
- "node": ">=0.10.0"
4222
- }
4223
- },
4224
- "node_modules/yallist": {
4225
- "version": "3.1.1",
4226
- "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
4227
- "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
4228
- "dev": true,
4229
- "license": "ISC"
4230
- },
4231
- "node_modules/yaml": {
4232
- "version": "2.7.0",
4233
- "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.7.0.tgz",
4234
- "integrity": "sha512-+hSoy/QHluxmC9kCIJyL/uyFmLmc+e5CFR5Wa+bpIhIj85LVb9ZH2nVnqrHoSvKogwODv0ClqZkmiSSaIH5LTA==",
4235
- "dev": true,
4236
- "license": "ISC",
4237
- "optional": true,
4238
- "peer": true,
4239
- "bin": {
4240
- "yaml": "bin.mjs"
4241
- },
4242
- "engines": {
4243
- "node": ">= 14"
4244
- }
4245
- },
4246
- "node_modules/yocto-queue": {
4247
- "version": "0.1.0",
4248
- "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
4249
- "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
4250
- "dev": true,
4251
- "license": "MIT",
4252
- "engines": {
4253
- "node": ">=10"
4254
- },
4255
- "funding": {
4256
- "url": "https://github.com/sponsors/sindresorhus"
4257
- }
4258
- }
4259
- }
4260
- }