ray-finance 0.2.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 (128) hide show
  1. package/.claude/settings.local.json +16 -0
  2. package/.env.example +13 -0
  3. package/.github/ISSUE_TEMPLATE/bug_report.md +19 -0
  4. package/.github/ISSUE_TEMPLATE/feature_request.md +9 -0
  5. package/.github/PULL_REQUEST_TEMPLATE.md +5 -0
  6. package/.github/workflows/ci.yml +21 -0
  7. package/CHANGELOG.md +16 -0
  8. package/CODE_OF_CONDUCT.md +31 -0
  9. package/CONTRIBUTING.md +41 -0
  10. package/Dockerfile +8 -0
  11. package/LICENSE +21 -0
  12. package/README.md +168 -0
  13. package/SECURITY.md +36 -0
  14. package/SPEC.md +374 -0
  15. package/dist/ai/agent.d.ts +2 -0
  16. package/dist/ai/agent.js +80 -0
  17. package/dist/ai/audit.d.ts +3 -0
  18. package/dist/ai/audit.js +6 -0
  19. package/dist/ai/context.d.ts +6 -0
  20. package/dist/ai/context.js +89 -0
  21. package/dist/ai/insights.d.ts +3 -0
  22. package/dist/ai/insights.js +378 -0
  23. package/dist/ai/memory.d.ts +14 -0
  24. package/dist/ai/memory.js +12 -0
  25. package/dist/ai/redactor.d.ts +2 -0
  26. package/dist/ai/redactor.js +92 -0
  27. package/dist/ai/system-prompt.d.ts +2 -0
  28. package/dist/ai/system-prompt.js +85 -0
  29. package/dist/ai/tools.d.ts +4 -0
  30. package/dist/ai/tools.js +695 -0
  31. package/dist/alerts/index.d.ts +11 -0
  32. package/dist/alerts/index.js +95 -0
  33. package/dist/auth/anthropic.d.ts +7 -0
  34. package/dist/auth/anthropic.js +85 -0
  35. package/dist/auth/pkce.d.ts +5 -0
  36. package/dist/auth/pkce.js +10 -0
  37. package/dist/auth/store.d.ts +12 -0
  38. package/dist/auth/store.js +51 -0
  39. package/dist/cli/backup.d.ts +2 -0
  40. package/dist/cli/backup.js +85 -0
  41. package/dist/cli/chat.d.ts +1 -0
  42. package/dist/cli/chat.js +97 -0
  43. package/dist/cli/commands.d.ts +13 -0
  44. package/dist/cli/commands.js +201 -0
  45. package/dist/cli/format.d.ts +12 -0
  46. package/dist/cli/format.js +119 -0
  47. package/dist/cli/index.d.ts +2 -0
  48. package/dist/cli/index.js +176 -0
  49. package/dist/cli/scheduler.d.ts +2 -0
  50. package/dist/cli/scheduler.js +114 -0
  51. package/dist/cli/setup.d.ts +1 -0
  52. package/dist/cli/setup.js +168 -0
  53. package/dist/config.d.ts +22 -0
  54. package/dist/config.js +60 -0
  55. package/dist/daily-sync.d.ts +7 -0
  56. package/dist/daily-sync.js +94 -0
  57. package/dist/db/connection.d.ts +5 -0
  58. package/dist/db/connection.js +37 -0
  59. package/dist/db/encryption.d.ts +3 -0
  60. package/dist/db/encryption.js +24 -0
  61. package/dist/db/helpers.d.ts +16 -0
  62. package/dist/db/helpers.js +45 -0
  63. package/dist/db/schema.d.ts +2 -0
  64. package/dist/db/schema.js +194 -0
  65. package/dist/index.d.ts +1 -0
  66. package/dist/index.js +1 -0
  67. package/dist/plaid/client.d.ts +2 -0
  68. package/dist/plaid/client.js +22 -0
  69. package/dist/plaid/link.d.ts +8 -0
  70. package/dist/plaid/link.js +23 -0
  71. package/dist/plaid/sync.d.ts +18 -0
  72. package/dist/plaid/sync.js +186 -0
  73. package/dist/public/link.html +161 -0
  74. package/dist/queries/index.d.ts +163 -0
  75. package/dist/queries/index.js +411 -0
  76. package/dist/scoring/index.d.ts +53 -0
  77. package/dist/scoring/index.js +375 -0
  78. package/dist/server.d.ts +7 -0
  79. package/dist/server.js +140 -0
  80. package/docker-compose.yml +9 -0
  81. package/package.json +55 -0
  82. package/site/next-env.d.ts +6 -0
  83. package/site/next.config.ts +7 -0
  84. package/site/package-lock.json +1661 -0
  85. package/site/package.json +24 -0
  86. package/site/postcss.config.mjs +7 -0
  87. package/site/public/favicon.png +0 -0
  88. package/site/public/ray-og.jpg +0 -0
  89. package/site/public/robots.txt +4 -0
  90. package/site/public/sitemap.xml +8 -0
  91. package/site/src/app/copy-command.tsx +30 -0
  92. package/site/src/app/globals.css +87 -0
  93. package/site/src/app/layout.tsx +64 -0
  94. package/site/src/app/page.tsx +841 -0
  95. package/site/src/app/pii-scramble.tsx +190 -0
  96. package/site/src/app/reveal.tsx +29 -0
  97. package/site/tsconfig.json +21 -0
  98. package/src/ai/agent.ts +106 -0
  99. package/src/ai/audit.ts +11 -0
  100. package/src/ai/context.ts +93 -0
  101. package/src/ai/insights.ts +474 -0
  102. package/src/ai/memory.ts +21 -0
  103. package/src/ai/redactor.ts +102 -0
  104. package/src/ai/system-prompt.ts +90 -0
  105. package/src/ai/tools.ts +716 -0
  106. package/src/alerts/index.ts +123 -0
  107. package/src/cli/backup.ts +113 -0
  108. package/src/cli/chat.ts +105 -0
  109. package/src/cli/commands.ts +240 -0
  110. package/src/cli/format.ts +149 -0
  111. package/src/cli/index.ts +193 -0
  112. package/src/cli/scheduler.ts +116 -0
  113. package/src/cli/setup.ts +189 -0
  114. package/src/config.ts +81 -0
  115. package/src/daily-sync.ts +155 -0
  116. package/src/db/connection.ts +38 -0
  117. package/src/db/encryption.ts +29 -0
  118. package/src/db/helpers.ts +47 -0
  119. package/src/db/schema.ts +196 -0
  120. package/src/index.ts +3 -0
  121. package/src/plaid/client.ts +25 -0
  122. package/src/plaid/link.ts +25 -0
  123. package/src/plaid/sync.ts +219 -0
  124. package/src/public/link.html +161 -0
  125. package/src/queries/index.ts +586 -0
  126. package/src/scoring/index.ts +468 -0
  127. package/src/server.ts +162 -0
  128. package/tsconfig.json +16 -0
