create-ec-app 0.0.6 → 0.0.7

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 (95) hide show
  1. package/package.json +3 -2
  2. package/templates/base/.prettierrc.json +12 -0
  3. package/templates/base/README.md +73 -0
  4. package/templates/base/biome.json +54 -0
  5. package/templates/base/eslint.config.js +23 -0
  6. package/templates/base/index.html +13 -0
  7. package/templates/base/package-lock.json +3898 -0
  8. package/templates/base/package.json +42 -0
  9. package/templates/base/public/vite.svg +1 -0
  10. package/templates/base/src/App.css +0 -0
  11. package/templates/base/src/App.tsx +11 -0
  12. package/templates/base/src/global.d.ts +4 -0
  13. package/templates/base/src/index.css +1 -0
  14. package/templates/base/src/main.tsx +29 -0
  15. package/templates/base/tsconfig.app.json +32 -0
  16. package/templates/base/tsconfig.json +19 -0
  17. package/templates/base/tsconfig.node.json +26 -0
  18. package/templates/base/vite.config.ts +14 -0
  19. package/templates/targets/power-pages/.env +3 -0
  20. package/templates/targets/power-pages/README.md +180 -0
  21. package/templates/targets/power-pages/powerpages.config.json +5 -0
  22. package/templates/targets/power-pages/src/App.patch.tsx +17 -0
  23. package/templates/targets/power-pages/src/context/AuthContext.tsx +273 -0
  24. package/templates/targets/power-pages/src/main.patch.tsx +32 -0
  25. package/templates/targets/power-pages/vite.config.patch.ts +23 -0
  26. package/templates/targets/swa/.env +2 -0
  27. package/templates/targets/swa/package.patch.json +5 -0
  28. package/templates/targets/swa/staticwebapp.config.json +5 -0
  29. package/templates/targets/swa/swa-cli.config.json +14 -0
  30. package/templates/targets/webresource/README.md +263 -0
  31. package/templates/targets/webresource/src/services/AuthService.ts +38 -0
  32. package/templates/targets/webresource/token.json +8 -0
  33. package/templates/targets/webresource/vite.config.patch.ts +40 -0
  34. package/templates/ui/kendo/kendo-tw-preset.js +240 -0
  35. package/templates/ui/kendo/package.patch.json +7 -0
  36. package/templates/ui/kendo/src/main.patch.tsx +29 -0
  37. package/templates/ui/kendo/tailwind.config.js +14 -0
  38. package/templates/ui/shadcn-ui/components.json +22 -0
  39. package/templates/ui/shadcn-ui/package.patch.json +50 -0
  40. package/templates/ui/shadcn-ui/src/components/ui/accordion.tsx +64 -0
  41. package/templates/ui/shadcn-ui/src/components/ui/alert-dialog.tsx +155 -0
  42. package/templates/ui/shadcn-ui/src/components/ui/alert.tsx +66 -0
  43. package/templates/ui/shadcn-ui/src/components/ui/aspect-ratio.tsx +11 -0
  44. package/templates/ui/shadcn-ui/src/components/ui/avatar.tsx +51 -0
  45. package/templates/ui/shadcn-ui/src/components/ui/badge.tsx +46 -0
  46. package/templates/ui/shadcn-ui/src/components/ui/breadcrumb.tsx +109 -0
  47. package/templates/ui/shadcn-ui/src/components/ui/button-group.tsx +83 -0
  48. package/templates/ui/shadcn-ui/src/components/ui/button.tsx +60 -0
  49. package/templates/ui/shadcn-ui/src/components/ui/calendar.tsx +216 -0
  50. package/templates/ui/shadcn-ui/src/components/ui/card.tsx +92 -0
  51. package/templates/ui/shadcn-ui/src/components/ui/carousel.tsx +239 -0
  52. package/templates/ui/shadcn-ui/src/components/ui/chart.tsx +357 -0
  53. package/templates/ui/shadcn-ui/src/components/ui/checkbox.tsx +32 -0
  54. package/templates/ui/shadcn-ui/src/components/ui/collapsible.tsx +31 -0
  55. package/templates/ui/shadcn-ui/src/components/ui/command.tsx +182 -0
  56. package/templates/ui/shadcn-ui/src/components/ui/context-menu.tsx +252 -0
  57. package/templates/ui/shadcn-ui/src/components/ui/dialog.tsx +141 -0
  58. package/templates/ui/shadcn-ui/src/components/ui/drawer.tsx +135 -0
  59. package/templates/ui/shadcn-ui/src/components/ui/dropdown-menu.tsx +255 -0
  60. package/templates/ui/shadcn-ui/src/components/ui/empty.tsx +104 -0
  61. package/templates/ui/shadcn-ui/src/components/ui/field.tsx +246 -0
  62. package/templates/ui/shadcn-ui/src/components/ui/form.tsx +167 -0
  63. package/templates/ui/shadcn-ui/src/components/ui/hover-card.tsx +44 -0
  64. package/templates/ui/shadcn-ui/src/components/ui/input-group.tsx +170 -0
  65. package/templates/ui/shadcn-ui/src/components/ui/input-otp.tsx +75 -0
  66. package/templates/ui/shadcn-ui/src/components/ui/input.tsx +21 -0
  67. package/templates/ui/shadcn-ui/src/components/ui/item.tsx +193 -0
  68. package/templates/ui/shadcn-ui/src/components/ui/kbd.tsx +28 -0
  69. package/templates/ui/shadcn-ui/src/components/ui/label.tsx +24 -0
  70. package/templates/ui/shadcn-ui/src/components/ui/menubar.tsx +274 -0
  71. package/templates/ui/shadcn-ui/src/components/ui/navigation-menu.tsx +168 -0
  72. package/templates/ui/shadcn-ui/src/components/ui/pagination.tsx +127 -0
  73. package/templates/ui/shadcn-ui/src/components/ui/popover.tsx +48 -0
  74. package/templates/ui/shadcn-ui/src/components/ui/progress.tsx +29 -0
  75. package/templates/ui/shadcn-ui/src/components/ui/radio-group.tsx +45 -0
  76. package/templates/ui/shadcn-ui/src/components/ui/resizable.tsx +54 -0
  77. package/templates/ui/shadcn-ui/src/components/ui/scroll-area.tsx +58 -0
  78. package/templates/ui/shadcn-ui/src/components/ui/select.tsx +185 -0
  79. package/templates/ui/shadcn-ui/src/components/ui/separator.tsx +28 -0
  80. package/templates/ui/shadcn-ui/src/components/ui/sheet.tsx +137 -0
  81. package/templates/ui/shadcn-ui/src/components/ui/sidebar.tsx +726 -0
  82. package/templates/ui/shadcn-ui/src/components/ui/skeleton.tsx +13 -0
  83. package/templates/ui/shadcn-ui/src/components/ui/slider.tsx +63 -0
  84. package/templates/ui/shadcn-ui/src/components/ui/sonner.tsx +38 -0
  85. package/templates/ui/shadcn-ui/src/components/ui/spinner.tsx +16 -0
  86. package/templates/ui/shadcn-ui/src/components/ui/switch.tsx +31 -0
  87. package/templates/ui/shadcn-ui/src/components/ui/table.tsx +114 -0
  88. package/templates/ui/shadcn-ui/src/components/ui/tabs.tsx +66 -0
  89. package/templates/ui/shadcn-ui/src/components/ui/textarea.tsx +18 -0
  90. package/templates/ui/shadcn-ui/src/components/ui/toggle-group.tsx +81 -0
  91. package/templates/ui/shadcn-ui/src/components/ui/toggle.tsx +45 -0
  92. package/templates/ui/shadcn-ui/src/components/ui/tooltip.tsx +61 -0
  93. package/templates/ui/shadcn-ui/src/hooks/use-mobile.ts +19 -0
  94. package/templates/ui/shadcn-ui/src/index.patch.css +121 -0
  95. package/templates/ui/shadcn-ui/src/lib/utils.ts +6 -0
