@skyf0xx/hedgehog 0.1.21 → 2.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 (115) hide show
  1. package/README.md +92 -20
  2. package/bin/cli.mjs +107 -45
  3. package/package.json +2 -2
  4. package/src/agents/bootstrap.md +83 -50
  5. package/src/agents/front-end-eng.md +1 -1
  6. package/src/agents/landing-builder.md +96 -0
  7. package/src/agents/landing-critic.md +107 -0
  8. package/src/agents/landing-sequencer.md +112 -0
  9. package/src/agents/landing-strategist.md +217 -0
  10. package/src/agents/landing-systems.md +206 -0
  11. package/src/agents/planner.md +207 -143
  12. package/src/golden-cores/landing-page/.prettierignore +4 -0
  13. package/src/golden-cores/landing-page/.prettierrc.js +11 -0
  14. package/src/golden-cores/landing-page/.vscode/extensions.json +4 -0
  15. package/src/golden-cores/landing-page/.vscode/launch.json +11 -0
  16. package/src/golden-cores/landing-page/astro.config.mjs +11 -0
  17. package/src/golden-cores/landing-page/eslint.config.mjs +23 -0
  18. package/src/golden-cores/landing-page/gitignore.template +9 -0
  19. package/src/golden-cores/landing-page/package.json +40 -0
  20. package/src/golden-cores/landing-page/pnpm-lock.yaml +4587 -0
  21. package/src/golden-cores/landing-page/public/favicon.ico +0 -0
  22. package/src/golden-cores/landing-page/public/favicon.svg +9 -0
  23. package/src/golden-cores/landing-page/src/motifs/.gitkeep +0 -0
  24. package/src/golden-cores/landing-page/src/pages/index.astro +24 -0
  25. package/src/golden-cores/landing-page/src/sections/.gitkeep +0 -0
  26. package/src/golden-cores/landing-page/src/styles/global.css +18 -0
  27. package/src/golden-cores/landing-page/tsconfig.json +5 -0
  28. package/src/skills/hedgehog-bootstrap/SKILL.md +19 -19
  29. package/src/skills/{hedgehog-bootstrap-core → hedgehog-bootstrap-full-stack-app-core}/SKILL.md +19 -18
  30. package/src/skills/hedgehog-bootstrap-landing-page-core/SKILL.md +160 -0
  31. package/src/skills/hedgehog-landing-loop/SKILL.md +188 -0
  32. package/src/skills/hedgehog-planning-intake/SKILL.md +30 -17
  33. package/src/templates/CLAUDE.core.full-stack-app.md +131 -0
  34. package/src/templates/CLAUDE.core.landing-page.md +133 -0
  35. package/src/templates/CLAUDE.md +54 -183
  36. package/src/templates/TODO.core.full-stack-app.md +46 -0
  37. package/src/templates/TODO.core.landing-page.md +24 -0
  38. package/src/templates/TODO.md +6 -50
  39. /package/src/{golden-core → golden-cores/full-stack-app}/.env.example +0 -0
  40. /package/src/{golden-core → golden-cores/full-stack-app}/.github/workflows/phase-gate.yml +0 -0
  41. /package/src/{golden-core → golden-cores/full-stack-app}/.prettierignore +0 -0
  42. /package/src/{golden-core → golden-cores/full-stack-app}/.prettierrc +0 -0
  43. /package/src/{golden-core → golden-cores/full-stack-app}/.vscode/extensions.json +0 -0
  44. /package/src/{golden-core → golden-cores/full-stack-app}/apps/api/eslint.config.mjs +0 -0
  45. /package/src/{golden-core → golden-cores/full-stack-app}/apps/api/package.json +0 -0
  46. /package/src/{golden-core → golden-cores/full-stack-app}/apps/api/src/app/app.module.ts +0 -0
  47. /package/src/{golden-core → golden-cores/full-stack-app}/apps/api/src/app/health.controller.ts +0 -0
  48. /package/src/{golden-core → golden-cores/full-stack-app}/apps/api/src/assets/.gitkeep +0 -0
  49. /package/src/{golden-core → golden-cores/full-stack-app}/apps/api/src/main.ts +0 -0
  50. /package/src/{golden-core → golden-cores/full-stack-app}/apps/api/tsconfig.app.json +0 -0
  51. /package/src/{golden-core → golden-cores/full-stack-app}/apps/api/tsconfig.json +0 -0
  52. /package/src/{golden-core → golden-cores/full-stack-app}/apps/api/webpack.config.cjs +0 -0
  53. /package/src/{golden-core → golden-cores/full-stack-app}/apps/api-e2e/eslint.config.mjs +0 -0
  54. /package/src/{golden-core → golden-cores/full-stack-app}/apps/api-e2e/package.json +0 -0
  55. /package/src/{golden-core → golden-cores/full-stack-app}/apps/api-e2e/src/api/api.spec.ts +0 -0
  56. /package/src/{golden-core → golden-cores/full-stack-app}/apps/api-e2e/src/support/global-setup.ts +0 -0
  57. /package/src/{golden-core → golden-cores/full-stack-app}/apps/api-e2e/src/support/test-setup.ts +0 -0
  58. /package/src/{golden-core → golden-cores/full-stack-app}/apps/api-e2e/tsconfig.json +0 -0
  59. /package/src/{golden-core → golden-cores/full-stack-app}/apps/api-e2e/tsconfig.spec.json +0 -0
  60. /package/src/{golden-core → golden-cores/full-stack-app}/apps/api-e2e/vitest.config.mts +0 -0
  61. /package/src/{golden-core → golden-cores/full-stack-app}/apps/web/.prettierrc.js +0 -0
  62. /package/src/{golden-core → golden-cores/full-stack-app}/apps/web/.swcrc +0 -0
  63. /package/src/{golden-core → golden-cores/full-stack-app}/apps/web/components.json +0 -0
  64. /package/src/{golden-core → golden-cores/full-stack-app}/apps/web/eslint.config.mjs +0 -0
  65. /package/src/{golden-core → golden-cores/full-stack-app}/apps/web/index.d.ts +0 -0
  66. /package/src/{golden-core → golden-cores/full-stack-app}/apps/web/next-env.d.ts +0 -0
  67. /package/src/{golden-core → golden-cores/full-stack-app}/apps/web/next.config.js +0 -0
  68. /package/src/{golden-core → golden-cores/full-stack-app}/apps/web/package.json +0 -0
  69. /package/src/{golden-core → golden-cores/full-stack-app}/apps/web/postcss.config.mjs +0 -0
  70. /package/src/{golden-core → golden-cores/full-stack-app}/apps/web/public/.gitkeep +0 -0
  71. /package/src/{golden-core → golden-cores/full-stack-app}/apps/web/public/favicon.ico +0 -0
  72. /package/src/{golden-core → golden-cores/full-stack-app}/apps/web/src/app/global.css +0 -0
  73. /package/src/{golden-core → golden-cores/full-stack-app}/apps/web/src/app/layout.tsx +0 -0
  74. /package/src/{golden-core → golden-cores/full-stack-app}/apps/web/src/app/page.tsx +0 -0
  75. /package/src/{golden-core → golden-cores/full-stack-app}/apps/web/src/app/providers.tsx +0 -0
  76. /package/src/{golden-core → golden-cores/full-stack-app}/apps/web/src/components/theme-toggle.tsx +0 -0
  77. /package/src/{golden-core → golden-cores/full-stack-app}/apps/web/src/components/ui/button.tsx +0 -0
  78. /package/src/{golden-core → golden-cores/full-stack-app}/apps/web/src/lib/utils.ts +0 -0
  79. /package/src/{golden-core → golden-cores/full-stack-app}/apps/web/tsconfig.json +0 -0
  80. /package/src/{golden-core → golden-cores/full-stack-app}/apps/web-e2e/eslint.config.mjs +0 -0
  81. /package/src/{golden-core → golden-cores/full-stack-app}/apps/web-e2e/package.json +0 -0
  82. /package/src/{golden-core → golden-cores/full-stack-app}/apps/web-e2e/playwright.config.mts +0 -0
  83. /package/src/{golden-core → golden-cores/full-stack-app}/apps/web-e2e/src/example.spec.ts +0 -0
  84. /package/src/{golden-core → golden-cores/full-stack-app}/apps/web-e2e/tsconfig.json +0 -0
  85. /package/src/{golden-core → golden-cores/full-stack-app}/commitlint.config.cjs +0 -0
  86. /package/src/{golden-core → golden-cores/full-stack-app}/docker-compose.yml +0 -0
  87. /package/src/{golden-core → golden-cores/full-stack-app}/eslint.config.mjs +0 -0
  88. /package/src/{golden-core → golden-cores/full-stack-app}/gitignore.template +0 -0
  89. /package/src/{golden-core → golden-cores/full-stack-app}/lefthook.yml +0 -0
  90. /package/src/{golden-core → golden-cores/full-stack-app}/nx.json +0 -0
  91. /package/src/{golden-core → golden-cores/full-stack-app}/package.json +0 -0
  92. /package/src/{golden-core → golden-cores/full-stack-app}/packages/config/eslint-base.js +0 -0
  93. /package/src/{golden-core → golden-cores/full-stack-app}/packages/config/package.json +0 -0
  94. /package/src/{golden-core → golden-cores/full-stack-app}/packages/config/prettier.js +0 -0
  95. /package/src/{golden-core → golden-cores/full-stack-app}/packages/config/src/env.schema.spec.ts +0 -0
  96. /package/src/{golden-core → golden-cores/full-stack-app}/packages/config/src/env.schema.ts +0 -0
  97. /package/src/{golden-core → golden-cores/full-stack-app}/packages/config/src/index.ts +0 -0
  98. /package/src/{golden-core → golden-cores/full-stack-app}/packages/config/tsconfig.json +0 -0
  99. /package/src/{golden-core → golden-cores/full-stack-app}/packages/config/tsconfig.lib.json +0 -0
  100. /package/src/{golden-core → golden-cores/full-stack-app}/packages/config/tsconfig.spec.json +0 -0
  101. /package/src/{golden-core → golden-cores/full-stack-app}/packages/config/vitest.config.mts +0 -0
  102. /package/src/{golden-core → golden-cores/full-stack-app}/packages/db/package.json +0 -0
  103. /package/src/{golden-core → golden-cores/full-stack-app}/packages/db/src/index.ts +0 -0
  104. /package/src/{golden-core → golden-cores/full-stack-app}/packages/db/src/lib/db.spec.ts +0 -0
  105. /package/src/{golden-core → golden-cores/full-stack-app}/packages/db/src/lib/db.ts +0 -0
  106. /package/src/{golden-core → golden-cores/full-stack-app}/packages/db/tsconfig.json +0 -0
  107. /package/src/{golden-core → golden-cores/full-stack-app}/packages/db/tsconfig.lib.json +0 -0
  108. /package/src/{golden-core → golden-cores/full-stack-app}/packages/db/tsconfig.spec.json +0 -0
  109. /package/src/{golden-core → golden-cores/full-stack-app}/packages/db/vitest.config.mts +0 -0
  110. /package/src/{golden-core → golden-cores/full-stack-app}/pnpm-lock.yaml +0 -0
  111. /package/src/{golden-core → golden-cores/full-stack-app}/pnpm-workspace.yaml +0 -0
  112. /package/src/{golden-core → golden-cores/full-stack-app}/tools/phase-gate.cjs +0 -0
  113. /package/src/{golden-core → golden-cores/full-stack-app}/tsconfig.base.json +0 -0
  114. /package/src/{golden-core → golden-cores/full-stack-app}/tsconfig.json +0 -0
  115. /package/src/{golden-core → golden-cores/full-stack-app}/vitest.workspace.ts +0 -0
