ostroner 1.0.0

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