@@ -0,0 +1,3898 @@
1
+ {
2
+ "name": "base",
3
+ "version": "0.1.0",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "base",
9
+ "version": "0.1.0",
10
+ "dependencies": {
11
+ "@tailwindcss/vite": "^4.1.18",
12
+ "@tanstack/react-query": "^5.90.16",
13
+ "@types/xrm": "^9.0.88",
14
+ "react": "^19.2.3",
15
+ "react-dom": "^19.2.3",
16
+ "tailwindcss": "^4.1.18",
17
+ "zod": "^4.3.5",
18
+ "zustand": "^5.0.9"
19
+ },
20
+ "devDependencies": {
21
+ "@eslint/js": "^9.39.2",
22
+ "@tanstack/eslint-plugin-query": "^5.91.2",
23
+ "@types/node": "^24.10.4",
24
+ "@types/react": "^19.2.7",
25
+ "@types/react-dom": "^19.2.3",
26
+ "@vitejs/plugin-react": "^5.1.2",
27
+ "eslint": "^9.39.2",
28
+ "eslint-plugin-react-hooks": "^7.0.1",
29
+ "eslint-plugin-react-refresh": "^0.4.26",
30
+ "globals": "^16.5.0",
31
+ "typescript": "~5.9.3",
32
+ "typescript-eslint": "^8.51.0",
33
+ "vite": "^7.3.0"
34
+ }
35
+ },
36
+ "node_modules/@babel/code-frame": {
37
+ "version": "7.27.1",
38
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz",
39
+ "integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==",
40
+ "dev": true,
41
+ "license": "MIT",
42
+ "dependencies": {
43
+ "@babel/helper-validator-identifier": "^7.27.1",
44
+ "js-tokens": "^4.0.0",
45
+ "picocolors": "^1.1.1"
46
+ },
47
+ "engines": {
48
+ "node": ">=6.9.0"
49
+ }
50
+ },
51
+ "node_modules/@babel/compat-data": {
52
+ "version": "7.28.5",
53
+ "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.28.5.tgz",
54
+ "integrity": "sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA==",
55
+ "dev": true,
56
+ "license": "MIT",
57
+ "engines": {
58
+ "node": ">=6.9.0"
59
+ }
60
+ },
61
+ "node_modules/@babel/core": {
62
+ "version": "7.28.5",
63
+ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.28.5.tgz",
64
+ "integrity": "sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw==",
65
+ "dev": true,
66
+ "license": "MIT",
67
+ "peer": true,
68
+ "dependencies": {
69
+ "@babel/code-frame": "^7.27.1",
70
+ "@babel/generator": "^7.28.5",
71
+ "@babel/helper-compilation-targets": "^7.27.2",
72
+ "@babel/helper-module-transforms": "^7.28.3",
73
+ "@babel/helpers": "^7.28.4",
74
+ "@babel/parser": "^7.28.5",
75
+ "@babel/template": "^7.27.2",
76
+ "@babel/traverse": "^7.28.5",
77
+ "@babel/types": "^7.28.5",
78
+ "@jridgewell/remapping": "^2.3.5",
79
+ "convert-source-map": "^2.0.0",
80
+ "debug": "^4.1.0",
81
+ "gensync": "^1.0.0-beta.2",
82
+ "json5": "^2.2.3",
83
+ "semver": "^6.3.1"
84
+ },
85
+ "engines": {
86
+ "node": ">=6.9.0"
87
+ },
88
+ "funding": {
89
+ "type": "opencollective",
90
+ "url": "https://opencollective.com/babel"
91
+ }
92
+ },
93
+ "node_modules/@babel/core/node_modules/semver": {
94
+ "version": "6.3.1",
95
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
96
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
97
+ "dev": true,
98
+ "license": "ISC",
99
+ "bin": {
100
+ "semver": "bin/semver.js"
101
+ }
102
+ },
103
+ "node_modules/@babel/generator": {
104
+ "version": "7.28.5",
105
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.5.tgz",
106
+ "integrity": "sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==",
107
+ "dev": true,
108
+ "license": "MIT",
109
+ "dependencies": {
110
+ "@babel/parser": "^7.28.5",
111
+ "@babel/types": "^7.28.5",
112
+ "@jridgewell/gen-mapping": "^0.3.12",
113
+ "@jridgewell/trace-mapping": "^0.3.28",
114
+ "jsesc": "^3.0.2"
115
+ },
116
+ "engines": {
117
+ "node": ">=6.9.0"
118
+ }
119
+ },
120
+ "node_modules/@babel/helper-compilation-targets": {
121
+ "version": "7.27.2",
122
+ "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz",
123
+ "integrity": "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==",
124
+ "dev": true,
125
+ "license": "MIT",
126
+ "dependencies": {
127
+ "@babel/compat-data": "^7.27.2",
128
+ "@babel/helper-validator-option": "^7.27.1",
129
+ "browserslist": "^4.24.0",
130
+ "lru-cache": "^5.1.1",
131
+ "semver": "^6.3.1"
132
+ },
133
+ "engines": {
134
+ "node": ">=6.9.0"
135
+ }
136
+ },
137
+ "node_modules/@babel/helper-compilation-targets/node_modules/semver": {
138
+ "version": "6.3.1",
139
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
140
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
141
+ "dev": true,
142
+ "license": "ISC",
143
+ "bin": {
144
+ "semver": "bin/semver.js"
145
+ }
146
+ },
147
+ "node_modules/@babel/helper-globals": {
148
+ "version": "7.28.0",
149
+ "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz",
150
+ "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==",
151
+ "dev": true,
152
+ "license": "MIT",
153
+ "engines": {
154
+ "node": ">=6.9.0"
155
+ }
156
+ },
157
+ "node_modules/@babel/helper-module-imports": {
158
+ "version": "7.27.1",
159
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz",
160
+ "integrity": "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==",
161
+ "dev": true,
162
+ "license": "MIT",
163
+ "dependencies": {
164
+ "@babel/traverse": "^7.27.1",
165
+ "@babel/types": "^7.27.1"
166
+ },
167
+ "engines": {
168
+ "node": ">=6.9.0"
169
+ }
170
+ },
171
+ "node_modules/@babel/helper-module-transforms": {
172
+ "version": "7.28.3",
173
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.3.tgz",
174
+ "integrity": "sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==",
175
+ "dev": true,
176
+ "license": "MIT",
177
+ "dependencies": {
178
+ "@babel/helper-module-imports": "^7.27.1",
179
+ "@babel/helper-validator-identifier": "^7.27.1",
180
+ "@babel/traverse": "^7.28.3"
181
+ },
182
+ "engines": {
183
+ "node": ">=6.9.0"
184
+ },
185
+ "peerDependencies": {
186
+ "@babel/core": "^7.0.0"
187
+ }
188
+ },
189
+ "node_modules/@babel/helper-plugin-utils": {
190
+ "version": "7.27.1",
191
+ "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz",
192
+ "integrity": "sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==",
193
+ "dev": true,
194
+ "license": "MIT",
195
+ "engines": {
196
+ "node": ">=6.9.0"
197
+ }
198
+ },
199
+ "node_modules/@babel/helper-string-parser": {
200
+ "version": "7.27.1",
201
+ "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
202
+ "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
203
+ "dev": true,
204
+ "license": "MIT",
205
+ "engines": {
206
+ "node": ">=6.9.0"
207
+ }
208
+ },
209
+ "node_modules/@babel/helper-validator-identifier": {
210
+ "version": "7.28.5",
211
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz",
212
+ "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==",
213
+ "dev": true,
214
+ "license": "MIT",
215
+ "engines": {
216
+ "node": ">=6.9.0"
217
+ }
218
+ },
219
+ "node_modules/@babel/helper-validator-option": {
220
+ "version": "7.27.1",
221
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz",
222
+ "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==",
223
+ "dev": true,
224
+ "license": "MIT",
225
+ "engines": {
226
+ "node": ">=6.9.0"
227
+ }
228
+ },
229
+ "node_modules/@babel/helpers": {
230
+ "version": "7.28.4",
231
+ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.4.tgz",
232
+ "integrity": "sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==",
233
+ "dev": true,
234
+ "license": "MIT",
235
+ "dependencies": {
236
+ "@babel/template": "^7.27.2",
237
+ "@babel/types": "^7.28.4"
238
+ },
239
+ "engines": {
240
+ "node": ">=6.9.0"
241
+ }
242
+ },
243
+ "node_modules/@babel/parser": {
244
+ "version": "7.28.5",
245
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.5.tgz",
246
+ "integrity": "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==",
247
+ "dev": true,
248
+ "license": "MIT",
249
+ "dependencies": {
250
+ "@babel/types": "^7.28.5"
251
+ },
252
+ "bin": {
253
+ "parser": "bin/babel-parser.js"
254
+ },
255
+ "engines": {
256
+ "node": ">=6.0.0"
257
+ }
258
+ },
259
+ "node_modules/@babel/plugin-transform-react-jsx-self": {
260
+ "version": "7.27.1",
261
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.27.1.tgz",
262
+ "integrity": "sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==",
263
+ "dev": true,
264
+ "license": "MIT",
265
+ "dependencies": {
266
+ "@babel/helper-plugin-utils": "^7.27.1"
267
+ },
268
+ "engines": {
269
+ "node": ">=6.9.0"
270
+ },
271
+ "peerDependencies": {
272
+ "@babel/core": "^7.0.0-0"
273
+ }
274
+ },
275
+ "node_modules/@babel/plugin-transform-react-jsx-source": {
276
+ "version": "7.27.1",
277
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.27.1.tgz",
278
+ "integrity": "sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==",
279
+ "dev": true,
280
+ "license": "MIT",
281
+ "dependencies": {
282
+ "@babel/helper-plugin-utils": "^7.27.1"
283
+ },
284
+ "engines": {
285
+ "node": ">=6.9.0"
286
+ },
287
+ "peerDependencies": {
288
+ "@babel/core": "^7.0.0-0"
289
+ }
290
+ },
291
+ "node_modules/@babel/template": {
292
+ "version": "7.27.2",
293
+ "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz",
294
+ "integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==",
295
+ "dev": true,
296
+ "license": "MIT",
297
+ "dependencies": {
298
+ "@babel/code-frame": "^7.27.1",
299
+ "@babel/parser": "^7.27.2",
300
+ "@babel/types": "^7.27.1"
301
+ },
302
+ "engines": {
303
+ "node": ">=6.9.0"
304
+ }
305
+ },
306
+ "node_modules/@babel/traverse": {
307
+ "version": "7.28.5",
308
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.5.tgz",
309
+ "integrity": "sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==",
310
+ "dev": true,
311
+ "license": "MIT",
312
+ "dependencies": {
313
+ "@babel/code-frame": "^7.27.1",
314
+ "@babel/generator": "^7.28.5",
315
+ "@babel/helper-globals": "^7.28.0",
316
+ "@babel/parser": "^7.28.5",
317
+ "@babel/template": "^7.27.2",
318
+ "@babel/types": "^7.28.5",
319
+ "debug": "^4.3.1"
320
+ },
321
+ "engines": {
322
+ "node": ">=6.9.0"
323
+ }
324
+ },
325
+ "node_modules/@babel/types": {
326
+ "version": "7.28.5",
327
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.5.tgz",
328
+ "integrity": "sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==",
329
+ "dev": true,
330
+ "license": "MIT",
331
+ "dependencies": {
332
+ "@babel/helper-string-parser": "^7.27.1",
333
+ "@babel/helper-validator-identifier": "^7.28.5"
334
+ },
335
+ "engines": {
336
+ "node": ">=6.9.0"
337
+ }
338
+ },
339
+ "node_modules/@esbuild/aix-ppc64": {
340
+ "version": "0.27.2",
341
+ "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.2.tgz",
342
+ "integrity": "sha512-GZMB+a0mOMZs4MpDbj8RJp4cw+w1WV5NYD6xzgvzUJ5Ek2jerwfO2eADyI6ExDSUED+1X8aMbegahsJi+8mgpw==",
343
+ "cpu": [
344
+ "ppc64"
345
+ ],
346
+ "license": "MIT",
347
+ "optional": true,
348
+ "os": [
349
+ "aix"
350
+ ],
351
+ "engines": {
352
+ "node": ">=18"
353
+ }
354
+ },
355
+ "node_modules/@esbuild/android-arm": {
356
+ "version": "0.27.2",
357
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.2.tgz",
358
+ "integrity": "sha512-DVNI8jlPa7Ujbr1yjU2PfUSRtAUZPG9I1RwW4F4xFB1Imiu2on0ADiI/c3td+KmDtVKNbi+nffGDQMfcIMkwIA==",
359
+ "cpu": [
360
+ "arm"
361
+ ],
362
+ "license": "MIT",
363
+ "optional": true,
364
+ "os": [
365
+ "android"
366
+ ],
367
+ "engines": {
368
+ "node": ">=18"
369
+ }
370
+ },
371
+ "node_modules/@esbuild/android-arm64": {
372
+ "version": "0.27.2",
373
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.2.tgz",
374
+ "integrity": "sha512-pvz8ZZ7ot/RBphf8fv60ljmaoydPU12VuXHImtAs0XhLLw+EXBi2BLe3OYSBslR4rryHvweW5gmkKFwTiFy6KA==",
375
+ "cpu": [
376
+ "arm64"
377
+ ],
378
+ "license": "MIT",
379
+ "optional": true,
380
+ "os": [
381
+ "android"
382
+ ],
383
+ "engines": {
384
+ "node": ">=18"
385
+ }
386
+ },
387
+ "node_modules/@esbuild/android-x64": {
388
+ "version": "0.27.2",
389
+ "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.2.tgz",
390
+ "integrity": "sha512-z8Ank4Byh4TJJOh4wpz8g2vDy75zFL0TlZlkUkEwYXuPSgX8yzep596n6mT7905kA9uHZsf/o2OJZubl2l3M7A==",
391
+ "cpu": [
392
+ "x64"
393
+ ],
394
+ "license": "MIT",
395
+ "optional": true,
396
+ "os": [
397
+ "android"
398
+ ],
399
+ "engines": {
400
+ "node": ">=18"
401
+ }
402
+ },
403
+ "node_modules/@esbuild/darwin-arm64": {
404
+ "version": "0.27.2",
405
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.2.tgz",
406
+ "integrity": "sha512-davCD2Zc80nzDVRwXTcQP/28fiJbcOwvdolL0sOiOsbwBa72kegmVU0Wrh1MYrbuCL98Omp5dVhQFWRKR2ZAlg==",
407
+ "cpu": [
408
+ "arm64"
409
+ ],
410
+ "license": "MIT",
411
+ "optional": true,
412
+ "os": [
413
+ "darwin"
414
+ ],
415
+ "engines": {
416
+ "node": ">=18"
417
+ }
418
+ },
419
+ "node_modules/@esbuild/darwin-x64": {
420
+ "version": "0.27.2",
421
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.2.tgz",
422
+ "integrity": "sha512-ZxtijOmlQCBWGwbVmwOF/UCzuGIbUkqB1faQRf5akQmxRJ1ujusWsb3CVfk/9iZKr2L5SMU5wPBi1UWbvL+VQA==",
423
+ "cpu": [
424
+ "x64"
425
+ ],
426
+ "license": "MIT",
427
+ "optional": true,
428
+ "os": [
429
+ "darwin"
430
+ ],
431
+ "engines": {
432
+ "node": ">=18"
433
+ }
434
+ },
435
+ "node_modules/@esbuild/freebsd-arm64": {
436
+ "version": "0.27.2",
437
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.2.tgz",
438
+ "integrity": "sha512-lS/9CN+rgqQ9czogxlMcBMGd+l8Q3Nj1MFQwBZJyoEKI50XGxwuzznYdwcav6lpOGv5BqaZXqvBSiB/kJ5op+g==",
439
+ "cpu": [
440
+ "arm64"
441
+ ],
442
+ "license": "MIT",
443
+ "optional": true,
444
+ "os": [
445
+ "freebsd"
446
+ ],
447
+ "engines": {
448
+ "node": ">=18"
449
+ }
450
+ },
451
+ "node_modules/@esbuild/freebsd-x64": {
452
+ "version": "0.27.2",
453
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.2.tgz",
454
+ "integrity": "sha512-tAfqtNYb4YgPnJlEFu4c212HYjQWSO/w/h/lQaBK7RbwGIkBOuNKQI9tqWzx7Wtp7bTPaGC6MJvWI608P3wXYA==",
455
+ "cpu": [
456
+ "x64"
457
+ ],
458
+ "license": "MIT",
459
+ "optional": true,
460
+ "os": [
461
+ "freebsd"
462
+ ],
463
+ "engines": {
464
+ "node": ">=18"
465
+ }
466
+ },
467
+ "node_modules/@esbuild/linux-arm": {
468
+ "version": "0.27.2",
469
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.2.tgz",
470
+ "integrity": "sha512-vWfq4GaIMP9AIe4yj1ZUW18RDhx6EPQKjwe7n8BbIecFtCQG4CfHGaHuh7fdfq+y3LIA2vGS/o9ZBGVxIDi9hw==",
471
+ "cpu": [
472
+ "arm"
473
+ ],
474
+ "license": "MIT",
475
+ "optional": true,
476
+ "os": [
477
+ "linux"
478
+ ],
479
+ "engines": {
480
+ "node": ">=18"
481
+ }
482
+ },
483
+ "node_modules/@esbuild/linux-arm64": {
484
+ "version": "0.27.2",
485
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.2.tgz",
486
+ "integrity": "sha512-hYxN8pr66NsCCiRFkHUAsxylNOcAQaxSSkHMMjcpx0si13t1LHFphxJZUiGwojB1a/Hd5OiPIqDdXONia6bhTw==",
487
+ "cpu": [
488
+ "arm64"
489
+ ],
490
+ "license": "MIT",
491
+ "optional": true,
492
+ "os": [
493
+ "linux"
494
+ ],
495
+ "engines": {
496
+ "node": ">=18"
497
+ }
498
+ },
499
+ "node_modules/@esbuild/linux-ia32": {
500
+ "version": "0.27.2",
501
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.2.tgz",
502
+ "integrity": "sha512-MJt5BRRSScPDwG2hLelYhAAKh9imjHK5+NE/tvnRLbIqUWa+0E9N4WNMjmp/kXXPHZGqPLxggwVhz7QP8CTR8w==",
503
+ "cpu": [
504
+ "ia32"
505
+ ],
506
+ "license": "MIT",
507
+ "optional": true,
508
+ "os": [
509
+ "linux"
510
+ ],
511
+ "engines": {
512
+ "node": ">=18"
513
+ }
514
+ },
515
+ "node_modules/@esbuild/linux-loong64": {
516
+ "version": "0.27.2",
517
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.2.tgz",
518
+ "integrity": "sha512-lugyF1atnAT463aO6KPshVCJK5NgRnU4yb3FUumyVz+cGvZbontBgzeGFO1nF+dPueHD367a2ZXe1NtUkAjOtg==",
519
+ "cpu": [
520
+ "loong64"
521
+ ],
522
+ "license": "MIT",
523
+ "optional": true,
524
+ "os": [
525
+ "linux"
526
+ ],
527
+ "engines": {
528
+ "node": ">=18"
529
+ }
530
+ },
531
+ "node_modules/@esbuild/linux-mips64el": {
532
+ "version": "0.27.2",
533
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.2.tgz",
534
+ "integrity": "sha512-nlP2I6ArEBewvJ2gjrrkESEZkB5mIoaTswuqNFRv/WYd+ATtUpe9Y09RnJvgvdag7he0OWgEZWhviS1OTOKixw==",
535
+ "cpu": [
536
+ "mips64el"
537
+ ],
538
+ "license": "MIT",
539
+ "optional": true,
540
+ "os": [
541
+ "linux"
542
+ ],
543
+ "engines": {
544
+ "node": ">=18"
545
+ }
546
+ },
547
+ "node_modules/@esbuild/linux-ppc64": {
548
+ "version": "0.27.2",
549
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.2.tgz",
550
+ "integrity": "sha512-C92gnpey7tUQONqg1n6dKVbx3vphKtTHJaNG2Ok9lGwbZil6DrfyecMsp9CrmXGQJmZ7iiVXvvZH6Ml5hL6XdQ==",
551
+ "cpu": [
552
+ "ppc64"
553
+ ],
554
+ "license": "MIT",
555
+ "optional": true,
556
+ "os": [
557
+ "linux"
558
+ ],
559
+ "engines": {
560
+ "node": ">=18"
561
+ }
562
+ },
563
+ "node_modules/@esbuild/linux-riscv64": {
564
+ "version": "0.27.2",
565
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.2.tgz",
566
+ "integrity": "sha512-B5BOmojNtUyN8AXlK0QJyvjEZkWwy/FKvakkTDCziX95AowLZKR6aCDhG7LeF7uMCXEJqwa8Bejz5LTPYm8AvA==",
567
+ "cpu": [
568
+ "riscv64"
569
+ ],
570
+ "license": "MIT",
571
+ "optional": true,
572
+ "os": [
573
+ "linux"
574
+ ],
575
+ "engines": {
576
+ "node": ">=18"
577
+ }
578
+ },
579
+ "node_modules/@esbuild/linux-s390x": {
580
+ "version": "0.27.2",
581
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.2.tgz",
582
+ "integrity": "sha512-p4bm9+wsPwup5Z8f4EpfN63qNagQ47Ua2znaqGH6bqLlmJ4bx97Y9JdqxgGZ6Y8xVTixUnEkoKSHcpRlDnNr5w==",
583
+ "cpu": [
584
+ "s390x"
585
+ ],
586
+ "license": "MIT",
587
+ "optional": true,
588
+ "os": [
589
+ "linux"
590
+ ],
591
+ "engines": {
592
+ "node": ">=18"
593
+ }
594
+ },
595
+ "node_modules/@esbuild/linux-x64": {
596
+ "version": "0.27.2",
597
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.2.tgz",
598
+ "integrity": "sha512-uwp2Tip5aPmH+NRUwTcfLb+W32WXjpFejTIOWZFw/v7/KnpCDKG66u4DLcurQpiYTiYwQ9B7KOeMJvLCu/OvbA==",
599
+ "cpu": [
600
+ "x64"
601
+ ],
602
+ "license": "MIT",
603
+ "optional": true,
604
+ "os": [
605
+ "linux"
606
+ ],
607
+ "engines": {
608
+ "node": ">=18"
609
+ }
610
+ },
611
+ "node_modules/@esbuild/netbsd-arm64": {
612
+ "version": "0.27.2",
613
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.2.tgz",
614
+ "integrity": "sha512-Kj6DiBlwXrPsCRDeRvGAUb/LNrBASrfqAIok+xB0LxK8CHqxZ037viF13ugfsIpePH93mX7xfJp97cyDuTZ3cw==",
615
+ "cpu": [
616
+ "arm64"
617
+ ],
618
+ "license": "MIT",
619
+ "optional": true,
620
+ "os": [
621
+ "netbsd"
622
+ ],
623
+ "engines": {
624
+ "node": ">=18"
625
+ }
626
+ },
627
+ "node_modules/@esbuild/netbsd-x64": {
628
+ "version": "0.27.2",
629
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.2.tgz",
630
+ "integrity": "sha512-HwGDZ0VLVBY3Y+Nw0JexZy9o/nUAWq9MlV7cahpaXKW6TOzfVno3y3/M8Ga8u8Yr7GldLOov27xiCnqRZf0tCA==",
631
+ "cpu": [
632
+ "x64"
633
+ ],
634
+ "license": "MIT",
635
+ "optional": true,
636
+ "os": [
637
+ "netbsd"
638
+ ],
639
+ "engines": {
640
+ "node": ">=18"
641
+ }
642
+ },
643
+ "node_modules/@esbuild/openbsd-arm64": {
644
+ "version": "0.27.2",
645
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.2.tgz",
646
+ "integrity": "sha512-DNIHH2BPQ5551A7oSHD0CKbwIA/Ox7+78/AWkbS5QoRzaqlev2uFayfSxq68EkonB+IKjiuxBFoV8ESJy8bOHA==",
647
+ "cpu": [
648
+ "arm64"
649
+ ],
650
+ "license": "MIT",
651
+ "optional": true,
652
+ "os": [
653
+ "openbsd"
654
+ ],
655
+ "engines": {
656
+ "node": ">=18"
657
+ }
658
+ },
659
+ "node_modules/@esbuild/openbsd-x64": {
660
+ "version": "0.27.2",
661
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.2.tgz",
662
+ "integrity": "sha512-/it7w9Nb7+0KFIzjalNJVR5bOzA9Vay+yIPLVHfIQYG/j+j9VTH84aNB8ExGKPU4AzfaEvN9/V4HV+F+vo8OEg==",
663
+ "cpu": [
664
+ "x64"
665
+ ],
666
+ "license": "MIT",
667
+ "optional": true,
668
+ "os": [
669
+ "openbsd"
670
+ ],
671
+ "engines": {
672
+ "node": ">=18"
673
+ }
674
+ },
675
+ "node_modules/@esbuild/openharmony-arm64": {
676
+ "version": "0.27.2",
677
+ "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.2.tgz",
678
+ "integrity": "sha512-LRBbCmiU51IXfeXk59csuX/aSaToeG7w48nMwA6049Y4J4+VbWALAuXcs+qcD04rHDuSCSRKdmY63sruDS5qag==",
679
+ "cpu": [
680
+ "arm64"
681
+ ],
682
+ "license": "MIT",
683
+ "optional": true,
684
+ "os": [
685
+ "openharmony"
686
+ ],
687
+ "engines": {
688
+ "node": ">=18"
689
+ }
690
+ },
691
+ "node_modules/@esbuild/sunos-x64": {
692
+ "version": "0.27.2",
693
+ "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.2.tgz",
694
+ "integrity": "sha512-kMtx1yqJHTmqaqHPAzKCAkDaKsffmXkPHThSfRwZGyuqyIeBvf08KSsYXl+abf5HDAPMJIPnbBfXvP2ZC2TfHg==",
695
+ "cpu": [
696
+ "x64"
697
+ ],
698
+ "license": "MIT",
699
+ "optional": true,
700
+ "os": [
701
+ "sunos"
702
+ ],
703
+ "engines": {
704
+ "node": ">=18"
705
+ }
706
+ },
707
+ "node_modules/@esbuild/win32-arm64": {
708
+ "version": "0.27.2",
709
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.2.tgz",
710
+ "integrity": "sha512-Yaf78O/B3Kkh+nKABUF++bvJv5Ijoy9AN1ww904rOXZFLWVc5OLOfL56W+C8F9xn5JQZa3UX6m+IktJnIb1Jjg==",
711
+ "cpu": [
712
+ "arm64"
713
+ ],
714
+ "license": "MIT",
715
+ "optional": true,
716
+ "os": [
717
+ "win32"
718
+ ],
719
+ "engines": {
720
+ "node": ">=18"
721
+ }
722
+ },
723
+ "node_modules/@esbuild/win32-ia32": {
724
+ "version": "0.27.2",
725
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.2.tgz",
726
+ "integrity": "sha512-Iuws0kxo4yusk7sw70Xa2E2imZU5HoixzxfGCdxwBdhiDgt9vX9VUCBhqcwY7/uh//78A1hMkkROMJq9l27oLQ==",
727
+ "cpu": [
728
+ "ia32"
729
+ ],
730
+ "license": "MIT",
731
+ "optional": true,
732
+ "os": [
733
+ "win32"
734
+ ],
735
+ "engines": {
736
+ "node": ">=18"
737
+ }
738
+ },
739
+ "node_modules/@esbuild/win32-x64": {
740
+ "version": "0.27.2",
741
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.2.tgz",
742
+ "integrity": "sha512-sRdU18mcKf7F+YgheI/zGf5alZatMUTKj/jNS6l744f9u3WFu4v7twcUI9vu4mknF4Y9aDlblIie0IM+5xxaqQ==",
743
+ "cpu": [
744
+ "x64"
745
+ ],
746
+ "license": "MIT",
747
+ "optional": true,
748
+ "os": [
749
+ "win32"
750
+ ],
751
+ "engines": {
752
+ "node": ">=18"
753
+ }
754
+ },
755
+ "node_modules/@eslint-community/eslint-utils": {
756
+ "version": "4.9.1",
757
+ "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.9.1.tgz",
758
+ "integrity": "sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==",
759
+ "dev": true,
760
+ "license": "MIT",
761
+ "dependencies": {
762
+ "eslint-visitor-keys": "^3.4.3"
763
+ },
764
+ "engines": {
765
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
766
+ },
767
+ "funding": {
768
+ "url": "https://opencollective.com/eslint"
769
+ },
770
+ "peerDependencies": {
771
+ "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
772
+ }
773
+ },
774
+ "node_modules/@eslint-community/regexpp": {
775
+ "version": "4.12.2",
776
+ "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.2.tgz",
777
+ "integrity": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==",
778
+ "dev": true,
779
+ "license": "MIT",
780
+ "engines": {
781
+ "node": "^12.0.0 || ^14.0.0 || >=16.0.0"
782
+ }
783
+ },
784
+ "node_modules/@eslint/config-array": {
785
+ "version": "0.21.1",
786
+ "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.21.1.tgz",
787
+ "integrity": "sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA==",
788
+ "dev": true,
789
+ "license": "Apache-2.0",
790
+ "dependencies": {
791
+ "@eslint/object-schema": "^2.1.7",
792
+ "debug": "^4.3.1",
793
+ "minimatch": "^3.1.2"
794
+ },
795
+ "engines": {
796
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
797
+ }
798
+ },
799
+ "node_modules/@eslint/config-array/node_modules/brace-expansion": {
800
+ "version": "1.1.12",
801
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz",
802
+ "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==",
803
+ "dev": true,
804
+ "license": "MIT",
805
+ "dependencies": {
806
+ "balanced-match": "^1.0.0",
807
+ "concat-map": "0.0.1"
808
+ }
809
+ },
810
+ "node_modules/@eslint/config-array/node_modules/minimatch": {
811
+ "version": "3.1.2",
812
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
813
+ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
814
+ "dev": true,
815
+ "license": "ISC",
816
+ "dependencies": {
817
+ "brace-expansion": "^1.1.7"
818
+ },
819
+ "engines": {
820
+ "node": "*"
821
+ }
822
+ },
823
+ "node_modules/@eslint/config-helpers": {
824
+ "version": "0.4.2",
825
+ "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.4.2.tgz",
826
+ "integrity": "sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==",
827
+ "dev": true,
828
+ "license": "Apache-2.0",
829
+ "dependencies": {
830
+ "@eslint/core": "^0.17.0"
831
+ },
832
+ "engines": {
833
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
834
+ }
835
+ },
836
+ "node_modules/@eslint/core": {
837
+ "version": "0.17.0",
838
+ "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.17.0.tgz",
839
+ "integrity": "sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==",
840
+ "dev": true,
841
+ "license": "Apache-2.0",
842
+ "dependencies": {
843
+ "@types/json-schema": "^7.0.15"
844
+ },
845
+ "engines": {
846
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
847
+ }
848
+ },
849
+ "node_modules/@eslint/eslintrc": {
850
+ "version": "3.3.3",
851
+ "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.3.tgz",
852
+ "integrity": "sha512-Kr+LPIUVKz2qkx1HAMH8q1q6azbqBAsXJUxBl/ODDuVPX45Z9DfwB8tPjTi6nNZ8BuM3nbJxC5zCAg5elnBUTQ==",
853
+ "dev": true,
854
+ "license": "MIT",
855
+ "dependencies": {
856
+ "ajv": "^6.12.4",
857
+ "debug": "^4.3.2",
858
+ "espree": "^10.0.1",
859
+ "globals": "^14.0.0",
860
+ "ignore": "^5.2.0",
861
+ "import-fresh": "^3.2.1",
862
+ "js-yaml": "^4.1.1",
863
+ "minimatch": "^3.1.2",
864
+ "strip-json-comments": "^3.1.1"
865
+ },
866
+ "engines": {
867
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
868
+ },
869
+ "funding": {
870
+ "url": "https://opencollective.com/eslint"
871
+ }
872
+ },
873
+ "node_modules/@eslint/eslintrc/node_modules/brace-expansion": {
874
+ "version": "1.1.12",
875
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz",
876
+ "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==",
877
+ "dev": true,
878
+ "license": "MIT",
879
+ "dependencies": {
880
+ "balanced-match": "^1.0.0",
881
+ "concat-map": "0.0.1"
882
+ }
883
+ },
884
+ "node_modules/@eslint/eslintrc/node_modules/globals": {
885
+ "version": "14.0.0",
886
+ "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz",
887
+ "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==",
888
+ "dev": true,
889
+ "license": "MIT",
890
+ "engines": {
891
+ "node": ">=18"
892
+ },
893
+ "funding": {
894
+ "url": "https://github.com/sponsors/sindresorhus"
895
+ }
896
+ },
897
+ "node_modules/@eslint/eslintrc/node_modules/minimatch": {
898
+ "version": "3.1.2",
899
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
900
+ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
901
+ "dev": true,
902
+ "license": "ISC",
903
+ "dependencies": {
904
+ "brace-expansion": "^1.1.7"
905
+ },
906
+ "engines": {
907
+ "node": "*"
908
+ }
909
+ },
910
+ "node_modules/@eslint/js": {
911
+ "version": "9.39.2",
912
+ "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.39.2.tgz",
913
+ "integrity": "sha512-q1mjIoW1VX4IvSocvM/vbTiveKC4k9eLrajNEuSsmjymSDEbpGddtpfOoN7YGAqBK3NG+uqo8ia4PDTt8buCYA==",
914
+ "dev": true,
915
+ "license": "MIT",
916
+ "engines": {
917
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
918
+ },
919
+ "funding": {
920
+ "url": "https://eslint.org/donate"
921
+ }
922
+ },
923
+ "node_modules/@eslint/object-schema": {
924
+ "version": "2.1.7",
925
+ "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.7.tgz",
926
+ "integrity": "sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==",
927
+ "dev": true,
928
+ "license": "Apache-2.0",
929
+ "engines": {
930
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
931
+ }
932
+ },
933
+ "node_modules/@eslint/plugin-kit": {
934
+ "version": "0.4.1",
935
+ "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.4.1.tgz",
936
+ "integrity": "sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==",
937
+ "dev": true,
938
+ "license": "Apache-2.0",
939
+ "dependencies": {
940
+ "@eslint/core": "^0.17.0",
941
+ "levn": "^0.4.1"
942
+ },
943
+ "engines": {
944
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
945
+ }
946
+ },
947
+ "node_modules/@humanfs/core": {
948
+ "version": "0.19.1",
949
+ "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz",
950
+ "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==",
951
+ "dev": true,
952
+ "license": "Apache-2.0",
953
+ "engines": {
954
+ "node": ">=18.18.0"
955
+ }
956
+ },
957
+ "node_modules/@humanfs/node": {
958
+ "version": "0.16.7",
959
+ "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.7.tgz",
960
+ "integrity": "sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==",
961
+ "dev": true,
962
+ "license": "Apache-2.0",
963
+ "dependencies": {
964
+ "@humanfs/core": "^0.19.1",
965
+ "@humanwhocodes/retry": "^0.4.0"
966
+ },
967
+ "engines": {
968
+ "node": ">=18.18.0"
969
+ }
970
+ },
971
+ "node_modules/@humanwhocodes/module-importer": {
972
+ "version": "1.0.1",
973
+ "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
974
+ "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
975
+ "dev": true,
976
+ "license": "Apache-2.0",
977
+ "engines": {
978
+ "node": ">=12.22"
979
+ },
980
+ "funding": {
981
+ "type": "github",
982
+ "url": "https://github.com/sponsors/nzakas"
983
+ }
984
+ },
985
+ "node_modules/@humanwhocodes/retry": {
986
+ "version": "0.4.3",
987
+ "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.3.tgz",
988
+ "integrity": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==",
989
+ "dev": true,
990
+ "license": "Apache-2.0",
991
+ "engines": {
992
+ "node": ">=18.18"
993
+ },
994
+ "funding": {
995
+ "type": "github",
996
+ "url": "https://github.com/sponsors/nzakas"
997
+ }
998
+ },
999
+ "node_modules/@jridgewell/gen-mapping": {
1000
+ "version": "0.3.13",
1001
+ "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
1002
+ "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
1003
+ "license": "MIT",
1004
+ "dependencies": {
1005
+ "@jridgewell/sourcemap-codec": "^1.5.0",
1006
+ "@jridgewell/trace-mapping": "^0.3.24"
1007
+ }
1008
+ },
1009
+ "node_modules/@jridgewell/remapping": {
1010
+ "version": "2.3.5",
1011
+ "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz",
1012
+ "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==",
1013
+ "license": "MIT",
1014
+ "dependencies": {
1015
+ "@jridgewell/gen-mapping": "^0.3.5",
1016
+ "@jridgewell/trace-mapping": "^0.3.24"
1017
+ }
1018
+ },
1019
+ "node_modules/@jridgewell/resolve-uri": {
1020
+ "version": "3.1.2",
1021
+ "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
1022
+ "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
1023
+ "license": "MIT",
1024
+ "engines": {
1025
+ "node": ">=6.0.0"
1026
+ }
1027
+ },
1028
+ "node_modules/@jridgewell/sourcemap-codec": {
1029
+ "version": "1.5.5",
1030
+ "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
1031
+ "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
1032
+ "license": "MIT"
1033
+ },
1034
+ "node_modules/@jridgewell/trace-mapping": {
1035
+ "version": "0.3.31",
1036
+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
1037
+ "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
1038
+ "license": "MIT",
1039
+ "dependencies": {
1040
+ "@jridgewell/resolve-uri": "^3.1.0",
1041
+ "@jridgewell/sourcemap-codec": "^1.4.14"
1042
+ }
1043
+ },
1044
+ "node_modules/@rolldown/pluginutils": {
1045
+ "version": "1.0.0-beta.53",
1046
+ "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.53.tgz",
1047
+ "integrity": "sha512-vENRlFU4YbrwVqNDZ7fLvy+JR1CRkyr01jhSiDpE1u6py3OMzQfztQU2jxykW3ALNxO4kSlqIDeYyD0Y9RcQeQ==",
1048
+ "dev": true,
1049
+ "license": "MIT"
1050
+ },
1051
+ "node_modules/@rollup/rollup-android-arm-eabi": {
1052
+ "version": "4.54.0",
1053
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.54.0.tgz",
1054
+ "integrity": "sha512-OywsdRHrFvCdvsewAInDKCNyR3laPA2mc9bRYJ6LBp5IyvF3fvXbbNR0bSzHlZVFtn6E0xw2oZlyjg4rKCVcng==",
1055
+ "cpu": [
1056
+ "arm"
1057
+ ],
1058
+ "license": "MIT",
1059
+ "optional": true,
1060
+ "os": [
1061
+ "android"
1062
+ ]
1063
+ },
1064
+ "node_modules/@rollup/rollup-android-arm64": {
1065
+ "version": "4.54.0",
1066
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.54.0.tgz",
1067
+ "integrity": "sha512-Skx39Uv+u7H224Af+bDgNinitlmHyQX1K/atIA32JP3JQw6hVODX5tkbi2zof/E69M1qH2UoN3Xdxgs90mmNYw==",
1068
+ "cpu": [
1069
+ "arm64"
1070
+ ],
1071
+ "license": "MIT",
1072
+ "optional": true,
1073
+ "os": [
1074
+ "android"
1075
+ ]
1076
+ },
1077
+ "node_modules/@rollup/rollup-darwin-arm64": {
1078
+ "version": "4.54.0",
1079
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.54.0.tgz",
1080
+ "integrity": "sha512-k43D4qta/+6Fq+nCDhhv9yP2HdeKeP56QrUUTW7E6PhZP1US6NDqpJj4MY0jBHlJivVJD5P8NxrjuobZBJTCRw==",
1081
+ "cpu": [
1082
+ "arm64"
1083
+ ],
1084
+ "license": "MIT",
1085
+ "optional": true,
1086
+ "os": [
1087
+ "darwin"
1088
+ ]
1089
+ },
1090
+ "node_modules/@rollup/rollup-darwin-x64": {
1091
+ "version": "4.54.0",
1092
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.54.0.tgz",
1093
+ "integrity": "sha512-cOo7biqwkpawslEfox5Vs8/qj83M/aZCSSNIWpVzfU2CYHa2G3P1UN5WF01RdTHSgCkri7XOlTdtk17BezlV3A==",
1094
+ "cpu": [
1095
+ "x64"
1096
+ ],
1097
+ "license": "MIT",
1098
+ "optional": true,
1099
+ "os": [
1100
+ "darwin"
1101
+ ]
1102
+ },
1103
+ "node_modules/@rollup/rollup-freebsd-arm64": {
1104
+ "version": "4.54.0",
1105
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.54.0.tgz",
1106
+ "integrity": "sha512-miSvuFkmvFbgJ1BevMa4CPCFt5MPGw094knM64W9I0giUIMMmRYcGW/JWZDriaw/k1kOBtsWh1z6nIFV1vPNtA==",
1107
+ "cpu": [
1108
+ "arm64"
1109
+ ],
1110
+ "license": "MIT",
1111
+ "optional": true,
1112
+ "os": [
1113
+ "freebsd"
1114
+ ]
1115
+ },
1116
+ "node_modules/@rollup/rollup-freebsd-x64": {
1117
+ "version": "4.54.0",
1118
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.54.0.tgz",
1119
+ "integrity": "sha512-KGXIs55+b/ZfZsq9aR026tmr/+7tq6VG6MsnrvF4H8VhwflTIuYh+LFUlIsRdQSgrgmtM3fVATzEAj4hBQlaqQ==",
1120
+ "cpu": [
1121
+ "x64"
1122
+ ],
1123
+ "license": "MIT",
1124
+ "optional": true,
1125
+ "os": [
1126
+ "freebsd"
1127
+ ]
1128
+ },
1129
+ "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
1130
+ "version": "4.54.0",
1131
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.54.0.tgz",
1132
+ "integrity": "sha512-EHMUcDwhtdRGlXZsGSIuXSYwD5kOT9NVnx9sqzYiwAc91wfYOE1g1djOEDseZJKKqtHAHGwnGPQu3kytmfaXLQ==",
1133
+ "cpu": [
1134
+ "arm"
1135
+ ],
1136
+ "license": "MIT",
1137
+ "optional": true,
1138
+ "os": [
1139
+ "linux"
1140
+ ]
1141
+ },
1142
+ "node_modules/@rollup/rollup-linux-arm-musleabihf": {
1143
+ "version": "4.54.0",
1144
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.54.0.tgz",
1145
+ "integrity": "sha512-+pBrqEjaakN2ySv5RVrj/qLytYhPKEUwk+e3SFU5jTLHIcAtqh2rLrd/OkbNuHJpsBgxsD8ccJt5ga/SeG0JmA==",
1146
+ "cpu": [
1147
+ "arm"
1148
+ ],
1149
+ "license": "MIT",
1150
+ "optional": true,
1151
+ "os": [
1152
+ "linux"
1153
+ ]
1154
+ },
1155
+ "node_modules/@rollup/rollup-linux-arm64-gnu": {
1156
+ "version": "4.54.0",
1157
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.54.0.tgz",
1158
+ "integrity": "sha512-NSqc7rE9wuUaRBsBp5ckQ5CVz5aIRKCwsoa6WMF7G01sX3/qHUw/z4pv+D+ahL1EIKy6Enpcnz1RY8pf7bjwng==",
1159
+ "cpu": [
1160
+ "arm64"
1161
+ ],
1162
+ "license": "MIT",
1163
+ "optional": true,
1164
+ "os": [
1165
+ "linux"
1166
+ ]
1167
+ },
1168
+ "node_modules/@rollup/rollup-linux-arm64-musl": {
1169
+ "version": "4.54.0",
1170
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.54.0.tgz",
1171
+ "integrity": "sha512-gr5vDbg3Bakga5kbdpqx81m2n9IX8M6gIMlQQIXiLTNeQW6CucvuInJ91EuCJ/JYvc+rcLLsDFcfAD1K7fMofg==",
1172
+ "cpu": [
1173
+ "arm64"
1174
+ ],
1175
+ "license": "MIT",
1176
+ "optional": true,
1177
+ "os": [
1178
+ "linux"
1179
+ ]
1180
+ },
1181
+ "node_modules/@rollup/rollup-linux-loong64-gnu": {
1182
+ "version": "4.54.0",
1183
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.54.0.tgz",
1184
+ "integrity": "sha512-gsrtB1NA3ZYj2vq0Rzkylo9ylCtW/PhpLEivlgWe0bpgtX5+9j9EZa0wtZiCjgu6zmSeZWyI/e2YRX1URozpIw==",
1185
+ "cpu": [
1186
+ "loong64"
1187
+ ],
1188
+ "license": "MIT",
1189
+ "optional": true,
1190
+ "os": [
1191
+ "linux"
1192
+ ]
1193
+ },
1194
+ "node_modules/@rollup/rollup-linux-ppc64-gnu": {
1195
+ "version": "4.54.0",
1196
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.54.0.tgz",
1197
+ "integrity": "sha512-y3qNOfTBStmFNq+t4s7Tmc9hW2ENtPg8FeUD/VShI7rKxNW7O4fFeaYbMsd3tpFlIg1Q8IapFgy7Q9i2BqeBvA==",
1198
+ "cpu": [
1199
+ "ppc64"
1200
+ ],
1201
+ "license": "MIT",
1202
+ "optional": true,
1203
+ "os": [
1204
+ "linux"
1205
+ ]
1206
+ },
1207
+ "node_modules/@rollup/rollup-linux-riscv64-gnu": {
1208
+ "version": "4.54.0",
1209
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.54.0.tgz",
1210
+ "integrity": "sha512-89sepv7h2lIVPsFma8iwmccN7Yjjtgz0Rj/Ou6fEqg3HDhpCa+Et+YSufy27i6b0Wav69Qv4WBNl3Rs6pwhebQ==",
1211
+ "cpu": [
1212
+ "riscv64"
1213
+ ],
1214
+ "license": "MIT",
1215
+ "optional": true,
1216
+ "os": [
1217
+ "linux"
1218
+ ]
1219
+ },
1220
+ "node_modules/@rollup/rollup-linux-riscv64-musl": {
1221
+ "version": "4.54.0",
1222
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.54.0.tgz",
1223
+ "integrity": "sha512-ZcU77ieh0M2Q8Ur7D5X7KvK+UxbXeDHwiOt/CPSBTI1fBmeDMivW0dPkdqkT4rOgDjrDDBUed9x4EgraIKoR2A==",
1224
+ "cpu": [
1225
+ "riscv64"
1226
+ ],
1227
+ "license": "MIT",
1228
+ "optional": true,
1229
+ "os": [
1230
+ "linux"
1231
+ ]
1232
+ },
1233
+ "node_modules/@rollup/rollup-linux-s390x-gnu": {
1234
+ "version": "4.54.0",
1235
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.54.0.tgz",
1236
+ "integrity": "sha512-2AdWy5RdDF5+4YfG/YesGDDtbyJlC9LHmL6rZw6FurBJ5n4vFGupsOBGfwMRjBYH7qRQowT8D/U4LoSvVwOhSQ==",
1237
+ "cpu": [
1238
+ "s390x"
1239
+ ],
1240
+ "license": "MIT",
1241
+ "optional": true,
1242
+ "os": [
1243
+ "linux"
1244
+ ]
1245
+ },
1246
+ "node_modules/@rollup/rollup-linux-x64-gnu": {
1247
+ "version": "4.54.0",
1248
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.54.0.tgz",
1249
+ "integrity": "sha512-WGt5J8Ij/rvyqpFexxk3ffKqqbLf9AqrTBbWDk7ApGUzaIs6V+s2s84kAxklFwmMF/vBNGrVdYgbblCOFFezMQ==",
1250
+ "cpu": [
1251
+ "x64"
1252
+ ],
1253
+ "license": "MIT",
1254
+ "optional": true,
1255
+ "os": [
1256
+ "linux"
1257
+ ]
1258
+ },
1259
+ "node_modules/@rollup/rollup-linux-x64-musl": {
1260
+ "version": "4.54.0",
1261
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.54.0.tgz",
1262
+ "integrity": "sha512-JzQmb38ATzHjxlPHuTH6tE7ojnMKM2kYNzt44LO/jJi8BpceEC8QuXYA908n8r3CNuG/B3BV8VR3Hi1rYtmPiw==",
1263
+ "cpu": [
1264
+ "x64"
1265
+ ],
1266
+ "license": "MIT",
1267
+ "optional": true,
1268
+ "os": [
1269
+ "linux"
1270
+ ]
1271
+ },
1272
+ "node_modules/@rollup/rollup-openharmony-arm64": {
1273
+ "version": "4.54.0",
1274
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.54.0.tgz",
1275
+ "integrity": "sha512-huT3fd0iC7jigGh7n3q/+lfPcXxBi+om/Rs3yiFxjvSxbSB6aohDFXbWvlspaqjeOh+hx7DDHS+5Es5qRkWkZg==",
1276
+ "cpu": [
1277
+ "arm64"
1278
+ ],
1279
+ "license": "MIT",
1280
+ "optional": true,
1281
+ "os": [
1282
+ "openharmony"
1283
+ ]
1284
+ },
1285
+ "node_modules/@rollup/rollup-win32-arm64-msvc": {
1286
+ "version": "4.54.0",
1287
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.54.0.tgz",
1288
+ "integrity": "sha512-c2V0W1bsKIKfbLMBu/WGBz6Yci8nJ/ZJdheE0EwB73N3MvHYKiKGs3mVilX4Gs70eGeDaMqEob25Tw2Gb9Nqyw==",
1289
+ "cpu": [
1290
+ "arm64"
1291
+ ],
1292
+ "license": "MIT",
1293
+ "optional": true,
1294
+ "os": [
1295
+ "win32"
1296
+ ]
1297
+ },
1298
+ "node_modules/@rollup/rollup-win32-ia32-msvc": {
1299
+ "version": "4.54.0",
1300
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.54.0.tgz",
1301
+ "integrity": "sha512-woEHgqQqDCkAzrDhvDipnSirm5vxUXtSKDYTVpZG3nUdW/VVB5VdCYA2iReSj/u3yCZzXID4kuKG7OynPnB3WQ==",
1302
+ "cpu": [
1303
+ "ia32"
1304
+ ],
1305
+ "license": "MIT",
1306
+ "optional": true,
1307
+ "os": [
1308
+ "win32"
1309
+ ]
1310
+ },
1311
+ "node_modules/@rollup/rollup-win32-x64-gnu": {
1312
+ "version": "4.54.0",
1313
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.54.0.tgz",
1314
+ "integrity": "sha512-dzAc53LOuFvHwbCEOS0rPbXp6SIhAf2txMP5p6mGyOXXw5mWY8NGGbPMPrs4P1WItkfApDathBj/NzMLUZ9rtQ==",
1315
+ "cpu": [
1316
+ "x64"
1317
+ ],
1318
+ "license": "MIT",
1319
+ "optional": true,
1320
+ "os": [
1321
+ "win32"
1322
+ ]
1323
+ },
1324
+ "node_modules/@rollup/rollup-win32-x64-msvc": {
1325
+ "version": "4.54.0",
1326
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.54.0.tgz",
1327
+ "integrity": "sha512-hYT5d3YNdSh3mbCU1gwQyPgQd3T2ne0A3KG8KSBdav5TiBg6eInVmV+TeR5uHufiIgSFg0XsOWGW5/RhNcSvPg==",
1328
+ "cpu": [
1329
+ "x64"
1330
+ ],
1331
+ "license": "MIT",
1332
+ "optional": true,
1333
+ "os": [
1334
+ "win32"
1335
+ ]
1336
+ },
1337
+ "node_modules/@tailwindcss/node": {
1338
+ "version": "4.1.18",
1339
+ "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.1.18.tgz",
1340
+ "integrity": "sha512-DoR7U1P7iYhw16qJ49fgXUlry1t4CpXeErJHnQ44JgTSKMaZUdf17cfn5mHchfJ4KRBZRFA/Coo+MUF5+gOaCQ==",
1341
+ "license": "MIT",
1342
+ "dependencies": {
1343
+ "@jridgewell/remapping": "^2.3.4",
1344
+ "enhanced-resolve": "^5.18.3",
1345
+ "jiti": "^2.6.1",
1346
+ "lightningcss": "1.30.2",
1347
+ "magic-string": "^0.30.21",
1348
+ "source-map-js": "^1.2.1",
1349
+ "tailwindcss": "4.1.18"
1350
+ }
1351
+ },
1352
+ "node_modules/@tailwindcss/oxide": {
1353
+ "version": "4.1.18",
1354
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.1.18.tgz",
1355
+ "integrity": "sha512-EgCR5tTS5bUSKQgzeMClT6iCY3ToqE1y+ZB0AKldj809QXk1Y+3jB0upOYZrn9aGIzPtUsP7sX4QQ4XtjBB95A==",
1356
+ "license": "MIT",
1357
+ "engines": {
1358
+ "node": ">= 10"
1359
+ },
1360
+ "optionalDependencies": {
1361
+ "@tailwindcss/oxide-android-arm64": "4.1.18",
1362
+ "@tailwindcss/oxide-darwin-arm64": "4.1.18",
1363
+ "@tailwindcss/oxide-darwin-x64": "4.1.18",
1364
+ "@tailwindcss/oxide-freebsd-x64": "4.1.18",
1365
+ "@tailwindcss/oxide-linux-arm-gnueabihf": "4.1.18",
1366
+ "@tailwindcss/oxide-linux-arm64-gnu": "4.1.18",
1367
+ "@tailwindcss/oxide-linux-arm64-musl": "4.1.18",
1368
+ "@tailwindcss/oxide-linux-x64-gnu": "4.1.18",
1369
+ "@tailwindcss/oxide-linux-x64-musl": "4.1.18",
1370
+ "@tailwindcss/oxide-wasm32-wasi": "4.1.18",
1371
+ "@tailwindcss/oxide-win32-arm64-msvc": "4.1.18",
1372
+ "@tailwindcss/oxide-win32-x64-msvc": "4.1.18"
1373
+ }
1374
+ },
1375
+ "node_modules/@tailwindcss/oxide-android-arm64": {
1376
+ "version": "4.1.18",
1377
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.1.18.tgz",
1378
+ "integrity": "sha512-dJHz7+Ugr9U/diKJA0W6N/6/cjI+ZTAoxPf9Iz9BFRF2GzEX8IvXxFIi/dZBloVJX/MZGvRuFA9rqwdiIEZQ0Q==",
1379
+ "cpu": [
1380
+ "arm64"
1381
+ ],
1382
+ "license": "MIT",
1383
+ "optional": true,
1384
+ "os": [
1385
+ "android"
1386
+ ],
1387
+ "engines": {
1388
+ "node": ">= 10"
1389
+ }
1390
+ },
1391
+ "node_modules/@tailwindcss/oxide-darwin-arm64": {
1392
+ "version": "4.1.18",
1393
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.1.18.tgz",
1394
+ "integrity": "sha512-Gc2q4Qhs660bhjyBSKgq6BYvwDz4G+BuyJ5H1xfhmDR3D8HnHCmT/BSkvSL0vQLy/nkMLY20PQ2OoYMO15Jd0A==",
1395
+ "cpu": [
1396
+ "arm64"
1397
+ ],
1398
+ "license": "MIT",
1399
+ "optional": true,
1400
+ "os": [
1401
+ "darwin"
1402
+ ],
1403
+ "engines": {
1404
+ "node": ">= 10"
1405
+ }
1406
+ },
1407
+ "node_modules/@tailwindcss/oxide-darwin-x64": {
1408
+ "version": "4.1.18",
1409
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.1.18.tgz",
1410
+ "integrity": "sha512-FL5oxr2xQsFrc3X9o1fjHKBYBMD1QZNyc1Xzw/h5Qu4XnEBi3dZn96HcHm41c/euGV+GRiXFfh2hUCyKi/e+yw==",
1411
+ "cpu": [
1412
+ "x64"
1413
+ ],
1414
+ "license": "MIT",
1415
+ "optional": true,
1416
+ "os": [
1417
+ "darwin"
1418
+ ],
1419
+ "engines": {
1420
+ "node": ">= 10"
1421
+ }
1422
+ },
1423
+ "node_modules/@tailwindcss/oxide-freebsd-x64": {
1424
+ "version": "4.1.18",
1425
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.1.18.tgz",
1426
+ "integrity": "sha512-Fj+RHgu5bDodmV1dM9yAxlfJwkkWvLiRjbhuO2LEtwtlYlBgiAT4x/j5wQr1tC3SANAgD+0YcmWVrj8R9trVMA==",
1427
+ "cpu": [
1428
+ "x64"
1429
+ ],
1430
+ "license": "MIT",
1431
+ "optional": true,
1432
+ "os": [
1433
+ "freebsd"
1434
+ ],
1435
+ "engines": {
1436
+ "node": ">= 10"
1437
+ }
1438
+ },
1439
+ "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": {
1440
+ "version": "4.1.18",
1441
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.1.18.tgz",
1442
+ "integrity": "sha512-Fp+Wzk/Ws4dZn+LV2Nqx3IilnhH51YZoRaYHQsVq3RQvEl+71VGKFpkfHrLM/Li+kt5c0DJe/bHXK1eHgDmdiA==",
1443
+ "cpu": [
1444
+ "arm"
1445
+ ],
1446
+ "license": "MIT",
1447
+ "optional": true,
1448
+ "os": [
1449
+ "linux"
1450
+ ],
1451
+ "engines": {
1452
+ "node": ">= 10"
1453
+ }
1454
+ },
1455
+ "node_modules/@tailwindcss/oxide-linux-arm64-gnu": {
1456
+ "version": "4.1.18",
1457
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.1.18.tgz",
1458
+ "integrity": "sha512-S0n3jboLysNbh55Vrt7pk9wgpyTTPD0fdQeh7wQfMqLPM/Hrxi+dVsLsPrycQjGKEQk85Kgbx+6+QnYNiHalnw==",
1459
+ "cpu": [
1460
+ "arm64"
1461
+ ],
1462
+ "license": "MIT",
1463
+ "optional": true,
1464
+ "os": [
1465
+ "linux"
1466
+ ],
1467
+ "engines": {
1468
+ "node": ">= 10"
1469
+ }
1470
+ },
1471
+ "node_modules/@tailwindcss/oxide-linux-arm64-musl": {
1472
+ "version": "4.1.18",
1473
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.1.18.tgz",
1474
+ "integrity": "sha512-1px92582HkPQlaaCkdRcio71p8bc8i/ap5807tPRDK/uw953cauQBT8c5tVGkOwrHMfc2Yh6UuxaH4vtTjGvHg==",
1475
+ "cpu": [
1476
+ "arm64"
1477
+ ],
1478
+ "license": "MIT",
1479
+ "optional": true,
1480
+ "os": [
1481
+ "linux"
1482
+ ],
1483
+ "engines": {
1484
+ "node": ">= 10"
1485
+ }
1486
+ },
1487
+ "node_modules/@tailwindcss/oxide-linux-x64-gnu": {
1488
+ "version": "4.1.18",
1489
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.1.18.tgz",
1490
+ "integrity": "sha512-v3gyT0ivkfBLoZGF9LyHmts0Isc8jHZyVcbzio6Wpzifg/+5ZJpDiRiUhDLkcr7f/r38SWNe7ucxmGW3j3Kb/g==",
1491
+ "cpu": [
1492
+ "x64"
1493
+ ],
1494
+ "license": "MIT",
1495
+ "optional": true,
1496
+ "os": [
1497
+ "linux"
1498
+ ],
1499
+ "engines": {
1500
+ "node": ">= 10"
1501
+ }
1502
+ },
1503
+ "node_modules/@tailwindcss/oxide-linux-x64-musl": {
1504
+ "version": "4.1.18",
1505
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.1.18.tgz",
1506
+ "integrity": "sha512-bhJ2y2OQNlcRwwgOAGMY0xTFStt4/wyU6pvI6LSuZpRgKQwxTec0/3Scu91O8ir7qCR3AuepQKLU/kX99FouqQ==",
1507
+ "cpu": [
1508
+ "x64"
1509
+ ],
1510
+ "license": "MIT",
1511
+ "optional": true,
1512
+ "os": [
1513
+ "linux"
1514
+ ],
1515
+ "engines": {
1516
+ "node": ">= 10"
1517
+ }
1518
+ },
1519
+ "node_modules/@tailwindcss/oxide-wasm32-wasi": {
1520
+ "version": "4.1.18",
1521
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.1.18.tgz",
1522
+ "integrity": "sha512-LffYTvPjODiP6PT16oNeUQJzNVyJl1cjIebq/rWWBF+3eDst5JGEFSc5cWxyRCJ0Mxl+KyIkqRxk1XPEs9x8TA==",
1523
+ "bundleDependencies": [
1524
+ "@napi-rs/wasm-runtime",
1525
+ "@emnapi/core",
1526
+ "@emnapi/runtime",
1527
+ "@tybys/wasm-util",
1528
+ "@emnapi/wasi-threads",
1529
+ "tslib"
1530
+ ],
1531
+ "cpu": [
1532
+ "wasm32"
1533
+ ],
1534
+ "license": "MIT",
1535
+ "optional": true,
1536
+ "dependencies": {
1537
+ "@emnapi/core": "^1.7.1",
1538
+ "@emnapi/runtime": "^1.7.1",
1539
+ "@emnapi/wasi-threads": "^1.1.0",
1540
+ "@napi-rs/wasm-runtime": "^1.1.0",
1541
+ "@tybys/wasm-util": "^0.10.1",
1542
+ "tslib": "^2.4.0"
1543
+ },
1544
+ "engines": {
1545
+ "node": ">=14.0.0"
1546
+ }
1547
+ },
1548
+ "node_modules/@tailwindcss/oxide-win32-arm64-msvc": {
1549
+ "version": "4.1.18",
1550
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.1.18.tgz",
1551
+ "integrity": "sha512-HjSA7mr9HmC8fu6bdsZvZ+dhjyGCLdotjVOgLA2vEqxEBZaQo9YTX4kwgEvPCpRh8o4uWc4J/wEoFzhEmjvPbA==",
1552
+ "cpu": [
1553
+ "arm64"
1554
+ ],
1555
+ "license": "MIT",
1556
+ "optional": true,
1557
+ "os": [
1558
+ "win32"
1559
+ ],
1560
+ "engines": {
1561
+ "node": ">= 10"
1562
+ }
1563
+ },
1564
+ "node_modules/@tailwindcss/oxide-win32-x64-msvc": {
1565
+ "version": "4.1.18",
1566
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.1.18.tgz",
1567
+ "integrity": "sha512-bJWbyYpUlqamC8dpR7pfjA0I7vdF6t5VpUGMWRkXVE3AXgIZjYUYAK7II1GNaxR8J1SSrSrppRar8G++JekE3Q==",
1568
+ "cpu": [
1569
+ "x64"
1570
+ ],
1571
+ "license": "MIT",
1572
+ "optional": true,
1573
+ "os": [
1574
+ "win32"
1575
+ ],
1576
+ "engines": {
1577
+ "node": ">= 10"
1578
+ }
1579
+ },
1580
+ "node_modules/@tailwindcss/vite": {
1581
+ "version": "4.1.18",
1582
+ "resolved": "https://registry.npmjs.org/@tailwindcss/vite/-/vite-4.1.18.tgz",
1583
+ "integrity": "sha512-jVA+/UpKL1vRLg6Hkao5jldawNmRo7mQYrZtNHMIVpLfLhDml5nMRUo/8MwoX2vNXvnaXNNMedrMfMugAVX1nA==",
1584
+ "license": "MIT",
1585
+ "dependencies": {
1586
+ "@tailwindcss/node": "4.1.18",
1587
+ "@tailwindcss/oxide": "4.1.18",
1588
+ "tailwindcss": "4.1.18"
1589
+ },
1590
+ "peerDependencies": {
1591
+ "vite": "^5.2.0 || ^6 || ^7"
1592
+ }
1593
+ },
1594
+ "node_modules/@tanstack/eslint-plugin-query": {
1595
+ "version": "5.91.2",
1596
+ "resolved": "https://registry.npmjs.org/@tanstack/eslint-plugin-query/-/eslint-plugin-query-5.91.2.tgz",
1597
+ "integrity": "sha512-UPeWKl/Acu1IuuHJlsN+eITUHqAaa9/04geHHPedY8siVarSaWprY0SVMKrkpKfk5ehRT7+/MZ5QwWuEtkWrFw==",
1598
+ "dev": true,
1599
+ "license": "MIT",
1600
+ "dependencies": {
1601
+ "@typescript-eslint/utils": "^8.44.1"
1602
+ },
1603
+ "funding": {
1604
+ "type": "github",
1605
+ "url": "https://github.com/sponsors/tannerlinsley"
1606
+ },
1607
+ "peerDependencies": {
1608
+ "eslint": "^8.57.0 || ^9.0.0"
1609
+ }
1610
+ },
1611
+ "node_modules/@tanstack/query-core": {
1612
+ "version": "5.90.16",
1613
+ "resolved": "https://registry.npmjs.org/@tanstack/query-core/-/query-core-5.90.16.tgz",
1614
+ "integrity": "sha512-MvtWckSVufs/ja463/K4PyJeqT+HMlJWtw6PrCpywznd2NSgO3m4KwO9RqbFqGg6iDE8vVMFWMeQI4Io3eEYww==",
1615
+ "license": "MIT",
1616
+ "funding": {
1617
+ "type": "github",
1618
+ "url": "https://github.com/sponsors/tannerlinsley"
1619
+ }
1620
+ },
1621
+ "node_modules/@tanstack/react-query": {
1622
+ "version": "5.90.16",
1623
+ "resolved": "https://registry.npmjs.org/@tanstack/react-query/-/react-query-5.90.16.tgz",
1624
+ "integrity": "sha512-bpMGOmV4OPmif7TNMteU/Ehf/hoC0Kf98PDc0F4BZkFrEapRMEqI/V6YS0lyzwSV6PQpY1y4xxArUIfBW5LVxQ==",
1625
+ "license": "MIT",
1626
+ "dependencies": {
1627
+ "@tanstack/query-core": "5.90.16"
1628
+ },
1629
+ "funding": {
1630
+ "type": "github",
1631
+ "url": "https://github.com/sponsors/tannerlinsley"
1632
+ },
1633
+ "peerDependencies": {
1634
+ "react": "^18 || ^19"
1635
+ }
1636
+ },
1637
+ "node_modules/@types/babel__core": {
1638
+ "version": "7.20.5",
1639
+ "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz",
1640
+ "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==",
1641
+ "dev": true,
1642
+ "license": "MIT",
1643
+ "dependencies": {
1644
+ "@babel/parser": "^7.20.7",
1645
+ "@babel/types": "^7.20.7",
1646
+ "@types/babel__generator": "*",
1647
+ "@types/babel__template": "*",
1648
+ "@types/babel__traverse": "*"
1649
+ }
1650
+ },
1651
+ "node_modules/@types/babel__generator": {
1652
+ "version": "7.27.0",
1653
+ "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.27.0.tgz",
1654
+ "integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==",
1655
+ "dev": true,
1656
+ "license": "MIT",
1657
+ "dependencies": {
1658
+ "@babel/types": "^7.0.0"
1659
+ }
1660
+ },
1661
+ "node_modules/@types/babel__template": {
1662
+ "version": "7.4.4",
1663
+ "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz",
1664
+ "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==",
1665
+ "dev": true,
1666
+ "license": "MIT",
1667
+ "dependencies": {
1668
+ "@babel/parser": "^7.1.0",
1669
+ "@babel/types": "^7.0.0"
1670
+ }
1671
+ },
1672
+ "node_modules/@types/babel__traverse": {
1673
+ "version": "7.28.0",
1674
+ "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.28.0.tgz",
1675
+ "integrity": "sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==",
1676
+ "dev": true,
1677
+ "license": "MIT",
1678
+ "dependencies": {
1679
+ "@babel/types": "^7.28.2"
1680
+ }
1681
+ },
1682
+ "node_modules/@types/estree": {
1683
+ "version": "1.0.8",
1684
+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
1685
+ "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
1686
+ "license": "MIT"
1687
+ },
1688
+ "node_modules/@types/json-schema": {
1689
+ "version": "7.0.15",
1690
+ "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz",
1691
+ "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==",
1692
+ "dev": true,
1693
+ "license": "MIT"
1694
+ },
1695
+ "node_modules/@types/node": {
1696
+ "version": "24.10.4",
1697
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-24.10.4.tgz",
1698
+ "integrity": "sha512-vnDVpYPMzs4wunl27jHrfmwojOGKya0xyM3sH+UE5iv5uPS6vX7UIoh6m+vQc5LGBq52HBKPIn/zcSZVzeDEZg==",
1699
+ "devOptional": true,
1700
+ "license": "MIT",
1701
+ "peer": true,
1702
+ "dependencies": {
1703
+ "undici-types": "~7.16.0"
1704
+ }
1705
+ },
1706
+ "node_modules/@types/react": {
1707
+ "version": "19.2.7",
1708
+ "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.7.tgz",
1709
+ "integrity": "sha512-MWtvHrGZLFttgeEj28VXHxpmwYbor/ATPYbBfSFZEIRK0ecCFLl2Qo55z52Hss+UV9CRN7trSeq1zbgx7YDWWg==",
1710
+ "devOptional": true,
1711
+ "license": "MIT",
1712
+ "peer": true,
1713
+ "dependencies": {
1714
+ "csstype": "^3.2.2"
1715
+ }
1716
+ },
1717
+ "node_modules/@types/react-dom": {
1718
+ "version": "19.2.3",
1719
+ "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.3.tgz",
1720
+ "integrity": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==",
1721
+ "dev": true,
1722
+ "license": "MIT",
1723
+ "peerDependencies": {
1724
+ "@types/react": "^19.2.0"
1725
+ }
1726
+ },
1727
+ "node_modules/@types/xrm": {
1728
+ "version": "9.0.88",
1729
+ "resolved": "https://registry.npmjs.org/@types/xrm/-/xrm-9.0.88.tgz",
1730
+ "integrity": "sha512-AwDL3hNVDKk4TgpGo8QKqKeWxv5l3WZ+aoSl8vvENhSrb9hb30nPufpmaLjapF1XTtRyqOqqCQGcfYQ2Qn4Lqg==",
1731
+ "license": "MIT"
1732
+ },
1733
+ "node_modules/@typescript-eslint/eslint-plugin": {
1734
+ "version": "8.51.0",
1735
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.51.0.tgz",
1736
+ "integrity": "sha512-XtssGWJvypyM2ytBnSnKtHYOGT+4ZwTnBVl36TA4nRO2f4PRNGz5/1OszHzcZCvcBMh+qb7I06uoCmLTRdR9og==",
1737
+ "dev": true,
1738
+ "license": "MIT",
1739
+ "dependencies": {
1740
+ "@eslint-community/regexpp": "^4.10.0",
1741
+ "@typescript-eslint/scope-manager": "8.51.0",
1742
+ "@typescript-eslint/type-utils": "8.51.0",
1743
+ "@typescript-eslint/utils": "8.51.0",
1744
+ "@typescript-eslint/visitor-keys": "8.51.0",
1745
+ "ignore": "^7.0.0",
1746
+ "natural-compare": "^1.4.0",
1747
+ "ts-api-utils": "^2.2.0"
1748
+ },
1749
+ "engines": {
1750
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1751
+ },
1752
+ "funding": {
1753
+ "type": "opencollective",
1754
+ "url": "https://opencollective.com/typescript-eslint"
1755
+ },
1756
+ "peerDependencies": {
1757
+ "@typescript-eslint/parser": "^8.51.0",
1758
+ "eslint": "^8.57.0 || ^9.0.0",
1759
+ "typescript": ">=4.8.4 <6.0.0"
1760
+ }
1761
+ },
1762
+ "node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": {
1763
+ "version": "7.0.5",
1764
+ "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz",
1765
+ "integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==",
1766
+ "dev": true,
1767
+ "license": "MIT",
1768
+ "engines": {
1769
+ "node": ">= 4"
1770
+ }
1771
+ },
1772
+ "node_modules/@typescript-eslint/parser": {
1773
+ "version": "8.51.0",
1774
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.51.0.tgz",
1775
+ "integrity": "sha512-3xP4XzzDNQOIqBMWogftkwxhg5oMKApqY0BAflmLZiFYHqyhSOxv/cd/zPQLTcCXr4AkaKb25joocY0BD1WC6A==",
1776
+ "dev": true,
1777
+ "license": "MIT",
1778
+ "peer": true,
1779
+ "dependencies": {
1780
+ "@typescript-eslint/scope-manager": "8.51.0",
1781
+ "@typescript-eslint/types": "8.51.0",
1782
+ "@typescript-eslint/typescript-estree": "8.51.0",
1783
+ "@typescript-eslint/visitor-keys": "8.51.0",
1784
+ "debug": "^4.3.4"
1785
+ },
1786
+ "engines": {
1787
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1788
+ },
1789
+ "funding": {
1790
+ "type": "opencollective",
1791
+ "url": "https://opencollective.com/typescript-eslint"
1792
+ },
1793
+ "peerDependencies": {
1794
+ "eslint": "^8.57.0 || ^9.0.0",
1795
+ "typescript": ">=4.8.4 <6.0.0"
1796
+ }
1797
+ },
1798
+ "node_modules/@typescript-eslint/project-service": {
1799
+ "version": "8.51.0",
1800
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.51.0.tgz",
1801
+ "integrity": "sha512-Luv/GafO07Z7HpiI7qeEW5NW8HUtZI/fo/kE0YbtQEFpJRUuR0ajcWfCE5bnMvL7QQFrmT/odMe8QZww8X2nfQ==",
1802
+ "dev": true,
1803
+ "license": "MIT",
1804
+ "dependencies": {
1805
+ "@typescript-eslint/tsconfig-utils": "^8.51.0",
1806
+ "@typescript-eslint/types": "^8.51.0",
1807
+ "debug": "^4.3.4"
1808
+ },
1809
+ "engines": {
1810
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1811
+ },
1812
+ "funding": {
1813
+ "type": "opencollective",
1814
+ "url": "https://opencollective.com/typescript-eslint"
1815
+ },
1816
+ "peerDependencies": {
1817
+ "typescript": ">=4.8.4 <6.0.0"
1818
+ }
1819
+ },
1820
+ "node_modules/@typescript-eslint/scope-manager": {
1821
+ "version": "8.51.0",
1822
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.51.0.tgz",
1823
+ "integrity": "sha512-JhhJDVwsSx4hiOEQPeajGhCWgBMBwVkxC/Pet53EpBVs7zHHtayKefw1jtPaNRXpI9RA2uocdmpdfE7T+NrizA==",
1824
+ "dev": true,
1825
+ "license": "MIT",
1826
+ "dependencies": {
1827
+ "@typescript-eslint/types": "8.51.0",
1828
+ "@typescript-eslint/visitor-keys": "8.51.0"
1829
+ },
1830
+ "engines": {
1831
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1832
+ },
1833
+ "funding": {
1834
+ "type": "opencollective",
1835
+ "url": "https://opencollective.com/typescript-eslint"
1836
+ }
1837
+ },
1838
+ "node_modules/@typescript-eslint/tsconfig-utils": {
1839
+ "version": "8.51.0",
1840
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.51.0.tgz",
1841
+ "integrity": "sha512-Qi5bSy/vuHeWyir2C8u/uqGMIlIDu8fuiYWv48ZGlZ/k+PRPHtaAu7erpc7p5bzw2WNNSniuxoMSO4Ar6V9OXw==",
1842
+ "dev": true,
1843
+ "license": "MIT",
1844
+ "engines": {
1845
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1846
+ },
1847
+ "funding": {
1848
+ "type": "opencollective",
1849
+ "url": "https://opencollective.com/typescript-eslint"
1850
+ },
1851
+ "peerDependencies": {
1852
+ "typescript": ">=4.8.4 <6.0.0"
1853
+ }
1854
+ },
1855
+ "node_modules/@typescript-eslint/type-utils": {
1856
+ "version": "8.51.0",
1857
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.51.0.tgz",
1858
+ "integrity": "sha512-0XVtYzxnobc9K0VU7wRWg1yiUrw4oQzexCG2V2IDxxCxhqBMSMbjB+6o91A+Uc0GWtgjCa3Y8bi7hwI0Tu4n5Q==",
1859
+ "dev": true,
1860
+ "license": "MIT",
1861
+ "dependencies": {
1862
+ "@typescript-eslint/types": "8.51.0",
1863
+ "@typescript-eslint/typescript-estree": "8.51.0",
1864
+ "@typescript-eslint/utils": "8.51.0",
1865
+ "debug": "^4.3.4",
1866
+ "ts-api-utils": "^2.2.0"
1867
+ },
1868
+ "engines": {
1869
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1870
+ },
1871
+ "funding": {
1872
+ "type": "opencollective",
1873
+ "url": "https://opencollective.com/typescript-eslint"
1874
+ },
1875
+ "peerDependencies": {
1876
+ "eslint": "^8.57.0 || ^9.0.0",
1877
+ "typescript": ">=4.8.4 <6.0.0"
1878
+ }
1879
+ },
1880
+ "node_modules/@typescript-eslint/types": {
1881
+ "version": "8.51.0",
1882
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.51.0.tgz",
1883
+ "integrity": "sha512-TizAvWYFM6sSscmEakjY3sPqGwxZRSywSsPEiuZF6d5GmGD9Gvlsv0f6N8FvAAA0CD06l3rIcWNbsN1e5F/9Ag==",
1884
+ "dev": true,
1885
+ "license": "MIT",
1886
+ "engines": {
1887
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1888
+ },
1889
+ "funding": {
1890
+ "type": "opencollective",
1891
+ "url": "https://opencollective.com/typescript-eslint"
1892
+ }
1893
+ },
1894
+ "node_modules/@typescript-eslint/typescript-estree": {
1895
+ "version": "8.51.0",
1896
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.51.0.tgz",
1897
+ "integrity": "sha512-1qNjGqFRmlq0VW5iVlcyHBbCjPB7y6SxpBkrbhNWMy/65ZoncXCEPJxkRZL8McrseNH6lFhaxCIaX+vBuFnRng==",
1898
+ "dev": true,
1899
+ "license": "MIT",
1900
+ "dependencies": {
1901
+ "@typescript-eslint/project-service": "8.51.0",
1902
+ "@typescript-eslint/tsconfig-utils": "8.51.0",
1903
+ "@typescript-eslint/types": "8.51.0",
1904
+ "@typescript-eslint/visitor-keys": "8.51.0",
1905
+ "debug": "^4.3.4",
1906
+ "minimatch": "^9.0.4",
1907
+ "semver": "^7.6.0",
1908
+ "tinyglobby": "^0.2.15",
1909
+ "ts-api-utils": "^2.2.0"
1910
+ },
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
+ "peerDependencies": {
1919
+ "typescript": ">=4.8.4 <6.0.0"
1920
+ }
1921
+ },
1922
+ "node_modules/@typescript-eslint/utils": {
1923
+ "version": "8.51.0",
1924
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.51.0.tgz",
1925
+ "integrity": "sha512-11rZYxSe0zabiKaCP2QAwRf/dnmgFgvTmeDTtZvUvXG3UuAdg/GU02NExmmIXzz3vLGgMdtrIosI84jITQOxUA==",
1926
+ "dev": true,
1927
+ "license": "MIT",
1928
+ "dependencies": {
1929
+ "@eslint-community/eslint-utils": "^4.7.0",
1930
+ "@typescript-eslint/scope-manager": "8.51.0",
1931
+ "@typescript-eslint/types": "8.51.0",
1932
+ "@typescript-eslint/typescript-estree": "8.51.0"
1933
+ },
1934
+ "engines": {
1935
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1936
+ },
1937
+ "funding": {
1938
+ "type": "opencollective",
1939
+ "url": "https://opencollective.com/typescript-eslint"
1940
+ },
1941
+ "peerDependencies": {
1942
+ "eslint": "^8.57.0 || ^9.0.0",
1943
+ "typescript": ">=4.8.4 <6.0.0"
1944
+ }
1945
+ },
1946
+ "node_modules/@typescript-eslint/visitor-keys": {
1947
+ "version": "8.51.0",
1948
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.51.0.tgz",
1949
+ "integrity": "sha512-mM/JRQOzhVN1ykejrvwnBRV3+7yTKK8tVANVN3o1O0t0v7o+jqdVu9crPy5Y9dov15TJk/FTIgoUGHrTOVL3Zg==",
1950
+ "dev": true,
1951
+ "license": "MIT",
1952
+ "dependencies": {
1953
+ "@typescript-eslint/types": "8.51.0",
1954
+ "eslint-visitor-keys": "^4.2.1"
1955
+ },
1956
+ "engines": {
1957
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1958
+ },
1959
+ "funding": {
1960
+ "type": "opencollective",
1961
+ "url": "https://opencollective.com/typescript-eslint"
1962
+ }
1963
+ },
1964
+ "node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": {
1965
+ "version": "4.2.1",
1966
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz",
1967
+ "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==",
1968
+ "dev": true,
1969
+ "license": "Apache-2.0",
1970
+ "engines": {
1971
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1972
+ },
1973
+ "funding": {
1974
+ "url": "https://opencollective.com/eslint"
1975
+ }
1976
+ },
1977
+ "node_modules/@vitejs/plugin-react": {
1978
+ "version": "5.1.2",
1979
+ "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-5.1.2.tgz",
1980
+ "integrity": "sha512-EcA07pHJouywpzsoTUqNh5NwGayl2PPVEJKUSinGGSxFGYn+shYbqMGBg6FXDqgXum9Ou/ecb+411ssw8HImJQ==",
1981
+ "dev": true,
1982
+ "license": "MIT",
1983
+ "dependencies": {
1984
+ "@babel/core": "^7.28.5",
1985
+ "@babel/plugin-transform-react-jsx-self": "^7.27.1",
1986
+ "@babel/plugin-transform-react-jsx-source": "^7.27.1",
1987
+ "@rolldown/pluginutils": "1.0.0-beta.53",
1988
+ "@types/babel__core": "^7.20.5",
1989
+ "react-refresh": "^0.18.0"
1990
+ },
1991
+ "engines": {
1992
+ "node": "^20.19.0 || >=22.12.0"
1993
+ },
1994
+ "peerDependencies": {
1995
+ "vite": "^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0"
1996
+ }
1997
+ },
1998
+ "node_modules/acorn": {
1999
+ "version": "8.15.0",
2000
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz",
2001
+ "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==",
2002
+ "dev": true,
2003
+ "license": "MIT",
2004
+ "peer": true,
2005
+ "bin": {
2006
+ "acorn": "bin/acorn"
2007
+ },
2008
+ "engines": {
2009
+ "node": ">=0.4.0"
2010
+ }
2011
+ },
2012
+ "node_modules/acorn-jsx": {
2013
+ "version": "5.3.2",
2014
+ "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
2015
+ "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
2016
+ "dev": true,
2017
+ "license": "MIT",
2018
+ "peerDependencies": {
2019
+ "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
2020
+ }
2021
+ },
2022
+ "node_modules/ajv": {
2023
+ "version": "6.12.6",
2024
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
2025
+ "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
2026
+ "dev": true,
2027
+ "license": "MIT",
2028
+ "dependencies": {
2029
+ "fast-deep-equal": "^3.1.1",
2030
+ "fast-json-stable-stringify": "^2.0.0",
2031
+ "json-schema-traverse": "^0.4.1",
2032
+ "uri-js": "^4.2.2"
2033
+ },
2034
+ "funding": {
2035
+ "type": "github",
2036
+ "url": "https://github.com/sponsors/epoberezkin"
2037
+ }
2038
+ },
2039
+ "node_modules/ansi-styles": {
2040
+ "version": "4.3.0",
2041
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
2042
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
2043
+ "dev": true,
2044
+ "license": "MIT",
2045
+ "dependencies": {
2046
+ "color-convert": "^2.0.1"
2047
+ },
2048
+ "engines": {
2049
+ "node": ">=8"
2050
+ },
2051
+ "funding": {
2052
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
2053
+ }
2054
+ },
2055
+ "node_modules/argparse": {
2056
+ "version": "2.0.1",
2057
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
2058
+ "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
2059
+ "dev": true,
2060
+ "license": "Python-2.0"
2061
+ },
2062
+ "node_modules/balanced-match": {
2063
+ "version": "1.0.2",
2064
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
2065
+ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
2066
+ "dev": true,
2067
+ "license": "MIT"
2068
+ },
2069
+ "node_modules/baseline-browser-mapping": {
2070
+ "version": "2.9.11",
2071
+ "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.9.11.tgz",
2072
+ "integrity": "sha512-Sg0xJUNDU1sJNGdfGWhVHX0kkZ+HWcvmVymJbj6NSgZZmW/8S9Y2HQ5euytnIgakgxN6papOAWiwDo1ctFDcoQ==",
2073
+ "dev": true,
2074
+ "license": "Apache-2.0",
2075
+ "bin": {
2076
+ "baseline-browser-mapping": "dist/cli.js"
2077
+ }
2078
+ },
2079
+ "node_modules/brace-expansion": {
2080
+ "version": "2.0.2",
2081
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz",
2082
+ "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==",
2083
+ "dev": true,
2084
+ "license": "MIT",
2085
+ "dependencies": {
2086
+ "balanced-match": "^1.0.0"
2087
+ }
2088
+ },
2089
+ "node_modules/browserslist": {
2090
+ "version": "4.28.1",
2091
+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.1.tgz",
2092
+ "integrity": "sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==",
2093
+ "dev": true,
2094
+ "funding": [
2095
+ {
2096
+ "type": "opencollective",
2097
+ "url": "https://opencollective.com/browserslist"
2098
+ },
2099
+ {
2100
+ "type": "tidelift",
2101
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
2102
+ },
2103
+ {
2104
+ "type": "github",
2105
+ "url": "https://github.com/sponsors/ai"
2106
+ }
2107
+ ],
2108
+ "license": "MIT",
2109
+ "peer": true,
2110
+ "dependencies": {
2111
+ "baseline-browser-mapping": "^2.9.0",
2112
+ "caniuse-lite": "^1.0.30001759",
2113
+ "electron-to-chromium": "^1.5.263",
2114
+ "node-releases": "^2.0.27",
2115
+ "update-browserslist-db": "^1.2.0"
2116
+ },
2117
+ "bin": {
2118
+ "browserslist": "cli.js"
2119
+ },
2120
+ "engines": {
2121
+ "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
2122
+ }
2123
+ },
2124
+ "node_modules/callsites": {
2125
+ "version": "3.1.0",
2126
+ "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
2127
+ "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
2128
+ "dev": true,
2129
+ "license": "MIT",
2130
+ "engines": {
2131
+ "node": ">=6"
2132
+ }
2133
+ },
2134
+ "node_modules/caniuse-lite": {
2135
+ "version": "1.0.30001762",
2136
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001762.tgz",
2137
+ "integrity": "sha512-PxZwGNvH7Ak8WX5iXzoK1KPZttBXNPuaOvI2ZYU7NrlM+d9Ov+TUvlLOBNGzVXAntMSMMlJPd+jY6ovrVjSmUw==",
2138
+ "dev": true,
2139
+ "funding": [
2140
+ {
2141
+ "type": "opencollective",
2142
+ "url": "https://opencollective.com/browserslist"
2143
+ },
2144
+ {
2145
+ "type": "tidelift",
2146
+ "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
2147
+ },
2148
+ {
2149
+ "type": "github",
2150
+ "url": "https://github.com/sponsors/ai"
2151
+ }
2152
+ ],
2153
+ "license": "CC-BY-4.0"
2154
+ },
2155
+ "node_modules/chalk": {
2156
+ "version": "4.1.2",
2157
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
2158
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
2159
+ "dev": true,
2160
+ "license": "MIT",
2161
+ "dependencies": {
2162
+ "ansi-styles": "^4.1.0",
2163
+ "supports-color": "^7.1.0"
2164
+ },
2165
+ "engines": {
2166
+ "node": ">=10"
2167
+ },
2168
+ "funding": {
2169
+ "url": "https://github.com/chalk/chalk?sponsor=1"
2170
+ }
2171
+ },
2172
+ "node_modules/color-convert": {
2173
+ "version": "2.0.1",
2174
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
2175
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
2176
+ "dev": true,
2177
+ "license": "MIT",
2178
+ "dependencies": {
2179
+ "color-name": "~1.1.4"
2180
+ },
2181
+ "engines": {
2182
+ "node": ">=7.0.0"
2183
+ }
2184
+ },
2185
+ "node_modules/color-name": {
2186
+ "version": "1.1.4",
2187
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
2188
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
2189
+ "dev": true,
2190
+ "license": "MIT"
2191
+ },
2192
+ "node_modules/concat-map": {
2193
+ "version": "0.0.1",
2194
+ "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
2195
+ "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
2196
+ "dev": true,
2197
+ "license": "MIT"
2198
+ },
2199
+ "node_modules/convert-source-map": {
2200
+ "version": "2.0.0",
2201
+ "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
2202
+ "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
2203
+ "dev": true,
2204
+ "license": "MIT"
2205
+ },
2206
+ "node_modules/cross-spawn": {
2207
+ "version": "7.0.6",
2208
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
2209
+ "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
2210
+ "dev": true,
2211
+ "license": "MIT",
2212
+ "dependencies": {
2213
+ "path-key": "^3.1.0",
2214
+ "shebang-command": "^2.0.0",
2215
+ "which": "^2.0.1"
2216
+ },
2217
+ "engines": {
2218
+ "node": ">= 8"
2219
+ }
2220
+ },
2221
+ "node_modules/csstype": {
2222
+ "version": "3.2.3",
2223
+ "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz",
2224
+ "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
2225
+ "devOptional": true,
2226
+ "license": "MIT"
2227
+ },
2228
+ "node_modules/debug": {
2229
+ "version": "4.4.3",
2230
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
2231
+ "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
2232
+ "dev": true,
2233
+ "license": "MIT",
2234
+ "dependencies": {
2235
+ "ms": "^2.1.3"
2236
+ },
2237
+ "engines": {
2238
+ "node": ">=6.0"
2239
+ },
2240
+ "peerDependenciesMeta": {
2241
+ "supports-color": {
2242
+ "optional": true
2243
+ }
2244
+ }
2245
+ },
2246
+ "node_modules/deep-is": {
2247
+ "version": "0.1.4",
2248
+ "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz",
2249
+ "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==",
2250
+ "dev": true,
2251
+ "license": "MIT"
2252
+ },
2253
+ "node_modules/detect-libc": {
2254
+ "version": "2.1.2",
2255
+ "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
2256
+ "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
2257
+ "license": "Apache-2.0",
2258
+ "engines": {
2259
+ "node": ">=8"
2260
+ }
2261
+ },
2262
+ "node_modules/electron-to-chromium": {
2263
+ "version": "1.5.267",
2264
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.267.tgz",
2265
+ "integrity": "sha512-0Drusm6MVRXSOJpGbaSVgcQsuB4hEkMpHXaVstcPmhu5LIedxs1xNK/nIxmQIU/RPC0+1/o0AVZfBTkTNJOdUw==",
2266
+ "dev": true,
2267
+ "license": "ISC"
2268
+ },
2269
+ "node_modules/enhanced-resolve": {
2270
+ "version": "5.18.4",
2271
+ "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.4.tgz",
2272
+ "integrity": "sha512-LgQMM4WXU3QI+SYgEc2liRgznaD5ojbmY3sb8LxyguVkIg5FxdpTkvk72te2R38/TGKxH634oLxXRGY6d7AP+Q==",
2273
+ "license": "MIT",
2274
+ "dependencies": {
2275
+ "graceful-fs": "^4.2.4",
2276
+ "tapable": "^2.2.0"
2277
+ },
2278
+ "engines": {
2279
+ "node": ">=10.13.0"
2280
+ }
2281
+ },
2282
+ "node_modules/esbuild": {
2283
+ "version": "0.27.2",
2284
+ "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.2.tgz",
2285
+ "integrity": "sha512-HyNQImnsOC7X9PMNaCIeAm4ISCQXs5a5YasTXVliKv4uuBo1dKrG0A+uQS8M5eXjVMnLg3WgXaKvprHlFJQffw==",
2286
+ "hasInstallScript": true,
2287
+ "license": "MIT",
2288
+ "bin": {
2289
+ "esbuild": "bin/esbuild"
2290
+ },
2291
+ "engines": {
2292
+ "node": ">=18"
2293
+ },
2294
+ "optionalDependencies": {
2295
+ "@esbuild/aix-ppc64": "0.27.2",
2296
+ "@esbuild/android-arm": "0.27.2",
2297
+ "@esbuild/android-arm64": "0.27.2",
2298
+ "@esbuild/android-x64": "0.27.2",
2299
+ "@esbuild/darwin-arm64": "0.27.2",
2300
+ "@esbuild/darwin-x64": "0.27.2",
2301
+ "@esbuild/freebsd-arm64": "0.27.2",
2302
+ "@esbuild/freebsd-x64": "0.27.2",
2303
+ "@esbuild/linux-arm": "0.27.2",
2304
+ "@esbuild/linux-arm64": "0.27.2",
2305
+ "@esbuild/linux-ia32": "0.27.2",
2306
+ "@esbuild/linux-loong64": "0.27.2",
2307
+ "@esbuild/linux-mips64el": "0.27.2",
2308
+ "@esbuild/linux-ppc64": "0.27.2",
2309
+ "@esbuild/linux-riscv64": "0.27.2",
2310
+ "@esbuild/linux-s390x": "0.27.2",
2311
+ "@esbuild/linux-x64": "0.27.2",
2312
+ "@esbuild/netbsd-arm64": "0.27.2",
2313
+ "@esbuild/netbsd-x64": "0.27.2",
2314
+ "@esbuild/openbsd-arm64": "0.27.2",
2315
+ "@esbuild/openbsd-x64": "0.27.2",
2316
+ "@esbuild/openharmony-arm64": "0.27.2",
2317
+ "@esbuild/sunos-x64": "0.27.2",
2318
+ "@esbuild/win32-arm64": "0.27.2",
2319
+ "@esbuild/win32-ia32": "0.27.2",
2320
+ "@esbuild/win32-x64": "0.27.2"
2321
+ }
2322
+ },
2323
+ "node_modules/escalade": {
2324
+ "version": "3.2.0",
2325
+ "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
2326
+ "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
2327
+ "dev": true,
2328
+ "license": "MIT",
2329
+ "engines": {
2330
+ "node": ">=6"
2331
+ }
2332
+ },
2333
+ "node_modules/escape-string-regexp": {
2334
+ "version": "4.0.0",
2335
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
2336
+ "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
2337
+ "dev": true,
2338
+ "license": "MIT",
2339
+ "engines": {
2340
+ "node": ">=10"
2341
+ },
2342
+ "funding": {
2343
+ "url": "https://github.com/sponsors/sindresorhus"
2344
+ }
2345
+ },
2346
+ "node_modules/eslint": {
2347
+ "version": "9.39.2",
2348
+ "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.39.2.tgz",
2349
+ "integrity": "sha512-LEyamqS7W5HB3ujJyvi0HQK/dtVINZvd5mAAp9eT5S/ujByGjiZLCzPcHVzuXbpJDJF/cxwHlfceVUDZ2lnSTw==",
2350
+ "dev": true,
2351
+ "license": "MIT",
2352
+ "peer": true,
2353
+ "dependencies": {
2354
+ "@eslint-community/eslint-utils": "^4.8.0",
2355
+ "@eslint-community/regexpp": "^4.12.1",
2356
+ "@eslint/config-array": "^0.21.1",
2357
+ "@eslint/config-helpers": "^0.4.2",
2358
+ "@eslint/core": "^0.17.0",
2359
+ "@eslint/eslintrc": "^3.3.1",
2360
+ "@eslint/js": "9.39.2",
2361
+ "@eslint/plugin-kit": "^0.4.1",
2362
+ "@humanfs/node": "^0.16.6",
2363
+ "@humanwhocodes/module-importer": "^1.0.1",
2364
+ "@humanwhocodes/retry": "^0.4.2",
2365
+ "@types/estree": "^1.0.6",
2366
+ "ajv": "^6.12.4",
2367
+ "chalk": "^4.0.0",
2368
+ "cross-spawn": "^7.0.6",
2369
+ "debug": "^4.3.2",
2370
+ "escape-string-regexp": "^4.0.0",
2371
+ "eslint-scope": "^8.4.0",
2372
+ "eslint-visitor-keys": "^4.2.1",
2373
+ "espree": "^10.4.0",
2374
+ "esquery": "^1.5.0",
2375
+ "esutils": "^2.0.2",
2376
+ "fast-deep-equal": "^3.1.3",
2377
+ "file-entry-cache": "^8.0.0",
2378
+ "find-up": "^5.0.0",
2379
+ "glob-parent": "^6.0.2",
2380
+ "ignore": "^5.2.0",
2381
+ "imurmurhash": "^0.1.4",
2382
+ "is-glob": "^4.0.0",
2383
+ "json-stable-stringify-without-jsonify": "^1.0.1",
2384
+ "lodash.merge": "^4.6.2",
2385
+ "minimatch": "^3.1.2",
2386
+ "natural-compare": "^1.4.0",
2387
+ "optionator": "^0.9.3"
2388
+ },
2389
+ "bin": {
2390
+ "eslint": "bin/eslint.js"
2391
+ },
2392
+ "engines": {
2393
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
2394
+ },
2395
+ "funding": {
2396
+ "url": "https://eslint.org/donate"
2397
+ },
2398
+ "peerDependencies": {
2399
+ "jiti": "*"
2400
+ },
2401
+ "peerDependenciesMeta": {
2402
+ "jiti": {
2403
+ "optional": true
2404
+ }
2405
+ }
2406
+ },
2407
+ "node_modules/eslint-plugin-react-hooks": {
2408
+ "version": "7.0.1",
2409
+ "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-7.0.1.tgz",
2410
+ "integrity": "sha512-O0d0m04evaNzEPoSW+59Mezf8Qt0InfgGIBJnpC0h3NH/WjUAR7BIKUfysC6todmtiZ/A0oUVS8Gce0WhBrHsA==",
2411
+ "dev": true,
2412
+ "license": "MIT",
2413
+ "dependencies": {
2414
+ "@babel/core": "^7.24.4",
2415
+ "@babel/parser": "^7.24.4",
2416
+ "hermes-parser": "^0.25.1",
2417
+ "zod": "^3.25.0 || ^4.0.0",
2418
+ "zod-validation-error": "^3.5.0 || ^4.0.0"
2419
+ },
2420
+ "engines": {
2421
+ "node": ">=18"
2422
+ },
2423
+ "peerDependencies": {
2424
+ "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0"
2425
+ }
2426
+ },
2427
+ "node_modules/eslint-plugin-react-refresh": {
2428
+ "version": "0.4.26",
2429
+ "resolved": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.26.tgz",
2430
+ "integrity": "sha512-1RETEylht2O6FM/MvgnyvT+8K21wLqDNg4qD51Zj3guhjt433XbnnkVttHMyaVyAFD03QSV4LPS5iE3VQmO7XQ==",
2431
+ "dev": true,
2432
+ "license": "MIT",
2433
+ "peerDependencies": {
2434
+ "eslint": ">=8.40"
2435
+ }
2436
+ },
2437
+ "node_modules/eslint-scope": {
2438
+ "version": "8.4.0",
2439
+ "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.4.0.tgz",
2440
+ "integrity": "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==",
2441
+ "dev": true,
2442
+ "license": "BSD-2-Clause",
2443
+ "dependencies": {
2444
+ "esrecurse": "^4.3.0",
2445
+ "estraverse": "^5.2.0"
2446
+ },
2447
+ "engines": {
2448
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
2449
+ },
2450
+ "funding": {
2451
+ "url": "https://opencollective.com/eslint"
2452
+ }
2453
+ },
2454
+ "node_modules/eslint-visitor-keys": {
2455
+ "version": "3.4.3",
2456
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz",
2457
+ "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==",
2458
+ "dev": true,
2459
+ "license": "Apache-2.0",
2460
+ "engines": {
2461
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
2462
+ },
2463
+ "funding": {
2464
+ "url": "https://opencollective.com/eslint"
2465
+ }
2466
+ },
2467
+ "node_modules/eslint/node_modules/brace-expansion": {
2468
+ "version": "1.1.12",
2469
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz",
2470
+ "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==",
2471
+ "dev": true,
2472
+ "license": "MIT",
2473
+ "dependencies": {
2474
+ "balanced-match": "^1.0.0",
2475
+ "concat-map": "0.0.1"
2476
+ }
2477
+ },
2478
+ "node_modules/eslint/node_modules/eslint-visitor-keys": {
2479
+ "version": "4.2.1",
2480
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz",
2481
+ "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==",
2482
+ "dev": true,
2483
+ "license": "Apache-2.0",
2484
+ "engines": {
2485
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
2486
+ },
2487
+ "funding": {
2488
+ "url": "https://opencollective.com/eslint"
2489
+ }
2490
+ },
2491
+ "node_modules/eslint/node_modules/minimatch": {
2492
+ "version": "3.1.2",
2493
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
2494
+ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
2495
+ "dev": true,
2496
+ "license": "ISC",
2497
+ "dependencies": {
2498
+ "brace-expansion": "^1.1.7"
2499
+ },
2500
+ "engines": {
2501
+ "node": "*"
2502
+ }
2503
+ },
2504
+ "node_modules/espree": {
2505
+ "version": "10.4.0",
2506
+ "resolved": "https://registry.npmjs.org/espree/-/espree-10.4.0.tgz",
2507
+ "integrity": "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==",
2508
+ "dev": true,
2509
+ "license": "BSD-2-Clause",
2510
+ "dependencies": {
2511
+ "acorn": "^8.15.0",
2512
+ "acorn-jsx": "^5.3.2",
2513
+ "eslint-visitor-keys": "^4.2.1"
2514
+ },
2515
+ "engines": {
2516
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
2517
+ },
2518
+ "funding": {
2519
+ "url": "https://opencollective.com/eslint"
2520
+ }
2521
+ },
2522
+ "node_modules/espree/node_modules/eslint-visitor-keys": {
2523
+ "version": "4.2.1",
2524
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz",
2525
+ "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==",
2526
+ "dev": true,
2527
+ "license": "Apache-2.0",
2528
+ "engines": {
2529
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
2530
+ },
2531
+ "funding": {
2532
+ "url": "https://opencollective.com/eslint"
2533
+ }
2534
+ },
2535
+ "node_modules/esquery": {
2536
+ "version": "1.7.0",
2537
+ "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.7.0.tgz",
2538
+ "integrity": "sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==",
2539
+ "dev": true,
2540
+ "license": "BSD-3-Clause",
2541
+ "dependencies": {
2542
+ "estraverse": "^5.1.0"
2543
+ },
2544
+ "engines": {
2545
+ "node": ">=0.10"
2546
+ }
2547
+ },
2548
+ "node_modules/esrecurse": {
2549
+ "version": "4.3.0",
2550
+ "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
2551
+ "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
2552
+ "dev": true,
2553
+ "license": "BSD-2-Clause",
2554
+ "dependencies": {
2555
+ "estraverse": "^5.2.0"
2556
+ },
2557
+ "engines": {
2558
+ "node": ">=4.0"
2559
+ }
2560
+ },
2561
+ "node_modules/estraverse": {
2562
+ "version": "5.3.0",
2563
+ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
2564
+ "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
2565
+ "dev": true,
2566
+ "license": "BSD-2-Clause",
2567
+ "engines": {
2568
+ "node": ">=4.0"
2569
+ }
2570
+ },
2571
+ "node_modules/esutils": {
2572
+ "version": "2.0.3",
2573
+ "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
2574
+ "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
2575
+ "dev": true,
2576
+ "license": "BSD-2-Clause",
2577
+ "engines": {
2578
+ "node": ">=0.10.0"
2579
+ }
2580
+ },
2581
+ "node_modules/fast-deep-equal": {
2582
+ "version": "3.1.3",
2583
+ "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
2584
+ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
2585
+ "dev": true,
2586
+ "license": "MIT"
2587
+ },
2588
+ "node_modules/fast-json-stable-stringify": {
2589
+ "version": "2.1.0",
2590
+ "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
2591
+ "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
2592
+ "dev": true,
2593
+ "license": "MIT"
2594
+ },
2595
+ "node_modules/fast-levenshtein": {
2596
+ "version": "2.0.6",
2597
+ "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
2598
+ "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==",
2599
+ "dev": true,
2600
+ "license": "MIT"
2601
+ },
2602
+ "node_modules/fdir": {
2603
+ "version": "6.5.0",
2604
+ "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
2605
+ "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
2606
+ "license": "MIT",
2607
+ "engines": {
2608
+ "node": ">=12.0.0"
2609
+ },
2610
+ "peerDependencies": {
2611
+ "picomatch": "^3 || ^4"
2612
+ },
2613
+ "peerDependenciesMeta": {
2614
+ "picomatch": {
2615
+ "optional": true
2616
+ }
2617
+ }
2618
+ },
2619
+ "node_modules/file-entry-cache": {
2620
+ "version": "8.0.0",
2621
+ "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz",
2622
+ "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==",
2623
+ "dev": true,
2624
+ "license": "MIT",
2625
+ "dependencies": {
2626
+ "flat-cache": "^4.0.0"
2627
+ },
2628
+ "engines": {
2629
+ "node": ">=16.0.0"
2630
+ }
2631
+ },
2632
+ "node_modules/find-up": {
2633
+ "version": "5.0.0",
2634
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
2635
+ "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
2636
+ "dev": true,
2637
+ "license": "MIT",
2638
+ "dependencies": {
2639
+ "locate-path": "^6.0.0",
2640
+ "path-exists": "^4.0.0"
2641
+ },
2642
+ "engines": {
2643
+ "node": ">=10"
2644
+ },
2645
+ "funding": {
2646
+ "url": "https://github.com/sponsors/sindresorhus"
2647
+ }
2648
+ },
2649
+ "node_modules/flat-cache": {
2650
+ "version": "4.0.1",
2651
+ "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz",
2652
+ "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==",
2653
+ "dev": true,
2654
+ "license": "MIT",
2655
+ "dependencies": {
2656
+ "flatted": "^3.2.9",
2657
+ "keyv": "^4.5.4"
2658
+ },
2659
+ "engines": {
2660
+ "node": ">=16"
2661
+ }
2662
+ },
2663
+ "node_modules/flatted": {
2664
+ "version": "3.3.3",
2665
+ "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz",
2666
+ "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==",
2667
+ "dev": true,
2668
+ "license": "ISC"
2669
+ },
2670
+ "node_modules/fsevents": {
2671
+ "version": "2.3.3",
2672
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
2673
+ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
2674
+ "hasInstallScript": true,
2675
+ "license": "MIT",
2676
+ "optional": true,
2677
+ "os": [
2678
+ "darwin"
2679
+ ],
2680
+ "engines": {
2681
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
2682
+ }
2683
+ },
2684
+ "node_modules/gensync": {
2685
+ "version": "1.0.0-beta.2",
2686
+ "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
2687
+ "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
2688
+ "dev": true,
2689
+ "license": "MIT",
2690
+ "engines": {
2691
+ "node": ">=6.9.0"
2692
+ }
2693
+ },
2694
+ "node_modules/glob-parent": {
2695
+ "version": "6.0.2",
2696
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
2697
+ "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
2698
+ "dev": true,
2699
+ "license": "ISC",
2700
+ "dependencies": {
2701
+ "is-glob": "^4.0.3"
2702
+ },
2703
+ "engines": {
2704
+ "node": ">=10.13.0"
2705
+ }
2706
+ },
2707
+ "node_modules/globals": {
2708
+ "version": "16.5.0",
2709
+ "resolved": "https://registry.npmjs.org/globals/-/globals-16.5.0.tgz",
2710
+ "integrity": "sha512-c/c15i26VrJ4IRt5Z89DnIzCGDn9EcebibhAOjw5ibqEHsE1wLUgkPn9RDmNcUKyU87GeaL633nyJ+pplFR2ZQ==",
2711
+ "dev": true,
2712
+ "license": "MIT",
2713
+ "engines": {
2714
+ "node": ">=18"
2715
+ },
2716
+ "funding": {
2717
+ "url": "https://github.com/sponsors/sindresorhus"
2718
+ }
2719
+ },
2720
+ "node_modules/graceful-fs": {
2721
+ "version": "4.2.11",
2722
+ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
2723
+ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
2724
+ "license": "ISC"
2725
+ },
2726
+ "node_modules/has-flag": {
2727
+ "version": "4.0.0",
2728
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
2729
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
2730
+ "dev": true,
2731
+ "license": "MIT",
2732
+ "engines": {
2733
+ "node": ">=8"
2734
+ }
2735
+ },
2736
+ "node_modules/hermes-estree": {
2737
+ "version": "0.25.1",
2738
+ "resolved": "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.25.1.tgz",
2739
+ "integrity": "sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw==",
2740
+ "dev": true,
2741
+ "license": "MIT"
2742
+ },
2743
+ "node_modules/hermes-parser": {
2744
+ "version": "0.25.1",
2745
+ "resolved": "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.25.1.tgz",
2746
+ "integrity": "sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==",
2747
+ "dev": true,
2748
+ "license": "MIT",
2749
+ "dependencies": {
2750
+ "hermes-estree": "0.25.1"
2751
+ }
2752
+ },
2753
+ "node_modules/ignore": {
2754
+ "version": "5.3.2",
2755
+ "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz",
2756
+ "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==",
2757
+ "dev": true,
2758
+ "license": "MIT",
2759
+ "engines": {
2760
+ "node": ">= 4"
2761
+ }
2762
+ },
2763
+ "node_modules/import-fresh": {
2764
+ "version": "3.3.1",
2765
+ "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz",
2766
+ "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==",
2767
+ "dev": true,
2768
+ "license": "MIT",
2769
+ "dependencies": {
2770
+ "parent-module": "^1.0.0",
2771
+ "resolve-from": "^4.0.0"
2772
+ },
2773
+ "engines": {
2774
+ "node": ">=6"
2775
+ },
2776
+ "funding": {
2777
+ "url": "https://github.com/sponsors/sindresorhus"
2778
+ }
2779
+ },
2780
+ "node_modules/imurmurhash": {
2781
+ "version": "0.1.4",
2782
+ "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
2783
+ "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
2784
+ "dev": true,
2785
+ "license": "MIT",
2786
+ "engines": {
2787
+ "node": ">=0.8.19"
2788
+ }
2789
+ },
2790
+ "node_modules/is-extglob": {
2791
+ "version": "2.1.1",
2792
+ "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
2793
+ "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
2794
+ "dev": true,
2795
+ "license": "MIT",
2796
+ "engines": {
2797
+ "node": ">=0.10.0"
2798
+ }
2799
+ },
2800
+ "node_modules/is-glob": {
2801
+ "version": "4.0.3",
2802
+ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
2803
+ "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
2804
+ "dev": true,
2805
+ "license": "MIT",
2806
+ "dependencies": {
2807
+ "is-extglob": "^2.1.1"
2808
+ },
2809
+ "engines": {
2810
+ "node": ">=0.10.0"
2811
+ }
2812
+ },
2813
+ "node_modules/isexe": {
2814
+ "version": "2.0.0",
2815
+ "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
2816
+ "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
2817
+ "dev": true,
2818
+ "license": "ISC"
2819
+ },
2820
+ "node_modules/jiti": {
2821
+ "version": "2.6.1",
2822
+ "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.6.1.tgz",
2823
+ "integrity": "sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==",
2824
+ "license": "MIT",
2825
+ "bin": {
2826
+ "jiti": "lib/jiti-cli.mjs"
2827
+ }
2828
+ },
2829
+ "node_modules/js-tokens": {
2830
+ "version": "4.0.0",
2831
+ "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
2832
+ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
2833
+ "dev": true,
2834
+ "license": "MIT"
2835
+ },
2836
+ "node_modules/js-yaml": {
2837
+ "version": "4.1.1",
2838
+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz",
2839
+ "integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==",
2840
+ "dev": true,
2841
+ "license": "MIT",
2842
+ "dependencies": {
2843
+ "argparse": "^2.0.1"
2844
+ },
2845
+ "bin": {
2846
+ "js-yaml": "bin/js-yaml.js"
2847
+ }
2848
+ },
2849
+ "node_modules/jsesc": {
2850
+ "version": "3.1.0",
2851
+ "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
2852
+ "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
2853
+ "dev": true,
2854
+ "license": "MIT",
2855
+ "bin": {
2856
+ "jsesc": "bin/jsesc"
2857
+ },
2858
+ "engines": {
2859
+ "node": ">=6"
2860
+ }
2861
+ },
2862
+ "node_modules/json-buffer": {
2863
+ "version": "3.0.1",
2864
+ "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz",
2865
+ "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==",
2866
+ "dev": true,
2867
+ "license": "MIT"
2868
+ },
2869
+ "node_modules/json-schema-traverse": {
2870
+ "version": "0.4.1",
2871
+ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
2872
+ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
2873
+ "dev": true,
2874
+ "license": "MIT"
2875
+ },
2876
+ "node_modules/json-stable-stringify-without-jsonify": {
2877
+ "version": "1.0.1",
2878
+ "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
2879
+ "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==",
2880
+ "dev": true,
2881
+ "license": "MIT"
2882
+ },
2883
+ "node_modules/json5": {
2884
+ "version": "2.2.3",
2885
+ "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
2886
+ "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
2887
+ "dev": true,
2888
+ "license": "MIT",
2889
+ "bin": {
2890
+ "json5": "lib/cli.js"
2891
+ },
2892
+ "engines": {
2893
+ "node": ">=6"
2894
+ }
2895
+ },
2896
+ "node_modules/keyv": {
2897
+ "version": "4.5.4",
2898
+ "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz",
2899
+ "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==",
2900
+ "dev": true,
2901
+ "license": "MIT",
2902
+ "dependencies": {
2903
+ "json-buffer": "3.0.1"
2904
+ }
2905
+ },
2906
+ "node_modules/levn": {
2907
+ "version": "0.4.1",
2908
+ "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz",
2909
+ "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
2910
+ "dev": true,
2911
+ "license": "MIT",
2912
+ "dependencies": {
2913
+ "prelude-ls": "^1.2.1",
2914
+ "type-check": "~0.4.0"
2915
+ },
2916
+ "engines": {
2917
+ "node": ">= 0.8.0"
2918
+ }
2919
+ },
2920
+ "node_modules/lightningcss": {
2921
+ "version": "1.30.2",
2922
+ "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.30.2.tgz",
2923
+ "integrity": "sha512-utfs7Pr5uJyyvDETitgsaqSyjCb2qNRAtuqUeWIAKztsOYdcACf2KtARYXg2pSvhkt+9NfoaNY7fxjl6nuMjIQ==",
2924
+ "license": "MPL-2.0",
2925
+ "dependencies": {
2926
+ "detect-libc": "^2.0.3"
2927
+ },
2928
+ "engines": {
2929
+ "node": ">= 12.0.0"
2930
+ },
2931
+ "funding": {
2932
+ "type": "opencollective",
2933
+ "url": "https://opencollective.com/parcel"
2934
+ },
2935
+ "optionalDependencies": {
2936
+ "lightningcss-android-arm64": "1.30.2",
2937
+ "lightningcss-darwin-arm64": "1.30.2",
2938
+ "lightningcss-darwin-x64": "1.30.2",
2939
+ "lightningcss-freebsd-x64": "1.30.2",
2940
+ "lightningcss-linux-arm-gnueabihf": "1.30.2",
2941
+ "lightningcss-linux-arm64-gnu": "1.30.2",
2942
+ "lightningcss-linux-arm64-musl": "1.30.2",
2943
+ "lightningcss-linux-x64-gnu": "1.30.2",
2944
+ "lightningcss-linux-x64-musl": "1.30.2",
2945
+ "lightningcss-win32-arm64-msvc": "1.30.2",
2946
+ "lightningcss-win32-x64-msvc": "1.30.2"
2947
+ }
2948
+ },
2949
+ "node_modules/lightningcss-android-arm64": {
2950
+ "version": "1.30.2",
2951
+ "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.30.2.tgz",
2952
+ "integrity": "sha512-BH9sEdOCahSgmkVhBLeU7Hc9DWeZ1Eb6wNS6Da8igvUwAe0sqROHddIlvU06q3WyXVEOYDZ6ykBZQnjTbmo4+A==",
2953
+ "cpu": [
2954
+ "arm64"
2955
+ ],
2956
+ "license": "MPL-2.0",
2957
+ "optional": true,
2958
+ "os": [
2959
+ "android"
2960
+ ],
2961
+ "engines": {
2962
+ "node": ">= 12.0.0"
2963
+ },
2964
+ "funding": {
2965
+ "type": "opencollective",
2966
+ "url": "https://opencollective.com/parcel"
2967
+ }
2968
+ },
2969
+ "node_modules/lightningcss-darwin-arm64": {
2970
+ "version": "1.30.2",
2971
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.30.2.tgz",
2972
+ "integrity": "sha512-ylTcDJBN3Hp21TdhRT5zBOIi73P6/W0qwvlFEk22fkdXchtNTOU4Qc37SkzV+EKYxLouZ6M4LG9NfZ1qkhhBWA==",
2973
+ "cpu": [
2974
+ "arm64"
2975
+ ],
2976
+ "license": "MPL-2.0",
2977
+ "optional": true,
2978
+ "os": [
2979
+ "darwin"
2980
+ ],
2981
+ "engines": {
2982
+ "node": ">= 12.0.0"
2983
+ },
2984
+ "funding": {
2985
+ "type": "opencollective",
2986
+ "url": "https://opencollective.com/parcel"
2987
+ }
2988
+ },
2989
+ "node_modules/lightningcss-darwin-x64": {
2990
+ "version": "1.30.2",
2991
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.30.2.tgz",
2992
+ "integrity": "sha512-oBZgKchomuDYxr7ilwLcyms6BCyLn0z8J0+ZZmfpjwg9fRVZIR5/GMXd7r9RH94iDhld3UmSjBM6nXWM2TfZTQ==",
2993
+ "cpu": [
2994
+ "x64"
2995
+ ],
2996
+ "license": "MPL-2.0",
2997
+ "optional": true,
2998
+ "os": [
2999
+ "darwin"
3000
+ ],
3001
+ "engines": {
3002
+ "node": ">= 12.0.0"
3003
+ },
3004
+ "funding": {
3005
+ "type": "opencollective",
3006
+ "url": "https://opencollective.com/parcel"
3007
+ }
3008
+ },
3009
+ "node_modules/lightningcss-freebsd-x64": {
3010
+ "version": "1.30.2",
3011
+ "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.30.2.tgz",
3012
+ "integrity": "sha512-c2bH6xTrf4BDpK8MoGG4Bd6zAMZDAXS569UxCAGcA7IKbHNMlhGQ89eRmvpIUGfKWNVdbhSbkQaWhEoMGmGslA==",
3013
+ "cpu": [
3014
+ "x64"
3015
+ ],
3016
+ "license": "MPL-2.0",
3017
+ "optional": true,
3018
+ "os": [
3019
+ "freebsd"
3020
+ ],
3021
+ "engines": {
3022
+ "node": ">= 12.0.0"
3023
+ },
3024
+ "funding": {
3025
+ "type": "opencollective",
3026
+ "url": "https://opencollective.com/parcel"
3027
+ }
3028
+ },
3029
+ "node_modules/lightningcss-linux-arm-gnueabihf": {
3030
+ "version": "1.30.2",
3031
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.30.2.tgz",
3032
+ "integrity": "sha512-eVdpxh4wYcm0PofJIZVuYuLiqBIakQ9uFZmipf6LF/HRj5Bgm0eb3qL/mr1smyXIS1twwOxNWndd8z0E374hiA==",
3033
+ "cpu": [
3034
+ "arm"
3035
+ ],
3036
+ "license": "MPL-2.0",
3037
+ "optional": true,
3038
+ "os": [
3039
+ "linux"
3040
+ ],
3041
+ "engines": {
3042
+ "node": ">= 12.0.0"
3043
+ },
3044
+ "funding": {
3045
+ "type": "opencollective",
3046
+ "url": "https://opencollective.com/parcel"
3047
+ }
3048
+ },
3049
+ "node_modules/lightningcss-linux-arm64-gnu": {
3050
+ "version": "1.30.2",
3051
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.30.2.tgz",
3052
+ "integrity": "sha512-UK65WJAbwIJbiBFXpxrbTNArtfuznvxAJw4Q2ZGlU8kPeDIWEX1dg3rn2veBVUylA2Ezg89ktszWbaQnxD/e3A==",
3053
+ "cpu": [
3054
+ "arm64"
3055
+ ],
3056
+ "license": "MPL-2.0",
3057
+ "optional": true,
3058
+ "os": [
3059
+ "linux"
3060
+ ],
3061
+ "engines": {
3062
+ "node": ">= 12.0.0"
3063
+ },
3064
+ "funding": {
3065
+ "type": "opencollective",
3066
+ "url": "https://opencollective.com/parcel"
3067
+ }
3068
+ },
3069
+ "node_modules/lightningcss-linux-arm64-musl": {
3070
+ "version": "1.30.2",
3071
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.30.2.tgz",
3072
+ "integrity": "sha512-5Vh9dGeblpTxWHpOx8iauV02popZDsCYMPIgiuw97OJ5uaDsL86cnqSFs5LZkG3ghHoX5isLgWzMs+eD1YzrnA==",
3073
+ "cpu": [
3074
+ "arm64"
3075
+ ],
3076
+ "license": "MPL-2.0",
3077
+ "optional": true,
3078
+ "os": [
3079
+ "linux"
3080
+ ],
3081
+ "engines": {
3082
+ "node": ">= 12.0.0"
3083
+ },
3084
+ "funding": {
3085
+ "type": "opencollective",
3086
+ "url": "https://opencollective.com/parcel"
3087
+ }
3088
+ },
3089
+ "node_modules/lightningcss-linux-x64-gnu": {
3090
+ "version": "1.30.2",
3091
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.30.2.tgz",
3092
+ "integrity": "sha512-Cfd46gdmj1vQ+lR6VRTTadNHu6ALuw2pKR9lYq4FnhvgBc4zWY1EtZcAc6EffShbb1MFrIPfLDXD6Xprbnni4w==",
3093
+ "cpu": [
3094
+ "x64"
3095
+ ],
3096
+ "license": "MPL-2.0",
3097
+ "optional": true,
3098
+ "os": [
3099
+ "linux"
3100
+ ],
3101
+ "engines": {
3102
+ "node": ">= 12.0.0"
3103
+ },
3104
+ "funding": {
3105
+ "type": "opencollective",
3106
+ "url": "https://opencollective.com/parcel"
3107
+ }
3108
+ },
3109
+ "node_modules/lightningcss-linux-x64-musl": {
3110
+ "version": "1.30.2",
3111
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.30.2.tgz",
3112
+ "integrity": "sha512-XJaLUUFXb6/QG2lGIW6aIk6jKdtjtcffUT0NKvIqhSBY3hh9Ch+1LCeH80dR9q9LBjG3ewbDjnumefsLsP6aiA==",
3113
+ "cpu": [
3114
+ "x64"
3115
+ ],
3116
+ "license": "MPL-2.0",
3117
+ "optional": true,
3118
+ "os": [
3119
+ "linux"
3120
+ ],
3121
+ "engines": {
3122
+ "node": ">= 12.0.0"
3123
+ },
3124
+ "funding": {
3125
+ "type": "opencollective",
3126
+ "url": "https://opencollective.com/parcel"
3127
+ }
3128
+ },
3129
+ "node_modules/lightningcss-win32-arm64-msvc": {
3130
+ "version": "1.30.2",
3131
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.30.2.tgz",
3132
+ "integrity": "sha512-FZn+vaj7zLv//D/192WFFVA0RgHawIcHqLX9xuWiQt7P0PtdFEVaxgF9rjM/IRYHQXNnk61/H/gb2Ei+kUQ4xQ==",
3133
+ "cpu": [
3134
+ "arm64"
3135
+ ],
3136
+ "license": "MPL-2.0",
3137
+ "optional": true,
3138
+ "os": [
3139
+ "win32"
3140
+ ],
3141
+ "engines": {
3142
+ "node": ">= 12.0.0"
3143
+ },
3144
+ "funding": {
3145
+ "type": "opencollective",
3146
+ "url": "https://opencollective.com/parcel"
3147
+ }
3148
+ },
3149
+ "node_modules/lightningcss-win32-x64-msvc": {
3150
+ "version": "1.30.2",
3151
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.30.2.tgz",
3152
+ "integrity": "sha512-5g1yc73p+iAkid5phb4oVFMB45417DkRevRbt/El/gKXJk4jid+vPFF/AXbxn05Aky8PapwzZrdJShv5C0avjw==",
3153
+ "cpu": [
3154
+ "x64"
3155
+ ],
3156
+ "license": "MPL-2.0",
3157
+ "optional": true,
3158
+ "os": [
3159
+ "win32"
3160
+ ],
3161
+ "engines": {
3162
+ "node": ">= 12.0.0"
3163
+ },
3164
+ "funding": {
3165
+ "type": "opencollective",
3166
+ "url": "https://opencollective.com/parcel"
3167
+ }
3168
+ },
3169
+ "node_modules/locate-path": {
3170
+ "version": "6.0.0",
3171
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
3172
+ "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
3173
+ "dev": true,
3174
+ "license": "MIT",
3175
+ "dependencies": {
3176
+ "p-locate": "^5.0.0"
3177
+ },
3178
+ "engines": {
3179
+ "node": ">=10"
3180
+ },
3181
+ "funding": {
3182
+ "url": "https://github.com/sponsors/sindresorhus"
3183
+ }
3184
+ },
3185
+ "node_modules/lodash.merge": {
3186
+ "version": "4.6.2",
3187
+ "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
3188
+ "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==",
3189
+ "dev": true,
3190
+ "license": "MIT"
3191
+ },
3192
+ "node_modules/lru-cache": {
3193
+ "version": "5.1.1",
3194
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
3195
+ "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
3196
+ "dev": true,
3197
+ "license": "ISC",
3198
+ "dependencies": {
3199
+ "yallist": "^3.0.2"
3200
+ }
3201
+ },
3202
+ "node_modules/magic-string": {
3203
+ "version": "0.30.21",
3204
+ "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz",
3205
+ "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==",
3206
+ "license": "MIT",
3207
+ "dependencies": {
3208
+ "@jridgewell/sourcemap-codec": "^1.5.5"
3209
+ }
3210
+ },
3211
+ "node_modules/minimatch": {
3212
+ "version": "9.0.5",
3213
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
3214
+ "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
3215
+ "dev": true,
3216
+ "license": "ISC",
3217
+ "dependencies": {
3218
+ "brace-expansion": "^2.0.1"
3219
+ },
3220
+ "engines": {
3221
+ "node": ">=16 || 14 >=14.17"
3222
+ },
3223
+ "funding": {
3224
+ "url": "https://github.com/sponsors/isaacs"
3225
+ }
3226
+ },
3227
+ "node_modules/ms": {
3228
+ "version": "2.1.3",
3229
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
3230
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
3231
+ "dev": true,
3232
+ "license": "MIT"
3233
+ },
3234
+ "node_modules/nanoid": {
3235
+ "version": "3.3.11",
3236
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
3237
+ "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
3238
+ "funding": [
3239
+ {
3240
+ "type": "github",
3241
+ "url": "https://github.com/sponsors/ai"
3242
+ }
3243
+ ],
3244
+ "license": "MIT",
3245
+ "bin": {
3246
+ "nanoid": "bin/nanoid.cjs"
3247
+ },
3248
+ "engines": {
3249
+ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
3250
+ }
3251
+ },
3252
+ "node_modules/natural-compare": {
3253
+ "version": "1.4.0",
3254
+ "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
3255
+ "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==",
3256
+ "dev": true,
3257
+ "license": "MIT"
3258
+ },
3259
+ "node_modules/node-releases": {
3260
+ "version": "2.0.27",
3261
+ "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.27.tgz",
3262
+ "integrity": "sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==",
3263
+ "dev": true,
3264
+ "license": "MIT"
3265
+ },
3266
+ "node_modules/optionator": {
3267
+ "version": "0.9.4",
3268
+ "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz",
3269
+ "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==",
3270
+ "dev": true,
3271
+ "license": "MIT",
3272
+ "dependencies": {
3273
+ "deep-is": "^0.1.3",
3274
+ "fast-levenshtein": "^2.0.6",
3275
+ "levn": "^0.4.1",
3276
+ "prelude-ls": "^1.2.1",
3277
+ "type-check": "^0.4.0",
3278
+ "word-wrap": "^1.2.5"
3279
+ },
3280
+ "engines": {
3281
+ "node": ">= 0.8.0"
3282
+ }
3283
+ },
3284
+ "node_modules/p-limit": {
3285
+ "version": "3.1.0",
3286
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
3287
+ "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
3288
+ "dev": true,
3289
+ "license": "MIT",
3290
+ "dependencies": {
3291
+ "yocto-queue": "^0.1.0"
3292
+ },
3293
+ "engines": {
3294
+ "node": ">=10"
3295
+ },
3296
+ "funding": {
3297
+ "url": "https://github.com/sponsors/sindresorhus"
3298
+ }
3299
+ },
3300
+ "node_modules/p-locate": {
3301
+ "version": "5.0.0",
3302
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
3303
+ "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
3304
+ "dev": true,
3305
+ "license": "MIT",
3306
+ "dependencies": {
3307
+ "p-limit": "^3.0.2"
3308
+ },
3309
+ "engines": {
3310
+ "node": ">=10"
3311
+ },
3312
+ "funding": {
3313
+ "url": "https://github.com/sponsors/sindresorhus"
3314
+ }
3315
+ },
3316
+ "node_modules/parent-module": {
3317
+ "version": "1.0.1",
3318
+ "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
3319
+ "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
3320
+ "dev": true,
3321
+ "license": "MIT",
3322
+ "dependencies": {
3323
+ "callsites": "^3.0.0"
3324
+ },
3325
+ "engines": {
3326
+ "node": ">=6"
3327
+ }
3328
+ },
3329
+ "node_modules/path-exists": {
3330
+ "version": "4.0.0",
3331
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
3332
+ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
3333
+ "dev": true,
3334
+ "license": "MIT",
3335
+ "engines": {
3336
+ "node": ">=8"
3337
+ }
3338
+ },
3339
+ "node_modules/path-key": {
3340
+ "version": "3.1.1",
3341
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
3342
+ "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
3343
+ "dev": true,
3344
+ "license": "MIT",
3345
+ "engines": {
3346
+ "node": ">=8"
3347
+ }
3348
+ },
3349
+ "node_modules/picocolors": {
3350
+ "version": "1.1.1",
3351
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
3352
+ "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
3353
+ "license": "ISC"
3354
+ },
3355
+ "node_modules/picomatch": {
3356
+ "version": "4.0.3",
3357
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz",
3358
+ "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==",
3359
+ "license": "MIT",
3360
+ "peer": true,
3361
+ "engines": {
3362
+ "node": ">=12"
3363
+ },
3364
+ "funding": {
3365
+ "url": "https://github.com/sponsors/jonschlinkert"
3366
+ }
3367
+ },
3368
+ "node_modules/postcss": {
3369
+ "version": "8.5.6",
3370
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz",
3371
+ "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==",
3372
+ "funding": [
3373
+ {
3374
+ "type": "opencollective",
3375
+ "url": "https://opencollective.com/postcss/"
3376
+ },
3377
+ {
3378
+ "type": "tidelift",
3379
+ "url": "https://tidelift.com/funding/github/npm/postcss"
3380
+ },
3381
+ {
3382
+ "type": "github",
3383
+ "url": "https://github.com/sponsors/ai"
3384
+ }
3385
+ ],
3386
+ "license": "MIT",
3387
+ "dependencies": {
3388
+ "nanoid": "^3.3.11",
3389
+ "picocolors": "^1.1.1",
3390
+ "source-map-js": "^1.2.1"
3391
+ },
3392
+ "engines": {
3393
+ "node": "^10 || ^12 || >=14"
3394
+ }
3395
+ },
3396
+ "node_modules/prelude-ls": {
3397
+ "version": "1.2.1",
3398
+ "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",
3399
+ "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
3400
+ "dev": true,
3401
+ "license": "MIT",
3402
+ "engines": {
3403
+ "node": ">= 0.8.0"
3404
+ }
3405
+ },
3406
+ "node_modules/punycode": {
3407
+ "version": "2.3.1",
3408
+ "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
3409
+ "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
3410
+ "dev": true,
3411
+ "license": "MIT",
3412
+ "engines": {
3413
+ "node": ">=6"
3414
+ }
3415
+ },
3416
+ "node_modules/react": {
3417
+ "version": "19.2.3",
3418
+ "resolved": "https://registry.npmjs.org/react/-/react-19.2.3.tgz",
3419
+ "integrity": "sha512-Ku/hhYbVjOQnXDZFv2+RibmLFGwFdeeKHFcOTlrt7xplBnya5OGn/hIRDsqDiSUcfORsDC7MPxwork8jBwsIWA==",
3420
+ "license": "MIT",
3421
+ "peer": true,
3422
+ "engines": {
3423
+ "node": ">=0.10.0"
3424
+ }
3425
+ },
3426
+ "node_modules/react-dom": {
3427
+ "version": "19.2.3",
3428
+ "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.3.tgz",
3429
+ "integrity": "sha512-yELu4WmLPw5Mr/lmeEpox5rw3RETacE++JgHqQzd2dg+YbJuat3jH4ingc+WPZhxaoFzdv9y33G+F7Nl5O0GBg==",
3430
+ "license": "MIT",
3431
+ "dependencies": {
3432
+ "scheduler": "^0.27.0"
3433
+ },
3434
+ "peerDependencies": {
3435
+ "react": "^19.2.3"
3436
+ }
3437
+ },
3438
+ "node_modules/react-refresh": {
3439
+ "version": "0.18.0",
3440
+ "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.18.0.tgz",
3441
+ "integrity": "sha512-QgT5//D3jfjJb6Gsjxv0Slpj23ip+HtOpnNgnb2S5zU3CB26G/IDPGoy4RJB42wzFE46DRsstbW6tKHoKbhAxw==",
3442
+ "dev": true,
3443
+ "license": "MIT",
3444
+ "engines": {
3445
+ "node": ">=0.10.0"
3446
+ }
3447
+ },
3448
+ "node_modules/resolve-from": {
3449
+ "version": "4.0.0",
3450
+ "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
3451
+ "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
3452
+ "dev": true,
3453
+ "license": "MIT",
3454
+ "engines": {
3455
+ "node": ">=4"
3456
+ }
3457
+ },
3458
+ "node_modules/rollup": {
3459
+ "version": "4.54.0",
3460
+ "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.54.0.tgz",
3461
+ "integrity": "sha512-3nk8Y3a9Ea8szgKhinMlGMhGMw89mqule3KWczxhIzqudyHdCIOHw8WJlj/r329fACjKLEh13ZSk7oE22kyeIw==",
3462
+ "license": "MIT",
3463
+ "dependencies": {
3464
+ "@types/estree": "1.0.8"
3465
+ },
3466
+ "bin": {
3467
+ "rollup": "dist/bin/rollup"
3468
+ },
3469
+ "engines": {
3470
+ "node": ">=18.0.0",
3471
+ "npm": ">=8.0.0"
3472
+ },
3473
+ "optionalDependencies": {
3474
+ "@rollup/rollup-android-arm-eabi": "4.54.0",
3475
+ "@rollup/rollup-android-arm64": "4.54.0",
3476
+ "@rollup/rollup-darwin-arm64": "4.54.0",
3477
+ "@rollup/rollup-darwin-x64": "4.54.0",
3478
+ "@rollup/rollup-freebsd-arm64": "4.54.0",
3479
+ "@rollup/rollup-freebsd-x64": "4.54.0",
3480
+ "@rollup/rollup-linux-arm-gnueabihf": "4.54.0",
3481
+ "@rollup/rollup-linux-arm-musleabihf": "4.54.0",
3482
+ "@rollup/rollup-linux-arm64-gnu": "4.54.0",
3483
+ "@rollup/rollup-linux-arm64-musl": "4.54.0",
3484
+ "@rollup/rollup-linux-loong64-gnu": "4.54.0",
3485
+ "@rollup/rollup-linux-ppc64-gnu": "4.54.0",
3486
+ "@rollup/rollup-linux-riscv64-gnu": "4.54.0",
3487
+ "@rollup/rollup-linux-riscv64-musl": "4.54.0",
3488
+ "@rollup/rollup-linux-s390x-gnu": "4.54.0",
3489
+ "@rollup/rollup-linux-x64-gnu": "4.54.0",
3490
+ "@rollup/rollup-linux-x64-musl": "4.54.0",
3491
+ "@rollup/rollup-openharmony-arm64": "4.54.0",
3492
+ "@rollup/rollup-win32-arm64-msvc": "4.54.0",
3493
+ "@rollup/rollup-win32-ia32-msvc": "4.54.0",
3494
+ "@rollup/rollup-win32-x64-gnu": "4.54.0",
3495
+ "@rollup/rollup-win32-x64-msvc": "4.54.0",
3496
+ "fsevents": "~2.3.2"
3497
+ }
3498
+ },
3499
+ "node_modules/scheduler": {
3500
+ "version": "0.27.0",
3501
+ "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz",
3502
+ "integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==",
3503
+ "license": "MIT"
3504
+ },
3505
+ "node_modules/semver": {
3506
+ "version": "7.7.3",
3507
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz",
3508
+ "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==",
3509
+ "dev": true,
3510
+ "license": "ISC",
3511
+ "bin": {
3512
+ "semver": "bin/semver.js"
3513
+ },
3514
+ "engines": {
3515
+ "node": ">=10"
3516
+ }
3517
+ },
3518
+ "node_modules/shebang-command": {
3519
+ "version": "2.0.0",
3520
+ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
3521
+ "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
3522
+ "dev": true,
3523
+ "license": "MIT",
3524
+ "dependencies": {
3525
+ "shebang-regex": "^3.0.0"
3526
+ },
3527
+ "engines": {
3528
+ "node": ">=8"
3529
+ }
3530
+ },
3531
+ "node_modules/shebang-regex": {
3532
+ "version": "3.0.0",
3533
+ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
3534
+ "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
3535
+ "dev": true,
3536
+ "license": "MIT",
3537
+ "engines": {
3538
+ "node": ">=8"
3539
+ }
3540
+ },
3541
+ "node_modules/source-map-js": {
3542
+ "version": "1.2.1",
3543
+ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
3544
+ "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
3545
+ "license": "BSD-3-Clause",
3546
+ "engines": {
3547
+ "node": ">=0.10.0"
3548
+ }
3549
+ },
3550
+ "node_modules/strip-json-comments": {
3551
+ "version": "3.1.1",
3552
+ "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
3553
+ "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
3554
+ "dev": true,
3555
+ "license": "MIT",
3556
+ "engines": {
3557
+ "node": ">=8"
3558
+ },
3559
+ "funding": {
3560
+ "url": "https://github.com/sponsors/sindresorhus"
3561
+ }
3562
+ },
3563
+ "node_modules/supports-color": {
3564
+ "version": "7.2.0",
3565
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
3566
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
3567
+ "dev": true,
3568
+ "license": "MIT",
3569
+ "dependencies": {
3570
+ "has-flag": "^4.0.0"
3571
+ },
3572
+ "engines": {
3573
+ "node": ">=8"
3574
+ }
3575
+ },
3576
+ "node_modules/tailwindcss": {
3577
+ "version": "4.1.18",
3578
+ "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.1.18.tgz",
3579
+ "integrity": "sha512-4+Z+0yiYyEtUVCScyfHCxOYP06L5Ne+JiHhY2IjR2KWMIWhJOYZKLSGZaP5HkZ8+bY0cxfzwDE5uOmzFXyIwxw==",
3580
+ "license": "MIT"
3581
+ },
3582
+ "node_modules/tapable": {
3583
+ "version": "2.3.0",
3584
+ "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.0.tgz",
3585
+ "integrity": "sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==",
3586
+ "license": "MIT",
3587
+ "engines": {
3588
+ "node": ">=6"
3589
+ },
3590
+ "funding": {
3591
+ "type": "opencollective",
3592
+ "url": "https://opencollective.com/webpack"
3593
+ }
3594
+ },
3595
+ "node_modules/tinyglobby": {
3596
+ "version": "0.2.15",
3597
+ "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz",
3598
+ "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==",
3599
+ "license": "MIT",
3600
+ "dependencies": {
3601
+ "fdir": "^6.5.0",
3602
+ "picomatch": "^4.0.3"
3603
+ },
3604
+ "engines": {
3605
+ "node": ">=12.0.0"
3606
+ },
3607
+ "funding": {
3608
+ "url": "https://github.com/sponsors/SuperchupuDev"
3609
+ }
3610
+ },
3611
+ "node_modules/ts-api-utils": {
3612
+ "version": "2.4.0",
3613
+ "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.4.0.tgz",
3614
+ "integrity": "sha512-3TaVTaAv2gTiMB35i3FiGJaRfwb3Pyn/j3m/bfAvGe8FB7CF6u+LMYqYlDh7reQf7UNvoTvdfAqHGmPGOSsPmA==",
3615
+ "dev": true,
3616
+ "license": "MIT",
3617
+ "engines": {
3618
+ "node": ">=18.12"
3619
+ },
3620
+ "peerDependencies": {
3621
+ "typescript": ">=4.8.4"
3622
+ }
3623
+ },
3624
+ "node_modules/type-check": {
3625
+ "version": "0.4.0",
3626
+ "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
3627
+ "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
3628
+ "dev": true,
3629
+ "license": "MIT",
3630
+ "dependencies": {
3631
+ "prelude-ls": "^1.2.1"
3632
+ },
3633
+ "engines": {
3634
+ "node": ">= 0.8.0"
3635
+ }
3636
+ },
3637
+ "node_modules/typescript": {
3638
+ "version": "5.9.3",
3639
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
3640
+ "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
3641
+ "dev": true,
3642
+ "license": "Apache-2.0",
3643
+ "peer": true,
3644
+ "bin": {
3645
+ "tsc": "bin/tsc",
3646
+ "tsserver": "bin/tsserver"
3647
+ },
3648
+ "engines": {
3649
+ "node": ">=14.17"
3650
+ }
3651
+ },
3652
+ "node_modules/typescript-eslint": {
3653
+ "version": "8.51.0",
3654
+ "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.51.0.tgz",
3655
+ "integrity": "sha512-jh8ZuM5oEh2PSdyQG9YAEM1TCGuWenLSuSUhf/irbVUNW9O5FhbFVONviN2TgMTBnUmyHv7E56rYnfLZK6TkiA==",
3656
+ "dev": true,
3657
+ "license": "MIT",
3658
+ "dependencies": {
3659
+ "@typescript-eslint/eslint-plugin": "8.51.0",
3660
+ "@typescript-eslint/parser": "8.51.0",
3661
+ "@typescript-eslint/typescript-estree": "8.51.0",
3662
+ "@typescript-eslint/utils": "8.51.0"
3663
+ },
3664
+ "engines": {
3665
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
3666
+ },
3667
+ "funding": {
3668
+ "type": "opencollective",
3669
+ "url": "https://opencollective.com/typescript-eslint"
3670
+ },
3671
+ "peerDependencies": {
3672
+ "eslint": "^8.57.0 || ^9.0.0",
3673
+ "typescript": ">=4.8.4 <6.0.0"
3674
+ }
3675
+ },
3676
+ "node_modules/undici-types": {
3677
+ "version": "7.16.0",
3678
+ "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz",
3679
+ "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==",
3680
+ "devOptional": true,
3681
+ "license": "MIT"
3682
+ },
3683
+ "node_modules/update-browserslist-db": {
3684
+ "version": "1.2.3",
3685
+ "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz",
3686
+ "integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==",
3687
+ "dev": true,
3688
+ "funding": [
3689
+ {
3690
+ "type": "opencollective",
3691
+ "url": "https://opencollective.com/browserslist"
3692
+ },
3693
+ {
3694
+ "type": "tidelift",
3695
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
3696
+ },
3697
+ {
3698
+ "type": "github",
3699
+ "url": "https://github.com/sponsors/ai"
3700
+ }
3701
+ ],
3702
+ "license": "MIT",
3703
+ "dependencies": {
3704
+ "escalade": "^3.2.0",
3705
+ "picocolors": "^1.1.1"
3706
+ },
3707
+ "bin": {
3708
+ "update-browserslist-db": "cli.js"
3709
+ },
3710
+ "peerDependencies": {
3711
+ "browserslist": ">= 4.21.0"
3712
+ }
3713
+ },
3714
+ "node_modules/uri-js": {
3715
+ "version": "4.4.1",
3716
+ "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
3717
+ "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
3718
+ "dev": true,
3719
+ "license": "BSD-2-Clause",
3720
+ "dependencies": {
3721
+ "punycode": "^2.1.0"
3722
+ }
3723
+ },
3724
+ "node_modules/vite": {
3725
+ "version": "7.3.0",
3726
+ "resolved": "https://registry.npmjs.org/vite/-/vite-7.3.0.tgz",
3727
+ "integrity": "sha512-dZwN5L1VlUBewiP6H9s2+B3e3Jg96D0vzN+Ry73sOefebhYr9f94wwkMNN/9ouoU8pV1BqA1d1zGk8928cx0rg==",
3728
+ "license": "MIT",
3729
+ "peer": true,
3730
+ "dependencies": {
3731
+ "esbuild": "^0.27.0",
3732
+ "fdir": "^6.5.0",
3733
+ "picomatch": "^4.0.3",
3734
+ "postcss": "^8.5.6",
3735
+ "rollup": "^4.43.0",
3736
+ "tinyglobby": "^0.2.15"
3737
+ },
3738
+ "bin": {
3739
+ "vite": "bin/vite.js"
3740
+ },
3741
+ "engines": {
3742
+ "node": "^20.19.0 || >=22.12.0"
3743
+ },
3744
+ "funding": {
3745
+ "url": "https://github.com/vitejs/vite?sponsor=1"
3746
+ },
3747
+ "optionalDependencies": {
3748
+ "fsevents": "~2.3.3"
3749
+ },
3750
+ "peerDependencies": {
3751
+ "@types/node": "^20.19.0 || >=22.12.0",
3752
+ "jiti": ">=1.21.0",
3753
+ "less": "^4.0.0",
3754
+ "lightningcss": "^1.21.0",
3755
+ "sass": "^1.70.0",
3756
+ "sass-embedded": "^1.70.0",
3757
+ "stylus": ">=0.54.8",
3758
+ "sugarss": "^5.0.0",
3759
+ "terser": "^5.16.0",
3760
+ "tsx": "^4.8.1",
3761
+ "yaml": "^2.4.2"
3762
+ },
3763
+ "peerDependenciesMeta": {
3764
+ "@types/node": {
3765
+ "optional": true
3766
+ },
3767
+ "jiti": {
3768
+ "optional": true
3769
+ },
3770
+ "less": {
3771
+ "optional": true
3772
+ },
3773
+ "lightningcss": {
3774
+ "optional": true
3775
+ },
3776
+ "sass": {
3777
+ "optional": true
3778
+ },
3779
+ "sass-embedded": {
3780
+ "optional": true
3781
+ },
3782
+ "stylus": {
3783
+ "optional": true
3784
+ },
3785
+ "sugarss": {
3786
+ "optional": true
3787
+ },
3788
+ "terser": {
3789
+ "optional": true
3790
+ },
3791
+ "tsx": {
3792
+ "optional": true
3793
+ },
3794
+ "yaml": {
3795
+ "optional": true
3796
+ }
3797
+ }
3798
+ },
3799
+ "node_modules/which": {
3800
+ "version": "2.0.2",
3801
+ "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
3802
+ "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
3803
+ "dev": true,
3804
+ "license": "ISC",
3805
+ "dependencies": {
3806
+ "isexe": "^2.0.0"
3807
+ },
3808
+ "bin": {
3809
+ "node-which": "bin/node-which"
3810
+ },
3811
+ "engines": {
3812
+ "node": ">= 8"
3813
+ }
3814
+ },
3815
+ "node_modules/word-wrap": {
3816
+ "version": "1.2.5",
3817
+ "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz",
3818
+ "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==",
3819
+ "dev": true,
3820
+ "license": "MIT",
3821
+ "engines": {
3822
+ "node": ">=0.10.0"
3823
+ }
3824
+ },
3825
+ "node_modules/yallist": {
3826
+ "version": "3.1.1",
3827
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
3828
+ "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
3829
+ "dev": true,
3830
+ "license": "ISC"
3831
+ },
3832
+ "node_modules/yocto-queue": {
3833
+ "version": "0.1.0",
3834
+ "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
3835
+ "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
3836
+ "dev": true,
3837
+ "license": "MIT",
3838
+ "engines": {
3839
+ "node": ">=10"
3840
+ },
3841
+ "funding": {
3842
+ "url": "https://github.com/sponsors/sindresorhus"
3843
+ }
3844
+ },
3845
+ "node_modules/zod": {
3846
+ "version": "4.3.5",
3847
+ "resolved": "https://registry.npmjs.org/zod/-/zod-4.3.5.tgz",
3848
+ "integrity": "sha512-k7Nwx6vuWx1IJ9Bjuf4Zt1PEllcwe7cls3VNzm4CQ1/hgtFUK2bRNG3rvnpPUhFjmqJKAKtjV576KnUkHocg/g==",
3849
+ "license": "MIT",
3850
+ "peer": true,
3851
+ "funding": {
3852
+ "url": "https://github.com/sponsors/colinhacks"
3853
+ }
3854
+ },
3855
+ "node_modules/zod-validation-error": {
3856
+ "version": "4.0.2",
3857
+ "resolved": "https://registry.npmjs.org/zod-validation-error/-/zod-validation-error-4.0.2.tgz",
3858
+ "integrity": "sha512-Q6/nZLe6jxuU80qb/4uJ4t5v2VEZ44lzQjPDhYJNztRQ4wyWc6VF3D3Kb/fAuPetZQnhS3hnajCf9CsWesghLQ==",
3859
+ "dev": true,
3860
+ "license": "MIT",
3861
+ "engines": {
3862
+ "node": ">=18.0.0"
3863
+ },
3864
+ "peerDependencies": {
3865
+ "zod": "^3.25.0 || ^4.0.0"
3866
+ }
3867
+ },
3868
+ "node_modules/zustand": {
3869
+ "version": "5.0.9",
3870
+ "resolved": "https://registry.npmjs.org/zustand/-/zustand-5.0.9.tgz",
3871
+ "integrity": "sha512-ALBtUj0AfjJt3uNRQoL1tL2tMvj6Gp/6e39dnfT6uzpelGru8v1tPOGBzayOWbPJvujM8JojDk3E1LxeFisBNg==",
3872
+ "license": "MIT",
3873
+ "engines": {
3874
+ "node": ">=12.20.0"
3875
+ },
3876
+ "peerDependencies": {
3877
+ "@types/react": ">=18.0.0",
3878
+ "immer": ">=9.0.6",
3879
+ "react": ">=18.0.0",
3880
+ "use-sync-external-store": ">=1.2.0"
3881
+ },
3882
+ "peerDependenciesMeta": {
3883
+ "@types/react": {
3884
+ "optional": true
3885
+ },
3886
+ "immer": {
3887
+ "optional": true
3888
+ },
3889
+ "react": {
3890
+ "optional": true
3891
+ },
3892
+ "use-sync-external-store": {
3893
+ "optional": true
3894
+ }
3895
+ }
3896
+ }
3897
+ }
3898
+ }