@@ -0,0 +1,4587 @@
1
+ lockfileVersion: '9.0'
2
+
3
+ settings:
4
+ autoInstallPeers: true
5
+ excludeLinksFromLockfile: false
6
+
7
+ importers:
8
+
9
+ .:
10
+ dependencies:
11
+ '@tailwindcss/vite':
12
+ specifier: ^4.3.3
13
+ version: 4.3.3(vite@8.1.5(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0))
14
+ astro:
15
+ specifier: ^7.1.3
16
+ version: 7.1.3(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1)(jiti@2.7.0)(yaml@2.9.0)
17
+ gsap:
18
+ specifier: ^3.15.0
19
+ version: 3.15.0
20
+ lenis:
21
+ specifier: ^1.3.25
22
+ version: 1.3.25
23
+ paper:
24
+ specifier: ^0.12.18
25
+ version: 0.12.18
26
+ split-type:
27
+ specifier: ^0.3.4
28
+ version: 0.3.4
29
+ tailwindcss:
30
+ specifier: ^4.3.3
31
+ version: 4.3.3
32
+ devDependencies:
33
+ '@astrojs/check':
34
+ specifier: ^0.9.9
35
+ version: 0.9.9(prettier-plugin-astro@0.14.1)(prettier@3.9.6)(typescript@5.9.3)
36
+ '@typescript-eslint/eslint-plugin':
37
+ specifier: ^8.65.0
38
+ version: 8.65.0(@typescript-eslint/parser@8.65.0(eslint@10.8.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.8.0(jiti@2.7.0))(typescript@5.9.3)
39
+ '@typescript-eslint/parser':
40
+ specifier: ^8.65.0
41
+ version: 8.65.0(eslint@10.8.0(jiti@2.7.0))(typescript@5.9.3)
42
+ astro-eslint-parser:
43
+ specifier: ^3.0.0
44
+ version: 3.0.0(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1)
45
+ eslint:
46
+ specifier: ^10.8.0
47
+ version: 10.8.0(jiti@2.7.0)
48
+ eslint-plugin-astro:
49
+ specifier: ^3.0.1
50
+ version: 3.0.1(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1)(@typescript-eslint/parser@8.65.0(eslint@10.8.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.8.0(jiti@2.7.0))
51
+ prettier:
52
+ specifier: ^3.9.6
53
+ version: 3.9.6
54
+ prettier-plugin-astro:
55
+ specifier: ^0.14.1
56
+ version: 0.14.1
57
+ prettier-plugin-tailwindcss:
58
+ specifier: ^0.8.1
59
+ version: 0.8.1(prettier-plugin-astro@0.14.1)(prettier@3.9.6)
60
+ typescript:
61
+ specifier: ^5.9.3
62
+ version: 5.9.3
63
+
64
+ packages:
65
+
66
+ '@astrojs/check@0.9.9':
67
+ resolution: {integrity: sha512-A5UW8uIuErLWEoRQvzgXpO1gTjUFtK8r7nU2Z7GewAMxUb7bPvpk11qaKKgxqXlHJWlAvaaxy+Xg28A6bmQ1Tg==}
68
+ hasBin: true
69
+ peerDependencies:
70
+ typescript: ^5.0.0 || ^6.0.0
71
+
72
+ '@astrojs/compiler-binding-darwin-arm64@0.3.1':
73
+ resolution: {integrity: sha512-IEmEF2fUIlTHtpeE/isyEGVOB14cEyh/LZOFYt6wn3jNyVpdC8aR5OZ+RzFUR/f+8ZDM1LaMwZKvoA7eMyJeFw==}
74
+ engines: {node: ^20.19.0 || >=22.12.0}
75
+ cpu: [arm64]
76
+ os: [darwin]
77
+
78
+ '@astrojs/compiler-binding-darwin-x64@0.3.1':
79
+ resolution: {integrity: sha512-GF2kIxjpPDLsn94zbZNMsxEmkU828QqnmM7kiQJnaooS3jmI+I7kk6+oI6EpwOsK3femCMdcm+wmOsEqtGrmjQ==}
80
+ engines: {node: ^20.19.0 || >=22.12.0}
81
+ cpu: [x64]
82
+ os: [darwin]
83
+
84
+ '@astrojs/compiler-binding-linux-arm64-gnu@0.3.1':
85
+ resolution: {integrity: sha512-XJL3SDmOtVrqFhCirNcHwE91+IesJqlgNo23I4qW9QUYfwzm/TBZuH61fgqsb1ttgR1mMYz6ooPWs0JDhwMqpQ==}
86
+ engines: {node: ^20.19.0 || >=22.12.0}
87
+ cpu: [arm64]
88
+ os: [linux]
89
+
90
+ '@astrojs/compiler-binding-linux-arm64-musl@0.3.1':
91
+ resolution: {integrity: sha512-xqE8BVbDoBueK/B47w30PtkVofUWJKGkwoMVE+EOMLf11rnoANxIAdA9FPqY+rng4oNI5ndHGsri1yPj2k8vZQ==}
92
+ engines: {node: ^20.19.0 || >=22.12.0}
93
+ cpu: [arm64]
94
+ os: [linux]
95
+
96
+ '@astrojs/compiler-binding-linux-x64-gnu@0.3.1':
97
+ resolution: {integrity: sha512-1y0StU1qiCuDFH3rmbRJXcxdfHxFPrES1Rd+RLffosvUR7I2cH5SF5SFnBN9vXpzpkmyElZm3Yr47iJBPN7vVA==}
98
+ engines: {node: ^20.19.0 || >=22.12.0}
99
+ cpu: [x64]
100
+ os: [linux]
101
+
102
+ '@astrojs/compiler-binding-linux-x64-musl@0.3.1':
103
+ resolution: {integrity: sha512-16q0fYf7kpbmdObZEeZJEup8hQv/whgNwVjrSvT8umrKwLDSnNIWiQpm09lQQu6bweZB0XyIvHwlPitvJhC+hg==}
104
+ engines: {node: ^20.19.0 || >=22.12.0}
105
+ cpu: [x64]
106
+ os: [linux]
107
+
108
+ '@astrojs/compiler-binding-wasm32-wasi@0.3.1':
109
+ resolution: {integrity: sha512-cB456shIwDv/PrVT+2QG7LFndpHkVge5HjqADKZgGaAc9JHVktCtjSrcdkRQ+3tbkPazNKaTLRjXLIiz2NIx9g==}
110
+ engines: {node: '>=14.0.0'}
111
+ cpu: [wasm32]
112
+
113
+ '@astrojs/compiler-binding-win32-arm64-msvc@0.3.1':
114
+ resolution: {integrity: sha512-ur/9+If/yTE69mmeX5MqSZndL0HOyx67GeNZUy3N7wVdWpLz9UTJXwyWS4UR2PUQHitghjsM5xoX0Ge56WRVQQ==}
115
+ engines: {node: ^20.19.0 || >=22.12.0}
116
+ cpu: [arm64]
117
+ os: [win32]
118
+
119
+ '@astrojs/compiler-binding-win32-x64-msvc@0.3.1':
120
+ resolution: {integrity: sha512-k0W+kDBzDkNZOqu4kElDvCOIbKw5Ut9S1WZ1Krj3KTgNuBERNKXsMMsRLLcbgfdMdbe7bTekQLshZrrvmYpmwA==}
121
+ engines: {node: ^20.19.0 || >=22.12.0}
122
+ cpu: [x64]
123
+ os: [win32]
124
+
125
+ '@astrojs/compiler-binding@0.3.1':
126
+ resolution: {integrity: sha512-DaAUj29AIBU2XdJ8uwcab8lW5O2pk9pY8AXkcMw0sw77nVa3oeTYRcO+Dvbbpoexf6ThMc0FMWYCQ/wN1/T7oQ==}
127
+ engines: {node: ^20.19.0 || >=22.12.0}
128
+
129
+ '@astrojs/compiler-rs@0.3.1':
130
+ resolution: {integrity: sha512-aT7xkgsbNoS6nriY5qKpbihK43slFHO41iqgHCTdOvn1ifaQxLCc5yXy+6GzAtiafoaC1zA7OwVXCXMsvUZOkg==}
131
+ engines: {node: '>=22.12.0'}
132
+
133
+ '@astrojs/compiler@2.13.1':
134
+ resolution: {integrity: sha512-f3FN83d2G/v32ipNClRKgYv30onQlMZX1vCeZMjPsMMPl1mDpmbl0+N5BYo4S/ofzqJyS5hvwacEo0CCVDn/Qg==}
135
+
136
+ '@astrojs/internal-helpers@0.10.1':
137
+ resolution: {integrity: sha512-5phcroT/vmOOrYuuAxtkbPixy5hePtlz9i8K4OeDv3dNK6/UQRuXPOSRTxIOBbUY5Sonw2UaxjbuVc43Mcir6Q==}
138
+
139
+ '@astrojs/language-server@2.16.13':
140
+ resolution: {integrity: sha512-ekOa+CYprEq5n4EJC1qTIAhLk49HZIUQuFwrEuF+3JK/pdMaYnWoREFUI2A0KEPOJiFA2kamBzKzbYljDvUxLg==}
141
+ hasBin: true
142
+ peerDependencies:
143
+ prettier: ^3.0.0
144
+ prettier-plugin-astro: '>=0.11.0'
145
+ peerDependenciesMeta:
146
+ prettier:
147
+ optional: true
148
+ prettier-plugin-astro:
149
+ optional: true
150
+
151
+ '@astrojs/markdown-satteri@0.3.4':
152
+ resolution: {integrity: sha512-6Lvt/bQZEBW+zzdhPblvfZEy5PGEYJaUsUqaCgwHeRPxZJL1gc9I+DRLKWJjjYTWDzVUTzXlMq4WwSK+X34CVw==}
153
+
154
+ '@astrojs/prism@4.0.2':
155
+ resolution: {integrity: sha512-KTivpmnz6lDsC6o9H4+DNm2SrE/GHzw8cNAvEJwAvUT+eoaEnn/4NtbDNfRRaxaJHdp15gf+tfHAWiXR4wB3BA==}
156
+ engines: {node: '>=22.12.0'}
157
+
158
+ '@astrojs/telemetry@3.3.3':
159
+ resolution: {integrity: sha512-C1TLn5sPJr0x4vk56piHWKbnqlEB8BKyte5Y45V02U+D7BGO5eMqZDH5aPjnkXQWJggvmsTXxH03QMZ9NgWLzQ==}
160
+ engines: {node: 18.20.8 || ^20.3.0 || >=22.0.0}
161
+
162
+ '@astrojs/yaml2ts@0.2.4':
163
+ resolution: {integrity: sha512-8oddpOae35pJsXPQXhTkM0ypfKPskVsh2bCxRtbf7e+/Epw2nReakFYpLKjZMEr75CsoF203PMnCocpfz0s69A==}
164
+
165
+ '@babel/helper-string-parser@7.29.7':
166
+ resolution: {integrity: sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==}
167
+ engines: {node: '>=6.9.0'}
168
+
169
+ '@babel/helper-validator-identifier@7.29.7':
170
+ resolution: {integrity: sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==}
171
+ engines: {node: '>=6.9.0'}
172
+
173
+ '@babel/parser@7.29.7':
174
+ resolution: {integrity: sha512-hnORnjP/1P/zFEndoeX+n+t1RwWRJiJpM/jO7FW32Kn9r5+sJB2JWOdYo4L6k78j15eCwY3Gm/7364B1EMwtNg==}
175
+ engines: {node: '>=6.0.0'}
176
+ hasBin: true
177
+
178
+ '@babel/types@7.29.7':
179
+ resolution: {integrity: sha512-4zBIxpPzowiZpusoFkyGVwakdRJUyuH5PxQ/PrqghfdFWWasvnCdPfQXHrenDai+gyLARulZjZowCOj6fjT4pA==}
180
+ engines: {node: '>=6.9.0'}
181
+
182
+ '@bruits/satteri-darwin-arm64@0.9.5':
183
+ resolution: {integrity: sha512-iw4nZgx9v30lWo/MTngQqi1pI78KI0DnkSm+lVJGYdmPLgAyDNJigVhpG42/Iq55A6c1Ll8q66ljyyRiQUxwow==}
184
+ cpu: [arm64]
185
+ os: [darwin]
186
+
187
+ '@bruits/satteri-darwin-x64@0.9.5':
188
+ resolution: {integrity: sha512-6T26Z5Kf3cFW2PSlk9p7zT7yVxvuBSiJvYyz9u8KjYwMTqZyIDOj2wDyNpxKV4+6yUVG7rddq2QwvG/8LJA2+Q==}
189
+ cpu: [x64]
190
+ os: [darwin]
191
+
192
+ '@bruits/satteri-linux-arm64-gnu@0.9.5':
193
+ resolution: {integrity: sha512-u51id17uJwNEMK9nBlICsq6U31c+XVqQueVBkwRIzZG+gMpS8TOJctt5h5Wz33Z8xnMdTd+adtACVz0yHgGuOA==}
194
+ cpu: [arm64]
195
+ os: [linux]
196
+
197
+ '@bruits/satteri-linux-arm64-musl@0.9.5':
198
+ resolution: {integrity: sha512-v39HxiwGC5Rqm01HksP6+5Y+xKLPlsuVFgIgpEAo+SiQ22c+mJVhS3u7Z6ePAKdhL5NJoK1xq70kLz3L13AhpQ==}
199
+ cpu: [arm64]
200
+ os: [linux]
201
+
202
+ '@bruits/satteri-linux-x64-gnu@0.9.5':
203
+ resolution: {integrity: sha512-F3uO8uFp3pAP5ZGXttwvh57GS7s0lL953tnNdyI2gRyP4kOOkp6pyGojNJzCjkDvWI2Cvb9iNrKok3aqQPauAw==}
204
+ cpu: [x64]
205
+ os: [linux]
206
+
207
+ '@bruits/satteri-linux-x64-musl@0.9.5':
208
+ resolution: {integrity: sha512-bicEqglLlz++mWyADaZoP0JY20s4vDfLjaPYgQqC+NI4zZLTOOg1T4GB8aqtc822Pqji8SQBmSrTb7CrP8i08Q==}
209
+ cpu: [x64]
210
+ os: [linux]
211
+
212
+ '@bruits/satteri-wasm32-wasi@0.9.5':
213
+ resolution: {integrity: sha512-zauAuMwfPnKPUkd4AFixRFpXdgKwP2mKgxrIIo2gJzW0/ZneF9dbHnLkojSpaBnCCp7VUL1hIi5WWZvB1CqmAQ==}
214
+ engines: {node: '>=14.0.0'}
215
+ cpu: [wasm32]
216
+
217
+ '@bruits/satteri-win32-arm64-msvc@0.9.5':
218
+ resolution: {integrity: sha512-SrfE7NEsgZjBvU3c+RR6oQRu0ToXY5uVJEbieXEF0YTctIV2zAVlbaMjWLts074QCgh3a+XHWkR/lWh2VH2LUg==}
219
+ cpu: [arm64]
220
+ os: [win32]
221
+
222
+ '@bruits/satteri-win32-x64-msvc@0.9.5':
223
+ resolution: {integrity: sha512-5Kw9ZAtTGS8WHizyn+CJhjjfIQrw+7jcZodpmpXJjefnO15M8UexIi6JR2E5thyvsmHyhL6ZDDMUNR4bKJPd4g==}
224
+ cpu: [x64]
225
+ os: [win32]
226
+
227
+ '@capsizecss/unpack@4.0.1':
228
+ resolution: {integrity: sha512-CuNiSqg7+e1cO/GjffyMOm5Tt2jUF9CWHHnvQ/UkqvtkGfHdgwEC0wpmq7fkN3gxwpRnrAN0WzO3vREKmNolMQ==}
229
+ engines: {node: '>=18'}
230
+
231
+ '@clack/core@1.4.3':
232
+ resolution: {integrity: sha512-/kr3UWNtdJfxZtPgDqUOmG2pvwlmcLGheex5yiZKdwbzZJxhV+HMNR9QNmyY5cGwTNV6LrR7Jtp+KjhUAP1qBQ==}
233
+ engines: {node: '>= 20.12.0'}
234
+
235
+ '@clack/prompts@1.7.0':
236
+ resolution: {integrity: sha512-y7/yvZ2TPAnR9+jnc00klvNNLkJiXFFrQA/hlLCcxA9a2A4zQIOimyFQ9XfwYKiGD1fb5GY8vbKIIgO8d5Tb2A==}
237
+ engines: {node: '>= 20.12.0'}
238
+
239
+ '@emmetio/abbreviation@2.3.3':
240
+ resolution: {integrity: sha512-mgv58UrU3rh4YgbE/TzgLQwJ3pFsHHhCLqY20aJq+9comytTXUDNGG/SMtSeMJdkpxgXSXunBGLD8Boka3JyVA==}
241
+
242
+ '@emmetio/css-abbreviation@2.1.8':
243
+ resolution: {integrity: sha512-s9yjhJ6saOO/uk1V74eifykk2CBYi01STTK3WlXWGOepyKa23ymJ053+DNQjpFcy1ingpaO7AxCcwLvHFY9tuw==}
244
+
245
+ '@emmetio/css-parser@0.4.1':
246
+ resolution: {integrity: sha512-2bC6m0MV/voF4CTZiAbG5MWKbq5EBmDPKu9Sb7s7nVcEzNQlrZP6mFFFlIaISM8X6514H9shWMme1fCm8cWAfQ==}
247
+
248
+ '@emmetio/html-matcher@1.3.0':
249
+ resolution: {integrity: sha512-NTbsvppE5eVyBMuyGfVu2CRrLvo7J4YHb6t9sBFLyY03WYhXET37qA4zOYUjBWFCRHO7pS1B9khERtY0f5JXPQ==}
250
+
251
+ '@emmetio/scanner@1.0.4':
252
+ resolution: {integrity: sha512-IqRuJtQff7YHHBk4G8YZ45uB9BaAGcwQeVzgj/zj8/UdOhtQpEIupUhSk8dys6spFIWVZVeK20CzGEnqR5SbqA==}
253
+
254
+ '@emmetio/stream-reader-utils@0.1.0':
255
+ resolution: {integrity: sha512-ZsZ2I9Vzso3Ho/pjZFsmmZ++FWeEd/txqybHTm4OgaZzdS8V9V/YYWQwg5TC38Z7uLWUV1vavpLLbjJtKubR1A==}
256
+
257
+ '@emmetio/stream-reader@2.2.0':
258
+ resolution: {integrity: sha512-fXVXEyFA5Yv3M3n8sUGT7+fvecGrZP4k6FnWWMSZVQf69kAq0LLpaBQLGcPR30m3zMmKYhECP4k/ZkzvhEW5kw==}
259
+
260
+ '@emnapi/core@1.11.1':
261
+ resolution: {integrity: sha512-RSvbQmHzdKzNsLYa/wHrbc3KN4sYLKAdPZxqiM2HATqv/SBk2/ENSHpvXGaLOMcsAyz0poEGqkmmKYG3OWiJEQ==}
262
+
263
+ '@emnapi/runtime@1.11.1':
264
+ resolution: {integrity: sha512-vgj7R3y3Wgx24IQaGPA/R6YFXLHVMOZ0uVEyIQPaWs+rd1AzfEMXlAC22FYwO1XkKR6NPsq7mUandH8oIRdZFw==}
265
+
266
+ '@emnapi/runtime@1.11.3':
267
+ resolution: {integrity: sha512-Xz4Tpyki7XyrpbUK1jR1AhdAdaXyhhY4lZ3neLodmhpuWfy2PAQN5B46sAiU4liOXGLkHypn/qU+jvfWSCYYLA==}
268
+
269
+ '@emnapi/wasi-threads@1.2.2':
270
+ resolution: {integrity: sha512-c95qOXkHdydNKhscBTebqEC1CVAZpyqOfVfBzQ1qgzyl3gfeldUjIggDbIZgDKsHLgnsM+igH7TJ/eAasaVuMA==}
271
+
272
+ '@esbuild/aix-ppc64@0.28.1':
273
+ resolution: {integrity: sha512-Svl7tq8k/08+p6CXPpRjQ1fKX+1odH/BQbb48fV6fj3CWHhsoIOoY87w1oHXm0qEpkIK3ZfVgp0hed3XBXzXMQ==}
274
+ engines: {node: '>=18'}
275
+ cpu: [ppc64]
276
+ os: [aix]
277
+
278
+ '@esbuild/android-arm64@0.28.1':
279
+ resolution: {integrity: sha512-34EGEbCIAgosYz6goLcopX6Mo7NyGv9tfwEM2/7Ce2VcVRk568iSvniGWcUXIy7wEDR1wzolcxcriFVrWYcwBg==}
280
+ engines: {node: '>=18'}
281
+ cpu: [arm64]
282
+ os: [android]
283
+
284
+ '@esbuild/android-arm@0.28.1':
285
+ resolution: {integrity: sha512-0k2F129Xdio1TdJfzJ8sy1Q47vUD2NnwdhiAf7drUN1EBTfPf4hsFCtmMgu/6m8JSzsBrlmVjudMBQqOfG8usQ==}
286
+ engines: {node: '>=18'}
287
+ cpu: [arm]
288
+ os: [android]
289
+
290
+ '@esbuild/android-x64@0.28.1':
291
+ resolution: {integrity: sha512-dbwY7ltSMDWsRatcRpCnES4F+im88OCUgGZjy52shC7GqHRE/cYlxNbB4Z4UpJswpcc4Qxd2oE/ufM0p61IKng==}
292
+ engines: {node: '>=18'}
293
+ cpu: [x64]
294
+ os: [android]
295
+
296
+ '@esbuild/darwin-arm64@0.28.1':
297
+ resolution: {integrity: sha512-TZbWkQY7kvTAXbXUT7uVACR5cMHsDiSz9z7ZKAX/RTq/WJEk3QyRr0wZpNhBDX+/0CtdqUIJlOiodQcta6tY3Q==}
298
+ engines: {node: '>=18'}
299
+ cpu: [arm64]
300
+ os: [darwin]
301
+
302
+ '@esbuild/darwin-x64@0.28.1':
303
+ resolution: {integrity: sha512-zfdzgK9ACBNZLI/CyHTOx81SyNbM6YXn7rxSgX97VjyiPl9W1i4Ka4fgKECEoFCKGpvBj5qArWIGgQjOwkgskQ==}
304
+ engines: {node: '>=18'}
305
+ cpu: [x64]
306
+ os: [darwin]
307
+
308
+ '@esbuild/freebsd-arm64@0.28.1':
309
+ resolution: {integrity: sha512-wG2EA8ENdEI0qhkSZMjfqrdY+ziCYCPMmtZjjIwOmXFjmyzEHn+UUxk5of+SYsjtfs3VpnlC7QLzSI5hY/rOAw==}
310
+ engines: {node: '>=18'}
311
+ cpu: [arm64]
312
+ os: [freebsd]
313
+
314
+ '@esbuild/freebsd-x64@0.28.1':
315
+ resolution: {integrity: sha512-i7dZ9vQgnvSCzi/rYCXNgtF/U+eKZNJBzu3eTQbRgHnM7tNSizLOkRFAl3qzVc/Op/u5YkHHa4pf/3DOYHthLQ==}
316
+ engines: {node: '>=18'}
317
+ cpu: [x64]
318
+ os: [freebsd]
319
+
320
+ '@esbuild/linux-arm64@0.28.1':
321
+ resolution: {integrity: sha512-yHs+0uc8+nvEAfAfxrWQKK5peSNzBc4PegcMO0EJ2hT71uA7vB8Ihg2e77R2P7SG5uYjPbHlLLmve4LLLRCf0g==}
322
+ engines: {node: '>=18'}
323
+ cpu: [arm64]
324
+ os: [linux]
325
+
326
+ '@esbuild/linux-arm@0.28.1':
327
+ resolution: {integrity: sha512-qVXBOHQS+d5Y722GwJzJUtOLlX7km3CraOaGormF1pDtPd2C/l1SHRPgjLunLGe51Sh5YYWKMFDyV4SxgMQYTQ==}
328
+ engines: {node: '>=18'}
329
+ cpu: [arm]
330
+ os: [linux]
331
+
332
+ '@esbuild/linux-ia32@0.28.1':
333
+ resolution: {integrity: sha512-d1z4ZuP0ajrfz/FhGT4vv278rX8KnPPJx8i5+AtK7TYbx9Le9F1hyzurZpkEyjkGa9dUGhQow4C1NmeGvqxN2w==}
334
+ engines: {node: '>=18'}
335
+ cpu: [ia32]
336
+ os: [linux]
337
+
338
+ '@esbuild/linux-loong64@0.28.1':
339
+ resolution: {integrity: sha512-M5sRjUVZrkm1OAPR3dlOYzNmN+loZKGVi1VUQGrwuqLcbR6qeAz+famMhjASeH3YVKvZz+zT1jlh/keC3Rj/lg==}
340
+ engines: {node: '>=18'}
341
+ cpu: [loong64]
342
+ os: [linux]
343
+
344
+ '@esbuild/linux-mips64el@0.28.1':
345
+ resolution: {integrity: sha512-mRObBZeHh2OxcBFPWE/FjylkRgZdYuiTR3vaTozquCGOH14iP9oN4x4Ge81CoIDYQrXmIxpFumJBu5MtZpnQJQ==}
346
+ engines: {node: '>=18'}
347
+ cpu: [mips64el]
348
+ os: [linux]
349
+
350
+ '@esbuild/linux-ppc64@0.28.1':
351
+ resolution: {integrity: sha512-slScBsMAb3GFDcdrCgLwZtPYRoH2H/youv10QiZyRjmsP48fznoveWytSgCI/R0ZcUgpc0ZhIUEx6LHts8yrfQ==}
352
+ engines: {node: '>=18'}
353
+ cpu: [ppc64]
354
+ os: [linux]
355
+
356
+ '@esbuild/linux-riscv64@0.28.1':
357
+ resolution: {integrity: sha512-kw0owk1o0GFETUJyW0jc0G4Yzs0BHZn0JDZ8JRT088vjJYX777BAs1fDGxAC+q831qOs2DTC96mNsG2opdfyyQ==}
358
+ engines: {node: '>=18'}
359
+ cpu: [riscv64]
360
+ os: [linux]
361
+
362
+ '@esbuild/linux-s390x@0.28.1':
363
+ resolution: {integrity: sha512-/lAIjX8aYFRByhh6L5rYtPEDRqa9de/4V/juOXcta5frjvzXO4/sqEtyytse0g3zZFuWu5cDN0MkLz2qRDD2Ag==}
364
+ engines: {node: '>=18'}
365
+ cpu: [s390x]
366
+ os: [linux]
367
+
368
+ '@esbuild/linux-x64@0.28.1':
369
+ resolution: {integrity: sha512-u/anNYF2mmVOEDwLtnQ1wOr3EZ9sTNGLWrsYGYwHWzGA3Si84IOkHXlbWTD1NB+9/1lcnweYKO54uhxZydNzfA==}
370
+ engines: {node: '>=18'}
371
+ cpu: [x64]
372
+ os: [linux]
373
+
374
+ '@esbuild/netbsd-arm64@0.28.1':
375
+ resolution: {integrity: sha512-oks0DYbLwWMmaakTsCb+zL4E+aHRVLom9IJZOAthMQEPiQmydXHkziYEsGYRx0uNV/IjEKGAV941JzH02pflqw==}
376
+ engines: {node: '>=18'}
377
+ cpu: [arm64]
378
+ os: [netbsd]
379
+
380
+ '@esbuild/netbsd-x64@0.28.1':
381
+ resolution: {integrity: sha512-aeL6lAnN89Hz43Mlh1G8ARasbuoYvSITDEx0tHh5b7jJnHcssqgjy9Yx430GDpmCa6OyrKoS0aNRjKundRizGg==}
382
+ engines: {node: '>=18'}
383
+ cpu: [x64]
384
+ os: [netbsd]
385
+
386
+ '@esbuild/openbsd-arm64@0.28.1':
387
+ resolution: {integrity: sha512-MEFJe5C3R8pwXdZ5Y21oo6m7ePiS0d9pWucn99O/wvyJZChoIQKrQDxKrGeW8F5+T0okTHesAmDeiHDTIq0V/Q==}
388
+ engines: {node: '>=18'}
389
+ cpu: [arm64]
390
+ os: [openbsd]
391
+
392
+ '@esbuild/openbsd-x64@0.28.1':
393
+ resolution: {integrity: sha512-i/ZLIOafE0Z8cI/XANJAixoJL/uRAoS2xOA3rb0xN+KK0K177cMAsQYkzHtBrtMXAKuAc7HGgcWiZ/sRC1Nxgw==}
394
+ engines: {node: '>=18'}
395
+ cpu: [x64]
396
+ os: [openbsd]
397
+
398
+ '@esbuild/openharmony-arm64@0.28.1':
399
+ resolution: {integrity: sha512-ge+Z7EXFNt2BO1oAMsVpiQ8EwndV9i1xXerAeTIK7AtPs3bKFXQM7nlRxDSIUIMeueR1CNXxqztLzdNeReKBJg==}
400
+ engines: {node: '>=18'}
401
+ cpu: [arm64]
402
+ os: [openharmony]
403
+
404
+ '@esbuild/sunos-x64@0.28.1':
405
+ resolution: {integrity: sha512-BEjgtECkL3vY+SaSQ6nzVfiALUeFxpawyp8Jmf5PtYhf1Ug40N1h/hxlhts+f1FvSvarEigdxS3BlSMI2PJLcQ==}
406
+ engines: {node: '>=18'}
407
+ cpu: [x64]
408
+ os: [sunos]
409
+
410
+ '@esbuild/win32-arm64@0.28.1':
411
+ resolution: {integrity: sha512-lCv9eK/H6ZJWbE7bh2nw54CZ9M2nupBxJcTsdk/QQnWkdSjKGuxmmH8/GWrlT1eMmZfn4dGcCjRte397WqfQXA==}
412
+ engines: {node: '>=18'}
413
+ cpu: [arm64]
414
+ os: [win32]
415
+
416
+ '@esbuild/win32-ia32@0.28.1':
417
+ resolution: {integrity: sha512-zvb/mB2bSCoJOpoCBgYKKpX6YM6mJBlBUVUtVj41DlZJVEB6/0CKlRYxP5wWl1C1ILiCoAU5wZZ4q1P3qeS6Eg==}
418
+ engines: {node: '>=18'}
419
+ cpu: [ia32]
420
+ os: [win32]
421
+
422
+ '@esbuild/win32-x64@0.28.1':
423
+ resolution: {integrity: sha512-bm4Mowrv+GXMlpWX++EcXw/iLyd1o3+bJkC2DkWXYVvgZCqD/bSj9ctZeAMC3cIxgjRVR2Dufaiu4YPxr5gW1A==}
424
+ engines: {node: '>=18'}
425
+ cpu: [x64]
426
+ os: [win32]
427
+
428
+ '@eslint-community/eslint-utils@4.10.1':
429
+ resolution: {integrity: sha512-cuadcxVFE8sDK6iWJbs8Sn0av2Nrh2QSGQhVlBW9AaAHqHwjWsZHT8LJ4hFGPh7ASBV2deFdM7H/DPjulmh8rg==}
430
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
431
+ peerDependencies:
432
+ eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
433
+
434
+ '@eslint-community/regexpp@4.12.2':
435
+ resolution: {integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==}
436
+ engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
437
+
438
+ '@eslint/config-array@0.23.5':
439
+ resolution: {integrity: sha512-Y3kKLvC1dvTOT+oGlqNQ1XLqK6D1HU2YXPc52NmAlJZbMMWDzGYXMiPRJ8TYD39muD/OTjlZmNJ4ib7dvSrMBA==}
440
+ engines: {node: ^20.19.0 || ^22.13.0 || >=24}
441
+
442
+ '@eslint/config-helpers@0.7.0':
443
+ resolution: {integrity: sha512-DObd/KKUsU+FaFv4PLxSRenpXfQWmPXXP3pPZ6/K1PCrMu2vQpMDMuQe/BqYeoLcz8ro0bVDF1RxOJgfVEdhUw==}
444
+ engines: {node: ^20.19.0 || ^22.13.0 || >=24}
445
+
446
+ '@eslint/core@1.2.1':
447
+ resolution: {integrity: sha512-MwcE1P+AZ4C6DWlpin/OmOA54mmIZ/+xZuJiQd4SyB29oAJjN30UW9wkKNptW2ctp4cEsvhlLY/CsQ1uoHDloQ==}
448
+ engines: {node: ^20.19.0 || ^22.13.0 || >=24}
449
+
450
+ '@eslint/object-schema@3.0.5':
451
+ resolution: {integrity: sha512-vqTaUEgxzm+YDSdElad6PiRoX4t8VGDjCtt05zn4nU810UIx/uNEV7/lZJ6KwFThKZOzOxzXy48da+No7HZaMw==}
452
+ engines: {node: ^20.19.0 || ^22.13.0 || >=24}
453
+
454
+ '@eslint/plugin-kit@0.7.2':
455
+ resolution: {integrity: sha512-+CNAzxglkrpNf/kKywqQfk74QjtceuOE7Qm+AF8miRvPF/wmmK5+OJOgVh3AVTT3RP2mH3+FOaxlE5v72owk0A==}
456
+ engines: {node: ^20.19.0 || ^22.13.0 || >=24}
457
+
458
+ '@humanfs/core@0.19.2':
459
+ resolution: {integrity: sha512-UhXNm+CFMWcbChXywFwkmhqjs3PRCmcSa/hfBgLIb7oQ5HNb1wS0icWsGtSAUNgefHeI+eBrA8I1fxmbHsGdvA==}
460
+ engines: {node: '>=18.18.0'}
461
+
462
+ '@humanfs/node@0.16.8':
463
+ resolution: {integrity: sha512-gE1eQNZ3R++kTzFUpdGlpmy8kDZD/MLyHqDwqjkVQI0JMdI1D51sy1H958PNXYkM2rAac7e5/CnIKZrHtPh3BQ==}
464
+ engines: {node: '>=18.18.0'}
465
+
466
+ '@humanfs/types@0.15.0':
467
+ resolution: {integrity: sha512-ZZ1w0aoQkwuUuC7Yf+7sdeaNfqQiiLcSRbfI08oAxqLtpXQr9AIVX7Ay7HLDuiLYAaFPu8oBYNq/QIi9URHJ3Q==}
468
+ engines: {node: '>=18.18.0'}
469
+
470
+ '@humanwhocodes/module-importer@1.0.1':
471
+ resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
472
+ engines: {node: '>=12.22'}
473
+
474
+ '@humanwhocodes/retry@0.4.3':
475
+ resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==}
476
+ engines: {node: '>=18.18'}
477
+
478
+ '@img/colour@1.1.0':
479
+ resolution: {integrity: sha512-Td76q7j57o/tLVdgS746cYARfSyxk8iEfRxewL9h4OMzYhbW4TAcppl0mT4eyqXddh6L/jwoM75mo7ixa/pCeQ==}
480
+ engines: {node: '>=18'}
481
+
482
+ '@img/sharp-darwin-arm64@0.35.3':
483
+ resolution: {integrity: sha512-RMnFX7YQsMoh7lWfcM4NEHHymBX/rLuKNPVM84XE9ONPcaSCDgE7CHIHpSgPcO2xcRthgBy1HfNO319mwhIAkg==}
484
+ engines: {node: '>=20.9.0'}
485
+ cpu: [arm64]
486
+ os: [darwin]
487
+
488
+ '@img/sharp-darwin-x64@0.35.3':
489
+ resolution: {integrity: sha512-Xo+5uFBtLN0BKqieTxiFzFPQAUlBbbH5iBKyRX/z1JrbnYsHTfKJnUfL8+p2TPXr1pXqao4eeL4Rl144uDpK9w==}
490
+ engines: {node: '>=20.9.0'}
491
+ cpu: [x64]
492
+ os: [darwin]
493
+
494
+ '@img/sharp-freebsd-wasm32@0.35.3':
495
+ resolution: {integrity: sha512-lUxcqWIj2wMQ9BrwNjngcr1gWUr5xgaGThBRqPPalIC2n67Cqj1uPh8NnA/ZhAg8hUbKl+kVHKwgUIwe6ZYPrg==}
496
+ engines: {node: '>=20.9.0'}
497
+ os: [freebsd]
498
+
499
+ '@img/sharp-libvips-darwin-arm64@1.3.2':
500
+ resolution: {integrity: sha512-9J6ypZFpQBj4YnePGoq/S38w6nz+vqg5WZLrLGY4YuSemdMq47GMLBPO42MzwdGwpg/agZ7xzZcFHa48xlywfg==}
501
+ cpu: [arm64]
502
+ os: [darwin]
503
+
504
+ '@img/sharp-libvips-darwin-x64@1.3.2':
505
+ resolution: {integrity: sha512-m2pW1n6cns9VaubNwsZ+c3CRYjxNQWgJ5gPlnL1nbBcpkBvFm6SCFN5o0psFHI8w9n11NKhFkeEDns98tiqbEw==}
506
+ cpu: [x64]
507
+ os: [darwin]
508
+
509
+ '@img/sharp-libvips-linux-arm64@1.3.2':
510
+ resolution: {integrity: sha512-dqVSFynCox4C/J8kT16V7SIFAns0IjgLwkvYT7p8LQVmJ5OS5b6tI9IGflxTeuBS//zXeFIUbwt5dwxyZ17cnA==}
511
+ cpu: [arm64]
512
+ os: [linux]
513
+
514
+ '@img/sharp-libvips-linux-arm@1.3.2':
515
+ resolution: {integrity: sha512-1eMLzy92I4J6rmi4mAT8yC3HxOtniyGELlzGbNMLLeqe052ahFQ0h6LFq+lh5DsDIdYViIDst08abvSbcEdLXQ==}
516
+ cpu: [arm]
517
+ os: [linux]
518
+
519
+ '@img/sharp-libvips-linux-ppc64@1.3.2':
520
+ resolution: {integrity: sha512-3z0NHDxD6n5I9gc05U1eW1AyRm+Gznzq3naMrthPNqE6oYykcogW0l/jfpJdjYnuNl8R7yI9pNbE1XiUeyq0Aw==}
521
+ cpu: [ppc64]
522
+ os: [linux]
523
+
524
+ '@img/sharp-libvips-linux-riscv64@1.3.2':
525
+ resolution: {integrity: sha512-bsb4rI+NldGOsXuej2r8OdSS8+zXDVaCWxyWrcv6kneTOlgAHtZABRzBBCwdsPiD90J4myNJuHpg6kA20ImW/w==}
526
+ cpu: [riscv64]
527
+ os: [linux]
528
+
529
+ '@img/sharp-libvips-linux-s390x@1.3.2':
530
+ resolution: {integrity: sha512-/ABshyj8gCpyIrNXnHn4LorDJ0HHm1VhXPBlxZ8zAtfVPAaSafXPGn+sUSIRiwaSBy0mmFjSjiXI5mkcwdChKQ==}
531
+ cpu: [s390x]
532
+ os: [linux]
533
+
534
+ '@img/sharp-libvips-linux-x64@1.3.2':
535
+ resolution: {integrity: sha512-ITPEtgffGJ0S6G9dRyw/366tJQqFRcHWPHhC+Stpg3Z8AEMrDrTr2lhdz4f/Y/HMbRh//7Z5mBzEpVdi62Oc3w==}
536
+ cpu: [x64]
537
+ os: [linux]
538
+
539
+ '@img/sharp-libvips-linuxmusl-arm64@1.3.2':
540
+ resolution: {integrity: sha512-zE9EdiUzUmg5mDT5a1rk5fYJ6GWPloTwWBYDS14naqHsL+EaMpDj1AWnpLgh3u0YCORv2Tt50wrcrpYqkP97Kw==}
541
+ cpu: [arm64]
542
+ os: [linux]
543
+
544
+ '@img/sharp-libvips-linuxmusl-x64@1.3.2':
545
+ resolution: {integrity: sha512-m0lrLiUt+lBYnCFr8qV/65yMR4E/c7/wf78I5eKTdkEakFAlZ9QlzEM3QIhhAwVeUhLAHLcCq7a7Vszq/oFNZQ==}
546
+ cpu: [x64]
547
+ os: [linux]
548
+
549
+ '@img/sharp-linux-arm64@0.35.3':
550
+ resolution: {integrity: sha512-QgKDspHPnrU+GQ55XPhGwyhC8acLVOOSyAvo1oVfFmrIXLkDNmGWzAfDZ4xK8oSA1qBQrALcHX0G5UZni/SuFQ==}
551
+ engines: {node: '>=20.9.0'}
552
+ cpu: [arm64]
553
+ os: [linux]
554
+
555
+ '@img/sharp-linux-arm@0.35.3':
556
+ resolution: {integrity: sha512-affVWCTLooy8TSxbDx2qkzuDeaWLNVBA+P//FNBirHsXpP2fuBhk5AuboYUnrDnzoXes8GFjpTx0SBFOCRg+FA==}
557
+ engines: {node: '>=20.9.0'}
558
+ cpu: [arm]
559
+ os: [linux]
560
+
561
+ '@img/sharp-linux-ppc64@0.35.3':
562
+ resolution: {integrity: sha512-sMd8rDxmpLOwv/7N44klFjOD5DUO7FLdjiXDI0hoxYaf7Ar262dQIEkosE98bps+5HPLtp/EvNqeqQtOycP/IA==}
563
+ engines: {node: '>=20.9.0'}
564
+ cpu: [ppc64]
565
+ os: [linux]
566
+
567
+ '@img/sharp-linux-riscv64@0.35.3':
568
+ resolution: {integrity: sha512-0Eob78yjlYPfL5vMNWAW55l3R9Y6BQS/gOfe0ZcP9mEz9ohhKSt4im1hayiknXgf8AWrFqMvJcKIdmLmEe7yeQ==}
569
+ engines: {node: '>=20.9.0'}
570
+ cpu: [riscv64]
571
+ os: [linux]
572
+
573
+ '@img/sharp-linux-s390x@0.35.3':
574
+ resolution: {integrity: sha512-KgAxQ0DxpNOq1rG2t5cgTgShJFGSuU7XO45cqC+1NVOuZnP6tlgZRuSYOfNupGkHID0o3cJOsw4DVeJpMovcGw==}
575
+ engines: {node: '>=20.9.0'}
576
+ cpu: [s390x]
577
+ os: [linux]
578
+
579
+ '@img/sharp-linux-x64@0.35.3':
580
+ resolution: {integrity: sha512-8pqvxubL2PGdhlPy6GLqzDYMUjyRmKAwKHYKixpdJYBUK7PJ0C029XdsnpFIdgRZG68fZiGdHVWcKPvtiPB4cA==}
581
+ engines: {node: '>=20.9.0'}
582
+ cpu: [x64]
583
+ os: [linux]
584
+
585
+ '@img/sharp-linuxmusl-arm64@0.35.3':
586
+ resolution: {integrity: sha512-Vz0iQjzzcSX3HCbfwFfCSG/9SCIqyO0mH2sXyiHaAYfBk0cRsCWXRyQYX0ovCK/PAQBbTzQ0dsPQHh5MAFL59w==}
587
+ engines: {node: '>=20.9.0'}
588
+ cpu: [arm64]
589
+ os: [linux]
590
+
591
+ '@img/sharp-linuxmusl-x64@0.35.3':
592
+ resolution: {integrity: sha512-6O1NPKcDVj9QEdg7Hx549EX8U0rp6yXQERqru6yRN7fGBn32UvIRJUlWnk+8xDCiG76hXVBbX82NZ/ZKr0euIg==}
593
+ engines: {node: '>=20.9.0'}
594
+ cpu: [x64]
595
+ os: [linux]
596
+
597
+ '@img/sharp-wasm32@0.35.3':
598
+ resolution: {integrity: sha512-cZ0XkcYGpHZkqW6iCkqTcmUC0CD9DhD5d/qeZlZkfRBn6GnHniZXLUo5+9xw8Iv76YE6LQFN9YNBlKREcCG76w==}
599
+ engines: {node: '>=20.9.0'}
600
+
601
+ '@img/sharp-webcontainers-wasm32@0.35.3':
602
+ resolution: {integrity: sha512-2rnq7bX3NzeR2T4YWgz8qiG4h3TSdMe+vN1iQXpJleSJ3SM5zQ8Fy2SyyXAWlbxpEZ2Y+Z4u1BePgJEYbSy80Q==}
603
+ engines: {node: '>=20.9.0'}
604
+ cpu: [wasm32]
605
+
606
+ '@img/sharp-win32-arm64@0.35.3':
607
+ resolution: {integrity: sha512-4bPwFdMbeC4JQ8L8LOyWp6nsHcboP5fxkp6iPOXz2Vg49R42TuMs2whkJ5OAP4/Ul035qOzy0AecOF9VOscn4w==}
608
+ engines: {node: '>=20.9.0'}
609
+ cpu: [arm64]
610
+ os: [win32]
611
+
612
+ '@img/sharp-win32-ia32@0.35.3':
613
+ resolution: {integrity: sha512-r53mXsBN6lFUDiST764SvgwUdHAqM4rPAiDzAmf4fLoB6X/rkfyTrLCg6+g17wJJiCmB3JYgHuUldCWUIRFSXw==}
614
+ engines: {node: ^20.9.0}
615
+ cpu: [ia32]
616
+ os: [win32]
617
+
618
+ '@img/sharp-win32-x64@0.35.3':
619
+ resolution: {integrity: sha512-D4y1vNeZrIIJCN+uHaWVtH86B+aCrdMYYjicy9pXHvbGZeGYLLSd3wdVuC37FxVXlU1ARsk84eKWfWMXGYEqvA==}
620
+ engines: {node: '>=20.9.0'}
621
+ cpu: [x64]
622
+ os: [win32]
623
+
624
+ '@jridgewell/gen-mapping@0.3.13':
625
+ resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
626
+
627
+ '@jridgewell/remapping@2.3.5':
628
+ resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==}
629
+
630
+ '@jridgewell/resolve-uri@3.1.2':
631
+ resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
632
+ engines: {node: '>=6.0.0'}
633
+
634
+ '@jridgewell/sourcemap-codec@1.5.5':
635
+ resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
636
+
637
+ '@jridgewell/trace-mapping@0.3.31':
638
+ resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
639
+
640
+ '@napi-rs/wasm-runtime@1.1.6':
641
+ resolution: {integrity: sha512-ZLv/JdUfkvOy9eCnnBaGfiO+XimbjebAeO+MRQqD/B+FR1tnRN0tpKSJHRbE8sFfS6aqsXZ67TQjfwfsxULVbg==}
642
+ peerDependencies:
643
+ '@emnapi/core': ^1.7.1
644
+ '@emnapi/runtime': ^1.7.1
645
+
646
+ '@oslojs/encoding@1.1.0':
647
+ resolution: {integrity: sha512-70wQhgYmndg4GCPxPPxPGevRKqTIJ2Nh4OkiMWmDAVYsTQ+Ta7Sq+rPevXyXGdzr30/qZBnyOalCszoMxlyldQ==}
648
+
649
+ '@oxc-project/types@0.139.0':
650
+ resolution: {integrity: sha512-r9gHphtCs+1M7J0pw6Sn/hh/Wpa/iQrOOkrNAlVLF/gHq+/CJmHIWKKUUhdWjcD6CIa8idarspCsASiXCXvFUw==}
651
+
652
+ '@rolldown/binding-android-arm64@1.1.5':
653
+ resolution: {integrity: sha512-lZg8fqIv2v7FF237bwMgzGZEJvGL79/s5knJ/i6FmsGF4XXlzccZ4jb+TrFIxtSSxFtIpdsgrPZeMk1I9AFcyQ==}
654
+ engines: {node: ^20.19.0 || >=22.12.0}
655
+ cpu: [arm64]
656
+ os: [android]
657
+
658
+ '@rolldown/binding-darwin-arm64@1.1.5':
659
+ resolution: {integrity: sha512-51Bnx9pNiMRKSUNtBfySkNJ9vMU9Hh3I1ozDd6gyPPYzaXCfnptUcEZxXGYFn+ul2dtcMUiqGR1Yai2K10uoTw==}
660
+ engines: {node: ^20.19.0 || >=22.12.0}
661
+ cpu: [arm64]
662
+ os: [darwin]
663
+
664
+ '@rolldown/binding-darwin-x64@1.1.5':
665
+ resolution: {integrity: sha512-Tm+gbfC0aHu1tBA/JvKQh32S0K6YgCHkiAF4/W6xX0K0RmNuc94VeK419dJoE65R5aRxmo+noZQSWrAMF6yb6g==}
666
+ engines: {node: ^20.19.0 || >=22.12.0}
667
+ cpu: [x64]
668
+ os: [darwin]
669
+
670
+ '@rolldown/binding-freebsd-x64@1.1.5':
671
+ resolution: {integrity: sha512-JMzDKCCXq93YccG5gz3hvOs1oXRKAf0XYpfOS88e+wZrC8Iugj6j68867vrYZkvpDDpKn/KoKORThmchMpF6TA==}
672
+ engines: {node: ^20.19.0 || >=22.12.0}
673
+ cpu: [x64]
674
+ os: [freebsd]
675
+
676
+ '@rolldown/binding-linux-arm-gnueabihf@1.1.5':
677
+ resolution: {integrity: sha512-uML21j2K5TfPGutKxub+M+nLjZIrWjXQ5Grx4lCe/nimTj9B4L63zHpjXLl4y0L3mcm2htEQIb06oCG/szerNw==}
678
+ engines: {node: ^20.19.0 || >=22.12.0}
679
+ cpu: [arm]
680
+ os: [linux]
681
+
682
+ '@rolldown/binding-linux-arm64-gnu@1.1.5':
683
+ resolution: {integrity: sha512-navSiuTMogvnQoZoM/v+l3ZWo50/NTwSHSzheABx/RCnmUPaKwq9qSo4Br2OYRs21+Fz8uFqITZM3H4opOB0/Q==}
684
+ engines: {node: ^20.19.0 || >=22.12.0}
685
+ cpu: [arm64]
686
+ os: [linux]
687
+
688
+ '@rolldown/binding-linux-arm64-musl@1.1.5':
689
+ resolution: {integrity: sha512-lAryqH7IteztmCXQXk0etKj4wBQ7Gx5S6LjKhsgp9zb8I5bsuvU/2llH1hDQcjsFeqIsovMVN339/8pUDDBXxA==}
690
+ engines: {node: ^20.19.0 || >=22.12.0}
691
+ cpu: [arm64]
692
+ os: [linux]
693
+
694
+ '@rolldown/binding-linux-ppc64-gnu@1.1.5':
695
+ resolution: {integrity: sha512-fsK/sNBnxzBlL4O1JNrZakVQxPspqpED5dLtNsZS9oOKmtSpdNIzxH2kkol5HYTWJN47sE20ztMJPxfZ89qGOg==}
696
+ engines: {node: ^20.19.0 || >=22.12.0}
697
+ cpu: [ppc64]
698
+ os: [linux]
699
+
700
+ '@rolldown/binding-linux-s390x-gnu@1.1.5':
701
+ resolution: {integrity: sha512-gLYb4BIadlfTOYT5gO503n8zQjXflgzpD0FcyKh0Mzx3rqCZKnHoJWV9xe1KXUJ5lx2JfcSHr/mhzS0PC/McAA==}
702
+ engines: {node: ^20.19.0 || >=22.12.0}
703
+ cpu: [s390x]
704
+ os: [linux]
705
+
706
+ '@rolldown/binding-linux-x64-gnu@1.1.5':
707
+ resolution: {integrity: sha512-FjcpEKUyJygHgs1o50VYNvkt5+7Le/VEdYt0AkRpkL33MnyQfwr8l5mXwMmfmTbyMPr5vJLC+8/Gd9gXnwU1QQ==}
708
+ engines: {node: ^20.19.0 || >=22.12.0}
709
+ cpu: [x64]
710
+ os: [linux]
711
+
712
+ '@rolldown/binding-linux-x64-musl@1.1.5':
713
+ resolution: {integrity: sha512-Me+PfPI2TMeOQk0gYWfLQZtTktrmzbr8cDboqX83XKc7UrgAi55gF+2dUkWdxd19n55Essp2yeca+O9N5rBxHg==}
714
+ engines: {node: ^20.19.0 || >=22.12.0}
715
+ cpu: [x64]
716
+ os: [linux]
717
+
718
+ '@rolldown/binding-openharmony-arm64@1.1.5':
719
+ resolution: {integrity: sha512-yc5WrLzXks6zCQfn9Oxr8pORKyl/pF+QjHmW/Qx3qu0oyrrNC+y2JLTU1E2rcWYAmzlnqngWXHQjy51VzW70Vw==}
720
+ engines: {node: ^20.19.0 || >=22.12.0}
721
+ cpu: [arm64]
722
+ os: [openharmony]
723
+
724
+ '@rolldown/binding-wasm32-wasi@1.1.5':
725
+ resolution: {integrity: sha512-VbQGPX2b4r48TAMIM2cjgluIM1HYutm4pcTEJsle7iEP7sB1dFqtPLBVbdLAZCxy1txCcPxf4QFf4v8uvltPqA==}
726
+ engines: {node: ^20.19.0 || >=22.12.0}
727
+ cpu: [wasm32]
728
+
729
+ '@rolldown/binding-win32-arm64-msvc@1.1.5':
730
+ resolution: {integrity: sha512-gHv82k63z4qpV5+Q1y/12KrK0ltWBukVDI8nZcbT7Tt/ZlOIVwppazneq0F93oDxTo3IgAMEDIoQh3E2n6mVsw==}
731
+ engines: {node: ^20.19.0 || >=22.12.0}
732
+ cpu: [arm64]
733
+ os: [win32]
734
+
735
+ '@rolldown/binding-win32-x64-msvc@1.1.5':
736
+ resolution: {integrity: sha512-tTZuDBPw85tEN5PQi1pnEBzDy0Z49HtScLAbD5t6hyeU92A95pRWaSMw1GZZi/RwgSgUIl0xrSlXIT/9QzvYSA==}
737
+ engines: {node: ^20.19.0 || >=22.12.0}
738
+ cpu: [x64]
739
+ os: [win32]
740
+
741
+ '@rolldown/pluginutils@1.0.1':
742
+ resolution: {integrity: sha512-2j9bGt5Jh8hj+vPtgzPtl72j0yRxHAyumoo6TNfAjsLB04UtpSvPbPcDcBMxz7n+9CYB0c1GxQFxYRg2jimqGw==}
743
+
744
+ '@rollup/pluginutils@5.4.0':
745
+ resolution: {integrity: sha512-MfPp06CjRLfXQ3wY0R8vJDYBy/MvVcc9OulEfR0B8Iv9ko+GCNaRZ+EpJYFl27LhKsZK0o420sYCRHCjfCgeUg==}
746
+ engines: {node: '>=14.0.0'}
747
+ peerDependencies:
748
+ rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
749
+ peerDependenciesMeta:
750
+ rollup:
751
+ optional: true
752
+
753
+ '@shikijs/core@4.3.1':
754
+ resolution: {integrity: sha512-ANMDxuaPsNMdDC1m4vfvhlDmJweMwkE5XitTwrq2rWHx5jM+dlm4MmHt2PP6t0uejfR77SuhrhJ0zEijIF/uhA==}
755
+ engines: {node: '>=20'}
756
+
757
+ '@shikijs/engine-javascript@4.3.1':
758
+ resolution: {integrity: sha512-JBItcnPuYq7jVJdZo/vMj94r+szT7XEjHFX+mvFDGSEIbVAXAGyHAHzhbWzpGOwYidCZrErJLLgn2PVeiokHnQ==}
759
+ engines: {node: '>=20'}
760
+
761
+ '@shikijs/engine-oniguruma@4.3.1':
762
+ resolution: {integrity: sha512-OXyNMzg0pews+msMj4cHeqT4xiYKKvbnn6VbdAXxfoFl3SSx4fJTc8FadECuc5/H9p3BzhNAoAUXKwAu9rWYhg==}
763
+ engines: {node: '>=20'}
764
+
765
+ '@shikijs/langs@4.3.1':
766
+ resolution: {integrity: sha512-m0l9nsDqgBHvbZbk7A0/kXz/impK3uB/c6rAn6Gpg/uPtdZRQ+alsN/17MU5thb68XTj/4DxkZAotrM0GGSpDQ==}
767
+ engines: {node: '>=20'}
768
+
769
+ '@shikijs/primitive@4.3.1':
770
+ resolution: {integrity: sha512-CXQRQOYy1leqQ8ceTeJdmXv/bsUY++6QyLpXJ94LZAAYj5X2SKRdc5ipguv4NPyGVKItB2PPwUpRNe0Sjh5S1A==}
771
+ engines: {node: '>=20'}
772
+
773
+ '@shikijs/themes@4.3.1':
774
+ resolution: {integrity: sha512-dgpoJ4WqNi2yTmizQHBJ5zcX6j2lE6icN/0yt4l1kkf16jrY/pwPLoTb1ETsWMz0OBLf9ZNvwmxft+cH+N9qSA==}
775
+ engines: {node: '>=20'}
776
+
777
+ '@shikijs/types@4.3.1':
778
+ resolution: {integrity: sha512-CHFxE0jztBIZRHH6gxXE7DXUCFXjReEGxZ/j0rfSLGKZuwp2xBYycEP14875DSa9KLL/6700oxIq6oO6ef9K2g==}
779
+ engines: {node: '>=20'}
780
+
781
+ '@shikijs/vscode-textmate@10.0.2':
782
+ resolution: {integrity: sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==}
783
+
784
+ '@tailwindcss/node@4.3.3':
785
+ resolution: {integrity: sha512-/T8IKEsf9VTU6tLjgC7+sv2mOPtQxzE2jMw7u4Tt40Tx+QSZxpzh95/H6cMKoja9XuW7iMdLJYBB0o9G1CaAgg==}
786
+
787
+ '@tailwindcss/oxide-android-arm64@4.3.3':
788
+ resolution: {integrity: sha512-Y85A2gmPSkl5Ve5qR86GL4HT509cFqQh1aes9p3sSkyTPwt0Pppf3GkwGe4JPACcRYjgJIEhQgM6dBClnr0NYw==}
789
+ engines: {node: '>= 20'}
790
+ cpu: [arm64]
791
+ os: [android]
792
+
793
+ '@tailwindcss/oxide-darwin-arm64@4.3.3':
794
+ resolution: {integrity: sha512-BiaWatpBcERQFDlOjRDpIVXuFK5PJez5SA4JMg6VYZdBYU+qKfV/vqjcIs+IYmtitf1xYQZTwXvU/8y4lfZUGw==}
795
+ engines: {node: '>= 20'}
796
+ cpu: [arm64]
797
+ os: [darwin]
798
+
799
+ '@tailwindcss/oxide-darwin-x64@4.3.3':
800
+ resolution: {integrity: sha512-fAeUqfV5ndhxRwai8cXGzdLvul9utWOmeTkv69unv4ZXixjn61Z+p9lCWdwOwA3TYboG3BwdVuN/RDjhBRl0mw==}
801
+ engines: {node: '>= 20'}
802
+ cpu: [x64]
803
+ os: [darwin]
804
+
805
+ '@tailwindcss/oxide-freebsd-x64@4.3.3':
806
+ resolution: {integrity: sha512-iyf5bV6+wnAlflVeEy7R25dupxTNECZN5QMI0qNT6eT+EgaGdZcKhGkr5SdoaWiLJ3spLqIY9VCeSGrwmtg4kw==}
807
+ engines: {node: '>= 20'}
808
+ cpu: [x64]
809
+ os: [freebsd]
810
+
811
+ '@tailwindcss/oxide-linux-arm-gnueabihf@4.3.3':
812
+ resolution: {integrity: sha512-aAYUprJAJQWWbRrPvtjdroZ56Md+JM8pMiopS6xGEwDfLhqj+2ver2p4nU4Mb3CRqcMmNBjo8KkUgcxhkzVQGQ==}
813
+ engines: {node: '>= 20'}
814
+ cpu: [arm]
815
+ os: [linux]
816
+
817
+ '@tailwindcss/oxide-linux-arm64-gnu@4.3.3':
818
+ resolution: {integrity: sha512-nDxldcEENOxZRzC2uu9jrutZdAAQtb+8WWDCSnWL1zvBk1+FN+x6MtDViPB5AJMfttVCUhehGWus3XBPgatM/w==}
819
+ engines: {node: '>= 20'}
820
+ cpu: [arm64]
821
+ os: [linux]
822
+
823
+ '@tailwindcss/oxide-linux-arm64-musl@4.3.3':
824
+ resolution: {integrity: sha512-Md44bD6veX/PC5iyF8cDVnw4HBIANZepRZZ7a8DQOvkfo5WUBwcp6iAuCUz23u+4SUkhJlD3eL7hNdW8ezd/kA==}
825
+ engines: {node: '>= 20'}
826
+ cpu: [arm64]
827
+ os: [linux]
828
+
829
+ '@tailwindcss/oxide-linux-x64-gnu@4.3.3':
830
+ resolution: {integrity: sha512-tx7us1muwOKAKWao2v/GaafFeQboE6aj88vC6ziN2NCGcRm8gWUhwjzg+YdVB1e4boAtdtma4L43onunI6NS4w==}
831
+ engines: {node: '>= 20'}
832
+ cpu: [x64]
833
+ os: [linux]
834
+
835
+ '@tailwindcss/oxide-linux-x64-musl@4.3.3':
836
+ resolution: {integrity: sha512-SJxX60smvHgasZoBy11dX6YRjXJFovwWBoedhbQPOBzgFWBHGB+TVPWB9BxzR7TTxU8FQZAI2AyiNCMzFm8Img==}
837
+ engines: {node: '>= 20'}
838
+ cpu: [x64]
839
+ os: [linux]
840
+
841
+ '@tailwindcss/oxide-wasm32-wasi@4.3.3':
842
+ resolution: {integrity: sha512-jx1+rPhY/5Ympkktd656HBWEBLxP7dH06losBLjjf5vgCODXvi9KhtftWcMIwTFIDqBr7cRnQkdLnAG+IOlGvQ==}
843
+ engines: {node: '>=14.0.0'}
844
+ cpu: [wasm32]
845
+ bundledDependencies:
846
+ - '@napi-rs/wasm-runtime'
847
+ - '@emnapi/core'
848
+ - '@emnapi/runtime'
849
+ - '@tybys/wasm-util'
850
+ - '@emnapi/wasi-threads'
851
+ - tslib
852
+
853
+ '@tailwindcss/oxide-win32-arm64-msvc@4.3.3':
854
+ resolution: {integrity: sha512-3rc292Ca2ceK6Ulcc/bAVnTs/3nDtoPhyEKlgPv+yQJQi/JS/AMJlqzxvlDacL1nekbrcf6bTqp/jV4qgnPxNQ==}
855
+ engines: {node: '>= 20'}
856
+ cpu: [arm64]
857
+ os: [win32]
858
+
859
+ '@tailwindcss/oxide-win32-x64-msvc@4.3.3':
860
+ resolution: {integrity: sha512-yJ0pwIVc/nYeGoV02WtsN8KYyLQv7kyI2wDnkezyJlGGjkd4QLwDGAwl47YpPJeuI0M0ObaXGSPjvWDPeTPggw==}
861
+ engines: {node: '>= 20'}
862
+ cpu: [x64]
863
+ os: [win32]
864
+
865
+ '@tailwindcss/oxide@4.3.3':
866
+ resolution: {integrity: sha512-krXjAikiaFSPaK/FkAQT5UTx3VormQaiZ5hBFlJZ9UFQGB/rwg1MZIhHAG9smMQRTdyJxP6Qt5MwMtdyU5FWrA==}
867
+ engines: {node: '>= 20'}
868
+
869
+ '@tailwindcss/vite@4.3.3':
870
+ resolution: {integrity: sha512-yYU8cogLeSh/ms2jh8Fj7jaba/EWa7Ja6GoUqYZaraEuCI5YS6ms6ObZgjjedm+jm6XZjdNRWBpPP6Z86oOxcw==}
871
+ peerDependencies:
872
+ vite: ^5.2.0 || ^6 || ^7 || ^8
873
+
874
+ '@tybys/wasm-util@0.10.3':
875
+ resolution: {integrity: sha512-F3fo1MYrRJYL3zER0OUOmkutjr1Vp23m7OsSgp7nq4SP6OqX6C/56XFIPAl5bt3zaBRjmW7SGz3u/6LwFpYcOg==}
876
+
877
+ '@types/esrecurse@4.3.1':
878
+ resolution: {integrity: sha512-xJBAbDifo5hpffDBuHl0Y8ywswbiAp/Wi7Y/GtAgSlZyIABppyurxVueOPE8LUQOxdlgi6Zqce7uoEpqNTeiUw==}
879
+
880
+ '@types/estree-jsx@1.0.5':
881
+ resolution: {integrity: sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==}
882
+
883
+ '@types/estree@1.0.9':
884
+ resolution: {integrity: sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==}
885
+
886
+ '@types/hast@3.0.5':
887
+ resolution: {integrity: sha512-rp/ezSWaD1m44dPKICGhiskI13nVr7qTloFwDa/IYkhhf5nzwP+zIQcIJh3WIFSBOy/H1PzB40jPjMDksN4F+g==}
888
+
889
+ '@types/json-schema@7.0.15':
890
+ resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
891
+
892
+ '@types/mdast@4.0.4':
893
+ resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==}
894
+
895
+ '@types/nlcst@2.0.3':
896
+ resolution: {integrity: sha512-vSYNSDe6Ix3q+6Z7ri9lyWqgGhJTmzRjZRqyq15N0Z/1/UnVsno9G/N40NBijoYx2seFDIl0+B2mgAb9mezUCA==}
897
+
898
+ '@types/unist@3.0.3':
899
+ resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==}
900
+
901
+ '@typescript-eslint/eslint-plugin@8.65.0':
902
+ resolution: {integrity: sha512-IEgob78X12rHpUmtcwFsXhZdVGJtwTVP8FiCLZkR6GlYVrl2PcuB+KhCE5BlVC/eQpQnu8WXRtkHZuPar+gCRA==}
903
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
904
+ peerDependencies:
905
+ '@typescript-eslint/parser': ^8.65.0
906
+ eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
907
+ typescript: '>=4.8.4 <6.1.0'
908
+
909
+ '@typescript-eslint/parser@8.65.0':
910
+ resolution: {integrity: sha512-CZ4nMxWwgu1HEEFNkeaCptra9QCtkmKdgf3sWh1rl1trIhmxLilgTV4cwcbQ4wemnT4sWQN8CaKOmdYx+g2gMA==}
911
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
912
+ peerDependencies:
913
+ eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
914
+ typescript: '>=4.8.4 <6.1.0'
915
+
916
+ '@typescript-eslint/project-service@8.65.0':
917
+ resolution: {integrity: sha512-SxnPhbTsGahizDgbu7oqFH/xVtzIqMd/s+WtnSxNxJZJpLbdT5IPdzg8EZxO3+PoKahXmwJLeNQOpKJb3/bi7Q==}
918
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
919
+ peerDependencies:
920
+ typescript: '>=4.8.4 <6.1.0'
921
+
922
+ '@typescript-eslint/scope-manager@8.65.0':
923
+ resolution: {integrity: sha512-Esbl8OSYiVxBokYgWPf7VVWg/BE798wXhimnn9ML9Pt5qoDf8bfQlgjlKXR/k98+AcNzlLKYrpCcrcuZ9DZLgg==}
924
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
925
+
926
+ '@typescript-eslint/tsconfig-utils@8.65.0':
927
+ resolution: {integrity: sha512-j6GzGqCiRdA7Qhur2VVmKZAkBLfnHFQfx4TaJGL9RMveZqCo48jSHHO0DTgizEnGhtWnqmbtCUSrqSkdiY/0Hg==}
928
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
929
+ peerDependencies:
930
+ typescript: '>=4.8.4 <6.1.0'
931
+
932
+ '@typescript-eslint/type-utils@8.65.0':
933
+ resolution: {integrity: sha512-YjaZ7PRI5qY7ax2L3PbvX0rRyGtipAReCWs0mhhDBHjH/vl0g0BonaGXrKdKpMbIIsMIwDgbk/xzkBTyAltS5g==}
934
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
935
+ peerDependencies:
936
+ eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
937
+ typescript: '>=4.8.4 <6.1.0'
938
+
939
+ '@typescript-eslint/types@8.65.0':
940
+ resolution: {integrity: sha512-JSSwWNy+H0E/01jJEM+hrX6N0OFDzFzeIhHFSAS01tlVaevpG8cFyYRPhS5yjGOvBUx3sqQHVMjCL1CAZZMxBg==}
941
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
942
+
943
+ '@typescript-eslint/typescript-estree@8.65.0':
944
+ resolution: {integrity: sha512-JboAE2swaYt4tb1fHhHTABE2K+OLy09XfcTbhnk4Pw96f9dd2e9iYsJ28gBggHlo5z5x1rkyWvcPoTuNTd4oGg==}
945
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
946
+ peerDependencies:
947
+ typescript: '>=4.8.4 <6.1.0'
948
+
949
+ '@typescript-eslint/utils@8.65.0':
950
+ resolution: {integrity: sha512-gXiwIHsYreboxeJucHKPvgwl7dXt50mF8s1/c00cP/WoVTyWKFdtfhRWwZiXYFU5H2O8vVoSLNrexFZjYS/SGA==}
951
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
952
+ peerDependencies:
953
+ eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
954
+ typescript: '>=4.8.4 <6.1.0'
955
+
956
+ '@typescript-eslint/visitor-keys@8.65.0':
957
+ resolution: {integrity: sha512-8C71BQkGjiMmXtop7pHVJu1l2NNShFdkCyD6a2ezzs5vU/L3LRtb69EtcteFwz0mYMPzIgOw0n6OV4VBUWZd7A==}
958
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
959
+
960
+ '@ungap/structured-clone@1.3.3':
961
+ resolution: {integrity: sha512-60YRaenCQcVjYEKOcG824+DRGGIQ3VKErcBoAEDJZz5bKIs2ZG+X/H9Nk+Q6EVkwJk5QNApxbrc5QtBSwtrXAg==}
962
+
963
+ '@volar/kit@2.4.28':
964
+ resolution: {integrity: sha512-cKX4vK9dtZvDRaAzeoUdaAJEew6IdxHNCRrdp5Kvcl6zZOqb6jTOfk3kXkIkG3T7oTFXguEMt5+9ptyqYR84Pg==}
965
+ peerDependencies:
966
+ typescript: '*'
967
+
968
+ '@volar/language-core@2.4.28':
969
+ resolution: {integrity: sha512-w4qhIJ8ZSitgLAkVay6AbcnC7gP3glYM3fYwKV3srj8m494E3xtrCv6E+bWviiK/8hs6e6t1ij1s2Endql7vzQ==}
970
+
971
+ '@volar/language-server@2.4.28':
972
+ resolution: {integrity: sha512-NqcLnE5gERKuS4PUFwlhMxf6vqYo7hXtbMFbViXcbVkbZ905AIVWhnSo0ZNBC2V127H1/2zP7RvVOVnyITFfBw==}
973
+
974
+ '@volar/language-service@2.4.28':
975
+ resolution: {integrity: sha512-Rh/wYCZJrI5vCwMk9xyw/Z+MsWxlJY1rmMZPsxUoJKfzIRjS/NF1NmnuEcrMbEVGja00aVpCsInJfixQTMdvLw==}
976
+
977
+ '@volar/source-map@2.4.28':
978
+ resolution: {integrity: sha512-yX2BDBqJkRXfKw8my8VarTyjv48QwxdJtvRgUpNE5erCsgEUdI2DsLbpa+rOQVAJYshY99szEcRDmyHbF10ggQ==}
979
+
980
+ '@volar/typescript@2.4.28':
981
+ resolution: {integrity: sha512-Ja6yvWrbis2QtN4ClAKreeUZPVYMARDYZl9LMEv1iQ1QdepB6wn0jTRxA9MftYmYa4DQ4k/DaSZpFPUfxl8giw==}
982
+
983
+ '@vscode/emmet-helper@2.11.0':
984
+ resolution: {integrity: sha512-QLxjQR3imPZPQltfbWRnHU6JecWTF1QSWhx3GAKQpslx7y3Dp6sIIXhKjiUJ/BR9FX8PVthjr9PD6pNwOJfAzw==}
985
+
986
+ '@vscode/l10n@0.0.18':
987
+ resolution: {integrity: sha512-KYSIHVmslkaCDyw013pphY+d7x1qV8IZupYfeIfzNA+nsaWHbn5uPuQRvdRFsa9zFzGeudPuoGoZ1Op4jrJXIQ==}
988
+
989
+ acorn-jsx@5.3.2:
990
+ resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
991
+ peerDependencies:
992
+ acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
993
+
994
+ acorn@8.17.0:
995
+ resolution: {integrity: sha512-xRQbDb9BnwDafYNn6Vwl839DYVjqXYb1XVGtWAZ1kcDc6iwAL4hg3B1dZlRiuENFeO2H53gFG3in621AdERVAg==}
996
+ engines: {node: '>=0.4.0'}
997
+ hasBin: true
998
+
999
+ ajv-draft-04@1.0.0:
1000
+ resolution: {integrity: sha512-mv00Te6nmYbRp5DCwclxtt7yV/joXJPGS7nM+97GdxvuttCOfgI3K4U25zboyeX0O+myI8ERluxQe5wljMmVIw==}
1001
+ peerDependencies:
1002
+ ajv: ^8.5.0
1003
+ peerDependenciesMeta:
1004
+ ajv:
1005
+ optional: true
1006
+
1007
+ ajv-i18n@4.2.0:
1008
+ resolution: {integrity: sha512-v/ei2UkCEeuKNXh8RToiFsUclmU+G57LO1Oo22OagNMENIw+Yb8eMwvHu7Vn9fmkjJyv6XclhJ8TbuigSglPkg==}
1009
+ peerDependencies:
1010
+ ajv: ^8.0.0-beta.0
1011
+
1012
+ ajv@6.15.0:
1013
+ resolution: {integrity: sha512-fgFx7Hfoq60ytK2c7DhnF8jIvzYgOMxfugjLOSMHjLIPgenqa7S7oaagATUq99mV6IYvN2tRmC0wnTYX6iPbMw==}
1014
+
1015
+ ajv@8.20.0:
1016
+ resolution: {integrity: sha512-Thbli+OlOj+iMPYFBVBfJ3OmCAnaSyNn4M1vz9T6Gka5Jt9ba/HIR56joy65tY6kx/FCF5VXNB819Y7/GUrBGA==}
1017
+
1018
+ am-i-vibing@0.4.0:
1019
+ resolution: {integrity: sha512-MxT4XZL7pzLHpuvhDKdMaQHMGGkJDLluKBLsbstn+8wv9sWcFT6h+0ve9qkml95amVTZtZV83gQe2hY+ojgHLg==}
1020
+ hasBin: true
1021
+
1022
+ ansi-regex@5.0.1:
1023
+ resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
1024
+ engines: {node: '>=8'}
1025
+
1026
+ ansi-styles@4.3.0:
1027
+ resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
1028
+ engines: {node: '>=8'}
1029
+
1030
+ anymatch@3.1.3:
1031
+ resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
1032
+ engines: {node: '>= 8'}
1033
+
1034
+ argparse@2.0.1:
1035
+ resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
1036
+
1037
+ aria-query@5.3.2:
1038
+ resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==}
1039
+ engines: {node: '>= 0.4'}
1040
+
1041
+ astro-eslint-parser@3.0.0:
1042
+ resolution: {integrity: sha512-idgbHE8cjEU9f4Ne46RiGgwEviXYarNVoQoTZr+H1j7mbNCKp8EGGov2bR64/cvMpfBsX3XNPu9+muxAhK84eg==}
1043
+ engines: {node: ^22.22.3 || ^24.16.0 || >=26.3.0}
1044
+
1045
+ astro@7.1.3:
1046
+ resolution: {integrity: sha512-4dhPyAAXthf3xLEYnG8SeL7yr/nTPPABfY7e9YF0yuO+vK9Xp+8Q5j4xzsmL3GueukQv4oNwGNTBepLOiDGeJA==}
1047
+ engines: {node: '>=22.12.0', npm: '>=9.6.5', pnpm: '>=7.1.0'}
1048
+ hasBin: true
1049
+ peerDependencies:
1050
+ '@astrojs/markdown-remark': 7.2.1
1051
+ peerDependenciesMeta:
1052
+ '@astrojs/markdown-remark':
1053
+ optional: true
1054
+
1055
+ axobject-query@4.1.0:
1056
+ resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==}
1057
+ engines: {node: '>= 0.4'}
1058
+
1059
+ bail@2.0.2:
1060
+ resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==}
1061
+
1062
+ balanced-match@4.0.4:
1063
+ resolution: {integrity: sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==}
1064
+ engines: {node: 18 || 20 || >=22}
1065
+
1066
+ boolbase@1.0.0:
1067
+ resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
1068
+
1069
+ brace-expansion@5.0.8:
1070
+ resolution: {integrity: sha512-JZyDyq3D4AUifKTPOB7DELf6XsB3WdPuNxCtob1vFXPsSXhdAiHBWJ/tJ8HAc9aH84BK+5JFZLNkJKx3G9kzQg==}
1071
+ engines: {node: 20 || >=22}
1072
+
1073
+ ccount@2.0.1:
1074
+ resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
1075
+
1076
+ character-entities-html4@2.1.0:
1077
+ resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==}
1078
+
1079
+ character-entities-legacy@3.0.0:
1080
+ resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==}
1081
+
1082
+ chokidar@4.0.3:
1083
+ resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
1084
+ engines: {node: '>= 14.16.0'}
1085
+
1086
+ chokidar@5.0.0:
1087
+ resolution: {integrity: sha512-TQMmc3w+5AxjpL8iIiwebF73dRDF4fBIieAqGn9RGCWaEVwQ6Fb2cGe31Yns0RRIzii5goJ1Y7xbMwo1TxMplw==}
1088
+ engines: {node: '>= 20.19.0'}
1089
+
1090
+ ci-info@4.4.0:
1091
+ resolution: {integrity: sha512-77PSwercCZU2Fc4sX94eF8k8Pxte6JAwL4/ICZLFjJLqegs7kCuAsqqj/70NQF6TvDpgFjkubQB2FW2ZZddvQg==}
1092
+ engines: {node: '>=8'}
1093
+
1094
+ cliui@8.0.1:
1095
+ resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
1096
+ engines: {node: '>=12'}
1097
+
1098
+ clsx@2.1.1:
1099
+ resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
1100
+ engines: {node: '>=6'}
1101
+
1102
+ color-convert@2.0.1:
1103
+ resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
1104
+ engines: {node: '>=7.0.0'}
1105
+
1106
+ color-name@1.1.4:
1107
+ resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
1108
+
1109
+ comma-separated-tokens@2.0.3:
1110
+ resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==}
1111
+
1112
+ commander@11.1.0:
1113
+ resolution: {integrity: sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==}
1114
+ engines: {node: '>=16'}
1115
+
1116
+ common-ancestor-path@2.0.0:
1117
+ resolution: {integrity: sha512-dnN3ibLeoRf2HNC+OlCiNc5d2zxbLJXOtiZUudNFSXZrNSydxcCsSpRzXwfu7BBWCIfHPw+xTayeBvJCP/D8Ng==}
1118
+ engines: {node: '>= 18'}
1119
+
1120
+ cookie-es@1.2.3:
1121
+ resolution: {integrity: sha512-lXVyvUvrNXblMqzIRrxHb57UUVmqsSWlxqt3XIjCkUP0wDAf6uicO6KMbEgYrMNtEvWgWHwe42CKxPu9MYAnWw==}
1122
+
1123
+ cookie@2.0.1:
1124
+ resolution: {integrity: sha512-yuToqVvRrj6pfDXREyQAAv8SkAEk/8GS3jQRTiUMm66TVtBYmqQeoEjL2Lmq8Rpo6271vH76InTChTitEAm65w==}
1125
+ engines: {node: '>=22'}
1126
+
1127
+ cross-spawn@7.0.6:
1128
+ resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
1129
+ engines: {node: '>= 8'}
1130
+
1131
+ crossws@0.3.5:
1132
+ resolution: {integrity: sha512-ojKiDvcmByhwa8YYqbQI/hg7MEU0NC03+pSdEq4ZUnZR9xXpwk7E43SMNGkn+JxJGPFtNvQ48+vV2p+P1ml5PA==}
1133
+
1134
+ css-select@5.2.2:
1135
+ resolution: {integrity: sha512-TizTzUddG/xYLA3NXodFM0fSbNizXjOKhqiQQwvhlspadZokn1KDy0NZFS0wuEubIYAV5/c1/lAr0TaaFXEXzw==}
1136
+
1137
+ css-tree@2.2.1:
1138
+ resolution: {integrity: sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==}
1139
+ engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'}
1140
+
1141
+ css-tree@3.2.1:
1142
+ resolution: {integrity: sha512-X7sjQzceUhu1u7Y/ylrRZFU2FS6LRiFVp6rKLPg23y3x3c3DOKAwuXGDp+PAGjh6CSnCjYeAul8pcT8bAl+lSA==}
1143
+ engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0}
1144
+
1145
+ css-what@6.2.2:
1146
+ resolution: {integrity: sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==}
1147
+ engines: {node: '>= 6'}
1148
+
1149
+ cssesc@3.0.0:
1150
+ resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
1151
+ engines: {node: '>=4'}
1152
+ hasBin: true
1153
+
1154
+ csso@5.0.5:
1155
+ resolution: {integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==}
1156
+ engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'}
1157
+
1158
+ debug@4.4.3:
1159
+ resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
1160
+ engines: {node: '>=6.0'}
1161
+ peerDependencies:
1162
+ supports-color: '*'
1163
+ peerDependenciesMeta:
1164
+ supports-color:
1165
+ optional: true
1166
+
1167
+ deep-is@0.1.4:
1168
+ resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
1169
+
1170
+ defu@6.1.7:
1171
+ resolution: {integrity: sha512-7z22QmUWiQ/2d0KkdYmANbRUVABpZ9SNYyH5vx6PZ+nE5bcC0l7uFvEfHlyld/HcGBFTL536ClDt3DEcSlEJAQ==}
1172
+
1173
+ dequal@2.0.3:
1174
+ resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
1175
+ engines: {node: '>=6'}
1176
+
1177
+ destr@2.0.5:
1178
+ resolution: {integrity: sha512-ugFTXCtDZunbzasqBxrK93Ik/DRYsO6S/fedkWEMKqt04xZ4csmnmwGDBAb07QWNaGMAmnTIemsYZCksjATwsA==}
1179
+
1180
+ detect-libc@2.1.2:
1181
+ resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==}
1182
+ engines: {node: '>=8'}
1183
+
1184
+ devalue@5.8.2:
1185
+ resolution: {integrity: sha512-DObPPAfdtFbXjxLqK8s2Xk9ZuWz5+ZoFEhC7J76es4GU/rEiXwHTmbImoCdyoCOcBH1UF3+Cz6Z2sYD4hyl5TA==}
1186
+
1187
+ devlop@1.1.0:
1188
+ resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==}
1189
+
1190
+ diff@8.0.4:
1191
+ resolution: {integrity: sha512-DPi0FmjiSU5EvQV0++GFDOJ9ASQUVFh5kD+OzOnYdi7n3Wpm9hWWGfB/O2blfHcMVTL5WkQXSnRiK9makhrcnw==}
1192
+ engines: {node: '>=0.3.1'}
1193
+
1194
+ dom-serializer@2.0.0:
1195
+ resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==}
1196
+
1197
+ domelementtype@2.3.0:
1198
+ resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==}
1199
+
1200
+ domhandler@5.0.3:
1201
+ resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==}
1202
+ engines: {node: '>= 4'}
1203
+
1204
+ domutils@3.2.2:
1205
+ resolution: {integrity: sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==}
1206
+
1207
+ dset@3.1.4:
1208
+ resolution: {integrity: sha512-2QF/g9/zTaPDc3BjNcVTGoBbXBgYfMTTceLaYcFJ/W9kggFUkhxD/hMEeuLKbugyef9SqAx8cpgwlIP/jinUTA==}
1209
+ engines: {node: '>=4'}
1210
+
1211
+ emmet@2.4.11:
1212
+ resolution: {integrity: sha512-23QPJB3moh/U9sT4rQzGgeyyGIrcM+GH5uVYg2C6wZIxAIJq7Ng3QLT79tl8FUwDXhyq9SusfknOrofAKqvgyQ==}
1213
+
1214
+ emoji-regex@8.0.0:
1215
+ resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
1216
+
1217
+ enhanced-resolve@5.24.3:
1218
+ resolution: {integrity: sha512-PwKooW9JUzh5chmYfHM3IQl5OkK2u2Nm011MgeZrss3JmFraUx/fqrf78kk8GUMYoibx/14MdwTl/1WKkG7TpQ==}
1219
+ engines: {node: '>=10.13.0'}
1220
+
1221
+ entities@4.5.0:
1222
+ resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
1223
+ engines: {node: '>=0.12'}
1224
+
1225
+ entities@6.0.1:
1226
+ resolution: {integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==}
1227
+ engines: {node: '>=0.12'}
1228
+
1229
+ es-module-lexer@2.3.1:
1230
+ resolution: {integrity: sha512-shc1dbU90Yl/xq1QrC7QRtfcwURZuVRfPhZbDoldJ1cn1gzDvBaBWlv0eFolj5+0znnPJz5TXLxsN77X/12KTA==}
1231
+
1232
+ esbuild@0.28.1:
1233
+ resolution: {integrity: sha512-HrJrvZv5ayxBzPfwphOoNzkzOIIlifzk0KJrGK2c8R4+LKpMtpYLQeUdjnwjWv/LZlkH2laZk+4w78pi99D4Vw==}
1234
+ engines: {node: '>=18'}
1235
+ hasBin: true
1236
+
1237
+ escalade@3.2.0:
1238
+ resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
1239
+ engines: {node: '>=6'}
1240
+
1241
+ escape-string-regexp@4.0.0:
1242
+ resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
1243
+ engines: {node: '>=10'}
1244
+
1245
+ eslint-plugin-astro@3.0.1:
1246
+ resolution: {integrity: sha512-skys0KV/5m/rQ6a4BDAGOGtrGoBlWNYiWtoDjx25bghDwTiKXng63s4Yv823iX3ht/tH/kHtoUM2poxESGsv3w==}
1247
+ engines: {node: ^22.22.3 || ^24.16.0 || >=26.3.0}
1248
+ peerDependencies:
1249
+ '@typescript-eslint/parser': '>=8.61.0'
1250
+ eslint: '>=10.0.0'
1251
+ eslint-plugin-jsx-a11y: '>=6.10.2'
1252
+ peerDependenciesMeta:
1253
+ '@typescript-eslint/parser':
1254
+ optional: true
1255
+ eslint-plugin-jsx-a11y:
1256
+ optional: true
1257
+
1258
+ eslint-scope@9.1.2:
1259
+ resolution: {integrity: sha512-xS90H51cKw0jltxmvmHy2Iai1LIqrfbw57b79w/J7MfvDfkIkFZ+kj6zC3BjtUwh150HsSSdxXZcsuv72miDFQ==}
1260
+ engines: {node: ^20.19.0 || ^22.13.0 || >=24}
1261
+
1262
+ eslint-visitor-keys@3.4.3:
1263
+ resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
1264
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1265
+
1266
+ eslint-visitor-keys@5.0.1:
1267
+ resolution: {integrity: sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==}
1268
+ engines: {node: ^20.19.0 || ^22.13.0 || >=24}
1269
+
1270
+ eslint@10.8.0:
1271
+ resolution: {integrity: sha512-nuKKvN+oIBO0koN7Tm7dlkmnkc21mtt0QJLwAKzjLq14y6lRTdVG36MZHJ8eQHwdJMwZbQNMlPOYedMq/oVJvQ==}
1272
+ engines: {node: ^20.19.0 || ^22.13.0 || >=24}
1273
+ hasBin: true
1274
+ peerDependencies:
1275
+ jiti: '*'
1276
+ peerDependenciesMeta:
1277
+ jiti:
1278
+ optional: true
1279
+
1280
+ espree@11.2.0:
1281
+ resolution: {integrity: sha512-7p3DrVEIopW1B1avAGLuCSh1jubc01H2JHc8B4qqGblmg5gI9yumBgACjWo4JlIc04ufug4xJ3SQI8HkS/Rgzw==}
1282
+ engines: {node: ^20.19.0 || ^22.13.0 || >=24}
1283
+
1284
+ esquery@1.7.0:
1285
+ resolution: {integrity: sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==}
1286
+ engines: {node: '>=0.10'}
1287
+
1288
+ esrecurse@4.3.0:
1289
+ resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
1290
+ engines: {node: '>=4.0'}
1291
+
1292
+ estraverse@5.3.0:
1293
+ resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
1294
+ engines: {node: '>=4.0'}
1295
+
1296
+ estree-walker@2.0.2:
1297
+ resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
1298
+
1299
+ esutils@2.0.3:
1300
+ resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
1301
+ engines: {node: '>=0.10.0'}
1302
+
1303
+ eventemitter3@5.0.4:
1304
+ resolution: {integrity: sha512-mlsTRyGaPBjPedk6Bvw+aqbsXDtoAyAzm5MO7JgU+yVRyMQ5O8bD4Kcci7BS85f93veegeCPkL8R4GLClnjLFw==}
1305
+
1306
+ extend@3.0.2:
1307
+ resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==}
1308
+
1309
+ fast-deep-equal@3.1.3:
1310
+ resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
1311
+
1312
+ fast-json-stable-stringify@2.1.0:
1313
+ resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
1314
+
1315
+ fast-levenshtein@2.0.6:
1316
+ resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
1317
+
1318
+ fast-string-truncated-width@3.0.3:
1319
+ resolution: {integrity: sha512-0jjjIEL6+0jag3l2XWWizO64/aZVtpiGE3t0Zgqxv0DPuxiMjvB3M24fCyhZUO4KomJQPj3LTSUnDP3GpdwC0g==}
1320
+
1321
+ fast-string-width@3.0.2:
1322
+ resolution: {integrity: sha512-gX8LrtNEI5hq8DVUfRQMbr5lpaS4nMIWV+7XEbXk2b8kiQIizgnlr12B4dA3ZEx3308ze0O4Q1R+cHts8kyUJg==}
1323
+
1324
+ fast-uri@3.1.4:
1325
+ resolution: {integrity: sha512-8JnbkQ4juDyvYs4mgFGQqg4yCYtFDtUtmp2QIQq11ZZe5CFQ5wcqm1rqDgAh/QdMySuBnPzMUiJUNZG5N/AiQw==}
1326
+
1327
+ fast-wrap-ansi@0.2.2:
1328
+ resolution: {integrity: sha512-7F2Fl+TjRSenLqlU3UjSH0iyqopqoZIu7eZVpEirP2g1GtWa2G/ecEmBdgz31+Mxr+ELclgg6sokpSFIQiZ02Q==}
1329
+
1330
+ fdir@6.5.0:
1331
+ resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
1332
+ engines: {node: '>=12.0.0'}
1333
+ peerDependencies:
1334
+ picomatch: ^3 || ^4
1335
+ peerDependenciesMeta:
1336
+ picomatch:
1337
+ optional: true
1338
+
1339
+ file-entry-cache@8.0.0:
1340
+ resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
1341
+ engines: {node: '>=16.0.0'}
1342
+
1343
+ find-up@5.0.0:
1344
+ resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
1345
+ engines: {node: '>=10'}
1346
+
1347
+ flat-cache@4.0.1:
1348
+ resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
1349
+ engines: {node: '>=16'}
1350
+
1351
+ flatted@3.4.3:
1352
+ resolution: {integrity: sha512-/zipXxyO6rGvuNGDiULY9MvEGSkb2gaG4GGH4ygMi0ZZzyMHdUZBmntJmx5x1G2VuPytCwGN4xsJP6cw+sK+vQ==}
1353
+
1354
+ flattie@1.1.1:
1355
+ resolution: {integrity: sha512-9UbaD6XdAL97+k/n+N7JwX46K/M6Zc6KcFYskrYL8wbBV/Uyk0CTAMY0VT+qiK5PM7AIc9aTWYtq65U7T+aCNQ==}
1356
+ engines: {node: '>=8'}
1357
+
1358
+ fontace@0.4.1:
1359
+ resolution: {integrity: sha512-lDMvbAzSnHmbYMTEld5qdtvNH2/pWpICOqpean9IgC7vUbUJc3k+k5Dokp85CegamqQpFbXf0rAVkbzpyTA8aw==}
1360
+
1361
+ fontkitten@1.0.3:
1362
+ resolution: {integrity: sha512-Wp1zXWPVUPBmfoa3Cqc9ctaKuzKAV6uLstRqlR56kSjplf5uAce+qeyYym7F+PHbGTk+tCEdkCW6RD7DX/gBZw==}
1363
+ engines: {node: '>=20'}
1364
+
1365
+ fsevents@2.3.3:
1366
+ resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
1367
+ engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
1368
+ os: [darwin]
1369
+
1370
+ get-caller-file@2.0.5:
1371
+ resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
1372
+ engines: {node: 6.* || 8.* || >= 10.*}
1373
+
1374
+ get-tsconfig@5.0.0-beta.4:
1375
+ resolution: {integrity: sha512-7nF7C9fIPFEMHgEMEfgIlO9wDdZ8CyHw27rWciFZfHvHDReIiPhsYuzPRXsfvBCqFy1l8RRyyWV7QLM+ZhUJsQ==}
1376
+ engines: {node: '>=20.20.0'}
1377
+
1378
+ github-slugger@2.0.0:
1379
+ resolution: {integrity: sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==}
1380
+
1381
+ glob-parent@6.0.2:
1382
+ resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
1383
+ engines: {node: '>=10.13.0'}
1384
+
1385
+ globals@17.7.0:
1386
+ resolution: {integrity: sha512-Czmyns5dUsq4seFBR/Kdydhmo8y9kC79hiSkPn0YcGtNnYWnrgt0vjrSjx9tspoDGWm2CMarffRuLjM4xUz8xg==}
1387
+ engines: {node: '>=18'}
1388
+
1389
+ graceful-fs@4.2.11:
1390
+ resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
1391
+
1392
+ gsap@3.15.0:
1393
+ resolution: {integrity: sha512-dMW4CWBTUK1AEEDeZc1g4xpPGIrSf9fJF960qbTZmN/QwZIWY5wgliS6JWl9/25fpTGJrMRtSjGtOmPnfjZB+A==}
1394
+
1395
+ h3@1.15.11:
1396
+ resolution: {integrity: sha512-L3THSe2MPeBwgIZVSH5zLdBBU90TOxarvhK9d04IDY2AmVS8j2Jz2LIWtwsGOU3lu2I5jCN7FNvVfY2+XyF+mg==}
1397
+
1398
+ hast-util-from-html@2.0.3:
1399
+ resolution: {integrity: sha512-CUSRHXyKjzHov8yKsQjGOElXy/3EKpyX56ELnkHH34vDVw1N1XSQ1ZcAvTyAPtGqLTuKP/uxM+aLkSPqF/EtMw==}
1400
+
1401
+ hast-util-from-parse5@8.0.3:
1402
+ resolution: {integrity: sha512-3kxEVkEKt0zvcZ3hCRYI8rqrgwtlIOFMWkbclACvjlDw8Li9S2hk/d51OI0nr/gIpdMHNepwgOKqZ/sy0Clpyg==}
1403
+
1404
+ hast-util-parse-selector@4.0.0:
1405
+ resolution: {integrity: sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==}
1406
+
1407
+ hast-util-to-html@9.0.5:
1408
+ resolution: {integrity: sha512-OguPdidb+fbHQSU4Q4ZiLKnzWo8Wwsf5bZfbvu7//a9oTYoqD/fWpe96NuHkoS9h0ccGOTe0C4NGXdtS0iObOw==}
1409
+
1410
+ hast-util-whitespace@3.0.0:
1411
+ resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==}
1412
+
1413
+ hastscript@9.0.1:
1414
+ resolution: {integrity: sha512-g7df9rMFX/SPi34tyGCyUBREQoKkapwdY/T04Qn9TDWfHhAYt4/I0gMVirzK5wEzeUqIjEB+LXC/ypb7Aqno5w==}
1415
+
1416
+ html-escaper@3.0.3:
1417
+ resolution: {integrity: sha512-RuMffC89BOWQoY0WKGpIhn5gX3iI54O6nRA0yC124NYVtzjmFWBIiFd8M0x+ZdX0P9R4lADg1mgP8C7PxGOWuQ==}
1418
+
1419
+ html-void-elements@3.0.0:
1420
+ resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==}
1421
+
1422
+ http-cache-semantics@4.2.0:
1423
+ resolution: {integrity: sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==}
1424
+
1425
+ ignore@5.3.2:
1426
+ resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
1427
+ engines: {node: '>= 4'}
1428
+
1429
+ ignore@7.0.6:
1430
+ resolution: {integrity: sha512-BAg6QkE8W+TuQLrrw0Ugr7HegXduRuuj8/ti2kSOc+jz1dmx8/WNcjr6XGnq5YpDWxFwwaavqD0+jIUOKelTsw==}
1431
+ engines: {node: '>= 4'}
1432
+
1433
+ imurmurhash@0.1.4:
1434
+ resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
1435
+ engines: {node: '>=0.8.19'}
1436
+
1437
+ iron-webcrypto@1.2.1:
1438
+ resolution: {integrity: sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==}
1439
+
1440
+ is-docker@4.0.0:
1441
+ resolution: {integrity: sha512-LHE+wROyG/Y/0ZnbktRCoTix2c1RhgWaZraMZ8o1Q7zCh0VSrICJQO5oqIIISrcSBtrXv0o233w1IYwsWCjTzA==}
1442
+ engines: {node: '>=20'}
1443
+ hasBin: true
1444
+
1445
+ is-extglob@2.1.1:
1446
+ resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
1447
+ engines: {node: '>=0.10.0'}
1448
+
1449
+ is-fullwidth-code-point@3.0.0:
1450
+ resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
1451
+ engines: {node: '>=8'}
1452
+
1453
+ is-glob@4.0.3:
1454
+ resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
1455
+ engines: {node: '>=0.10.0'}
1456
+
1457
+ is-plain-obj@4.1.0:
1458
+ resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==}
1459
+ engines: {node: '>=12'}
1460
+
1461
+ isexe@2.0.0:
1462
+ resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
1463
+
1464
+ jiti@2.7.0:
1465
+ resolution: {integrity: sha512-AC/7JofJvZGrrneWNaEnJeOLUx+JlGt7tNa0wZiRPT4MY1wmfKjt2+6O2p2uz2+skll8OZZmJMNqeke7kKbNgQ==}
1466
+ hasBin: true
1467
+
1468
+ js-yaml@4.3.0:
1469
+ resolution: {integrity: sha512-1td788aAnnZ5qs7V2QIRl1owjtYpbKt749Y3xauqQgwIIGF/xXWz1wMTEBx5O3LK3lXLVuqXPdPxj2BoFHaW9Q==}
1470
+ hasBin: true
1471
+
1472
+ json-buffer@3.0.1:
1473
+ resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
1474
+
1475
+ json-schema-traverse@0.4.1:
1476
+ resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
1477
+
1478
+ json-schema-traverse@1.0.0:
1479
+ resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==}
1480
+
1481
+ json-stable-stringify-without-jsonify@1.0.1:
1482
+ resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
1483
+
1484
+ jsonc-parser@2.3.1:
1485
+ resolution: {integrity: sha512-H8jvkz1O50L3dMZCsLqiuB2tA7muqbSg1AtGEkN0leAqGjsUzDJir3Zwr02BhqdcITPg3ei3mZ+HjMocAknhhg==}
1486
+
1487
+ jsonc-parser@3.3.1:
1488
+ resolution: {integrity: sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==}
1489
+
1490
+ keyv@4.5.4:
1491
+ resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
1492
+
1493
+ kleur@4.1.5:
1494
+ resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==}
1495
+ engines: {node: '>=6'}
1496
+
1497
+ lenis@1.3.25:
1498
+ resolution: {integrity: sha512-mOKxayErlaONK8fm4LN3XNd99Qu4plTpn9h9qf8wxzjGrJDzuD84FYzZ81HCd6ZsWp++VWVwOzL286Pf2s2u4A==}
1499
+ peerDependencies:
1500
+ '@nuxt/kit': '>=3.0.0'
1501
+ react: '>=17.0.0'
1502
+ vue: '>=3.0.0'
1503
+ peerDependenciesMeta:
1504
+ '@nuxt/kit':
1505
+ optional: true
1506
+ react:
1507
+ optional: true
1508
+ vue:
1509
+ optional: true
1510
+
1511
+ levn@0.4.1:
1512
+ resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
1513
+ engines: {node: '>= 0.8.0'}
1514
+
1515
+ lightningcss-android-arm64@1.32.0:
1516
+ resolution: {integrity: sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==}
1517
+ engines: {node: '>= 12.0.0'}
1518
+ cpu: [arm64]
1519
+ os: [android]
1520
+
1521
+ lightningcss-android-arm64@1.33.0:
1522
+ resolution: {integrity: sha512-gEpRTalKdosp4Bb8qWtc2iOgE5SeIHlpS1up9bFq2wAyYhl1UdTObYiHe98zEM9SQvSoqQZ1IQD0JNpg3Ml5pg==}
1523
+ engines: {node: '>= 12.0.0'}
1524
+ cpu: [arm64]
1525
+ os: [android]
1526
+
1527
+ lightningcss-darwin-arm64@1.32.0:
1528
+ resolution: {integrity: sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==}
1529
+ engines: {node: '>= 12.0.0'}
1530
+ cpu: [arm64]
1531
+ os: [darwin]
1532
+
1533
+ lightningcss-darwin-arm64@1.33.0:
1534
+ resolution: {integrity: sha512-Sciaz8eenNTKn9b3t7+xr0ipTp9YxKQY4npwQ3mrRuL0BAVHBLyZxofhaKBAVtzmtRZ/zTyo0/to4B1uWG/Djg==}
1535
+ engines: {node: '>= 12.0.0'}
1536
+ cpu: [arm64]
1537
+ os: [darwin]
1538
+
1539
+ lightningcss-darwin-x64@1.32.0:
1540
+ resolution: {integrity: sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==}
1541
+ engines: {node: '>= 12.0.0'}
1542
+ cpu: [x64]
1543
+ os: [darwin]
1544
+
1545
+ lightningcss-darwin-x64@1.33.0:
1546
+ resolution: {integrity: sha512-Z5UPAxzrjlWNNyGy6i65cJzzvgJ5D3T6wMvs+gWpY9d7qRhANrxqAp6LhxIgZhWEw18RfJTGcRxjuLIBr+m8XQ==}
1547
+ engines: {node: '>= 12.0.0'}
1548
+ cpu: [x64]
1549
+ os: [darwin]
1550
+
1551
+ lightningcss-freebsd-x64@1.32.0:
1552
+ resolution: {integrity: sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==}
1553
+ engines: {node: '>= 12.0.0'}
1554
+ cpu: [x64]
1555
+ os: [freebsd]
1556
+
1557
+ lightningcss-freebsd-x64@1.33.0:
1558
+ resolution: {integrity: sha512-QQM/Ti/hQajJwCY+RiWuCZ9sdtI/XQk7nDK5vC8kkdwixezOlDgvDx7+RT+QjK6FcFT4MpsuoBnHIo/O3StRRg==}
1559
+ engines: {node: '>= 12.0.0'}
1560
+ cpu: [x64]
1561
+ os: [freebsd]
1562
+
1563
+ lightningcss-linux-arm-gnueabihf@1.32.0:
1564
+ resolution: {integrity: sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==}
1565
+ engines: {node: '>= 12.0.0'}
1566
+ cpu: [arm]
1567
+ os: [linux]
1568
+
1569
+ lightningcss-linux-arm-gnueabihf@1.33.0:
1570
+ resolution: {integrity: sha512-N7FVBe6iS24MlM6R/4RBTxGhQheZGs7tiQ9U32UtF75NzP5Q7xWPRqLBCKxlRQRk3rY1jCIPLzx7WzOhuUIRLQ==}
1571
+ engines: {node: '>= 12.0.0'}
1572
+ cpu: [arm]
1573
+ os: [linux]
1574
+
1575
+ lightningcss-linux-arm64-gnu@1.32.0:
1576
+ resolution: {integrity: sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==}
1577
+ engines: {node: '>= 12.0.0'}
1578
+ cpu: [arm64]
1579
+ os: [linux]
1580
+
1581
+ lightningcss-linux-arm64-gnu@1.33.0:
1582
+ resolution: {integrity: sha512-j2v/itmy4HlNxlc6voKXYgBqNi0Ng2LShg4z7GufpEgs05P+2suBVyi9I6YHq5uoVFx9ETin3eCEhLVyXGQnKg==}
1583
+ engines: {node: '>= 12.0.0'}
1584
+ cpu: [arm64]
1585
+ os: [linux]
1586
+
1587
+ lightningcss-linux-arm64-musl@1.32.0:
1588
+ resolution: {integrity: sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==}
1589
+ engines: {node: '>= 12.0.0'}
1590
+ cpu: [arm64]
1591
+ os: [linux]
1592
+
1593
+ lightningcss-linux-arm64-musl@1.33.0:
1594
+ resolution: {integrity: sha512-yiO5ROMuYQgXbC60yjZU5CYSFZGKXL0HFATXt9mHJn1+zW55oCtMI9NfcVhYLMFDL7gV7oBPon/EmMMGg2OvtQ==}
1595
+ engines: {node: '>= 12.0.0'}
1596
+ cpu: [arm64]
1597
+ os: [linux]
1598
+
1599
+ lightningcss-linux-x64-gnu@1.32.0:
1600
+ resolution: {integrity: sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==}
1601
+ engines: {node: '>= 12.0.0'}
1602
+ cpu: [x64]
1603
+ os: [linux]
1604
+
1605
+ lightningcss-linux-x64-gnu@1.33.0:
1606
+ resolution: {integrity: sha512-ar+Ju7LmcN0Jo4FpL4hpFybwNG9/3A/Br5KW2n2jyODg3MEZXaDYADdemoNS+BDNfMgKvylJLj4S5tyRActuAg==}
1607
+ engines: {node: '>= 12.0.0'}
1608
+ cpu: [x64]
1609
+ os: [linux]
1610
+
1611
+ lightningcss-linux-x64-musl@1.32.0:
1612
+ resolution: {integrity: sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==}
1613
+ engines: {node: '>= 12.0.0'}
1614
+ cpu: [x64]
1615
+ os: [linux]
1616
+
1617
+ lightningcss-linux-x64-musl@1.33.0:
1618
+ resolution: {integrity: sha512-RYiYbkokw0trfKqqzfF55lginwEPrD3OJDfTuJzFs1MK6iFnDenaz1fqLLtX4ITG3OktJQXOeTaw1awrBAlZPw==}
1619
+ engines: {node: '>= 12.0.0'}
1620
+ cpu: [x64]
1621
+ os: [linux]
1622
+
1623
+ lightningcss-win32-arm64-msvc@1.32.0:
1624
+ resolution: {integrity: sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==}
1625
+ engines: {node: '>= 12.0.0'}
1626
+ cpu: [arm64]
1627
+ os: [win32]
1628
+
1629
+ lightningcss-win32-arm64-msvc@1.33.0:
1630
+ resolution: {integrity: sha512-1K+MPfLSFVpphzpdbfkhlWk6wBrTObBzS2T6db10PNOZgR9GoVsAWzwNyuhUYYbTp23j+4RrncfujZ4uAzXvwA==}
1631
+ engines: {node: '>= 12.0.0'}
1632
+ cpu: [arm64]
1633
+ os: [win32]
1634
+
1635
+ lightningcss-win32-x64-msvc@1.32.0:
1636
+ resolution: {integrity: sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==}
1637
+ engines: {node: '>= 12.0.0'}
1638
+ cpu: [x64]
1639
+ os: [win32]
1640
+
1641
+ lightningcss-win32-x64-msvc@1.33.0:
1642
+ resolution: {integrity: sha512-OlEICDx/Xl0FqSp4bry8zFnCvGpig3Gl4gCquvYwHuqJKEC1+n9NgDniFvqHGmMv1ZkqDJrDqKKSykTDX+ehuA==}
1643
+ engines: {node: '>= 12.0.0'}
1644
+ cpu: [x64]
1645
+ os: [win32]
1646
+
1647
+ lightningcss@1.32.0:
1648
+ resolution: {integrity: sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==}
1649
+ engines: {node: '>= 12.0.0'}
1650
+
1651
+ lightningcss@1.33.0:
1652
+ resolution: {integrity: sha512-WkUDrojuJs0xkgGf2udWxa3yGBRxPtxUkB79i6aCZLRgc7PM8fZe9TosfPDcvEpQZbuFASnHYmRLBLUbmLOIIA==}
1653
+ engines: {node: '>= 12.0.0'}
1654
+
1655
+ locate-path@6.0.0:
1656
+ resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
1657
+ engines: {node: '>=10'}
1658
+
1659
+ lru-cache@11.5.2:
1660
+ resolution: {integrity: sha512-4pfM1Ff0x50o0tQwb5ucw/RzNyD0/YJME6IVcStalZuMWxdt3sR3huStTtxz4PUmvZfRguvDejasvQ2kifR11g==}
1661
+ engines: {node: 20 || >=22}
1662
+
1663
+ magic-string@0.30.21:
1664
+ resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
1665
+
1666
+ magicast@0.5.3:
1667
+ resolution: {integrity: sha512-pVKE4UdSQ7DvHzivsCIFx2BJn1mHG6KsyrFcaxFx6tONdneEuThrDx0Cj3AMg58KyN4pzYT+LHOotxDQDjNvkw==}
1668
+
1669
+ mdast-util-to-hast@13.2.1:
1670
+ resolution: {integrity: sha512-cctsq2wp5vTsLIcaymblUriiTcZd0CwWtCbLvrOzYCDZoWyMNV8sZ7krj09FSnsiJi3WVsHLM4k6Dq/yaPyCXA==}
1671
+
1672
+ mdn-data@2.0.28:
1673
+ resolution: {integrity: sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==}
1674
+
1675
+ mdn-data@2.27.1:
1676
+ resolution: {integrity: sha512-9Yubnt3e8A0OKwxYSXyhLymGW4sCufcLG6VdiDdUGVkPhpqLxlvP5vl1983gQjJl3tqbrM731mjaZaP68AgosQ==}
1677
+
1678
+ micromark-util-character@2.1.1:
1679
+ resolution: {integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==}
1680
+
1681
+ micromark-util-encode@2.0.1:
1682
+ resolution: {integrity: sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==}
1683
+
1684
+ micromark-util-sanitize-uri@2.0.1:
1685
+ resolution: {integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==}
1686
+
1687
+ micromark-util-symbol@2.0.1:
1688
+ resolution: {integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==}
1689
+
1690
+ micromark-util-types@2.0.2:
1691
+ resolution: {integrity: sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==}
1692
+
1693
+ minimatch@10.2.5:
1694
+ resolution: {integrity: sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==}
1695
+ engines: {node: 18 || 20 || >=22}
1696
+
1697
+ mrmime@2.0.1:
1698
+ resolution: {integrity: sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==}
1699
+ engines: {node: '>=10'}
1700
+
1701
+ ms@2.1.3:
1702
+ resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
1703
+
1704
+ muggle-string@0.4.1:
1705
+ resolution: {integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==}
1706
+
1707
+ nanoid@3.3.16:
1708
+ resolution: {integrity: sha512-bzlKTyNJ7+LdGIIwy8ijFpIqEQIvafahV7eYykJ8Cvh42EdJeODoJ6gUJXpQJvej1BddH8OqTXZNE/KfbWAu8Q==}
1709
+ engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
1710
+ hasBin: true
1711
+
1712
+ natural-compare@1.4.0:
1713
+ resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
1714
+
1715
+ neotraverse@1.0.1:
1716
+ resolution: {integrity: sha512-WmmLty1YWwJl9yZi77v2dVIV6X2kuYV8YYBI/G3LWGKdGHmHUvL1z7FW0iDvEvGAwNEoc5x1tOOOyDnf5jJw/w==}
1717
+ engines: {node: '>= 10'}
1718
+
1719
+ nlcst-to-string@4.0.0:
1720
+ resolution: {integrity: sha512-YKLBCcUYKAg0FNlOBT6aI91qFmSiFKiluk655WzPF+DDMA02qIyy8uiRqI8QXtcFpEvll12LpL5MXqEmAZ+dcA==}
1721
+
1722
+ node-fetch-native@1.6.7:
1723
+ resolution: {integrity: sha512-g9yhqoedzIUm0nTnTqAQvueMPVOuIY16bqgAJJC8XOOubYFNwz6IER9qs0Gq2Xd0+CecCKFjtdDTMA4u4xG06Q==}
1724
+
1725
+ node-mock-http@1.0.4:
1726
+ resolution: {integrity: sha512-8DY+kFsDkNXy1sJglUfuODx1/opAGJGyrTuFqEoN90oRc2Vk0ZbD4K2qmKXBBEhZQzdKHIVfEJpDU8Ak2NJEvQ==}
1727
+
1728
+ normalize-path@3.0.0:
1729
+ resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
1730
+ engines: {node: '>=0.10.0'}
1731
+
1732
+ nth-check@2.1.1:
1733
+ resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
1734
+
1735
+ obug@2.1.4:
1736
+ resolution: {integrity: sha512-4a+OsYv9UktOJKE+l1A4OufDgdRF9PifWj+tJnHURo/P+WOxpG4GzUFL9qCalmWauao6ogiG+QvnCovwPoyAWA==}
1737
+ engines: {node: '>=12.20.0'}
1738
+
1739
+ ofetch@1.5.1:
1740
+ resolution: {integrity: sha512-2W4oUZlVaqAPAil6FUg/difl6YhqhUR7x2eZY4bQCko22UXg3hptq9KLQdqFClV+Wu85UX7hNtdGTngi/1BxcA==}
1741
+
1742
+ ohash@2.0.11:
1743
+ resolution: {integrity: sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==}
1744
+
1745
+ oniguruma-parser@0.12.2:
1746
+ resolution: {integrity: sha512-6HVa5oIrgMC6aA6WF6XyyqbhRPJrKR02L20+2+zpDtO5QAzGHAUGw5TKQvwi5vctNnRHkJYmjAhRVQF2EKdTQw==}
1747
+
1748
+ oniguruma-to-es@4.3.6:
1749
+ resolution: {integrity: sha512-csuQ9x3Yr0cEIs/Zgx/OEt9iBw9vqIunAPQkx19R/fiMq2oGVTgcMqO/V3Ybqefr1TBvosI6jU539ksaBULJyA==}
1750
+
1751
+ optionator@0.9.4:
1752
+ resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
1753
+ engines: {node: '>= 0.8.0'}
1754
+
1755
+ p-limit@3.1.0:
1756
+ resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
1757
+ engines: {node: '>=10'}
1758
+
1759
+ p-limit@7.3.1:
1760
+ resolution: {integrity: sha512-0trZaiG7Y7kN/Egy9a8j47t9osC0Tch4PaIWd9yGF6bvmlk7muExRvGNYb8sXBwEKMoNKsbNN9P8EefuQekE4Q==}
1761
+ engines: {node: '>=20'}
1762
+
1763
+ p-locate@5.0.0:
1764
+ resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
1765
+ engines: {node: '>=10'}
1766
+
1767
+ p-queue@9.3.3:
1768
+ resolution: {integrity: sha512-NXAOdnEe5FsZJfT4oK84lE1Y5cFFdWlRuOo5tww8DyNMxyRXwn39fIkUtNLKppcPC+UYU/bXujNCUGDv01y7CA==}
1769
+ engines: {node: '>=20'}
1770
+
1771
+ p-timeout@7.0.1:
1772
+ resolution: {integrity: sha512-AxTM2wDGORHGEkPCt8yqxOTMgpfbEHqF51f/5fJCmwFC3C/zNcGT63SymH2ttOAaiIws2zVg4+izQCjrakcwHg==}
1773
+ engines: {node: '>=20'}
1774
+
1775
+ package-manager-detector@1.8.0:
1776
+ resolution: {integrity: sha512-yQA4H19AmPEoMUeavPMDIe1higySl/gH/yaQrkT/s07Qp+7pp2hYz30N3z2l5BkjVkF9Ow6o0wjJamm2y7Sn0A==}
1777
+
1778
+ paper@0.12.18:
1779
+ resolution: {integrity: sha512-ZSLIEejQTJZuYHhSSqAf4jXOnii0kPhCJGAnYAANtdS72aNwXJ9cP95tZHgq1tnNpvEwgQhggy+4OarviqTCGw==}
1780
+ engines: {node: '>=8.0.0'}
1781
+
1782
+ parse5@7.3.0:
1783
+ resolution: {integrity: sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==}
1784
+
1785
+ path-browserify@1.0.1:
1786
+ resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==}
1787
+
1788
+ path-exists@4.0.0:
1789
+ resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
1790
+ engines: {node: '>=8'}
1791
+
1792
+ path-key@3.1.1:
1793
+ resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
1794
+ engines: {node: '>=8'}
1795
+
1796
+ piccolore@0.1.3:
1797
+ resolution: {integrity: sha512-o8bTeDWjE086iwKrROaDf31K0qC/BENdm15/uH9usSC/uZjJOKb2YGiVHfLY4GhwsERiPI1jmwI2XrA7ACOxVw==}
1798
+
1799
+ picocolors@1.1.1:
1800
+ resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
1801
+
1802
+ picomatch@2.3.2:
1803
+ resolution: {integrity: sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==}
1804
+ engines: {node: '>=8.6'}
1805
+
1806
+ picomatch@4.0.5:
1807
+ resolution: {integrity: sha512-RvwwcruNjI1ncT5xRakeyS9Lf8lcItv34KD+aif+VH9kduAyfYBipGh12274xtenIPZ119/R9BdTBa8gAwSh0A==}
1808
+ engines: {node: '>=12'}
1809
+
1810
+ postcss-selector-parser@7.1.4:
1811
+ resolution: {integrity: sha512-HeP7D2wyhkR+XaK6v4W8oRF62Dsz4flyuczALJp61GckGm42u1saSSJ/0auvcBqxs3jMRFEcPK34At/0JBKdOg==}
1812
+ engines: {node: '>=4'}
1813
+
1814
+ postcss@8.5.23:
1815
+ resolution: {integrity: sha512-g50586zr4bZmwFiTlflMu8E0bDTb5I5gertgwAKmsdUlTQIhZtunzUlD1WSzwcVWPoAVpsrA6vlfCD7oXvRwgg==}
1816
+ engines: {node: ^10 || ^12 || >=14}
1817
+
1818
+ prelude-ls@1.2.1:
1819
+ resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
1820
+ engines: {node: '>= 0.8.0'}
1821
+
1822
+ prettier-plugin-astro@0.14.1:
1823
+ resolution: {integrity: sha512-RiBETaaP9veVstE4vUwSIcdATj6dKmXljouXc/DDNwBSPTp8FRkLGDSGFClKsAFeeg+13SB0Z1JZvbD76bigJw==}
1824
+ engines: {node: ^14.15.0 || >=16.0.0}
1825
+
1826
+ prettier-plugin-tailwindcss@0.8.1:
1827
+ resolution: {integrity: sha512-iaFMYqDsE4ffdDkn5qup0j5f2aCEBFZrdrZnvu9QKTlWx/iGPeQ4HHu7b7fCPMxeo9nwQBiOAh2nSypdFYWJkw==}
1828
+ engines: {node: '>=20.19'}
1829
+ peerDependencies:
1830
+ '@ianvs/prettier-plugin-sort-imports': '*'
1831
+ '@prettier/plugin-hermes': '*'
1832
+ '@prettier/plugin-oxc': '*'
1833
+ '@prettier/plugin-pug': '*'
1834
+ '@shopify/prettier-plugin-liquid': '*'
1835
+ '@trivago/prettier-plugin-sort-imports': '*'
1836
+ '@zackad/prettier-plugin-twig': '*'
1837
+ prettier: ^3.0
1838
+ prettier-plugin-astro: '*'
1839
+ prettier-plugin-css-order: '*'
1840
+ prettier-plugin-jsdoc: '*'
1841
+ prettier-plugin-marko: '*'
1842
+ prettier-plugin-multiline-arrays: '*'
1843
+ prettier-plugin-organize-attributes: '*'
1844
+ prettier-plugin-organize-imports: '*'
1845
+ prettier-plugin-sort-imports: '*'
1846
+ prettier-plugin-svelte: '*'
1847
+ peerDependenciesMeta:
1848
+ '@ianvs/prettier-plugin-sort-imports':
1849
+ optional: true
1850
+ '@prettier/plugin-hermes':
1851
+ optional: true
1852
+ '@prettier/plugin-oxc':
1853
+ optional: true
1854
+ '@prettier/plugin-pug':
1855
+ optional: true
1856
+ '@shopify/prettier-plugin-liquid':
1857
+ optional: true
1858
+ '@trivago/prettier-plugin-sort-imports':
1859
+ optional: true
1860
+ '@zackad/prettier-plugin-twig':
1861
+ optional: true
1862
+ prettier-plugin-astro:
1863
+ optional: true
1864
+ prettier-plugin-css-order:
1865
+ optional: true
1866
+ prettier-plugin-jsdoc:
1867
+ optional: true
1868
+ prettier-plugin-marko:
1869
+ optional: true
1870
+ prettier-plugin-multiline-arrays:
1871
+ optional: true
1872
+ prettier-plugin-organize-attributes:
1873
+ optional: true
1874
+ prettier-plugin-organize-imports:
1875
+ optional: true
1876
+ prettier-plugin-sort-imports:
1877
+ optional: true
1878
+ prettier-plugin-svelte:
1879
+ optional: true
1880
+
1881
+ prettier@3.9.6:
1882
+ resolution: {integrity: sha512-OpN0zzVdiaiAhxpuuj5efpIS4sY9j7bY6uR5mnj5yPzGkdkjNKSJeUThPb60Jw29QuAZgA4o+/iB49kFiaBX6g==}
1883
+ engines: {node: '>=14'}
1884
+ hasBin: true
1885
+
1886
+ prismjs@1.30.0:
1887
+ resolution: {integrity: sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw==}
1888
+ engines: {node: '>=6'}
1889
+
1890
+ process-ancestry@0.1.0:
1891
+ resolution: {integrity: sha512-tGqJW/UnclpYASFcM6Xh8D8l/BMtaQ9+CSG0vlJSJTcdMM4lDRv4c6H0Pdcsfted+bVczdYSfk2fdukg2gQkZg==}
1892
+ engines: {node: '>=18.0.0'}
1893
+
1894
+ property-information@7.2.0:
1895
+ resolution: {integrity: sha512-IAtzIB6sUiWaJYrX9smp3V46pBGbBeLFRGdh25kg1334VcBlD8HzhPeNIWQH9zhGmo2itIe25EHt9dQP7G5hmg==}
1896
+
1897
+ punycode@2.3.1:
1898
+ resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
1899
+ engines: {node: '>=6'}
1900
+
1901
+ radix3@1.1.2:
1902
+ resolution: {integrity: sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==}
1903
+
1904
+ readdirp@4.1.2:
1905
+ resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==}
1906
+ engines: {node: '>= 14.18.0'}
1907
+
1908
+ readdirp@5.0.0:
1909
+ resolution: {integrity: sha512-9u/XQ1pvrQtYyMpZe7DXKv2p5CNvyVwzUB6uhLAnQwHMSgKMBR62lc7AHljaeteeHXn11XTAaLLUVZYVZyuRBQ==}
1910
+ engines: {node: '>= 20.19.0'}
1911
+
1912
+ regex-recursion@6.0.2:
1913
+ resolution: {integrity: sha512-0YCaSCq2VRIebiaUviZNs0cBz1kg5kVS2UKUfNIx8YVs1cN3AV7NTctO5FOKBA+UT2BPJIWZauYHPqJODG50cg==}
1914
+
1915
+ regex-utilities@2.3.0:
1916
+ resolution: {integrity: sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==}
1917
+
1918
+ regex@6.1.0:
1919
+ resolution: {integrity: sha512-6VwtthbV4o/7+OaAF9I5L5V3llLEsoPyq9P1JVXkedTP33c7MfCG0/5NOPcSJn0TzXcG9YUrR0gQSWioew3LDg==}
1920
+
1921
+ request-light@0.5.8:
1922
+ resolution: {integrity: sha512-3Zjgh+8b5fhRJBQZoy+zbVKpAQGLyka0MPgW3zruTF4dFFJ8Fqcfu9YsAvi/rvdcaTeWG3MkbZv4WKxAn/84Lg==}
1923
+
1924
+ request-light@0.7.0:
1925
+ resolution: {integrity: sha512-lMbBMrDoxgsyO+yB3sDcrDuX85yYt7sS8BfQd11jtbW/z5ZWgLZRcEGLsLoYw7I0WSUGQBs8CC8ScIxkTX1+6Q==}
1926
+
1927
+ require-directory@2.1.1:
1928
+ resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
1929
+ engines: {node: '>=0.10.0'}
1930
+
1931
+ require-from-string@2.0.2:
1932
+ resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
1933
+ engines: {node: '>=0.10.0'}
1934
+
1935
+ resolve-pkg-maps@1.0.0:
1936
+ resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
1937
+
1938
+ retext-smartypants@6.2.0:
1939
+ resolution: {integrity: sha512-kk0jOU7+zGv//kfjXEBjdIryL1Acl4i9XNkHxtM7Tm5lFiCog576fjNC9hjoR7LTKQ0DsPWy09JummSsH1uqfQ==}
1940
+
1941
+ rolldown@1.1.5:
1942
+ resolution: {integrity: sha512-t9z29cJjXf/vxQ8dyhCSpt6H6aSwHTk8cT5I3iy6SMXuFpk5mB6PL6XfC8PCwrPTx93udwKUm9HRteAlTGBLiA==}
1943
+ engines: {node: ^20.19.0 || >=22.12.0}
1944
+ hasBin: true
1945
+
1946
+ s.color@0.0.15:
1947
+ resolution: {integrity: sha512-AUNrbEUHeKY8XsYr/DYpl+qk5+aM+DChopnWOPEzn8YKzOhv4l2zH6LzZms3tOZP3wwdOyc0RmTciyi46HLIuA==}
1948
+
1949
+ sass-formatter@0.7.9:
1950
+ resolution: {integrity: sha512-CWZ8XiSim+fJVG0cFLStwDvft1VI7uvXdCNJYXhDvowiv+DsbD1nXLiQ4zrE5UBvj5DWZJ93cwN0NX5PMsr1Pw==}
1951
+
1952
+ satteri@0.9.5:
1953
+ resolution: {integrity: sha512-ZuWVl+vnM64y+/TtX8Kosv2c00W+hLQiiwnEL6H0UKVVrxFqMw4D2CJHHQaouVd89OAhtBBfjWLqhKi3TVUV4w==}
1954
+
1955
+ sax@1.6.1:
1956
+ resolution: {integrity: sha512-42tBVwLWnaQvW5zc4HbZrTuWccECCZfBi92FDuwtqxasH+JbPB3/FOKb1m222K42R4WxuxzzMsTswfzgtSu64Q==}
1957
+ engines: {node: '>=11.0.0'}
1958
+
1959
+ semver@7.8.5:
1960
+ resolution: {integrity: sha512-Y7/KDsb8LjooZpwaqGyulO6DQlksgCncchHGk+sZIY4SBvUocMBEFH5Ur1fI4dV+Jvl0w6cjvucaIi40puRioA==}
1961
+ engines: {node: '>=10'}
1962
+ hasBin: true
1963
+
1964
+ sharp@0.35.3:
1965
+ resolution: {integrity: sha512-ej0zVHuZGHCiABXcNxeYhpRnPNPAcvbG8RMdBAhDAxLKkCRVSpK3Iyu7qbqw3JMzoj0REeM6f3tJLtVwl0023Q==}
1966
+ engines: {node: '>=20.9.0'}
1967
+ peerDependencies:
1968
+ '@types/node': '*'
1969
+ peerDependenciesMeta:
1970
+ '@types/node':
1971
+ optional: true
1972
+
1973
+ shebang-command@2.0.0:
1974
+ resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
1975
+ engines: {node: '>=8'}
1976
+
1977
+ shebang-regex@3.0.0:
1978
+ resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
1979
+ engines: {node: '>=8'}
1980
+
1981
+ shiki@4.3.1:
1982
+ resolution: {integrity: sha512-oR+qDVi2OjX1tmDpyv+3KviX01KzO6Af+0NNnKnsp9491UEGz2YpxTuJboS/6VhYpTdqzmuJBuiTlrAWWJAssw==}
1983
+ engines: {node: '>=20'}
1984
+
1985
+ sisteransi@1.0.5:
1986
+ resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
1987
+
1988
+ smol-toml@1.7.0:
1989
+ resolution: {integrity: sha512-aqVvWoyO21L23mb+drl4RmMXbf6N7FdHjAhTRA9ZBL7apWBgfWC16KjrASI+1p9GAroljyMHj6fK67i0UiTNvQ==}
1990
+ engines: {node: '>= 18'}
1991
+
1992
+ source-map-js@1.2.1:
1993
+ resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
1994
+ engines: {node: '>=0.10.0'}
1995
+
1996
+ space-separated-tokens@2.0.2:
1997
+ resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==}
1998
+
1999
+ split-type@0.3.4:
2000
+ resolution: {integrity: sha512-otEk9vnD8qwfLsk3Lx0gz+qRkNIJCx0mlyL47ImP/DjMuV39d75Lpfwjn9fHteDRz0aoOblSzQjSNT9+Sswxcg==}
2001
+
2002
+ string-width@4.2.3:
2003
+ resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
2004
+ engines: {node: '>=8'}
2005
+
2006
+ stringify-entities@4.0.4:
2007
+ resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==}
2008
+
2009
+ strip-ansi@6.0.1:
2010
+ resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
2011
+ engines: {node: '>=8'}
2012
+
2013
+ suf-log@2.5.3:
2014
+ resolution: {integrity: sha512-KvC8OPjzdNOe+xQ4XWJV2whQA0aM1kGVczMQ8+dStAO6KfEB140JEVQ9dE76ONZ0/Ylf67ni4tILPJB41U0eow==}
2015
+
2016
+ svgo@4.0.2:
2017
+ resolution: {integrity: sha512-ekx94z1rRc5LDi6oSUaeRnYhd0UOJxdtQCL2rF8xpWxD3TPAsISWOrxezqGovqS38GRZOdpDfvQe3ts6F7nsng==}
2018
+ engines: {node: '>=16'}
2019
+ hasBin: true
2020
+
2021
+ tailwindcss@4.3.3:
2022
+ resolution: {integrity: sha512-gOhV3P7ufE62QDGg1zVaTgCR+EtPv92k2nIhVcVKcLmxT1sUBsQGhnZj175j+MqRt4zLF7ic+sCYjfhxMxj7YQ==}
2023
+
2024
+ tapable@2.3.3:
2025
+ resolution: {integrity: sha512-uxc/zpqFg6x7C8vOE7lh6Lbda8eEL9zmVm/PLeTPBRhh1xCgdWaQ+J1CUieGpIfm2HdtsUpRv+HshiasBMcc6A==}
2026
+ engines: {node: '>=6'}
2027
+
2028
+ tiny-inflate@1.0.3:
2029
+ resolution: {integrity: sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==}
2030
+
2031
+ tinyclip@0.1.15:
2032
+ resolution: {integrity: sha512-uo33abH+Ays0xYaDysoBt494Hb3hsEczMpcC0MwFl773pazORx4fmvKhclhR1wonUbB6vvpRsvVMwnhfqeMc+A==}
2033
+ engines: {node: ^16.14.0 || >= 17.3.0}
2034
+
2035
+ tinyexec@1.2.4:
2036
+ resolution: {integrity: sha512-SHf/r48b7vOrjve9PxJo3MN5v5yuyjHvdUcrQffT3WXMUfnGmHDVbC4k3sHJaJTgZCwpUplIaAo5ANtMyp3YHg==}
2037
+ engines: {node: '>=18'}
2038
+
2039
+ tinyglobby@0.2.17:
2040
+ resolution: {integrity: sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==}
2041
+ engines: {node: '>=12.0.0'}
2042
+
2043
+ trim-lines@3.0.1:
2044
+ resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==}
2045
+
2046
+ trough@2.2.0:
2047
+ resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==}
2048
+
2049
+ ts-api-utils@2.5.0:
2050
+ resolution: {integrity: sha512-OJ/ibxhPlqrMM0UiNHJ/0CKQkoKF243/AEmplt3qpRgkW8VG7IfOS41h7V8TjITqdByHzrjcS/2si+y4lIh8NA==}
2051
+ engines: {node: '>=18.12'}
2052
+ peerDependencies:
2053
+ typescript: '>=4.8.4'
2054
+
2055
+ tslib@2.8.1:
2056
+ resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
2057
+
2058
+ type-check@0.4.0:
2059
+ resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
2060
+ engines: {node: '>= 0.8.0'}
2061
+
2062
+ typesafe-path@0.2.2:
2063
+ resolution: {integrity: sha512-OJabfkAg1WLZSqJAJ0Z6Sdt3utnbzr/jh+NAHoyWHJe8CMSy79Gm085094M9nvTPy22KzTVn5Zq5mbapCI/hPA==}
2064
+
2065
+ typescript-auto-import-cache@0.3.6:
2066
+ resolution: {integrity: sha512-RpuHXrknHdVdK7wv/8ug3Fr0WNsNi5l5aB8MYYuXhq2UH5lnEB1htJ1smhtD5VeCsGr2p8mUDtd83LCQDFVgjQ==}
2067
+
2068
+ typescript@5.9.3:
2069
+ resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
2070
+ engines: {node: '>=14.17'}
2071
+ hasBin: true
2072
+
2073
+ ufo@1.6.4:
2074
+ resolution: {integrity: sha512-JFNbkD1Svwe0KvGi8GOeLcP4kAWQ609twvCdcHxq1oSL8svv39ZuSvajcD8B+5D0eL4+s1Is2D/O6KN3qcTeRA==}
2075
+
2076
+ ultrahtml@1.7.0:
2077
+ resolution: {integrity: sha512-2xRd0VHoAQE4M+vF/DvFFB7pUV0ZxTW1TLi7lHQWnF/Sb5TPeEUV/l+hxcNnGO00ZXGnR0voCMmYRKQf+rvJ2g==}
2078
+
2079
+ uncrypto@0.1.3:
2080
+ resolution: {integrity: sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==}
2081
+
2082
+ unified@11.0.5:
2083
+ resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==}
2084
+
2085
+ unifont@0.7.4:
2086
+ resolution: {integrity: sha512-oHeis4/xl42HUIeHuNZRGEvxj5AaIKR+bHPNegRq5LV1gdc3jundpONbjglKpihmJf+dswygdMJn3eftGIMemg==}
2087
+
2088
+ unist-util-is@6.0.1:
2089
+ resolution: {integrity: sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==}
2090
+
2091
+ unist-util-position@5.0.0:
2092
+ resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==}
2093
+
2094
+ unist-util-stringify-position@4.0.0:
2095
+ resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==}
2096
+
2097
+ unist-util-visit-parents@6.0.2:
2098
+ resolution: {integrity: sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==}
2099
+
2100
+ unist-util-visit@5.1.0:
2101
+ resolution: {integrity: sha512-m+vIdyeCOpdr/QeQCu2EzxX/ohgS8KbnPDgFni4dQsfSCtpz8UqDyY5GjRru8PDKuYn7Fq19j1CQ+nJSsGKOzg==}
2102
+
2103
+ unstorage@1.17.5:
2104
+ resolution: {integrity: sha512-0i3iqvRfx29hkNntHyQvJTpf5W9dQ9ZadSoRU8+xVlhVtT7jAX57fazYO9EHvcRCfBCyi5YRya7XCDOsbTgkPg==}
2105
+ peerDependencies:
2106
+ '@azure/app-configuration': ^1.8.0
2107
+ '@azure/cosmos': ^4.2.0
2108
+ '@azure/data-tables': ^13.3.0
2109
+ '@azure/identity': ^4.6.0
2110
+ '@azure/keyvault-secrets': ^4.9.0
2111
+ '@azure/storage-blob': ^12.26.0
2112
+ '@capacitor/preferences': ^6 || ^7 || ^8
2113
+ '@deno/kv': '>=0.9.0'
2114
+ '@netlify/blobs': ^6.5.0 || ^7.0.0 || ^8.1.0 || ^9.0.0 || ^10.0.0
2115
+ '@planetscale/database': ^1.19.0
2116
+ '@upstash/redis': ^1.34.3
2117
+ '@vercel/blob': '>=0.27.1'
2118
+ '@vercel/functions': ^2.2.12 || ^3.0.0
2119
+ '@vercel/kv': ^1 || ^2 || ^3
2120
+ aws4fetch: ^1.0.20
2121
+ db0: '>=0.2.1'
2122
+ idb-keyval: ^6.2.1
2123
+ ioredis: ^5.4.2
2124
+ uploadthing: ^7.4.4
2125
+ peerDependenciesMeta:
2126
+ '@azure/app-configuration':
2127
+ optional: true
2128
+ '@azure/cosmos':
2129
+ optional: true
2130
+ '@azure/data-tables':
2131
+ optional: true
2132
+ '@azure/identity':
2133
+ optional: true
2134
+ '@azure/keyvault-secrets':
2135
+ optional: true
2136
+ '@azure/storage-blob':
2137
+ optional: true
2138
+ '@capacitor/preferences':
2139
+ optional: true
2140
+ '@deno/kv':
2141
+ optional: true
2142
+ '@netlify/blobs':
2143
+ optional: true
2144
+ '@planetscale/database':
2145
+ optional: true
2146
+ '@upstash/redis':
2147
+ optional: true
2148
+ '@vercel/blob':
2149
+ optional: true
2150
+ '@vercel/functions':
2151
+ optional: true
2152
+ '@vercel/kv':
2153
+ optional: true
2154
+ aws4fetch:
2155
+ optional: true
2156
+ db0:
2157
+ optional: true
2158
+ idb-keyval:
2159
+ optional: true
2160
+ ioredis:
2161
+ optional: true
2162
+ uploadthing:
2163
+ optional: true
2164
+
2165
+ uri-js@4.4.1:
2166
+ resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
2167
+
2168
+ util-deprecate@1.0.2:
2169
+ resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
2170
+
2171
+ vfile-location@5.0.3:
2172
+ resolution: {integrity: sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==}
2173
+
2174
+ vfile-message@4.0.3:
2175
+ resolution: {integrity: sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==}
2176
+
2177
+ vfile@6.0.3:
2178
+ resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==}
2179
+
2180
+ vite@8.1.5:
2181
+ resolution: {integrity: sha512-7ULLwsCdYx/nRyrpiEwvqb5TFHrMVZyBt+rg/OAXT7rgj/z+DtTDyKFeLAdDkubDVDKD8jOsndmy7m55XcfUsw==}
2182
+ engines: {node: ^20.19.0 || >=22.12.0}
2183
+ hasBin: true
2184
+ peerDependencies:
2185
+ '@types/node': ^20.19.0 || >=22.12.0
2186
+ '@vitejs/devtools': ^0.3.0
2187
+ esbuild: ^0.27.0 || ^0.28.0
2188
+ jiti: '>=1.21.0'
2189
+ less: ^4.0.0
2190
+ sass: ^1.70.0
2191
+ sass-embedded: ^1.70.0
2192
+ stylus: '>=0.54.8'
2193
+ sugarss: ^5.0.0
2194
+ terser: ^5.16.0
2195
+ tsx: ^4.8.1
2196
+ yaml: ^2.4.2
2197
+ peerDependenciesMeta:
2198
+ '@types/node':
2199
+ optional: true
2200
+ '@vitejs/devtools':
2201
+ optional: true
2202
+ esbuild:
2203
+ optional: true
2204
+ jiti:
2205
+ optional: true
2206
+ less:
2207
+ optional: true
2208
+ sass:
2209
+ optional: true
2210
+ sass-embedded:
2211
+ optional: true
2212
+ stylus:
2213
+ optional: true
2214
+ sugarss:
2215
+ optional: true
2216
+ terser:
2217
+ optional: true
2218
+ tsx:
2219
+ optional: true
2220
+ yaml:
2221
+ optional: true
2222
+
2223
+ vitefu@1.1.3:
2224
+ resolution: {integrity: sha512-ub4okH7Z5KLjb6hDyjqrGXqWtWvoYdU3IGm/NorpgHncKoLTCfRIbvlhBm7r0YstIaQRYlp4yEbFqDcKSzXSSg==}
2225
+ peerDependencies:
2226
+ vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0
2227
+ peerDependenciesMeta:
2228
+ vite:
2229
+ optional: true
2230
+
2231
+ volar-service-css@0.0.71:
2232
+ resolution: {integrity: sha512-wRRFt9BpjMKCazcgOh67MSjUjiWUCAh99DyYSDIOTuxaRjEtDC7PpB0k1Y1wbJIW/pVtMUSVbpPo3UGSm0Byxw==}
2233
+ peerDependencies:
2234
+ '@volar/language-service': ~2.4.0
2235
+ peerDependenciesMeta:
2236
+ '@volar/language-service':
2237
+ optional: true
2238
+
2239
+ volar-service-emmet@0.0.71:
2240
+ resolution: {integrity: sha512-zqjzt6bN95e3CUstBm0PBFAJnrfz0ZAARka87fart46/gNCLLuP3Vujy8V/J8HEziTFLnfkgIASLFYPUhonJcA==}
2241
+ peerDependencies:
2242
+ '@volar/language-service': ~2.4.0
2243
+ peerDependenciesMeta:
2244
+ '@volar/language-service':
2245
+ optional: true
2246
+
2247
+ volar-service-html@0.0.71:
2248
+ resolution: {integrity: sha512-e8tHPhgQ7ooLfudAEIku+kgd9pWkq3SSz8RbnQDI1+Eb8wbenkLGHqoirLqz5ORLV6wIMr2Iv08RWBG5eOcgpw==}
2249
+ peerDependencies:
2250
+ '@volar/language-service': ~2.4.0
2251
+ peerDependenciesMeta:
2252
+ '@volar/language-service':
2253
+ optional: true
2254
+
2255
+ volar-service-prettier@0.0.71:
2256
+ resolution: {integrity: sha512-Rz7JVH3qD108UCdmIEiZvOBNljMt2nLFdbN8AXcDfn7xD9F5I2aCIsDVqBbXw21PsnxG0b7MfwtNF+zPS/NKUg==}
2257
+ peerDependencies:
2258
+ '@volar/language-service': ~2.4.0
2259
+ prettier: ^2.2 || ^3.0
2260
+ peerDependenciesMeta:
2261
+ '@volar/language-service':
2262
+ optional: true
2263
+ prettier:
2264
+ optional: true
2265
+
2266
+ volar-service-typescript-twoslash-queries@0.0.71:
2267
+ resolution: {integrity: sha512-9K2k72s4n7rV9s4bX0MyjbX9iBribvKZbBJKuEmTCZfeWJXs6Yh7bGpY4eoc7UufAjvpheBqwyZCOIPBvxCv0A==}
2268
+ peerDependencies:
2269
+ '@volar/language-service': ~2.4.0
2270
+ peerDependenciesMeta:
2271
+ '@volar/language-service':
2272
+ optional: true
2273
+
2274
+ volar-service-typescript@0.0.71:
2275
+ resolution: {integrity: sha512-yTtM/BVT6hoyEYnDtaCyAtNhdNeS/mhTTABlBOdw3NNiRBUin3IznFJpgfjer4c6RYopiPjjQjc9VFhxVl1mLw==}
2276
+ peerDependencies:
2277
+ '@volar/language-service': ~2.4.0
2278
+ peerDependenciesMeta:
2279
+ '@volar/language-service':
2280
+ optional: true
2281
+
2282
+ volar-service-yaml@0.0.71:
2283
+ resolution: {integrity: sha512-qYGWGuVpUTnZGu5P/CR4KLK4aIR8RrcVnmfZ2eRcj9q/I8VZCoC5yy9FtEvfNvnDp4MU17yhdJcvpQPIqhJS2Q==}
2284
+ peerDependencies:
2285
+ '@volar/language-service': ~2.4.0
2286
+ peerDependenciesMeta:
2287
+ '@volar/language-service':
2288
+ optional: true
2289
+
2290
+ vscode-css-languageservice@6.3.10:
2291
+ resolution: {integrity: sha512-eq5N9Er3fC4vA9zd9EFhyBG90wtCCuXgRSpAndaOgXMh1Wgep5lBgRIeDgjZBW9pa+332yC9+49cZMW8jcL3MA==}
2292
+
2293
+ vscode-html-languageservice@5.6.2:
2294
+ resolution: {integrity: sha512-ulCrSnFnfQ16YzvwnYUgEbUEl/ZG7u2eV27YhvLObSHKkb8fw1Z9cgsnUwjTEeDIdJDoTDTDpxuhQwoenoLNMg==}
2295
+
2296
+ vscode-json-languageservice@4.1.8:
2297
+ resolution: {integrity: sha512-0vSpg6Xd9hfV+eZAaYN63xVVMOTmJ4GgHxXnkLCh+9RsQBkWKIghzLhW2B9ebfG+LQQg8uLtsQ2aUKjTgE+QOg==}
2298
+ engines: {npm: '>=7.0.0'}
2299
+
2300
+ vscode-jsonrpc@8.2.0:
2301
+ resolution: {integrity: sha512-C+r0eKJUIfiDIfwJhria30+TYWPtuHJXHtI7J0YlOmKAo7ogxP20T0zxB7HZQIFhIyvoBPwWskjxrvAtfjyZfA==}
2302
+ engines: {node: '>=14.0.0'}
2303
+
2304
+ vscode-jsonrpc@9.0.1:
2305
+ resolution: {integrity: sha512-rfuA6T75H6m5EkbhtEPzre9pT0HPcDI2MMy4+nPFIBks5J8JBAUHD4tRYSgaBOijIEC7SRkC1kKyXTLqbmh9jw==}
2306
+ engines: {node: '>=14.0.0'}
2307
+
2308
+ vscode-languageserver-protocol@3.17.5:
2309
+ resolution: {integrity: sha512-mb1bvRJN8SVznADSGWM9u/b07H7Ecg0I3OgXDuLdn307rl/J3A9YD6/eYOssqhecL27hK1IPZAsaqh00i/Jljg==}
2310
+
2311
+ vscode-languageserver-protocol@3.18.2:
2312
+ resolution: {integrity: sha512-XRyDbT0Pp3sSNti3JmxVEUMySWCSi1hhM+/KUlCy1hV1zmrqpM1OwO12EAki8blhmLuIMpaJrYbo0OzGVfK2Qg==}
2313
+
2314
+ vscode-languageserver-textdocument@1.0.12:
2315
+ resolution: {integrity: sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==}
2316
+
2317
+ vscode-languageserver-types@3.17.5:
2318
+ resolution: {integrity: sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==}
2319
+
2320
+ vscode-languageserver-types@3.18.0:
2321
+ resolution: {integrity: sha512-8TsGPNMIMiiBdkORgRSvLjuiEIiAFtO+KssmYWxQ+uSVvlf7RjK8YKCOjPzZ+YA04jXEV7+7LvkSmHkhpNS99g==}
2322
+
2323
+ vscode-languageserver@9.0.1:
2324
+ resolution: {integrity: sha512-woByF3PDpkHFUreUa7Hos7+pUWdeWMXRd26+ZX2A8cFx6v/JPTtd4/uN0/jB6XQHYaOlHbio03NTHCqrgG5n7g==}
2325
+ hasBin: true
2326
+
2327
+ vscode-nls@5.2.0:
2328
+ resolution: {integrity: sha512-RAaHx7B14ZU04EU31pT+rKz2/zSl7xMsfIZuo8pd+KZO6PXtQmpevpq3vxvWNcrGbdmhM/rr5Uw5Mz+NBfhVng==}
2329
+
2330
+ vscode-uri@3.1.0:
2331
+ resolution: {integrity: sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ==}
2332
+
2333
+ web-namespaces@2.0.1:
2334
+ resolution: {integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==}
2335
+
2336
+ which@2.0.2:
2337
+ resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
2338
+ engines: {node: '>= 8'}
2339
+ hasBin: true
2340
+
2341
+ word-wrap@1.2.5:
2342
+ resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
2343
+ engines: {node: '>=0.10.0'}
2344
+
2345
+ wrap-ansi@7.0.0:
2346
+ resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
2347
+ engines: {node: '>=10'}
2348
+
2349
+ xxhash-wasm@1.1.0:
2350
+ resolution: {integrity: sha512-147y/6YNh+tlp6nd/2pWq38i9h6mz/EuQ6njIrmW8D1BS5nCqs0P6DG+m6zTGnNz5I+uhZ0SHxBs9BsPrwcKDA==}
2351
+
2352
+ y18n@5.0.8:
2353
+ resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
2354
+ engines: {node: '>=10'}
2355
+
2356
+ yaml-language-server@1.23.0:
2357
+ resolution: {integrity: sha512-3qVyCOexLCWw06PQa5kRPwvMWMZ/eZeCRWUvgD6a0OkqL/4iCnxy2WumbWifa937Uo5xhyWJ0uxlU39ljhNh7A==}
2358
+ hasBin: true
2359
+
2360
+ yaml@2.8.3:
2361
+ resolution: {integrity: sha512-AvbaCLOO2Otw/lW5bmh9d/WEdcDFdQp2Z2ZUH3pX9U2ihyUY0nvLv7J6TrWowklRGPYbB/IuIMfYgxaCPg5Bpg==}
2362
+ engines: {node: '>= 14.6'}
2363
+ hasBin: true
2364
+
2365
+ yaml@2.9.0:
2366
+ resolution: {integrity: sha512-2AvhNX3mb8zd6Zy7INTtSpl1F15HW6Wnqj0srWlkKLcpYl/gMIMJiyuGq2KeI2YFxUPjdlB+3Lc10seMLtL4cA==}
2367
+ engines: {node: '>= 14.6'}
2368
+ hasBin: true
2369
+
2370
+ yargs-parser@21.1.1:
2371
+ resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
2372
+ engines: {node: '>=12'}
2373
+
2374
+ yargs-parser@22.0.0:
2375
+ resolution: {integrity: sha512-rwu/ClNdSMpkSrUb+d6BRsSkLUq1fmfsY6TOpYzTwvwkg1/NRG85KBy3kq++A8LKQwX6lsu+aWad+2khvuXrqw==}
2376
+ engines: {node: ^20.19.0 || ^22.12.0 || >=23}
2377
+
2378
+ yargs@17.7.3:
2379
+ resolution: {integrity: sha512-GZtjxm/J/4TSxuL3FNYjCmLktBTnIw/rVmKSIyKeYAZpmJB2ig9VauCC5xsa82GNKVKDAqpOn3KVzNt0zmrU0g==}
2380
+ engines: {node: '>=12'}
2381
+
2382
+ yocto-queue@0.1.0:
2383
+ resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
2384
+ engines: {node: '>=10'}
2385
+
2386
+ yocto-queue@1.2.2:
2387
+ resolution: {integrity: sha512-4LCcse/U2MHZ63HAJVE+v71o7yOdIe4cZ70Wpf8D/IyjDKYQLV5GD46B+hSTjJsvV5PztjvHoU580EftxjDZFQ==}
2388
+ engines: {node: '>=12.20'}
2389
+
2390
+ zod@4.4.3:
2391
+ resolution: {integrity: sha512-ytENFjIJFl2UwYglde2jchW2Hwm4GJFLDiSXWdTrJQBIN9Fcyp7n4DhxJEiWNAJMV1/BqWfW/kkg71UDcHJyTQ==}
2392
+
2393
+ zwitch@2.0.4:
2394
+ resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==}
2395
+
2396
+ snapshots:
2397
+
2398
+ '@astrojs/check@0.9.9(prettier-plugin-astro@0.14.1)(prettier@3.9.6)(typescript@5.9.3)':
2399
+ dependencies:
2400
+ '@astrojs/language-server': 2.16.13(prettier-plugin-astro@0.14.1)(prettier@3.9.6)(typescript@5.9.3)
2401
+ chokidar: 4.0.3
2402
+ kleur: 4.1.5
2403
+ typescript: 5.9.3
2404
+ yargs: 17.7.3
2405
+ transitivePeerDependencies:
2406
+ - prettier
2407
+ - prettier-plugin-astro
2408
+
2409
+ '@astrojs/compiler-binding-darwin-arm64@0.3.1':
2410
+ optional: true
2411
+
2412
+ '@astrojs/compiler-binding-darwin-x64@0.3.1':
2413
+ optional: true
2414
+
2415
+ '@astrojs/compiler-binding-linux-arm64-gnu@0.3.1':
2416
+ optional: true
2417
+
2418
+ '@astrojs/compiler-binding-linux-arm64-musl@0.3.1':
2419
+ optional: true
2420
+
2421
+ '@astrojs/compiler-binding-linux-x64-gnu@0.3.1':
2422
+ optional: true
2423
+
2424
+ '@astrojs/compiler-binding-linux-x64-musl@0.3.1':
2425
+ optional: true
2426
+
2427
+ '@astrojs/compiler-binding-wasm32-wasi@0.3.1(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1)':
2428
+ dependencies:
2429
+ '@napi-rs/wasm-runtime': 1.1.6(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1)
2430
+ transitivePeerDependencies:
2431
+ - '@emnapi/core'
2432
+ - '@emnapi/runtime'
2433
+ optional: true
2434
+
2435
+ '@astrojs/compiler-binding-win32-arm64-msvc@0.3.1':
2436
+ optional: true
2437
+
2438
+ '@astrojs/compiler-binding-win32-x64-msvc@0.3.1':
2439
+ optional: true
2440
+
2441
+ '@astrojs/compiler-binding@0.3.1(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1)':
2442
+ optionalDependencies:
2443
+ '@astrojs/compiler-binding-darwin-arm64': 0.3.1
2444
+ '@astrojs/compiler-binding-darwin-x64': 0.3.1
2445
+ '@astrojs/compiler-binding-linux-arm64-gnu': 0.3.1
2446
+ '@astrojs/compiler-binding-linux-arm64-musl': 0.3.1
2447
+ '@astrojs/compiler-binding-linux-x64-gnu': 0.3.1
2448
+ '@astrojs/compiler-binding-linux-x64-musl': 0.3.1
2449
+ '@astrojs/compiler-binding-wasm32-wasi': 0.3.1(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1)
2450
+ '@astrojs/compiler-binding-win32-arm64-msvc': 0.3.1
2451
+ '@astrojs/compiler-binding-win32-x64-msvc': 0.3.1
2452
+ transitivePeerDependencies:
2453
+ - '@emnapi/core'
2454
+ - '@emnapi/runtime'
2455
+
2456
+ '@astrojs/compiler-rs@0.3.1(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1)':
2457
+ dependencies:
2458
+ '@astrojs/compiler-binding': 0.3.1(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1)
2459
+ transitivePeerDependencies:
2460
+ - '@emnapi/core'
2461
+ - '@emnapi/runtime'
2462
+
2463
+ '@astrojs/compiler@2.13.1': {}
2464
+
2465
+ '@astrojs/internal-helpers@0.10.1':
2466
+ dependencies:
2467
+ '@types/hast': 3.0.5
2468
+ '@types/mdast': 4.0.4
2469
+ js-yaml: 4.3.0
2470
+ picomatch: 4.0.5
2471
+ retext-smartypants: 6.2.0
2472
+ shiki: 4.3.1
2473
+ smol-toml: 1.7.0
2474
+ unified: 11.0.5
2475
+
2476
+ '@astrojs/language-server@2.16.13(prettier-plugin-astro@0.14.1)(prettier@3.9.6)(typescript@5.9.3)':
2477
+ dependencies:
2478
+ '@astrojs/compiler': 2.13.1
2479
+ '@astrojs/yaml2ts': 0.2.4
2480
+ '@jridgewell/sourcemap-codec': 1.5.5
2481
+ '@volar/kit': 2.4.28(typescript@5.9.3)
2482
+ '@volar/language-core': 2.4.28
2483
+ '@volar/language-server': 2.4.28
2484
+ '@volar/language-service': 2.4.28
2485
+ muggle-string: 0.4.1
2486
+ tinyglobby: 0.2.17
2487
+ volar-service-css: 0.0.71(@volar/language-service@2.4.28)
2488
+ volar-service-emmet: 0.0.71(@volar/language-service@2.4.28)
2489
+ volar-service-html: 0.0.71(@volar/language-service@2.4.28)
2490
+ volar-service-prettier: 0.0.71(@volar/language-service@2.4.28)(prettier@3.9.6)
2491
+ volar-service-typescript: 0.0.71(@volar/language-service@2.4.28)
2492
+ volar-service-typescript-twoslash-queries: 0.0.71(@volar/language-service@2.4.28)
2493
+ volar-service-yaml: 0.0.71(@volar/language-service@2.4.28)
2494
+ vscode-html-languageservice: 5.6.2
2495
+ vscode-uri: 3.1.0
2496
+ optionalDependencies:
2497
+ prettier: 3.9.6
2498
+ prettier-plugin-astro: 0.14.1
2499
+ transitivePeerDependencies:
2500
+ - typescript
2501
+
2502
+ '@astrojs/markdown-satteri@0.3.4':
2503
+ dependencies:
2504
+ '@astrojs/internal-helpers': 0.10.1
2505
+ '@astrojs/prism': 4.0.2
2506
+ github-slugger: 2.0.0
2507
+ hast-util-from-html: 2.0.3
2508
+ satteri: 0.9.5
2509
+
2510
+ '@astrojs/prism@4.0.2':
2511
+ dependencies:
2512
+ prismjs: 1.30.0
2513
+
2514
+ '@astrojs/telemetry@3.3.3':
2515
+ dependencies:
2516
+ ci-info: 4.4.0
2517
+ dset: 3.1.4
2518
+ is-docker: 4.0.0
2519
+ package-manager-detector: 1.8.0
2520
+
2521
+ '@astrojs/yaml2ts@0.2.4':
2522
+ dependencies:
2523
+ yaml: 2.9.0
2524
+
2525
+ '@babel/helper-string-parser@7.29.7': {}
2526
+
2527
+ '@babel/helper-validator-identifier@7.29.7': {}
2528
+
2529
+ '@babel/parser@7.29.7':
2530
+ dependencies:
2531
+ '@babel/types': 7.29.7
2532
+
2533
+ '@babel/types@7.29.7':
2534
+ dependencies:
2535
+ '@babel/helper-string-parser': 7.29.7
2536
+ '@babel/helper-validator-identifier': 7.29.7
2537
+
2538
+ '@bruits/satteri-darwin-arm64@0.9.5':
2539
+ optional: true
2540
+
2541
+ '@bruits/satteri-darwin-x64@0.9.5':
2542
+ optional: true
2543
+
2544
+ '@bruits/satteri-linux-arm64-gnu@0.9.5':
2545
+ optional: true
2546
+
2547
+ '@bruits/satteri-linux-arm64-musl@0.9.5':
2548
+ optional: true
2549
+
2550
+ '@bruits/satteri-linux-x64-gnu@0.9.5':
2551
+ optional: true
2552
+
2553
+ '@bruits/satteri-linux-x64-musl@0.9.5':
2554
+ optional: true
2555
+
2556
+ '@bruits/satteri-wasm32-wasi@0.9.5':
2557
+ dependencies:
2558
+ '@emnapi/core': 1.11.1
2559
+ '@emnapi/runtime': 1.11.1
2560
+ '@napi-rs/wasm-runtime': 1.1.6(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1)
2561
+ optional: true
2562
+
2563
+ '@bruits/satteri-win32-arm64-msvc@0.9.5':
2564
+ optional: true
2565
+
2566
+ '@bruits/satteri-win32-x64-msvc@0.9.5':
2567
+ optional: true
2568
+
2569
+ '@capsizecss/unpack@4.0.1':
2570
+ dependencies:
2571
+ fontkitten: 1.0.3
2572
+
2573
+ '@clack/core@1.4.3':
2574
+ dependencies:
2575
+ fast-wrap-ansi: 0.2.2
2576
+ sisteransi: 1.0.5
2577
+
2578
+ '@clack/prompts@1.7.0':
2579
+ dependencies:
2580
+ '@clack/core': 1.4.3
2581
+ fast-string-width: 3.0.2
2582
+ fast-wrap-ansi: 0.2.2
2583
+ sisteransi: 1.0.5
2584
+
2585
+ '@emmetio/abbreviation@2.3.3':
2586
+ dependencies:
2587
+ '@emmetio/scanner': 1.0.4
2588
+
2589
+ '@emmetio/css-abbreviation@2.1.8':
2590
+ dependencies:
2591
+ '@emmetio/scanner': 1.0.4
2592
+
2593
+ '@emmetio/css-parser@0.4.1':
2594
+ dependencies:
2595
+ '@emmetio/stream-reader': 2.2.0
2596
+ '@emmetio/stream-reader-utils': 0.1.0
2597
+
2598
+ '@emmetio/html-matcher@1.3.0':
2599
+ dependencies:
2600
+ '@emmetio/scanner': 1.0.4
2601
+
2602
+ '@emmetio/scanner@1.0.4': {}
2603
+
2604
+ '@emmetio/stream-reader-utils@0.1.0': {}
2605
+
2606
+ '@emmetio/stream-reader@2.2.0': {}
2607
+
2608
+ '@emnapi/core@1.11.1':
2609
+ dependencies:
2610
+ '@emnapi/wasi-threads': 1.2.2
2611
+ tslib: 2.8.1
2612
+ optional: true
2613
+
2614
+ '@emnapi/runtime@1.11.1':
2615
+ dependencies:
2616
+ tslib: 2.8.1
2617
+ optional: true
2618
+
2619
+ '@emnapi/runtime@1.11.3':
2620
+ dependencies:
2621
+ tslib: 2.8.1
2622
+ optional: true
2623
+
2624
+ '@emnapi/wasi-threads@1.2.2':
2625
+ dependencies:
2626
+ tslib: 2.8.1
2627
+ optional: true
2628
+
2629
+ '@esbuild/aix-ppc64@0.28.1':
2630
+ optional: true
2631
+
2632
+ '@esbuild/android-arm64@0.28.1':
2633
+ optional: true
2634
+
2635
+ '@esbuild/android-arm@0.28.1':
2636
+ optional: true
2637
+
2638
+ '@esbuild/android-x64@0.28.1':
2639
+ optional: true
2640
+
2641
+ '@esbuild/darwin-arm64@0.28.1':
2642
+ optional: true
2643
+
2644
+ '@esbuild/darwin-x64@0.28.1':
2645
+ optional: true
2646
+
2647
+ '@esbuild/freebsd-arm64@0.28.1':
2648
+ optional: true
2649
+
2650
+ '@esbuild/freebsd-x64@0.28.1':
2651
+ optional: true
2652
+
2653
+ '@esbuild/linux-arm64@0.28.1':
2654
+ optional: true
2655
+
2656
+ '@esbuild/linux-arm@0.28.1':
2657
+ optional: true
2658
+
2659
+ '@esbuild/linux-ia32@0.28.1':
2660
+ optional: true
2661
+
2662
+ '@esbuild/linux-loong64@0.28.1':
2663
+ optional: true
2664
+
2665
+ '@esbuild/linux-mips64el@0.28.1':
2666
+ optional: true
2667
+
2668
+ '@esbuild/linux-ppc64@0.28.1':
2669
+ optional: true
2670
+
2671
+ '@esbuild/linux-riscv64@0.28.1':
2672
+ optional: true
2673
+
2674
+ '@esbuild/linux-s390x@0.28.1':
2675
+ optional: true
2676
+
2677
+ '@esbuild/linux-x64@0.28.1':
2678
+ optional: true
2679
+
2680
+ '@esbuild/netbsd-arm64@0.28.1':
2681
+ optional: true
2682
+
2683
+ '@esbuild/netbsd-x64@0.28.1':
2684
+ optional: true
2685
+
2686
+ '@esbuild/openbsd-arm64@0.28.1':
2687
+ optional: true
2688
+
2689
+ '@esbuild/openbsd-x64@0.28.1':
2690
+ optional: true
2691
+
2692
+ '@esbuild/openharmony-arm64@0.28.1':
2693
+ optional: true
2694
+
2695
+ '@esbuild/sunos-x64@0.28.1':
2696
+ optional: true
2697
+
2698
+ '@esbuild/win32-arm64@0.28.1':
2699
+ optional: true
2700
+
2701
+ '@esbuild/win32-ia32@0.28.1':
2702
+ optional: true
2703
+
2704
+ '@esbuild/win32-x64@0.28.1':
2705
+ optional: true
2706
+
2707
+ '@eslint-community/eslint-utils@4.10.1(eslint@10.8.0(jiti@2.7.0))':
2708
+ dependencies:
2709
+ eslint: 10.8.0(jiti@2.7.0)
2710
+ eslint-visitor-keys: 3.4.3
2711
+
2712
+ '@eslint-community/regexpp@4.12.2': {}
2713
+
2714
+ '@eslint/config-array@0.23.5':
2715
+ dependencies:
2716
+ '@eslint/object-schema': 3.0.5
2717
+ debug: 4.4.3
2718
+ minimatch: 10.2.5
2719
+ transitivePeerDependencies:
2720
+ - supports-color
2721
+
2722
+ '@eslint/config-helpers@0.7.0':
2723
+ dependencies:
2724
+ '@eslint/core': 1.2.1
2725
+
2726
+ '@eslint/core@1.2.1':
2727
+ dependencies:
2728
+ '@types/json-schema': 7.0.15
2729
+
2730
+ '@eslint/object-schema@3.0.5': {}
2731
+
2732
+ '@eslint/plugin-kit@0.7.2':
2733
+ dependencies:
2734
+ '@eslint/core': 1.2.1
2735
+ levn: 0.4.1
2736
+
2737
+ '@humanfs/core@0.19.2':
2738
+ dependencies:
2739
+ '@humanfs/types': 0.15.0
2740
+
2741
+ '@humanfs/node@0.16.8':
2742
+ dependencies:
2743
+ '@humanfs/core': 0.19.2
2744
+ '@humanfs/types': 0.15.0
2745
+ '@humanwhocodes/retry': 0.4.3
2746
+
2747
+ '@humanfs/types@0.15.0': {}
2748
+
2749
+ '@humanwhocodes/module-importer@1.0.1': {}
2750
+
2751
+ '@humanwhocodes/retry@0.4.3': {}
2752
+
2753
+ '@img/colour@1.1.0':
2754
+ optional: true
2755
+
2756
+ '@img/sharp-darwin-arm64@0.35.3':
2757
+ optionalDependencies:
2758
+ '@img/sharp-libvips-darwin-arm64': 1.3.2
2759
+ optional: true
2760
+
2761
+ '@img/sharp-darwin-x64@0.35.3':
2762
+ optionalDependencies:
2763
+ '@img/sharp-libvips-darwin-x64': 1.3.2
2764
+ optional: true
2765
+
2766
+ '@img/sharp-freebsd-wasm32@0.35.3':
2767
+ dependencies:
2768
+ '@img/sharp-wasm32': 0.35.3
2769
+ optional: true
2770
+
2771
+ '@img/sharp-libvips-darwin-arm64@1.3.2':
2772
+ optional: true
2773
+
2774
+ '@img/sharp-libvips-darwin-x64@1.3.2':
2775
+ optional: true
2776
+
2777
+ '@img/sharp-libvips-linux-arm64@1.3.2':
2778
+ optional: true
2779
+
2780
+ '@img/sharp-libvips-linux-arm@1.3.2':
2781
+ optional: true
2782
+
2783
+ '@img/sharp-libvips-linux-ppc64@1.3.2':
2784
+ optional: true
2785
+
2786
+ '@img/sharp-libvips-linux-riscv64@1.3.2':
2787
+ optional: true
2788
+
2789
+ '@img/sharp-libvips-linux-s390x@1.3.2':
2790
+ optional: true
2791
+
2792
+ '@img/sharp-libvips-linux-x64@1.3.2':
2793
+ optional: true
2794
+
2795
+ '@img/sharp-libvips-linuxmusl-arm64@1.3.2':
2796
+ optional: true
2797
+
2798
+ '@img/sharp-libvips-linuxmusl-x64@1.3.2':
2799
+ optional: true
2800
+
2801
+ '@img/sharp-linux-arm64@0.35.3':
2802
+ optionalDependencies:
2803
+ '@img/sharp-libvips-linux-arm64': 1.3.2
2804
+ optional: true
2805
+
2806
+ '@img/sharp-linux-arm@0.35.3':
2807
+ optionalDependencies:
2808
+ '@img/sharp-libvips-linux-arm': 1.3.2
2809
+ optional: true
2810
+
2811
+ '@img/sharp-linux-ppc64@0.35.3':
2812
+ optionalDependencies:
2813
+ '@img/sharp-libvips-linux-ppc64': 1.3.2
2814
+ optional: true
2815
+
2816
+ '@img/sharp-linux-riscv64@0.35.3':
2817
+ optionalDependencies:
2818
+ '@img/sharp-libvips-linux-riscv64': 1.3.2
2819
+ optional: true
2820
+
2821
+ '@img/sharp-linux-s390x@0.35.3':
2822
+ optionalDependencies:
2823
+ '@img/sharp-libvips-linux-s390x': 1.3.2
2824
+ optional: true
2825
+
2826
+ '@img/sharp-linux-x64@0.35.3':
2827
+ optionalDependencies:
2828
+ '@img/sharp-libvips-linux-x64': 1.3.2
2829
+ optional: true
2830
+
2831
+ '@img/sharp-linuxmusl-arm64@0.35.3':
2832
+ optionalDependencies:
2833
+ '@img/sharp-libvips-linuxmusl-arm64': 1.3.2
2834
+ optional: true
2835
+
2836
+ '@img/sharp-linuxmusl-x64@0.35.3':
2837
+ optionalDependencies:
2838
+ '@img/sharp-libvips-linuxmusl-x64': 1.3.2
2839
+ optional: true
2840
+
2841
+ '@img/sharp-wasm32@0.35.3':
2842
+ dependencies:
2843
+ '@emnapi/runtime': 1.11.3
2844
+ optional: true
2845
+
2846
+ '@img/sharp-webcontainers-wasm32@0.35.3':
2847
+ dependencies:
2848
+ '@img/sharp-wasm32': 0.35.3
2849
+ optional: true
2850
+
2851
+ '@img/sharp-win32-arm64@0.35.3':
2852
+ optional: true
2853
+
2854
+ '@img/sharp-win32-ia32@0.35.3':
2855
+ optional: true
2856
+
2857
+ '@img/sharp-win32-x64@0.35.3':
2858
+ optional: true
2859
+
2860
+ '@jridgewell/gen-mapping@0.3.13':
2861
+ dependencies:
2862
+ '@jridgewell/sourcemap-codec': 1.5.5
2863
+ '@jridgewell/trace-mapping': 0.3.31
2864
+
2865
+ '@jridgewell/remapping@2.3.5':
2866
+ dependencies:
2867
+ '@jridgewell/gen-mapping': 0.3.13
2868
+ '@jridgewell/trace-mapping': 0.3.31
2869
+
2870
+ '@jridgewell/resolve-uri@3.1.2': {}
2871
+
2872
+ '@jridgewell/sourcemap-codec@1.5.5': {}
2873
+
2874
+ '@jridgewell/trace-mapping@0.3.31':
2875
+ dependencies:
2876
+ '@jridgewell/resolve-uri': 3.1.2
2877
+ '@jridgewell/sourcemap-codec': 1.5.5
2878
+
2879
+ '@napi-rs/wasm-runtime@1.1.6(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1)':
2880
+ dependencies:
2881
+ '@emnapi/core': 1.11.1
2882
+ '@emnapi/runtime': 1.11.1
2883
+ '@tybys/wasm-util': 0.10.3
2884
+ optional: true
2885
+
2886
+ '@oslojs/encoding@1.1.0': {}
2887
+
2888
+ '@oxc-project/types@0.139.0': {}
2889
+
2890
+ '@rolldown/binding-android-arm64@1.1.5':
2891
+ optional: true
2892
+
2893
+ '@rolldown/binding-darwin-arm64@1.1.5':
2894
+ optional: true
2895
+
2896
+ '@rolldown/binding-darwin-x64@1.1.5':
2897
+ optional: true
2898
+
2899
+ '@rolldown/binding-freebsd-x64@1.1.5':
2900
+ optional: true
2901
+
2902
+ '@rolldown/binding-linux-arm-gnueabihf@1.1.5':
2903
+ optional: true
2904
+
2905
+ '@rolldown/binding-linux-arm64-gnu@1.1.5':
2906
+ optional: true
2907
+
2908
+ '@rolldown/binding-linux-arm64-musl@1.1.5':
2909
+ optional: true
2910
+
2911
+ '@rolldown/binding-linux-ppc64-gnu@1.1.5':
2912
+ optional: true
2913
+
2914
+ '@rolldown/binding-linux-s390x-gnu@1.1.5':
2915
+ optional: true
2916
+
2917
+ '@rolldown/binding-linux-x64-gnu@1.1.5':
2918
+ optional: true
2919
+
2920
+ '@rolldown/binding-linux-x64-musl@1.1.5':
2921
+ optional: true
2922
+
2923
+ '@rolldown/binding-openharmony-arm64@1.1.5':
2924
+ optional: true
2925
+
2926
+ '@rolldown/binding-wasm32-wasi@1.1.5':
2927
+ dependencies:
2928
+ '@emnapi/core': 1.11.1
2929
+ '@emnapi/runtime': 1.11.1
2930
+ '@napi-rs/wasm-runtime': 1.1.6(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1)
2931
+ optional: true
2932
+
2933
+ '@rolldown/binding-win32-arm64-msvc@1.1.5':
2934
+ optional: true
2935
+
2936
+ '@rolldown/binding-win32-x64-msvc@1.1.5':
2937
+ optional: true
2938
+
2939
+ '@rolldown/pluginutils@1.0.1': {}
2940
+
2941
+ '@rollup/pluginutils@5.4.0':
2942
+ dependencies:
2943
+ '@types/estree': 1.0.9
2944
+ estree-walker: 2.0.2
2945
+ picomatch: 4.0.5
2946
+
2947
+ '@shikijs/core@4.3.1':
2948
+ dependencies:
2949
+ '@shikijs/primitive': 4.3.1
2950
+ '@shikijs/types': 4.3.1
2951
+ '@shikijs/vscode-textmate': 10.0.2
2952
+ '@types/hast': 3.0.5
2953
+ hast-util-to-html: 9.0.5
2954
+
2955
+ '@shikijs/engine-javascript@4.3.1':
2956
+ dependencies:
2957
+ '@shikijs/types': 4.3.1
2958
+ '@shikijs/vscode-textmate': 10.0.2
2959
+ oniguruma-to-es: 4.3.6
2960
+
2961
+ '@shikijs/engine-oniguruma@4.3.1':
2962
+ dependencies:
2963
+ '@shikijs/types': 4.3.1
2964
+ '@shikijs/vscode-textmate': 10.0.2
2965
+
2966
+ '@shikijs/langs@4.3.1':
2967
+ dependencies:
2968
+ '@shikijs/types': 4.3.1
2969
+
2970
+ '@shikijs/primitive@4.3.1':
2971
+ dependencies:
2972
+ '@shikijs/types': 4.3.1
2973
+ '@shikijs/vscode-textmate': 10.0.2
2974
+ '@types/hast': 3.0.5
2975
+
2976
+ '@shikijs/themes@4.3.1':
2977
+ dependencies:
2978
+ '@shikijs/types': 4.3.1
2979
+
2980
+ '@shikijs/types@4.3.1':
2981
+ dependencies:
2982
+ '@shikijs/vscode-textmate': 10.0.2
2983
+ '@types/hast': 3.0.5
2984
+
2985
+ '@shikijs/vscode-textmate@10.0.2': {}
2986
+
2987
+ '@tailwindcss/node@4.3.3':
2988
+ dependencies:
2989
+ '@jridgewell/remapping': 2.3.5
2990
+ enhanced-resolve: 5.24.3
2991
+ jiti: 2.7.0
2992
+ lightningcss: 1.32.0
2993
+ magic-string: 0.30.21
2994
+ source-map-js: 1.2.1
2995
+ tailwindcss: 4.3.3
2996
+
2997
+ '@tailwindcss/oxide-android-arm64@4.3.3':
2998
+ optional: true
2999
+
3000
+ '@tailwindcss/oxide-darwin-arm64@4.3.3':
3001
+ optional: true
3002
+
3003
+ '@tailwindcss/oxide-darwin-x64@4.3.3':
3004
+ optional: true
3005
+
3006
+ '@tailwindcss/oxide-freebsd-x64@4.3.3':
3007
+ optional: true
3008
+
3009
+ '@tailwindcss/oxide-linux-arm-gnueabihf@4.3.3':
3010
+ optional: true
3011
+
3012
+ '@tailwindcss/oxide-linux-arm64-gnu@4.3.3':
3013
+ optional: true
3014
+
3015
+ '@tailwindcss/oxide-linux-arm64-musl@4.3.3':
3016
+ optional: true
3017
+
3018
+ '@tailwindcss/oxide-linux-x64-gnu@4.3.3':
3019
+ optional: true
3020
+
3021
+ '@tailwindcss/oxide-linux-x64-musl@4.3.3':
3022
+ optional: true
3023
+
3024
+ '@tailwindcss/oxide-wasm32-wasi@4.3.3':
3025
+ optional: true
3026
+
3027
+ '@tailwindcss/oxide-win32-arm64-msvc@4.3.3':
3028
+ optional: true
3029
+
3030
+ '@tailwindcss/oxide-win32-x64-msvc@4.3.3':
3031
+ optional: true
3032
+
3033
+ '@tailwindcss/oxide@4.3.3':
3034
+ optionalDependencies:
3035
+ '@tailwindcss/oxide-android-arm64': 4.3.3
3036
+ '@tailwindcss/oxide-darwin-arm64': 4.3.3
3037
+ '@tailwindcss/oxide-darwin-x64': 4.3.3
3038
+ '@tailwindcss/oxide-freebsd-x64': 4.3.3
3039
+ '@tailwindcss/oxide-linux-arm-gnueabihf': 4.3.3
3040
+ '@tailwindcss/oxide-linux-arm64-gnu': 4.3.3
3041
+ '@tailwindcss/oxide-linux-arm64-musl': 4.3.3
3042
+ '@tailwindcss/oxide-linux-x64-gnu': 4.3.3
3043
+ '@tailwindcss/oxide-linux-x64-musl': 4.3.3
3044
+ '@tailwindcss/oxide-wasm32-wasi': 4.3.3
3045
+ '@tailwindcss/oxide-win32-arm64-msvc': 4.3.3
3046
+ '@tailwindcss/oxide-win32-x64-msvc': 4.3.3
3047
+
3048
+ '@tailwindcss/vite@4.3.3(vite@8.1.5(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0))':
3049
+ dependencies:
3050
+ '@tailwindcss/node': 4.3.3
3051
+ '@tailwindcss/oxide': 4.3.3
3052
+ tailwindcss: 4.3.3
3053
+ vite: 8.1.5(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0)
3054
+
3055
+ '@tybys/wasm-util@0.10.3':
3056
+ dependencies:
3057
+ tslib: 2.8.1
3058
+ optional: true
3059
+
3060
+ '@types/esrecurse@4.3.1': {}
3061
+
3062
+ '@types/estree-jsx@1.0.5':
3063
+ dependencies:
3064
+ '@types/estree': 1.0.9
3065
+
3066
+ '@types/estree@1.0.9': {}
3067
+
3068
+ '@types/hast@3.0.5':
3069
+ dependencies:
3070
+ '@types/unist': 3.0.3
3071
+
3072
+ '@types/json-schema@7.0.15': {}
3073
+
3074
+ '@types/mdast@4.0.4':
3075
+ dependencies:
3076
+ '@types/unist': 3.0.3
3077
+
3078
+ '@types/nlcst@2.0.3':
3079
+ dependencies:
3080
+ '@types/unist': 3.0.3
3081
+
3082
+ '@types/unist@3.0.3': {}
3083
+
3084
+ '@typescript-eslint/eslint-plugin@8.65.0(@typescript-eslint/parser@8.65.0(eslint@10.8.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.8.0(jiti@2.7.0))(typescript@5.9.3)':
3085
+ dependencies:
3086
+ '@eslint-community/regexpp': 4.12.2
3087
+ '@typescript-eslint/parser': 8.65.0(eslint@10.8.0(jiti@2.7.0))(typescript@5.9.3)
3088
+ '@typescript-eslint/scope-manager': 8.65.0
3089
+ '@typescript-eslint/type-utils': 8.65.0(eslint@10.8.0(jiti@2.7.0))(typescript@5.9.3)
3090
+ '@typescript-eslint/utils': 8.65.0(eslint@10.8.0(jiti@2.7.0))(typescript@5.9.3)
3091
+ '@typescript-eslint/visitor-keys': 8.65.0
3092
+ eslint: 10.8.0(jiti@2.7.0)
3093
+ ignore: 7.0.6
3094
+ natural-compare: 1.4.0
3095
+ ts-api-utils: 2.5.0(typescript@5.9.3)
3096
+ typescript: 5.9.3
3097
+ transitivePeerDependencies:
3098
+ - supports-color
3099
+
3100
+ '@typescript-eslint/parser@8.65.0(eslint@10.8.0(jiti@2.7.0))(typescript@5.9.3)':
3101
+ dependencies:
3102
+ '@typescript-eslint/scope-manager': 8.65.0
3103
+ '@typescript-eslint/types': 8.65.0
3104
+ '@typescript-eslint/typescript-estree': 8.65.0(typescript@5.9.3)
3105
+ '@typescript-eslint/visitor-keys': 8.65.0
3106
+ debug: 4.4.3
3107
+ eslint: 10.8.0(jiti@2.7.0)
3108
+ typescript: 5.9.3
3109
+ transitivePeerDependencies:
3110
+ - supports-color
3111
+
3112
+ '@typescript-eslint/project-service@8.65.0(typescript@5.9.3)':
3113
+ dependencies:
3114
+ '@typescript-eslint/tsconfig-utils': 8.65.0(typescript@5.9.3)
3115
+ '@typescript-eslint/types': 8.65.0
3116
+ debug: 4.4.3
3117
+ typescript: 5.9.3
3118
+ transitivePeerDependencies:
3119
+ - supports-color
3120
+
3121
+ '@typescript-eslint/scope-manager@8.65.0':
3122
+ dependencies:
3123
+ '@typescript-eslint/types': 8.65.0
3124
+ '@typescript-eslint/visitor-keys': 8.65.0
3125
+
3126
+ '@typescript-eslint/tsconfig-utils@8.65.0(typescript@5.9.3)':
3127
+ dependencies:
3128
+ typescript: 5.9.3
3129
+
3130
+ '@typescript-eslint/type-utils@8.65.0(eslint@10.8.0(jiti@2.7.0))(typescript@5.9.3)':
3131
+ dependencies:
3132
+ '@typescript-eslint/types': 8.65.0
3133
+ '@typescript-eslint/typescript-estree': 8.65.0(typescript@5.9.3)
3134
+ '@typescript-eslint/utils': 8.65.0(eslint@10.8.0(jiti@2.7.0))(typescript@5.9.3)
3135
+ debug: 4.4.3
3136
+ eslint: 10.8.0(jiti@2.7.0)
3137
+ ts-api-utils: 2.5.0(typescript@5.9.3)
3138
+ typescript: 5.9.3
3139
+ transitivePeerDependencies:
3140
+ - supports-color
3141
+
3142
+ '@typescript-eslint/types@8.65.0': {}
3143
+
3144
+ '@typescript-eslint/typescript-estree@8.65.0(typescript@5.9.3)':
3145
+ dependencies:
3146
+ '@typescript-eslint/project-service': 8.65.0(typescript@5.9.3)
3147
+ '@typescript-eslint/tsconfig-utils': 8.65.0(typescript@5.9.3)
3148
+ '@typescript-eslint/types': 8.65.0
3149
+ '@typescript-eslint/visitor-keys': 8.65.0
3150
+ debug: 4.4.3
3151
+ minimatch: 10.2.5
3152
+ semver: 7.8.5
3153
+ tinyglobby: 0.2.17
3154
+ ts-api-utils: 2.5.0(typescript@5.9.3)
3155
+ typescript: 5.9.3
3156
+ transitivePeerDependencies:
3157
+ - supports-color
3158
+
3159
+ '@typescript-eslint/utils@8.65.0(eslint@10.8.0(jiti@2.7.0))(typescript@5.9.3)':
3160
+ dependencies:
3161
+ '@eslint-community/eslint-utils': 4.10.1(eslint@10.8.0(jiti@2.7.0))
3162
+ '@typescript-eslint/scope-manager': 8.65.0
3163
+ '@typescript-eslint/types': 8.65.0
3164
+ '@typescript-eslint/typescript-estree': 8.65.0(typescript@5.9.3)
3165
+ eslint: 10.8.0(jiti@2.7.0)
3166
+ typescript: 5.9.3
3167
+ transitivePeerDependencies:
3168
+ - supports-color
3169
+
3170
+ '@typescript-eslint/visitor-keys@8.65.0':
3171
+ dependencies:
3172
+ '@typescript-eslint/types': 8.65.0
3173
+ eslint-visitor-keys: 5.0.1
3174
+
3175
+ '@ungap/structured-clone@1.3.3': {}
3176
+
3177
+ '@volar/kit@2.4.28(typescript@5.9.3)':
3178
+ dependencies:
3179
+ '@volar/language-service': 2.4.28
3180
+ '@volar/typescript': 2.4.28
3181
+ typesafe-path: 0.2.2
3182
+ typescript: 5.9.3
3183
+ vscode-languageserver-textdocument: 1.0.12
3184
+ vscode-uri: 3.1.0
3185
+
3186
+ '@volar/language-core@2.4.28':
3187
+ dependencies:
3188
+ '@volar/source-map': 2.4.28
3189
+
3190
+ '@volar/language-server@2.4.28':
3191
+ dependencies:
3192
+ '@volar/language-core': 2.4.28
3193
+ '@volar/language-service': 2.4.28
3194
+ '@volar/typescript': 2.4.28
3195
+ path-browserify: 1.0.1
3196
+ request-light: 0.7.0
3197
+ vscode-languageserver: 9.0.1
3198
+ vscode-languageserver-protocol: 3.18.2
3199
+ vscode-languageserver-textdocument: 1.0.12
3200
+ vscode-uri: 3.1.0
3201
+
3202
+ '@volar/language-service@2.4.28':
3203
+ dependencies:
3204
+ '@volar/language-core': 2.4.28
3205
+ vscode-languageserver-protocol: 3.18.2
3206
+ vscode-languageserver-textdocument: 1.0.12
3207
+ vscode-uri: 3.1.0
3208
+
3209
+ '@volar/source-map@2.4.28': {}
3210
+
3211
+ '@volar/typescript@2.4.28':
3212
+ dependencies:
3213
+ '@volar/language-core': 2.4.28
3214
+ path-browserify: 1.0.1
3215
+ vscode-uri: 3.1.0
3216
+
3217
+ '@vscode/emmet-helper@2.11.0':
3218
+ dependencies:
3219
+ emmet: 2.4.11
3220
+ jsonc-parser: 2.3.1
3221
+ vscode-languageserver-textdocument: 1.0.12
3222
+ vscode-languageserver-types: 3.18.0
3223
+ vscode-uri: 3.1.0
3224
+
3225
+ '@vscode/l10n@0.0.18': {}
3226
+
3227
+ acorn-jsx@5.3.2(acorn@8.17.0):
3228
+ dependencies:
3229
+ acorn: 8.17.0
3230
+
3231
+ acorn@8.17.0: {}
3232
+
3233
+ ajv-draft-04@1.0.0(ajv@8.20.0):
3234
+ optionalDependencies:
3235
+ ajv: 8.20.0
3236
+
3237
+ ajv-i18n@4.2.0(ajv@8.20.0):
3238
+ dependencies:
3239
+ ajv: 8.20.0
3240
+
3241
+ ajv@6.15.0:
3242
+ dependencies:
3243
+ fast-deep-equal: 3.1.3
3244
+ fast-json-stable-stringify: 2.1.0
3245
+ json-schema-traverse: 0.4.1
3246
+ uri-js: 4.4.1
3247
+
3248
+ ajv@8.20.0:
3249
+ dependencies:
3250
+ fast-deep-equal: 3.1.3
3251
+ fast-uri: 3.1.4
3252
+ json-schema-traverse: 1.0.0
3253
+ require-from-string: 2.0.2
3254
+
3255
+ am-i-vibing@0.4.0:
3256
+ dependencies:
3257
+ process-ancestry: 0.1.0
3258
+
3259
+ ansi-regex@5.0.1: {}
3260
+
3261
+ ansi-styles@4.3.0:
3262
+ dependencies:
3263
+ color-convert: 2.0.1
3264
+
3265
+ anymatch@3.1.3:
3266
+ dependencies:
3267
+ normalize-path: 3.0.0
3268
+ picomatch: 2.3.2
3269
+
3270
+ argparse@2.0.1: {}
3271
+
3272
+ aria-query@5.3.2: {}
3273
+
3274
+ astro-eslint-parser@3.0.0(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1):
3275
+ dependencies:
3276
+ '@astrojs/compiler-rs': 0.3.1(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1)
3277
+ '@typescript-eslint/scope-manager': 8.65.0
3278
+ '@typescript-eslint/types': 8.65.0
3279
+ debug: 4.4.3
3280
+ eslint-scope: 9.1.2
3281
+ eslint-visitor-keys: 5.0.1
3282
+ espree: 11.2.0
3283
+ semver: 7.8.5
3284
+ tinyglobby: 0.2.17
3285
+ transitivePeerDependencies:
3286
+ - '@emnapi/core'
3287
+ - '@emnapi/runtime'
3288
+ - supports-color
3289
+
3290
+ astro@7.1.3(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1)(jiti@2.7.0)(yaml@2.9.0):
3291
+ dependencies:
3292
+ '@astrojs/compiler-rs': 0.3.1(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1)
3293
+ '@astrojs/internal-helpers': 0.10.1
3294
+ '@astrojs/markdown-satteri': 0.3.4
3295
+ '@astrojs/telemetry': 3.3.3
3296
+ '@capsizecss/unpack': 4.0.1
3297
+ '@clack/prompts': 1.7.0
3298
+ '@oslojs/encoding': 1.1.0
3299
+ '@rollup/pluginutils': 5.4.0
3300
+ am-i-vibing: 0.4.0
3301
+ aria-query: 5.3.2
3302
+ axobject-query: 4.1.0
3303
+ ci-info: 4.4.0
3304
+ clsx: 2.1.1
3305
+ common-ancestor-path: 2.0.0
3306
+ cookie: 2.0.1
3307
+ devalue: 5.8.2
3308
+ diff: 8.0.4
3309
+ dset: 3.1.4
3310
+ es-module-lexer: 2.3.1
3311
+ esbuild: 0.28.1
3312
+ flattie: 1.1.1
3313
+ fontace: 0.4.1
3314
+ get-tsconfig: 5.0.0-beta.4
3315
+ github-slugger: 2.0.0
3316
+ html-escaper: 3.0.3
3317
+ http-cache-semantics: 4.2.0
3318
+ js-yaml: 4.3.0
3319
+ jsonc-parser: 3.3.1
3320
+ magic-string: 0.30.21
3321
+ magicast: 0.5.3
3322
+ mrmime: 2.0.1
3323
+ neotraverse: 1.0.1
3324
+ obug: 2.1.4
3325
+ p-limit: 7.3.1
3326
+ p-queue: 9.3.3
3327
+ package-manager-detector: 1.8.0
3328
+ piccolore: 0.1.3
3329
+ picomatch: 4.0.5
3330
+ semver: 7.8.5
3331
+ shiki: 4.3.1
3332
+ smol-toml: 1.7.0
3333
+ svgo: 4.0.2
3334
+ tinyclip: 0.1.15
3335
+ tinyexec: 1.2.4
3336
+ tinyglobby: 0.2.17
3337
+ ultrahtml: 1.7.0
3338
+ unifont: 0.7.4
3339
+ unstorage: 1.17.5
3340
+ vite: 8.1.5(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0)
3341
+ vitefu: 1.1.3(vite@8.1.5(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0))
3342
+ xxhash-wasm: 1.1.0
3343
+ yargs-parser: 22.0.0
3344
+ zod: 4.4.3
3345
+ optionalDependencies:
3346
+ sharp: 0.35.3
3347
+ transitivePeerDependencies:
3348
+ - '@azure/app-configuration'
3349
+ - '@azure/cosmos'
3350
+ - '@azure/data-tables'
3351
+ - '@azure/identity'
3352
+ - '@azure/keyvault-secrets'
3353
+ - '@azure/storage-blob'
3354
+ - '@capacitor/preferences'
3355
+ - '@deno/kv'
3356
+ - '@emnapi/core'
3357
+ - '@emnapi/runtime'
3358
+ - '@netlify/blobs'
3359
+ - '@planetscale/database'
3360
+ - '@types/node'
3361
+ - '@upstash/redis'
3362
+ - '@vercel/blob'
3363
+ - '@vercel/functions'
3364
+ - '@vercel/kv'
3365
+ - '@vitejs/devtools'
3366
+ - aws4fetch
3367
+ - db0
3368
+ - idb-keyval
3369
+ - ioredis
3370
+ - jiti
3371
+ - less
3372
+ - rollup
3373
+ - sass
3374
+ - sass-embedded
3375
+ - stylus
3376
+ - sugarss
3377
+ - terser
3378
+ - tsx
3379
+ - uploadthing
3380
+ - yaml
3381
+
3382
+ axobject-query@4.1.0: {}
3383
+
3384
+ bail@2.0.2: {}
3385
+
3386
+ balanced-match@4.0.4: {}
3387
+
3388
+ boolbase@1.0.0: {}
3389
+
3390
+ brace-expansion@5.0.8:
3391
+ dependencies:
3392
+ balanced-match: 4.0.4
3393
+
3394
+ ccount@2.0.1: {}
3395
+
3396
+ character-entities-html4@2.1.0: {}
3397
+
3398
+ character-entities-legacy@3.0.0: {}
3399
+
3400
+ chokidar@4.0.3:
3401
+ dependencies:
3402
+ readdirp: 4.1.2
3403
+
3404
+ chokidar@5.0.0:
3405
+ dependencies:
3406
+ readdirp: 5.0.0
3407
+
3408
+ ci-info@4.4.0: {}
3409
+
3410
+ cliui@8.0.1:
3411
+ dependencies:
3412
+ string-width: 4.2.3
3413
+ strip-ansi: 6.0.1
3414
+ wrap-ansi: 7.0.0
3415
+
3416
+ clsx@2.1.1: {}
3417
+
3418
+ color-convert@2.0.1:
3419
+ dependencies:
3420
+ color-name: 1.1.4
3421
+
3422
+ color-name@1.1.4: {}
3423
+
3424
+ comma-separated-tokens@2.0.3: {}
3425
+
3426
+ commander@11.1.0: {}
3427
+
3428
+ common-ancestor-path@2.0.0: {}
3429
+
3430
+ cookie-es@1.2.3: {}
3431
+
3432
+ cookie@2.0.1: {}
3433
+
3434
+ cross-spawn@7.0.6:
3435
+ dependencies:
3436
+ path-key: 3.1.1
3437
+ shebang-command: 2.0.0
3438
+ which: 2.0.2
3439
+
3440
+ crossws@0.3.5:
3441
+ dependencies:
3442
+ uncrypto: 0.1.3
3443
+
3444
+ css-select@5.2.2:
3445
+ dependencies:
3446
+ boolbase: 1.0.0
3447
+ css-what: 6.2.2
3448
+ domhandler: 5.0.3
3449
+ domutils: 3.2.2
3450
+ nth-check: 2.1.1
3451
+
3452
+ css-tree@2.2.1:
3453
+ dependencies:
3454
+ mdn-data: 2.0.28
3455
+ source-map-js: 1.2.1
3456
+
3457
+ css-tree@3.2.1:
3458
+ dependencies:
3459
+ mdn-data: 2.27.1
3460
+ source-map-js: 1.2.1
3461
+
3462
+ css-what@6.2.2: {}
3463
+
3464
+ cssesc@3.0.0: {}
3465
+
3466
+ csso@5.0.5:
3467
+ dependencies:
3468
+ css-tree: 2.2.1
3469
+
3470
+ debug@4.4.3:
3471
+ dependencies:
3472
+ ms: 2.1.3
3473
+
3474
+ deep-is@0.1.4: {}
3475
+
3476
+ defu@6.1.7: {}
3477
+
3478
+ dequal@2.0.3: {}
3479
+
3480
+ destr@2.0.5: {}
3481
+
3482
+ detect-libc@2.1.2: {}
3483
+
3484
+ devalue@5.8.2: {}
3485
+
3486
+ devlop@1.1.0:
3487
+ dependencies:
3488
+ dequal: 2.0.3
3489
+
3490
+ diff@8.0.4: {}
3491
+
3492
+ dom-serializer@2.0.0:
3493
+ dependencies:
3494
+ domelementtype: 2.3.0
3495
+ domhandler: 5.0.3
3496
+ entities: 4.5.0
3497
+
3498
+ domelementtype@2.3.0: {}
3499
+
3500
+ domhandler@5.0.3:
3501
+ dependencies:
3502
+ domelementtype: 2.3.0
3503
+
3504
+ domutils@3.2.2:
3505
+ dependencies:
3506
+ dom-serializer: 2.0.0
3507
+ domelementtype: 2.3.0
3508
+ domhandler: 5.0.3
3509
+
3510
+ dset@3.1.4: {}
3511
+
3512
+ emmet@2.4.11:
3513
+ dependencies:
3514
+ '@emmetio/abbreviation': 2.3.3
3515
+ '@emmetio/css-abbreviation': 2.1.8
3516
+
3517
+ emoji-regex@8.0.0: {}
3518
+
3519
+ enhanced-resolve@5.24.3:
3520
+ dependencies:
3521
+ graceful-fs: 4.2.11
3522
+ tapable: 2.3.3
3523
+
3524
+ entities@4.5.0: {}
3525
+
3526
+ entities@6.0.1: {}
3527
+
3528
+ es-module-lexer@2.3.1: {}
3529
+
3530
+ esbuild@0.28.1:
3531
+ optionalDependencies:
3532
+ '@esbuild/aix-ppc64': 0.28.1
3533
+ '@esbuild/android-arm': 0.28.1
3534
+ '@esbuild/android-arm64': 0.28.1
3535
+ '@esbuild/android-x64': 0.28.1
3536
+ '@esbuild/darwin-arm64': 0.28.1
3537
+ '@esbuild/darwin-x64': 0.28.1
3538
+ '@esbuild/freebsd-arm64': 0.28.1
3539
+ '@esbuild/freebsd-x64': 0.28.1
3540
+ '@esbuild/linux-arm': 0.28.1
3541
+ '@esbuild/linux-arm64': 0.28.1
3542
+ '@esbuild/linux-ia32': 0.28.1
3543
+ '@esbuild/linux-loong64': 0.28.1
3544
+ '@esbuild/linux-mips64el': 0.28.1
3545
+ '@esbuild/linux-ppc64': 0.28.1
3546
+ '@esbuild/linux-riscv64': 0.28.1
3547
+ '@esbuild/linux-s390x': 0.28.1
3548
+ '@esbuild/linux-x64': 0.28.1
3549
+ '@esbuild/netbsd-arm64': 0.28.1
3550
+ '@esbuild/netbsd-x64': 0.28.1
3551
+ '@esbuild/openbsd-arm64': 0.28.1
3552
+ '@esbuild/openbsd-x64': 0.28.1
3553
+ '@esbuild/openharmony-arm64': 0.28.1
3554
+ '@esbuild/sunos-x64': 0.28.1
3555
+ '@esbuild/win32-arm64': 0.28.1
3556
+ '@esbuild/win32-ia32': 0.28.1
3557
+ '@esbuild/win32-x64': 0.28.1
3558
+
3559
+ escalade@3.2.0: {}
3560
+
3561
+ escape-string-regexp@4.0.0: {}
3562
+
3563
+ eslint-plugin-astro@3.0.1(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1)(@typescript-eslint/parser@8.65.0(eslint@10.8.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.8.0(jiti@2.7.0)):
3564
+ dependencies:
3565
+ '@eslint-community/eslint-utils': 4.10.1(eslint@10.8.0(jiti@2.7.0))
3566
+ '@jridgewell/sourcemap-codec': 1.5.5
3567
+ '@typescript-eslint/types': 8.65.0
3568
+ astro-eslint-parser: 3.0.0(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1)
3569
+ eslint: 10.8.0(jiti@2.7.0)
3570
+ espree: 11.2.0
3571
+ globals: 17.7.0
3572
+ postcss: 8.5.23
3573
+ postcss-selector-parser: 7.1.4
3574
+ optionalDependencies:
3575
+ '@typescript-eslint/parser': 8.65.0(eslint@10.8.0(jiti@2.7.0))(typescript@5.9.3)
3576
+ transitivePeerDependencies:
3577
+ - '@emnapi/core'
3578
+ - '@emnapi/runtime'
3579
+ - supports-color
3580
+
3581
+ eslint-scope@9.1.2:
3582
+ dependencies:
3583
+ '@types/esrecurse': 4.3.1
3584
+ '@types/estree': 1.0.9
3585
+ esrecurse: 4.3.0
3586
+ estraverse: 5.3.0
3587
+
3588
+ eslint-visitor-keys@3.4.3: {}
3589
+
3590
+ eslint-visitor-keys@5.0.1: {}
3591
+
3592
+ eslint@10.8.0(jiti@2.7.0):
3593
+ dependencies:
3594
+ '@eslint-community/eslint-utils': 4.10.1(eslint@10.8.0(jiti@2.7.0))
3595
+ '@eslint-community/regexpp': 4.12.2
3596
+ '@eslint/config-array': 0.23.5
3597
+ '@eslint/config-helpers': 0.7.0
3598
+ '@eslint/core': 1.2.1
3599
+ '@eslint/plugin-kit': 0.7.2
3600
+ '@humanfs/node': 0.16.8
3601
+ '@humanwhocodes/module-importer': 1.0.1
3602
+ '@humanwhocodes/retry': 0.4.3
3603
+ '@types/estree': 1.0.9
3604
+ ajv: 6.15.0
3605
+ cross-spawn: 7.0.6
3606
+ debug: 4.4.3
3607
+ escape-string-regexp: 4.0.0
3608
+ eslint-scope: 9.1.2
3609
+ eslint-visitor-keys: 5.0.1
3610
+ espree: 11.2.0
3611
+ esquery: 1.7.0
3612
+ esutils: 2.0.3
3613
+ fast-deep-equal: 3.1.3
3614
+ file-entry-cache: 8.0.0
3615
+ find-up: 5.0.0
3616
+ glob-parent: 6.0.2
3617
+ ignore: 5.3.2
3618
+ imurmurhash: 0.1.4
3619
+ is-glob: 4.0.3
3620
+ json-stable-stringify-without-jsonify: 1.0.1
3621
+ minimatch: 10.2.5
3622
+ natural-compare: 1.4.0
3623
+ optionator: 0.9.4
3624
+ optionalDependencies:
3625
+ jiti: 2.7.0
3626
+ transitivePeerDependencies:
3627
+ - supports-color
3628
+
3629
+ espree@11.2.0:
3630
+ dependencies:
3631
+ acorn: 8.17.0
3632
+ acorn-jsx: 5.3.2(acorn@8.17.0)
3633
+ eslint-visitor-keys: 5.0.1
3634
+
3635
+ esquery@1.7.0:
3636
+ dependencies:
3637
+ estraverse: 5.3.0
3638
+
3639
+ esrecurse@4.3.0:
3640
+ dependencies:
3641
+ estraverse: 5.3.0
3642
+
3643
+ estraverse@5.3.0: {}
3644
+
3645
+ estree-walker@2.0.2: {}
3646
+
3647
+ esutils@2.0.3: {}
3648
+
3649
+ eventemitter3@5.0.4: {}
3650
+
3651
+ extend@3.0.2: {}
3652
+
3653
+ fast-deep-equal@3.1.3: {}
3654
+
3655
+ fast-json-stable-stringify@2.1.0: {}
3656
+
3657
+ fast-levenshtein@2.0.6: {}
3658
+
3659
+ fast-string-truncated-width@3.0.3: {}
3660
+
3661
+ fast-string-width@3.0.2:
3662
+ dependencies:
3663
+ fast-string-truncated-width: 3.0.3
3664
+
3665
+ fast-uri@3.1.4: {}
3666
+
3667
+ fast-wrap-ansi@0.2.2:
3668
+ dependencies:
3669
+ fast-string-width: 3.0.2
3670
+
3671
+ fdir@6.5.0(picomatch@4.0.5):
3672
+ optionalDependencies:
3673
+ picomatch: 4.0.5
3674
+
3675
+ file-entry-cache@8.0.0:
3676
+ dependencies:
3677
+ flat-cache: 4.0.1
3678
+
3679
+ find-up@5.0.0:
3680
+ dependencies:
3681
+ locate-path: 6.0.0
3682
+ path-exists: 4.0.0
3683
+
3684
+ flat-cache@4.0.1:
3685
+ dependencies:
3686
+ flatted: 3.4.3
3687
+ keyv: 4.5.4
3688
+
3689
+ flatted@3.4.3: {}
3690
+
3691
+ flattie@1.1.1: {}
3692
+
3693
+ fontace@0.4.1:
3694
+ dependencies:
3695
+ fontkitten: 1.0.3
3696
+
3697
+ fontkitten@1.0.3:
3698
+ dependencies:
3699
+ tiny-inflate: 1.0.3
3700
+
3701
+ fsevents@2.3.3:
3702
+ optional: true
3703
+
3704
+ get-caller-file@2.0.5: {}
3705
+
3706
+ get-tsconfig@5.0.0-beta.4:
3707
+ dependencies:
3708
+ resolve-pkg-maps: 1.0.0
3709
+
3710
+ github-slugger@2.0.0: {}
3711
+
3712
+ glob-parent@6.0.2:
3713
+ dependencies:
3714
+ is-glob: 4.0.3
3715
+
3716
+ globals@17.7.0: {}
3717
+
3718
+ graceful-fs@4.2.11: {}
3719
+
3720
+ gsap@3.15.0: {}
3721
+
3722
+ h3@1.15.11:
3723
+ dependencies:
3724
+ cookie-es: 1.2.3
3725
+ crossws: 0.3.5
3726
+ defu: 6.1.7
3727
+ destr: 2.0.5
3728
+ iron-webcrypto: 1.2.1
3729
+ node-mock-http: 1.0.4
3730
+ radix3: 1.1.2
3731
+ ufo: 1.6.4
3732
+ uncrypto: 0.1.3
3733
+
3734
+ hast-util-from-html@2.0.3:
3735
+ dependencies:
3736
+ '@types/hast': 3.0.5
3737
+ devlop: 1.1.0
3738
+ hast-util-from-parse5: 8.0.3
3739
+ parse5: 7.3.0
3740
+ vfile: 6.0.3
3741
+ vfile-message: 4.0.3
3742
+
3743
+ hast-util-from-parse5@8.0.3:
3744
+ dependencies:
3745
+ '@types/hast': 3.0.5
3746
+ '@types/unist': 3.0.3
3747
+ devlop: 1.1.0
3748
+ hastscript: 9.0.1
3749
+ property-information: 7.2.0
3750
+ vfile: 6.0.3
3751
+ vfile-location: 5.0.3
3752
+ web-namespaces: 2.0.1
3753
+
3754
+ hast-util-parse-selector@4.0.0:
3755
+ dependencies:
3756
+ '@types/hast': 3.0.5
3757
+
3758
+ hast-util-to-html@9.0.5:
3759
+ dependencies:
3760
+ '@types/hast': 3.0.5
3761
+ '@types/unist': 3.0.3
3762
+ ccount: 2.0.1
3763
+ comma-separated-tokens: 2.0.3
3764
+ hast-util-whitespace: 3.0.0
3765
+ html-void-elements: 3.0.0
3766
+ mdast-util-to-hast: 13.2.1
3767
+ property-information: 7.2.0
3768
+ space-separated-tokens: 2.0.2
3769
+ stringify-entities: 4.0.4
3770
+ zwitch: 2.0.4
3771
+
3772
+ hast-util-whitespace@3.0.0:
3773
+ dependencies:
3774
+ '@types/hast': 3.0.5
3775
+
3776
+ hastscript@9.0.1:
3777
+ dependencies:
3778
+ '@types/hast': 3.0.5
3779
+ comma-separated-tokens: 2.0.3
3780
+ hast-util-parse-selector: 4.0.0
3781
+ property-information: 7.2.0
3782
+ space-separated-tokens: 2.0.2
3783
+
3784
+ html-escaper@3.0.3: {}
3785
+
3786
+ html-void-elements@3.0.0: {}
3787
+
3788
+ http-cache-semantics@4.2.0: {}
3789
+
3790
+ ignore@5.3.2: {}
3791
+
3792
+ ignore@7.0.6: {}
3793
+
3794
+ imurmurhash@0.1.4: {}
3795
+
3796
+ iron-webcrypto@1.2.1: {}
3797
+
3798
+ is-docker@4.0.0: {}
3799
+
3800
+ is-extglob@2.1.1: {}
3801
+
3802
+ is-fullwidth-code-point@3.0.0: {}
3803
+
3804
+ is-glob@4.0.3:
3805
+ dependencies:
3806
+ is-extglob: 2.1.1
3807
+
3808
+ is-plain-obj@4.1.0: {}
3809
+
3810
+ isexe@2.0.0: {}
3811
+
3812
+ jiti@2.7.0: {}
3813
+
3814
+ js-yaml@4.3.0:
3815
+ dependencies:
3816
+ argparse: 2.0.1
3817
+
3818
+ json-buffer@3.0.1: {}
3819
+
3820
+ json-schema-traverse@0.4.1: {}
3821
+
3822
+ json-schema-traverse@1.0.0: {}
3823
+
3824
+ json-stable-stringify-without-jsonify@1.0.1: {}
3825
+
3826
+ jsonc-parser@2.3.1: {}
3827
+
3828
+ jsonc-parser@3.3.1: {}
3829
+
3830
+ keyv@4.5.4:
3831
+ dependencies:
3832
+ json-buffer: 3.0.1
3833
+
3834
+ kleur@4.1.5: {}
3835
+
3836
+ lenis@1.3.25: {}
3837
+
3838
+ levn@0.4.1:
3839
+ dependencies:
3840
+ prelude-ls: 1.2.1
3841
+ type-check: 0.4.0
3842
+
3843
+ lightningcss-android-arm64@1.32.0:
3844
+ optional: true
3845
+
3846
+ lightningcss-android-arm64@1.33.0:
3847
+ optional: true
3848
+
3849
+ lightningcss-darwin-arm64@1.32.0:
3850
+ optional: true
3851
+
3852
+ lightningcss-darwin-arm64@1.33.0:
3853
+ optional: true
3854
+
3855
+ lightningcss-darwin-x64@1.32.0:
3856
+ optional: true
3857
+
3858
+ lightningcss-darwin-x64@1.33.0:
3859
+ optional: true
3860
+
3861
+ lightningcss-freebsd-x64@1.32.0:
3862
+ optional: true
3863
+
3864
+ lightningcss-freebsd-x64@1.33.0:
3865
+ optional: true
3866
+
3867
+ lightningcss-linux-arm-gnueabihf@1.32.0:
3868
+ optional: true
3869
+
3870
+ lightningcss-linux-arm-gnueabihf@1.33.0:
3871
+ optional: true
3872
+
3873
+ lightningcss-linux-arm64-gnu@1.32.0:
3874
+ optional: true
3875
+
3876
+ lightningcss-linux-arm64-gnu@1.33.0:
3877
+ optional: true
3878
+
3879
+ lightningcss-linux-arm64-musl@1.32.0:
3880
+ optional: true
3881
+
3882
+ lightningcss-linux-arm64-musl@1.33.0:
3883
+ optional: true
3884
+
3885
+ lightningcss-linux-x64-gnu@1.32.0:
3886
+ optional: true
3887
+
3888
+ lightningcss-linux-x64-gnu@1.33.0:
3889
+ optional: true
3890
+
3891
+ lightningcss-linux-x64-musl@1.32.0:
3892
+ optional: true
3893
+
3894
+ lightningcss-linux-x64-musl@1.33.0:
3895
+ optional: true
3896
+
3897
+ lightningcss-win32-arm64-msvc@1.32.0:
3898
+ optional: true
3899
+
3900
+ lightningcss-win32-arm64-msvc@1.33.0:
3901
+ optional: true
3902
+
3903
+ lightningcss-win32-x64-msvc@1.32.0:
3904
+ optional: true
3905
+
3906
+ lightningcss-win32-x64-msvc@1.33.0:
3907
+ optional: true
3908
+
3909
+ lightningcss@1.32.0:
3910
+ dependencies:
3911
+ detect-libc: 2.1.2
3912
+ optionalDependencies:
3913
+ lightningcss-android-arm64: 1.32.0
3914
+ lightningcss-darwin-arm64: 1.32.0
3915
+ lightningcss-darwin-x64: 1.32.0
3916
+ lightningcss-freebsd-x64: 1.32.0
3917
+ lightningcss-linux-arm-gnueabihf: 1.32.0
3918
+ lightningcss-linux-arm64-gnu: 1.32.0
3919
+ lightningcss-linux-arm64-musl: 1.32.0
3920
+ lightningcss-linux-x64-gnu: 1.32.0
3921
+ lightningcss-linux-x64-musl: 1.32.0
3922
+ lightningcss-win32-arm64-msvc: 1.32.0
3923
+ lightningcss-win32-x64-msvc: 1.32.0
3924
+
3925
+ lightningcss@1.33.0:
3926
+ dependencies:
3927
+ detect-libc: 2.1.2
3928
+ optionalDependencies:
3929
+ lightningcss-android-arm64: 1.33.0
3930
+ lightningcss-darwin-arm64: 1.33.0
3931
+ lightningcss-darwin-x64: 1.33.0
3932
+ lightningcss-freebsd-x64: 1.33.0
3933
+ lightningcss-linux-arm-gnueabihf: 1.33.0
3934
+ lightningcss-linux-arm64-gnu: 1.33.0
3935
+ lightningcss-linux-arm64-musl: 1.33.0
3936
+ lightningcss-linux-x64-gnu: 1.33.0
3937
+ lightningcss-linux-x64-musl: 1.33.0
3938
+ lightningcss-win32-arm64-msvc: 1.33.0
3939
+ lightningcss-win32-x64-msvc: 1.33.0
3940
+
3941
+ locate-path@6.0.0:
3942
+ dependencies:
3943
+ p-locate: 5.0.0
3944
+
3945
+ lru-cache@11.5.2: {}
3946
+
3947
+ magic-string@0.30.21:
3948
+ dependencies:
3949
+ '@jridgewell/sourcemap-codec': 1.5.5
3950
+
3951
+ magicast@0.5.3:
3952
+ dependencies:
3953
+ '@babel/parser': 7.29.7
3954
+ '@babel/types': 7.29.7
3955
+ source-map-js: 1.2.1
3956
+
3957
+ mdast-util-to-hast@13.2.1:
3958
+ dependencies:
3959
+ '@types/hast': 3.0.5
3960
+ '@types/mdast': 4.0.4
3961
+ '@ungap/structured-clone': 1.3.3
3962
+ devlop: 1.1.0
3963
+ micromark-util-sanitize-uri: 2.0.1
3964
+ trim-lines: 3.0.1
3965
+ unist-util-position: 5.0.0
3966
+ unist-util-visit: 5.1.0
3967
+ vfile: 6.0.3
3968
+
3969
+ mdn-data@2.0.28: {}
3970
+
3971
+ mdn-data@2.27.1: {}
3972
+
3973
+ micromark-util-character@2.1.1:
3974
+ dependencies:
3975
+ micromark-util-symbol: 2.0.1
3976
+ micromark-util-types: 2.0.2
3977
+
3978
+ micromark-util-encode@2.0.1: {}
3979
+
3980
+ micromark-util-sanitize-uri@2.0.1:
3981
+ dependencies:
3982
+ micromark-util-character: 2.1.1
3983
+ micromark-util-encode: 2.0.1
3984
+ micromark-util-symbol: 2.0.1
3985
+
3986
+ micromark-util-symbol@2.0.1: {}
3987
+
3988
+ micromark-util-types@2.0.2: {}
3989
+
3990
+ minimatch@10.2.5:
3991
+ dependencies:
3992
+ brace-expansion: 5.0.8
3993
+
3994
+ mrmime@2.0.1: {}
3995
+
3996
+ ms@2.1.3: {}
3997
+
3998
+ muggle-string@0.4.1: {}
3999
+
4000
+ nanoid@3.3.16: {}
4001
+
4002
+ natural-compare@1.4.0: {}
4003
+
4004
+ neotraverse@1.0.1: {}
4005
+
4006
+ nlcst-to-string@4.0.0:
4007
+ dependencies:
4008
+ '@types/nlcst': 2.0.3
4009
+
4010
+ node-fetch-native@1.6.7: {}
4011
+
4012
+ node-mock-http@1.0.4: {}
4013
+
4014
+ normalize-path@3.0.0: {}
4015
+
4016
+ nth-check@2.1.1:
4017
+ dependencies:
4018
+ boolbase: 1.0.0
4019
+
4020
+ obug@2.1.4: {}
4021
+
4022
+ ofetch@1.5.1:
4023
+ dependencies:
4024
+ destr: 2.0.5
4025
+ node-fetch-native: 1.6.7
4026
+ ufo: 1.6.4
4027
+
4028
+ ohash@2.0.11: {}
4029
+
4030
+ oniguruma-parser@0.12.2: {}
4031
+
4032
+ oniguruma-to-es@4.3.6:
4033
+ dependencies:
4034
+ oniguruma-parser: 0.12.2
4035
+ regex: 6.1.0
4036
+ regex-recursion: 6.0.2
4037
+
4038
+ optionator@0.9.4:
4039
+ dependencies:
4040
+ deep-is: 0.1.4
4041
+ fast-levenshtein: 2.0.6
4042
+ levn: 0.4.1
4043
+ prelude-ls: 1.2.1
4044
+ type-check: 0.4.0
4045
+ word-wrap: 1.2.5
4046
+
4047
+ p-limit@3.1.0:
4048
+ dependencies:
4049
+ yocto-queue: 0.1.0
4050
+
4051
+ p-limit@7.3.1:
4052
+ dependencies:
4053
+ yocto-queue: 1.2.2
4054
+
4055
+ p-locate@5.0.0:
4056
+ dependencies:
4057
+ p-limit: 3.1.0
4058
+
4059
+ p-queue@9.3.3:
4060
+ dependencies:
4061
+ eventemitter3: 5.0.4
4062
+ p-timeout: 7.0.1
4063
+
4064
+ p-timeout@7.0.1: {}
4065
+
4066
+ package-manager-detector@1.8.0: {}
4067
+
4068
+ paper@0.12.18: {}
4069
+
4070
+ parse5@7.3.0:
4071
+ dependencies:
4072
+ entities: 6.0.1
4073
+
4074
+ path-browserify@1.0.1: {}
4075
+
4076
+ path-exists@4.0.0: {}
4077
+
4078
+ path-key@3.1.1: {}
4079
+
4080
+ piccolore@0.1.3: {}
4081
+
4082
+ picocolors@1.1.1: {}
4083
+
4084
+ picomatch@2.3.2: {}
4085
+
4086
+ picomatch@4.0.5: {}
4087
+
4088
+ postcss-selector-parser@7.1.4:
4089
+ dependencies:
4090
+ cssesc: 3.0.0
4091
+ util-deprecate: 1.0.2
4092
+
4093
+ postcss@8.5.23:
4094
+ dependencies:
4095
+ nanoid: 3.3.16
4096
+ picocolors: 1.1.1
4097
+ source-map-js: 1.2.1
4098
+
4099
+ prelude-ls@1.2.1: {}
4100
+
4101
+ prettier-plugin-astro@0.14.1:
4102
+ dependencies:
4103
+ '@astrojs/compiler': 2.13.1
4104
+ prettier: 3.9.6
4105
+ sass-formatter: 0.7.9
4106
+
4107
+ prettier-plugin-tailwindcss@0.8.1(prettier-plugin-astro@0.14.1)(prettier@3.9.6):
4108
+ dependencies:
4109
+ prettier: 3.9.6
4110
+ optionalDependencies:
4111
+ prettier-plugin-astro: 0.14.1
4112
+
4113
+ prettier@3.9.6: {}
4114
+
4115
+ prismjs@1.30.0: {}
4116
+
4117
+ process-ancestry@0.1.0: {}
4118
+
4119
+ property-information@7.2.0: {}
4120
+
4121
+ punycode@2.3.1: {}
4122
+
4123
+ radix3@1.1.2: {}
4124
+
4125
+ readdirp@4.1.2: {}
4126
+
4127
+ readdirp@5.0.0: {}
4128
+
4129
+ regex-recursion@6.0.2:
4130
+ dependencies:
4131
+ regex-utilities: 2.3.0
4132
+
4133
+ regex-utilities@2.3.0: {}
4134
+
4135
+ regex@6.1.0:
4136
+ dependencies:
4137
+ regex-utilities: 2.3.0
4138
+
4139
+ request-light@0.5.8: {}
4140
+
4141
+ request-light@0.7.0: {}
4142
+
4143
+ require-directory@2.1.1: {}
4144
+
4145
+ require-from-string@2.0.2: {}
4146
+
4147
+ resolve-pkg-maps@1.0.0: {}
4148
+
4149
+ retext-smartypants@6.2.0:
4150
+ dependencies:
4151
+ '@types/nlcst': 2.0.3
4152
+ nlcst-to-string: 4.0.0
4153
+ unist-util-visit: 5.1.0
4154
+
4155
+ rolldown@1.1.5:
4156
+ dependencies:
4157
+ '@oxc-project/types': 0.139.0
4158
+ '@rolldown/pluginutils': 1.0.1
4159
+ optionalDependencies:
4160
+ '@rolldown/binding-android-arm64': 1.1.5
4161
+ '@rolldown/binding-darwin-arm64': 1.1.5
4162
+ '@rolldown/binding-darwin-x64': 1.1.5
4163
+ '@rolldown/binding-freebsd-x64': 1.1.5
4164
+ '@rolldown/binding-linux-arm-gnueabihf': 1.1.5
4165
+ '@rolldown/binding-linux-arm64-gnu': 1.1.5
4166
+ '@rolldown/binding-linux-arm64-musl': 1.1.5
4167
+ '@rolldown/binding-linux-ppc64-gnu': 1.1.5
4168
+ '@rolldown/binding-linux-s390x-gnu': 1.1.5
4169
+ '@rolldown/binding-linux-x64-gnu': 1.1.5
4170
+ '@rolldown/binding-linux-x64-musl': 1.1.5
4171
+ '@rolldown/binding-openharmony-arm64': 1.1.5
4172
+ '@rolldown/binding-wasm32-wasi': 1.1.5
4173
+ '@rolldown/binding-win32-arm64-msvc': 1.1.5
4174
+ '@rolldown/binding-win32-x64-msvc': 1.1.5
4175
+
4176
+ s.color@0.0.15: {}
4177
+
4178
+ sass-formatter@0.7.9:
4179
+ dependencies:
4180
+ suf-log: 2.5.3
4181
+
4182
+ satteri@0.9.5:
4183
+ dependencies:
4184
+ '@types/estree-jsx': 1.0.5
4185
+ '@types/hast': 3.0.5
4186
+ '@types/mdast': 4.0.4
4187
+ '@types/unist': 3.0.3
4188
+ optionalDependencies:
4189
+ '@bruits/satteri-darwin-arm64': 0.9.5
4190
+ '@bruits/satteri-darwin-x64': 0.9.5
4191
+ '@bruits/satteri-linux-arm64-gnu': 0.9.5
4192
+ '@bruits/satteri-linux-arm64-musl': 0.9.5
4193
+ '@bruits/satteri-linux-x64-gnu': 0.9.5
4194
+ '@bruits/satteri-linux-x64-musl': 0.9.5
4195
+ '@bruits/satteri-wasm32-wasi': 0.9.5
4196
+ '@bruits/satteri-win32-arm64-msvc': 0.9.5
4197
+ '@bruits/satteri-win32-x64-msvc': 0.9.5
4198
+
4199
+ sax@1.6.1: {}
4200
+
4201
+ semver@7.8.5: {}
4202
+
4203
+ sharp@0.35.3:
4204
+ dependencies:
4205
+ '@img/colour': 1.1.0
4206
+ detect-libc: 2.1.2
4207
+ semver: 7.8.5
4208
+ optionalDependencies:
4209
+ '@img/sharp-darwin-arm64': 0.35.3
4210
+ '@img/sharp-darwin-x64': 0.35.3
4211
+ '@img/sharp-freebsd-wasm32': 0.35.3
4212
+ '@img/sharp-libvips-darwin-arm64': 1.3.2
4213
+ '@img/sharp-libvips-darwin-x64': 1.3.2
4214
+ '@img/sharp-libvips-linux-arm': 1.3.2
4215
+ '@img/sharp-libvips-linux-arm64': 1.3.2
4216
+ '@img/sharp-libvips-linux-ppc64': 1.3.2
4217
+ '@img/sharp-libvips-linux-riscv64': 1.3.2
4218
+ '@img/sharp-libvips-linux-s390x': 1.3.2
4219
+ '@img/sharp-libvips-linux-x64': 1.3.2
4220
+ '@img/sharp-libvips-linuxmusl-arm64': 1.3.2
4221
+ '@img/sharp-libvips-linuxmusl-x64': 1.3.2
4222
+ '@img/sharp-linux-arm': 0.35.3
4223
+ '@img/sharp-linux-arm64': 0.35.3
4224
+ '@img/sharp-linux-ppc64': 0.35.3
4225
+ '@img/sharp-linux-riscv64': 0.35.3
4226
+ '@img/sharp-linux-s390x': 0.35.3
4227
+ '@img/sharp-linux-x64': 0.35.3
4228
+ '@img/sharp-linuxmusl-arm64': 0.35.3
4229
+ '@img/sharp-linuxmusl-x64': 0.35.3
4230
+ '@img/sharp-webcontainers-wasm32': 0.35.3
4231
+ '@img/sharp-win32-arm64': 0.35.3
4232
+ '@img/sharp-win32-ia32': 0.35.3
4233
+ '@img/sharp-win32-x64': 0.35.3
4234
+ optional: true
4235
+
4236
+ shebang-command@2.0.0:
4237
+ dependencies:
4238
+ shebang-regex: 3.0.0
4239
+
4240
+ shebang-regex@3.0.0: {}
4241
+
4242
+ shiki@4.3.1:
4243
+ dependencies:
4244
+ '@shikijs/core': 4.3.1
4245
+ '@shikijs/engine-javascript': 4.3.1
4246
+ '@shikijs/engine-oniguruma': 4.3.1
4247
+ '@shikijs/langs': 4.3.1
4248
+ '@shikijs/themes': 4.3.1
4249
+ '@shikijs/types': 4.3.1
4250
+ '@shikijs/vscode-textmate': 10.0.2
4251
+ '@types/hast': 3.0.5
4252
+
4253
+ sisteransi@1.0.5: {}
4254
+
4255
+ smol-toml@1.7.0: {}
4256
+
4257
+ source-map-js@1.2.1: {}
4258
+
4259
+ space-separated-tokens@2.0.2: {}
4260
+
4261
+ split-type@0.3.4: {}
4262
+
4263
+ string-width@4.2.3:
4264
+ dependencies:
4265
+ emoji-regex: 8.0.0
4266
+ is-fullwidth-code-point: 3.0.0
4267
+ strip-ansi: 6.0.1
4268
+
4269
+ stringify-entities@4.0.4:
4270
+ dependencies:
4271
+ character-entities-html4: 2.1.0
4272
+ character-entities-legacy: 3.0.0
4273
+
4274
+ strip-ansi@6.0.1:
4275
+ dependencies:
4276
+ ansi-regex: 5.0.1
4277
+
4278
+ suf-log@2.5.3:
4279
+ dependencies:
4280
+ s.color: 0.0.15
4281
+
4282
+ svgo@4.0.2:
4283
+ dependencies:
4284
+ commander: 11.1.0
4285
+ css-select: 5.2.2
4286
+ css-tree: 3.2.1
4287
+ css-what: 6.2.2
4288
+ csso: 5.0.5
4289
+ picocolors: 1.1.1
4290
+ sax: 1.6.1
4291
+
4292
+ tailwindcss@4.3.3: {}
4293
+
4294
+ tapable@2.3.3: {}
4295
+
4296
+ tiny-inflate@1.0.3: {}
4297
+
4298
+ tinyclip@0.1.15: {}
4299
+
4300
+ tinyexec@1.2.4: {}
4301
+
4302
+ tinyglobby@0.2.17:
4303
+ dependencies:
4304
+ fdir: 6.5.0(picomatch@4.0.5)
4305
+ picomatch: 4.0.5
4306
+
4307
+ trim-lines@3.0.1: {}
4308
+
4309
+ trough@2.2.0: {}
4310
+
4311
+ ts-api-utils@2.5.0(typescript@5.9.3):
4312
+ dependencies:
4313
+ typescript: 5.9.3
4314
+
4315
+ tslib@2.8.1:
4316
+ optional: true
4317
+
4318
+ type-check@0.4.0:
4319
+ dependencies:
4320
+ prelude-ls: 1.2.1
4321
+
4322
+ typesafe-path@0.2.2: {}
4323
+
4324
+ typescript-auto-import-cache@0.3.6:
4325
+ dependencies:
4326
+ semver: 7.8.5
4327
+
4328
+ typescript@5.9.3: {}
4329
+
4330
+ ufo@1.6.4: {}
4331
+
4332
+ ultrahtml@1.7.0: {}
4333
+
4334
+ uncrypto@0.1.3: {}
4335
+
4336
+ unified@11.0.5:
4337
+ dependencies:
4338
+ '@types/unist': 3.0.3
4339
+ bail: 2.0.2
4340
+ devlop: 1.1.0
4341
+ extend: 3.0.2
4342
+ is-plain-obj: 4.1.0
4343
+ trough: 2.2.0
4344
+ vfile: 6.0.3
4345
+
4346
+ unifont@0.7.4:
4347
+ dependencies:
4348
+ css-tree: 3.2.1
4349
+ ofetch: 1.5.1
4350
+ ohash: 2.0.11
4351
+
4352
+ unist-util-is@6.0.1:
4353
+ dependencies:
4354
+ '@types/unist': 3.0.3
4355
+
4356
+ unist-util-position@5.0.0:
4357
+ dependencies:
4358
+ '@types/unist': 3.0.3
4359
+
4360
+ unist-util-stringify-position@4.0.0:
4361
+ dependencies:
4362
+ '@types/unist': 3.0.3
4363
+
4364
+ unist-util-visit-parents@6.0.2:
4365
+ dependencies:
4366
+ '@types/unist': 3.0.3
4367
+ unist-util-is: 6.0.1
4368
+
4369
+ unist-util-visit@5.1.0:
4370
+ dependencies:
4371
+ '@types/unist': 3.0.3
4372
+ unist-util-is: 6.0.1
4373
+ unist-util-visit-parents: 6.0.2
4374
+
4375
+ unstorage@1.17.5:
4376
+ dependencies:
4377
+ anymatch: 3.1.3
4378
+ chokidar: 5.0.0
4379
+ destr: 2.0.5
4380
+ h3: 1.15.11
4381
+ lru-cache: 11.5.2
4382
+ node-fetch-native: 1.6.7
4383
+ ofetch: 1.5.1
4384
+ ufo: 1.6.4
4385
+
4386
+ uri-js@4.4.1:
4387
+ dependencies:
4388
+ punycode: 2.3.1
4389
+
4390
+ util-deprecate@1.0.2: {}
4391
+
4392
+ vfile-location@5.0.3:
4393
+ dependencies:
4394
+ '@types/unist': 3.0.3
4395
+ vfile: 6.0.3
4396
+
4397
+ vfile-message@4.0.3:
4398
+ dependencies:
4399
+ '@types/unist': 3.0.3
4400
+ unist-util-stringify-position: 4.0.0
4401
+
4402
+ vfile@6.0.3:
4403
+ dependencies:
4404
+ '@types/unist': 3.0.3
4405
+ vfile-message: 4.0.3
4406
+
4407
+ vite@8.1.5(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0):
4408
+ dependencies:
4409
+ lightningcss: 1.33.0
4410
+ picomatch: 4.0.5
4411
+ postcss: 8.5.23
4412
+ rolldown: 1.1.5
4413
+ tinyglobby: 0.2.17
4414
+ optionalDependencies:
4415
+ esbuild: 0.28.1
4416
+ fsevents: 2.3.3
4417
+ jiti: 2.7.0
4418
+ yaml: 2.9.0
4419
+
4420
+ vitefu@1.1.3(vite@8.1.5(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0)):
4421
+ optionalDependencies:
4422
+ vite: 8.1.5(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0)
4423
+
4424
+ volar-service-css@0.0.71(@volar/language-service@2.4.28):
4425
+ dependencies:
4426
+ vscode-css-languageservice: 6.3.10
4427
+ vscode-languageserver-textdocument: 1.0.12
4428
+ vscode-uri: 3.1.0
4429
+ optionalDependencies:
4430
+ '@volar/language-service': 2.4.28
4431
+
4432
+ volar-service-emmet@0.0.71(@volar/language-service@2.4.28):
4433
+ dependencies:
4434
+ '@emmetio/css-parser': 0.4.1
4435
+ '@emmetio/html-matcher': 1.3.0
4436
+ '@vscode/emmet-helper': 2.11.0
4437
+ vscode-uri: 3.1.0
4438
+ optionalDependencies:
4439
+ '@volar/language-service': 2.4.28
4440
+
4441
+ volar-service-html@0.0.71(@volar/language-service@2.4.28):
4442
+ dependencies:
4443
+ vscode-html-languageservice: 5.6.2
4444
+ vscode-languageserver-textdocument: 1.0.12
4445
+ vscode-uri: 3.1.0
4446
+ optionalDependencies:
4447
+ '@volar/language-service': 2.4.28
4448
+
4449
+ volar-service-prettier@0.0.71(@volar/language-service@2.4.28)(prettier@3.9.6):
4450
+ dependencies:
4451
+ vscode-uri: 3.1.0
4452
+ optionalDependencies:
4453
+ '@volar/language-service': 2.4.28
4454
+ prettier: 3.9.6
4455
+
4456
+ volar-service-typescript-twoslash-queries@0.0.71(@volar/language-service@2.4.28):
4457
+ dependencies:
4458
+ vscode-uri: 3.1.0
4459
+ optionalDependencies:
4460
+ '@volar/language-service': 2.4.28
4461
+
4462
+ volar-service-typescript@0.0.71(@volar/language-service@2.4.28):
4463
+ dependencies:
4464
+ path-browserify: 1.0.1
4465
+ semver: 7.8.5
4466
+ typescript-auto-import-cache: 0.3.6
4467
+ vscode-languageserver-textdocument: 1.0.12
4468
+ vscode-nls: 5.2.0
4469
+ vscode-uri: 3.1.0
4470
+ optionalDependencies:
4471
+ '@volar/language-service': 2.4.28
4472
+
4473
+ volar-service-yaml@0.0.71(@volar/language-service@2.4.28):
4474
+ dependencies:
4475
+ vscode-uri: 3.1.0
4476
+ yaml-language-server: 1.23.0
4477
+ optionalDependencies:
4478
+ '@volar/language-service': 2.4.28
4479
+
4480
+ vscode-css-languageservice@6.3.10:
4481
+ dependencies:
4482
+ '@vscode/l10n': 0.0.18
4483
+ vscode-languageserver-textdocument: 1.0.12
4484
+ vscode-languageserver-types: 3.17.5
4485
+ vscode-uri: 3.1.0
4486
+
4487
+ vscode-html-languageservice@5.6.2:
4488
+ dependencies:
4489
+ '@vscode/l10n': 0.0.18
4490
+ vscode-languageserver-textdocument: 1.0.12
4491
+ vscode-languageserver-types: 3.18.0
4492
+ vscode-uri: 3.1.0
4493
+
4494
+ vscode-json-languageservice@4.1.8:
4495
+ dependencies:
4496
+ jsonc-parser: 3.3.1
4497
+ vscode-languageserver-textdocument: 1.0.12
4498
+ vscode-languageserver-types: 3.18.0
4499
+ vscode-nls: 5.2.0
4500
+ vscode-uri: 3.1.0
4501
+
4502
+ vscode-jsonrpc@8.2.0: {}
4503
+
4504
+ vscode-jsonrpc@9.0.1: {}
4505
+
4506
+ vscode-languageserver-protocol@3.17.5:
4507
+ dependencies:
4508
+ vscode-jsonrpc: 8.2.0
4509
+ vscode-languageserver-types: 3.17.5
4510
+
4511
+ vscode-languageserver-protocol@3.18.2:
4512
+ dependencies:
4513
+ vscode-jsonrpc: 9.0.1
4514
+ vscode-languageserver-types: 3.18.0
4515
+
4516
+ vscode-languageserver-textdocument@1.0.12: {}
4517
+
4518
+ vscode-languageserver-types@3.17.5: {}
4519
+
4520
+ vscode-languageserver-types@3.18.0: {}
4521
+
4522
+ vscode-languageserver@9.0.1:
4523
+ dependencies:
4524
+ vscode-languageserver-protocol: 3.17.5
4525
+
4526
+ vscode-nls@5.2.0: {}
4527
+
4528
+ vscode-uri@3.1.0: {}
4529
+
4530
+ web-namespaces@2.0.1: {}
4531
+
4532
+ which@2.0.2:
4533
+ dependencies:
4534
+ isexe: 2.0.0
4535
+
4536
+ word-wrap@1.2.5: {}
4537
+
4538
+ wrap-ansi@7.0.0:
4539
+ dependencies:
4540
+ ansi-styles: 4.3.0
4541
+ string-width: 4.2.3
4542
+ strip-ansi: 6.0.1
4543
+
4544
+ xxhash-wasm@1.1.0: {}
4545
+
4546
+ y18n@5.0.8: {}
4547
+
4548
+ yaml-language-server@1.23.0:
4549
+ dependencies:
4550
+ '@vscode/l10n': 0.0.18
4551
+ ajv: 8.20.0
4552
+ ajv-draft-04: 1.0.0(ajv@8.20.0)
4553
+ ajv-i18n: 4.2.0(ajv@8.20.0)
4554
+ prettier: 3.9.6
4555
+ request-light: 0.5.8
4556
+ vscode-json-languageservice: 4.1.8
4557
+ vscode-languageserver: 9.0.1
4558
+ vscode-languageserver-textdocument: 1.0.12
4559
+ vscode-languageserver-types: 3.18.0
4560
+ vscode-uri: 3.1.0
4561
+ yaml: 2.8.3
4562
+
4563
+ yaml@2.8.3: {}
4564
+
4565
+ yaml@2.9.0: {}
4566
+
4567
+ yargs-parser@21.1.1: {}
4568
+
4569
+ yargs-parser@22.0.0: {}
4570
+
4571
+ yargs@17.7.3:
4572
+ dependencies:
4573
+ cliui: 8.0.1
4574
+ escalade: 3.2.0
4575
+ get-caller-file: 2.0.5
4576
+ require-directory: 2.1.1
4577
+ string-width: 4.2.3
4578
+ y18n: 5.0.8
4579
+ yargs-parser: 21.1.1
4580
+
4581
+ yocto-queue@0.1.0: {}
4582
+
4583
+ yocto-queue@1.2.2: {}
4584
+
4585
+ zod@4.4.3: {}
4586
+
4587
+ zwitch@2.0.4: {}