@janga/norna 0.7.2 → 0.7.3

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 (145) hide show
  1. package/README.md +16 -16
  2. package/bin/norna-cli.mjs +12 -7
  3. package/docs/README.md +10 -11
  4. package/docs/commands.md +8 -8
  5. package/docs/configuration.md +13 -145
  6. package/docs/content.md +17 -15
  7. package/docs/design/command-organization.md +55 -55
  8. package/docs/design/site-examples-structure.md +2 -2
  9. package/docs/engine-development.md +5 -5
  10. package/docs/getting-started.md +19 -26
  11. package/docs/images-and-metadata.md +1 -1
  12. package/docs/local-development.md +2 -2
  13. package/docs/publishing.md +1 -1
  14. package/docs/routes.md +2 -2
  15. package/docs/site-structure.md +8 -7
  16. package/docs/theme.md +149 -7
  17. package/docs/typography.md +47 -28
  18. package/examples/dog-gallery/.astro/collections/site.schema.json +802 -0
  19. package/examples/dog-gallery/.astro/collections/theme.schema.json +714 -0
  20. package/examples/dog-gallery/.astro/content-assets.mjs +4 -0
  21. package/examples/dog-gallery/.astro/content-modules.mjs +1 -0
  22. package/examples/dog-gallery/.astro/content.d.ts +175 -0
  23. package/examples/dog-gallery/.astro/data-store.json +1 -0
  24. package/examples/dog-gallery/.astro/dev-local.json +8 -0
  25. package/examples/dog-gallery/.astro/dev.json +13 -0
  26. package/examples/dog-gallery/.astro/dev.log +49 -0
  27. package/examples/dog-gallery/.astro/settings.json +5 -0
  28. package/examples/dog-gallery/.astro/types.d.ts +2 -0
  29. package/examples/dog-gallery/dist/_astro/GalleryGrid.astro_astro_type_script_index_0_lang.B0kxDyGz.js +1 -0
  30. package/examples/dog-gallery/dist/_astro/SitePage.BFHZm5UG.css +1 -0
  31. package/examples/dog-gallery/dist/dog-care/index.html +15 -0
  32. package/examples/dog-gallery/dist/favicon.svg +7 -0
  33. package/examples/dog-gallery/dist/images/generated/black-dogs/black-puppy-meadow-7255e3d9-1080.webp +0 -0
  34. package/examples/dog-gallery/dist/images/generated/black-dogs/black-puppy-meadow-7255e3d9-1440.webp +0 -0
  35. package/examples/dog-gallery/dist/images/generated/black-dogs/black-puppy-meadow-7255e3d9-1536.webp +0 -0
  36. package/examples/dog-gallery/dist/images/generated/black-dogs/black-puppy-meadow-7255e3d9-480.webp +0 -0
  37. package/examples/dog-gallery/dist/images/generated/black-dogs/black-puppy-meadow-7255e3d9-768.webp +0 -0
  38. package/examples/dog-gallery/dist/images/generated/black-dogs/photo-of-a-black-dog-5cf614d2-480.webp +0 -0
  39. package/examples/dog-gallery/dist/images/generated/black-dogs/photo-of-a-black-dog-5cf614d2-768.webp +0 -0
  40. package/examples/dog-gallery/dist/images/generated/black-dogs/photo-of-a-black-dog-5cf614d2-960.webp +0 -0
  41. package/examples/dog-gallery/dist/images/generated/brown-dogs/brown-dog-50ef114e-1080.webp +0 -0
  42. package/examples/dog-gallery/dist/images/generated/brown-dogs/brown-dog-50ef114e-1440.webp +0 -0
  43. package/examples/dog-gallery/dist/images/generated/brown-dogs/brown-dog-50ef114e-1920.webp +0 -0
  44. package/examples/dog-gallery/dist/images/generated/brown-dogs/brown-dog-50ef114e-3939.webp +0 -0
  45. package/examples/dog-gallery/dist/images/generated/brown-dogs/brown-dog-50ef114e-480.webp +0 -0
  46. package/examples/dog-gallery/dist/images/generated/brown-dogs/brown-dog-50ef114e-768.webp +0 -0
  47. package/examples/dog-gallery/dist/images/generated/brown-dogs/dog-accompanies-master-7ef804d5-1080.webp +0 -0
  48. package/examples/dog-gallery/dist/images/generated/brown-dogs/dog-accompanies-master-7ef804d5-1440.webp +0 -0
  49. package/examples/dog-gallery/dist/images/generated/brown-dogs/dog-accompanies-master-7ef804d5-1920.webp +0 -0
  50. package/examples/dog-gallery/dist/images/generated/brown-dogs/dog-accompanies-master-7ef804d5-2400.webp +0 -0
  51. package/examples/dog-gallery/dist/images/generated/brown-dogs/dog-accompanies-master-7ef804d5-480.webp +0 -0
  52. package/examples/dog-gallery/dist/images/generated/brown-dogs/dog-accompanies-master-7ef804d5-768.webp +0 -0
  53. package/examples/dog-gallery/dist/images/generated/golden-dogs/golden-retriever-f797fd88-1080.webp +0 -0
  54. package/examples/dog-gallery/dist/images/generated/golden-dogs/golden-retriever-f797fd88-1440.webp +0 -0
  55. package/examples/dog-gallery/dist/images/generated/golden-dogs/golden-retriever-f797fd88-1600.webp +0 -0
  56. package/examples/dog-gallery/dist/images/generated/golden-dogs/golden-retriever-f797fd88-480.webp +0 -0
  57. package/examples/dog-gallery/dist/images/generated/golden-dogs/golden-retriever-f797fd88-768.webp +0 -0
  58. package/examples/dog-gallery/dist/images/generated/golden-dogs/toller-puppy-a2a8fbc0-1080.webp +0 -0
  59. package/examples/dog-gallery/dist/images/generated/golden-dogs/toller-puppy-a2a8fbc0-1440.webp +0 -0
  60. package/examples/dog-gallery/dist/images/generated/golden-dogs/toller-puppy-a2a8fbc0-1920.webp +0 -0
  61. package/examples/dog-gallery/dist/images/generated/golden-dogs/toller-puppy-a2a8fbc0-2576.webp +0 -0
  62. package/examples/dog-gallery/dist/images/generated/golden-dogs/toller-puppy-a2a8fbc0-480.webp +0 -0
  63. package/examples/dog-gallery/dist/images/generated/golden-dogs/toller-puppy-a2a8fbc0-768.webp +0 -0
  64. package/examples/dog-gallery/dist/images/generated/white-dogs/white-cute-dog-077a0689-1080.webp +0 -0
  65. package/examples/dog-gallery/dist/images/generated/white-dogs/white-cute-dog-077a0689-1277.webp +0 -0
  66. package/examples/dog-gallery/dist/images/generated/white-dogs/white-cute-dog-077a0689-480.webp +0 -0
  67. package/examples/dog-gallery/dist/images/generated/white-dogs/white-cute-dog-077a0689-768.webp +0 -0
  68. package/examples/dog-gallery/dist/images/generated/white-dogs/white-puppy-garden-d3ab2ca0-1080.webp +0 -0
  69. package/examples/dog-gallery/dist/images/generated/white-dogs/white-puppy-garden-d3ab2ca0-1440.webp +0 -0
  70. package/examples/dog-gallery/dist/images/generated/white-dogs/white-puppy-garden-d3ab2ca0-1536.webp +0 -0
  71. package/examples/dog-gallery/dist/images/generated/white-dogs/white-puppy-garden-d3ab2ca0-480.webp +0 -0
  72. package/examples/dog-gallery/dist/images/generated/white-dogs/white-puppy-garden-d3ab2ca0-768.webp +0 -0
  73. package/examples/dog-gallery/dist/index.html +43 -0
  74. package/examples/dog-gallery/dist/robots.txt +2 -0
  75. package/examples/dog-gallery/node_modules/.vite/deps/_metadata.json +74 -0
  76. package/examples/dog-gallery/node_modules/.vite/deps/astro-D_GIpJIE.js +434 -0
  77. package/examples/dog-gallery/node_modules/.vite/deps/astro-D_GIpJIE.js.map +1 -0
  78. package/examples/dog-gallery/node_modules/.vite/deps/astro_n_aria-query.js +6390 -0
  79. package/examples/dog-gallery/node_modules/.vite/deps/astro_n_aria-query.js.map +1 -0
  80. package/examples/dog-gallery/node_modules/.vite/deps/astro_n_axobject-query.js +2702 -0
  81. package/examples/dog-gallery/node_modules/.vite/deps/astro_n_axobject-query.js.map +1 -0
  82. package/examples/dog-gallery/node_modules/.vite/deps/astro_n_html-escaper.js +65 -0
  83. package/examples/dog-gallery/node_modules/.vite/deps/astro_n_html-escaper.js.map +1 -0
  84. package/examples/dog-gallery/node_modules/.vite/deps/astro_runtime_client_dev-toolbar_entrypoint__js.js +455 -0
  85. package/examples/dog-gallery/node_modules/.vite/deps/astro_runtime_client_dev-toolbar_entrypoint__js.js.map +1 -0
  86. package/examples/dog-gallery/node_modules/.vite/deps/audit-DM9Hkl5B.js +1534 -0
  87. package/examples/dog-gallery/node_modules/.vite/deps/audit-DM9Hkl5B.js.map +1 -0
  88. package/examples/dog-gallery/node_modules/.vite/deps/highlight-DnZ1ULOL.js +48 -0
  89. package/examples/dog-gallery/node_modules/.vite/deps/highlight-DnZ1ULOL.js.map +1 -0
  90. package/examples/dog-gallery/node_modules/.vite/deps/icons-RyebKi45.js +42 -0
  91. package/examples/dog-gallery/node_modules/.vite/deps/icons-RyebKi45.js.map +1 -0
  92. package/examples/dog-gallery/node_modules/.vite/deps/package.json +3 -0
  93. package/examples/dog-gallery/node_modules/.vite/deps/rolldown-runtime-BvCyGRYZ.js +4 -0
  94. package/examples/dog-gallery/node_modules/.vite/deps/settings-DaU-gNnK.js +190 -0
  95. package/examples/dog-gallery/node_modules/.vite/deps/settings-DaU-gNnK.js.map +1 -0
  96. package/examples/dog-gallery/node_modules/.vite/deps/toolbar-63PA619H.js +458 -0
  97. package/examples/dog-gallery/node_modules/.vite/deps/toolbar-63PA619H.js.map +1 -0
  98. package/examples/dog-gallery/node_modules/.vite/deps/ui-library--bkcNSYz.js +1016 -0
  99. package/examples/dog-gallery/node_modules/.vite/deps/ui-library--bkcNSYz.js.map +1 -0
  100. package/examples/dog-gallery/node_modules/.vite/deps/window-jPkpKVcy.js +32 -0
  101. package/examples/dog-gallery/node_modules/.vite/deps/window-jPkpKVcy.js.map +1 -0
  102. package/examples/dog-gallery/node_modules/.vite/deps/xray-BXCHpEJP.js +111 -0
  103. package/examples/dog-gallery/node_modules/.vite/deps/xray-BXCHpEJP.js.map +1 -0
  104. package/examples/dog-gallery/site/config.mjs +12 -42
  105. package/examples/dog-gallery/site/content.md +27 -5
  106. package/examples/dog-gallery/site/routes/dog-care/route-content.md +17 -3
  107. package/examples/dog-gallery/site/theme.md +85 -26
  108. package/fixtures/basic/site/config.mjs +2 -22
  109. package/fixtures/basic/site/content.md +1 -1
  110. package/fixtures/basic/site/theme.md +7 -3
  111. package/package.json +3 -3
  112. package/scripts/check-config.mjs +3 -3
  113. package/scripts/deploy-site.mjs +3 -3
  114. package/scripts/init-site.mjs +10 -8
  115. package/scripts/lib/frontmatter-yaml.mjs +85 -0
  116. package/scripts/lib/presentation.mjs +10 -11
  117. package/scripts/lib/project-config.mjs +91 -45
  118. package/scripts/lib/site-content.mjs +20 -2
  119. package/scripts/lib/theme-config.mjs +34 -0
  120. package/scripts/lib/typography.mjs +100 -20
  121. package/scripts/show-typography.mjs +58 -154
  122. package/scripts/sync-content-sections.mjs +6 -6
  123. package/scripts/test-content-check.mjs +3 -4
  124. package/scripts/test-engine-commands.mjs +2 -2
  125. package/scripts/test-package-check.mjs +17 -16
  126. package/scripts/test-temporary-visibility.mjs +2 -3
  127. package/src/components/SitePage.astro +2 -3
  128. package/src/components/SiteSection.astro +39 -5
  129. package/src/content.config.ts +60 -2
  130. package/src/layouts/BaseLayout.astro +17 -0
  131. package/src/styles/global.css +54 -50
  132. package/starters/basic/README.md +10 -15
  133. package/starters/basic/package.json +2 -2
  134. package/starters/basic/site/config.mjs +3 -24
  135. package/starters/basic/site/content.md +40 -7
  136. package/starters/basic/site/theme.md +110 -17
  137. package/starters/project/.github/workflows/deploy.yml +65 -0
  138. package/starters/project/README.md +72 -0
  139. package/starters/project/package-lock.json +4296 -0
  140. package/starters/project/package.json +35 -0
  141. package/starters/project/site/config.mjs +43 -0
  142. package/starters/project/site/content.md +88 -0
  143. package/starters/project/site/public/robots.txt +2 -0
  144. package/starters/project/site/routes/guide/route-content.md +58 -0
  145. package/starters/project/site/theme.md +15 -0