@@ -0,0 +1,1661 @@
1
+ {
2
+ "name": "ray-finance-site",
3
+ "version": "0.1.0",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "ray-finance-site",
9
+ "version": "0.1.0",
10
+ "dependencies": {
11
+ "geist": "^1.7.0",
12
+ "next": "^15.1.0",
13
+ "react": "^19.0.0",
14
+ "react-dom": "^19.0.0"
15
+ },
16
+ "devDependencies": {
17
+ "@tailwindcss/postcss": "^4.0.0",
18
+ "@types/node": "^22.0.0",
19
+ "@types/react": "^19.0.0",
20
+ "@types/react-dom": "^19.0.0",
21
+ "tailwindcss": "^4.0.0",
22
+ "typescript": "^5.7.0"
23
+ }
24
+ },
25
+ "node_modules/@alloc/quick-lru": {
26
+ "version": "5.2.0",
27
+ "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz",
28
+ "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==",
29
+ "dev": true,
30
+ "license": "MIT",
31
+ "engines": {
32
+ "node": ">=10"
33
+ },
34
+ "funding": {
35
+ "url": "https://github.com/sponsors/sindresorhus"
36
+ }
37
+ },
38
+ "node_modules/@emnapi/runtime": {
39
+ "version": "1.8.1",
40
+ "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.8.1.tgz",
41
+ "integrity": "sha512-mehfKSMWjjNol8659Z8KxEMrdSJDDot5SXMq00dM8BN4o+CLNXQ0xH2V7EchNHV4RmbZLmmPdEaXZc5H2FXmDg==",
42
+ "license": "MIT",
43
+ "optional": true,
44
+ "dependencies": {
45
+ "tslib": "^2.4.0"
46
+ }
47
+ },
48
+ "node_modules/@img/colour": {
49
+ "version": "1.1.0",
50
+ "resolved": "https://registry.npmjs.org/@img/colour/-/colour-1.1.0.tgz",
51
+ "integrity": "sha512-Td76q7j57o/tLVdgS746cYARfSyxk8iEfRxewL9h4OMzYhbW4TAcppl0mT4eyqXddh6L/jwoM75mo7ixa/pCeQ==",
52
+ "license": "MIT",
53
+ "optional": true,
54
+ "engines": {
55
+ "node": ">=18"
56
+ }
57
+ },
58
+ "node_modules/@img/sharp-darwin-arm64": {
59
+ "version": "0.34.5",
60
+ "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.34.5.tgz",
61
+ "integrity": "sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==",
62
+ "cpu": [
63
+ "arm64"
64
+ ],
65
+ "license": "Apache-2.0",
66
+ "optional": true,
67
+ "os": [
68
+ "darwin"
69
+ ],
70
+ "engines": {
71
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
72
+ },
73
+ "funding": {
74
+ "url": "https://opencollective.com/libvips"
75
+ },
76
+ "optionalDependencies": {
77
+ "@img/sharp-libvips-darwin-arm64": "1.2.4"
78
+ }
79
+ },
80
+ "node_modules/@img/sharp-darwin-x64": {
81
+ "version": "0.34.5",
82
+ "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.34.5.tgz",
83
+ "integrity": "sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==",
84
+ "cpu": [
85
+ "x64"
86
+ ],
87
+ "license": "Apache-2.0",
88
+ "optional": true,
89
+ "os": [
90
+ "darwin"
91
+ ],
92
+ "engines": {
93
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
94
+ },
95
+ "funding": {
96
+ "url": "https://opencollective.com/libvips"
97
+ },
98
+ "optionalDependencies": {
99
+ "@img/sharp-libvips-darwin-x64": "1.2.4"
100
+ }
101
+ },
102
+ "node_modules/@img/sharp-libvips-darwin-arm64": {
103
+ "version": "1.2.4",
104
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.2.4.tgz",
105
+ "integrity": "sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==",
106
+ "cpu": [
107
+ "arm64"
108
+ ],
109
+ "license": "LGPL-3.0-or-later",
110
+ "optional": true,
111
+ "os": [
112
+ "darwin"
113
+ ],
114
+ "funding": {
115
+ "url": "https://opencollective.com/libvips"
116
+ }
117
+ },
118
+ "node_modules/@img/sharp-libvips-darwin-x64": {
119
+ "version": "1.2.4",
120
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.2.4.tgz",
121
+ "integrity": "sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==",
122
+ "cpu": [
123
+ "x64"
124
+ ],
125
+ "license": "LGPL-3.0-or-later",
126
+ "optional": true,
127
+ "os": [
128
+ "darwin"
129
+ ],
130
+ "funding": {
131
+ "url": "https://opencollective.com/libvips"
132
+ }
133
+ },
134
+ "node_modules/@img/sharp-libvips-linux-arm": {
135
+ "version": "1.2.4",
136
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.2.4.tgz",
137
+ "integrity": "sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==",
138
+ "cpu": [
139
+ "arm"
140
+ ],
141
+ "license": "LGPL-3.0-or-later",
142
+ "optional": true,
143
+ "os": [
144
+ "linux"
145
+ ],
146
+ "funding": {
147
+ "url": "https://opencollective.com/libvips"
148
+ }
149
+ },
150
+ "node_modules/@img/sharp-libvips-linux-arm64": {
151
+ "version": "1.2.4",
152
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.2.4.tgz",
153
+ "integrity": "sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==",
154
+ "cpu": [
155
+ "arm64"
156
+ ],
157
+ "license": "LGPL-3.0-or-later",
158
+ "optional": true,
159
+ "os": [
160
+ "linux"
161
+ ],
162
+ "funding": {
163
+ "url": "https://opencollective.com/libvips"
164
+ }
165
+ },
166
+ "node_modules/@img/sharp-libvips-linux-ppc64": {
167
+ "version": "1.2.4",
168
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-ppc64/-/sharp-libvips-linux-ppc64-1.2.4.tgz",
169
+ "integrity": "sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==",
170
+ "cpu": [
171
+ "ppc64"
172
+ ],
173
+ "license": "LGPL-3.0-or-later",
174
+ "optional": true,
175
+ "os": [
176
+ "linux"
177
+ ],
178
+ "funding": {
179
+ "url": "https://opencollective.com/libvips"
180
+ }
181
+ },
182
+ "node_modules/@img/sharp-libvips-linux-riscv64": {
183
+ "version": "1.2.4",
184
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-riscv64/-/sharp-libvips-linux-riscv64-1.2.4.tgz",
185
+ "integrity": "sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==",
186
+ "cpu": [
187
+ "riscv64"
188
+ ],
189
+ "license": "LGPL-3.0-or-later",
190
+ "optional": true,
191
+ "os": [
192
+ "linux"
193
+ ],
194
+ "funding": {
195
+ "url": "https://opencollective.com/libvips"
196
+ }
197
+ },
198
+ "node_modules/@img/sharp-libvips-linux-s390x": {
199
+ "version": "1.2.4",
200
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.2.4.tgz",
201
+ "integrity": "sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==",
202
+ "cpu": [
203
+ "s390x"
204
+ ],
205
+ "license": "LGPL-3.0-or-later",
206
+ "optional": true,
207
+ "os": [
208
+ "linux"
209
+ ],
210
+ "funding": {
211
+ "url": "https://opencollective.com/libvips"
212
+ }
213
+ },
214
+ "node_modules/@img/sharp-libvips-linux-x64": {
215
+ "version": "1.2.4",
216
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.2.4.tgz",
217
+ "integrity": "sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==",
218
+ "cpu": [
219
+ "x64"
220
+ ],
221
+ "license": "LGPL-3.0-or-later",
222
+ "optional": true,
223
+ "os": [
224
+ "linux"
225
+ ],
226
+ "funding": {
227
+ "url": "https://opencollective.com/libvips"
228
+ }
229
+ },
230
+ "node_modules/@img/sharp-libvips-linuxmusl-arm64": {
231
+ "version": "1.2.4",
232
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.2.4.tgz",
233
+ "integrity": "sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==",
234
+ "cpu": [
235
+ "arm64"
236
+ ],
237
+ "license": "LGPL-3.0-or-later",
238
+ "optional": true,
239
+ "os": [
240
+ "linux"
241
+ ],
242
+ "funding": {
243
+ "url": "https://opencollective.com/libvips"
244
+ }
245
+ },
246
+ "node_modules/@img/sharp-libvips-linuxmusl-x64": {
247
+ "version": "1.2.4",
248
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.2.4.tgz",
249
+ "integrity": "sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==",
250
+ "cpu": [
251
+ "x64"
252
+ ],
253
+ "license": "LGPL-3.0-or-later",
254
+ "optional": true,
255
+ "os": [
256
+ "linux"
257
+ ],
258
+ "funding": {
259
+ "url": "https://opencollective.com/libvips"
260
+ }
261
+ },
262
+ "node_modules/@img/sharp-linux-arm": {
263
+ "version": "0.34.5",
264
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.34.5.tgz",
265
+ "integrity": "sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==",
266
+ "cpu": [
267
+ "arm"
268
+ ],
269
+ "license": "Apache-2.0",
270
+ "optional": true,
271
+ "os": [
272
+ "linux"
273
+ ],
274
+ "engines": {
275
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
276
+ },
277
+ "funding": {
278
+ "url": "https://opencollective.com/libvips"
279
+ },
280
+ "optionalDependencies": {
281
+ "@img/sharp-libvips-linux-arm": "1.2.4"
282
+ }
283
+ },
284
+ "node_modules/@img/sharp-linux-arm64": {
285
+ "version": "0.34.5",
286
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.34.5.tgz",
287
+ "integrity": "sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==",
288
+ "cpu": [
289
+ "arm64"
290
+ ],
291
+ "license": "Apache-2.0",
292
+ "optional": true,
293
+ "os": [
294
+ "linux"
295
+ ],
296
+ "engines": {
297
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
298
+ },
299
+ "funding": {
300
+ "url": "https://opencollective.com/libvips"
301
+ },
302
+ "optionalDependencies": {
303
+ "@img/sharp-libvips-linux-arm64": "1.2.4"
304
+ }
305
+ },
306
+ "node_modules/@img/sharp-linux-ppc64": {
307
+ "version": "0.34.5",
308
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-ppc64/-/sharp-linux-ppc64-0.34.5.tgz",
309
+ "integrity": "sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==",
310
+ "cpu": [
311
+ "ppc64"
312
+ ],
313
+ "license": "Apache-2.0",
314
+ "optional": true,
315
+ "os": [
316
+ "linux"
317
+ ],
318
+ "engines": {
319
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
320
+ },
321
+ "funding": {
322
+ "url": "https://opencollective.com/libvips"
323
+ },
324
+ "optionalDependencies": {
325
+ "@img/sharp-libvips-linux-ppc64": "1.2.4"
326
+ }
327
+ },
328
+ "node_modules/@img/sharp-linux-riscv64": {
329
+ "version": "0.34.5",
330
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-riscv64/-/sharp-linux-riscv64-0.34.5.tgz",
331
+ "integrity": "sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==",
332
+ "cpu": [
333
+ "riscv64"
334
+ ],
335
+ "license": "Apache-2.0",
336
+ "optional": true,
337
+ "os": [
338
+ "linux"
339
+ ],
340
+ "engines": {
341
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
342
+ },
343
+ "funding": {
344
+ "url": "https://opencollective.com/libvips"
345
+ },
346
+ "optionalDependencies": {
347
+ "@img/sharp-libvips-linux-riscv64": "1.2.4"
348
+ }
349
+ },
350
+ "node_modules/@img/sharp-linux-s390x": {
351
+ "version": "0.34.5",
352
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.34.5.tgz",
353
+ "integrity": "sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==",
354
+ "cpu": [
355
+ "s390x"
356
+ ],
357
+ "license": "Apache-2.0",
358
+ "optional": true,
359
+ "os": [
360
+ "linux"
361
+ ],
362
+ "engines": {
363
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
364
+ },
365
+ "funding": {
366
+ "url": "https://opencollective.com/libvips"
367
+ },
368
+ "optionalDependencies": {
369
+ "@img/sharp-libvips-linux-s390x": "1.2.4"
370
+ }
371
+ },
372
+ "node_modules/@img/sharp-linux-x64": {
373
+ "version": "0.34.5",
374
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.34.5.tgz",
375
+ "integrity": "sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==",
376
+ "cpu": [
377
+ "x64"
378
+ ],
379
+ "license": "Apache-2.0",
380
+ "optional": true,
381
+ "os": [
382
+ "linux"
383
+ ],
384
+ "engines": {
385
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
386
+ },
387
+ "funding": {
388
+ "url": "https://opencollective.com/libvips"
389
+ },
390
+ "optionalDependencies": {
391
+ "@img/sharp-libvips-linux-x64": "1.2.4"
392
+ }
393
+ },
394
+ "node_modules/@img/sharp-linuxmusl-arm64": {
395
+ "version": "0.34.5",
396
+ "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.34.5.tgz",
397
+ "integrity": "sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==",
398
+ "cpu": [
399
+ "arm64"
400
+ ],
401
+ "license": "Apache-2.0",
402
+ "optional": true,
403
+ "os": [
404
+ "linux"
405
+ ],
406
+ "engines": {
407
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
408
+ },
409
+ "funding": {
410
+ "url": "https://opencollective.com/libvips"
411
+ },
412
+ "optionalDependencies": {
413
+ "@img/sharp-libvips-linuxmusl-arm64": "1.2.4"
414
+ }
415
+ },
416
+ "node_modules/@img/sharp-linuxmusl-x64": {
417
+ "version": "0.34.5",
418
+ "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.34.5.tgz",
419
+ "integrity": "sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==",
420
+ "cpu": [
421
+ "x64"
422
+ ],
423
+ "license": "Apache-2.0",
424
+ "optional": true,
425
+ "os": [
426
+ "linux"
427
+ ],
428
+ "engines": {
429
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
430
+ },
431
+ "funding": {
432
+ "url": "https://opencollective.com/libvips"
433
+ },
434
+ "optionalDependencies": {
435
+ "@img/sharp-libvips-linuxmusl-x64": "1.2.4"
436
+ }
437
+ },
438
+ "node_modules/@img/sharp-wasm32": {
439
+ "version": "0.34.5",
440
+ "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.34.5.tgz",
441
+ "integrity": "sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==",
442
+ "cpu": [
443
+ "wasm32"
444
+ ],
445
+ "license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT",
446
+ "optional": true,
447
+ "dependencies": {
448
+ "@emnapi/runtime": "^1.7.0"
449
+ },
450
+ "engines": {
451
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
452
+ },
453
+ "funding": {
454
+ "url": "https://opencollective.com/libvips"
455
+ }
456
+ },
457
+ "node_modules/@img/sharp-win32-arm64": {
458
+ "version": "0.34.5",
459
+ "resolved": "https://registry.npmjs.org/@img/sharp-win32-arm64/-/sharp-win32-arm64-0.34.5.tgz",
460
+ "integrity": "sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==",
461
+ "cpu": [
462
+ "arm64"
463
+ ],
464
+ "license": "Apache-2.0 AND LGPL-3.0-or-later",
465
+ "optional": true,
466
+ "os": [
467
+ "win32"
468
+ ],
469
+ "engines": {
470
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
471
+ },
472
+ "funding": {
473
+ "url": "https://opencollective.com/libvips"
474
+ }
475
+ },
476
+ "node_modules/@img/sharp-win32-ia32": {
477
+ "version": "0.34.5",
478
+ "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.34.5.tgz",
479
+ "integrity": "sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==",
480
+ "cpu": [
481
+ "ia32"
482
+ ],
483
+ "license": "Apache-2.0 AND LGPL-3.0-or-later",
484
+ "optional": true,
485
+ "os": [
486
+ "win32"
487
+ ],
488
+ "engines": {
489
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
490
+ },
491
+ "funding": {
492
+ "url": "https://opencollective.com/libvips"
493
+ }
494
+ },
495
+ "node_modules/@img/sharp-win32-x64": {
496
+ "version": "0.34.5",
497
+ "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.34.5.tgz",
498
+ "integrity": "sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==",
499
+ "cpu": [
500
+ "x64"
501
+ ],
502
+ "license": "Apache-2.0 AND LGPL-3.0-or-later",
503
+ "optional": true,
504
+ "os": [
505
+ "win32"
506
+ ],
507
+ "engines": {
508
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
509
+ },
510
+ "funding": {
511
+ "url": "https://opencollective.com/libvips"
512
+ }
513
+ },
514
+ "node_modules/@jridgewell/gen-mapping": {
515
+ "version": "0.3.13",
516
+ "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
517
+ "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
518
+ "dev": true,
519
+ "license": "MIT",
520
+ "dependencies": {
521
+ "@jridgewell/sourcemap-codec": "^1.5.0",
522
+ "@jridgewell/trace-mapping": "^0.3.24"
523
+ }
524
+ },
525
+ "node_modules/@jridgewell/remapping": {
526
+ "version": "2.3.5",
527
+ "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz",
528
+ "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==",
529
+ "dev": true,
530
+ "license": "MIT",
531
+ "dependencies": {
532
+ "@jridgewell/gen-mapping": "^0.3.5",
533
+ "@jridgewell/trace-mapping": "^0.3.24"
534
+ }
535
+ },
536
+ "node_modules/@jridgewell/resolve-uri": {
537
+ "version": "3.1.2",
538
+ "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
539
+ "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
540
+ "dev": true,
541
+ "license": "MIT",
542
+ "engines": {
543
+ "node": ">=6.0.0"
544
+ }
545
+ },
546
+ "node_modules/@jridgewell/sourcemap-codec": {
547
+ "version": "1.5.5",
548
+ "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
549
+ "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
550
+ "dev": true,
551
+ "license": "MIT"
552
+ },
553
+ "node_modules/@jridgewell/trace-mapping": {
554
+ "version": "0.3.31",
555
+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
556
+ "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
557
+ "dev": true,
558
+ "license": "MIT",
559
+ "dependencies": {
560
+ "@jridgewell/resolve-uri": "^3.1.0",
561
+ "@jridgewell/sourcemap-codec": "^1.4.14"
562
+ }
563
+ },
564
+ "node_modules/@next/env": {
565
+ "version": "15.5.12",
566
+ "resolved": "https://registry.npmjs.org/@next/env/-/env-15.5.12.tgz",
567
+ "integrity": "sha512-pUvdJN1on574wQHjaBfNGDt9Mz5utDSZFsIIQkMzPgNS8ZvT4H2mwOrOIClwsQOb6EGx5M76/CZr6G8i6pSpLg==",
568
+ "license": "MIT"
569
+ },
570
+ "node_modules/@next/swc-darwin-arm64": {
571
+ "version": "15.5.12",
572
+ "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-15.5.12.tgz",
573
+ "integrity": "sha512-RnRjBtH8S8eXCpUNkQ+543DUc7ys8y15VxmFU9HRqlo9BG3CcBUiwNtF8SNoi2xvGCVJq1vl2yYq+3oISBS0Zg==",
574
+ "cpu": [
575
+ "arm64"
576
+ ],
577
+ "license": "MIT",
578
+ "optional": true,
579
+ "os": [
580
+ "darwin"
581
+ ],
582
+ "engines": {
583
+ "node": ">= 10"
584
+ }
585
+ },
586
+ "node_modules/@next/swc-darwin-x64": {
587
+ "version": "15.5.12",
588
+ "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-15.5.12.tgz",
589
+ "integrity": "sha512-nqa9/7iQlboF1EFtNhWxQA0rQstmYRSBGxSM6g3GxvxHxcoeqVXfGNr9stJOme674m2V7r4E3+jEhhGvSQhJRA==",
590
+ "cpu": [
591
+ "x64"
592
+ ],
593
+ "license": "MIT",
594
+ "optional": true,
595
+ "os": [
596
+ "darwin"
597
+ ],
598
+ "engines": {
599
+ "node": ">= 10"
600
+ }
601
+ },
602
+ "node_modules/@next/swc-linux-arm64-gnu": {
603
+ "version": "15.5.12",
604
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-15.5.12.tgz",
605
+ "integrity": "sha512-dCzAjqhDHwmoB2M4eYfVKqXs99QdQxNQVpftvP1eGVppamXh/OkDAwV737Zr0KPXEqRUMN4uCjh6mjO+XtF3Mw==",
606
+ "cpu": [
607
+ "arm64"
608
+ ],
609
+ "license": "MIT",
610
+ "optional": true,
611
+ "os": [
612
+ "linux"
613
+ ],
614
+ "engines": {
615
+ "node": ">= 10"
616
+ }
617
+ },
618
+ "node_modules/@next/swc-linux-arm64-musl": {
619
+ "version": "15.5.12",
620
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-15.5.12.tgz",
621
+ "integrity": "sha512-+fpGWvQiITgf7PUtbWY1H7qUSnBZsPPLyyq03QuAKpVoTy/QUx1JptEDTQMVvQhvizCEuNLEeghrQUyXQOekuw==",
622
+ "cpu": [
623
+ "arm64"
624
+ ],
625
+ "license": "MIT",
626
+ "optional": true,
627
+ "os": [
628
+ "linux"
629
+ ],
630
+ "engines": {
631
+ "node": ">= 10"
632
+ }
633
+ },
634
+ "node_modules/@next/swc-linux-x64-gnu": {
635
+ "version": "15.5.12",
636
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-15.5.12.tgz",
637
+ "integrity": "sha512-jSLvgdRRL/hrFAPqEjJf1fFguC719kmcptjNVDJl26BnJIpjL3KH5h6mzR4mAweociLQaqvt4UyzfbFjgAdDcw==",
638
+ "cpu": [
639
+ "x64"
640
+ ],
641
+ "license": "MIT",
642
+ "optional": true,
643
+ "os": [
644
+ "linux"
645
+ ],
646
+ "engines": {
647
+ "node": ">= 10"
648
+ }
649
+ },
650
+ "node_modules/@next/swc-linux-x64-musl": {
651
+ "version": "15.5.12",
652
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-15.5.12.tgz",
653
+ "integrity": "sha512-/uaF0WfmYqQgLfPmN6BvULwxY0dufI2mlN2JbOKqqceZh1G4hjREyi7pg03zjfyS6eqNemHAZPSoP84x17vo6w==",
654
+ "cpu": [
655
+ "x64"
656
+ ],
657
+ "license": "MIT",
658
+ "optional": true,
659
+ "os": [
660
+ "linux"
661
+ ],
662
+ "engines": {
663
+ "node": ">= 10"
664
+ }
665
+ },
666
+ "node_modules/@next/swc-win32-arm64-msvc": {
667
+ "version": "15.5.12",
668
+ "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-15.5.12.tgz",
669
+ "integrity": "sha512-xhsL1OvQSfGmlL5RbOmU+FV120urrgFpYLq+6U8C6KIym32gZT6XF/SDE92jKzzlPWskkbjOKCpqk5m4i8PEfg==",
670
+ "cpu": [
671
+ "arm64"
672
+ ],
673
+ "license": "MIT",
674
+ "optional": true,
675
+ "os": [
676
+ "win32"
677
+ ],
678
+ "engines": {
679
+ "node": ">= 10"
680
+ }
681
+ },
682
+ "node_modules/@next/swc-win32-x64-msvc": {
683
+ "version": "15.5.12",
684
+ "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-15.5.12.tgz",
685
+ "integrity": "sha512-Z1Dh6lhFkxvBDH1FoW6OU/L6prYwPSlwjLiZkExIAh8fbP6iI/M7iGTQAJPYJ9YFlWobCZ1PHbchFhFYb2ADkw==",
686
+ "cpu": [
687
+ "x64"
688
+ ],
689
+ "license": "MIT",
690
+ "optional": true,
691
+ "os": [
692
+ "win32"
693
+ ],
694
+ "engines": {
695
+ "node": ">= 10"
696
+ }
697
+ },
698
+ "node_modules/@swc/helpers": {
699
+ "version": "0.5.15",
700
+ "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.15.tgz",
701
+ "integrity": "sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==",
702
+ "license": "Apache-2.0",
703
+ "dependencies": {
704
+ "tslib": "^2.8.0"
705
+ }
706
+ },
707
+ "node_modules/@tailwindcss/node": {
708
+ "version": "4.2.1",
709
+ "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.2.1.tgz",
710
+ "integrity": "sha512-jlx6sLk4EOwO6hHe1oCGm1Q4AN/s0rSrTTPBGPM0/RQ6Uylwq17FuU8IeJJKEjtc6K6O07zsvP+gDO6MMWo7pg==",
711
+ "dev": true,
712
+ "license": "MIT",
713
+ "dependencies": {
714
+ "@jridgewell/remapping": "^2.3.5",
715
+ "enhanced-resolve": "^5.19.0",
716
+ "jiti": "^2.6.1",
717
+ "lightningcss": "1.31.1",
718
+ "magic-string": "^0.30.21",
719
+ "source-map-js": "^1.2.1",
720
+ "tailwindcss": "4.2.1"
721
+ }
722
+ },
723
+ "node_modules/@tailwindcss/oxide": {
724
+ "version": "4.2.1",
725
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.2.1.tgz",
726
+ "integrity": "sha512-yv9jeEFWnjKCI6/T3Oq50yQEOqmpmpfzG1hcZsAOaXFQPfzWprWrlHSdGPEF3WQTi8zu8ohC9Mh9J470nT5pUw==",
727
+ "dev": true,
728
+ "license": "MIT",
729
+ "engines": {
730
+ "node": ">= 20"
731
+ },
732
+ "optionalDependencies": {
733
+ "@tailwindcss/oxide-android-arm64": "4.2.1",
734
+ "@tailwindcss/oxide-darwin-arm64": "4.2.1",
735
+ "@tailwindcss/oxide-darwin-x64": "4.2.1",
736
+ "@tailwindcss/oxide-freebsd-x64": "4.2.1",
737
+ "@tailwindcss/oxide-linux-arm-gnueabihf": "4.2.1",
738
+ "@tailwindcss/oxide-linux-arm64-gnu": "4.2.1",
739
+ "@tailwindcss/oxide-linux-arm64-musl": "4.2.1",
740
+ "@tailwindcss/oxide-linux-x64-gnu": "4.2.1",
741
+ "@tailwindcss/oxide-linux-x64-musl": "4.2.1",
742
+ "@tailwindcss/oxide-wasm32-wasi": "4.2.1",
743
+ "@tailwindcss/oxide-win32-arm64-msvc": "4.2.1",
744
+ "@tailwindcss/oxide-win32-x64-msvc": "4.2.1"
745
+ }
746
+ },
747
+ "node_modules/@tailwindcss/oxide-android-arm64": {
748
+ "version": "4.2.1",
749
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.2.1.tgz",
750
+ "integrity": "sha512-eZ7G1Zm5EC8OOKaesIKuw77jw++QJ2lL9N+dDpdQiAB/c/B2wDh0QPFHbkBVrXnwNugvrbJFk1gK2SsVjwWReg==",
751
+ "cpu": [
752
+ "arm64"
753
+ ],
754
+ "dev": true,
755
+ "license": "MIT",
756
+ "optional": true,
757
+ "os": [
758
+ "android"
759
+ ],
760
+ "engines": {
761
+ "node": ">= 20"
762
+ }
763
+ },
764
+ "node_modules/@tailwindcss/oxide-darwin-arm64": {
765
+ "version": "4.2.1",
766
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.2.1.tgz",
767
+ "integrity": "sha512-q/LHkOstoJ7pI1J0q6djesLzRvQSIfEto148ppAd+BVQK0JYjQIFSK3JgYZJa+Yzi0DDa52ZsQx2rqytBnf8Hw==",
768
+ "cpu": [
769
+ "arm64"
770
+ ],
771
+ "dev": true,
772
+ "license": "MIT",
773
+ "optional": true,
774
+ "os": [
775
+ "darwin"
776
+ ],
777
+ "engines": {
778
+ "node": ">= 20"
779
+ }
780
+ },
781
+ "node_modules/@tailwindcss/oxide-darwin-x64": {
782
+ "version": "4.2.1",
783
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.2.1.tgz",
784
+ "integrity": "sha512-/f/ozlaXGY6QLbpvd/kFTro2l18f7dHKpB+ieXz+Cijl4Mt9AI2rTrpq7V+t04nK+j9XBQHnSMdeQRhbGyt6fw==",
785
+ "cpu": [
786
+ "x64"
787
+ ],
788
+ "dev": true,
789
+ "license": "MIT",
790
+ "optional": true,
791
+ "os": [
792
+ "darwin"
793
+ ],
794
+ "engines": {
795
+ "node": ">= 20"
796
+ }
797
+ },
798
+ "node_modules/@tailwindcss/oxide-freebsd-x64": {
799
+ "version": "4.2.1",
800
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.2.1.tgz",
801
+ "integrity": "sha512-5e/AkgYJT/cpbkys/OU2Ei2jdETCLlifwm7ogMC7/hksI2fC3iiq6OcXwjibcIjPung0kRtR3TxEITkqgn0TcA==",
802
+ "cpu": [
803
+ "x64"
804
+ ],
805
+ "dev": true,
806
+ "license": "MIT",
807
+ "optional": true,
808
+ "os": [
809
+ "freebsd"
810
+ ],
811
+ "engines": {
812
+ "node": ">= 20"
813
+ }
814
+ },
815
+ "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": {
816
+ "version": "4.2.1",
817
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.2.1.tgz",
818
+ "integrity": "sha512-Uny1EcVTTmerCKt/1ZuKTkb0x8ZaiuYucg2/kImO5A5Y/kBz41/+j0gxUZl+hTF3xkWpDmHX+TaWhOtba2Fyuw==",
819
+ "cpu": [
820
+ "arm"
821
+ ],
822
+ "dev": true,
823
+ "license": "MIT",
824
+ "optional": true,
825
+ "os": [
826
+ "linux"
827
+ ],
828
+ "engines": {
829
+ "node": ">= 20"
830
+ }
831
+ },
832
+ "node_modules/@tailwindcss/oxide-linux-arm64-gnu": {
833
+ "version": "4.2.1",
834
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.2.1.tgz",
835
+ "integrity": "sha512-CTrwomI+c7n6aSSQlsPL0roRiNMDQ/YzMD9EjcR+H4f0I1SQ8QqIuPnsVp7QgMkC1Qi8rtkekLkOFjo7OlEFRQ==",
836
+ "cpu": [
837
+ "arm64"
838
+ ],
839
+ "dev": true,
840
+ "license": "MIT",
841
+ "optional": true,
842
+ "os": [
843
+ "linux"
844
+ ],
845
+ "engines": {
846
+ "node": ">= 20"
847
+ }
848
+ },
849
+ "node_modules/@tailwindcss/oxide-linux-arm64-musl": {
850
+ "version": "4.2.1",
851
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.2.1.tgz",
852
+ "integrity": "sha512-WZA0CHRL/SP1TRbA5mp9htsppSEkWuQ4KsSUumYQnyl8ZdT39ntwqmz4IUHGN6p4XdSlYfJwM4rRzZLShHsGAQ==",
853
+ "cpu": [
854
+ "arm64"
855
+ ],
856
+ "dev": true,
857
+ "license": "MIT",
858
+ "optional": true,
859
+ "os": [
860
+ "linux"
861
+ ],
862
+ "engines": {
863
+ "node": ">= 20"
864
+ }
865
+ },
866
+ "node_modules/@tailwindcss/oxide-linux-x64-gnu": {
867
+ "version": "4.2.1",
868
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.2.1.tgz",
869
+ "integrity": "sha512-qMFzxI2YlBOLW5PhblzuSWlWfwLHaneBE0xHzLrBgNtqN6mWfs+qYbhryGSXQjFYB1Dzf5w+LN5qbUTPhW7Y5g==",
870
+ "cpu": [
871
+ "x64"
872
+ ],
873
+ "dev": true,
874
+ "license": "MIT",
875
+ "optional": true,
876
+ "os": [
877
+ "linux"
878
+ ],
879
+ "engines": {
880
+ "node": ">= 20"
881
+ }
882
+ },
883
+ "node_modules/@tailwindcss/oxide-linux-x64-musl": {
884
+ "version": "4.2.1",
885
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.2.1.tgz",
886
+ "integrity": "sha512-5r1X2FKnCMUPlXTWRYpHdPYUY6a1Ar/t7P24OuiEdEOmms5lyqjDRvVY1yy9Rmioh+AunQ0rWiOTPE8F9A3v5g==",
887
+ "cpu": [
888
+ "x64"
889
+ ],
890
+ "dev": true,
891
+ "license": "MIT",
892
+ "optional": true,
893
+ "os": [
894
+ "linux"
895
+ ],
896
+ "engines": {
897
+ "node": ">= 20"
898
+ }
899
+ },
900
+ "node_modules/@tailwindcss/oxide-wasm32-wasi": {
901
+ "version": "4.2.1",
902
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.2.1.tgz",
903
+ "integrity": "sha512-MGFB5cVPvshR85MTJkEvqDUnuNoysrsRxd6vnk1Lf2tbiqNlXpHYZqkqOQalydienEWOHHFyyuTSYRsLfxFJ2Q==",
904
+ "bundleDependencies": [
905
+ "@napi-rs/wasm-runtime",
906
+ "@emnapi/core",
907
+ "@emnapi/runtime",
908
+ "@tybys/wasm-util",
909
+ "@emnapi/wasi-threads",
910
+ "tslib"
911
+ ],
912
+ "cpu": [
913
+ "wasm32"
914
+ ],
915
+ "dev": true,
916
+ "license": "MIT",
917
+ "optional": true,
918
+ "dependencies": {
919
+ "@emnapi/core": "^1.8.1",
920
+ "@emnapi/runtime": "^1.8.1",
921
+ "@emnapi/wasi-threads": "^1.1.0",
922
+ "@napi-rs/wasm-runtime": "^1.1.1",
923
+ "@tybys/wasm-util": "^0.10.1",
924
+ "tslib": "^2.8.1"
925
+ },
926
+ "engines": {
927
+ "node": ">=14.0.0"
928
+ }
929
+ },
930
+ "node_modules/@tailwindcss/oxide-win32-arm64-msvc": {
931
+ "version": "4.2.1",
932
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.2.1.tgz",
933
+ "integrity": "sha512-YlUEHRHBGnCMh4Nj4GnqQyBtsshUPdiNroZj8VPkvTZSoHsilRCwXcVKnG9kyi0ZFAS/3u+qKHBdDc81SADTRA==",
934
+ "cpu": [
935
+ "arm64"
936
+ ],
937
+ "dev": true,
938
+ "license": "MIT",
939
+ "optional": true,
940
+ "os": [
941
+ "win32"
942
+ ],
943
+ "engines": {
944
+ "node": ">= 20"
945
+ }
946
+ },
947
+ "node_modules/@tailwindcss/oxide-win32-x64-msvc": {
948
+ "version": "4.2.1",
949
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.2.1.tgz",
950
+ "integrity": "sha512-rbO34G5sMWWyrN/idLeVxAZgAKWrn5LiR3/I90Q9MkA67s6T1oB0xtTe+0heoBvHSpbU9Mk7i6uwJnpo4u21XQ==",
951
+ "cpu": [
952
+ "x64"
953
+ ],
954
+ "dev": true,
955
+ "license": "MIT",
956
+ "optional": true,
957
+ "os": [
958
+ "win32"
959
+ ],
960
+ "engines": {
961
+ "node": ">= 20"
962
+ }
963
+ },
964
+ "node_modules/@tailwindcss/postcss": {
965
+ "version": "4.2.1",
966
+ "resolved": "https://registry.npmjs.org/@tailwindcss/postcss/-/postcss-4.2.1.tgz",
967
+ "integrity": "sha512-OEwGIBnXnj7zJeonOh6ZG9woofIjGrd2BORfvE5p9USYKDCZoQmfqLcfNiRWoJlRWLdNPn2IgVZuWAOM4iTYMw==",
968
+ "dev": true,
969
+ "license": "MIT",
970
+ "dependencies": {
971
+ "@alloc/quick-lru": "^5.2.0",
972
+ "@tailwindcss/node": "4.2.1",
973
+ "@tailwindcss/oxide": "4.2.1",
974
+ "postcss": "^8.5.6",
975
+ "tailwindcss": "4.2.1"
976
+ }
977
+ },
978
+ "node_modules/@types/node": {
979
+ "version": "22.19.15",
980
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-22.19.15.tgz",
981
+ "integrity": "sha512-F0R/h2+dsy5wJAUe3tAU6oqa2qbWY5TpNfL/RGmo1y38hiyO1w3x2jPtt76wmuaJI4DQnOBu21cNXQ2STIUUWg==",
982
+ "dev": true,
983
+ "license": "MIT",
984
+ "dependencies": {
985
+ "undici-types": "~6.21.0"
986
+ }
987
+ },
988
+ "node_modules/@types/react": {
989
+ "version": "19.2.14",
990
+ "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.14.tgz",
991
+ "integrity": "sha512-ilcTH/UniCkMdtexkoCN0bI7pMcJDvmQFPvuPvmEaYA/NSfFTAgdUSLAoVjaRJm7+6PvcM+q1zYOwS4wTYMF9w==",
992
+ "dev": true,
993
+ "license": "MIT",
994
+ "dependencies": {
995
+ "csstype": "^3.2.2"
996
+ }
997
+ },
998
+ "node_modules/@types/react-dom": {
999
+ "version": "19.2.3",
1000
+ "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.3.tgz",
1001
+ "integrity": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==",
1002
+ "dev": true,
1003
+ "license": "MIT",
1004
+ "peerDependencies": {
1005
+ "@types/react": "^19.2.0"
1006
+ }
1007
+ },
1008
+ "node_modules/caniuse-lite": {
1009
+ "version": "1.0.30001777",
1010
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001777.tgz",
1011
+ "integrity": "sha512-tmN+fJxroPndC74efCdp12j+0rk0RHwV5Jwa1zWaFVyw2ZxAuPeG8ZgWC3Wz7uSjT3qMRQ5XHZ4COgQmsCMJAQ==",
1012
+ "funding": [
1013
+ {
1014
+ "type": "opencollective",
1015
+ "url": "https://opencollective.com/browserslist"
1016
+ },
1017
+ {
1018
+ "type": "tidelift",
1019
+ "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
1020
+ },
1021
+ {
1022
+ "type": "github",
1023
+ "url": "https://github.com/sponsors/ai"
1024
+ }
1025
+ ],
1026
+ "license": "CC-BY-4.0"
1027
+ },
1028
+ "node_modules/client-only": {
1029
+ "version": "0.0.1",
1030
+ "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz",
1031
+ "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==",
1032
+ "license": "MIT"
1033
+ },
1034
+ "node_modules/csstype": {
1035
+ "version": "3.2.3",
1036
+ "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz",
1037
+ "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
1038
+ "dev": true,
1039
+ "license": "MIT"
1040
+ },
1041
+ "node_modules/detect-libc": {
1042
+ "version": "2.1.2",
1043
+ "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
1044
+ "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
1045
+ "devOptional": true,
1046
+ "license": "Apache-2.0",
1047
+ "engines": {
1048
+ "node": ">=8"
1049
+ }
1050
+ },
1051
+ "node_modules/enhanced-resolve": {
1052
+ "version": "5.20.0",
1053
+ "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.20.0.tgz",
1054
+ "integrity": "sha512-/ce7+jQ1PQ6rVXwe+jKEg5hW5ciicHwIQUagZkp6IufBoY3YDgdTTY1azVs0qoRgVmvsNB+rbjLJxDAeHHtwsQ==",
1055
+ "dev": true,
1056
+ "license": "MIT",
1057
+ "dependencies": {
1058
+ "graceful-fs": "^4.2.4",
1059
+ "tapable": "^2.3.0"
1060
+ },
1061
+ "engines": {
1062
+ "node": ">=10.13.0"
1063
+ }
1064
+ },
1065
+ "node_modules/geist": {
1066
+ "version": "1.7.0",
1067
+ "resolved": "https://registry.npmjs.org/geist/-/geist-1.7.0.tgz",
1068
+ "integrity": "sha512-ZaoiZwkSf0DwwB1ncdLKp+ggAldqxl5L1+SXaNIBGkPAqcu+xjVJLxlf3/S8vLt9UHx1xu5fz3lbzKCj5iOVdQ==",
1069
+ "license": "SIL OPEN FONT LICENSE",
1070
+ "peerDependencies": {
1071
+ "next": ">=13.2.0"
1072
+ }
1073
+ },
1074
+ "node_modules/graceful-fs": {
1075
+ "version": "4.2.11",
1076
+ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
1077
+ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
1078
+ "dev": true,
1079
+ "license": "ISC"
1080
+ },
1081
+ "node_modules/jiti": {
1082
+ "version": "2.6.1",
1083
+ "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.6.1.tgz",
1084
+ "integrity": "sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==",
1085
+ "dev": true,
1086
+ "license": "MIT",
1087
+ "bin": {
1088
+ "jiti": "lib/jiti-cli.mjs"
1089
+ }
1090
+ },
1091
+ "node_modules/lightningcss": {
1092
+ "version": "1.31.1",
1093
+ "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.31.1.tgz",
1094
+ "integrity": "sha512-l51N2r93WmGUye3WuFoN5k10zyvrVs0qfKBhyC5ogUQ6Ew6JUSswh78mbSO+IU3nTWsyOArqPCcShdQSadghBQ==",
1095
+ "dev": true,
1096
+ "license": "MPL-2.0",
1097
+ "dependencies": {
1098
+ "detect-libc": "^2.0.3"
1099
+ },
1100
+ "engines": {
1101
+ "node": ">= 12.0.0"
1102
+ },
1103
+ "funding": {
1104
+ "type": "opencollective",
1105
+ "url": "https://opencollective.com/parcel"
1106
+ },
1107
+ "optionalDependencies": {
1108
+ "lightningcss-android-arm64": "1.31.1",
1109
+ "lightningcss-darwin-arm64": "1.31.1",
1110
+ "lightningcss-darwin-x64": "1.31.1",
1111
+ "lightningcss-freebsd-x64": "1.31.1",
1112
+ "lightningcss-linux-arm-gnueabihf": "1.31.1",
1113
+ "lightningcss-linux-arm64-gnu": "1.31.1",
1114
+ "lightningcss-linux-arm64-musl": "1.31.1",
1115
+ "lightningcss-linux-x64-gnu": "1.31.1",
1116
+ "lightningcss-linux-x64-musl": "1.31.1",
1117
+ "lightningcss-win32-arm64-msvc": "1.31.1",
1118
+ "lightningcss-win32-x64-msvc": "1.31.1"
1119
+ }
1120
+ },
1121
+ "node_modules/lightningcss-android-arm64": {
1122
+ "version": "1.31.1",
1123
+ "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.31.1.tgz",
1124
+ "integrity": "sha512-HXJF3x8w9nQ4jbXRiNppBCqeZPIAfUo8zE/kOEGbW5NZvGc/K7nMxbhIr+YlFlHW5mpbg/YFPdbnCh1wAXCKFg==",
1125
+ "cpu": [
1126
+ "arm64"
1127
+ ],
1128
+ "dev": true,
1129
+ "license": "MPL-2.0",
1130
+ "optional": true,
1131
+ "os": [
1132
+ "android"
1133
+ ],
1134
+ "engines": {
1135
+ "node": ">= 12.0.0"
1136
+ },
1137
+ "funding": {
1138
+ "type": "opencollective",
1139
+ "url": "https://opencollective.com/parcel"
1140
+ }
1141
+ },
1142
+ "node_modules/lightningcss-darwin-arm64": {
1143
+ "version": "1.31.1",
1144
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.31.1.tgz",
1145
+ "integrity": "sha512-02uTEqf3vIfNMq3h/z2cJfcOXnQ0GRwQrkmPafhueLb2h7mqEidiCzkE4gBMEH65abHRiQvhdcQ+aP0D0g67sg==",
1146
+ "cpu": [
1147
+ "arm64"
1148
+ ],
1149
+ "dev": true,
1150
+ "license": "MPL-2.0",
1151
+ "optional": true,
1152
+ "os": [
1153
+ "darwin"
1154
+ ],
1155
+ "engines": {
1156
+ "node": ">= 12.0.0"
1157
+ },
1158
+ "funding": {
1159
+ "type": "opencollective",
1160
+ "url": "https://opencollective.com/parcel"
1161
+ }
1162
+ },
1163
+ "node_modules/lightningcss-darwin-x64": {
1164
+ "version": "1.31.1",
1165
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.31.1.tgz",
1166
+ "integrity": "sha512-1ObhyoCY+tGxtsz1lSx5NXCj3nirk0Y0kB/g8B8DT+sSx4G9djitg9ejFnjb3gJNWo7qXH4DIy2SUHvpoFwfTA==",
1167
+ "cpu": [
1168
+ "x64"
1169
+ ],
1170
+ "dev": true,
1171
+ "license": "MPL-2.0",
1172
+ "optional": true,
1173
+ "os": [
1174
+ "darwin"
1175
+ ],
1176
+ "engines": {
1177
+ "node": ">= 12.0.0"
1178
+ },
1179
+ "funding": {
1180
+ "type": "opencollective",
1181
+ "url": "https://opencollective.com/parcel"
1182
+ }
1183
+ },
1184
+ "node_modules/lightningcss-freebsd-x64": {
1185
+ "version": "1.31.1",
1186
+ "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.31.1.tgz",
1187
+ "integrity": "sha512-1RINmQKAItO6ISxYgPwszQE1BrsVU5aB45ho6O42mu96UiZBxEXsuQ7cJW4zs4CEodPUioj/QrXW1r9pLUM74A==",
1188
+ "cpu": [
1189
+ "x64"
1190
+ ],
1191
+ "dev": true,
1192
+ "license": "MPL-2.0",
1193
+ "optional": true,
1194
+ "os": [
1195
+ "freebsd"
1196
+ ],
1197
+ "engines": {
1198
+ "node": ">= 12.0.0"
1199
+ },
1200
+ "funding": {
1201
+ "type": "opencollective",
1202
+ "url": "https://opencollective.com/parcel"
1203
+ }
1204
+ },
1205
+ "node_modules/lightningcss-linux-arm-gnueabihf": {
1206
+ "version": "1.31.1",
1207
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.31.1.tgz",
1208
+ "integrity": "sha512-OOCm2//MZJ87CdDK62rZIu+aw9gBv4azMJuA8/KB74wmfS3lnC4yoPHm0uXZ/dvNNHmnZnB8XLAZzObeG0nS1g==",
1209
+ "cpu": [
1210
+ "arm"
1211
+ ],
1212
+ "dev": true,
1213
+ "license": "MPL-2.0",
1214
+ "optional": true,
1215
+ "os": [
1216
+ "linux"
1217
+ ],
1218
+ "engines": {
1219
+ "node": ">= 12.0.0"
1220
+ },
1221
+ "funding": {
1222
+ "type": "opencollective",
1223
+ "url": "https://opencollective.com/parcel"
1224
+ }
1225
+ },
1226
+ "node_modules/lightningcss-linux-arm64-gnu": {
1227
+ "version": "1.31.1",
1228
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.31.1.tgz",
1229
+ "integrity": "sha512-WKyLWztD71rTnou4xAD5kQT+982wvca7E6QoLpoawZ1gP9JM0GJj4Tp5jMUh9B3AitHbRZ2/H3W5xQmdEOUlLg==",
1230
+ "cpu": [
1231
+ "arm64"
1232
+ ],
1233
+ "dev": true,
1234
+ "license": "MPL-2.0",
1235
+ "optional": true,
1236
+ "os": [
1237
+ "linux"
1238
+ ],
1239
+ "engines": {
1240
+ "node": ">= 12.0.0"
1241
+ },
1242
+ "funding": {
1243
+ "type": "opencollective",
1244
+ "url": "https://opencollective.com/parcel"
1245
+ }
1246
+ },
1247
+ "node_modules/lightningcss-linux-arm64-musl": {
1248
+ "version": "1.31.1",
1249
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.31.1.tgz",
1250
+ "integrity": "sha512-mVZ7Pg2zIbe3XlNbZJdjs86YViQFoJSpc41CbVmKBPiGmC4YrfeOyz65ms2qpAobVd7WQsbW4PdsSJEMymyIMg==",
1251
+ "cpu": [
1252
+ "arm64"
1253
+ ],
1254
+ "dev": true,
1255
+ "license": "MPL-2.0",
1256
+ "optional": true,
1257
+ "os": [
1258
+ "linux"
1259
+ ],
1260
+ "engines": {
1261
+ "node": ">= 12.0.0"
1262
+ },
1263
+ "funding": {
1264
+ "type": "opencollective",
1265
+ "url": "https://opencollective.com/parcel"
1266
+ }
1267
+ },
1268
+ "node_modules/lightningcss-linux-x64-gnu": {
1269
+ "version": "1.31.1",
1270
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.31.1.tgz",
1271
+ "integrity": "sha512-xGlFWRMl+0KvUhgySdIaReQdB4FNudfUTARn7q0hh/V67PVGCs3ADFjw+6++kG1RNd0zdGRlEKa+T13/tQjPMA==",
1272
+ "cpu": [
1273
+ "x64"
1274
+ ],
1275
+ "dev": true,
1276
+ "license": "MPL-2.0",
1277
+ "optional": true,
1278
+ "os": [
1279
+ "linux"
1280
+ ],
1281
+ "engines": {
1282
+ "node": ">= 12.0.0"
1283
+ },
1284
+ "funding": {
1285
+ "type": "opencollective",
1286
+ "url": "https://opencollective.com/parcel"
1287
+ }
1288
+ },
1289
+ "node_modules/lightningcss-linux-x64-musl": {
1290
+ "version": "1.31.1",
1291
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.31.1.tgz",
1292
+ "integrity": "sha512-eowF8PrKHw9LpoZii5tdZwnBcYDxRw2rRCyvAXLi34iyeYfqCQNA9rmUM0ce62NlPhCvof1+9ivRaTY6pSKDaA==",
1293
+ "cpu": [
1294
+ "x64"
1295
+ ],
1296
+ "dev": true,
1297
+ "license": "MPL-2.0",
1298
+ "optional": true,
1299
+ "os": [
1300
+ "linux"
1301
+ ],
1302
+ "engines": {
1303
+ "node": ">= 12.0.0"
1304
+ },
1305
+ "funding": {
1306
+ "type": "opencollective",
1307
+ "url": "https://opencollective.com/parcel"
1308
+ }
1309
+ },
1310
+ "node_modules/lightningcss-win32-arm64-msvc": {
1311
+ "version": "1.31.1",
1312
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.31.1.tgz",
1313
+ "integrity": "sha512-aJReEbSEQzx1uBlQizAOBSjcmr9dCdL3XuC/6HLXAxmtErsj2ICo5yYggg1qOODQMtnjNQv2UHb9NpOuFtYe4w==",
1314
+ "cpu": [
1315
+ "arm64"
1316
+ ],
1317
+ "dev": true,
1318
+ "license": "MPL-2.0",
1319
+ "optional": true,
1320
+ "os": [
1321
+ "win32"
1322
+ ],
1323
+ "engines": {
1324
+ "node": ">= 12.0.0"
1325
+ },
1326
+ "funding": {
1327
+ "type": "opencollective",
1328
+ "url": "https://opencollective.com/parcel"
1329
+ }
1330
+ },
1331
+ "node_modules/lightningcss-win32-x64-msvc": {
1332
+ "version": "1.31.1",
1333
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.31.1.tgz",
1334
+ "integrity": "sha512-I9aiFrbd7oYHwlnQDqr1Roz+fTz61oDDJX7n9tYF9FJymH1cIN1DtKw3iYt6b8WZgEjoNwVSncwF4wx/ZedMhw==",
1335
+ "cpu": [
1336
+ "x64"
1337
+ ],
1338
+ "dev": true,
1339
+ "license": "MPL-2.0",
1340
+ "optional": true,
1341
+ "os": [
1342
+ "win32"
1343
+ ],
1344
+ "engines": {
1345
+ "node": ">= 12.0.0"
1346
+ },
1347
+ "funding": {
1348
+ "type": "opencollective",
1349
+ "url": "https://opencollective.com/parcel"
1350
+ }
1351
+ },
1352
+ "node_modules/magic-string": {
1353
+ "version": "0.30.21",
1354
+ "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz",
1355
+ "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==",
1356
+ "dev": true,
1357
+ "license": "MIT",
1358
+ "dependencies": {
1359
+ "@jridgewell/sourcemap-codec": "^1.5.5"
1360
+ }
1361
+ },
1362
+ "node_modules/nanoid": {
1363
+ "version": "3.3.11",
1364
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
1365
+ "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
1366
+ "funding": [
1367
+ {
1368
+ "type": "github",
1369
+ "url": "https://github.com/sponsors/ai"
1370
+ }
1371
+ ],
1372
+ "license": "MIT",
1373
+ "bin": {
1374
+ "nanoid": "bin/nanoid.cjs"
1375
+ },
1376
+ "engines": {
1377
+ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
1378
+ }
1379
+ },
1380
+ "node_modules/next": {
1381
+ "version": "15.5.12",
1382
+ "resolved": "https://registry.npmjs.org/next/-/next-15.5.12.tgz",
1383
+ "integrity": "sha512-Fi/wQ4Etlrn60rz78bebG1i1SR20QxvV8tVp6iJspjLUSHcZoeUXCt+vmWoEcza85ElZzExK/jJ/F6SvtGktjA==",
1384
+ "license": "MIT",
1385
+ "dependencies": {
1386
+ "@next/env": "15.5.12",
1387
+ "@swc/helpers": "0.5.15",
1388
+ "caniuse-lite": "^1.0.30001579",
1389
+ "postcss": "8.4.31",
1390
+ "styled-jsx": "5.1.6"
1391
+ },
1392
+ "bin": {
1393
+ "next": "dist/bin/next"
1394
+ },
1395
+ "engines": {
1396
+ "node": "^18.18.0 || ^19.8.0 || >= 20.0.0"
1397
+ },
1398
+ "optionalDependencies": {
1399
+ "@next/swc-darwin-arm64": "15.5.12",
1400
+ "@next/swc-darwin-x64": "15.5.12",
1401
+ "@next/swc-linux-arm64-gnu": "15.5.12",
1402
+ "@next/swc-linux-arm64-musl": "15.5.12",
1403
+ "@next/swc-linux-x64-gnu": "15.5.12",
1404
+ "@next/swc-linux-x64-musl": "15.5.12",
1405
+ "@next/swc-win32-arm64-msvc": "15.5.12",
1406
+ "@next/swc-win32-x64-msvc": "15.5.12",
1407
+ "sharp": "^0.34.3"
1408
+ },
1409
+ "peerDependencies": {
1410
+ "@opentelemetry/api": "^1.1.0",
1411
+ "@playwright/test": "^1.51.1",
1412
+ "babel-plugin-react-compiler": "*",
1413
+ "react": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0",
1414
+ "react-dom": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0",
1415
+ "sass": "^1.3.0"
1416
+ },
1417
+ "peerDependenciesMeta": {
1418
+ "@opentelemetry/api": {
1419
+ "optional": true
1420
+ },
1421
+ "@playwright/test": {
1422
+ "optional": true
1423
+ },
1424
+ "babel-plugin-react-compiler": {
1425
+ "optional": true
1426
+ },
1427
+ "sass": {
1428
+ "optional": true
1429
+ }
1430
+ }
1431
+ },
1432
+ "node_modules/next/node_modules/postcss": {
1433
+ "version": "8.4.31",
1434
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz",
1435
+ "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==",
1436
+ "funding": [
1437
+ {
1438
+ "type": "opencollective",
1439
+ "url": "https://opencollective.com/postcss/"
1440
+ },
1441
+ {
1442
+ "type": "tidelift",
1443
+ "url": "https://tidelift.com/funding/github/npm/postcss"
1444
+ },
1445
+ {
1446
+ "type": "github",
1447
+ "url": "https://github.com/sponsors/ai"
1448
+ }
1449
+ ],
1450
+ "license": "MIT",
1451
+ "dependencies": {
1452
+ "nanoid": "^3.3.6",
1453
+ "picocolors": "^1.0.0",
1454
+ "source-map-js": "^1.0.2"
1455
+ },
1456
+ "engines": {
1457
+ "node": "^10 || ^12 || >=14"
1458
+ }
1459
+ },
1460
+ "node_modules/picocolors": {
1461
+ "version": "1.1.1",
1462
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
1463
+ "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
1464
+ "license": "ISC"
1465
+ },
1466
+ "node_modules/postcss": {
1467
+ "version": "8.5.8",
1468
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.8.tgz",
1469
+ "integrity": "sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==",
1470
+ "dev": true,
1471
+ "funding": [
1472
+ {
1473
+ "type": "opencollective",
1474
+ "url": "https://opencollective.com/postcss/"
1475
+ },
1476
+ {
1477
+ "type": "tidelift",
1478
+ "url": "https://tidelift.com/funding/github/npm/postcss"
1479
+ },
1480
+ {
1481
+ "type": "github",
1482
+ "url": "https://github.com/sponsors/ai"
1483
+ }
1484
+ ],
1485
+ "license": "MIT",
1486
+ "dependencies": {
1487
+ "nanoid": "^3.3.11",
1488
+ "picocolors": "^1.1.1",
1489
+ "source-map-js": "^1.2.1"
1490
+ },
1491
+ "engines": {
1492
+ "node": "^10 || ^12 || >=14"
1493
+ }
1494
+ },
1495
+ "node_modules/react": {
1496
+ "version": "19.2.4",
1497
+ "resolved": "https://registry.npmjs.org/react/-/react-19.2.4.tgz",
1498
+ "integrity": "sha512-9nfp2hYpCwOjAN+8TZFGhtWEwgvWHXqESH8qT89AT/lWklpLON22Lc8pEtnpsZz7VmawabSU0gCjnj8aC0euHQ==",
1499
+ "license": "MIT",
1500
+ "engines": {
1501
+ "node": ">=0.10.0"
1502
+ }
1503
+ },
1504
+ "node_modules/react-dom": {
1505
+ "version": "19.2.4",
1506
+ "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.4.tgz",
1507
+ "integrity": "sha512-AXJdLo8kgMbimY95O2aKQqsz2iWi9jMgKJhRBAxECE4IFxfcazB2LmzloIoibJI3C12IlY20+KFaLv+71bUJeQ==",
1508
+ "license": "MIT",
1509
+ "dependencies": {
1510
+ "scheduler": "^0.27.0"
1511
+ },
1512
+ "peerDependencies": {
1513
+ "react": "^19.2.4"
1514
+ }
1515
+ },
1516
+ "node_modules/scheduler": {
1517
+ "version": "0.27.0",
1518
+ "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz",
1519
+ "integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==",
1520
+ "license": "MIT"
1521
+ },
1522
+ "node_modules/semver": {
1523
+ "version": "7.7.4",
1524
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz",
1525
+ "integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==",
1526
+ "license": "ISC",
1527
+ "optional": true,
1528
+ "bin": {
1529
+ "semver": "bin/semver.js"
1530
+ },
1531
+ "engines": {
1532
+ "node": ">=10"
1533
+ }
1534
+ },
1535
+ "node_modules/sharp": {
1536
+ "version": "0.34.5",
1537
+ "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.34.5.tgz",
1538
+ "integrity": "sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==",
1539
+ "hasInstallScript": true,
1540
+ "license": "Apache-2.0",
1541
+ "optional": true,
1542
+ "dependencies": {
1543
+ "@img/colour": "^1.0.0",
1544
+ "detect-libc": "^2.1.2",
1545
+ "semver": "^7.7.3"
1546
+ },
1547
+ "engines": {
1548
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
1549
+ },
1550
+ "funding": {
1551
+ "url": "https://opencollective.com/libvips"
1552
+ },
1553
+ "optionalDependencies": {
1554
+ "@img/sharp-darwin-arm64": "0.34.5",
1555
+ "@img/sharp-darwin-x64": "0.34.5",
1556
+ "@img/sharp-libvips-darwin-arm64": "1.2.4",
1557
+ "@img/sharp-libvips-darwin-x64": "1.2.4",
1558
+ "@img/sharp-libvips-linux-arm": "1.2.4",
1559
+ "@img/sharp-libvips-linux-arm64": "1.2.4",
1560
+ "@img/sharp-libvips-linux-ppc64": "1.2.4",
1561
+ "@img/sharp-libvips-linux-riscv64": "1.2.4",
1562
+ "@img/sharp-libvips-linux-s390x": "1.2.4",
1563
+ "@img/sharp-libvips-linux-x64": "1.2.4",
1564
+ "@img/sharp-libvips-linuxmusl-arm64": "1.2.4",
1565
+ "@img/sharp-libvips-linuxmusl-x64": "1.2.4",
1566
+ "@img/sharp-linux-arm": "0.34.5",
1567
+ "@img/sharp-linux-arm64": "0.34.5",
1568
+ "@img/sharp-linux-ppc64": "0.34.5",
1569
+ "@img/sharp-linux-riscv64": "0.34.5",
1570
+ "@img/sharp-linux-s390x": "0.34.5",
1571
+ "@img/sharp-linux-x64": "0.34.5",
1572
+ "@img/sharp-linuxmusl-arm64": "0.34.5",
1573
+ "@img/sharp-linuxmusl-x64": "0.34.5",
1574
+ "@img/sharp-wasm32": "0.34.5",
1575
+ "@img/sharp-win32-arm64": "0.34.5",
1576
+ "@img/sharp-win32-ia32": "0.34.5",
1577
+ "@img/sharp-win32-x64": "0.34.5"
1578
+ }
1579
+ },
1580
+ "node_modules/source-map-js": {
1581
+ "version": "1.2.1",
1582
+ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
1583
+ "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
1584
+ "license": "BSD-3-Clause",
1585
+ "engines": {
1586
+ "node": ">=0.10.0"
1587
+ }
1588
+ },
1589
+ "node_modules/styled-jsx": {
1590
+ "version": "5.1.6",
1591
+ "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.6.tgz",
1592
+ "integrity": "sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==",
1593
+ "license": "MIT",
1594
+ "dependencies": {
1595
+ "client-only": "0.0.1"
1596
+ },
1597
+ "engines": {
1598
+ "node": ">= 12.0.0"
1599
+ },
1600
+ "peerDependencies": {
1601
+ "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0"
1602
+ },
1603
+ "peerDependenciesMeta": {
1604
+ "@babel/core": {
1605
+ "optional": true
1606
+ },
1607
+ "babel-plugin-macros": {
1608
+ "optional": true
1609
+ }
1610
+ }
1611
+ },
1612
+ "node_modules/tailwindcss": {
1613
+ "version": "4.2.1",
1614
+ "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.2.1.tgz",
1615
+ "integrity": "sha512-/tBrSQ36vCleJkAOsy9kbNTgaxvGbyOamC30PRePTQe/o1MFwEKHQk4Cn7BNGaPtjp+PuUrByJehM1hgxfq4sw==",
1616
+ "dev": true,
1617
+ "license": "MIT"
1618
+ },
1619
+ "node_modules/tapable": {
1620
+ "version": "2.3.0",
1621
+ "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.0.tgz",
1622
+ "integrity": "sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==",
1623
+ "dev": true,
1624
+ "license": "MIT",
1625
+ "engines": {
1626
+ "node": ">=6"
1627
+ },
1628
+ "funding": {
1629
+ "type": "opencollective",
1630
+ "url": "https://opencollective.com/webpack"
1631
+ }
1632
+ },
1633
+ "node_modules/tslib": {
1634
+ "version": "2.8.1",
1635
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
1636
+ "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
1637
+ "license": "0BSD"
1638
+ },
1639
+ "node_modules/typescript": {
1640
+ "version": "5.9.3",
1641
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
1642
+ "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
1643
+ "dev": true,
1644
+ "license": "Apache-2.0",
1645
+ "bin": {
1646
+ "tsc": "bin/tsc",
1647
+ "tsserver": "bin/tsserver"
1648
+ },
1649
+ "engines": {
1650
+ "node": ">=14.17"
1651
+ }
1652
+ },
1653
+ "node_modules/undici-types": {
1654
+ "version": "6.21.0",
1655
+ "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz",
1656
+ "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==",
1657
+ "dev": true,
1658
+ "license": "MIT"
1659
+ }
1660
+ }
1661
+ }