@@ -0,0 +1,4296 @@
1
+ {
2
+ "name": "project-site",
3
+ "lockfileVersion": 3,
4
+ "requires": true,
5
+ "packages": {
6
+ "": {
7
+ "name": "project-site",
8
+ "dependencies": {
9
+ "@janga/norna": "0.7.2"
10
+ }
11
+ },
12
+ "node_modules/@astrojs/compiler-binding": {
13
+ "version": "0.3.2",
14
+ "resolved": "https://registry.npmjs.org/@astrojs/compiler-binding/-/compiler-binding-0.3.2.tgz",
15
+ "integrity": "sha512-8w/9CWmYrAJJ8N0SY3O43ws2BgxoW6u3QsD8u2mE140lMYAlwh+tlNoUeSBq22wVheFuiBbR212l6ixZ2IIgCQ==",
16
+ "license": "MIT",
17
+ "engines": {
18
+ "node": "^20.19.0 || >=22.12.0"
19
+ },
20
+ "optionalDependencies": {
21
+ "@astrojs/compiler-binding-darwin-arm64": "0.3.2",
22
+ "@astrojs/compiler-binding-darwin-x64": "0.3.2",
23
+ "@astrojs/compiler-binding-linux-arm64-gnu": "0.3.2",
24
+ "@astrojs/compiler-binding-linux-arm64-musl": "0.3.2",
25
+ "@astrojs/compiler-binding-linux-x64-gnu": "0.3.2",
26
+ "@astrojs/compiler-binding-linux-x64-musl": "0.3.2",
27
+ "@astrojs/compiler-binding-wasm32-wasi": "0.3.2",
28
+ "@astrojs/compiler-binding-win32-arm64-msvc": "0.3.2",
29
+ "@astrojs/compiler-binding-win32-x64-msvc": "0.3.2"
30
+ }
31
+ },
32
+ "node_modules/@astrojs/compiler-binding-darwin-arm64": {
33
+ "version": "0.3.2",
34
+ "resolved": "https://registry.npmjs.org/@astrojs/compiler-binding-darwin-arm64/-/compiler-binding-darwin-arm64-0.3.2.tgz",
35
+ "integrity": "sha512-MM8tn8CSimcfytaOla4b6acN8mKWiL/rlAA1fpT3/Wl7dNGSE4y8FjTN/zJVNnb63CsLWG5zZwCt01TXtDKh9g==",
36
+ "cpu": [
37
+ "arm64"
38
+ ],
39
+ "license": "MIT",
40
+ "optional": true,
41
+ "os": [
42
+ "darwin"
43
+ ],
44
+ "engines": {
45
+ "node": "^20.19.0 || >=22.12.0"
46
+ }
47
+ },
48
+ "node_modules/@astrojs/compiler-binding-darwin-x64": {
49
+ "version": "0.3.2",
50
+ "resolved": "https://registry.npmjs.org/@astrojs/compiler-binding-darwin-x64/-/compiler-binding-darwin-x64-0.3.2.tgz",
51
+ "integrity": "sha512-2lXOlzf8xb7jLomRsf/aswh61/NnGusynB2OwFkK6k4pmOtpfXMYnG0PLfXrEvxXYj69NdCnmUYXtHDd+JOOag==",
52
+ "cpu": [
53
+ "x64"
54
+ ],
55
+ "license": "MIT",
56
+ "optional": true,
57
+ "os": [
58
+ "darwin"
59
+ ],
60
+ "engines": {
61
+ "node": "^20.19.0 || >=22.12.0"
62
+ }
63
+ },
64
+ "node_modules/@astrojs/compiler-binding-linux-arm64-gnu": {
65
+ "version": "0.3.2",
66
+ "resolved": "https://registry.npmjs.org/@astrojs/compiler-binding-linux-arm64-gnu/-/compiler-binding-linux-arm64-gnu-0.3.2.tgz",
67
+ "integrity": "sha512-BmU3kWj7qnLrd4vzm49zFEPJ5oFnn1tCT4Vt9hZbqdU5Cmb8GZl7fn6VFsnNfe7B18a2gIFtVzbLINtYl5kBjQ==",
68
+ "cpu": [
69
+ "arm64"
70
+ ],
71
+ "libc": [
72
+ "glibc"
73
+ ],
74
+ "license": "MIT",
75
+ "optional": true,
76
+ "os": [
77
+ "linux"
78
+ ],
79
+ "engines": {
80
+ "node": "^20.19.0 || >=22.12.0"
81
+ }
82
+ },
83
+ "node_modules/@astrojs/compiler-binding-linux-arm64-musl": {
84
+ "version": "0.3.2",
85
+ "resolved": "https://registry.npmjs.org/@astrojs/compiler-binding-linux-arm64-musl/-/compiler-binding-linux-arm64-musl-0.3.2.tgz",
86
+ "integrity": "sha512-f0heT9ZZEseSu5bHCeb80eL2DH07ArE6U9xi1WT/PEusNjzPmEr3GJsjG1tRLo5VYUUYX7h3ScaqGmGrMOVGmw==",
87
+ "cpu": [
88
+ "arm64"
89
+ ],
90
+ "libc": [
91
+ "musl"
92
+ ],
93
+ "license": "MIT",
94
+ "optional": true,
95
+ "os": [
96
+ "linux"
97
+ ],
98
+ "engines": {
99
+ "node": "^20.19.0 || >=22.12.0"
100
+ }
101
+ },
102
+ "node_modules/@astrojs/compiler-binding-linux-x64-gnu": {
103
+ "version": "0.3.2",
104
+ "resolved": "https://registry.npmjs.org/@astrojs/compiler-binding-linux-x64-gnu/-/compiler-binding-linux-x64-gnu-0.3.2.tgz",
105
+ "integrity": "sha512-M8fOUt0itRpqiGyoEA/ij184s8O+hqbCz3+YozRusOOM3osgGljpDThhbKAJjqh82wOo6FioQ4w8PBvU1XMD5Q==",
106
+ "cpu": [
107
+ "x64"
108
+ ],
109
+ "libc": [
110
+ "glibc"
111
+ ],
112
+ "license": "MIT",
113
+ "optional": true,
114
+ "os": [
115
+ "linux"
116
+ ],
117
+ "engines": {
118
+ "node": "^20.19.0 || >=22.12.0"
119
+ }
120
+ },
121
+ "node_modules/@astrojs/compiler-binding-linux-x64-musl": {
122
+ "version": "0.3.2",
123
+ "resolved": "https://registry.npmjs.org/@astrojs/compiler-binding-linux-x64-musl/-/compiler-binding-linux-x64-musl-0.3.2.tgz",
124
+ "integrity": "sha512-/Kebk8sO6HnLeSd691JkaAPfN7CqR9/KEXmWvyNPkaKNGmj8rTZ/lf2uXtnPu92Lan84UrKdIKVPy1fSo2encQ==",
125
+ "cpu": [
126
+ "x64"
127
+ ],
128
+ "libc": [
129
+ "musl"
130
+ ],
131
+ "license": "MIT",
132
+ "optional": true,
133
+ "os": [
134
+ "linux"
135
+ ],
136
+ "engines": {
137
+ "node": "^20.19.0 || >=22.12.0"
138
+ }
139
+ },
140
+ "node_modules/@astrojs/compiler-binding-wasm32-wasi": {
141
+ "version": "0.3.2",
142
+ "resolved": "https://registry.npmjs.org/@astrojs/compiler-binding-wasm32-wasi/-/compiler-binding-wasm32-wasi-0.3.2.tgz",
143
+ "integrity": "sha512-pUA6xbcOSB7DhfzIArB8BCAkFfAIqriiR7zl5zOStd6oU2G0kIKj+GUdGnyXyhfiv881Hffyk5tC0mR18sDjDw==",
144
+ "cpu": [
145
+ "wasm32"
146
+ ],
147
+ "license": "MIT",
148
+ "optional": true,
149
+ "dependencies": {
150
+ "@napi-rs/wasm-runtime": "^1.2.0"
151
+ },
152
+ "engines": {
153
+ "node": ">=14.0.0"
154
+ }
155
+ },
156
+ "node_modules/@astrojs/compiler-binding-win32-arm64-msvc": {
157
+ "version": "0.3.2",
158
+ "resolved": "https://registry.npmjs.org/@astrojs/compiler-binding-win32-arm64-msvc/-/compiler-binding-win32-arm64-msvc-0.3.2.tgz",
159
+ "integrity": "sha512-ESruf+6Qkl1trHUFxI6GSf6t52j8yN2kCNSzMWdzt7V/T09tFHrYzrVaJQohb2C9bJUH76pNvX6Zb51+xCQc9Q==",
160
+ "cpu": [
161
+ "arm64"
162
+ ],
163
+ "license": "MIT",
164
+ "optional": true,
165
+ "os": [
166
+ "win32"
167
+ ],
168
+ "engines": {
169
+ "node": "^20.19.0 || >=22.12.0"
170
+ }
171
+ },
172
+ "node_modules/@astrojs/compiler-binding-win32-x64-msvc": {
173
+ "version": "0.3.2",
174
+ "resolved": "https://registry.npmjs.org/@astrojs/compiler-binding-win32-x64-msvc/-/compiler-binding-win32-x64-msvc-0.3.2.tgz",
175
+ "integrity": "sha512-wzzVrEbOwbsLWOdEbocskjMRx2aZPxJ7ZbmL+jnpBamFwmigm+2M/wzuM6JWncocgYwLic1csSpalBh96kQKXA==",
176
+ "cpu": [
177
+ "x64"
178
+ ],
179
+ "license": "MIT",
180
+ "optional": true,
181
+ "os": [
182
+ "win32"
183
+ ],
184
+ "engines": {
185
+ "node": "^20.19.0 || >=22.12.0"
186
+ }
187
+ },
188
+ "node_modules/@astrojs/compiler-rs": {
189
+ "version": "0.3.2",
190
+ "resolved": "https://registry.npmjs.org/@astrojs/compiler-rs/-/compiler-rs-0.3.2.tgz",
191
+ "integrity": "sha512-xlx/T7JovIKduu4ucbTQUxQ5+Q8wxkHxhLjnZk3VlJbhbQ9RLvvuDk1p2YYFYFQ5y14dVm3FGGO4isQXa4F+Tg==",
192
+ "license": "MIT",
193
+ "dependencies": {
194
+ "@astrojs/compiler-binding": "0.3.2"
195
+ },
196
+ "engines": {
197
+ "node": ">=22.12.0"
198
+ }
199
+ },
200
+ "node_modules/@astrojs/internal-helpers": {
201
+ "version": "0.10.2",
202
+ "resolved": "https://registry.npmjs.org/@astrojs/internal-helpers/-/internal-helpers-0.10.2.tgz",
203
+ "integrity": "sha512-yt7fMgPYqSM4Tmr+taTW6Per+hjJ8Pk6lA1PAcDyqzOt8HzJ6Kje5WzCxA2Sd+9wsUW7uhkLeoTMK0cXPwH9rQ==",
204
+ "license": "MIT",
205
+ "dependencies": {
206
+ "@types/hast": "^3.0.4",
207
+ "@types/mdast": "^4.0.4",
208
+ "js-yaml": "^4.3.0",
209
+ "picomatch": "^4.0.4",
210
+ "retext-smartypants": "^6.2.0",
211
+ "shiki": "^4.0.2",
212
+ "smol-toml": "^1.6.0",
213
+ "unified": "^11.0.5"
214
+ }
215
+ },
216
+ "node_modules/@astrojs/markdown-satteri": {
217
+ "version": "0.3.5",
218
+ "resolved": "https://registry.npmjs.org/@astrojs/markdown-satteri/-/markdown-satteri-0.3.5.tgz",
219
+ "integrity": "sha512-CvWVEFAbay7YO+i9SaqDJubipA5ckiVB89QWoMJ5XC0m5CtFg8JwZ7Kau6X9sYY7FZURH0w2l03ISH2jOS/RDQ==",
220
+ "license": "MIT",
221
+ "dependencies": {
222
+ "@astrojs/internal-helpers": "0.10.2",
223
+ "@astrojs/prism": "4.0.2",
224
+ "github-slugger": "^2.0.0",
225
+ "hast-util-from-html": "^2.0.3",
226
+ "satteri": "^0.9.1"
227
+ }
228
+ },
229
+ "node_modules/@astrojs/prism": {
230
+ "version": "4.0.2",
231
+ "resolved": "https://registry.npmjs.org/@astrojs/prism/-/prism-4.0.2.tgz",
232
+ "integrity": "sha512-KTivpmnz6lDsC6o9H4+DNm2SrE/GHzw8cNAvEJwAvUT+eoaEnn/4NtbDNfRRaxaJHdp15gf+tfHAWiXR4wB3BA==",
233
+ "license": "MIT",
234
+ "dependencies": {
235
+ "prismjs": "^1.30.0"
236
+ },
237
+ "engines": {
238
+ "node": ">=22.12.0"
239
+ }
240
+ },
241
+ "node_modules/@astrojs/telemetry": {
242
+ "version": "3.3.3",
243
+ "resolved": "https://registry.npmjs.org/@astrojs/telemetry/-/telemetry-3.3.3.tgz",
244
+ "integrity": "sha512-C1TLn5sPJr0x4vk56piHWKbnqlEB8BKyte5Y45V02U+D7BGO5eMqZDH5aPjnkXQWJggvmsTXxH03QMZ9NgWLzQ==",
245
+ "license": "MIT",
246
+ "dependencies": {
247
+ "ci-info": "^4.4.0",
248
+ "dset": "^3.1.4",
249
+ "is-docker": "^4.0.0",
250
+ "package-manager-detector": "^1.6.0"
251
+ },
252
+ "engines": {
253
+ "node": "18.20.8 || ^20.3.0 || >=22.0.0"
254
+ }
255
+ },
256
+ "node_modules/@babel/helper-string-parser": {
257
+ "version": "7.29.7",
258
+ "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.29.7.tgz",
259
+ "integrity": "sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==",
260
+ "license": "MIT",
261
+ "engines": {
262
+ "node": ">=6.9.0"
263
+ }
264
+ },
265
+ "node_modules/@babel/helper-validator-identifier": {
266
+ "version": "7.29.7",
267
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.29.7.tgz",
268
+ "integrity": "sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==",
269
+ "license": "MIT",
270
+ "engines": {
271
+ "node": ">=6.9.0"
272
+ }
273
+ },
274
+ "node_modules/@babel/parser": {
275
+ "version": "7.29.8",
276
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.8.tgz",
277
+ "integrity": "sha512-E8lTAYNB1KW+FH+VGJuZM1ioAx2E6oVlvQFRrf5P8ZZmsiJXYAD9vTFV7yyEURNzgh1dFqMZuO6tUwcARbqFCA==",
278
+ "license": "MIT",
279
+ "dependencies": {
280
+ "@babel/types": "^7.29.8"
281
+ },
282
+ "bin": {
283
+ "parser": "bin/babel-parser.js"
284
+ },
285
+ "engines": {
286
+ "node": ">=6.0.0"
287
+ }
288
+ },
289
+ "node_modules/@babel/types": {
290
+ "version": "7.29.8",
291
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.8.tgz",
292
+ "integrity": "sha512-Vj1jF3cPfxg7OAfoI7QnVKLoILlm2JF9pnVHrX8qx7AHMiYWT+NDAA7jChlNgRS4WTLc/fD1lXLmPixluj+3Gg==",
293
+ "license": "MIT",
294
+ "dependencies": {
295
+ "@babel/helper-string-parser": "^7.29.7",
296
+ "@babel/helper-validator-identifier": "^7.29.7"
297
+ },
298
+ "engines": {
299
+ "node": ">=6.9.0"
300
+ }
301
+ },
302
+ "node_modules/@bruits/satteri-darwin-arm64": {
303
+ "version": "0.9.5",
304
+ "resolved": "https://registry.npmjs.org/@bruits/satteri-darwin-arm64/-/satteri-darwin-arm64-0.9.5.tgz",
305
+ "integrity": "sha512-iw4nZgx9v30lWo/MTngQqi1pI78KI0DnkSm+lVJGYdmPLgAyDNJigVhpG42/Iq55A6c1Ll8q66ljyyRiQUxwow==",
306
+ "cpu": [
307
+ "arm64"
308
+ ],
309
+ "license": "MIT",
310
+ "optional": true,
311
+ "os": [
312
+ "darwin"
313
+ ]
314
+ },
315
+ "node_modules/@bruits/satteri-darwin-x64": {
316
+ "version": "0.9.5",
317
+ "resolved": "https://registry.npmjs.org/@bruits/satteri-darwin-x64/-/satteri-darwin-x64-0.9.5.tgz",
318
+ "integrity": "sha512-6T26Z5Kf3cFW2PSlk9p7zT7yVxvuBSiJvYyz9u8KjYwMTqZyIDOj2wDyNpxKV4+6yUVG7rddq2QwvG/8LJA2+Q==",
319
+ "cpu": [
320
+ "x64"
321
+ ],
322
+ "license": "MIT",
323
+ "optional": true,
324
+ "os": [
325
+ "darwin"
326
+ ]
327
+ },
328
+ "node_modules/@bruits/satteri-linux-arm64-gnu": {
329
+ "version": "0.9.5",
330
+ "resolved": "https://registry.npmjs.org/@bruits/satteri-linux-arm64-gnu/-/satteri-linux-arm64-gnu-0.9.5.tgz",
331
+ "integrity": "sha512-u51id17uJwNEMK9nBlICsq6U31c+XVqQueVBkwRIzZG+gMpS8TOJctt5h5Wz33Z8xnMdTd+adtACVz0yHgGuOA==",
332
+ "cpu": [
333
+ "arm64"
334
+ ],
335
+ "libc": [
336
+ "glibc"
337
+ ],
338
+ "license": "MIT",
339
+ "optional": true,
340
+ "os": [
341
+ "linux"
342
+ ]
343
+ },
344
+ "node_modules/@bruits/satteri-linux-arm64-musl": {
345
+ "version": "0.9.5",
346
+ "resolved": "https://registry.npmjs.org/@bruits/satteri-linux-arm64-musl/-/satteri-linux-arm64-musl-0.9.5.tgz",
347
+ "integrity": "sha512-v39HxiwGC5Rqm01HksP6+5Y+xKLPlsuVFgIgpEAo+SiQ22c+mJVhS3u7Z6ePAKdhL5NJoK1xq70kLz3L13AhpQ==",
348
+ "cpu": [
349
+ "arm64"
350
+ ],
351
+ "libc": [
352
+ "musl"
353
+ ],
354
+ "license": "MIT",
355
+ "optional": true,
356
+ "os": [
357
+ "linux"
358
+ ]
359
+ },
360
+ "node_modules/@bruits/satteri-linux-x64-gnu": {
361
+ "version": "0.9.5",
362
+ "resolved": "https://registry.npmjs.org/@bruits/satteri-linux-x64-gnu/-/satteri-linux-x64-gnu-0.9.5.tgz",
363
+ "integrity": "sha512-F3uO8uFp3pAP5ZGXttwvh57GS7s0lL953tnNdyI2gRyP4kOOkp6pyGojNJzCjkDvWI2Cvb9iNrKok3aqQPauAw==",
364
+ "cpu": [
365
+ "x64"
366
+ ],
367
+ "libc": [
368
+ "glibc"
369
+ ],
370
+ "license": "MIT",
371
+ "optional": true,
372
+ "os": [
373
+ "linux"
374
+ ]
375
+ },
376
+ "node_modules/@bruits/satteri-linux-x64-musl": {
377
+ "version": "0.9.5",
378
+ "resolved": "https://registry.npmjs.org/@bruits/satteri-linux-x64-musl/-/satteri-linux-x64-musl-0.9.5.tgz",
379
+ "integrity": "sha512-bicEqglLlz++mWyADaZoP0JY20s4vDfLjaPYgQqC+NI4zZLTOOg1T4GB8aqtc822Pqji8SQBmSrTb7CrP8i08Q==",
380
+ "cpu": [
381
+ "x64"
382
+ ],
383
+ "libc": [
384
+ "musl"
385
+ ],
386
+ "license": "MIT",
387
+ "optional": true,
388
+ "os": [
389
+ "linux"
390
+ ]
391
+ },
392
+ "node_modules/@bruits/satteri-wasm32-wasi": {
393
+ "version": "0.9.5",
394
+ "resolved": "https://registry.npmjs.org/@bruits/satteri-wasm32-wasi/-/satteri-wasm32-wasi-0.9.5.tgz",
395
+ "integrity": "sha512-zauAuMwfPnKPUkd4AFixRFpXdgKwP2mKgxrIIo2gJzW0/ZneF9dbHnLkojSpaBnCCp7VUL1hIi5WWZvB1CqmAQ==",
396
+ "cpu": [
397
+ "wasm32"
398
+ ],
399
+ "license": "MIT",
400
+ "optional": true,
401
+ "dependencies": {
402
+ "@emnapi/core": "1.11.1",
403
+ "@emnapi/runtime": "1.11.1",
404
+ "@napi-rs/wasm-runtime": "^1.1.6"
405
+ },
406
+ "engines": {
407
+ "node": ">=14.0.0"
408
+ }
409
+ },
410
+ "node_modules/@bruits/satteri-wasm32-wasi/node_modules/@emnapi/core": {
411
+ "version": "1.11.1",
412
+ "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.11.1.tgz",
413
+ "integrity": "sha512-RSvbQmHzdKzNsLYa/wHrbc3KN4sYLKAdPZxqiM2HATqv/SBk2/ENSHpvXGaLOMcsAyz0poEGqkmmKYG3OWiJEQ==",
414
+ "license": "MIT",
415
+ "optional": true,
416
+ "dependencies": {
417
+ "@emnapi/wasi-threads": "1.2.2",
418
+ "tslib": "^2.4.0"
419
+ }
420
+ },
421
+ "node_modules/@bruits/satteri-wasm32-wasi/node_modules/@emnapi/runtime": {
422
+ "version": "1.11.1",
423
+ "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.11.1.tgz",
424
+ "integrity": "sha512-vgj7R3y3Wgx24IQaGPA/R6YFXLHVMOZ0uVEyIQPaWs+rd1AzfEMXlAC22FYwO1XkKR6NPsq7mUandH8oIRdZFw==",
425
+ "license": "MIT",
426
+ "optional": true,
427
+ "dependencies": {
428
+ "tslib": "^2.4.0"
429
+ }
430
+ },
431
+ "node_modules/@bruits/satteri-wasm32-wasi/node_modules/@emnapi/wasi-threads": {
432
+ "version": "1.2.2",
433
+ "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.2.tgz",
434
+ "integrity": "sha512-c95qOXkHdydNKhscBTebqEC1CVAZpyqOfVfBzQ1qgzyl3gfeldUjIggDbIZgDKsHLgnsM+igH7TJ/eAasaVuMA==",
435
+ "license": "MIT",
436
+ "optional": true,
437
+ "dependencies": {
438
+ "tslib": "^2.4.0"
439
+ }
440
+ },
441
+ "node_modules/@bruits/satteri-win32-arm64-msvc": {
442
+ "version": "0.9.5",
443
+ "resolved": "https://registry.npmjs.org/@bruits/satteri-win32-arm64-msvc/-/satteri-win32-arm64-msvc-0.9.5.tgz",
444
+ "integrity": "sha512-SrfE7NEsgZjBvU3c+RR6oQRu0ToXY5uVJEbieXEF0YTctIV2zAVlbaMjWLts074QCgh3a+XHWkR/lWh2VH2LUg==",
445
+ "cpu": [
446
+ "arm64"
447
+ ],
448
+ "license": "MIT",
449
+ "optional": true,
450
+ "os": [
451
+ "win32"
452
+ ]
453
+ },
454
+ "node_modules/@bruits/satteri-win32-x64-msvc": {
455
+ "version": "0.9.5",
456
+ "resolved": "https://registry.npmjs.org/@bruits/satteri-win32-x64-msvc/-/satteri-win32-x64-msvc-0.9.5.tgz",
457
+ "integrity": "sha512-5Kw9ZAtTGS8WHizyn+CJhjjfIQrw+7jcZodpmpXJjefnO15M8UexIi6JR2E5thyvsmHyhL6ZDDMUNR4bKJPd4g==",
458
+ "cpu": [
459
+ "x64"
460
+ ],
461
+ "license": "MIT",
462
+ "optional": true,
463
+ "os": [
464
+ "win32"
465
+ ]
466
+ },
467
+ "node_modules/@capsizecss/unpack": {
468
+ "version": "4.0.1",
469
+ "resolved": "https://registry.npmjs.org/@capsizecss/unpack/-/unpack-4.0.1.tgz",
470
+ "integrity": "sha512-CuNiSqg7+e1cO/GjffyMOm5Tt2jUF9CWHHnvQ/UkqvtkGfHdgwEC0wpmq7fkN3gxwpRnrAN0WzO3vREKmNolMQ==",
471
+ "license": "MIT",
472
+ "dependencies": {
473
+ "fontkitten": "^1.0.3"
474
+ },
475
+ "engines": {
476
+ "node": ">=18"
477
+ }
478
+ },
479
+ "node_modules/@clack/core": {
480
+ "version": "1.4.3",
481
+ "resolved": "https://registry.npmjs.org/@clack/core/-/core-1.4.3.tgz",
482
+ "integrity": "sha512-/kr3UWNtdJfxZtPgDqUOmG2pvwlmcLGheex5yiZKdwbzZJxhV+HMNR9QNmyY5cGwTNV6LrR7Jtp+KjhUAP1qBQ==",
483
+ "license": "MIT",
484
+ "dependencies": {
485
+ "fast-wrap-ansi": "^0.2.0",
486
+ "sisteransi": "^1.0.5"
487
+ },
488
+ "engines": {
489
+ "node": ">= 20.12.0"
490
+ }
491
+ },
492
+ "node_modules/@clack/prompts": {
493
+ "version": "1.7.0",
494
+ "resolved": "https://registry.npmjs.org/@clack/prompts/-/prompts-1.7.0.tgz",
495
+ "integrity": "sha512-y7/yvZ2TPAnR9+jnc00klvNNLkJiXFFrQA/hlLCcxA9a2A4zQIOimyFQ9XfwYKiGD1fb5GY8vbKIIgO8d5Tb2A==",
496
+ "license": "MIT",
497
+ "dependencies": {
498
+ "@clack/core": "1.4.3",
499
+ "fast-string-width": "^3.0.2",
500
+ "fast-wrap-ansi": "^0.2.0",
501
+ "sisteransi": "^1.0.5"
502
+ },
503
+ "engines": {
504
+ "node": ">= 20.12.0"
505
+ }
506
+ },
507
+ "node_modules/@emnapi/core": {
508
+ "version": "1.11.3",
509
+ "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.11.3.tgz",
510
+ "integrity": "sha512-zLpS5asjEb7lq8jYLq37N6XKaE41DIexlY1rF/z4/tIl3wo13Sqm28fRyfIsKZD+NZ8mM5RoKkpW/rBcuoSZSg==",
511
+ "license": "MIT",
512
+ "optional": true,
513
+ "peer": true,
514
+ "dependencies": {
515
+ "@emnapi/wasi-threads": "1.2.3",
516
+ "tslib": "^2.4.0"
517
+ }
518
+ },
519
+ "node_modules/@emnapi/runtime": {
520
+ "version": "1.11.3",
521
+ "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.11.3.tgz",
522
+ "integrity": "sha512-Xz4Tpyki7XyrpbUK1jR1AhdAdaXyhhY4lZ3neLodmhpuWfy2PAQN5B46sAiU4liOXGLkHypn/qU+jvfWSCYYLA==",
523
+ "license": "MIT",
524
+ "optional": true,
525
+ "dependencies": {
526
+ "tslib": "^2.4.0"
527
+ }
528
+ },
529
+ "node_modules/@emnapi/wasi-threads": {
530
+ "version": "1.2.3",
531
+ "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.3.tgz",
532
+ "integrity": "sha512-ELEBe8PsLvvJ6QMr0zLt8ffvOHW/dc1m3CEzNMg7aJUv3bMaoDtw2TXyDAwkYBuroxxuHEwhRTLJSe5sya547g==",
533
+ "license": "MIT",
534
+ "optional": true,
535
+ "peer": true,
536
+ "dependencies": {
537
+ "tslib": "^2.4.0"
538
+ }
539
+ },
540
+ "node_modules/@esbuild/aix-ppc64": {
541
+ "version": "0.28.1",
542
+ "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.28.1.tgz",
543
+ "integrity": "sha512-Svl7tq8k/08+p6CXPpRjQ1fKX+1odH/BQbb48fV6fj3CWHhsoIOoY87w1oHXm0qEpkIK3ZfVgp0hed3XBXzXMQ==",
544
+ "cpu": [
545
+ "ppc64"
546
+ ],
547
+ "license": "MIT",
548
+ "optional": true,
549
+ "os": [
550
+ "aix"
551
+ ],
552
+ "engines": {
553
+ "node": ">=18"
554
+ }
555
+ },
556
+ "node_modules/@esbuild/android-arm": {
557
+ "version": "0.28.1",
558
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.28.1.tgz",
559
+ "integrity": "sha512-0k2F129Xdio1TdJfzJ8sy1Q47vUD2NnwdhiAf7drUN1EBTfPf4hsFCtmMgu/6m8JSzsBrlmVjudMBQqOfG8usQ==",
560
+ "cpu": [
561
+ "arm"
562
+ ],
563
+ "license": "MIT",
564
+ "optional": true,
565
+ "os": [
566
+ "android"
567
+ ],
568
+ "engines": {
569
+ "node": ">=18"
570
+ }
571
+ },
572
+ "node_modules/@esbuild/android-arm64": {
573
+ "version": "0.28.1",
574
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.28.1.tgz",
575
+ "integrity": "sha512-34EGEbCIAgosYz6goLcopX6Mo7NyGv9tfwEM2/7Ce2VcVRk568iSvniGWcUXIy7wEDR1wzolcxcriFVrWYcwBg==",
576
+ "cpu": [
577
+ "arm64"
578
+ ],
579
+ "license": "MIT",
580
+ "optional": true,
581
+ "os": [
582
+ "android"
583
+ ],
584
+ "engines": {
585
+ "node": ">=18"
586
+ }
587
+ },
588
+ "node_modules/@esbuild/android-x64": {
589
+ "version": "0.28.1",
590
+ "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.28.1.tgz",
591
+ "integrity": "sha512-dbwY7ltSMDWsRatcRpCnES4F+im88OCUgGZjy52shC7GqHRE/cYlxNbB4Z4UpJswpcc4Qxd2oE/ufM0p61IKng==",
592
+ "cpu": [
593
+ "x64"
594
+ ],
595
+ "license": "MIT",
596
+ "optional": true,
597
+ "os": [
598
+ "android"
599
+ ],
600
+ "engines": {
601
+ "node": ">=18"
602
+ }
603
+ },
604
+ "node_modules/@esbuild/darwin-arm64": {
605
+ "version": "0.28.1",
606
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.28.1.tgz",
607
+ "integrity": "sha512-TZbWkQY7kvTAXbXUT7uVACR5cMHsDiSz9z7ZKAX/RTq/WJEk3QyRr0wZpNhBDX+/0CtdqUIJlOiodQcta6tY3Q==",
608
+ "cpu": [
609
+ "arm64"
610
+ ],
611
+ "license": "MIT",
612
+ "optional": true,
613
+ "os": [
614
+ "darwin"
615
+ ],
616
+ "engines": {
617
+ "node": ">=18"
618
+ }
619
+ },
620
+ "node_modules/@esbuild/darwin-x64": {
621
+ "version": "0.28.1",
622
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.28.1.tgz",
623
+ "integrity": "sha512-zfdzgK9ACBNZLI/CyHTOx81SyNbM6YXn7rxSgX97VjyiPl9W1i4Ka4fgKECEoFCKGpvBj5qArWIGgQjOwkgskQ==",
624
+ "cpu": [
625
+ "x64"
626
+ ],
627
+ "license": "MIT",
628
+ "optional": true,
629
+ "os": [
630
+ "darwin"
631
+ ],
632
+ "engines": {
633
+ "node": ">=18"
634
+ }
635
+ },
636
+ "node_modules/@esbuild/freebsd-arm64": {
637
+ "version": "0.28.1",
638
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.28.1.tgz",
639
+ "integrity": "sha512-wG2EA8ENdEI0qhkSZMjfqrdY+ziCYCPMmtZjjIwOmXFjmyzEHn+UUxk5of+SYsjtfs3VpnlC7QLzSI5hY/rOAw==",
640
+ "cpu": [
641
+ "arm64"
642
+ ],
643
+ "license": "MIT",
644
+ "optional": true,
645
+ "os": [
646
+ "freebsd"
647
+ ],
648
+ "engines": {
649
+ "node": ">=18"
650
+ }
651
+ },
652
+ "node_modules/@esbuild/freebsd-x64": {
653
+ "version": "0.28.1",
654
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.28.1.tgz",
655
+ "integrity": "sha512-i7dZ9vQgnvSCzi/rYCXNgtF/U+eKZNJBzu3eTQbRgHnM7tNSizLOkRFAl3qzVc/Op/u5YkHHa4pf/3DOYHthLQ==",
656
+ "cpu": [
657
+ "x64"
658
+ ],
659
+ "license": "MIT",
660
+ "optional": true,
661
+ "os": [
662
+ "freebsd"
663
+ ],
664
+ "engines": {
665
+ "node": ">=18"
666
+ }
667
+ },
668
+ "node_modules/@esbuild/linux-arm": {
669
+ "version": "0.28.1",
670
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.28.1.tgz",
671
+ "integrity": "sha512-qVXBOHQS+d5Y722GwJzJUtOLlX7km3CraOaGormF1pDtPd2C/l1SHRPgjLunLGe51Sh5YYWKMFDyV4SxgMQYTQ==",
672
+ "cpu": [
673
+ "arm"
674
+ ],
675
+ "license": "MIT",
676
+ "optional": true,
677
+ "os": [
678
+ "linux"
679
+ ],
680
+ "engines": {
681
+ "node": ">=18"
682
+ }
683
+ },
684
+ "node_modules/@esbuild/linux-arm64": {
685
+ "version": "0.28.1",
686
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.28.1.tgz",
687
+ "integrity": "sha512-yHs+0uc8+nvEAfAfxrWQKK5peSNzBc4PegcMO0EJ2hT71uA7vB8Ihg2e77R2P7SG5uYjPbHlLLmve4LLLRCf0g==",
688
+ "cpu": [
689
+ "arm64"
690
+ ],
691
+ "license": "MIT",
692
+ "optional": true,
693
+ "os": [
694
+ "linux"
695
+ ],
696
+ "engines": {
697
+ "node": ">=18"
698
+ }
699
+ },
700
+ "node_modules/@esbuild/linux-ia32": {
701
+ "version": "0.28.1",
702
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.28.1.tgz",
703
+ "integrity": "sha512-d1z4ZuP0ajrfz/FhGT4vv278rX8KnPPJx8i5+AtK7TYbx9Le9F1hyzurZpkEyjkGa9dUGhQow4C1NmeGvqxN2w==",
704
+ "cpu": [
705
+ "ia32"
706
+ ],
707
+ "license": "MIT",
708
+ "optional": true,
709
+ "os": [
710
+ "linux"
711
+ ],
712
+ "engines": {
713
+ "node": ">=18"
714
+ }
715
+ },
716
+ "node_modules/@esbuild/linux-loong64": {
717
+ "version": "0.28.1",
718
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.28.1.tgz",
719
+ "integrity": "sha512-M5sRjUVZrkm1OAPR3dlOYzNmN+loZKGVi1VUQGrwuqLcbR6qeAz+famMhjASeH3YVKvZz+zT1jlh/keC3Rj/lg==",
720
+ "cpu": [
721
+ "loong64"
722
+ ],
723
+ "license": "MIT",
724
+ "optional": true,
725
+ "os": [
726
+ "linux"
727
+ ],
728
+ "engines": {
729
+ "node": ">=18"
730
+ }
731
+ },
732
+ "node_modules/@esbuild/linux-mips64el": {
733
+ "version": "0.28.1",
734
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.28.1.tgz",
735
+ "integrity": "sha512-mRObBZeHh2OxcBFPWE/FjylkRgZdYuiTR3vaTozquCGOH14iP9oN4x4Ge81CoIDYQrXmIxpFumJBu5MtZpnQJQ==",
736
+ "cpu": [
737
+ "mips64el"
738
+ ],
739
+ "license": "MIT",
740
+ "optional": true,
741
+ "os": [
742
+ "linux"
743
+ ],
744
+ "engines": {
745
+ "node": ">=18"
746
+ }
747
+ },
748
+ "node_modules/@esbuild/linux-ppc64": {
749
+ "version": "0.28.1",
750
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.28.1.tgz",
751
+ "integrity": "sha512-slScBsMAb3GFDcdrCgLwZtPYRoH2H/youv10QiZyRjmsP48fznoveWytSgCI/R0ZcUgpc0ZhIUEx6LHts8yrfQ==",
752
+ "cpu": [
753
+ "ppc64"
754
+ ],
755
+ "license": "MIT",
756
+ "optional": true,
757
+ "os": [
758
+ "linux"
759
+ ],
760
+ "engines": {
761
+ "node": ">=18"
762
+ }
763
+ },
764
+ "node_modules/@esbuild/linux-riscv64": {
765
+ "version": "0.28.1",
766
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.28.1.tgz",
767
+ "integrity": "sha512-kw0owk1o0GFETUJyW0jc0G4Yzs0BHZn0JDZ8JRT088vjJYX777BAs1fDGxAC+q831qOs2DTC96mNsG2opdfyyQ==",
768
+ "cpu": [
769
+ "riscv64"
770
+ ],
771
+ "license": "MIT",
772
+ "optional": true,
773
+ "os": [
774
+ "linux"
775
+ ],
776
+ "engines": {
777
+ "node": ">=18"
778
+ }
779
+ },
780
+ "node_modules/@esbuild/linux-s390x": {
781
+ "version": "0.28.1",
782
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.28.1.tgz",
783
+ "integrity": "sha512-/lAIjX8aYFRByhh6L5rYtPEDRqa9de/4V/juOXcta5frjvzXO4/sqEtyytse0g3zZFuWu5cDN0MkLz2qRDD2Ag==",
784
+ "cpu": [
785
+ "s390x"
786
+ ],
787
+ "license": "MIT",
788
+ "optional": true,
789
+ "os": [
790
+ "linux"
791
+ ],
792
+ "engines": {
793
+ "node": ">=18"
794
+ }
795
+ },
796
+ "node_modules/@esbuild/linux-x64": {
797
+ "version": "0.28.1",
798
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.28.1.tgz",
799
+ "integrity": "sha512-u/anNYF2mmVOEDwLtnQ1wOr3EZ9sTNGLWrsYGYwHWzGA3Si84IOkHXlbWTD1NB+9/1lcnweYKO54uhxZydNzfA==",
800
+ "cpu": [
801
+ "x64"
802
+ ],
803
+ "license": "MIT",
804
+ "optional": true,
805
+ "os": [
806
+ "linux"
807
+ ],
808
+ "engines": {
809
+ "node": ">=18"
810
+ }
811
+ },
812
+ "node_modules/@esbuild/netbsd-arm64": {
813
+ "version": "0.28.1",
814
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.28.1.tgz",
815
+ "integrity": "sha512-oks0DYbLwWMmaakTsCb+zL4E+aHRVLom9IJZOAthMQEPiQmydXHkziYEsGYRx0uNV/IjEKGAV941JzH02pflqw==",
816
+ "cpu": [
817
+ "arm64"
818
+ ],
819
+ "license": "MIT",
820
+ "optional": true,
821
+ "os": [
822
+ "netbsd"
823
+ ],
824
+ "engines": {
825
+ "node": ">=18"
826
+ }
827
+ },
828
+ "node_modules/@esbuild/netbsd-x64": {
829
+ "version": "0.28.1",
830
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.28.1.tgz",
831
+ "integrity": "sha512-aeL6lAnN89Hz43Mlh1G8ARasbuoYvSITDEx0tHh5b7jJnHcssqgjy9Yx430GDpmCa6OyrKoS0aNRjKundRizGg==",
832
+ "cpu": [
833
+ "x64"
834
+ ],
835
+ "license": "MIT",
836
+ "optional": true,
837
+ "os": [
838
+ "netbsd"
839
+ ],
840
+ "engines": {
841
+ "node": ">=18"
842
+ }
843
+ },
844
+ "node_modules/@esbuild/openbsd-arm64": {
845
+ "version": "0.28.1",
846
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.28.1.tgz",
847
+ "integrity": "sha512-MEFJe5C3R8pwXdZ5Y21oo6m7ePiS0d9pWucn99O/wvyJZChoIQKrQDxKrGeW8F5+T0okTHesAmDeiHDTIq0V/Q==",
848
+ "cpu": [
849
+ "arm64"
850
+ ],
851
+ "license": "MIT",
852
+ "optional": true,
853
+ "os": [
854
+ "openbsd"
855
+ ],
856
+ "engines": {
857
+ "node": ">=18"
858
+ }
859
+ },
860
+ "node_modules/@esbuild/openbsd-x64": {
861
+ "version": "0.28.1",
862
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.28.1.tgz",
863
+ "integrity": "sha512-i/ZLIOafE0Z8cI/XANJAixoJL/uRAoS2xOA3rb0xN+KK0K177cMAsQYkzHtBrtMXAKuAc7HGgcWiZ/sRC1Nxgw==",
864
+ "cpu": [
865
+ "x64"
866
+ ],
867
+ "license": "MIT",
868
+ "optional": true,
869
+ "os": [
870
+ "openbsd"
871
+ ],
872
+ "engines": {
873
+ "node": ">=18"
874
+ }
875
+ },
876
+ "node_modules/@esbuild/openharmony-arm64": {
877
+ "version": "0.28.1",
878
+ "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.28.1.tgz",
879
+ "integrity": "sha512-ge+Z7EXFNt2BO1oAMsVpiQ8EwndV9i1xXerAeTIK7AtPs3bKFXQM7nlRxDSIUIMeueR1CNXxqztLzdNeReKBJg==",
880
+ "cpu": [
881
+ "arm64"
882
+ ],
883
+ "license": "MIT",
884
+ "optional": true,
885
+ "os": [
886
+ "openharmony"
887
+ ],
888
+ "engines": {
889
+ "node": ">=18"
890
+ }
891
+ },
892
+ "node_modules/@esbuild/sunos-x64": {
893
+ "version": "0.28.1",
894
+ "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.28.1.tgz",
895
+ "integrity": "sha512-BEjgtECkL3vY+SaSQ6nzVfiALUeFxpawyp8Jmf5PtYhf1Ug40N1h/hxlhts+f1FvSvarEigdxS3BlSMI2PJLcQ==",
896
+ "cpu": [
897
+ "x64"
898
+ ],
899
+ "license": "MIT",
900
+ "optional": true,
901
+ "os": [
902
+ "sunos"
903
+ ],
904
+ "engines": {
905
+ "node": ">=18"
906
+ }
907
+ },
908
+ "node_modules/@esbuild/win32-arm64": {
909
+ "version": "0.28.1",
910
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.28.1.tgz",
911
+ "integrity": "sha512-lCv9eK/H6ZJWbE7bh2nw54CZ9M2nupBxJcTsdk/QQnWkdSjKGuxmmH8/GWrlT1eMmZfn4dGcCjRte397WqfQXA==",
912
+ "cpu": [
913
+ "arm64"
914
+ ],
915
+ "license": "MIT",
916
+ "optional": true,
917
+ "os": [
918
+ "win32"
919
+ ],
920
+ "engines": {
921
+ "node": ">=18"
922
+ }
923
+ },
924
+ "node_modules/@esbuild/win32-ia32": {
925
+ "version": "0.28.1",
926
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.28.1.tgz",
927
+ "integrity": "sha512-zvb/mB2bSCoJOpoCBgYKKpX6YM6mJBlBUVUtVj41DlZJVEB6/0CKlRYxP5wWl1C1ILiCoAU5wZZ4q1P3qeS6Eg==",
928
+ "cpu": [
929
+ "ia32"
930
+ ],
931
+ "license": "MIT",
932
+ "optional": true,
933
+ "os": [
934
+ "win32"
935
+ ],
936
+ "engines": {
937
+ "node": ">=18"
938
+ }
939
+ },
940
+ "node_modules/@esbuild/win32-x64": {
941
+ "version": "0.28.1",
942
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.28.1.tgz",
943
+ "integrity": "sha512-bm4Mowrv+GXMlpWX++EcXw/iLyd1o3+bJkC2DkWXYVvgZCqD/bSj9ctZeAMC3cIxgjRVR2Dufaiu4YPxr5gW1A==",
944
+ "cpu": [
945
+ "x64"
946
+ ],
947
+ "license": "MIT",
948
+ "optional": true,
949
+ "os": [
950
+ "win32"
951
+ ],
952
+ "engines": {
953
+ "node": ">=18"
954
+ }
955
+ },
956
+ "node_modules/@img/colour": {
957
+ "version": "1.1.0",
958
+ "resolved": "https://registry.npmjs.org/@img/colour/-/colour-1.1.0.tgz",
959
+ "integrity": "sha512-Td76q7j57o/tLVdgS746cYARfSyxk8iEfRxewL9h4OMzYhbW4TAcppl0mT4eyqXddh6L/jwoM75mo7ixa/pCeQ==",
960
+ "license": "MIT",
961
+ "optional": true,
962
+ "engines": {
963
+ "node": ">=18"
964
+ }
965
+ },
966
+ "node_modules/@img/sharp-darwin-arm64": {
967
+ "version": "0.35.3",
968
+ "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.35.3.tgz",
969
+ "integrity": "sha512-RMnFX7YQsMoh7lWfcM4NEHHymBX/rLuKNPVM84XE9ONPcaSCDgE7CHIHpSgPcO2xcRthgBy1HfNO319mwhIAkg==",
970
+ "cpu": [
971
+ "arm64"
972
+ ],
973
+ "license": "Apache-2.0",
974
+ "optional": true,
975
+ "os": [
976
+ "darwin"
977
+ ],
978
+ "engines": {
979
+ "node": ">=20.9.0"
980
+ },
981
+ "funding": {
982
+ "url": "https://opencollective.com/libvips"
983
+ },
984
+ "optionalDependencies": {
985
+ "@img/sharp-libvips-darwin-arm64": "1.3.2"
986
+ }
987
+ },
988
+ "node_modules/@img/sharp-darwin-x64": {
989
+ "version": "0.35.3",
990
+ "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.35.3.tgz",
991
+ "integrity": "sha512-Xo+5uFBtLN0BKqieTxiFzFPQAUlBbbH5iBKyRX/z1JrbnYsHTfKJnUfL8+p2TPXr1pXqao4eeL4Rl144uDpK9w==",
992
+ "cpu": [
993
+ "x64"
994
+ ],
995
+ "license": "Apache-2.0",
996
+ "optional": true,
997
+ "os": [
998
+ "darwin"
999
+ ],
1000
+ "engines": {
1001
+ "node": ">=20.9.0"
1002
+ },
1003
+ "funding": {
1004
+ "url": "https://opencollective.com/libvips"
1005
+ },
1006
+ "optionalDependencies": {
1007
+ "@img/sharp-libvips-darwin-x64": "1.3.2"
1008
+ }
1009
+ },
1010
+ "node_modules/@img/sharp-freebsd-wasm32": {
1011
+ "version": "0.35.3",
1012
+ "resolved": "https://registry.npmjs.org/@img/sharp-freebsd-wasm32/-/sharp-freebsd-wasm32-0.35.3.tgz",
1013
+ "integrity": "sha512-lUxcqWIj2wMQ9BrwNjngcr1gWUr5xgaGThBRqPPalIC2n67Cqj1uPh8NnA/ZhAg8hUbKl+kVHKwgUIwe6ZYPrg==",
1014
+ "license": "Apache-2.0",
1015
+ "optional": true,
1016
+ "os": [
1017
+ "freebsd"
1018
+ ],
1019
+ "dependencies": {
1020
+ "@img/sharp-wasm32": "0.35.3"
1021
+ },
1022
+ "engines": {
1023
+ "node": ">=20.9.0"
1024
+ },
1025
+ "funding": {
1026
+ "url": "https://opencollective.com/libvips"
1027
+ }
1028
+ },
1029
+ "node_modules/@img/sharp-libvips-darwin-arm64": {
1030
+ "version": "1.3.2",
1031
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.3.2.tgz",
1032
+ "integrity": "sha512-9J6ypZFpQBj4YnePGoq/S38w6nz+vqg5WZLrLGY4YuSemdMq47GMLBPO42MzwdGwpg/agZ7xzZcFHa48xlywfg==",
1033
+ "cpu": [
1034
+ "arm64"
1035
+ ],
1036
+ "license": "LGPL-3.0-or-later",
1037
+ "optional": true,
1038
+ "os": [
1039
+ "darwin"
1040
+ ],
1041
+ "funding": {
1042
+ "url": "https://opencollective.com/libvips"
1043
+ }
1044
+ },
1045
+ "node_modules/@img/sharp-libvips-darwin-x64": {
1046
+ "version": "1.3.2",
1047
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.3.2.tgz",
1048
+ "integrity": "sha512-m2pW1n6cns9VaubNwsZ+c3CRYjxNQWgJ5gPlnL1nbBcpkBvFm6SCFN5o0psFHI8w9n11NKhFkeEDns98tiqbEw==",
1049
+ "cpu": [
1050
+ "x64"
1051
+ ],
1052
+ "license": "LGPL-3.0-or-later",
1053
+ "optional": true,
1054
+ "os": [
1055
+ "darwin"
1056
+ ],
1057
+ "funding": {
1058
+ "url": "https://opencollective.com/libvips"
1059
+ }
1060
+ },
1061
+ "node_modules/@img/sharp-libvips-linux-arm": {
1062
+ "version": "1.3.2",
1063
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.3.2.tgz",
1064
+ "integrity": "sha512-1eMLzy92I4J6rmi4mAT8yC3HxOtniyGELlzGbNMLLeqe052ahFQ0h6LFq+lh5DsDIdYViIDst08abvSbcEdLXQ==",
1065
+ "cpu": [
1066
+ "arm"
1067
+ ],
1068
+ "libc": [
1069
+ "glibc"
1070
+ ],
1071
+ "license": "LGPL-3.0-or-later",
1072
+ "optional": true,
1073
+ "os": [
1074
+ "linux"
1075
+ ],
1076
+ "funding": {
1077
+ "url": "https://opencollective.com/libvips"
1078
+ }
1079
+ },
1080
+ "node_modules/@img/sharp-libvips-linux-arm64": {
1081
+ "version": "1.3.2",
1082
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.3.2.tgz",
1083
+ "integrity": "sha512-dqVSFynCox4C/J8kT16V7SIFAns0IjgLwkvYT7p8LQVmJ5OS5b6tI9IGflxTeuBS//zXeFIUbwt5dwxyZ17cnA==",
1084
+ "cpu": [
1085
+ "arm64"
1086
+ ],
1087
+ "libc": [
1088
+ "glibc"
1089
+ ],
1090
+ "license": "LGPL-3.0-or-later",
1091
+ "optional": true,
1092
+ "os": [
1093
+ "linux"
1094
+ ],
1095
+ "funding": {
1096
+ "url": "https://opencollective.com/libvips"
1097
+ }
1098
+ },
1099
+ "node_modules/@img/sharp-libvips-linux-ppc64": {
1100
+ "version": "1.3.2",
1101
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-ppc64/-/sharp-libvips-linux-ppc64-1.3.2.tgz",
1102
+ "integrity": "sha512-3z0NHDxD6n5I9gc05U1eW1AyRm+Gznzq3naMrthPNqE6oYykcogW0l/jfpJdjYnuNl8R7yI9pNbE1XiUeyq0Aw==",
1103
+ "cpu": [
1104
+ "ppc64"
1105
+ ],
1106
+ "libc": [
1107
+ "glibc"
1108
+ ],
1109
+ "license": "LGPL-3.0-or-later",
1110
+ "optional": true,
1111
+ "os": [
1112
+ "linux"
1113
+ ],
1114
+ "funding": {
1115
+ "url": "https://opencollective.com/libvips"
1116
+ }
1117
+ },
1118
+ "node_modules/@img/sharp-libvips-linux-riscv64": {
1119
+ "version": "1.3.2",
1120
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-riscv64/-/sharp-libvips-linux-riscv64-1.3.2.tgz",
1121
+ "integrity": "sha512-bsb4rI+NldGOsXuej2r8OdSS8+zXDVaCWxyWrcv6kneTOlgAHtZABRzBBCwdsPiD90J4myNJuHpg6kA20ImW/w==",
1122
+ "cpu": [
1123
+ "riscv64"
1124
+ ],
1125
+ "libc": [
1126
+ "glibc"
1127
+ ],
1128
+ "license": "LGPL-3.0-or-later",
1129
+ "optional": true,
1130
+ "os": [
1131
+ "linux"
1132
+ ],
1133
+ "funding": {
1134
+ "url": "https://opencollective.com/libvips"
1135
+ }
1136
+ },
1137
+ "node_modules/@img/sharp-libvips-linux-s390x": {
1138
+ "version": "1.3.2",
1139
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.3.2.tgz",
1140
+ "integrity": "sha512-/ABshyj8gCpyIrNXnHn4LorDJ0HHm1VhXPBlxZ8zAtfVPAaSafXPGn+sUSIRiwaSBy0mmFjSjiXI5mkcwdChKQ==",
1141
+ "cpu": [
1142
+ "s390x"
1143
+ ],
1144
+ "libc": [
1145
+ "glibc"
1146
+ ],
1147
+ "license": "LGPL-3.0-or-later",
1148
+ "optional": true,
1149
+ "os": [
1150
+ "linux"
1151
+ ],
1152
+ "funding": {
1153
+ "url": "https://opencollective.com/libvips"
1154
+ }
1155
+ },
1156
+ "node_modules/@img/sharp-libvips-linux-x64": {
1157
+ "version": "1.3.2",
1158
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.3.2.tgz",
1159
+ "integrity": "sha512-ITPEtgffGJ0S6G9dRyw/366tJQqFRcHWPHhC+Stpg3Z8AEMrDrTr2lhdz4f/Y/HMbRh//7Z5mBzEpVdi62Oc3w==",
1160
+ "cpu": [
1161
+ "x64"
1162
+ ],
1163
+ "libc": [
1164
+ "glibc"
1165
+ ],
1166
+ "license": "LGPL-3.0-or-later",
1167
+ "optional": true,
1168
+ "os": [
1169
+ "linux"
1170
+ ],
1171
+ "funding": {
1172
+ "url": "https://opencollective.com/libvips"
1173
+ }
1174
+ },
1175
+ "node_modules/@img/sharp-libvips-linuxmusl-arm64": {
1176
+ "version": "1.3.2",
1177
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.3.2.tgz",
1178
+ "integrity": "sha512-zE9EdiUzUmg5mDT5a1rk5fYJ6GWPloTwWBYDS14naqHsL+EaMpDj1AWnpLgh3u0YCORv2Tt50wrcrpYqkP97Kw==",
1179
+ "cpu": [
1180
+ "arm64"
1181
+ ],
1182
+ "libc": [
1183
+ "musl"
1184
+ ],
1185
+ "license": "LGPL-3.0-or-later",
1186
+ "optional": true,
1187
+ "os": [
1188
+ "linux"
1189
+ ],
1190
+ "funding": {
1191
+ "url": "https://opencollective.com/libvips"
1192
+ }
1193
+ },
1194
+ "node_modules/@img/sharp-libvips-linuxmusl-x64": {
1195
+ "version": "1.3.2",
1196
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.3.2.tgz",
1197
+ "integrity": "sha512-m0lrLiUt+lBYnCFr8qV/65yMR4E/c7/wf78I5eKTdkEakFAlZ9QlzEM3QIhhAwVeUhLAHLcCq7a7Vszq/oFNZQ==",
1198
+ "cpu": [
1199
+ "x64"
1200
+ ],
1201
+ "libc": [
1202
+ "musl"
1203
+ ],
1204
+ "license": "LGPL-3.0-or-later",
1205
+ "optional": true,
1206
+ "os": [
1207
+ "linux"
1208
+ ],
1209
+ "funding": {
1210
+ "url": "https://opencollective.com/libvips"
1211
+ }
1212
+ },
1213
+ "node_modules/@img/sharp-linux-arm": {
1214
+ "version": "0.35.3",
1215
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.35.3.tgz",
1216
+ "integrity": "sha512-affVWCTLooy8TSxbDx2qkzuDeaWLNVBA+P//FNBirHsXpP2fuBhk5AuboYUnrDnzoXes8GFjpTx0SBFOCRg+FA==",
1217
+ "cpu": [
1218
+ "arm"
1219
+ ],
1220
+ "libc": [
1221
+ "glibc"
1222
+ ],
1223
+ "license": "Apache-2.0",
1224
+ "optional": true,
1225
+ "os": [
1226
+ "linux"
1227
+ ],
1228
+ "engines": {
1229
+ "node": ">=20.9.0"
1230
+ },
1231
+ "funding": {
1232
+ "url": "https://opencollective.com/libvips"
1233
+ },
1234
+ "optionalDependencies": {
1235
+ "@img/sharp-libvips-linux-arm": "1.3.2"
1236
+ }
1237
+ },
1238
+ "node_modules/@img/sharp-linux-arm64": {
1239
+ "version": "0.35.3",
1240
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.35.3.tgz",
1241
+ "integrity": "sha512-QgKDspHPnrU+GQ55XPhGwyhC8acLVOOSyAvo1oVfFmrIXLkDNmGWzAfDZ4xK8oSA1qBQrALcHX0G5UZni/SuFQ==",
1242
+ "cpu": [
1243
+ "arm64"
1244
+ ],
1245
+ "libc": [
1246
+ "glibc"
1247
+ ],
1248
+ "license": "Apache-2.0",
1249
+ "optional": true,
1250
+ "os": [
1251
+ "linux"
1252
+ ],
1253
+ "engines": {
1254
+ "node": ">=20.9.0"
1255
+ },
1256
+ "funding": {
1257
+ "url": "https://opencollective.com/libvips"
1258
+ },
1259
+ "optionalDependencies": {
1260
+ "@img/sharp-libvips-linux-arm64": "1.3.2"
1261
+ }
1262
+ },
1263
+ "node_modules/@img/sharp-linux-ppc64": {
1264
+ "version": "0.35.3",
1265
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-ppc64/-/sharp-linux-ppc64-0.35.3.tgz",
1266
+ "integrity": "sha512-sMd8rDxmpLOwv/7N44klFjOD5DUO7FLdjiXDI0hoxYaf7Ar262dQIEkosE98bps+5HPLtp/EvNqeqQtOycP/IA==",
1267
+ "cpu": [
1268
+ "ppc64"
1269
+ ],
1270
+ "libc": [
1271
+ "glibc"
1272
+ ],
1273
+ "license": "Apache-2.0",
1274
+ "optional": true,
1275
+ "os": [
1276
+ "linux"
1277
+ ],
1278
+ "engines": {
1279
+ "node": ">=20.9.0"
1280
+ },
1281
+ "funding": {
1282
+ "url": "https://opencollective.com/libvips"
1283
+ },
1284
+ "optionalDependencies": {
1285
+ "@img/sharp-libvips-linux-ppc64": "1.3.2"
1286
+ }
1287
+ },
1288
+ "node_modules/@img/sharp-linux-riscv64": {
1289
+ "version": "0.35.3",
1290
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-riscv64/-/sharp-linux-riscv64-0.35.3.tgz",
1291
+ "integrity": "sha512-0Eob78yjlYPfL5vMNWAW55l3R9Y6BQS/gOfe0ZcP9mEz9ohhKSt4im1hayiknXgf8AWrFqMvJcKIdmLmEe7yeQ==",
1292
+ "cpu": [
1293
+ "riscv64"
1294
+ ],
1295
+ "libc": [
1296
+ "glibc"
1297
+ ],
1298
+ "license": "Apache-2.0",
1299
+ "optional": true,
1300
+ "os": [
1301
+ "linux"
1302
+ ],
1303
+ "engines": {
1304
+ "node": ">=20.9.0"
1305
+ },
1306
+ "funding": {
1307
+ "url": "https://opencollective.com/libvips"
1308
+ },
1309
+ "optionalDependencies": {
1310
+ "@img/sharp-libvips-linux-riscv64": "1.3.2"
1311
+ }
1312
+ },
1313
+ "node_modules/@img/sharp-linux-s390x": {
1314
+ "version": "0.35.3",
1315
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.35.3.tgz",
1316
+ "integrity": "sha512-KgAxQ0DxpNOq1rG2t5cgTgShJFGSuU7XO45cqC+1NVOuZnP6tlgZRuSYOfNupGkHID0o3cJOsw4DVeJpMovcGw==",
1317
+ "cpu": [
1318
+ "s390x"
1319
+ ],
1320
+ "libc": [
1321
+ "glibc"
1322
+ ],
1323
+ "license": "Apache-2.0",
1324
+ "optional": true,
1325
+ "os": [
1326
+ "linux"
1327
+ ],
1328
+ "engines": {
1329
+ "node": ">=20.9.0"
1330
+ },
1331
+ "funding": {
1332
+ "url": "https://opencollective.com/libvips"
1333
+ },
1334
+ "optionalDependencies": {
1335
+ "@img/sharp-libvips-linux-s390x": "1.3.2"
1336
+ }
1337
+ },
1338
+ "node_modules/@img/sharp-linux-x64": {
1339
+ "version": "0.35.3",
1340
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.35.3.tgz",
1341
+ "integrity": "sha512-8pqvxubL2PGdhlPy6GLqzDYMUjyRmKAwKHYKixpdJYBUK7PJ0C029XdsnpFIdgRZG68fZiGdHVWcKPvtiPB4cA==",
1342
+ "cpu": [
1343
+ "x64"
1344
+ ],
1345
+ "libc": [
1346
+ "glibc"
1347
+ ],
1348
+ "license": "Apache-2.0",
1349
+ "optional": true,
1350
+ "os": [
1351
+ "linux"
1352
+ ],
1353
+ "engines": {
1354
+ "node": ">=20.9.0"
1355
+ },
1356
+ "funding": {
1357
+ "url": "https://opencollective.com/libvips"
1358
+ },
1359
+ "optionalDependencies": {
1360
+ "@img/sharp-libvips-linux-x64": "1.3.2"
1361
+ }
1362
+ },
1363
+ "node_modules/@img/sharp-linuxmusl-arm64": {
1364
+ "version": "0.35.3",
1365
+ "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.35.3.tgz",
1366
+ "integrity": "sha512-Vz0iQjzzcSX3HCbfwFfCSG/9SCIqyO0mH2sXyiHaAYfBk0cRsCWXRyQYX0ovCK/PAQBbTzQ0dsPQHh5MAFL59w==",
1367
+ "cpu": [
1368
+ "arm64"
1369
+ ],
1370
+ "libc": [
1371
+ "musl"
1372
+ ],
1373
+ "license": "Apache-2.0",
1374
+ "optional": true,
1375
+ "os": [
1376
+ "linux"
1377
+ ],
1378
+ "engines": {
1379
+ "node": ">=20.9.0"
1380
+ },
1381
+ "funding": {
1382
+ "url": "https://opencollective.com/libvips"
1383
+ },
1384
+ "optionalDependencies": {
1385
+ "@img/sharp-libvips-linuxmusl-arm64": "1.3.2"
1386
+ }
1387
+ },
1388
+ "node_modules/@img/sharp-linuxmusl-x64": {
1389
+ "version": "0.35.3",
1390
+ "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.35.3.tgz",
1391
+ "integrity": "sha512-6O1NPKcDVj9QEdg7Hx549EX8U0rp6yXQERqru6yRN7fGBn32UvIRJUlWnk+8xDCiG76hXVBbX82NZ/ZKr0euIg==",
1392
+ "cpu": [
1393
+ "x64"
1394
+ ],
1395
+ "libc": [
1396
+ "musl"
1397
+ ],
1398
+ "license": "Apache-2.0",
1399
+ "optional": true,
1400
+ "os": [
1401
+ "linux"
1402
+ ],
1403
+ "engines": {
1404
+ "node": ">=20.9.0"
1405
+ },
1406
+ "funding": {
1407
+ "url": "https://opencollective.com/libvips"
1408
+ },
1409
+ "optionalDependencies": {
1410
+ "@img/sharp-libvips-linuxmusl-x64": "1.3.2"
1411
+ }
1412
+ },
1413
+ "node_modules/@img/sharp-wasm32": {
1414
+ "version": "0.35.3",
1415
+ "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.35.3.tgz",
1416
+ "integrity": "sha512-cZ0XkcYGpHZkqW6iCkqTcmUC0CD9DhD5d/qeZlZkfRBn6GnHniZXLUo5+9xw8Iv76YE6LQFN9YNBlKREcCG76w==",
1417
+ "license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT",
1418
+ "optional": true,
1419
+ "dependencies": {
1420
+ "@emnapi/runtime": "^1.11.1"
1421
+ },
1422
+ "engines": {
1423
+ "node": ">=20.9.0"
1424
+ },
1425
+ "funding": {
1426
+ "url": "https://opencollective.com/libvips"
1427
+ }
1428
+ },
1429
+ "node_modules/@img/sharp-webcontainers-wasm32": {
1430
+ "version": "0.35.3",
1431
+ "resolved": "https://registry.npmjs.org/@img/sharp-webcontainers-wasm32/-/sharp-webcontainers-wasm32-0.35.3.tgz",
1432
+ "integrity": "sha512-2rnq7bX3NzeR2T4YWgz8qiG4h3TSdMe+vN1iQXpJleSJ3SM5zQ8Fy2SyyXAWlbxpEZ2Y+Z4u1BePgJEYbSy80Q==",
1433
+ "cpu": [
1434
+ "wasm32"
1435
+ ],
1436
+ "license": "Apache-2.0",
1437
+ "optional": true,
1438
+ "dependencies": {
1439
+ "@img/sharp-wasm32": "0.35.3"
1440
+ },
1441
+ "engines": {
1442
+ "node": ">=20.9.0"
1443
+ },
1444
+ "funding": {
1445
+ "url": "https://opencollective.com/libvips"
1446
+ }
1447
+ },
1448
+ "node_modules/@img/sharp-win32-arm64": {
1449
+ "version": "0.35.3",
1450
+ "resolved": "https://registry.npmjs.org/@img/sharp-win32-arm64/-/sharp-win32-arm64-0.35.3.tgz",
1451
+ "integrity": "sha512-4bPwFdMbeC4JQ8L8LOyWp6nsHcboP5fxkp6iPOXz2Vg49R42TuMs2whkJ5OAP4/Ul035qOzy0AecOF9VOscn4w==",
1452
+ "cpu": [
1453
+ "arm64"
1454
+ ],
1455
+ "license": "Apache-2.0 AND LGPL-3.0-or-later",
1456
+ "optional": true,
1457
+ "os": [
1458
+ "win32"
1459
+ ],
1460
+ "engines": {
1461
+ "node": ">=20.9.0"
1462
+ },
1463
+ "funding": {
1464
+ "url": "https://opencollective.com/libvips"
1465
+ }
1466
+ },
1467
+ "node_modules/@img/sharp-win32-ia32": {
1468
+ "version": "0.35.3",
1469
+ "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.35.3.tgz",
1470
+ "integrity": "sha512-r53mXsBN6lFUDiST764SvgwUdHAqM4rPAiDzAmf4fLoB6X/rkfyTrLCg6+g17wJJiCmB3JYgHuUldCWUIRFSXw==",
1471
+ "cpu": [
1472
+ "ia32"
1473
+ ],
1474
+ "license": "Apache-2.0 AND LGPL-3.0-or-later",
1475
+ "optional": true,
1476
+ "os": [
1477
+ "win32"
1478
+ ],
1479
+ "engines": {
1480
+ "node": "^20.9.0"
1481
+ },
1482
+ "funding": {
1483
+ "url": "https://opencollective.com/libvips"
1484
+ }
1485
+ },
1486
+ "node_modules/@img/sharp-win32-x64": {
1487
+ "version": "0.35.3",
1488
+ "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.35.3.tgz",
1489
+ "integrity": "sha512-D4y1vNeZrIIJCN+uHaWVtH86B+aCrdMYYjicy9pXHvbGZeGYLLSd3wdVuC37FxVXlU1ARsk84eKWfWMXGYEqvA==",
1490
+ "cpu": [
1491
+ "x64"
1492
+ ],
1493
+ "license": "Apache-2.0 AND LGPL-3.0-or-later",
1494
+ "optional": true,
1495
+ "os": [
1496
+ "win32"
1497
+ ],
1498
+ "engines": {
1499
+ "node": ">=20.9.0"
1500
+ },
1501
+ "funding": {
1502
+ "url": "https://opencollective.com/libvips"
1503
+ }
1504
+ },
1505
+ "node_modules/@janga/norna": {
1506
+ "version": "0.7.2",
1507
+ "resolved": "https://registry.npmjs.org/@janga/norna/-/norna-0.7.2.tgz",
1508
+ "integrity": "sha512-N0KPzTZmrBv+eABMqniJY8UQwDh4wM4dupsuahadUzum9bYFZxN1Mi0TWfV8rKOMHzzqA0gaiRYCY4ldIOQ9cw==",
1509
+ "license": "GPL-3.0-only",
1510
+ "dependencies": {
1511
+ "astro": "^7.1.3",
1512
+ "embla-carousel": "^8.6.0"
1513
+ },
1514
+ "bin": {
1515
+ "norna": "bin/norna.mjs"
1516
+ },
1517
+ "engines": {
1518
+ "node": ">=22.12.0"
1519
+ }
1520
+ },
1521
+ "node_modules/@jridgewell/sourcemap-codec": {
1522
+ "version": "1.5.5",
1523
+ "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
1524
+ "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
1525
+ "license": "MIT"
1526
+ },
1527
+ "node_modules/@napi-rs/wasm-runtime": {
1528
+ "version": "1.2.2",
1529
+ "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.2.2.tgz",
1530
+ "integrity": "sha512-JfB4kuJQjaoHuCTseIINHtHWeJnvgEcxjwA5t/Y00ZgaOO1Crz3fjT/p8kT28zA/Caz7oiUMn3d6H2yOVCVwuw==",
1531
+ "license": "MIT",
1532
+ "optional": true,
1533
+ "dependencies": {
1534
+ "@tybys/wasm-util": "^0.10.3"
1535
+ },
1536
+ "engines": {
1537
+ "node": "^20.19.0 || ^22.13.0 || >=23.5.0"
1538
+ },
1539
+ "funding": {
1540
+ "type": "github",
1541
+ "url": "https://github.com/sponsors/Brooooooklyn"
1542
+ },
1543
+ "peerDependencies": {
1544
+ "@emnapi/core": "^1.7.1 || ^2.0.0-alpha.3",
1545
+ "@emnapi/runtime": "^1.7.1 || ^2.0.0-alpha.3"
1546
+ }
1547
+ },
1548
+ "node_modules/@oslojs/encoding": {
1549
+ "version": "1.1.0",
1550
+ "resolved": "https://registry.npmjs.org/@oslojs/encoding/-/encoding-1.1.0.tgz",
1551
+ "integrity": "sha512-70wQhgYmndg4GCPxPPxPGevRKqTIJ2Nh4OkiMWmDAVYsTQ+Ta7Sq+rPevXyXGdzr30/qZBnyOalCszoMxlyldQ==",
1552
+ "license": "MIT"
1553
+ },
1554
+ "node_modules/@oxc-project/types": {
1555
+ "version": "0.143.0",
1556
+ "resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.143.0.tgz",
1557
+ "integrity": "sha512-u6JZdLBTLotrNC9Vd6vPssINdzcCzleKAH6EJKImQb7GtYvX5keN2dxkoK44stCc4tffE6QQRtZTXVSzsLUlWA==",
1558
+ "license": "MIT",
1559
+ "funding": {
1560
+ "url": "https://github.com/sponsors/Boshen"
1561
+ }
1562
+ },
1563
+ "node_modules/@rolldown/binding-android-arm64": {
1564
+ "version": "1.2.3",
1565
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm64/-/binding-android-arm64-1.2.3.tgz",
1566
+ "integrity": "sha512-zrJtHDcaZJ1Fp7xf4hNl+7seH9Cn/N5TwLYkhgXREtBwAd/jaqW3uqeHxpDugJLVICWg4eW44kOQEGJ1r6jCGw==",
1567
+ "cpu": [
1568
+ "arm64"
1569
+ ],
1570
+ "license": "MIT",
1571
+ "optional": true,
1572
+ "os": [
1573
+ "android"
1574
+ ],
1575
+ "engines": {
1576
+ "node": "^20.19.0 || >=22.12.0"
1577
+ }
1578
+ },
1579
+ "node_modules/@rolldown/binding-darwin-arm64": {
1580
+ "version": "1.2.3",
1581
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.2.3.tgz",
1582
+ "integrity": "sha512-ieIiibVCp0tX7TLu2cafoNPv8wJyYi01ekXpbf8q2j7F4rGAhhXb/eQh7ge9DRBY78GwmRQtvjZDux7EDbA8kA==",
1583
+ "cpu": [
1584
+ "arm64"
1585
+ ],
1586
+ "license": "MIT",
1587
+ "optional": true,
1588
+ "os": [
1589
+ "darwin"
1590
+ ],
1591
+ "engines": {
1592
+ "node": "^20.19.0 || >=22.12.0"
1593
+ }
1594
+ },
1595
+ "node_modules/@rolldown/binding-darwin-x64": {
1596
+ "version": "1.2.3",
1597
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.2.3.tgz",
1598
+ "integrity": "sha512-Zh9tCon19eDXJoihx0rqKhMUlMYqzwj3aPsSuHmI4RWZh62dWUL+DJN4C5YQya5TcQBJU/Fe8+rY0jhXTQITqA==",
1599
+ "cpu": [
1600
+ "x64"
1601
+ ],
1602
+ "license": "MIT",
1603
+ "optional": true,
1604
+ "os": [
1605
+ "darwin"
1606
+ ],
1607
+ "engines": {
1608
+ "node": "^20.19.0 || >=22.12.0"
1609
+ }
1610
+ },
1611
+ "node_modules/@rolldown/binding-freebsd-x64": {
1612
+ "version": "1.2.3",
1613
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.2.3.tgz",
1614
+ "integrity": "sha512-nGbJWewA1wrXXZiQhjAT5rhibGfns5ZNkDVqxsO6zJ3f3YvpoDNNmGMSbbhLuXKjNScaBJVOAboztAWVespQMg==",
1615
+ "cpu": [
1616
+ "x64"
1617
+ ],
1618
+ "license": "MIT",
1619
+ "optional": true,
1620
+ "os": [
1621
+ "freebsd"
1622
+ ],
1623
+ "engines": {
1624
+ "node": "^20.19.0 || >=22.12.0"
1625
+ }
1626
+ },
1627
+ "node_modules/@rolldown/binding-linux-arm-gnueabihf": {
1628
+ "version": "1.2.3",
1629
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.2.3.tgz",
1630
+ "integrity": "sha512-QNniJr5Kml0kDEB98jiDOJjXNroxIIi0IXIbdYzY26Xt1pVbeP62+KnoIZLwirOymX/0jDk/2gI/bNUv7A7OIw==",
1631
+ "cpu": [
1632
+ "arm"
1633
+ ],
1634
+ "license": "MIT",
1635
+ "optional": true,
1636
+ "os": [
1637
+ "linux"
1638
+ ],
1639
+ "engines": {
1640
+ "node": "^20.19.0 || >=22.12.0"
1641
+ }
1642
+ },
1643
+ "node_modules/@rolldown/binding-linux-arm64-gnu": {
1644
+ "version": "1.2.3",
1645
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.2.3.tgz",
1646
+ "integrity": "sha512-TkqEAcmmvH3I/q4114NB4RVt6241Dao48pF45uLcFGrwAaIn0iITgTAKP/dLjbN0R4buJjGb91+UHSoFmpgIWw==",
1647
+ "cpu": [
1648
+ "arm64"
1649
+ ],
1650
+ "libc": [
1651
+ "glibc"
1652
+ ],
1653
+ "license": "MIT",
1654
+ "optional": true,
1655
+ "os": [
1656
+ "linux"
1657
+ ],
1658
+ "engines": {
1659
+ "node": "^20.19.0 || >=22.12.0"
1660
+ }
1661
+ },
1662
+ "node_modules/@rolldown/binding-linux-arm64-musl": {
1663
+ "version": "1.2.3",
1664
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.2.3.tgz",
1665
+ "integrity": "sha512-NHqjnxpsndf4MPymxteFAWHHfkTL8HjWh1KB7z23ofZ6QO2euONuxDXjat69dKZRALnGypg8k8SsK8vZJoXv1Q==",
1666
+ "cpu": [
1667
+ "arm64"
1668
+ ],
1669
+ "libc": [
1670
+ "musl"
1671
+ ],
1672
+ "license": "MIT",
1673
+ "optional": true,
1674
+ "os": [
1675
+ "linux"
1676
+ ],
1677
+ "engines": {
1678
+ "node": "^20.19.0 || >=22.12.0"
1679
+ }
1680
+ },
1681
+ "node_modules/@rolldown/binding-linux-ppc64-gnu": {
1682
+ "version": "1.2.3",
1683
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.2.3.tgz",
1684
+ "integrity": "sha512-6tbrbwfz5GB9DQ4Jwo6hy9v+vR31xZlvzZ6n5Xut6Hhx5PvrA9q/HsK8KMaYQp063iqZGXwNvZtYNLD7EM/x0w==",
1685
+ "cpu": [
1686
+ "ppc64"
1687
+ ],
1688
+ "libc": [
1689
+ "glibc"
1690
+ ],
1691
+ "license": "MIT",
1692
+ "optional": true,
1693
+ "os": [
1694
+ "linux"
1695
+ ],
1696
+ "engines": {
1697
+ "node": "^20.19.0 || >=22.12.0"
1698
+ }
1699
+ },
1700
+ "node_modules/@rolldown/binding-linux-s390x-gnu": {
1701
+ "version": "1.2.3",
1702
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.2.3.tgz",
1703
+ "integrity": "sha512-oyuXxXmoZHjXC917IAPFAAv4wWAa0cM9afk8nx1+9/jNNOX1uPf8yDA6p7G0RypOfw/X0PQt5IfoquY1um+zSg==",
1704
+ "cpu": [
1705
+ "s390x"
1706
+ ],
1707
+ "libc": [
1708
+ "glibc"
1709
+ ],
1710
+ "license": "MIT",
1711
+ "optional": true,
1712
+ "os": [
1713
+ "linux"
1714
+ ],
1715
+ "engines": {
1716
+ "node": "^20.19.0 || >=22.12.0"
1717
+ }
1718
+ },
1719
+ "node_modules/@rolldown/binding-linux-x64-gnu": {
1720
+ "version": "1.2.3",
1721
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.2.3.tgz",
1722
+ "integrity": "sha512-TytMwF2KVGqP2tgd0I1OY0PAv78dZRAYcF5ssDzjM34SUXCED3uXvSd5+lHoC0bTD6eEdFz7LdQNCO1y0oVk9w==",
1723
+ "cpu": [
1724
+ "x64"
1725
+ ],
1726
+ "libc": [
1727
+ "glibc"
1728
+ ],
1729
+ "license": "MIT",
1730
+ "optional": true,
1731
+ "os": [
1732
+ "linux"
1733
+ ],
1734
+ "engines": {
1735
+ "node": "^20.19.0 || >=22.12.0"
1736
+ }
1737
+ },
1738
+ "node_modules/@rolldown/binding-linux-x64-musl": {
1739
+ "version": "1.2.3",
1740
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.2.3.tgz",
1741
+ "integrity": "sha512-/E9m3qstrJFVPoULV25mVQblSNExY2+kBsYe4sy0Tn0yOOgJ8wZbZt3KnRbF/XeU2Gl1STKUQnDNTqhIE5MD4A==",
1742
+ "cpu": [
1743
+ "x64"
1744
+ ],
1745
+ "libc": [
1746
+ "musl"
1747
+ ],
1748
+ "license": "MIT",
1749
+ "optional": true,
1750
+ "os": [
1751
+ "linux"
1752
+ ],
1753
+ "engines": {
1754
+ "node": "^20.19.0 || >=22.12.0"
1755
+ }
1756
+ },
1757
+ "node_modules/@rolldown/binding-openharmony-arm64": {
1758
+ "version": "1.2.3",
1759
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.2.3.tgz",
1760
+ "integrity": "sha512-Kr0OcsoQI816i6HOl3vFHpd1K0eZyh76zgfj4c1nTyaTsd5r2Mj1lwM4R90y/qaCfmTn9eHy0SKwi98eitRxug==",
1761
+ "cpu": [
1762
+ "arm64"
1763
+ ],
1764
+ "license": "MIT",
1765
+ "optional": true,
1766
+ "os": [
1767
+ "openharmony"
1768
+ ],
1769
+ "engines": {
1770
+ "node": "^20.19.0 || >=22.12.0"
1771
+ }
1772
+ },
1773
+ "node_modules/@rolldown/binding-win32-arm64-msvc": {
1774
+ "version": "1.2.3",
1775
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.2.3.tgz",
1776
+ "integrity": "sha512-hOtMwTqnME+/gJcH/PCZ0wn0zPUjiWOgkHpxbSJpfGKMezHltx1S7/k1SitzVa7Ww2cqrDDaFbZEhcJZO8o+Jw==",
1777
+ "cpu": [
1778
+ "arm64"
1779
+ ],
1780
+ "license": "MIT",
1781
+ "optional": true,
1782
+ "os": [
1783
+ "win32"
1784
+ ],
1785
+ "engines": {
1786
+ "node": "^20.19.0 || >=22.12.0"
1787
+ }
1788
+ },
1789
+ "node_modules/@rolldown/binding-win32-x64-msvc": {
1790
+ "version": "1.2.3",
1791
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.2.3.tgz",
1792
+ "integrity": "sha512-ekcqMMkI2PlhYnfzQnB/cEdYUVVJViWvoUyLrbzgDoi3Snfc1mVBwdnc306ufA5ejy8JSPjT2RlW1nQSjW7efg==",
1793
+ "cpu": [
1794
+ "x64"
1795
+ ],
1796
+ "license": "MIT",
1797
+ "optional": true,
1798
+ "os": [
1799
+ "win32"
1800
+ ],
1801
+ "engines": {
1802
+ "node": "^20.19.0 || >=22.12.0"
1803
+ }
1804
+ },
1805
+ "node_modules/@rolldown/pluginutils": {
1806
+ "version": "1.0.1",
1807
+ "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.1.tgz",
1808
+ "integrity": "sha512-2j9bGt5Jh8hj+vPtgzPtl72j0yRxHAyumoo6TNfAjsLB04UtpSvPbPcDcBMxz7n+9CYB0c1GxQFxYRg2jimqGw==",
1809
+ "license": "MIT"
1810
+ },
1811
+ "node_modules/@shikijs/core": {
1812
+ "version": "4.4.2",
1813
+ "resolved": "https://registry.npmjs.org/@shikijs/core/-/core-4.4.2.tgz",
1814
+ "integrity": "sha512-StyzbAyxg2/tBGf78gwbBkGyeQ73lf8UiJArFaQhTQIDqQOCKPCQFanvrs4/Yv3Yfyc+ONInJM6K+FMIf+P+kA==",
1815
+ "license": "MIT",
1816
+ "dependencies": {
1817
+ "@shikijs/primitive": "4.4.2",
1818
+ "@shikijs/types": "4.4.2",
1819
+ "@shikijs/vscode-textmate": "^10.0.2",
1820
+ "@types/hast": "^3.0.5",
1821
+ "hast-util-to-html": "^9.0.5"
1822
+ },
1823
+ "engines": {
1824
+ "node": ">=20"
1825
+ }
1826
+ },
1827
+ "node_modules/@shikijs/engine-javascript": {
1828
+ "version": "4.4.2",
1829
+ "resolved": "https://registry.npmjs.org/@shikijs/engine-javascript/-/engine-javascript-4.4.2.tgz",
1830
+ "integrity": "sha512-MnIkeqWdVPUWsxlx8gKLVCJFTsqrQJgpTPBPpQwaFeJ56lOnJxj5aN2LUFnfxUEcvOQuNocmbaMnVrCEln6rkw==",
1831
+ "license": "MIT",
1832
+ "dependencies": {
1833
+ "@shikijs/types": "4.4.2",
1834
+ "@shikijs/vscode-textmate": "^10.0.2",
1835
+ "oniguruma-to-es": "^4.3.6"
1836
+ },
1837
+ "engines": {
1838
+ "node": ">=20"
1839
+ }
1840
+ },
1841
+ "node_modules/@shikijs/engine-oniguruma": {
1842
+ "version": "4.4.2",
1843
+ "resolved": "https://registry.npmjs.org/@shikijs/engine-oniguruma/-/engine-oniguruma-4.4.2.tgz",
1844
+ "integrity": "sha512-GLhowz1+jixjz+wiZ3wMnOn1jTxiFCGl2PkXufivbnwPHKuyw1AYqu5/hbWhZZ2oAb0NP05WUJhYeigY14drnw==",
1845
+ "license": "MIT",
1846
+ "dependencies": {
1847
+ "@shikijs/types": "4.4.2",
1848
+ "@shikijs/vscode-textmate": "^10.0.2"
1849
+ },
1850
+ "engines": {
1851
+ "node": ">=20"
1852
+ }
1853
+ },
1854
+ "node_modules/@shikijs/langs": {
1855
+ "version": "4.4.2",
1856
+ "resolved": "https://registry.npmjs.org/@shikijs/langs/-/langs-4.4.2.tgz",
1857
+ "integrity": "sha512-8DfeusD+Zdv/eYIDdXyJTUnSMHt+aAWjAOCXV20HNGAHRlInXpG8wh421v6B91WOm9TFwRLN+b/LG5F2NAIojg==",
1858
+ "license": "MIT",
1859
+ "dependencies": {
1860
+ "@shikijs/types": "4.4.2"
1861
+ },
1862
+ "engines": {
1863
+ "node": ">=20"
1864
+ }
1865
+ },
1866
+ "node_modules/@shikijs/primitive": {
1867
+ "version": "4.4.2",
1868
+ "resolved": "https://registry.npmjs.org/@shikijs/primitive/-/primitive-4.4.2.tgz",
1869
+ "integrity": "sha512-l6fQQKsOMlz72n38fztmSgZ76MO6KSWuw8o+GJ+FhmqrpC9pIOJNQNXGgbb5yX2AwpzlEHwsaLPnk/8o4Fm+rA==",
1870
+ "license": "MIT",
1871
+ "dependencies": {
1872
+ "@shikijs/types": "4.4.2",
1873
+ "@shikijs/vscode-textmate": "^10.0.2",
1874
+ "@types/hast": "^3.0.5"
1875
+ },
1876
+ "engines": {
1877
+ "node": ">=20"
1878
+ }
1879
+ },
1880
+ "node_modules/@shikijs/themes": {
1881
+ "version": "4.4.2",
1882
+ "resolved": "https://registry.npmjs.org/@shikijs/themes/-/themes-4.4.2.tgz",
1883
+ "integrity": "sha512-H0CFoL07ddDC2Dd6EdrPYNkRhUR6YCkJlnuYFceYYUJJA5TIm2b5B33qqiDYryBExgbKMndFJPb2u1gTuqO37g==",
1884
+ "license": "MIT",
1885
+ "dependencies": {
1886
+ "@shikijs/types": "4.4.2"
1887
+ },
1888
+ "engines": {
1889
+ "node": ">=20"
1890
+ }
1891
+ },
1892
+ "node_modules/@shikijs/types": {
1893
+ "version": "4.4.2",
1894
+ "resolved": "https://registry.npmjs.org/@shikijs/types/-/types-4.4.2.tgz",
1895
+ "integrity": "sha512-PFYitV4vpDr/iPCIhnHp+Q4ftic5N5VeNJ3KQ1O8gn3h2ar8qgwMAXF7tq4m1CWaMS60fV4VqF6vfnWH4F7vqQ==",
1896
+ "license": "MIT",
1897
+ "dependencies": {
1898
+ "@shikijs/vscode-textmate": "^10.0.2",
1899
+ "@types/hast": "^3.0.5"
1900
+ },
1901
+ "engines": {
1902
+ "node": ">=20"
1903
+ }
1904
+ },
1905
+ "node_modules/@shikijs/vscode-textmate": {
1906
+ "version": "10.0.2",
1907
+ "resolved": "https://registry.npmjs.org/@shikijs/vscode-textmate/-/vscode-textmate-10.0.2.tgz",
1908
+ "integrity": "sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==",
1909
+ "license": "MIT"
1910
+ },
1911
+ "node_modules/@tybys/wasm-util": {
1912
+ "version": "0.10.3",
1913
+ "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.3.tgz",
1914
+ "integrity": "sha512-F3fo1MYrRJYL3zER0OUOmkutjr1Vp23m7OsSgp7nq4SP6OqX6C/56XFIPAl5bt3zaBRjmW7SGz3u/6LwFpYcOg==",
1915
+ "license": "MIT",
1916
+ "optional": true,
1917
+ "dependencies": {
1918
+ "tslib": "^2.4.0"
1919
+ }
1920
+ },
1921
+ "node_modules/@types/estree": {
1922
+ "version": "1.0.9",
1923
+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.9.tgz",
1924
+ "integrity": "sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==",
1925
+ "license": "MIT"
1926
+ },
1927
+ "node_modules/@types/estree-jsx": {
1928
+ "version": "1.0.5",
1929
+ "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.5.tgz",
1930
+ "integrity": "sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==",
1931
+ "license": "MIT",
1932
+ "dependencies": {
1933
+ "@types/estree": "*"
1934
+ }
1935
+ },
1936
+ "node_modules/@types/hast": {
1937
+ "version": "3.0.5",
1938
+ "resolved": "https://registry.npmjs.org/@types/hast/-/hast-3.0.5.tgz",
1939
+ "integrity": "sha512-rp/ezSWaD1m44dPKICGhiskI13nVr7qTloFwDa/IYkhhf5nzwP+zIQcIJh3WIFSBOy/H1PzB40jPjMDksN4F+g==",
1940
+ "license": "MIT",
1941
+ "dependencies": {
1942
+ "@types/unist": "*"
1943
+ }
1944
+ },
1945
+ "node_modules/@types/mdast": {
1946
+ "version": "4.0.4",
1947
+ "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz",
1948
+ "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==",
1949
+ "license": "MIT",
1950
+ "dependencies": {
1951
+ "@types/unist": "*"
1952
+ }
1953
+ },
1954
+ "node_modules/@types/nlcst": {
1955
+ "version": "2.0.3",
1956
+ "resolved": "https://registry.npmjs.org/@types/nlcst/-/nlcst-2.0.3.tgz",
1957
+ "integrity": "sha512-vSYNSDe6Ix3q+6Z7ri9lyWqgGhJTmzRjZRqyq15N0Z/1/UnVsno9G/N40NBijoYx2seFDIl0+B2mgAb9mezUCA==",
1958
+ "license": "MIT",
1959
+ "dependencies": {
1960
+ "@types/unist": "*"
1961
+ }
1962
+ },
1963
+ "node_modules/@types/unist": {
1964
+ "version": "3.0.3",
1965
+ "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz",
1966
+ "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==",
1967
+ "license": "MIT"
1968
+ },
1969
+ "node_modules/@ungap/structured-clone": {
1970
+ "version": "1.3.3",
1971
+ "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.3.tgz",
1972
+ "integrity": "sha512-60YRaenCQcVjYEKOcG824+DRGGIQ3VKErcBoAEDJZz5bKIs2ZG+X/H9Nk+Q6EVkwJk5QNApxbrc5QtBSwtrXAg==",
1973
+ "license": "ISC"
1974
+ },
1975
+ "node_modules/am-i-vibing": {
1976
+ "version": "0.4.0",
1977
+ "resolved": "https://registry.npmjs.org/am-i-vibing/-/am-i-vibing-0.4.0.tgz",
1978
+ "integrity": "sha512-MxT4XZL7pzLHpuvhDKdMaQHMGGkJDLluKBLsbstn+8wv9sWcFT6h+0ve9qkml95amVTZtZV83gQe2hY+ojgHLg==",
1979
+ "license": "MIT",
1980
+ "dependencies": {
1981
+ "process-ancestry": "^0.1.0"
1982
+ },
1983
+ "bin": {
1984
+ "am-i-vibing": "dist/cli.mjs"
1985
+ }
1986
+ },
1987
+ "node_modules/anymatch": {
1988
+ "version": "3.1.3",
1989
+ "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
1990
+ "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
1991
+ "license": "ISC",
1992
+ "dependencies": {
1993
+ "normalize-path": "^3.0.0",
1994
+ "picomatch": "^2.0.4"
1995
+ },
1996
+ "engines": {
1997
+ "node": ">= 8"
1998
+ }
1999
+ },
2000
+ "node_modules/anymatch/node_modules/picomatch": {
2001
+ "version": "2.3.2",
2002
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.2.tgz",
2003
+ "integrity": "sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==",
2004
+ "license": "MIT",
2005
+ "engines": {
2006
+ "node": ">=8.6"
2007
+ },
2008
+ "funding": {
2009
+ "url": "https://github.com/sponsors/jonschlinkert"
2010
+ }
2011
+ },
2012
+ "node_modules/argparse": {
2013
+ "version": "2.0.1",
2014
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
2015
+ "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
2016
+ "license": "Python-2.0"
2017
+ },
2018
+ "node_modules/aria-query": {
2019
+ "version": "5.3.2",
2020
+ "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.2.tgz",
2021
+ "integrity": "sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==",
2022
+ "license": "Apache-2.0",
2023
+ "engines": {
2024
+ "node": ">= 0.4"
2025
+ }
2026
+ },
2027
+ "node_modules/astro": {
2028
+ "version": "7.2.0",
2029
+ "resolved": "https://registry.npmjs.org/astro/-/astro-7.2.0.tgz",
2030
+ "integrity": "sha512-lLTYzx3fOvCmtwD3JVBLQcbORbIOW1/j0R+3IvJx/XKwMGrk7mFnF0BYSOeRiNw1qHUR5mdA6+hRnyvyDfqrWQ==",
2031
+ "license": "MIT",
2032
+ "dependencies": {
2033
+ "@astrojs/compiler-rs": "^0.3.2",
2034
+ "@astrojs/internal-helpers": "0.10.2",
2035
+ "@astrojs/markdown-satteri": "0.3.5",
2036
+ "@astrojs/telemetry": "3.3.3",
2037
+ "@capsizecss/unpack": "^4.0.0",
2038
+ "@clack/prompts": "^1.1.0",
2039
+ "@oslojs/encoding": "^1.1.0",
2040
+ "am-i-vibing": "^0.4.0",
2041
+ "aria-query": "^5.3.2",
2042
+ "axobject-query": "^4.1.0",
2043
+ "ci-info": "^4.4.0",
2044
+ "clsx": "^2.1.1",
2045
+ "common-ancestor-path": "^2.0.0",
2046
+ "cookie": "^2.0.1",
2047
+ "devalue": "^5.8.1",
2048
+ "diff": "^8.0.3",
2049
+ "dset": "^3.1.4",
2050
+ "es-module-lexer": "^2.0.0",
2051
+ "esbuild": "^0.28.0",
2052
+ "flattie": "^1.1.1",
2053
+ "fontace": "~0.4.1",
2054
+ "get-tsconfig": "5.0.0-beta.4",
2055
+ "github-slugger": "^2.0.0",
2056
+ "html-escaper": "3.0.3",
2057
+ "http-cache-semantics": "^4.2.0",
2058
+ "js-yaml": "^4.3.0",
2059
+ "jsonc-parser": "^3.3.1",
2060
+ "magic-string": "^1.0.0",
2061
+ "magicast": "^0.5.2",
2062
+ "mrmime": "^2.0.1",
2063
+ "neotraverse": "^1.0.1",
2064
+ "obug": "^2.1.1",
2065
+ "p-limit": "^7.3.0",
2066
+ "p-queue": "^9.1.0",
2067
+ "package-manager-detector": "^1.6.0",
2068
+ "piccolore": "^0.1.3",
2069
+ "picomatch": "^4.0.4",
2070
+ "semver": "^7.7.4",
2071
+ "shiki": "^4.0.2",
2072
+ "smol-toml": "^1.6.0",
2073
+ "svgo": "^4.0.1",
2074
+ "tinyclip": "^0.1.12",
2075
+ "tinyexec": "^1.0.4",
2076
+ "tinyglobby": "^0.2.15",
2077
+ "ultrahtml": "^1.6.0",
2078
+ "unifont": "~0.7.4",
2079
+ "unstorage": "^1.17.5",
2080
+ "vite": "^8.0.13",
2081
+ "vitefu": "^1.1.2",
2082
+ "xxhash-wasm": "^1.1.0",
2083
+ "yargs-parser": "^22.0.0",
2084
+ "zod": "^4.3.6"
2085
+ },
2086
+ "bin": {
2087
+ "astro": "bin/astro.mjs"
2088
+ },
2089
+ "engines": {
2090
+ "node": ">=22.12.0",
2091
+ "npm": ">=9.6.5",
2092
+ "pnpm": ">=7.1.0"
2093
+ },
2094
+ "funding": {
2095
+ "type": "opencollective",
2096
+ "url": "https://opencollective.com/astrodotbuild"
2097
+ },
2098
+ "optionalDependencies": {
2099
+ "sharp": "^0.34.0 || ^0.35.0"
2100
+ },
2101
+ "peerDependencies": {
2102
+ "@astrojs/markdown-remark": "7.2.2"
2103
+ },
2104
+ "peerDependenciesMeta": {
2105
+ "@astrojs/markdown-remark": {
2106
+ "optional": true
2107
+ }
2108
+ }
2109
+ },
2110
+ "node_modules/axobject-query": {
2111
+ "version": "4.1.0",
2112
+ "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-4.1.0.tgz",
2113
+ "integrity": "sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==",
2114
+ "license": "Apache-2.0",
2115
+ "engines": {
2116
+ "node": ">= 0.4"
2117
+ }
2118
+ },
2119
+ "node_modules/bail": {
2120
+ "version": "2.0.2",
2121
+ "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz",
2122
+ "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==",
2123
+ "license": "MIT",
2124
+ "funding": {
2125
+ "type": "github",
2126
+ "url": "https://github.com/sponsors/wooorm"
2127
+ }
2128
+ },
2129
+ "node_modules/boolbase": {
2130
+ "version": "1.0.0",
2131
+ "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz",
2132
+ "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==",
2133
+ "license": "ISC"
2134
+ },
2135
+ "node_modules/ccount": {
2136
+ "version": "2.0.1",
2137
+ "resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz",
2138
+ "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==",
2139
+ "license": "MIT",
2140
+ "funding": {
2141
+ "type": "github",
2142
+ "url": "https://github.com/sponsors/wooorm"
2143
+ }
2144
+ },
2145
+ "node_modules/character-entities-html4": {
2146
+ "version": "2.1.0",
2147
+ "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz",
2148
+ "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==",
2149
+ "license": "MIT",
2150
+ "funding": {
2151
+ "type": "github",
2152
+ "url": "https://github.com/sponsors/wooorm"
2153
+ }
2154
+ },
2155
+ "node_modules/character-entities-legacy": {
2156
+ "version": "3.0.0",
2157
+ "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz",
2158
+ "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==",
2159
+ "license": "MIT",
2160
+ "funding": {
2161
+ "type": "github",
2162
+ "url": "https://github.com/sponsors/wooorm"
2163
+ }
2164
+ },
2165
+ "node_modules/chokidar": {
2166
+ "version": "5.0.0",
2167
+ "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-5.0.0.tgz",
2168
+ "integrity": "sha512-TQMmc3w+5AxjpL8iIiwebF73dRDF4fBIieAqGn9RGCWaEVwQ6Fb2cGe31Yns0RRIzii5goJ1Y7xbMwo1TxMplw==",
2169
+ "license": "MIT",
2170
+ "dependencies": {
2171
+ "readdirp": "^5.0.0"
2172
+ },
2173
+ "engines": {
2174
+ "node": ">= 20.19.0"
2175
+ },
2176
+ "funding": {
2177
+ "url": "https://paulmillr.com/funding/"
2178
+ }
2179
+ },
2180
+ "node_modules/ci-info": {
2181
+ "version": "4.4.0",
2182
+ "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-4.4.0.tgz",
2183
+ "integrity": "sha512-77PSwercCZU2Fc4sX94eF8k8Pxte6JAwL4/ICZLFjJLqegs7kCuAsqqj/70NQF6TvDpgFjkubQB2FW2ZZddvQg==",
2184
+ "funding": [
2185
+ {
2186
+ "type": "github",
2187
+ "url": "https://github.com/sponsors/sibiraj-s"
2188
+ }
2189
+ ],
2190
+ "license": "MIT",
2191
+ "engines": {
2192
+ "node": ">=8"
2193
+ }
2194
+ },
2195
+ "node_modules/clsx": {
2196
+ "version": "2.1.1",
2197
+ "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz",
2198
+ "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==",
2199
+ "license": "MIT",
2200
+ "engines": {
2201
+ "node": ">=6"
2202
+ }
2203
+ },
2204
+ "node_modules/comma-separated-tokens": {
2205
+ "version": "2.0.3",
2206
+ "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz",
2207
+ "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==",
2208
+ "license": "MIT",
2209
+ "funding": {
2210
+ "type": "github",
2211
+ "url": "https://github.com/sponsors/wooorm"
2212
+ }
2213
+ },
2214
+ "node_modules/commander": {
2215
+ "version": "11.1.0",
2216
+ "resolved": "https://registry.npmjs.org/commander/-/commander-11.1.0.tgz",
2217
+ "integrity": "sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==",
2218
+ "license": "MIT",
2219
+ "engines": {
2220
+ "node": ">=16"
2221
+ }
2222
+ },
2223
+ "node_modules/common-ancestor-path": {
2224
+ "version": "2.0.0",
2225
+ "resolved": "https://registry.npmjs.org/common-ancestor-path/-/common-ancestor-path-2.0.0.tgz",
2226
+ "integrity": "sha512-dnN3ibLeoRf2HNC+OlCiNc5d2zxbLJXOtiZUudNFSXZrNSydxcCsSpRzXwfu7BBWCIfHPw+xTayeBvJCP/D8Ng==",
2227
+ "license": "BlueOak-1.0.0",
2228
+ "engines": {
2229
+ "node": ">= 18"
2230
+ }
2231
+ },
2232
+ "node_modules/cookie": {
2233
+ "version": "2.0.1",
2234
+ "resolved": "https://registry.npmjs.org/cookie/-/cookie-2.0.1.tgz",
2235
+ "integrity": "sha512-yuToqVvRrj6pfDXREyQAAv8SkAEk/8GS3jQRTiUMm66TVtBYmqQeoEjL2Lmq8Rpo6271vH76InTChTitEAm65w==",
2236
+ "license": "MIT",
2237
+ "engines": {
2238
+ "node": ">=22"
2239
+ },
2240
+ "funding": {
2241
+ "type": "opencollective",
2242
+ "url": "https://opencollective.com/express"
2243
+ }
2244
+ },
2245
+ "node_modules/cookie-es": {
2246
+ "version": "1.2.3",
2247
+ "resolved": "https://registry.npmjs.org/cookie-es/-/cookie-es-1.2.3.tgz",
2248
+ "integrity": "sha512-lXVyvUvrNXblMqzIRrxHb57UUVmqsSWlxqt3XIjCkUP0wDAf6uicO6KMbEgYrMNtEvWgWHwe42CKxPu9MYAnWw==",
2249
+ "license": "MIT"
2250
+ },
2251
+ "node_modules/crossws": {
2252
+ "version": "0.3.5",
2253
+ "resolved": "https://registry.npmjs.org/crossws/-/crossws-0.3.5.tgz",
2254
+ "integrity": "sha512-ojKiDvcmByhwa8YYqbQI/hg7MEU0NC03+pSdEq4ZUnZR9xXpwk7E43SMNGkn+JxJGPFtNvQ48+vV2p+P1ml5PA==",
2255
+ "license": "MIT",
2256
+ "dependencies": {
2257
+ "uncrypto": "^0.1.3"
2258
+ }
2259
+ },
2260
+ "node_modules/css-select": {
2261
+ "version": "5.2.2",
2262
+ "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.2.2.tgz",
2263
+ "integrity": "sha512-TizTzUddG/xYLA3NXodFM0fSbNizXjOKhqiQQwvhlspadZokn1KDy0NZFS0wuEubIYAV5/c1/lAr0TaaFXEXzw==",
2264
+ "license": "BSD-2-Clause",
2265
+ "dependencies": {
2266
+ "boolbase": "^1.0.0",
2267
+ "css-what": "^6.1.0",
2268
+ "domhandler": "^5.0.2",
2269
+ "domutils": "^3.0.1",
2270
+ "nth-check": "^2.0.1"
2271
+ },
2272
+ "funding": {
2273
+ "url": "https://github.com/sponsors/fb55"
2274
+ }
2275
+ },
2276
+ "node_modules/css-tree": {
2277
+ "version": "3.2.1",
2278
+ "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-3.2.1.tgz",
2279
+ "integrity": "sha512-X7sjQzceUhu1u7Y/ylrRZFU2FS6LRiFVp6rKLPg23y3x3c3DOKAwuXGDp+PAGjh6CSnCjYeAul8pcT8bAl+lSA==",
2280
+ "license": "MIT",
2281
+ "dependencies": {
2282
+ "mdn-data": "2.27.1",
2283
+ "source-map-js": "^1.2.1"
2284
+ },
2285
+ "engines": {
2286
+ "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0"
2287
+ }
2288
+ },
2289
+ "node_modules/css-what": {
2290
+ "version": "6.2.2",
2291
+ "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.2.2.tgz",
2292
+ "integrity": "sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==",
2293
+ "license": "BSD-2-Clause",
2294
+ "engines": {
2295
+ "node": ">= 6"
2296
+ },
2297
+ "funding": {
2298
+ "url": "https://github.com/sponsors/fb55"
2299
+ }
2300
+ },
2301
+ "node_modules/csso": {
2302
+ "version": "5.0.5",
2303
+ "resolved": "https://registry.npmjs.org/csso/-/csso-5.0.5.tgz",
2304
+ "integrity": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==",
2305
+ "license": "MIT",
2306
+ "dependencies": {
2307
+ "css-tree": "~2.2.0"
2308
+ },
2309
+ "engines": {
2310
+ "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0",
2311
+ "npm": ">=7.0.0"
2312
+ }
2313
+ },
2314
+ "node_modules/csso/node_modules/css-tree": {
2315
+ "version": "2.2.1",
2316
+ "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.2.1.tgz",
2317
+ "integrity": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==",
2318
+ "license": "MIT",
2319
+ "dependencies": {
2320
+ "mdn-data": "2.0.28",
2321
+ "source-map-js": "^1.0.1"
2322
+ },
2323
+ "engines": {
2324
+ "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0",
2325
+ "npm": ">=7.0.0"
2326
+ }
2327
+ },
2328
+ "node_modules/csso/node_modules/mdn-data": {
2329
+ "version": "2.0.28",
2330
+ "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.28.tgz",
2331
+ "integrity": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==",
2332
+ "license": "CC0-1.0"
2333
+ },
2334
+ "node_modules/defu": {
2335
+ "version": "6.1.7",
2336
+ "resolved": "https://registry.npmjs.org/defu/-/defu-6.1.7.tgz",
2337
+ "integrity": "sha512-7z22QmUWiQ/2d0KkdYmANbRUVABpZ9SNYyH5vx6PZ+nE5bcC0l7uFvEfHlyld/HcGBFTL536ClDt3DEcSlEJAQ==",
2338
+ "license": "MIT"
2339
+ },
2340
+ "node_modules/dequal": {
2341
+ "version": "2.0.3",
2342
+ "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz",
2343
+ "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==",
2344
+ "license": "MIT",
2345
+ "engines": {
2346
+ "node": ">=6"
2347
+ }
2348
+ },
2349
+ "node_modules/destr": {
2350
+ "version": "2.0.5",
2351
+ "resolved": "https://registry.npmjs.org/destr/-/destr-2.0.5.tgz",
2352
+ "integrity": "sha512-ugFTXCtDZunbzasqBxrK93Ik/DRYsO6S/fedkWEMKqt04xZ4csmnmwGDBAb07QWNaGMAmnTIemsYZCksjATwsA==",
2353
+ "license": "MIT"
2354
+ },
2355
+ "node_modules/detect-libc": {
2356
+ "version": "2.1.2",
2357
+ "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
2358
+ "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
2359
+ "license": "Apache-2.0",
2360
+ "engines": {
2361
+ "node": ">=8"
2362
+ }
2363
+ },
2364
+ "node_modules/devalue": {
2365
+ "version": "5.9.0",
2366
+ "resolved": "https://registry.npmjs.org/devalue/-/devalue-5.9.0.tgz",
2367
+ "integrity": "sha512-RWrqdArjvPbsATEhOPUo6Wndc/iWnkWKlhIrdlF3zMMYo/c3CVtoaVAyLtWxz5h8nSlkHzxnzV2uLydPXmtF+A==",
2368
+ "license": "MIT"
2369
+ },
2370
+ "node_modules/devlop": {
2371
+ "version": "1.1.0",
2372
+ "resolved": "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz",
2373
+ "integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==",
2374
+ "license": "MIT",
2375
+ "dependencies": {
2376
+ "dequal": "^2.0.0"
2377
+ },
2378
+ "funding": {
2379
+ "type": "github",
2380
+ "url": "https://github.com/sponsors/wooorm"
2381
+ }
2382
+ },
2383
+ "node_modules/diff": {
2384
+ "version": "8.0.4",
2385
+ "resolved": "https://registry.npmjs.org/diff/-/diff-8.0.4.tgz",
2386
+ "integrity": "sha512-DPi0FmjiSU5EvQV0++GFDOJ9ASQUVFh5kD+OzOnYdi7n3Wpm9hWWGfB/O2blfHcMVTL5WkQXSnRiK9makhrcnw==",
2387
+ "license": "BSD-3-Clause",
2388
+ "engines": {
2389
+ "node": ">=0.3.1"
2390
+ }
2391
+ },
2392
+ "node_modules/dom-serializer": {
2393
+ "version": "2.0.0",
2394
+ "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz",
2395
+ "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==",
2396
+ "license": "MIT",
2397
+ "dependencies": {
2398
+ "domelementtype": "^2.3.0",
2399
+ "domhandler": "^5.0.2",
2400
+ "entities": "^4.2.0"
2401
+ },
2402
+ "funding": {
2403
+ "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1"
2404
+ }
2405
+ },
2406
+ "node_modules/dom-serializer/node_modules/entities": {
2407
+ "version": "4.5.0",
2408
+ "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz",
2409
+ "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==",
2410
+ "license": "BSD-2-Clause",
2411
+ "engines": {
2412
+ "node": ">=0.12"
2413
+ },
2414
+ "funding": {
2415
+ "url": "https://github.com/fb55/entities?sponsor=1"
2416
+ }
2417
+ },
2418
+ "node_modules/domelementtype": {
2419
+ "version": "2.3.0",
2420
+ "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz",
2421
+ "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==",
2422
+ "funding": [
2423
+ {
2424
+ "type": "github",
2425
+ "url": "https://github.com/sponsors/fb55"
2426
+ }
2427
+ ],
2428
+ "license": "BSD-2-Clause"
2429
+ },
2430
+ "node_modules/domhandler": {
2431
+ "version": "5.0.3",
2432
+ "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz",
2433
+ "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==",
2434
+ "license": "BSD-2-Clause",
2435
+ "dependencies": {
2436
+ "domelementtype": "^2.3.0"
2437
+ },
2438
+ "engines": {
2439
+ "node": ">= 4"
2440
+ },
2441
+ "funding": {
2442
+ "url": "https://github.com/fb55/domhandler?sponsor=1"
2443
+ }
2444
+ },
2445
+ "node_modules/domutils": {
2446
+ "version": "3.2.2",
2447
+ "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.2.2.tgz",
2448
+ "integrity": "sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==",
2449
+ "license": "BSD-2-Clause",
2450
+ "dependencies": {
2451
+ "dom-serializer": "^2.0.0",
2452
+ "domelementtype": "^2.3.0",
2453
+ "domhandler": "^5.0.3"
2454
+ },
2455
+ "funding": {
2456
+ "url": "https://github.com/fb55/domutils?sponsor=1"
2457
+ }
2458
+ },
2459
+ "node_modules/dset": {
2460
+ "version": "3.1.4",
2461
+ "resolved": "https://registry.npmjs.org/dset/-/dset-3.1.4.tgz",
2462
+ "integrity": "sha512-2QF/g9/zTaPDc3BjNcVTGoBbXBgYfMTTceLaYcFJ/W9kggFUkhxD/hMEeuLKbugyef9SqAx8cpgwlIP/jinUTA==",
2463
+ "license": "MIT",
2464
+ "engines": {
2465
+ "node": ">=4"
2466
+ }
2467
+ },
2468
+ "node_modules/embla-carousel": {
2469
+ "version": "8.6.0",
2470
+ "resolved": "https://registry.npmjs.org/embla-carousel/-/embla-carousel-8.6.0.tgz",
2471
+ "integrity": "sha512-SjWyZBHJPbqxHOzckOfo8lHisEaJWmwd23XppYFYVh10bU66/Pn5tkVkbkCMZVdbUE5eTCI2nD8OyIP4Z+uwkA==",
2472
+ "license": "MIT"
2473
+ },
2474
+ "node_modules/entities": {
2475
+ "version": "6.0.1",
2476
+ "resolved": "https://registry.npmjs.org/entities/-/entities-6.0.1.tgz",
2477
+ "integrity": "sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==",
2478
+ "license": "BSD-2-Clause",
2479
+ "engines": {
2480
+ "node": ">=0.12"
2481
+ },
2482
+ "funding": {
2483
+ "url": "https://github.com/fb55/entities?sponsor=1"
2484
+ }
2485
+ },
2486
+ "node_modules/es-module-lexer": {
2487
+ "version": "2.3.1",
2488
+ "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-2.3.1.tgz",
2489
+ "integrity": "sha512-shc1dbU90Yl/xq1QrC7QRtfcwURZuVRfPhZbDoldJ1cn1gzDvBaBWlv0eFolj5+0znnPJz5TXLxsN77X/12KTA==",
2490
+ "license": "MIT"
2491
+ },
2492
+ "node_modules/esbuild": {
2493
+ "version": "0.28.1",
2494
+ "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.28.1.tgz",
2495
+ "integrity": "sha512-HrJrvZv5ayxBzPfwphOoNzkzOIIlifzk0KJrGK2c8R4+LKpMtpYLQeUdjnwjWv/LZlkH2laZk+4w78pi99D4Vw==",
2496
+ "hasInstallScript": true,
2497
+ "license": "MIT",
2498
+ "bin": {
2499
+ "esbuild": "bin/esbuild"
2500
+ },
2501
+ "engines": {
2502
+ "node": ">=18"
2503
+ },
2504
+ "optionalDependencies": {
2505
+ "@esbuild/aix-ppc64": "0.28.1",
2506
+ "@esbuild/android-arm": "0.28.1",
2507
+ "@esbuild/android-arm64": "0.28.1",
2508
+ "@esbuild/android-x64": "0.28.1",
2509
+ "@esbuild/darwin-arm64": "0.28.1",
2510
+ "@esbuild/darwin-x64": "0.28.1",
2511
+ "@esbuild/freebsd-arm64": "0.28.1",
2512
+ "@esbuild/freebsd-x64": "0.28.1",
2513
+ "@esbuild/linux-arm": "0.28.1",
2514
+ "@esbuild/linux-arm64": "0.28.1",
2515
+ "@esbuild/linux-ia32": "0.28.1",
2516
+ "@esbuild/linux-loong64": "0.28.1",
2517
+ "@esbuild/linux-mips64el": "0.28.1",
2518
+ "@esbuild/linux-ppc64": "0.28.1",
2519
+ "@esbuild/linux-riscv64": "0.28.1",
2520
+ "@esbuild/linux-s390x": "0.28.1",
2521
+ "@esbuild/linux-x64": "0.28.1",
2522
+ "@esbuild/netbsd-arm64": "0.28.1",
2523
+ "@esbuild/netbsd-x64": "0.28.1",
2524
+ "@esbuild/openbsd-arm64": "0.28.1",
2525
+ "@esbuild/openbsd-x64": "0.28.1",
2526
+ "@esbuild/openharmony-arm64": "0.28.1",
2527
+ "@esbuild/sunos-x64": "0.28.1",
2528
+ "@esbuild/win32-arm64": "0.28.1",
2529
+ "@esbuild/win32-ia32": "0.28.1",
2530
+ "@esbuild/win32-x64": "0.28.1"
2531
+ }
2532
+ },
2533
+ "node_modules/eventemitter3": {
2534
+ "version": "5.0.4",
2535
+ "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.4.tgz",
2536
+ "integrity": "sha512-mlsTRyGaPBjPedk6Bvw+aqbsXDtoAyAzm5MO7JgU+yVRyMQ5O8bD4Kcci7BS85f93veegeCPkL8R4GLClnjLFw==",
2537
+ "license": "MIT"
2538
+ },
2539
+ "node_modules/extend": {
2540
+ "version": "3.0.2",
2541
+ "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
2542
+ "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==",
2543
+ "license": "MIT"
2544
+ },
2545
+ "node_modules/fast-string-truncated-width": {
2546
+ "version": "3.0.3",
2547
+ "resolved": "https://registry.npmjs.org/fast-string-truncated-width/-/fast-string-truncated-width-3.0.3.tgz",
2548
+ "integrity": "sha512-0jjjIEL6+0jag3l2XWWizO64/aZVtpiGE3t0Zgqxv0DPuxiMjvB3M24fCyhZUO4KomJQPj3LTSUnDP3GpdwC0g==",
2549
+ "license": "MIT"
2550
+ },
2551
+ "node_modules/fast-string-width": {
2552
+ "version": "3.0.2",
2553
+ "resolved": "https://registry.npmjs.org/fast-string-width/-/fast-string-width-3.0.2.tgz",
2554
+ "integrity": "sha512-gX8LrtNEI5hq8DVUfRQMbr5lpaS4nMIWV+7XEbXk2b8kiQIizgnlr12B4dA3ZEx3308ze0O4Q1R+cHts8kyUJg==",
2555
+ "license": "MIT",
2556
+ "dependencies": {
2557
+ "fast-string-truncated-width": "^3.0.2"
2558
+ }
2559
+ },
2560
+ "node_modules/fast-wrap-ansi": {
2561
+ "version": "0.2.2",
2562
+ "resolved": "https://registry.npmjs.org/fast-wrap-ansi/-/fast-wrap-ansi-0.2.2.tgz",
2563
+ "integrity": "sha512-7F2Fl+TjRSenLqlU3UjSH0iyqopqoZIu7eZVpEirP2g1GtWa2G/ecEmBdgz31+Mxr+ELclgg6sokpSFIQiZ02Q==",
2564
+ "license": "MIT",
2565
+ "dependencies": {
2566
+ "fast-string-width": "^3.0.2"
2567
+ }
2568
+ },
2569
+ "node_modules/fdir": {
2570
+ "version": "6.5.0",
2571
+ "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
2572
+ "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
2573
+ "license": "MIT",
2574
+ "engines": {
2575
+ "node": ">=12.0.0"
2576
+ },
2577
+ "peerDependencies": {
2578
+ "picomatch": "^3 || ^4"
2579
+ },
2580
+ "peerDependenciesMeta": {
2581
+ "picomatch": {
2582
+ "optional": true
2583
+ }
2584
+ }
2585
+ },
2586
+ "node_modules/flattie": {
2587
+ "version": "1.1.1",
2588
+ "resolved": "https://registry.npmjs.org/flattie/-/flattie-1.1.1.tgz",
2589
+ "integrity": "sha512-9UbaD6XdAL97+k/n+N7JwX46K/M6Zc6KcFYskrYL8wbBV/Uyk0CTAMY0VT+qiK5PM7AIc9aTWYtq65U7T+aCNQ==",
2590
+ "license": "MIT",
2591
+ "engines": {
2592
+ "node": ">=8"
2593
+ }
2594
+ },
2595
+ "node_modules/fontace": {
2596
+ "version": "0.4.1",
2597
+ "resolved": "https://registry.npmjs.org/fontace/-/fontace-0.4.1.tgz",
2598
+ "integrity": "sha512-lDMvbAzSnHmbYMTEld5qdtvNH2/pWpICOqpean9IgC7vUbUJc3k+k5Dokp85CegamqQpFbXf0rAVkbzpyTA8aw==",
2599
+ "license": "MIT",
2600
+ "dependencies": {
2601
+ "fontkitten": "^1.0.2"
2602
+ }
2603
+ },
2604
+ "node_modules/fontkitten": {
2605
+ "version": "1.0.3",
2606
+ "resolved": "https://registry.npmjs.org/fontkitten/-/fontkitten-1.0.3.tgz",
2607
+ "integrity": "sha512-Wp1zXWPVUPBmfoa3Cqc9ctaKuzKAV6uLstRqlR56kSjplf5uAce+qeyYym7F+PHbGTk+tCEdkCW6RD7DX/gBZw==",
2608
+ "license": "MIT",
2609
+ "dependencies": {
2610
+ "tiny-inflate": "^1.0.3"
2611
+ },
2612
+ "engines": {
2613
+ "node": ">=20"
2614
+ }
2615
+ },
2616
+ "node_modules/fsevents": {
2617
+ "version": "2.3.3",
2618
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
2619
+ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
2620
+ "hasInstallScript": true,
2621
+ "license": "MIT",
2622
+ "optional": true,
2623
+ "os": [
2624
+ "darwin"
2625
+ ],
2626
+ "engines": {
2627
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
2628
+ }
2629
+ },
2630
+ "node_modules/get-tsconfig": {
2631
+ "version": "5.0.0-beta.4",
2632
+ "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-5.0.0-beta.4.tgz",
2633
+ "integrity": "sha512-7nF7C9fIPFEMHgEMEfgIlO9wDdZ8CyHw27rWciFZfHvHDReIiPhsYuzPRXsfvBCqFy1l8RRyyWV7QLM+ZhUJsQ==",
2634
+ "license": "MIT",
2635
+ "dependencies": {
2636
+ "resolve-pkg-maps": "^1.0.0"
2637
+ },
2638
+ "engines": {
2639
+ "node": ">=20.20.0"
2640
+ },
2641
+ "funding": {
2642
+ "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1"
2643
+ }
2644
+ },
2645
+ "node_modules/github-slugger": {
2646
+ "version": "2.0.0",
2647
+ "resolved": "https://registry.npmjs.org/github-slugger/-/github-slugger-2.0.0.tgz",
2648
+ "integrity": "sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==",
2649
+ "license": "ISC"
2650
+ },
2651
+ "node_modules/h3": {
2652
+ "version": "1.15.11",
2653
+ "resolved": "https://registry.npmjs.org/h3/-/h3-1.15.11.tgz",
2654
+ "integrity": "sha512-L3THSe2MPeBwgIZVSH5zLdBBU90TOxarvhK9d04IDY2AmVS8j2Jz2LIWtwsGOU3lu2I5jCN7FNvVfY2+XyF+mg==",
2655
+ "license": "MIT",
2656
+ "dependencies": {
2657
+ "cookie-es": "^1.2.3",
2658
+ "crossws": "^0.3.5",
2659
+ "defu": "^6.1.6",
2660
+ "destr": "^2.0.5",
2661
+ "iron-webcrypto": "^1.2.1",
2662
+ "node-mock-http": "^1.0.4",
2663
+ "radix3": "^1.1.2",
2664
+ "ufo": "^1.6.3",
2665
+ "uncrypto": "^0.1.3"
2666
+ }
2667
+ },
2668
+ "node_modules/hast-util-from-html": {
2669
+ "version": "2.0.3",
2670
+ "resolved": "https://registry.npmjs.org/hast-util-from-html/-/hast-util-from-html-2.0.3.tgz",
2671
+ "integrity": "sha512-CUSRHXyKjzHov8yKsQjGOElXy/3EKpyX56ELnkHH34vDVw1N1XSQ1ZcAvTyAPtGqLTuKP/uxM+aLkSPqF/EtMw==",
2672
+ "license": "MIT",
2673
+ "dependencies": {
2674
+ "@types/hast": "^3.0.0",
2675
+ "devlop": "^1.1.0",
2676
+ "hast-util-from-parse5": "^8.0.0",
2677
+ "parse5": "^7.0.0",
2678
+ "vfile": "^6.0.0",
2679
+ "vfile-message": "^4.0.0"
2680
+ },
2681
+ "funding": {
2682
+ "type": "opencollective",
2683
+ "url": "https://opencollective.com/unified"
2684
+ }
2685
+ },
2686
+ "node_modules/hast-util-from-parse5": {
2687
+ "version": "8.0.3",
2688
+ "resolved": "https://registry.npmjs.org/hast-util-from-parse5/-/hast-util-from-parse5-8.0.3.tgz",
2689
+ "integrity": "sha512-3kxEVkEKt0zvcZ3hCRYI8rqrgwtlIOFMWkbclACvjlDw8Li9S2hk/d51OI0nr/gIpdMHNepwgOKqZ/sy0Clpyg==",
2690
+ "license": "MIT",
2691
+ "dependencies": {
2692
+ "@types/hast": "^3.0.0",
2693
+ "@types/unist": "^3.0.0",
2694
+ "devlop": "^1.0.0",
2695
+ "hastscript": "^9.0.0",
2696
+ "property-information": "^7.0.0",
2697
+ "vfile": "^6.0.0",
2698
+ "vfile-location": "^5.0.0",
2699
+ "web-namespaces": "^2.0.0"
2700
+ },
2701
+ "funding": {
2702
+ "type": "opencollective",
2703
+ "url": "https://opencollective.com/unified"
2704
+ }
2705
+ },
2706
+ "node_modules/hast-util-parse-selector": {
2707
+ "version": "4.0.0",
2708
+ "resolved": "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-4.0.0.tgz",
2709
+ "integrity": "sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==",
2710
+ "license": "MIT",
2711
+ "dependencies": {
2712
+ "@types/hast": "^3.0.0"
2713
+ },
2714
+ "funding": {
2715
+ "type": "opencollective",
2716
+ "url": "https://opencollective.com/unified"
2717
+ }
2718
+ },
2719
+ "node_modules/hast-util-to-html": {
2720
+ "version": "9.0.5",
2721
+ "resolved": "https://registry.npmjs.org/hast-util-to-html/-/hast-util-to-html-9.0.5.tgz",
2722
+ "integrity": "sha512-OguPdidb+fbHQSU4Q4ZiLKnzWo8Wwsf5bZfbvu7//a9oTYoqD/fWpe96NuHkoS9h0ccGOTe0C4NGXdtS0iObOw==",
2723
+ "license": "MIT",
2724
+ "dependencies": {
2725
+ "@types/hast": "^3.0.0",
2726
+ "@types/unist": "^3.0.0",
2727
+ "ccount": "^2.0.0",
2728
+ "comma-separated-tokens": "^2.0.0",
2729
+ "hast-util-whitespace": "^3.0.0",
2730
+ "html-void-elements": "^3.0.0",
2731
+ "mdast-util-to-hast": "^13.0.0",
2732
+ "property-information": "^7.0.0",
2733
+ "space-separated-tokens": "^2.0.0",
2734
+ "stringify-entities": "^4.0.0",
2735
+ "zwitch": "^2.0.4"
2736
+ },
2737
+ "funding": {
2738
+ "type": "opencollective",
2739
+ "url": "https://opencollective.com/unified"
2740
+ }
2741
+ },
2742
+ "node_modules/hast-util-whitespace": {
2743
+ "version": "3.0.0",
2744
+ "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz",
2745
+ "integrity": "sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==",
2746
+ "license": "MIT",
2747
+ "dependencies": {
2748
+ "@types/hast": "^3.0.0"
2749
+ },
2750
+ "funding": {
2751
+ "type": "opencollective",
2752
+ "url": "https://opencollective.com/unified"
2753
+ }
2754
+ },
2755
+ "node_modules/hastscript": {
2756
+ "version": "9.0.1",
2757
+ "resolved": "https://registry.npmjs.org/hastscript/-/hastscript-9.0.1.tgz",
2758
+ "integrity": "sha512-g7df9rMFX/SPi34tyGCyUBREQoKkapwdY/T04Qn9TDWfHhAYt4/I0gMVirzK5wEzeUqIjEB+LXC/ypb7Aqno5w==",
2759
+ "license": "MIT",
2760
+ "dependencies": {
2761
+ "@types/hast": "^3.0.0",
2762
+ "comma-separated-tokens": "^2.0.0",
2763
+ "hast-util-parse-selector": "^4.0.0",
2764
+ "property-information": "^7.0.0",
2765
+ "space-separated-tokens": "^2.0.0"
2766
+ },
2767
+ "funding": {
2768
+ "type": "opencollective",
2769
+ "url": "https://opencollective.com/unified"
2770
+ }
2771
+ },
2772
+ "node_modules/html-escaper": {
2773
+ "version": "3.0.3",
2774
+ "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-3.0.3.tgz",
2775
+ "integrity": "sha512-RuMffC89BOWQoY0WKGpIhn5gX3iI54O6nRA0yC124NYVtzjmFWBIiFd8M0x+ZdX0P9R4lADg1mgP8C7PxGOWuQ==",
2776
+ "license": "MIT"
2777
+ },
2778
+ "node_modules/html-void-elements": {
2779
+ "version": "3.0.0",
2780
+ "resolved": "https://registry.npmjs.org/html-void-elements/-/html-void-elements-3.0.0.tgz",
2781
+ "integrity": "sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==",
2782
+ "license": "MIT",
2783
+ "funding": {
2784
+ "type": "github",
2785
+ "url": "https://github.com/sponsors/wooorm"
2786
+ }
2787
+ },
2788
+ "node_modules/http-cache-semantics": {
2789
+ "version": "4.2.0",
2790
+ "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.2.0.tgz",
2791
+ "integrity": "sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==",
2792
+ "license": "BSD-2-Clause"
2793
+ },
2794
+ "node_modules/iron-webcrypto": {
2795
+ "version": "1.2.1",
2796
+ "resolved": "https://registry.npmjs.org/iron-webcrypto/-/iron-webcrypto-1.2.1.tgz",
2797
+ "integrity": "sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==",
2798
+ "license": "MIT",
2799
+ "funding": {
2800
+ "url": "https://github.com/sponsors/brc-dd"
2801
+ }
2802
+ },
2803
+ "node_modules/is-docker": {
2804
+ "version": "4.0.0",
2805
+ "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-4.0.0.tgz",
2806
+ "integrity": "sha512-LHE+wROyG/Y/0ZnbktRCoTix2c1RhgWaZraMZ8o1Q7zCh0VSrICJQO5oqIIISrcSBtrXv0o233w1IYwsWCjTzA==",
2807
+ "license": "MIT",
2808
+ "bin": {
2809
+ "is-docker": "cli.js"
2810
+ },
2811
+ "engines": {
2812
+ "node": ">=20"
2813
+ },
2814
+ "funding": {
2815
+ "url": "https://github.com/sponsors/sindresorhus"
2816
+ }
2817
+ },
2818
+ "node_modules/is-plain-obj": {
2819
+ "version": "4.1.0",
2820
+ "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz",
2821
+ "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==",
2822
+ "license": "MIT",
2823
+ "engines": {
2824
+ "node": ">=12"
2825
+ },
2826
+ "funding": {
2827
+ "url": "https://github.com/sponsors/sindresorhus"
2828
+ }
2829
+ },
2830
+ "node_modules/js-yaml": {
2831
+ "version": "4.3.1",
2832
+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.3.1.tgz",
2833
+ "integrity": "sha512-CY6crGq313MX8GkwvB7tzgp99vjQxY1++5y10/BKN/GUfHqWaOGQMNZkBvqSzsZKWk/ijwHlWzzkLulsGHhjWQ==",
2834
+ "funding": [
2835
+ {
2836
+ "type": "github",
2837
+ "url": "https://github.com/sponsors/puzrin"
2838
+ },
2839
+ {
2840
+ "type": "github",
2841
+ "url": "https://github.com/sponsors/nodeca"
2842
+ }
2843
+ ],
2844
+ "license": "MIT",
2845
+ "dependencies": {
2846
+ "argparse": "^2.0.1"
2847
+ },
2848
+ "bin": {
2849
+ "js-yaml": "bin/js-yaml.js"
2850
+ }
2851
+ },
2852
+ "node_modules/jsonc-parser": {
2853
+ "version": "3.3.1",
2854
+ "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.3.1.tgz",
2855
+ "integrity": "sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==",
2856
+ "license": "MIT"
2857
+ },
2858
+ "node_modules/lightningcss": {
2859
+ "version": "1.33.0",
2860
+ "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.33.0.tgz",
2861
+ "integrity": "sha512-WkUDrojuJs0xkgGf2udWxa3yGBRxPtxUkB79i6aCZLRgc7PM8fZe9TosfPDcvEpQZbuFASnHYmRLBLUbmLOIIA==",
2862
+ "license": "MPL-2.0",
2863
+ "dependencies": {
2864
+ "detect-libc": "^2.0.3"
2865
+ },
2866
+ "engines": {
2867
+ "node": ">= 12.0.0"
2868
+ },
2869
+ "funding": {
2870
+ "type": "opencollective",
2871
+ "url": "https://opencollective.com/parcel"
2872
+ },
2873
+ "optionalDependencies": {
2874
+ "lightningcss-android-arm64": "1.33.0",
2875
+ "lightningcss-darwin-arm64": "1.33.0",
2876
+ "lightningcss-darwin-x64": "1.33.0",
2877
+ "lightningcss-freebsd-x64": "1.33.0",
2878
+ "lightningcss-linux-arm-gnueabihf": "1.33.0",
2879
+ "lightningcss-linux-arm64-gnu": "1.33.0",
2880
+ "lightningcss-linux-arm64-musl": "1.33.0",
2881
+ "lightningcss-linux-x64-gnu": "1.33.0",
2882
+ "lightningcss-linux-x64-musl": "1.33.0",
2883
+ "lightningcss-win32-arm64-msvc": "1.33.0",
2884
+ "lightningcss-win32-x64-msvc": "1.33.0"
2885
+ }
2886
+ },
2887
+ "node_modules/lightningcss-android-arm64": {
2888
+ "version": "1.33.0",
2889
+ "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.33.0.tgz",
2890
+ "integrity": "sha512-gEpRTalKdosp4Bb8qWtc2iOgE5SeIHlpS1up9bFq2wAyYhl1UdTObYiHe98zEM9SQvSoqQZ1IQD0JNpg3Ml5pg==",
2891
+ "cpu": [
2892
+ "arm64"
2893
+ ],
2894
+ "license": "MPL-2.0",
2895
+ "optional": true,
2896
+ "os": [
2897
+ "android"
2898
+ ],
2899
+ "engines": {
2900
+ "node": ">= 12.0.0"
2901
+ },
2902
+ "funding": {
2903
+ "type": "opencollective",
2904
+ "url": "https://opencollective.com/parcel"
2905
+ }
2906
+ },
2907
+ "node_modules/lightningcss-darwin-arm64": {
2908
+ "version": "1.33.0",
2909
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.33.0.tgz",
2910
+ "integrity": "sha512-Sciaz8eenNTKn9b3t7+xr0ipTp9YxKQY4npwQ3mrRuL0BAVHBLyZxofhaKBAVtzmtRZ/zTyo0/to4B1uWG/Djg==",
2911
+ "cpu": [
2912
+ "arm64"
2913
+ ],
2914
+ "license": "MPL-2.0",
2915
+ "optional": true,
2916
+ "os": [
2917
+ "darwin"
2918
+ ],
2919
+ "engines": {
2920
+ "node": ">= 12.0.0"
2921
+ },
2922
+ "funding": {
2923
+ "type": "opencollective",
2924
+ "url": "https://opencollective.com/parcel"
2925
+ }
2926
+ },
2927
+ "node_modules/lightningcss-darwin-x64": {
2928
+ "version": "1.33.0",
2929
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.33.0.tgz",
2930
+ "integrity": "sha512-Z5UPAxzrjlWNNyGy6i65cJzzvgJ5D3T6wMvs+gWpY9d7qRhANrxqAp6LhxIgZhWEw18RfJTGcRxjuLIBr+m8XQ==",
2931
+ "cpu": [
2932
+ "x64"
2933
+ ],
2934
+ "license": "MPL-2.0",
2935
+ "optional": true,
2936
+ "os": [
2937
+ "darwin"
2938
+ ],
2939
+ "engines": {
2940
+ "node": ">= 12.0.0"
2941
+ },
2942
+ "funding": {
2943
+ "type": "opencollective",
2944
+ "url": "https://opencollective.com/parcel"
2945
+ }
2946
+ },
2947
+ "node_modules/lightningcss-freebsd-x64": {
2948
+ "version": "1.33.0",
2949
+ "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.33.0.tgz",
2950
+ "integrity": "sha512-QQM/Ti/hQajJwCY+RiWuCZ9sdtI/XQk7nDK5vC8kkdwixezOlDgvDx7+RT+QjK6FcFT4MpsuoBnHIo/O3StRRg==",
2951
+ "cpu": [
2952
+ "x64"
2953
+ ],
2954
+ "license": "MPL-2.0",
2955
+ "optional": true,
2956
+ "os": [
2957
+ "freebsd"
2958
+ ],
2959
+ "engines": {
2960
+ "node": ">= 12.0.0"
2961
+ },
2962
+ "funding": {
2963
+ "type": "opencollective",
2964
+ "url": "https://opencollective.com/parcel"
2965
+ }
2966
+ },
2967
+ "node_modules/lightningcss-linux-arm-gnueabihf": {
2968
+ "version": "1.33.0",
2969
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.33.0.tgz",
2970
+ "integrity": "sha512-N7FVBe6iS24MlM6R/4RBTxGhQheZGs7tiQ9U32UtF75NzP5Q7xWPRqLBCKxlRQRk3rY1jCIPLzx7WzOhuUIRLQ==",
2971
+ "cpu": [
2972
+ "arm"
2973
+ ],
2974
+ "license": "MPL-2.0",
2975
+ "optional": true,
2976
+ "os": [
2977
+ "linux"
2978
+ ],
2979
+ "engines": {
2980
+ "node": ">= 12.0.0"
2981
+ },
2982
+ "funding": {
2983
+ "type": "opencollective",
2984
+ "url": "https://opencollective.com/parcel"
2985
+ }
2986
+ },
2987
+ "node_modules/lightningcss-linux-arm64-gnu": {
2988
+ "version": "1.33.0",
2989
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.33.0.tgz",
2990
+ "integrity": "sha512-j2v/itmy4HlNxlc6voKXYgBqNi0Ng2LShg4z7GufpEgs05P+2suBVyi9I6YHq5uoVFx9ETin3eCEhLVyXGQnKg==",
2991
+ "cpu": [
2992
+ "arm64"
2993
+ ],
2994
+ "libc": [
2995
+ "glibc"
2996
+ ],
2997
+ "license": "MPL-2.0",
2998
+ "optional": true,
2999
+ "os": [
3000
+ "linux"
3001
+ ],
3002
+ "engines": {
3003
+ "node": ">= 12.0.0"
3004
+ },
3005
+ "funding": {
3006
+ "type": "opencollective",
3007
+ "url": "https://opencollective.com/parcel"
3008
+ }
3009
+ },
3010
+ "node_modules/lightningcss-linux-arm64-musl": {
3011
+ "version": "1.33.0",
3012
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.33.0.tgz",
3013
+ "integrity": "sha512-yiO5ROMuYQgXbC60yjZU5CYSFZGKXL0HFATXt9mHJn1+zW55oCtMI9NfcVhYLMFDL7gV7oBPon/EmMMGg2OvtQ==",
3014
+ "cpu": [
3015
+ "arm64"
3016
+ ],
3017
+ "libc": [
3018
+ "musl"
3019
+ ],
3020
+ "license": "MPL-2.0",
3021
+ "optional": true,
3022
+ "os": [
3023
+ "linux"
3024
+ ],
3025
+ "engines": {
3026
+ "node": ">= 12.0.0"
3027
+ },
3028
+ "funding": {
3029
+ "type": "opencollective",
3030
+ "url": "https://opencollective.com/parcel"
3031
+ }
3032
+ },
3033
+ "node_modules/lightningcss-linux-x64-gnu": {
3034
+ "version": "1.33.0",
3035
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.33.0.tgz",
3036
+ "integrity": "sha512-ar+Ju7LmcN0Jo4FpL4hpFybwNG9/3A/Br5KW2n2jyODg3MEZXaDYADdemoNS+BDNfMgKvylJLj4S5tyRActuAg==",
3037
+ "cpu": [
3038
+ "x64"
3039
+ ],
3040
+ "libc": [
3041
+ "glibc"
3042
+ ],
3043
+ "license": "MPL-2.0",
3044
+ "optional": true,
3045
+ "os": [
3046
+ "linux"
3047
+ ],
3048
+ "engines": {
3049
+ "node": ">= 12.0.0"
3050
+ },
3051
+ "funding": {
3052
+ "type": "opencollective",
3053
+ "url": "https://opencollective.com/parcel"
3054
+ }
3055
+ },
3056
+ "node_modules/lightningcss-linux-x64-musl": {
3057
+ "version": "1.33.0",
3058
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.33.0.tgz",
3059
+ "integrity": "sha512-RYiYbkokw0trfKqqzfF55lginwEPrD3OJDfTuJzFs1MK6iFnDenaz1fqLLtX4ITG3OktJQXOeTaw1awrBAlZPw==",
3060
+ "cpu": [
3061
+ "x64"
3062
+ ],
3063
+ "libc": [
3064
+ "musl"
3065
+ ],
3066
+ "license": "MPL-2.0",
3067
+ "optional": true,
3068
+ "os": [
3069
+ "linux"
3070
+ ],
3071
+ "engines": {
3072
+ "node": ">= 12.0.0"
3073
+ },
3074
+ "funding": {
3075
+ "type": "opencollective",
3076
+ "url": "https://opencollective.com/parcel"
3077
+ }
3078
+ },
3079
+ "node_modules/lightningcss-win32-arm64-msvc": {
3080
+ "version": "1.33.0",
3081
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.33.0.tgz",
3082
+ "integrity": "sha512-1K+MPfLSFVpphzpdbfkhlWk6wBrTObBzS2T6db10PNOZgR9GoVsAWzwNyuhUYYbTp23j+4RrncfujZ4uAzXvwA==",
3083
+ "cpu": [
3084
+ "arm64"
3085
+ ],
3086
+ "license": "MPL-2.0",
3087
+ "optional": true,
3088
+ "os": [
3089
+ "win32"
3090
+ ],
3091
+ "engines": {
3092
+ "node": ">= 12.0.0"
3093
+ },
3094
+ "funding": {
3095
+ "type": "opencollective",
3096
+ "url": "https://opencollective.com/parcel"
3097
+ }
3098
+ },
3099
+ "node_modules/lightningcss-win32-x64-msvc": {
3100
+ "version": "1.33.0",
3101
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.33.0.tgz",
3102
+ "integrity": "sha512-OlEICDx/Xl0FqSp4bry8zFnCvGpig3Gl4gCquvYwHuqJKEC1+n9NgDniFvqHGmMv1ZkqDJrDqKKSykTDX+ehuA==",
3103
+ "cpu": [
3104
+ "x64"
3105
+ ],
3106
+ "license": "MPL-2.0",
3107
+ "optional": true,
3108
+ "os": [
3109
+ "win32"
3110
+ ],
3111
+ "engines": {
3112
+ "node": ">= 12.0.0"
3113
+ },
3114
+ "funding": {
3115
+ "type": "opencollective",
3116
+ "url": "https://opencollective.com/parcel"
3117
+ }
3118
+ },
3119
+ "node_modules/lru-cache": {
3120
+ "version": "11.5.2",
3121
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.5.2.tgz",
3122
+ "integrity": "sha512-4pfM1Ff0x50o0tQwb5ucw/RzNyD0/YJME6IVcStalZuMWxdt3sR3huStTtxz4PUmvZfRguvDejasvQ2kifR11g==",
3123
+ "license": "BlueOak-1.0.0",
3124
+ "engines": {
3125
+ "node": "20 || >=22"
3126
+ }
3127
+ },
3128
+ "node_modules/magic-string": {
3129
+ "version": "1.1.0",
3130
+ "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-1.1.0.tgz",
3131
+ "integrity": "sha512-kS3VHe0nEPST2saQV4Rbkchcd3UBRkVTQHo1D3h/ZTwFDhai/mfKkmtPAtD129EOI7K3HlHIsFOt0WrI2/oU9g==",
3132
+ "license": "MIT",
3133
+ "dependencies": {
3134
+ "@jridgewell/sourcemap-codec": "^1.5.5"
3135
+ }
3136
+ },
3137
+ "node_modules/magicast": {
3138
+ "version": "0.5.4",
3139
+ "resolved": "https://registry.npmjs.org/magicast/-/magicast-0.5.4.tgz",
3140
+ "integrity": "sha512-llBEhWm1SacoRwgHUoQJYtwp4PBLF4faQi5TCpIGyGs9n4y5+juI0tDgyKIfpqxckRHaHzouUEph3THklWh03w==",
3141
+ "license": "MIT",
3142
+ "dependencies": {
3143
+ "@babel/parser": "^7.29.7",
3144
+ "@babel/types": "^7.29.7",
3145
+ "source-map-js": "^1.2.1"
3146
+ }
3147
+ },
3148
+ "node_modules/mdast-util-to-hast": {
3149
+ "version": "13.2.1",
3150
+ "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-13.2.1.tgz",
3151
+ "integrity": "sha512-cctsq2wp5vTsLIcaymblUriiTcZd0CwWtCbLvrOzYCDZoWyMNV8sZ7krj09FSnsiJi3WVsHLM4k6Dq/yaPyCXA==",
3152
+ "license": "MIT",
3153
+ "dependencies": {
3154
+ "@types/hast": "^3.0.0",
3155
+ "@types/mdast": "^4.0.0",
3156
+ "@ungap/structured-clone": "^1.0.0",
3157
+ "devlop": "^1.0.0",
3158
+ "micromark-util-sanitize-uri": "^2.0.0",
3159
+ "trim-lines": "^3.0.0",
3160
+ "unist-util-position": "^5.0.0",
3161
+ "unist-util-visit": "^5.0.0",
3162
+ "vfile": "^6.0.0"
3163
+ },
3164
+ "funding": {
3165
+ "type": "opencollective",
3166
+ "url": "https://opencollective.com/unified"
3167
+ }
3168
+ },
3169
+ "node_modules/mdn-data": {
3170
+ "version": "2.27.1",
3171
+ "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.27.1.tgz",
3172
+ "integrity": "sha512-9Yubnt3e8A0OKwxYSXyhLymGW4sCufcLG6VdiDdUGVkPhpqLxlvP5vl1983gQjJl3tqbrM731mjaZaP68AgosQ==",
3173
+ "license": "CC0-1.0"
3174
+ },
3175
+ "node_modules/micromark-util-character": {
3176
+ "version": "2.1.1",
3177
+ "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz",
3178
+ "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==",
3179
+ "funding": [
3180
+ {
3181
+ "type": "GitHub Sponsors",
3182
+ "url": "https://github.com/sponsors/unifiedjs"
3183
+ },
3184
+ {
3185
+ "type": "OpenCollective",
3186
+ "url": "https://opencollective.com/unified"
3187
+ }
3188
+ ],
3189
+ "license": "MIT",
3190
+ "dependencies": {
3191
+ "micromark-util-symbol": "^2.0.0",
3192
+ "micromark-util-types": "^2.0.0"
3193
+ }
3194
+ },
3195
+ "node_modules/micromark-util-encode": {
3196
+ "version": "2.0.1",
3197
+ "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz",
3198
+ "integrity": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==",
3199
+ "funding": [
3200
+ {
3201
+ "type": "GitHub Sponsors",
3202
+ "url": "https://github.com/sponsors/unifiedjs"
3203
+ },
3204
+ {
3205
+ "type": "OpenCollective",
3206
+ "url": "https://opencollective.com/unified"
3207
+ }
3208
+ ],
3209
+ "license": "MIT"
3210
+ },
3211
+ "node_modules/micromark-util-sanitize-uri": {
3212
+ "version": "2.0.1",
3213
+ "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz",
3214
+ "integrity": "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==",
3215
+ "funding": [
3216
+ {
3217
+ "type": "GitHub Sponsors",
3218
+ "url": "https://github.com/sponsors/unifiedjs"
3219
+ },
3220
+ {
3221
+ "type": "OpenCollective",
3222
+ "url": "https://opencollective.com/unified"
3223
+ }
3224
+ ],
3225
+ "license": "MIT",
3226
+ "dependencies": {
3227
+ "micromark-util-character": "^2.0.0",
3228
+ "micromark-util-encode": "^2.0.0",
3229
+ "micromark-util-symbol": "^2.0.0"
3230
+ }
3231
+ },
3232
+ "node_modules/micromark-util-symbol": {
3233
+ "version": "2.0.1",
3234
+ "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz",
3235
+ "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==",
3236
+ "funding": [
3237
+ {
3238
+ "type": "GitHub Sponsors",
3239
+ "url": "https://github.com/sponsors/unifiedjs"
3240
+ },
3241
+ {
3242
+ "type": "OpenCollective",
3243
+ "url": "https://opencollective.com/unified"
3244
+ }
3245
+ ],
3246
+ "license": "MIT"
3247
+ },
3248
+ "node_modules/micromark-util-types": {
3249
+ "version": "2.0.2",
3250
+ "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz",
3251
+ "integrity": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==",
3252
+ "funding": [
3253
+ {
3254
+ "type": "GitHub Sponsors",
3255
+ "url": "https://github.com/sponsors/unifiedjs"
3256
+ },
3257
+ {
3258
+ "type": "OpenCollective",
3259
+ "url": "https://opencollective.com/unified"
3260
+ }
3261
+ ],
3262
+ "license": "MIT"
3263
+ },
3264
+ "node_modules/mrmime": {
3265
+ "version": "2.0.1",
3266
+ "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-2.0.1.tgz",
3267
+ "integrity": "sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==",
3268
+ "license": "MIT",
3269
+ "engines": {
3270
+ "node": ">=10"
3271
+ }
3272
+ },
3273
+ "node_modules/nanoid": {
3274
+ "version": "3.3.18",
3275
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.18.tgz",
3276
+ "integrity": "sha512-DTg4MJbGMWkfi6VZFdNt2/caMbQy4Ou+Op/hJQvGEWcnVfoA1QA+xzRKAzw9jD6+GVOOeYr/mIcuDSdug6F6+w==",
3277
+ "funding": [
3278
+ {
3279
+ "type": "github",
3280
+ "url": "https://github.com/sponsors/ai"
3281
+ }
3282
+ ],
3283
+ "license": "MIT",
3284
+ "bin": {
3285
+ "nanoid": "bin/nanoid.cjs"
3286
+ },
3287
+ "engines": {
3288
+ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
3289
+ }
3290
+ },
3291
+ "node_modules/neotraverse": {
3292
+ "version": "1.0.1",
3293
+ "resolved": "https://registry.npmjs.org/neotraverse/-/neotraverse-1.0.1.tgz",
3294
+ "integrity": "sha512-WmmLty1YWwJl9yZi77v2dVIV6X2kuYV8YYBI/G3LWGKdGHmHUvL1z7FW0iDvEvGAwNEoc5x1tOOOyDnf5jJw/w==",
3295
+ "license": "MIT",
3296
+ "engines": {
3297
+ "node": ">= 10"
3298
+ }
3299
+ },
3300
+ "node_modules/nlcst-to-string": {
3301
+ "version": "4.0.0",
3302
+ "resolved": "https://registry.npmjs.org/nlcst-to-string/-/nlcst-to-string-4.0.0.tgz",
3303
+ "integrity": "sha512-YKLBCcUYKAg0FNlOBT6aI91qFmSiFKiluk655WzPF+DDMA02qIyy8uiRqI8QXtcFpEvll12LpL5MXqEmAZ+dcA==",
3304
+ "license": "MIT",
3305
+ "dependencies": {
3306
+ "@types/nlcst": "^2.0.0"
3307
+ },
3308
+ "funding": {
3309
+ "type": "opencollective",
3310
+ "url": "https://opencollective.com/unified"
3311
+ }
3312
+ },
3313
+ "node_modules/node-fetch-native": {
3314
+ "version": "1.6.7",
3315
+ "resolved": "https://registry.npmjs.org/node-fetch-native/-/node-fetch-native-1.6.7.tgz",
3316
+ "integrity": "sha512-g9yhqoedzIUm0nTnTqAQvueMPVOuIY16bqgAJJC8XOOubYFNwz6IER9qs0Gq2Xd0+CecCKFjtdDTMA4u4xG06Q==",
3317
+ "license": "MIT"
3318
+ },
3319
+ "node_modules/node-mock-http": {
3320
+ "version": "1.0.5",
3321
+ "resolved": "https://registry.npmjs.org/node-mock-http/-/node-mock-http-1.0.5.tgz",
3322
+ "integrity": "sha512-KQyt/wLjG3TAc7DOUhpqWzgd4ERxR80JOlTK5VE5R1S12IaPVN5qkj4klBce9HPG1Njuup4Sb5bljaT34lIyjw==",
3323
+ "license": "MIT"
3324
+ },
3325
+ "node_modules/normalize-path": {
3326
+ "version": "3.0.0",
3327
+ "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
3328
+ "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
3329
+ "license": "MIT",
3330
+ "engines": {
3331
+ "node": ">=0.10.0"
3332
+ }
3333
+ },
3334
+ "node_modules/nth-check": {
3335
+ "version": "2.1.1",
3336
+ "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz",
3337
+ "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==",
3338
+ "license": "BSD-2-Clause",
3339
+ "dependencies": {
3340
+ "boolbase": "^1.0.0"
3341
+ },
3342
+ "funding": {
3343
+ "url": "https://github.com/fb55/nth-check?sponsor=1"
3344
+ }
3345
+ },
3346
+ "node_modules/obug": {
3347
+ "version": "2.1.4",
3348
+ "resolved": "https://registry.npmjs.org/obug/-/obug-2.1.4.tgz",
3349
+ "integrity": "sha512-4a+OsYv9UktOJKE+l1A4OufDgdRF9PifWj+tJnHURo/P+WOxpG4GzUFL9qCalmWauao6ogiG+QvnCovwPoyAWA==",
3350
+ "funding": [
3351
+ "https://github.com/sponsors/sxzz",
3352
+ "https://opencollective.com/debug"
3353
+ ],
3354
+ "license": "MIT",
3355
+ "engines": {
3356
+ "node": ">=12.20.0"
3357
+ }
3358
+ },
3359
+ "node_modules/ofetch": {
3360
+ "version": "1.5.1",
3361
+ "resolved": "https://registry.npmjs.org/ofetch/-/ofetch-1.5.1.tgz",
3362
+ "integrity": "sha512-2W4oUZlVaqAPAil6FUg/difl6YhqhUR7x2eZY4bQCko22UXg3hptq9KLQdqFClV+Wu85UX7hNtdGTngi/1BxcA==",
3363
+ "license": "MIT",
3364
+ "dependencies": {
3365
+ "destr": "^2.0.5",
3366
+ "node-fetch-native": "^1.6.7",
3367
+ "ufo": "^1.6.1"
3368
+ }
3369
+ },
3370
+ "node_modules/ohash": {
3371
+ "version": "2.0.11",
3372
+ "resolved": "https://registry.npmjs.org/ohash/-/ohash-2.0.11.tgz",
3373
+ "integrity": "sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==",
3374
+ "license": "MIT"
3375
+ },
3376
+ "node_modules/oniguruma-parser": {
3377
+ "version": "0.12.2",
3378
+ "resolved": "https://registry.npmjs.org/oniguruma-parser/-/oniguruma-parser-0.12.2.tgz",
3379
+ "integrity": "sha512-6HVa5oIrgMC6aA6WF6XyyqbhRPJrKR02L20+2+zpDtO5QAzGHAUGw5TKQvwi5vctNnRHkJYmjAhRVQF2EKdTQw==",
3380
+ "license": "MIT"
3381
+ },
3382
+ "node_modules/oniguruma-to-es": {
3383
+ "version": "4.3.6",
3384
+ "resolved": "https://registry.npmjs.org/oniguruma-to-es/-/oniguruma-to-es-4.3.6.tgz",
3385
+ "integrity": "sha512-csuQ9x3Yr0cEIs/Zgx/OEt9iBw9vqIunAPQkx19R/fiMq2oGVTgcMqO/V3Ybqefr1TBvosI6jU539ksaBULJyA==",
3386
+ "license": "MIT",
3387
+ "dependencies": {
3388
+ "oniguruma-parser": "^0.12.2",
3389
+ "regex": "^6.1.0",
3390
+ "regex-recursion": "^6.0.2"
3391
+ }
3392
+ },
3393
+ "node_modules/p-limit": {
3394
+ "version": "7.3.1",
3395
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-7.3.1.tgz",
3396
+ "integrity": "sha512-0trZaiG7Y7kN/Egy9a8j47t9osC0Tch4PaIWd9yGF6bvmlk7muExRvGNYb8sXBwEKMoNKsbNN9P8EefuQekE4Q==",
3397
+ "license": "MIT",
3398
+ "dependencies": {
3399
+ "yocto-queue": "^1.2.1"
3400
+ },
3401
+ "engines": {
3402
+ "node": ">=20"
3403
+ },
3404
+ "funding": {
3405
+ "url": "https://github.com/sponsors/sindresorhus"
3406
+ }
3407
+ },
3408
+ "node_modules/p-queue": {
3409
+ "version": "9.3.3",
3410
+ "resolved": "https://registry.npmjs.org/p-queue/-/p-queue-9.3.3.tgz",
3411
+ "integrity": "sha512-NXAOdnEe5FsZJfT4oK84lE1Y5cFFdWlRuOo5tww8DyNMxyRXwn39fIkUtNLKppcPC+UYU/bXujNCUGDv01y7CA==",
3412
+ "license": "MIT",
3413
+ "dependencies": {
3414
+ "eventemitter3": "^5.0.4",
3415
+ "p-timeout": "^7.0.0"
3416
+ },
3417
+ "engines": {
3418
+ "node": ">=20"
3419
+ },
3420
+ "funding": {
3421
+ "url": "https://github.com/sponsors/sindresorhus"
3422
+ }
3423
+ },
3424
+ "node_modules/p-timeout": {
3425
+ "version": "7.0.1",
3426
+ "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-7.0.1.tgz",
3427
+ "integrity": "sha512-AxTM2wDGORHGEkPCt8yqxOTMgpfbEHqF51f/5fJCmwFC3C/zNcGT63SymH2ttOAaiIws2zVg4+izQCjrakcwHg==",
3428
+ "license": "MIT",
3429
+ "engines": {
3430
+ "node": ">=20"
3431
+ },
3432
+ "funding": {
3433
+ "url": "https://github.com/sponsors/sindresorhus"
3434
+ }
3435
+ },
3436
+ "node_modules/package-manager-detector": {
3437
+ "version": "1.8.0",
3438
+ "resolved": "https://registry.npmjs.org/package-manager-detector/-/package-manager-detector-1.8.0.tgz",
3439
+ "integrity": "sha512-yQA4H19AmPEoMUeavPMDIe1higySl/gH/yaQrkT/s07Qp+7pp2hYz30N3z2l5BkjVkF9Ow6o0wjJamm2y7Sn0A==",
3440
+ "license": "MIT"
3441
+ },
3442
+ "node_modules/parse5": {
3443
+ "version": "7.3.0",
3444
+ "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.3.0.tgz",
3445
+ "integrity": "sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==",
3446
+ "license": "MIT",
3447
+ "dependencies": {
3448
+ "entities": "^6.0.0"
3449
+ },
3450
+ "funding": {
3451
+ "url": "https://github.com/inikulin/parse5?sponsor=1"
3452
+ }
3453
+ },
3454
+ "node_modules/piccolore": {
3455
+ "version": "0.1.3",
3456
+ "resolved": "https://registry.npmjs.org/piccolore/-/piccolore-0.1.3.tgz",
3457
+ "integrity": "sha512-o8bTeDWjE086iwKrROaDf31K0qC/BENdm15/uH9usSC/uZjJOKb2YGiVHfLY4GhwsERiPI1jmwI2XrA7ACOxVw==",
3458
+ "license": "ISC"
3459
+ },
3460
+ "node_modules/picocolors": {
3461
+ "version": "1.1.1",
3462
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
3463
+ "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
3464
+ "license": "ISC"
3465
+ },
3466
+ "node_modules/picomatch": {
3467
+ "version": "4.0.5",
3468
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.5.tgz",
3469
+ "integrity": "sha512-RvwwcruNjI1ncT5xRakeyS9Lf8lcItv34KD+aif+VH9kduAyfYBipGh12274xtenIPZ119/R9BdTBa8gAwSh0A==",
3470
+ "license": "MIT",
3471
+ "engines": {
3472
+ "node": ">=12"
3473
+ },
3474
+ "funding": {
3475
+ "url": "https://github.com/sponsors/jonschlinkert"
3476
+ }
3477
+ },
3478
+ "node_modules/postcss": {
3479
+ "version": "8.5.26",
3480
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.26.tgz",
3481
+ "integrity": "sha512-u82N74LFzG8ca+dD8puPnplTXoGH4fTPpVGuIbt36G3qvNlkvfD0lEAZSxaly3KX8TS/L1A1gsCEmvKmBcVbkQ==",
3482
+ "funding": [
3483
+ {
3484
+ "type": "opencollective",
3485
+ "url": "https://opencollective.com/postcss/"
3486
+ },
3487
+ {
3488
+ "type": "tidelift",
3489
+ "url": "https://tidelift.com/funding/github/npm/postcss"
3490
+ },
3491
+ {
3492
+ "type": "github",
3493
+ "url": "https://github.com/sponsors/ai"
3494
+ }
3495
+ ],
3496
+ "license": "MIT",
3497
+ "dependencies": {
3498
+ "nanoid": "^3.3.17",
3499
+ "picocolors": "^1.1.1",
3500
+ "source-map-js": "^1.2.1"
3501
+ },
3502
+ "engines": {
3503
+ "node": "^10 || ^12 || >=14"
3504
+ }
3505
+ },
3506
+ "node_modules/prismjs": {
3507
+ "version": "1.30.0",
3508
+ "resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.30.0.tgz",
3509
+ "integrity": "sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw==",
3510
+ "license": "MIT",
3511
+ "engines": {
3512
+ "node": ">=6"
3513
+ }
3514
+ },
3515
+ "node_modules/process-ancestry": {
3516
+ "version": "0.1.0",
3517
+ "resolved": "https://registry.npmjs.org/process-ancestry/-/process-ancestry-0.1.0.tgz",
3518
+ "integrity": "sha512-tGqJW/UnclpYASFcM6Xh8D8l/BMtaQ9+CSG0vlJSJTcdMM4lDRv4c6H0Pdcsfted+bVczdYSfk2fdukg2gQkZg==",
3519
+ "license": "MIT",
3520
+ "engines": {
3521
+ "node": ">=18.0.0"
3522
+ }
3523
+ },
3524
+ "node_modules/property-information": {
3525
+ "version": "7.2.0",
3526
+ "resolved": "https://registry.npmjs.org/property-information/-/property-information-7.2.0.tgz",
3527
+ "integrity": "sha512-IAtzIB6sUiWaJYrX9smp3V46pBGbBeLFRGdh25kg1334VcBlD8HzhPeNIWQH9zhGmo2itIe25EHt9dQP7G5hmg==",
3528
+ "license": "MIT",
3529
+ "funding": {
3530
+ "type": "github",
3531
+ "url": "https://github.com/sponsors/wooorm"
3532
+ }
3533
+ },
3534
+ "node_modules/radix3": {
3535
+ "version": "1.1.2",
3536
+ "resolved": "https://registry.npmjs.org/radix3/-/radix3-1.1.2.tgz",
3537
+ "integrity": "sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==",
3538
+ "license": "MIT"
3539
+ },
3540
+ "node_modules/readdirp": {
3541
+ "version": "5.1.1",
3542
+ "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-5.1.1.tgz",
3543
+ "integrity": "sha512-Kko+Y5XQ6fM+Ce3dq3m9YGxnacYZYl9cA1wZjaF3Vbry2L3i1qVg8+CAgNPsXRArPMUMCaOR7oa9Nqntc43JKA==",
3544
+ "license": "MIT",
3545
+ "engines": {
3546
+ "node": ">= 20.19.0"
3547
+ },
3548
+ "funding": {
3549
+ "type": "individual",
3550
+ "url": "https://paulmillr.com/funding/"
3551
+ }
3552
+ },
3553
+ "node_modules/regex": {
3554
+ "version": "6.1.0",
3555
+ "resolved": "https://registry.npmjs.org/regex/-/regex-6.1.0.tgz",
3556
+ "integrity": "sha512-6VwtthbV4o/7+OaAF9I5L5V3llLEsoPyq9P1JVXkedTP33c7MfCG0/5NOPcSJn0TzXcG9YUrR0gQSWioew3LDg==",
3557
+ "license": "MIT",
3558
+ "dependencies": {
3559
+ "regex-utilities": "^2.3.0"
3560
+ }
3561
+ },
3562
+ "node_modules/regex-recursion": {
3563
+ "version": "6.0.2",
3564
+ "resolved": "https://registry.npmjs.org/regex-recursion/-/regex-recursion-6.0.2.tgz",
3565
+ "integrity": "sha512-0YCaSCq2VRIebiaUviZNs0cBz1kg5kVS2UKUfNIx8YVs1cN3AV7NTctO5FOKBA+UT2BPJIWZauYHPqJODG50cg==",
3566
+ "license": "MIT",
3567
+ "dependencies": {
3568
+ "regex-utilities": "^2.3.0"
3569
+ }
3570
+ },
3571
+ "node_modules/regex-utilities": {
3572
+ "version": "2.3.0",
3573
+ "resolved": "https://registry.npmjs.org/regex-utilities/-/regex-utilities-2.3.0.tgz",
3574
+ "integrity": "sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==",
3575
+ "license": "MIT"
3576
+ },
3577
+ "node_modules/resolve-pkg-maps": {
3578
+ "version": "1.0.0",
3579
+ "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz",
3580
+ "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==",
3581
+ "license": "MIT",
3582
+ "funding": {
3583
+ "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1"
3584
+ }
3585
+ },
3586
+ "node_modules/retext-smartypants": {
3587
+ "version": "6.2.0",
3588
+ "resolved": "https://registry.npmjs.org/retext-smartypants/-/retext-smartypants-6.2.0.tgz",
3589
+ "integrity": "sha512-kk0jOU7+zGv//kfjXEBjdIryL1Acl4i9XNkHxtM7Tm5lFiCog576fjNC9hjoR7LTKQ0DsPWy09JummSsH1uqfQ==",
3590
+ "license": "MIT",
3591
+ "dependencies": {
3592
+ "@types/nlcst": "^2.0.0",
3593
+ "nlcst-to-string": "^4.0.0",
3594
+ "unist-util-visit": "^5.0.0"
3595
+ },
3596
+ "funding": {
3597
+ "type": "opencollective",
3598
+ "url": "https://opencollective.com/unified"
3599
+ }
3600
+ },
3601
+ "node_modules/rolldown": {
3602
+ "version": "1.2.3",
3603
+ "resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.2.3.tgz",
3604
+ "integrity": "sha512-rn9wpmxplLf7NLNyCk9FyWh3FM43DbY8jOzCdEPzH7uflhTftRbCEpqi6Ly2osgoU8OwObtmavMbWLaWy4LX7A==",
3605
+ "license": "MIT",
3606
+ "dependencies": {
3607
+ "@oxc-project/types": "=0.143.0",
3608
+ "@rolldown/pluginutils": "^1.0.0"
3609
+ },
3610
+ "bin": {
3611
+ "rolldown": "bin/cli.mjs"
3612
+ },
3613
+ "engines": {
3614
+ "node": "^20.19.0 || >=22.12.0"
3615
+ },
3616
+ "optionalDependencies": {
3617
+ "@rolldown/binding-android-arm64": "1.2.3",
3618
+ "@rolldown/binding-darwin-arm64": "1.2.3",
3619
+ "@rolldown/binding-darwin-x64": "1.2.3",
3620
+ "@rolldown/binding-freebsd-x64": "1.2.3",
3621
+ "@rolldown/binding-linux-arm-gnueabihf": "1.2.3",
3622
+ "@rolldown/binding-linux-arm64-gnu": "1.2.3",
3623
+ "@rolldown/binding-linux-arm64-musl": "1.2.3",
3624
+ "@rolldown/binding-linux-ppc64-gnu": "1.2.3",
3625
+ "@rolldown/binding-linux-s390x-gnu": "1.2.3",
3626
+ "@rolldown/binding-linux-x64-gnu": "1.2.3",
3627
+ "@rolldown/binding-linux-x64-musl": "1.2.3",
3628
+ "@rolldown/binding-openharmony-arm64": "1.2.3",
3629
+ "@rolldown/binding-win32-arm64-msvc": "1.2.3",
3630
+ "@rolldown/binding-win32-x64-msvc": "1.2.3"
3631
+ }
3632
+ },
3633
+ "node_modules/satteri": {
3634
+ "version": "0.9.5",
3635
+ "resolved": "https://registry.npmjs.org/satteri/-/satteri-0.9.5.tgz",
3636
+ "integrity": "sha512-ZuWVl+vnM64y+/TtX8Kosv2c00W+hLQiiwnEL6H0UKVVrxFqMw4D2CJHHQaouVd89OAhtBBfjWLqhKi3TVUV4w==",
3637
+ "license": "MIT",
3638
+ "dependencies": {
3639
+ "@types/estree-jsx": "^1.0.5",
3640
+ "@types/hast": "^3.0.4",
3641
+ "@types/mdast": "^4.0.4",
3642
+ "@types/unist": "^3.0.3"
3643
+ },
3644
+ "optionalDependencies": {
3645
+ "@bruits/satteri-darwin-arm64": "0.9.5",
3646
+ "@bruits/satteri-darwin-x64": "0.9.5",
3647
+ "@bruits/satteri-linux-arm64-gnu": "0.9.5",
3648
+ "@bruits/satteri-linux-arm64-musl": "0.9.5",
3649
+ "@bruits/satteri-linux-x64-gnu": "0.9.5",
3650
+ "@bruits/satteri-linux-x64-musl": "0.9.5",
3651
+ "@bruits/satteri-wasm32-wasi": "0.9.5",
3652
+ "@bruits/satteri-win32-arm64-msvc": "0.9.5",
3653
+ "@bruits/satteri-win32-x64-msvc": "0.9.5"
3654
+ }
3655
+ },
3656
+ "node_modules/sax": {
3657
+ "version": "1.6.1",
3658
+ "resolved": "https://registry.npmjs.org/sax/-/sax-1.6.1.tgz",
3659
+ "integrity": "sha512-42tBVwLWnaQvW5zc4HbZrTuWccECCZfBi92FDuwtqxasH+JbPB3/FOKb1m222K42R4WxuxzzMsTswfzgtSu64Q==",
3660
+ "license": "BlueOak-1.0.0",
3661
+ "engines": {
3662
+ "node": ">=11.0.0"
3663
+ }
3664
+ },
3665
+ "node_modules/semver": {
3666
+ "version": "7.8.5",
3667
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.8.5.tgz",
3668
+ "integrity": "sha512-Y7/KDsb8LjooZpwaqGyulO6DQlksgCncchHGk+sZIY4SBvUocMBEFH5Ur1fI4dV+Jvl0w6cjvucaIi40puRioA==",
3669
+ "license": "ISC",
3670
+ "bin": {
3671
+ "semver": "bin/semver.js"
3672
+ },
3673
+ "engines": {
3674
+ "node": ">=10"
3675
+ }
3676
+ },
3677
+ "node_modules/sharp": {
3678
+ "version": "0.35.3",
3679
+ "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.35.3.tgz",
3680
+ "integrity": "sha512-ej0zVHuZGHCiABXcNxeYhpRnPNPAcvbG8RMdBAhDAxLKkCRVSpK3Iyu7qbqw3JMzoj0REeM6f3tJLtVwl0023Q==",
3681
+ "license": "Apache-2.0",
3682
+ "optional": true,
3683
+ "dependencies": {
3684
+ "@img/colour": "^1.1.0",
3685
+ "detect-libc": "^2.1.2",
3686
+ "semver": "^7.8.5"
3687
+ },
3688
+ "engines": {
3689
+ "node": ">=20.9.0"
3690
+ },
3691
+ "funding": {
3692
+ "url": "https://opencollective.com/libvips"
3693
+ },
3694
+ "optionalDependencies": {
3695
+ "@img/sharp-darwin-arm64": "0.35.3",
3696
+ "@img/sharp-darwin-x64": "0.35.3",
3697
+ "@img/sharp-freebsd-wasm32": "0.35.3",
3698
+ "@img/sharp-libvips-darwin-arm64": "1.3.2",
3699
+ "@img/sharp-libvips-darwin-x64": "1.3.2",
3700
+ "@img/sharp-libvips-linux-arm": "1.3.2",
3701
+ "@img/sharp-libvips-linux-arm64": "1.3.2",
3702
+ "@img/sharp-libvips-linux-ppc64": "1.3.2",
3703
+ "@img/sharp-libvips-linux-riscv64": "1.3.2",
3704
+ "@img/sharp-libvips-linux-s390x": "1.3.2",
3705
+ "@img/sharp-libvips-linux-x64": "1.3.2",
3706
+ "@img/sharp-libvips-linuxmusl-arm64": "1.3.2",
3707
+ "@img/sharp-libvips-linuxmusl-x64": "1.3.2",
3708
+ "@img/sharp-linux-arm": "0.35.3",
3709
+ "@img/sharp-linux-arm64": "0.35.3",
3710
+ "@img/sharp-linux-ppc64": "0.35.3",
3711
+ "@img/sharp-linux-riscv64": "0.35.3",
3712
+ "@img/sharp-linux-s390x": "0.35.3",
3713
+ "@img/sharp-linux-x64": "0.35.3",
3714
+ "@img/sharp-linuxmusl-arm64": "0.35.3",
3715
+ "@img/sharp-linuxmusl-x64": "0.35.3",
3716
+ "@img/sharp-webcontainers-wasm32": "0.35.3",
3717
+ "@img/sharp-win32-arm64": "0.35.3",
3718
+ "@img/sharp-win32-ia32": "0.35.3",
3719
+ "@img/sharp-win32-x64": "0.35.3"
3720
+ },
3721
+ "peerDependenciesMeta": {
3722
+ "@types/node": {
3723
+ "optional": true
3724
+ }
3725
+ }
3726
+ },
3727
+ "node_modules/shiki": {
3728
+ "version": "4.4.2",
3729
+ "resolved": "https://registry.npmjs.org/shiki/-/shiki-4.4.2.tgz",
3730
+ "integrity": "sha512-P8F/dFhRevaw2uSdeIYlq/5SXZNY85DPtmXQ947gD1Zj2JqO5AkNvVVBar0Me9JkFx3uzVud/qOtP5ek9NEQGA==",
3731
+ "license": "MIT",
3732
+ "dependencies": {
3733
+ "@shikijs/core": "4.4.2",
3734
+ "@shikijs/engine-javascript": "4.4.2",
3735
+ "@shikijs/engine-oniguruma": "4.4.2",
3736
+ "@shikijs/langs": "4.4.2",
3737
+ "@shikijs/themes": "4.4.2",
3738
+ "@shikijs/types": "4.4.2",
3739
+ "@shikijs/vscode-textmate": "^10.0.2",
3740
+ "@types/hast": "^3.0.5"
3741
+ },
3742
+ "engines": {
3743
+ "node": ">=20"
3744
+ }
3745
+ },
3746
+ "node_modules/sisteransi": {
3747
+ "version": "1.0.5",
3748
+ "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz",
3749
+ "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==",
3750
+ "license": "MIT"
3751
+ },
3752
+ "node_modules/smol-toml": {
3753
+ "version": "1.7.1",
3754
+ "resolved": "https://registry.npmjs.org/smol-toml/-/smol-toml-1.7.1.tgz",
3755
+ "integrity": "sha512-PPlsspAZ4jbMBu5DMFhfUGDQLu/vrL4SyBROVS37x8ynnVmFIs1VPBz1Co8Xks3TvpIaZXmU85y4DrQ+UyVFoQ==",
3756
+ "license": "BSD-3-Clause",
3757
+ "engines": {
3758
+ "node": ">= 18"
3759
+ },
3760
+ "funding": {
3761
+ "url": "https://github.com/sponsors/cyyynthia"
3762
+ }
3763
+ },
3764
+ "node_modules/source-map-js": {
3765
+ "version": "1.2.1",
3766
+ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
3767
+ "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
3768
+ "license": "BSD-3-Clause",
3769
+ "engines": {
3770
+ "node": ">=0.10.0"
3771
+ }
3772
+ },
3773
+ "node_modules/space-separated-tokens": {
3774
+ "version": "2.0.2",
3775
+ "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz",
3776
+ "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==",
3777
+ "license": "MIT",
3778
+ "funding": {
3779
+ "type": "github",
3780
+ "url": "https://github.com/sponsors/wooorm"
3781
+ }
3782
+ },
3783
+ "node_modules/stringify-entities": {
3784
+ "version": "4.0.4",
3785
+ "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.4.tgz",
3786
+ "integrity": "sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==",
3787
+ "license": "MIT",
3788
+ "dependencies": {
3789
+ "character-entities-html4": "^2.0.0",
3790
+ "character-entities-legacy": "^3.0.0"
3791
+ },
3792
+ "funding": {
3793
+ "type": "github",
3794
+ "url": "https://github.com/sponsors/wooorm"
3795
+ }
3796
+ },
3797
+ "node_modules/svgo": {
3798
+ "version": "4.0.2",
3799
+ "resolved": "https://registry.npmjs.org/svgo/-/svgo-4.0.2.tgz",
3800
+ "integrity": "sha512-ekx94z1rRc5LDi6oSUaeRnYhd0UOJxdtQCL2rF8xpWxD3TPAsISWOrxezqGovqS38GRZOdpDfvQe3ts6F7nsng==",
3801
+ "license": "MIT",
3802
+ "dependencies": {
3803
+ "commander": "^11.1.0",
3804
+ "css-select": "^5.1.0",
3805
+ "css-tree": "^3.0.1",
3806
+ "css-what": "^6.1.0",
3807
+ "csso": "^5.0.5",
3808
+ "picocolors": "^1.1.1",
3809
+ "sax": "^1.5.0"
3810
+ },
3811
+ "bin": {
3812
+ "svgo": "bin/svgo.js"
3813
+ },
3814
+ "engines": {
3815
+ "node": ">=16"
3816
+ },
3817
+ "funding": {
3818
+ "type": "opencollective",
3819
+ "url": "https://opencollective.com/svgo"
3820
+ }
3821
+ },
3822
+ "node_modules/tiny-inflate": {
3823
+ "version": "1.0.3",
3824
+ "resolved": "https://registry.npmjs.org/tiny-inflate/-/tiny-inflate-1.0.3.tgz",
3825
+ "integrity": "sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==",
3826
+ "license": "MIT"
3827
+ },
3828
+ "node_modules/tinyclip": {
3829
+ "version": "0.1.15",
3830
+ "resolved": "https://registry.npmjs.org/tinyclip/-/tinyclip-0.1.15.tgz",
3831
+ "integrity": "sha512-uo33abH+Ays0xYaDysoBt494Hb3hsEczMpcC0MwFl773pazORx4fmvKhclhR1wonUbB6vvpRsvVMwnhfqeMc+A==",
3832
+ "license": "MIT",
3833
+ "engines": {
3834
+ "node": "^16.14.0 || >= 17.3.0"
3835
+ }
3836
+ },
3837
+ "node_modules/tinyexec": {
3838
+ "version": "1.3.0",
3839
+ "resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-1.3.0.tgz",
3840
+ "integrity": "sha512-QKAl9m8gWWGHV8jZcPeym6j+XULi6tOf1mT83WYJ4Lk2ytW/uwAWkrP0uFsdoYMdueVJ0qs26wZ+23xeB4ibNQ==",
3841
+ "license": "MIT",
3842
+ "engines": {
3843
+ "node": ">=18"
3844
+ }
3845
+ },
3846
+ "node_modules/tinyglobby": {
3847
+ "version": "0.2.17",
3848
+ "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.17.tgz",
3849
+ "integrity": "sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==",
3850
+ "license": "MIT",
3851
+ "dependencies": {
3852
+ "fdir": "^6.5.0",
3853
+ "picomatch": "^4.0.4"
3854
+ },
3855
+ "engines": {
3856
+ "node": ">=12.0.0"
3857
+ },
3858
+ "funding": {
3859
+ "url": "https://github.com/sponsors/SuperchupuDev"
3860
+ }
3861
+ },
3862
+ "node_modules/trim-lines": {
3863
+ "version": "3.0.1",
3864
+ "resolved": "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz",
3865
+ "integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==",
3866
+ "license": "MIT",
3867
+ "funding": {
3868
+ "type": "github",
3869
+ "url": "https://github.com/sponsors/wooorm"
3870
+ }
3871
+ },
3872
+ "node_modules/trough": {
3873
+ "version": "2.2.0",
3874
+ "resolved": "https://registry.npmjs.org/trough/-/trough-2.2.0.tgz",
3875
+ "integrity": "sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==",
3876
+ "license": "MIT",
3877
+ "funding": {
3878
+ "type": "github",
3879
+ "url": "https://github.com/sponsors/wooorm"
3880
+ }
3881
+ },
3882
+ "node_modules/tslib": {
3883
+ "version": "2.8.1",
3884
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
3885
+ "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
3886
+ "license": "0BSD",
3887
+ "optional": true
3888
+ },
3889
+ "node_modules/ufo": {
3890
+ "version": "1.6.4",
3891
+ "resolved": "https://registry.npmjs.org/ufo/-/ufo-1.6.4.tgz",
3892
+ "integrity": "sha512-JFNbkD1Svwe0KvGi8GOeLcP4kAWQ609twvCdcHxq1oSL8svv39ZuSvajcD8B+5D0eL4+s1Is2D/O6KN3qcTeRA==",
3893
+ "license": "MIT"
3894
+ },
3895
+ "node_modules/ultrahtml": {
3896
+ "version": "1.7.0",
3897
+ "resolved": "https://registry.npmjs.org/ultrahtml/-/ultrahtml-1.7.0.tgz",
3898
+ "integrity": "sha512-2xRd0VHoAQE4M+vF/DvFFB7pUV0ZxTW1TLi7lHQWnF/Sb5TPeEUV/l+hxcNnGO00ZXGnR0voCMmYRKQf+rvJ2g==",
3899
+ "license": "MIT"
3900
+ },
3901
+ "node_modules/uncrypto": {
3902
+ "version": "0.1.3",
3903
+ "resolved": "https://registry.npmjs.org/uncrypto/-/uncrypto-0.1.3.tgz",
3904
+ "integrity": "sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==",
3905
+ "license": "MIT"
3906
+ },
3907
+ "node_modules/unified": {
3908
+ "version": "11.0.5",
3909
+ "resolved": "https://registry.npmjs.org/unified/-/unified-11.0.5.tgz",
3910
+ "integrity": "sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==",
3911
+ "license": "MIT",
3912
+ "dependencies": {
3913
+ "@types/unist": "^3.0.0",
3914
+ "bail": "^2.0.0",
3915
+ "devlop": "^1.0.0",
3916
+ "extend": "^3.0.0",
3917
+ "is-plain-obj": "^4.0.0",
3918
+ "trough": "^2.0.0",
3919
+ "vfile": "^6.0.0"
3920
+ },
3921
+ "funding": {
3922
+ "type": "opencollective",
3923
+ "url": "https://opencollective.com/unified"
3924
+ }
3925
+ },
3926
+ "node_modules/unifont": {
3927
+ "version": "0.7.4",
3928
+ "resolved": "https://registry.npmjs.org/unifont/-/unifont-0.7.4.tgz",
3929
+ "integrity": "sha512-oHeis4/xl42HUIeHuNZRGEvxj5AaIKR+bHPNegRq5LV1gdc3jundpONbjglKpihmJf+dswygdMJn3eftGIMemg==",
3930
+ "license": "MIT",
3931
+ "dependencies": {
3932
+ "css-tree": "^3.1.0",
3933
+ "ofetch": "^1.5.1",
3934
+ "ohash": "^2.0.11"
3935
+ }
3936
+ },
3937
+ "node_modules/unist-util-is": {
3938
+ "version": "6.0.1",
3939
+ "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.1.tgz",
3940
+ "integrity": "sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==",
3941
+ "license": "MIT",
3942
+ "dependencies": {
3943
+ "@types/unist": "^3.0.0"
3944
+ },
3945
+ "funding": {
3946
+ "type": "opencollective",
3947
+ "url": "https://opencollective.com/unified"
3948
+ }
3949
+ },
3950
+ "node_modules/unist-util-position": {
3951
+ "version": "5.0.0",
3952
+ "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-5.0.0.tgz",
3953
+ "integrity": "sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==",
3954
+ "license": "MIT",
3955
+ "dependencies": {
3956
+ "@types/unist": "^3.0.0"
3957
+ },
3958
+ "funding": {
3959
+ "type": "opencollective",
3960
+ "url": "https://opencollective.com/unified"
3961
+ }
3962
+ },
3963
+ "node_modules/unist-util-stringify-position": {
3964
+ "version": "4.0.0",
3965
+ "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz",
3966
+ "integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==",
3967
+ "license": "MIT",
3968
+ "dependencies": {
3969
+ "@types/unist": "^3.0.0"
3970
+ },
3971
+ "funding": {
3972
+ "type": "opencollective",
3973
+ "url": "https://opencollective.com/unified"
3974
+ }
3975
+ },
3976
+ "node_modules/unist-util-visit": {
3977
+ "version": "5.1.0",
3978
+ "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-5.1.0.tgz",
3979
+ "integrity": "sha512-m+vIdyeCOpdr/QeQCu2EzxX/ohgS8KbnPDgFni4dQsfSCtpz8UqDyY5GjRru8PDKuYn7Fq19j1CQ+nJSsGKOzg==",
3980
+ "license": "MIT",
3981
+ "dependencies": {
3982
+ "@types/unist": "^3.0.0",
3983
+ "unist-util-is": "^6.0.0",
3984
+ "unist-util-visit-parents": "^6.0.0"
3985
+ },
3986
+ "funding": {
3987
+ "type": "opencollective",
3988
+ "url": "https://opencollective.com/unified"
3989
+ }
3990
+ },
3991
+ "node_modules/unist-util-visit-parents": {
3992
+ "version": "6.0.2",
3993
+ "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.2.tgz",
3994
+ "integrity": "sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==",
3995
+ "license": "MIT",
3996
+ "dependencies": {
3997
+ "@types/unist": "^3.0.0",
3998
+ "unist-util-is": "^6.0.0"
3999
+ },
4000
+ "funding": {
4001
+ "type": "opencollective",
4002
+ "url": "https://opencollective.com/unified"
4003
+ }
4004
+ },
4005
+ "node_modules/unstorage": {
4006
+ "version": "1.17.5",
4007
+ "resolved": "https://registry.npmjs.org/unstorage/-/unstorage-1.17.5.tgz",
4008
+ "integrity": "sha512-0i3iqvRfx29hkNntHyQvJTpf5W9dQ9ZadSoRU8+xVlhVtT7jAX57fazYO9EHvcRCfBCyi5YRya7XCDOsbTgkPg==",
4009
+ "license": "MIT",
4010
+ "dependencies": {
4011
+ "anymatch": "^3.1.3",
4012
+ "chokidar": "^5.0.0",
4013
+ "destr": "^2.0.5",
4014
+ "h3": "^1.15.10",
4015
+ "lru-cache": "^11.2.7",
4016
+ "node-fetch-native": "^1.6.7",
4017
+ "ofetch": "^1.5.1",
4018
+ "ufo": "^1.6.3"
4019
+ },
4020
+ "peerDependencies": {
4021
+ "@azure/app-configuration": "^1.8.0",
4022
+ "@azure/cosmos": "^4.2.0",
4023
+ "@azure/data-tables": "^13.3.0",
4024
+ "@azure/identity": "^4.6.0",
4025
+ "@azure/keyvault-secrets": "^4.9.0",
4026
+ "@azure/storage-blob": "^12.26.0",
4027
+ "@capacitor/preferences": "^6 || ^7 || ^8",
4028
+ "@deno/kv": ">=0.9.0",
4029
+ "@netlify/blobs": "^6.5.0 || ^7.0.0 || ^8.1.0 || ^9.0.0 || ^10.0.0",
4030
+ "@planetscale/database": "^1.19.0",
4031
+ "@upstash/redis": "^1.34.3",
4032
+ "@vercel/blob": ">=0.27.1",
4033
+ "@vercel/functions": "^2.2.12 || ^3.0.0",
4034
+ "@vercel/kv": "^1 || ^2 || ^3",
4035
+ "aws4fetch": "^1.0.20",
4036
+ "db0": ">=0.2.1",
4037
+ "idb-keyval": "^6.2.1",
4038
+ "ioredis": "^5.4.2",
4039
+ "uploadthing": "^7.4.4"
4040
+ },
4041
+ "peerDependenciesMeta": {
4042
+ "@azure/app-configuration": {
4043
+ "optional": true
4044
+ },
4045
+ "@azure/cosmos": {
4046
+ "optional": true
4047
+ },
4048
+ "@azure/data-tables": {
4049
+ "optional": true
4050
+ },
4051
+ "@azure/identity": {
4052
+ "optional": true
4053
+ },
4054
+ "@azure/keyvault-secrets": {
4055
+ "optional": true
4056
+ },
4057
+ "@azure/storage-blob": {
4058
+ "optional": true
4059
+ },
4060
+ "@capacitor/preferences": {
4061
+ "optional": true
4062
+ },
4063
+ "@deno/kv": {
4064
+ "optional": true
4065
+ },
4066
+ "@netlify/blobs": {
4067
+ "optional": true
4068
+ },
4069
+ "@planetscale/database": {
4070
+ "optional": true
4071
+ },
4072
+ "@upstash/redis": {
4073
+ "optional": true
4074
+ },
4075
+ "@vercel/blob": {
4076
+ "optional": true
4077
+ },
4078
+ "@vercel/functions": {
4079
+ "optional": true
4080
+ },
4081
+ "@vercel/kv": {
4082
+ "optional": true
4083
+ },
4084
+ "aws4fetch": {
4085
+ "optional": true
4086
+ },
4087
+ "db0": {
4088
+ "optional": true
4089
+ },
4090
+ "idb-keyval": {
4091
+ "optional": true
4092
+ },
4093
+ "ioredis": {
4094
+ "optional": true
4095
+ },
4096
+ "uploadthing": {
4097
+ "optional": true
4098
+ }
4099
+ }
4100
+ },
4101
+ "node_modules/vfile": {
4102
+ "version": "6.0.3",
4103
+ "resolved": "https://registry.npmjs.org/vfile/-/vfile-6.0.3.tgz",
4104
+ "integrity": "sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==",
4105
+ "license": "MIT",
4106
+ "dependencies": {
4107
+ "@types/unist": "^3.0.0",
4108
+ "vfile-message": "^4.0.0"
4109
+ },
4110
+ "funding": {
4111
+ "type": "opencollective",
4112
+ "url": "https://opencollective.com/unified"
4113
+ }
4114
+ },
4115
+ "node_modules/vfile-location": {
4116
+ "version": "5.0.3",
4117
+ "resolved": "https://registry.npmjs.org/vfile-location/-/vfile-location-5.0.3.tgz",
4118
+ "integrity": "sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==",
4119
+ "license": "MIT",
4120
+ "dependencies": {
4121
+ "@types/unist": "^3.0.0",
4122
+ "vfile": "^6.0.0"
4123
+ },
4124
+ "funding": {
4125
+ "type": "opencollective",
4126
+ "url": "https://opencollective.com/unified"
4127
+ }
4128
+ },
4129
+ "node_modules/vfile-message": {
4130
+ "version": "4.0.3",
4131
+ "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.3.tgz",
4132
+ "integrity": "sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==",
4133
+ "license": "MIT",
4134
+ "dependencies": {
4135
+ "@types/unist": "^3.0.0",
4136
+ "unist-util-stringify-position": "^4.0.0"
4137
+ },
4138
+ "funding": {
4139
+ "type": "opencollective",
4140
+ "url": "https://opencollective.com/unified"
4141
+ }
4142
+ },
4143
+ "node_modules/vite": {
4144
+ "version": "8.2.1",
4145
+ "resolved": "https://registry.npmjs.org/vite/-/vite-8.2.1.tgz",
4146
+ "integrity": "sha512-EU/eS7BH3XROHh2YnBefjM6DBKA6ZeMZEYQbj7NLWg5wHYlhB8B/Mayd5XsgWq+NFYccDOTemRpdETWR6Ka/lw==",
4147
+ "license": "MIT",
4148
+ "dependencies": {
4149
+ "lightningcss": "^1.33.0",
4150
+ "picomatch": "^4.0.5",
4151
+ "postcss": "^8.5.25",
4152
+ "rolldown": "~1.2.1",
4153
+ "tinyglobby": "^0.2.17"
4154
+ },
4155
+ "bin": {
4156
+ "vite": "bin/vite.js"
4157
+ },
4158
+ "engines": {
4159
+ "node": "^20.19.0 || >=22.12.0"
4160
+ },
4161
+ "funding": {
4162
+ "url": "https://github.com/vitejs/vite?sponsor=1"
4163
+ },
4164
+ "optionalDependencies": {
4165
+ "fsevents": "~2.3.3"
4166
+ },
4167
+ "peerDependencies": {
4168
+ "@types/node": "^20.19.0 || >=22.12.0",
4169
+ "@vitejs/devtools": "^0.4.0",
4170
+ "esbuild": "^0.27.0 || ^0.28.0",
4171
+ "jiti": ">=1.21.0",
4172
+ "less": "^4.0.0",
4173
+ "sass": "^1.70.0",
4174
+ "sass-embedded": "^1.70.0",
4175
+ "stylus": ">=0.54.8",
4176
+ "sugarss": "^5.0.0",
4177
+ "terser": "^5.16.0",
4178
+ "tsx": "^4.8.1",
4179
+ "yaml": "^2.4.2"
4180
+ },
4181
+ "peerDependenciesMeta": {
4182
+ "@types/node": {
4183
+ "optional": true
4184
+ },
4185
+ "@vitejs/devtools": {
4186
+ "optional": true
4187
+ },
4188
+ "esbuild": {
4189
+ "optional": true
4190
+ },
4191
+ "jiti": {
4192
+ "optional": true
4193
+ },
4194
+ "less": {
4195
+ "optional": true
4196
+ },
4197
+ "sass": {
4198
+ "optional": true
4199
+ },
4200
+ "sass-embedded": {
4201
+ "optional": true
4202
+ },
4203
+ "stylus": {
4204
+ "optional": true
4205
+ },
4206
+ "sugarss": {
4207
+ "optional": true
4208
+ },
4209
+ "terser": {
4210
+ "optional": true
4211
+ },
4212
+ "tsx": {
4213
+ "optional": true
4214
+ },
4215
+ "yaml": {
4216
+ "optional": true
4217
+ }
4218
+ }
4219
+ },
4220
+ "node_modules/vitefu": {
4221
+ "version": "1.1.3",
4222
+ "resolved": "https://registry.npmjs.org/vitefu/-/vitefu-1.1.3.tgz",
4223
+ "integrity": "sha512-ub4okH7Z5KLjb6hDyjqrGXqWtWvoYdU3IGm/NorpgHncKoLTCfRIbvlhBm7r0YstIaQRYlp4yEbFqDcKSzXSSg==",
4224
+ "license": "MIT",
4225
+ "workspaces": [
4226
+ "tests/deps/*",
4227
+ "tests/projects/*",
4228
+ "tests/projects/workspace/packages/*"
4229
+ ],
4230
+ "peerDependencies": {
4231
+ "vite": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0"
4232
+ },
4233
+ "peerDependenciesMeta": {
4234
+ "vite": {
4235
+ "optional": true
4236
+ }
4237
+ }
4238
+ },
4239
+ "node_modules/web-namespaces": {
4240
+ "version": "2.0.1",
4241
+ "resolved": "https://registry.npmjs.org/web-namespaces/-/web-namespaces-2.0.1.tgz",
4242
+ "integrity": "sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==",
4243
+ "license": "MIT",
4244
+ "funding": {
4245
+ "type": "github",
4246
+ "url": "https://github.com/sponsors/wooorm"
4247
+ }
4248
+ },
4249
+ "node_modules/xxhash-wasm": {
4250
+ "version": "1.1.0",
4251
+ "resolved": "https://registry.npmjs.org/xxhash-wasm/-/xxhash-wasm-1.1.0.tgz",
4252
+ "integrity": "sha512-147y/6YNh+tlp6nd/2pWq38i9h6mz/EuQ6njIrmW8D1BS5nCqs0P6DG+m6zTGnNz5I+uhZ0SHxBs9BsPrwcKDA==",
4253
+ "license": "MIT"
4254
+ },
4255
+ "node_modules/yargs-parser": {
4256
+ "version": "22.0.0",
4257
+ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-22.0.0.tgz",
4258
+ "integrity": "sha512-rwu/ClNdSMpkSrUb+d6BRsSkLUq1fmfsY6TOpYzTwvwkg1/NRG85KBy3kq++A8LKQwX6lsu+aWad+2khvuXrqw==",
4259
+ "license": "ISC",
4260
+ "engines": {
4261
+ "node": "^20.19.0 || ^22.12.0 || >=23"
4262
+ }
4263
+ },
4264
+ "node_modules/yocto-queue": {
4265
+ "version": "1.2.2",
4266
+ "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.2.2.tgz",
4267
+ "integrity": "sha512-4LCcse/U2MHZ63HAJVE+v71o7yOdIe4cZ70Wpf8D/IyjDKYQLV5GD46B+hSTjJsvV5PztjvHoU580EftxjDZFQ==",
4268
+ "license": "MIT",
4269
+ "engines": {
4270
+ "node": ">=12.20"
4271
+ },
4272
+ "funding": {
4273
+ "url": "https://github.com/sponsors/sindresorhus"
4274
+ }
4275
+ },
4276
+ "node_modules/zod": {
4277
+ "version": "4.4.3",
4278
+ "resolved": "https://registry.npmjs.org/zod/-/zod-4.4.3.tgz",
4279
+ "integrity": "sha512-ytENFjIJFl2UwYglde2jchW2Hwm4GJFLDiSXWdTrJQBIN9Fcyp7n4DhxJEiWNAJMV1/BqWfW/kkg71UDcHJyTQ==",
4280
+ "license": "MIT",
4281
+ "funding": {
4282
+ "url": "https://github.com/sponsors/colinhacks"
4283
+ }
4284
+ },
4285
+ "node_modules/zwitch": {
4286
+ "version": "2.0.4",
4287
+ "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz",
4288
+ "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==",
4289
+ "license": "MIT",
4290
+ "funding": {
4291
+ "type": "github",
4292
+ "url": "https://github.com/sponsors/wooorm"
4293
+ }
4294
+ }
4295
+ }
4296
+ }