@notis_ai/cli 0.2.0-beta.16.1 → 0.2.0-beta.161.1

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 (161) hide show
  1. package/README.md +435 -133
  2. package/bin/check-runtime.js +15 -0
  3. package/bin/notis.js +2 -0
  4. package/config/notis_app_boundary_rules.json +50 -0
  5. package/config/notis_app_design_rules.json +135 -0
  6. package/dist/agent-hooks/notis-agent-hook.mjs +19008 -0
  7. package/dist/base-skills/notis-apps/SKILL.md +70 -0
  8. package/dist/base-skills/notis-apps/references/architecture.md +164 -0
  9. package/dist/base-skills/notis-apps/references/context.md +81 -0
  10. package/dist/base-skills/notis-apps/references/design.md +165 -0
  11. package/dist/base-skills/notis-apps/references/reading.md +89 -0
  12. package/dist/base-skills/notis-apps/references/release.md +99 -0
  13. package/dist/base-skills/notis-apps/references/sdk.md +62 -0
  14. package/dist/base-skills/notis-apps/references/troubleshooting.md +23 -0
  15. package/dist/base-skills/notis-cli/SKILL.md +140 -0
  16. package/dist/base-skills/notis-cli/references/app-delivery.md +18 -0
  17. package/dist/base-skills/notis-cli/references/native-databases.md +20 -0
  18. package/dist/base-skills/notis-cli/references/tool-examples.md +56 -0
  19. package/dist/base-skills/notis-cli/references/troubleshooting.md +39 -0
  20. package/dist/base-skills/notis-query/SKILL.md +67 -0
  21. package/dist/base-skills/notis-query/references/database-discovery.md +59 -0
  22. package/dist/base-skills/notis-query/references/documents.md +50 -0
  23. package/dist/base-skills/notis-query/references/query.md +543 -0
  24. package/dist/skill-sync/index.js +1626 -0
  25. package/dist/skill-sync/index.js.map +7 -0
  26. package/dist/skill-sync-worker.mjs +2990 -0
  27. package/package.json +18 -7
  28. package/skills/notis-apps/cli.md +313 -0
  29. package/skills/notis-cli/AGENT_INSTRUCTIONS.md +39 -0
  30. package/skills/notis-onboarding/BRIEF.md +129 -0
  31. package/skills/notis-query/cli.md +39 -0
  32. package/src/agent-hook-entry.js +5 -0
  33. package/src/cli.js +294 -25
  34. package/src/command-specs/agents.js +392 -0
  35. package/src/command-specs/apps.js +1470 -202
  36. package/src/command-specs/auth.js +114 -137
  37. package/src/command-specs/diagnostics.js +729 -0
  38. package/src/command-specs/handover.js +374 -0
  39. package/src/command-specs/helpers.js +84 -82
  40. package/src/command-specs/index.js +25 -6
  41. package/src/command-specs/meta.js +150 -18
  42. package/src/command-specs/onboarding.js +290 -0
  43. package/src/command-specs/profile.js +358 -0
  44. package/src/command-specs/reports.js +86 -0
  45. package/src/command-specs/skills.js +75 -0
  46. package/src/command-specs/smoke.js +386 -0
  47. package/src/command-specs/tools.js +455 -139
  48. package/src/runtime/agent-browser.js +632 -0
  49. package/src/runtime/agent-memory-state.js +126 -0
  50. package/src/runtime/agent-setup.js +383 -0
  51. package/src/runtime/app-boundary-validator.js +404 -0
  52. package/src/runtime/app-changelog.js +79 -0
  53. package/src/runtime/app-platform.js +2633 -210
  54. package/src/runtime/app-registry-scaffolds.js +367 -0
  55. package/src/runtime/app-test-server.js +292 -0
  56. package/src/runtime/assets/store-screenshot-dark.png +0 -0
  57. package/src/runtime/auth-recovery.js +110 -0
  58. package/src/runtime/base-skills.d.ts +20 -0
  59. package/src/runtime/base-skills.js +167 -0
  60. package/src/runtime/channel.js +133 -0
  61. package/src/runtime/delegated-context.js +68 -0
  62. package/src/runtime/errors.js +1 -0
  63. package/src/runtime/git.js +233 -0
  64. package/src/runtime/login-listener.js +15 -0
  65. package/src/runtime/oauth.js +2622 -0
  66. package/src/runtime/output.js +37 -5
  67. package/src/runtime/ports.js +31 -0
  68. package/src/runtime/profiles.js +906 -55
  69. package/src/runtime/skill-sync/cloud-client.ts +99 -0
  70. package/src/runtime/skill-sync/index.ts +697 -0
  71. package/src/runtime/skill-sync/local-scanner.ts +1046 -0
  72. package/src/runtime/skill-sync/symlink-manager.ts +433 -0
  73. package/src/runtime/skill-sync/sync-plan.ts +22 -0
  74. package/src/runtime/skill-sync/types.ts +110 -0
  75. package/src/runtime/skill-sync/write-cloud-skill.ts +50 -0
  76. package/src/runtime/skill-sync-service.js +109 -0
  77. package/src/runtime/store-screenshot.js +143 -0
  78. package/src/runtime/sync-skills.d.ts +37 -0
  79. package/src/runtime/sync-skills.js +231 -0
  80. package/src/runtime/telemetry.js +92 -0
  81. package/src/runtime/transport.js +324 -45
  82. package/src/skill-sync-worker-entry.js +2 -0
  83. package/src/skill-sync-worker.js +50 -0
  84. package/template/.harness/index.html.tmpl +430 -0
  85. package/template/CHANGELOG.md +5 -0
  86. package/template/app/globals.css +28 -3
  87. package/template/app/layout.tsx +6 -3
  88. package/template/app/page.tsx +49 -42
  89. package/template/components/page-heading.tsx +23 -0
  90. package/template/components/ui/badge.tsx +7 -4
  91. package/template/components/ui/button.tsx +1 -1
  92. package/template/components/ui/card.tsx +24 -11
  93. package/template/components/ui/native-select.tsx +24 -0
  94. package/template/notis.config.ts +24 -6
  95. package/template/package-lock.json +3642 -0
  96. package/template/package.json +19 -16
  97. package/template/packages/{notis-sdk → sdk}/package.json +14 -4
  98. package/template/packages/sdk/src/agentContext.ts +36 -0
  99. package/template/packages/sdk/src/components/DocumentEditor.tsx +103 -0
  100. package/template/packages/sdk/src/components/Markdown.tsx +60 -0
  101. package/template/packages/sdk/src/components/MarkdownEditor.tsx +121 -0
  102. package/template/packages/sdk/src/components/MultiSelectActionBar.tsx +285 -0
  103. package/template/packages/sdk/src/components/MultiSelectCheckbox.tsx +97 -0
  104. package/template/packages/sdk/src/components/MultiSelectDragOverlay.tsx +39 -0
  105. package/template/packages/sdk/src/components/NotisCommentBoundary.tsx +172 -0
  106. package/template/packages/sdk/src/components/NotisSelectionBoundary.tsx +59 -0
  107. package/template/packages/sdk/src/components/ShortcutHints.tsx +56 -0
  108. package/template/packages/sdk/src/components/Skeleton.tsx +24 -0
  109. package/template/packages/sdk/src/config.ts +257 -0
  110. package/template/packages/sdk/src/documents.ts +256 -0
  111. package/template/packages/sdk/src/hooks/useActiveResource.ts +19 -0
  112. package/template/packages/sdk/src/hooks/useAgentContext.ts +23 -0
  113. package/template/packages/sdk/src/hooks/useCloudComputer.ts +64 -0
  114. package/template/packages/sdk/src/hooks/useCollectionInteractions.ts +836 -0
  115. package/template/packages/sdk/src/hooks/useDatabaseSchema.ts +49 -0
  116. package/template/packages/sdk/src/hooks/useDatabaseSubscription.ts +76 -0
  117. package/template/packages/sdk/src/hooks/useDocument.ts +43 -0
  118. package/template/packages/sdk/src/hooks/useDocuments.ts +84 -0
  119. package/template/packages/sdk/src/hooks/useHandover.ts +78 -0
  120. package/template/packages/sdk/src/hooks/useLongPressSelection.ts +79 -0
  121. package/template/packages/sdk/src/hooks/useMultiSelect.ts +95 -0
  122. package/template/packages/{notis-sdk → sdk}/src/hooks/useNotis.ts +10 -4
  123. package/template/packages/{notis-sdk → sdk}/src/hooks/useNotisNavigation.ts +11 -8
  124. package/template/packages/sdk/src/hooks/useQuery.ts +71 -0
  125. package/template/packages/sdk/src/hooks/useTool.ts +65 -0
  126. package/template/packages/sdk/src/hooks/useToolQuery.ts +12 -0
  127. package/template/packages/sdk/src/hooks/useTopBarSearch.ts +81 -0
  128. package/template/packages/sdk/src/hooks/useUpsertDocument.ts +95 -0
  129. package/template/packages/sdk/src/index.ts +161 -0
  130. package/template/packages/sdk/src/interactions/actions.ts +59 -0
  131. package/template/packages/sdk/src/interactions/shortcuts.tsx +694 -0
  132. package/template/packages/sdk/src/interactions/visibility.ts +13 -0
  133. package/template/packages/sdk/src/interactions.ts +45 -0
  134. package/template/packages/sdk/src/provider.tsx +44 -0
  135. package/template/packages/sdk/src/queryCache.ts +170 -0
  136. package/template/packages/sdk/src/runtime.ts +451 -0
  137. package/template/packages/sdk/src/styles.css +247 -0
  138. package/template/packages/sdk/src/tailwind.ts +66 -0
  139. package/template/packages/sdk/src/vite.ts +73 -0
  140. package/template/packages/{notis-sdk → sdk}/tsconfig.json +1 -0
  141. package/template/postcss.config.mjs +1 -1
  142. package/template/tailwind.config.ts +1 -6
  143. package/template/tsconfig.json +1 -0
  144. package/src/command-specs/db.js +0 -163
  145. package/src/runtime/app-preview-server.js +0 -312
  146. package/template/packages/notis-sdk/src/config.ts +0 -48
  147. package/template/packages/notis-sdk/src/helpers.ts +0 -131
  148. package/template/packages/notis-sdk/src/hooks/useAppState.ts +0 -50
  149. package/template/packages/notis-sdk/src/hooks/useCollectionItem.ts +0 -58
  150. package/template/packages/notis-sdk/src/hooks/useDatabase.ts +0 -87
  151. package/template/packages/notis-sdk/src/hooks/useDocument.ts +0 -61
  152. package/template/packages/notis-sdk/src/hooks/useTool.ts +0 -49
  153. package/template/packages/notis-sdk/src/hooks/useUpsertDocument.ts +0 -57
  154. package/template/packages/notis-sdk/src/index.ts +0 -47
  155. package/template/packages/notis-sdk/src/provider.tsx +0 -44
  156. package/template/packages/notis-sdk/src/runtime.ts +0 -159
  157. package/template/packages/notis-sdk/src/styles.css +0 -123
  158. package/template/packages/notis-sdk/src/vite.ts +0 -54
  159. /package/template/packages/{notis-sdk → sdk}/src/hooks/useBackend.ts +0 -0
  160. /package/template/packages/{notis-sdk → sdk}/src/hooks/useTools.ts +0 -0
  161. /package/template/packages/{notis-sdk → sdk}/src/ui.ts +0 -0
@@ -0,0 +1,3642 @@
1
+ {
2
+ "name": "my-notis-app",
3
+ "version": "0.1.0",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "my-notis-app",
9
+ "version": "0.1.0",
10
+ "dependencies": {
11
+ "@notis/sdk": "file:./packages/sdk",
12
+ "@phosphor-icons/react": "^2.1.10",
13
+ "@radix-ui/react-slot": "^1.3.3",
14
+ "class-variance-authority": "^0.7.0",
15
+ "clsx": "^2.1.1",
16
+ "react": "^19.2.8",
17
+ "react-dom": "^19.2.8",
18
+ "tailwind-merge": "^3.6.0",
19
+ "tailwindcss-animate": "^1.0.7"
20
+ },
21
+ "devDependencies": {
22
+ "@tailwindcss/postcss": "^4.3.3",
23
+ "@types/node": "^22.0.0",
24
+ "@types/react": "^19.2.18",
25
+ "@types/react-dom": "^19.2.7",
26
+ "@typescript/native": "npm:typescript@^7.0.2",
27
+ "@vitejs/plugin-react": "^6.1.1",
28
+ "postcss": "^8.5.28",
29
+ "tailwindcss": "^4.3.3",
30
+ "typescript": "npm:@typescript/typescript6@^6.0.2",
31
+ "vite": "^8.2.2"
32
+ }
33
+ },
34
+ "node_modules/@alloc/quick-lru": {
35
+ "version": "5.2.0",
36
+ "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz",
37
+ "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==",
38
+ "dev": true,
39
+ "license": "MIT",
40
+ "engines": {
41
+ "node": ">=10"
42
+ },
43
+ "funding": {
44
+ "url": "https://github.com/sponsors/sindresorhus"
45
+ }
46
+ },
47
+ "node_modules/@jridgewell/gen-mapping": {
48
+ "version": "0.3.13",
49
+ "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
50
+ "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
51
+ "dev": true,
52
+ "license": "MIT",
53
+ "dependencies": {
54
+ "@jridgewell/sourcemap-codec": "^1.5.0",
55
+ "@jridgewell/trace-mapping": "^0.3.24"
56
+ }
57
+ },
58
+ "node_modules/@jridgewell/remapping": {
59
+ "version": "2.3.5",
60
+ "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz",
61
+ "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==",
62
+ "dev": true,
63
+ "license": "MIT",
64
+ "dependencies": {
65
+ "@jridgewell/gen-mapping": "^0.3.5",
66
+ "@jridgewell/trace-mapping": "^0.3.24"
67
+ }
68
+ },
69
+ "node_modules/@jridgewell/resolve-uri": {
70
+ "version": "3.1.2",
71
+ "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
72
+ "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
73
+ "dev": true,
74
+ "license": "MIT",
75
+ "engines": {
76
+ "node": ">=6.0.0"
77
+ }
78
+ },
79
+ "node_modules/@jridgewell/sourcemap-codec": {
80
+ "version": "1.6.0",
81
+ "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.6.0.tgz",
82
+ "integrity": "sha512-T7jf+5zgsZHwNJ4lvQ7/aezbyk0nNX+zJVWpmHA7VYsEx7a7qr5Rg5IbtJFqkgze5Y2sruq1RUY8Q837Od7iFw==",
83
+ "dev": true,
84
+ "license": "MIT"
85
+ },
86
+ "node_modules/@jridgewell/trace-mapping": {
87
+ "version": "0.3.31",
88
+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
89
+ "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
90
+ "dev": true,
91
+ "license": "MIT",
92
+ "dependencies": {
93
+ "@jridgewell/resolve-uri": "^3.1.0",
94
+ "@jridgewell/sourcemap-codec": "^1.4.14"
95
+ }
96
+ },
97
+ "node_modules/@notis/sdk": {
98
+ "resolved": "packages/sdk",
99
+ "link": true
100
+ },
101
+ "node_modules/@oxc-project/types": {
102
+ "version": "0.148.0",
103
+ "resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.148.0.tgz",
104
+ "integrity": "sha512-Nm4s/jB+4FpFsPhWGEC4h7rzksesmtnMXomo6rCMcg/b8zLQuOziRgkCS1fxDCXOlJB/6Q8oABOZ/OP6RIPj9A==",
105
+ "license": "MIT",
106
+ "funding": {
107
+ "url": "https://github.com/sponsors/oxc-project"
108
+ }
109
+ },
110
+ "node_modules/@phosphor-icons/react": {
111
+ "version": "2.1.10",
112
+ "resolved": "https://registry.npmjs.org/@phosphor-icons/react/-/react-2.1.10.tgz",
113
+ "integrity": "sha512-vt8Tvq8GLjheAZZYa+YG/pW7HDbov8El/MANW8pOAz4eGxrwhnbfrQZq0Cp4q8zBEu8NIhHdnr+r8thnfRSNYA==",
114
+ "license": "MIT",
115
+ "engines": {
116
+ "node": ">=10"
117
+ },
118
+ "peerDependencies": {
119
+ "react": ">= 16.8",
120
+ "react-dom": ">= 16.8"
121
+ }
122
+ },
123
+ "node_modules/@radix-ui/react-compose-refs": {
124
+ "version": "1.1.5",
125
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.1.5.tgz",
126
+ "integrity": "sha512-+48PbAAbq3didjJxa+OaWY2ZwgAKsNiRGyeHKszblZMQ+kcpd9pAaT11cMkGEie0vsOi3QdeTE6d5Fe3Gn61kA==",
127
+ "license": "MIT",
128
+ "peerDependencies": {
129
+ "@types/react": "*",
130
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
131
+ },
132
+ "peerDependenciesMeta": {
133
+ "@types/react": {
134
+ "optional": true
135
+ }
136
+ }
137
+ },
138
+ "node_modules/@radix-ui/react-slot": {
139
+ "version": "1.3.3",
140
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.3.3.tgz",
141
+ "integrity": "sha512-qx7oqnYbxnK9kYI9m317qmFmEgo6ywqWvbTogdj7cL9p3/yx4M48p7Rnw5z3H890cL/ow/EeWJsuTykeZVXP5Q==",
142
+ "license": "MIT",
143
+ "dependencies": {
144
+ "@radix-ui/react-compose-refs": "1.1.5"
145
+ },
146
+ "peerDependencies": {
147
+ "@types/react": "*",
148
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
149
+ },
150
+ "peerDependenciesMeta": {
151
+ "@types/react": {
152
+ "optional": true
153
+ }
154
+ }
155
+ },
156
+ "node_modules/@rolldown/binding-android-arm-eabi": {
157
+ "version": "1.2.7",
158
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm-eabi/-/binding-android-arm-eabi-1.2.7.tgz",
159
+ "integrity": "sha512-EypzgnYCwyVY4NDHKzGmNJT5b+XaQEBniHxsMdeIQLB/tcCzZnhqrzHpZFbX9iaxx+5RiB8caATBtfvZP7zVxQ==",
160
+ "cpu": [
161
+ "arm"
162
+ ],
163
+ "license": "MIT",
164
+ "optional": true,
165
+ "os": [
166
+ "android"
167
+ ],
168
+ "engines": {
169
+ "node": "^20.19.0 || >=22.12.0"
170
+ }
171
+ },
172
+ "node_modules/@rolldown/binding-android-arm64": {
173
+ "version": "1.2.7",
174
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm64/-/binding-android-arm64-1.2.7.tgz",
175
+ "integrity": "sha512-l17HE9EweWaqJZhuUuNBN/FzM62xw+DECVnJyvMsxn8vJFAGLy5QfLDoYAcronkAN8VxKZHezDpulHDPx95vFw==",
176
+ "cpu": [
177
+ "arm64"
178
+ ],
179
+ "license": "MIT",
180
+ "optional": true,
181
+ "os": [
182
+ "android"
183
+ ],
184
+ "engines": {
185
+ "node": "^20.19.0 || >=22.12.0"
186
+ }
187
+ },
188
+ "node_modules/@rolldown/binding-darwin-arm64": {
189
+ "version": "1.2.7",
190
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.2.7.tgz",
191
+ "integrity": "sha512-8ED8ELFvHXc6OCETIn4gXObPiaR6bckM/ipXtbzlPVDRMBfEGjCKgO90F9YtfdpDatVx/ZQw7aZ1vUMf/+T3Mw==",
192
+ "cpu": [
193
+ "arm64"
194
+ ],
195
+ "license": "MIT",
196
+ "optional": true,
197
+ "os": [
198
+ "darwin"
199
+ ],
200
+ "engines": {
201
+ "node": "^20.19.0 || >=22.12.0"
202
+ }
203
+ },
204
+ "node_modules/@rolldown/binding-darwin-x64": {
205
+ "version": "1.2.7",
206
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.2.7.tgz",
207
+ "integrity": "sha512-/WPripjtiAIZ2tWY7ddijORT0Ujg87wxWW/qcoFVCKAWVDPhtY0xr7Dj0M3GyNGz60jGwTElhro/mkF9dT7dDQ==",
208
+ "cpu": [
209
+ "x64"
210
+ ],
211
+ "license": "MIT",
212
+ "optional": true,
213
+ "os": [
214
+ "darwin"
215
+ ],
216
+ "engines": {
217
+ "node": "^20.19.0 || >=22.12.0"
218
+ }
219
+ },
220
+ "node_modules/@rolldown/binding-freebsd-x64": {
221
+ "version": "1.2.7",
222
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.2.7.tgz",
223
+ "integrity": "sha512-14DI4NcqpvbICxSnGLx3PmtDaWqRP/KGSGb6C+JLLVPeZRl6dKdHba3pGsqT3vpdTqhEYIPG0MMQ8c0xYqoJxA==",
224
+ "cpu": [
225
+ "x64"
226
+ ],
227
+ "license": "MIT",
228
+ "optional": true,
229
+ "os": [
230
+ "freebsd"
231
+ ],
232
+ "engines": {
233
+ "node": "^20.19.0 || >=22.12.0"
234
+ }
235
+ },
236
+ "node_modules/@rolldown/binding-linux-arm-gnueabihf": {
237
+ "version": "1.2.7",
238
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.2.7.tgz",
239
+ "integrity": "sha512-bxrWIRvHWQvbJwi+VIie/kDJmQxcNE6xxWwZdqF/ExVAigtHkv54WTLQPb+QsZdnFy18fg7JPfWGL0RH6vwIlQ==",
240
+ "cpu": [
241
+ "arm"
242
+ ],
243
+ "license": "MIT",
244
+ "optional": true,
245
+ "os": [
246
+ "linux"
247
+ ],
248
+ "engines": {
249
+ "node": "^20.19.0 || >=22.12.0"
250
+ }
251
+ },
252
+ "node_modules/@rolldown/binding-linux-arm64-gnu": {
253
+ "version": "1.2.7",
254
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.2.7.tgz",
255
+ "integrity": "sha512-toOY2BChBZyuxU7OYX6Tn389di4IzAqPTycVcci0O7FSfBqzRB3RZn+K5Is6ANf4tmgRd/K1yZTsNTXbkXsnLg==",
256
+ "cpu": [
257
+ "arm64"
258
+ ],
259
+ "libc": [
260
+ "glibc"
261
+ ],
262
+ "license": "MIT",
263
+ "optional": true,
264
+ "os": [
265
+ "linux"
266
+ ],
267
+ "engines": {
268
+ "node": "^20.19.0 || >=22.12.0"
269
+ }
270
+ },
271
+ "node_modules/@rolldown/binding-linux-arm64-musl": {
272
+ "version": "1.2.7",
273
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.2.7.tgz",
274
+ "integrity": "sha512-lAIXTH/aiLRLxsTgQvfhjo4K1ydWIp00+V0voOr9beb/9ZmkUFrSIb03dXNFRgMNvkE6oGsF10ioQ6UsI+vS5Q==",
275
+ "cpu": [
276
+ "arm64"
277
+ ],
278
+ "libc": [
279
+ "musl"
280
+ ],
281
+ "license": "MIT",
282
+ "optional": true,
283
+ "os": [
284
+ "linux"
285
+ ],
286
+ "engines": {
287
+ "node": "^20.19.0 || >=22.12.0"
288
+ }
289
+ },
290
+ "node_modules/@rolldown/binding-linux-ppc64-gnu": {
291
+ "version": "1.2.7",
292
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.2.7.tgz",
293
+ "integrity": "sha512-kdnwS28Pkenp/mZMRwjXXXwxQ7pIsm+bF919LUK93BOyhcLsrVKdP2p9fxpiPNPAbNuch8ypQt0pm2P2LYCAGg==",
294
+ "cpu": [
295
+ "ppc64"
296
+ ],
297
+ "libc": [
298
+ "glibc"
299
+ ],
300
+ "license": "MIT",
301
+ "optional": true,
302
+ "os": [
303
+ "linux"
304
+ ],
305
+ "engines": {
306
+ "node": "^20.19.0 || >=22.12.0"
307
+ }
308
+ },
309
+ "node_modules/@rolldown/binding-linux-s390x-gnu": {
310
+ "version": "1.2.7",
311
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.2.7.tgz",
312
+ "integrity": "sha512-516OdsyLdr5E65paF3yBF55t8mfm9+gmtCsK3xI7XKXIT7EfRlHhxL8K/NR6Hu8BWSgF5+1w74lTL0+nxcc8Qw==",
313
+ "cpu": [
314
+ "s390x"
315
+ ],
316
+ "libc": [
317
+ "glibc"
318
+ ],
319
+ "license": "MIT",
320
+ "optional": true,
321
+ "os": [
322
+ "linux"
323
+ ],
324
+ "engines": {
325
+ "node": "^20.19.0 || >=22.12.0"
326
+ }
327
+ },
328
+ "node_modules/@rolldown/binding-linux-x64-gnu": {
329
+ "version": "1.2.7",
330
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.2.7.tgz",
331
+ "integrity": "sha512-r8/z8n7GFaYRln3xmP1Cxy0HH/HLM0uBUPkEuSVEfKGDA89M0FsZRZJRSwe/tJjRx+fpH/gjorfhB8tmEbSFLA==",
332
+ "cpu": [
333
+ "x64"
334
+ ],
335
+ "libc": [
336
+ "glibc"
337
+ ],
338
+ "license": "MIT",
339
+ "optional": true,
340
+ "os": [
341
+ "linux"
342
+ ],
343
+ "engines": {
344
+ "node": "^20.19.0 || >=22.12.0"
345
+ }
346
+ },
347
+ "node_modules/@rolldown/binding-linux-x64-musl": {
348
+ "version": "1.2.7",
349
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.2.7.tgz",
350
+ "integrity": "sha512-pAsE8iiDxUg1xBqdhrTfg45AVDVpirjz00sblEYClGNNcMnDb+e8beQgqIAw6LvauX/APvgxUnwrgun/YYGBhw==",
351
+ "cpu": [
352
+ "x64"
353
+ ],
354
+ "libc": [
355
+ "musl"
356
+ ],
357
+ "license": "MIT",
358
+ "optional": true,
359
+ "os": [
360
+ "linux"
361
+ ],
362
+ "engines": {
363
+ "node": "^20.19.0 || >=22.12.0"
364
+ }
365
+ },
366
+ "node_modules/@rolldown/binding-openharmony-arm64": {
367
+ "version": "1.2.7",
368
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.2.7.tgz",
369
+ "integrity": "sha512-lTcIYmmnQQA8Or/2DatS6oSqcdLHvendjS+zLu+FwgToynWMRSmQdpM65fTANJgIS4mjbMOo5KT2lnT9SAb96w==",
370
+ "cpu": [
371
+ "arm64"
372
+ ],
373
+ "license": "MIT",
374
+ "optional": true,
375
+ "os": [
376
+ "openharmony"
377
+ ],
378
+ "engines": {
379
+ "node": "^20.19.0 || >=22.12.0"
380
+ }
381
+ },
382
+ "node_modules/@rolldown/binding-win32-arm64-msvc": {
383
+ "version": "1.2.7",
384
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.2.7.tgz",
385
+ "integrity": "sha512-e3Gu3WxbNk/UqQhxqU7YIYO+9ZBvWNz3U+h/qRFosscMFzdRPbXYSaSWgSnklv2fz1TgzBTcti2z35c/7irsHw==",
386
+ "cpu": [
387
+ "arm64"
388
+ ],
389
+ "license": "MIT",
390
+ "optional": true,
391
+ "os": [
392
+ "win32"
393
+ ],
394
+ "engines": {
395
+ "node": "^20.19.0 || >=22.12.0"
396
+ }
397
+ },
398
+ "node_modules/@rolldown/binding-win32-x64-msvc": {
399
+ "version": "1.2.7",
400
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.2.7.tgz",
401
+ "integrity": "sha512-W/jg5qoRSqjsEv0+dZi4e687mcHqmVuU0P4fK6qS/xjetW2Gmc1W8j//z5nAeNcC8Ttm0hV46IjcYeuVwYhuiw==",
402
+ "cpu": [
403
+ "x64"
404
+ ],
405
+ "license": "MIT",
406
+ "optional": true,
407
+ "os": [
408
+ "win32"
409
+ ],
410
+ "engines": {
411
+ "node": "^20.19.0 || >=22.12.0"
412
+ }
413
+ },
414
+ "node_modules/@rolldown/pluginutils": {
415
+ "version": "1.0.1",
416
+ "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.1.tgz",
417
+ "integrity": "sha512-2j9bGt5Jh8hj+vPtgzPtl72j0yRxHAyumoo6TNfAjsLB04UtpSvPbPcDcBMxz7n+9CYB0c1GxQFxYRg2jimqGw==",
418
+ "license": "MIT"
419
+ },
420
+ "node_modules/@tailwindcss/node": {
421
+ "version": "4.3.3",
422
+ "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.3.3.tgz",
423
+ "integrity": "sha512-/T8IKEsf9VTU6tLjgC7+sv2mOPtQxzE2jMw7u4Tt40Tx+QSZxpzh95/H6cMKoja9XuW7iMdLJYBB0o9G1CaAgg==",
424
+ "dev": true,
425
+ "license": "MIT",
426
+ "dependencies": {
427
+ "@jridgewell/remapping": "^2.3.5",
428
+ "enhanced-resolve": "^5.24.1",
429
+ "jiti": "^2.7.0",
430
+ "lightningcss": "1.32.0",
431
+ "magic-string": "^0.30.21",
432
+ "source-map-js": "^1.2.1",
433
+ "tailwindcss": "4.3.3"
434
+ }
435
+ },
436
+ "node_modules/@tailwindcss/oxide": {
437
+ "version": "4.3.3",
438
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.3.3.tgz",
439
+ "integrity": "sha512-krXjAikiaFSPaK/FkAQT5UTx3VormQaiZ5hBFlJZ9UFQGB/rwg1MZIhHAG9smMQRTdyJxP6Qt5MwMtdyU5FWrA==",
440
+ "dev": true,
441
+ "license": "MIT",
442
+ "engines": {
443
+ "node": ">= 20"
444
+ },
445
+ "optionalDependencies": {
446
+ "@tailwindcss/oxide-android-arm64": "4.3.3",
447
+ "@tailwindcss/oxide-darwin-arm64": "4.3.3",
448
+ "@tailwindcss/oxide-darwin-x64": "4.3.3",
449
+ "@tailwindcss/oxide-freebsd-x64": "4.3.3",
450
+ "@tailwindcss/oxide-linux-arm-gnueabihf": "4.3.3",
451
+ "@tailwindcss/oxide-linux-arm64-gnu": "4.3.3",
452
+ "@tailwindcss/oxide-linux-arm64-musl": "4.3.3",
453
+ "@tailwindcss/oxide-linux-x64-gnu": "4.3.3",
454
+ "@tailwindcss/oxide-linux-x64-musl": "4.3.3",
455
+ "@tailwindcss/oxide-wasm32-wasi": "4.3.3",
456
+ "@tailwindcss/oxide-win32-arm64-msvc": "4.3.3",
457
+ "@tailwindcss/oxide-win32-x64-msvc": "4.3.3"
458
+ }
459
+ },
460
+ "node_modules/@tailwindcss/oxide-android-arm64": {
461
+ "version": "4.3.3",
462
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.3.3.tgz",
463
+ "integrity": "sha512-Y85A2gmPSkl5Ve5qR86GL4HT509cFqQh1aes9p3sSkyTPwt0Pppf3GkwGe4JPACcRYjgJIEhQgM6dBClnr0NYw==",
464
+ "cpu": [
465
+ "arm64"
466
+ ],
467
+ "dev": true,
468
+ "license": "MIT",
469
+ "optional": true,
470
+ "os": [
471
+ "android"
472
+ ],
473
+ "engines": {
474
+ "node": ">= 20"
475
+ }
476
+ },
477
+ "node_modules/@tailwindcss/oxide-darwin-arm64": {
478
+ "version": "4.3.3",
479
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.3.3.tgz",
480
+ "integrity": "sha512-BiaWatpBcERQFDlOjRDpIVXuFK5PJez5SA4JMg6VYZdBYU+qKfV/vqjcIs+IYmtitf1xYQZTwXvU/8y4lfZUGw==",
481
+ "cpu": [
482
+ "arm64"
483
+ ],
484
+ "dev": true,
485
+ "license": "MIT",
486
+ "optional": true,
487
+ "os": [
488
+ "darwin"
489
+ ],
490
+ "engines": {
491
+ "node": ">= 20"
492
+ }
493
+ },
494
+ "node_modules/@tailwindcss/oxide-darwin-x64": {
495
+ "version": "4.3.3",
496
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.3.3.tgz",
497
+ "integrity": "sha512-fAeUqfV5ndhxRwai8cXGzdLvul9utWOmeTkv69unv4ZXixjn61Z+p9lCWdwOwA3TYboG3BwdVuN/RDjhBRl0mw==",
498
+ "cpu": [
499
+ "x64"
500
+ ],
501
+ "dev": true,
502
+ "license": "MIT",
503
+ "optional": true,
504
+ "os": [
505
+ "darwin"
506
+ ],
507
+ "engines": {
508
+ "node": ">= 20"
509
+ }
510
+ },
511
+ "node_modules/@tailwindcss/oxide-freebsd-x64": {
512
+ "version": "4.3.3",
513
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.3.3.tgz",
514
+ "integrity": "sha512-iyf5bV6+wnAlflVeEy7R25dupxTNECZN5QMI0qNT6eT+EgaGdZcKhGkr5SdoaWiLJ3spLqIY9VCeSGrwmtg4kw==",
515
+ "cpu": [
516
+ "x64"
517
+ ],
518
+ "dev": true,
519
+ "license": "MIT",
520
+ "optional": true,
521
+ "os": [
522
+ "freebsd"
523
+ ],
524
+ "engines": {
525
+ "node": ">= 20"
526
+ }
527
+ },
528
+ "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": {
529
+ "version": "4.3.3",
530
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.3.3.tgz",
531
+ "integrity": "sha512-aAYUprJAJQWWbRrPvtjdroZ56Md+JM8pMiopS6xGEwDfLhqj+2ver2p4nU4Mb3CRqcMmNBjo8KkUgcxhkzVQGQ==",
532
+ "cpu": [
533
+ "arm"
534
+ ],
535
+ "dev": true,
536
+ "license": "MIT",
537
+ "optional": true,
538
+ "os": [
539
+ "linux"
540
+ ],
541
+ "engines": {
542
+ "node": ">= 20"
543
+ }
544
+ },
545
+ "node_modules/@tailwindcss/oxide-linux-arm64-gnu": {
546
+ "version": "4.3.3",
547
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.3.3.tgz",
548
+ "integrity": "sha512-nDxldcEENOxZRzC2uu9jrutZdAAQtb+8WWDCSnWL1zvBk1+FN+x6MtDViPB5AJMfttVCUhehGWus3XBPgatM/w==",
549
+ "cpu": [
550
+ "arm64"
551
+ ],
552
+ "dev": true,
553
+ "libc": [
554
+ "glibc"
555
+ ],
556
+ "license": "MIT",
557
+ "optional": true,
558
+ "os": [
559
+ "linux"
560
+ ],
561
+ "engines": {
562
+ "node": ">= 20"
563
+ }
564
+ },
565
+ "node_modules/@tailwindcss/oxide-linux-arm64-musl": {
566
+ "version": "4.3.3",
567
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.3.3.tgz",
568
+ "integrity": "sha512-Md44bD6veX/PC5iyF8cDVnw4HBIANZepRZZ7a8DQOvkfo5WUBwcp6iAuCUz23u+4SUkhJlD3eL7hNdW8ezd/kA==",
569
+ "cpu": [
570
+ "arm64"
571
+ ],
572
+ "dev": true,
573
+ "libc": [
574
+ "musl"
575
+ ],
576
+ "license": "MIT",
577
+ "optional": true,
578
+ "os": [
579
+ "linux"
580
+ ],
581
+ "engines": {
582
+ "node": ">= 20"
583
+ }
584
+ },
585
+ "node_modules/@tailwindcss/oxide-linux-x64-gnu": {
586
+ "version": "4.3.3",
587
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.3.3.tgz",
588
+ "integrity": "sha512-tx7us1muwOKAKWao2v/GaafFeQboE6aj88vC6ziN2NCGcRm8gWUhwjzg+YdVB1e4boAtdtma4L43onunI6NS4w==",
589
+ "cpu": [
590
+ "x64"
591
+ ],
592
+ "dev": true,
593
+ "libc": [
594
+ "glibc"
595
+ ],
596
+ "license": "MIT",
597
+ "optional": true,
598
+ "os": [
599
+ "linux"
600
+ ],
601
+ "engines": {
602
+ "node": ">= 20"
603
+ }
604
+ },
605
+ "node_modules/@tailwindcss/oxide-linux-x64-musl": {
606
+ "version": "4.3.3",
607
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.3.3.tgz",
608
+ "integrity": "sha512-SJxX60smvHgasZoBy11dX6YRjXJFovwWBoedhbQPOBzgFWBHGB+TVPWB9BxzR7TTxU8FQZAI2AyiNCMzFm8Img==",
609
+ "cpu": [
610
+ "x64"
611
+ ],
612
+ "dev": true,
613
+ "libc": [
614
+ "musl"
615
+ ],
616
+ "license": "MIT",
617
+ "optional": true,
618
+ "os": [
619
+ "linux"
620
+ ],
621
+ "engines": {
622
+ "node": ">= 20"
623
+ }
624
+ },
625
+ "node_modules/@tailwindcss/oxide-wasm32-wasi": {
626
+ "version": "4.3.3",
627
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.3.3.tgz",
628
+ "integrity": "sha512-jx1+rPhY/5Ympkktd656HBWEBLxP7dH06losBLjjf5vgCODXvi9KhtftWcMIwTFIDqBr7cRnQkdLnAG+IOlGvQ==",
629
+ "bundleDependencies": [
630
+ "@napi-rs/wasm-runtime",
631
+ "@emnapi/core",
632
+ "@emnapi/runtime",
633
+ "@tybys/wasm-util",
634
+ "@emnapi/wasi-threads",
635
+ "tslib"
636
+ ],
637
+ "cpu": [
638
+ "wasm32"
639
+ ],
640
+ "dev": true,
641
+ "license": "MIT",
642
+ "optional": true,
643
+ "dependencies": {
644
+ "@emnapi/core": "^1.11.1",
645
+ "@emnapi/runtime": "^1.11.1",
646
+ "@emnapi/wasi-threads": "^1.2.2",
647
+ "@napi-rs/wasm-runtime": "^1.1.4",
648
+ "@tybys/wasm-util": "^0.10.2",
649
+ "tslib": "^2.8.1"
650
+ },
651
+ "engines": {
652
+ "node": ">=14.0.0"
653
+ }
654
+ },
655
+ "node_modules/@tailwindcss/oxide-win32-arm64-msvc": {
656
+ "version": "4.3.3",
657
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.3.3.tgz",
658
+ "integrity": "sha512-3rc292Ca2ceK6Ulcc/bAVnTs/3nDtoPhyEKlgPv+yQJQi/JS/AMJlqzxvlDacL1nekbrcf6bTqp/jV4qgnPxNQ==",
659
+ "cpu": [
660
+ "arm64"
661
+ ],
662
+ "dev": true,
663
+ "license": "MIT",
664
+ "optional": true,
665
+ "os": [
666
+ "win32"
667
+ ],
668
+ "engines": {
669
+ "node": ">= 20"
670
+ }
671
+ },
672
+ "node_modules/@tailwindcss/oxide-win32-x64-msvc": {
673
+ "version": "4.3.3",
674
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.3.3.tgz",
675
+ "integrity": "sha512-yJ0pwIVc/nYeGoV02WtsN8KYyLQv7kyI2wDnkezyJlGGjkd4QLwDGAwl47YpPJeuI0M0ObaXGSPjvWDPeTPggw==",
676
+ "cpu": [
677
+ "x64"
678
+ ],
679
+ "dev": true,
680
+ "license": "MIT",
681
+ "optional": true,
682
+ "os": [
683
+ "win32"
684
+ ],
685
+ "engines": {
686
+ "node": ">= 20"
687
+ }
688
+ },
689
+ "node_modules/@tailwindcss/postcss": {
690
+ "version": "4.3.3",
691
+ "resolved": "https://registry.npmjs.org/@tailwindcss/postcss/-/postcss-4.3.3.tgz",
692
+ "integrity": "sha512-JTSZZGQi1AyKirbLN3azmjVzef92tcX7h+iSqPdaeStyFpGpDlKvvpxeOE8njhbUanbRwr3z8DyzhICWnMtQeg==",
693
+ "dev": true,
694
+ "license": "MIT",
695
+ "dependencies": {
696
+ "@alloc/quick-lru": "^5.2.0",
697
+ "@tailwindcss/node": "4.3.3",
698
+ "@tailwindcss/oxide": "4.3.3",
699
+ "postcss": "^8.5.16",
700
+ "tailwindcss": "4.3.3"
701
+ }
702
+ },
703
+ "node_modules/@types/debug": {
704
+ "version": "4.1.13",
705
+ "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.13.tgz",
706
+ "integrity": "sha512-KSVgmQmzMwPlmtljOomayoR89W4FynCAi3E8PPs7vmDVPe84hT+vGPKkJfThkmXs0x0jAaa9U8uW8bbfyS2fWw==",
707
+ "license": "MIT",
708
+ "dependencies": {
709
+ "@types/ms": "*"
710
+ }
711
+ },
712
+ "node_modules/@types/estree": {
713
+ "version": "1.0.9",
714
+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.9.tgz",
715
+ "integrity": "sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==",
716
+ "license": "MIT"
717
+ },
718
+ "node_modules/@types/estree-jsx": {
719
+ "version": "1.0.5",
720
+ "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.5.tgz",
721
+ "integrity": "sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==",
722
+ "license": "MIT",
723
+ "dependencies": {
724
+ "@types/estree": "*"
725
+ }
726
+ },
727
+ "node_modules/@types/hast": {
728
+ "version": "3.0.5",
729
+ "resolved": "https://registry.npmjs.org/@types/hast/-/hast-3.0.5.tgz",
730
+ "integrity": "sha512-rp/ezSWaD1m44dPKICGhiskI13nVr7qTloFwDa/IYkhhf5nzwP+zIQcIJh3WIFSBOy/H1PzB40jPjMDksN4F+g==",
731
+ "license": "MIT",
732
+ "dependencies": {
733
+ "@types/unist": "*"
734
+ }
735
+ },
736
+ "node_modules/@types/mdast": {
737
+ "version": "4.0.4",
738
+ "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz",
739
+ "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==",
740
+ "license": "MIT",
741
+ "dependencies": {
742
+ "@types/unist": "*"
743
+ }
744
+ },
745
+ "node_modules/@types/ms": {
746
+ "version": "2.1.0",
747
+ "resolved": "https://registry.npmjs.org/@types/ms/-/ms-2.1.0.tgz",
748
+ "integrity": "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==",
749
+ "license": "MIT"
750
+ },
751
+ "node_modules/@types/node": {
752
+ "version": "22.20.1",
753
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-22.20.1.tgz",
754
+ "integrity": "sha512-EANqOCF9QFyra+4pfxUcX9STKJpCLjMbObVzljIJomAWSnuSIEAvyzEU53GaajbXJEgdh0iEcPL+DGvpUd4k1Q==",
755
+ "devOptional": true,
756
+ "license": "MIT",
757
+ "dependencies": {
758
+ "undici-types": "~6.21.0"
759
+ }
760
+ },
761
+ "node_modules/@types/react": {
762
+ "version": "19.2.18",
763
+ "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.18.tgz",
764
+ "integrity": "sha512-AnzbBERsrLKtk2XSfTbYRLjQPdy116Sty4q+T+Bp3IC4l6jNBvreVPAHmpq9qhXQM7CXZPjLVmGMw9sy+hxQ3w==",
765
+ "license": "MIT",
766
+ "dependencies": {
767
+ "csstype": "^3.2.2"
768
+ }
769
+ },
770
+ "node_modules/@types/react-dom": {
771
+ "version": "19.2.7",
772
+ "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.7.tgz",
773
+ "integrity": "sha512-I8bPpDLcHBv1qiIiXDCy71Rt8eQDKJP0sMSWJphDdAcdqiJ1sGpZamavoEIRZmYzjia9LuEb2HlYdDpmoENpvQ==",
774
+ "dev": true,
775
+ "license": "MIT",
776
+ "peerDependencies": {
777
+ "@types/react": "^19.2.0"
778
+ }
779
+ },
780
+ "node_modules/@types/unist": {
781
+ "version": "3.0.3",
782
+ "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz",
783
+ "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==",
784
+ "license": "MIT"
785
+ },
786
+ "node_modules/@typescript/native": {
787
+ "name": "typescript",
788
+ "version": "7.0.2",
789
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-7.0.2.tgz",
790
+ "integrity": "sha512-8FYau96o3NKOhbjKi/qNvG/W5jhzxkbdm5sj9AbZ/5T5sWqn3hJgLfGx27sRKZWTvyzCP8dLRBTf5tBTSRVUNA==",
791
+ "dev": true,
792
+ "license": "Apache-2.0",
793
+ "bin": {
794
+ "tsc": "bin/tsc"
795
+ },
796
+ "engines": {
797
+ "node": ">=16.20.0"
798
+ },
799
+ "optionalDependencies": {
800
+ "@typescript/typescript-aix-ppc64": "7.0.2",
801
+ "@typescript/typescript-darwin-arm64": "7.0.2",
802
+ "@typescript/typescript-darwin-x64": "7.0.2",
803
+ "@typescript/typescript-freebsd-arm64": "7.0.2",
804
+ "@typescript/typescript-freebsd-x64": "7.0.2",
805
+ "@typescript/typescript-linux-arm": "7.0.2",
806
+ "@typescript/typescript-linux-arm64": "7.0.2",
807
+ "@typescript/typescript-linux-loong64": "7.0.2",
808
+ "@typescript/typescript-linux-mips64el": "7.0.2",
809
+ "@typescript/typescript-linux-ppc64": "7.0.2",
810
+ "@typescript/typescript-linux-riscv64": "7.0.2",
811
+ "@typescript/typescript-linux-s390x": "7.0.2",
812
+ "@typescript/typescript-linux-x64": "7.0.2",
813
+ "@typescript/typescript-netbsd-arm64": "7.0.2",
814
+ "@typescript/typescript-netbsd-x64": "7.0.2",
815
+ "@typescript/typescript-openbsd-arm64": "7.0.2",
816
+ "@typescript/typescript-openbsd-x64": "7.0.2",
817
+ "@typescript/typescript-sunos-x64": "7.0.2",
818
+ "@typescript/typescript-win32-arm64": "7.0.2",
819
+ "@typescript/typescript-win32-x64": "7.0.2"
820
+ }
821
+ },
822
+ "node_modules/@typescript/old": {
823
+ "name": "typescript",
824
+ "version": "6.0.3",
825
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-6.0.3.tgz",
826
+ "integrity": "sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw==",
827
+ "dev": true,
828
+ "license": "Apache-2.0",
829
+ "bin": {
830
+ "tsc": "bin/tsc",
831
+ "tsserver": "bin/tsserver"
832
+ },
833
+ "engines": {
834
+ "node": ">=14.17"
835
+ }
836
+ },
837
+ "node_modules/@typescript/typescript-aix-ppc64": {
838
+ "version": "7.0.2",
839
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-aix-ppc64/-/typescript-aix-ppc64-7.0.2.tgz",
840
+ "integrity": "sha512-MTKKkWB7p/0E9xi1d1tHtZ5PiLkGEMIq88pK2CubZjOsLtYTLqhgIgi6zepFa+9GHZ6h05NMCkQxGKiPXMxXtQ==",
841
+ "cpu": [
842
+ "ppc64"
843
+ ],
844
+ "dev": true,
845
+ "license": "Apache-2.0",
846
+ "optional": true,
847
+ "os": [
848
+ "aix"
849
+ ],
850
+ "engines": {
851
+ "node": ">=16.20.0"
852
+ }
853
+ },
854
+ "node_modules/@typescript/typescript-darwin-arm64": {
855
+ "version": "7.0.2",
856
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-darwin-arm64/-/typescript-darwin-arm64-7.0.2.tgz",
857
+ "integrity": "sha512-gowzar9MwS/aRWp6f3a4KUqzRjAZjOsmGNCM6LcTgXum+dBfgsBVMN+AgvOCCbguXyick6LJhpBszxMebJ8syA==",
858
+ "cpu": [
859
+ "arm64"
860
+ ],
861
+ "dev": true,
862
+ "license": "Apache-2.0",
863
+ "optional": true,
864
+ "os": [
865
+ "darwin"
866
+ ],
867
+ "engines": {
868
+ "node": ">=16.20.0"
869
+ }
870
+ },
871
+ "node_modules/@typescript/typescript-darwin-x64": {
872
+ "version": "7.0.2",
873
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-darwin-x64/-/typescript-darwin-x64-7.0.2.tgz",
874
+ "integrity": "sha512-SZ9xZInqApNlNGc9s0W1VSsktYSOe9cFqNOIqmN1Gs8SmkjKZYFt017G4VwPxASInODuAdbTW7sXiFUf893RgA==",
875
+ "cpu": [
876
+ "x64"
877
+ ],
878
+ "dev": true,
879
+ "license": "Apache-2.0",
880
+ "optional": true,
881
+ "os": [
882
+ "darwin"
883
+ ],
884
+ "engines": {
885
+ "node": ">=16.20.0"
886
+ }
887
+ },
888
+ "node_modules/@typescript/typescript-freebsd-arm64": {
889
+ "version": "7.0.2",
890
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-freebsd-arm64/-/typescript-freebsd-arm64-7.0.2.tgz",
891
+ "integrity": "sha512-W5NH4y/J0plIIS5b2xvTEkU7JFxyqdMAOgf+Ilhl0vHQXKO5dZoxd+C/jEtq56c4F3wk71RB4BMRQ2XdI+bwYQ==",
892
+ "cpu": [
893
+ "arm64"
894
+ ],
895
+ "dev": true,
896
+ "license": "Apache-2.0",
897
+ "optional": true,
898
+ "os": [
899
+ "freebsd"
900
+ ],
901
+ "engines": {
902
+ "node": ">=16.20.0"
903
+ }
904
+ },
905
+ "node_modules/@typescript/typescript-freebsd-x64": {
906
+ "version": "7.0.2",
907
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-freebsd-x64/-/typescript-freebsd-x64-7.0.2.tgz",
908
+ "integrity": "sha512-UMGDx5sTpzNw3WiPebH7l90IWfJggEd+egHt/q6p7/Cm3zqoV7VxkGXt+3DxPIw8CcmvAB0j3sVVfbhX+M4Tpw==",
909
+ "cpu": [
910
+ "x64"
911
+ ],
912
+ "dev": true,
913
+ "license": "Apache-2.0",
914
+ "optional": true,
915
+ "os": [
916
+ "freebsd"
917
+ ],
918
+ "engines": {
919
+ "node": ">=16.20.0"
920
+ }
921
+ },
922
+ "node_modules/@typescript/typescript-linux-arm": {
923
+ "version": "7.0.2",
924
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-arm/-/typescript-linux-arm-7.0.2.tgz",
925
+ "integrity": "sha512-gffT3xPz9sR7j/YJExkyPntrI0P2EP9XbOyWzth2/Gs0RstK+90RBcO0ncXoXy/beYll1SXw846Nf2zdnEz0QQ==",
926
+ "cpu": [
927
+ "arm"
928
+ ],
929
+ "dev": true,
930
+ "license": "Apache-2.0",
931
+ "optional": true,
932
+ "os": [
933
+ "linux"
934
+ ],
935
+ "engines": {
936
+ "node": ">=16.20.0"
937
+ }
938
+ },
939
+ "node_modules/@typescript/typescript-linux-arm64": {
940
+ "version": "7.0.2",
941
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-arm64/-/typescript-linux-arm64-7.0.2.tgz",
942
+ "integrity": "sha512-Qh4eU4/y3yDjnfjjyPYihMj5/ODIlmt+Bzu17OI+fiSRDW57QmU5SiN63exPRNJPKUzcc1INa1NXdrJ+MqHjUQ==",
943
+ "cpu": [
944
+ "arm64"
945
+ ],
946
+ "dev": true,
947
+ "license": "Apache-2.0",
948
+ "optional": true,
949
+ "os": [
950
+ "linux"
951
+ ],
952
+ "engines": {
953
+ "node": ">=16.20.0"
954
+ }
955
+ },
956
+ "node_modules/@typescript/typescript-linux-loong64": {
957
+ "version": "7.0.2",
958
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-loong64/-/typescript-linux-loong64-7.0.2.tgz",
959
+ "integrity": "sha512-uEHck9i8hoAzXPiYRib1O7miOnz23SxIeVl6F4LXox+qov1K35jHcEW6VHKvZI+pyvl7fZEP4MCU5LYvIq1GuQ==",
960
+ "cpu": [
961
+ "loong64"
962
+ ],
963
+ "dev": true,
964
+ "license": "Apache-2.0",
965
+ "optional": true,
966
+ "os": [
967
+ "linux"
968
+ ],
969
+ "engines": {
970
+ "node": ">=16.20.0"
971
+ }
972
+ },
973
+ "node_modules/@typescript/typescript-linux-mips64el": {
974
+ "version": "7.0.2",
975
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-mips64el/-/typescript-linux-mips64el-7.0.2.tgz",
976
+ "integrity": "sha512-R4KvAMnE43W5Qeqb0Ly56O3mWMWIAgsMyz36DCaycd5nbg/9kzm0liw3JocfRqyJY0KPmzFjbswozXyW0DnIYA==",
977
+ "cpu": [
978
+ "mips64el"
979
+ ],
980
+ "dev": true,
981
+ "license": "Apache-2.0",
982
+ "optional": true,
983
+ "os": [
984
+ "linux"
985
+ ],
986
+ "engines": {
987
+ "node": ">=16.20.0"
988
+ }
989
+ },
990
+ "node_modules/@typescript/typescript-linux-ppc64": {
991
+ "version": "7.0.2",
992
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-ppc64/-/typescript-linux-ppc64-7.0.2.tgz",
993
+ "integrity": "sha512-DORx5b3sd/4S7eayxm4FQv+A7CrkUIGRaHiwI8oiHTAI1fAPWhF4J0vAlkC8biAlHSVVwxMQ3tjZ2/DVbnQiiA==",
994
+ "cpu": [
995
+ "ppc64"
996
+ ],
997
+ "dev": true,
998
+ "license": "Apache-2.0",
999
+ "optional": true,
1000
+ "os": [
1001
+ "linux"
1002
+ ],
1003
+ "engines": {
1004
+ "node": ">=16.20.0"
1005
+ }
1006
+ },
1007
+ "node_modules/@typescript/typescript-linux-riscv64": {
1008
+ "version": "7.0.2",
1009
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-riscv64/-/typescript-linux-riscv64-7.0.2.tgz",
1010
+ "integrity": "sha512-wf0jqEDOjrPRnKwYRyyJDRo11KMbvMFrU+q4zqKyChODBzvlkbhNQfKvLxQCcwTpdDaXSHZTVuh0JoCrKCUMHQ==",
1011
+ "cpu": [
1012
+ "riscv64"
1013
+ ],
1014
+ "dev": true,
1015
+ "license": "Apache-2.0",
1016
+ "optional": true,
1017
+ "os": [
1018
+ "linux"
1019
+ ],
1020
+ "engines": {
1021
+ "node": ">=16.20.0"
1022
+ }
1023
+ },
1024
+ "node_modules/@typescript/typescript-linux-s390x": {
1025
+ "version": "7.0.2",
1026
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-s390x/-/typescript-linux-s390x-7.0.2.tgz",
1027
+ "integrity": "sha512-IkwJc3L7yhytWd/ewjyxNDfOmswCm9GWMJT/ue/dU4aZNbwZeYAetq42VyLmsmSjvoX7z74X6ZaYCtzAr0EuGw==",
1028
+ "cpu": [
1029
+ "s390x"
1030
+ ],
1031
+ "dev": true,
1032
+ "license": "Apache-2.0",
1033
+ "optional": true,
1034
+ "os": [
1035
+ "linux"
1036
+ ],
1037
+ "engines": {
1038
+ "node": ">=16.20.0"
1039
+ }
1040
+ },
1041
+ "node_modules/@typescript/typescript-linux-x64": {
1042
+ "version": "7.0.2",
1043
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-x64/-/typescript-linux-x64-7.0.2.tgz",
1044
+ "integrity": "sha512-EYdf2cNg7rgCWJnxCdJ+F3V39O8ihb37eHAu1LK8oAFizgTQbPOK7zHHXbPt8rX24COqODXeI3sIf0fCXG7H/A==",
1045
+ "cpu": [
1046
+ "x64"
1047
+ ],
1048
+ "dev": true,
1049
+ "license": "Apache-2.0",
1050
+ "optional": true,
1051
+ "os": [
1052
+ "linux"
1053
+ ],
1054
+ "engines": {
1055
+ "node": ">=16.20.0"
1056
+ }
1057
+ },
1058
+ "node_modules/@typescript/typescript-netbsd-arm64": {
1059
+ "version": "7.0.2",
1060
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-netbsd-arm64/-/typescript-netbsd-arm64-7.0.2.tgz",
1061
+ "integrity": "sha512-+polYF4MF04aPpO5FTkHran9yUQDSXqy5GiSDKpsll5jy3l3+g9QLhpf39T+ePtefhXLOGrLl0QIjkQP6VnelA==",
1062
+ "cpu": [
1063
+ "arm64"
1064
+ ],
1065
+ "dev": true,
1066
+ "license": "Apache-2.0",
1067
+ "optional": true,
1068
+ "os": [
1069
+ "netbsd"
1070
+ ],
1071
+ "engines": {
1072
+ "node": ">=16.20.0"
1073
+ }
1074
+ },
1075
+ "node_modules/@typescript/typescript-netbsd-x64": {
1076
+ "version": "7.0.2",
1077
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-netbsd-x64/-/typescript-netbsd-x64-7.0.2.tgz",
1078
+ "integrity": "sha512-8YIT0EHM/3dq10ZOVF/A7pc/YSMtbcecct4rWtexrnSCHOPcpC2KTLXfTCR6vDpnSiY12heNb1GiN/wu+T/FyA==",
1079
+ "cpu": [
1080
+ "x64"
1081
+ ],
1082
+ "dev": true,
1083
+ "license": "Apache-2.0",
1084
+ "optional": true,
1085
+ "os": [
1086
+ "netbsd"
1087
+ ],
1088
+ "engines": {
1089
+ "node": ">=16.20.0"
1090
+ }
1091
+ },
1092
+ "node_modules/@typescript/typescript-openbsd-arm64": {
1093
+ "version": "7.0.2",
1094
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-openbsd-arm64/-/typescript-openbsd-arm64-7.0.2.tgz",
1095
+ "integrity": "sha512-APT8+ClYnuYm1u9+kgGXoMj2VzWzcymwh2gNSQVySHfkRDGOTVkoWLjCmOQSaO+PoqQ57B0flRp9SA+7GnnkzQ==",
1096
+ "cpu": [
1097
+ "arm64"
1098
+ ],
1099
+ "dev": true,
1100
+ "license": "Apache-2.0",
1101
+ "optional": true,
1102
+ "os": [
1103
+ "openbsd"
1104
+ ],
1105
+ "engines": {
1106
+ "node": ">=16.20.0"
1107
+ }
1108
+ },
1109
+ "node_modules/@typescript/typescript-openbsd-x64": {
1110
+ "version": "7.0.2",
1111
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-openbsd-x64/-/typescript-openbsd-x64-7.0.2.tgz",
1112
+ "integrity": "sha512-yX7s+Q0Dln0Dt9tEzZsAjXXR/+ytBM7AlglaqyeMPxQszJ1JhlJdZ6jLA+IzldHtflX81em7lDao1xXu+aRRkg==",
1113
+ "cpu": [
1114
+ "x64"
1115
+ ],
1116
+ "dev": true,
1117
+ "license": "Apache-2.0",
1118
+ "optional": true,
1119
+ "os": [
1120
+ "openbsd"
1121
+ ],
1122
+ "engines": {
1123
+ "node": ">=16.20.0"
1124
+ }
1125
+ },
1126
+ "node_modules/@typescript/typescript-sunos-x64": {
1127
+ "version": "7.0.2",
1128
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-sunos-x64/-/typescript-sunos-x64-7.0.2.tgz",
1129
+ "integrity": "sha512-dLJDGaLZ1D4HPQn62u1n8mBDkJREwMsAkCdkwd4Ieqw+x3TUyTsqY0YiBCtE6H6OzzgGk3iuZ3vFWRS+E8/d1g==",
1130
+ "cpu": [
1131
+ "x64"
1132
+ ],
1133
+ "dev": true,
1134
+ "license": "Apache-2.0",
1135
+ "optional": true,
1136
+ "os": [
1137
+ "sunos"
1138
+ ],
1139
+ "engines": {
1140
+ "node": ">=16.20.0"
1141
+ }
1142
+ },
1143
+ "node_modules/@typescript/typescript-win32-arm64": {
1144
+ "version": "7.0.2",
1145
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-win32-arm64/-/typescript-win32-arm64-7.0.2.tgz",
1146
+ "integrity": "sha512-Gyl1Vy6OsWesLzmq+EP0Fb7b4Nid5232AvcA2SFcdYreldpNtYFFofPjnt62y9hQy7VTaZp65ICJjuAQRaVcIQ==",
1147
+ "cpu": [
1148
+ "arm64"
1149
+ ],
1150
+ "dev": true,
1151
+ "license": "Apache-2.0",
1152
+ "optional": true,
1153
+ "os": [
1154
+ "win32"
1155
+ ],
1156
+ "engines": {
1157
+ "node": ">=16.20.0"
1158
+ }
1159
+ },
1160
+ "node_modules/@typescript/typescript-win32-x64": {
1161
+ "version": "7.0.2",
1162
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-win32-x64/-/typescript-win32-x64-7.0.2.tgz",
1163
+ "integrity": "sha512-0BQ3HkAHHlKLSp1qRvf3SUhGpGsDuhB/jgFw75guyqbxJqEaS0Cw/VFO8i2nHglJUzQCRtMMR/IBAKE3ETMC4g==",
1164
+ "cpu": [
1165
+ "x64"
1166
+ ],
1167
+ "dev": true,
1168
+ "license": "Apache-2.0",
1169
+ "optional": true,
1170
+ "os": [
1171
+ "win32"
1172
+ ],
1173
+ "engines": {
1174
+ "node": ">=16.20.0"
1175
+ }
1176
+ },
1177
+ "node_modules/@ungap/structured-clone": {
1178
+ "version": "1.3.3",
1179
+ "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.3.tgz",
1180
+ "integrity": "sha512-60YRaenCQcVjYEKOcG824+DRGGIQ3VKErcBoAEDJZz5bKIs2ZG+X/H9Nk+Q6EVkwJk5QNApxbrc5QtBSwtrXAg==",
1181
+ "license": "ISC"
1182
+ },
1183
+ "node_modules/@vitejs/plugin-react": {
1184
+ "version": "6.1.1",
1185
+ "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-6.1.1.tgz",
1186
+ "integrity": "sha512-yxLaQV9gkhS8ezJqCM6+ndU7mDY6gqAg75NQ+0IjwEI8IYOmQCgkRwHKVSfWXW076DsqMo0Dk+0FK1U+M5RgFw==",
1187
+ "license": "MIT",
1188
+ "dependencies": {
1189
+ "@rolldown/pluginutils": "^1.0.1"
1190
+ },
1191
+ "engines": {
1192
+ "node": "^20.19.0 || >=22.12.0"
1193
+ },
1194
+ "peerDependencies": {
1195
+ "@rolldown/plugin-babel": "^0.1.7 || ^0.2.0",
1196
+ "babel-plugin-react-compiler": "^1.0.0",
1197
+ "oxc-transform-react": "^0.145.0",
1198
+ "vite": "^8.0.0"
1199
+ },
1200
+ "peerDependenciesMeta": {
1201
+ "@rolldown/plugin-babel": {
1202
+ "optional": true
1203
+ },
1204
+ "babel-plugin-react-compiler": {
1205
+ "optional": true
1206
+ },
1207
+ "oxc-transform-react": {
1208
+ "optional": true
1209
+ }
1210
+ }
1211
+ },
1212
+ "node_modules/bail": {
1213
+ "version": "2.0.2",
1214
+ "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz",
1215
+ "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==",
1216
+ "license": "MIT",
1217
+ "funding": {
1218
+ "type": "github",
1219
+ "url": "https://github.com/sponsors/wooorm"
1220
+ }
1221
+ },
1222
+ "node_modules/ccount": {
1223
+ "version": "2.0.1",
1224
+ "resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz",
1225
+ "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==",
1226
+ "license": "MIT",
1227
+ "funding": {
1228
+ "type": "github",
1229
+ "url": "https://github.com/sponsors/wooorm"
1230
+ }
1231
+ },
1232
+ "node_modules/character-entities": {
1233
+ "version": "2.0.2",
1234
+ "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz",
1235
+ "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==",
1236
+ "license": "MIT",
1237
+ "funding": {
1238
+ "type": "github",
1239
+ "url": "https://github.com/sponsors/wooorm"
1240
+ }
1241
+ },
1242
+ "node_modules/character-entities-html4": {
1243
+ "version": "2.1.0",
1244
+ "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz",
1245
+ "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==",
1246
+ "license": "MIT",
1247
+ "funding": {
1248
+ "type": "github",
1249
+ "url": "https://github.com/sponsors/wooorm"
1250
+ }
1251
+ },
1252
+ "node_modules/character-entities-legacy": {
1253
+ "version": "3.0.0",
1254
+ "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz",
1255
+ "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==",
1256
+ "license": "MIT",
1257
+ "funding": {
1258
+ "type": "github",
1259
+ "url": "https://github.com/sponsors/wooorm"
1260
+ }
1261
+ },
1262
+ "node_modules/character-reference-invalid": {
1263
+ "version": "2.0.1",
1264
+ "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz",
1265
+ "integrity": "sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==",
1266
+ "license": "MIT",
1267
+ "funding": {
1268
+ "type": "github",
1269
+ "url": "https://github.com/sponsors/wooorm"
1270
+ }
1271
+ },
1272
+ "node_modules/class-variance-authority": {
1273
+ "version": "0.7.1",
1274
+ "resolved": "https://registry.npmjs.org/class-variance-authority/-/class-variance-authority-0.7.1.tgz",
1275
+ "integrity": "sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg==",
1276
+ "license": "Apache-2.0",
1277
+ "dependencies": {
1278
+ "clsx": "^2.1.1"
1279
+ },
1280
+ "funding": {
1281
+ "url": "https://polar.sh/cva"
1282
+ }
1283
+ },
1284
+ "node_modules/clsx": {
1285
+ "version": "2.1.1",
1286
+ "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz",
1287
+ "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==",
1288
+ "license": "MIT",
1289
+ "engines": {
1290
+ "node": ">=6"
1291
+ }
1292
+ },
1293
+ "node_modules/comma-separated-tokens": {
1294
+ "version": "2.0.3",
1295
+ "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz",
1296
+ "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==",
1297
+ "license": "MIT",
1298
+ "funding": {
1299
+ "type": "github",
1300
+ "url": "https://github.com/sponsors/wooorm"
1301
+ }
1302
+ },
1303
+ "node_modules/csstype": {
1304
+ "version": "3.2.3",
1305
+ "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz",
1306
+ "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
1307
+ "license": "MIT"
1308
+ },
1309
+ "node_modules/debug": {
1310
+ "version": "4.4.3",
1311
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
1312
+ "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
1313
+ "license": "MIT",
1314
+ "dependencies": {
1315
+ "ms": "^2.1.3"
1316
+ },
1317
+ "engines": {
1318
+ "node": ">=6.0"
1319
+ },
1320
+ "peerDependenciesMeta": {
1321
+ "supports-color": {
1322
+ "optional": true
1323
+ }
1324
+ }
1325
+ },
1326
+ "node_modules/decode-named-character-reference": {
1327
+ "version": "1.3.0",
1328
+ "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.3.0.tgz",
1329
+ "integrity": "sha512-GtpQYB283KrPp6nRw50q3U9/VfOutZOe103qlN7BPP6Ad27xYnOIWv4lPzo8HCAL+mMZofJ9KEy30fq6MfaK6Q==",
1330
+ "license": "MIT",
1331
+ "dependencies": {
1332
+ "character-entities": "^2.0.0"
1333
+ },
1334
+ "funding": {
1335
+ "type": "github",
1336
+ "url": "https://github.com/sponsors/wooorm"
1337
+ }
1338
+ },
1339
+ "node_modules/dequal": {
1340
+ "version": "2.0.3",
1341
+ "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz",
1342
+ "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==",
1343
+ "license": "MIT",
1344
+ "engines": {
1345
+ "node": ">=6"
1346
+ }
1347
+ },
1348
+ "node_modules/detect-libc": {
1349
+ "version": "2.1.2",
1350
+ "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
1351
+ "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
1352
+ "license": "Apache-2.0",
1353
+ "engines": {
1354
+ "node": ">=8"
1355
+ }
1356
+ },
1357
+ "node_modules/devlop": {
1358
+ "version": "1.1.0",
1359
+ "resolved": "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz",
1360
+ "integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==",
1361
+ "license": "MIT",
1362
+ "dependencies": {
1363
+ "dequal": "^2.0.0"
1364
+ },
1365
+ "funding": {
1366
+ "type": "github",
1367
+ "url": "https://github.com/sponsors/wooorm"
1368
+ }
1369
+ },
1370
+ "node_modules/enhanced-resolve": {
1371
+ "version": "5.24.5",
1372
+ "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.24.5.tgz",
1373
+ "integrity": "sha512-L1l8TNvomm6UVW5B253AGxQagSQr+vGwhMlrrfRS2qmhx46AMpMVJKQYLvWYbysTMY8VoicOvzHzoHMbyzB+4A==",
1374
+ "dev": true,
1375
+ "license": "MIT",
1376
+ "dependencies": {
1377
+ "graceful-fs": "^4.2.4",
1378
+ "tapable": "^2.3.3"
1379
+ },
1380
+ "engines": {
1381
+ "node": ">=10.13.0"
1382
+ }
1383
+ },
1384
+ "node_modules/escape-string-regexp": {
1385
+ "version": "5.0.0",
1386
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz",
1387
+ "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==",
1388
+ "license": "MIT",
1389
+ "engines": {
1390
+ "node": ">=12"
1391
+ },
1392
+ "funding": {
1393
+ "url": "https://github.com/sponsors/sindresorhus"
1394
+ }
1395
+ },
1396
+ "node_modules/estree-util-is-identifier-name": {
1397
+ "version": "3.0.0",
1398
+ "resolved": "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-3.0.0.tgz",
1399
+ "integrity": "sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==",
1400
+ "license": "MIT",
1401
+ "funding": {
1402
+ "type": "opencollective",
1403
+ "url": "https://opencollective.com/unified"
1404
+ }
1405
+ },
1406
+ "node_modules/extend": {
1407
+ "version": "3.0.2",
1408
+ "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
1409
+ "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==",
1410
+ "license": "MIT"
1411
+ },
1412
+ "node_modules/fsevents": {
1413
+ "version": "2.3.3",
1414
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
1415
+ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
1416
+ "hasInstallScript": true,
1417
+ "license": "MIT",
1418
+ "optional": true,
1419
+ "os": [
1420
+ "darwin"
1421
+ ],
1422
+ "engines": {
1423
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
1424
+ }
1425
+ },
1426
+ "node_modules/graceful-fs": {
1427
+ "version": "4.2.11",
1428
+ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
1429
+ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
1430
+ "dev": true,
1431
+ "license": "ISC"
1432
+ },
1433
+ "node_modules/hast-util-to-jsx-runtime": {
1434
+ "version": "2.3.6",
1435
+ "resolved": "https://registry.npmjs.org/hast-util-to-jsx-runtime/-/hast-util-to-jsx-runtime-2.3.6.tgz",
1436
+ "integrity": "sha512-zl6s8LwNyo1P9uw+XJGvZtdFF1GdAkOg8ujOw+4Pyb76874fLps4ueHXDhXWdk6YHQ6OgUtinliG7RsYvCbbBg==",
1437
+ "license": "MIT",
1438
+ "dependencies": {
1439
+ "@types/estree": "^1.0.0",
1440
+ "@types/hast": "^3.0.0",
1441
+ "@types/unist": "^3.0.0",
1442
+ "comma-separated-tokens": "^2.0.0",
1443
+ "devlop": "^1.0.0",
1444
+ "estree-util-is-identifier-name": "^3.0.0",
1445
+ "hast-util-whitespace": "^3.0.0",
1446
+ "mdast-util-mdx-expression": "^2.0.0",
1447
+ "mdast-util-mdx-jsx": "^3.0.0",
1448
+ "mdast-util-mdxjs-esm": "^2.0.0",
1449
+ "property-information": "^7.0.0",
1450
+ "space-separated-tokens": "^2.0.0",
1451
+ "style-to-js": "^1.0.0",
1452
+ "unist-util-position": "^5.0.0",
1453
+ "vfile-message": "^4.0.0"
1454
+ },
1455
+ "funding": {
1456
+ "type": "opencollective",
1457
+ "url": "https://opencollective.com/unified"
1458
+ }
1459
+ },
1460
+ "node_modules/hast-util-whitespace": {
1461
+ "version": "3.0.0",
1462
+ "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz",
1463
+ "integrity": "sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==",
1464
+ "license": "MIT",
1465
+ "dependencies": {
1466
+ "@types/hast": "^3.0.0"
1467
+ },
1468
+ "funding": {
1469
+ "type": "opencollective",
1470
+ "url": "https://opencollective.com/unified"
1471
+ }
1472
+ },
1473
+ "node_modules/html-url-attributes": {
1474
+ "version": "3.0.1",
1475
+ "resolved": "https://registry.npmjs.org/html-url-attributes/-/html-url-attributes-3.0.1.tgz",
1476
+ "integrity": "sha512-ol6UPyBWqsrO6EJySPz2O7ZSr856WDrEzM5zMqp+FJJLGMW35cLYmmZnl0vztAZxRUoNZJFTCohfjuIJ8I4QBQ==",
1477
+ "license": "MIT",
1478
+ "funding": {
1479
+ "type": "opencollective",
1480
+ "url": "https://opencollective.com/unified"
1481
+ }
1482
+ },
1483
+ "node_modules/inline-style-parser": {
1484
+ "version": "0.2.7",
1485
+ "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.2.7.tgz",
1486
+ "integrity": "sha512-Nb2ctOyNR8DqQoR0OwRG95uNWIC0C1lCgf5Naz5H6Ji72KZ8OcFZLz2P5sNgwlyoJ8Yif11oMuYs5pBQa86csA==",
1487
+ "license": "MIT"
1488
+ },
1489
+ "node_modules/is-alphabetical": {
1490
+ "version": "2.0.1",
1491
+ "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-2.0.1.tgz",
1492
+ "integrity": "sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==",
1493
+ "license": "MIT",
1494
+ "funding": {
1495
+ "type": "github",
1496
+ "url": "https://github.com/sponsors/wooorm"
1497
+ }
1498
+ },
1499
+ "node_modules/is-alphanumerical": {
1500
+ "version": "2.0.1",
1501
+ "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz",
1502
+ "integrity": "sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==",
1503
+ "license": "MIT",
1504
+ "dependencies": {
1505
+ "is-alphabetical": "^2.0.0",
1506
+ "is-decimal": "^2.0.0"
1507
+ },
1508
+ "funding": {
1509
+ "type": "github",
1510
+ "url": "https://github.com/sponsors/wooorm"
1511
+ }
1512
+ },
1513
+ "node_modules/is-decimal": {
1514
+ "version": "2.0.1",
1515
+ "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-2.0.1.tgz",
1516
+ "integrity": "sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==",
1517
+ "license": "MIT",
1518
+ "funding": {
1519
+ "type": "github",
1520
+ "url": "https://github.com/sponsors/wooorm"
1521
+ }
1522
+ },
1523
+ "node_modules/is-hexadecimal": {
1524
+ "version": "2.0.1",
1525
+ "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz",
1526
+ "integrity": "sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==",
1527
+ "license": "MIT",
1528
+ "funding": {
1529
+ "type": "github",
1530
+ "url": "https://github.com/sponsors/wooorm"
1531
+ }
1532
+ },
1533
+ "node_modules/is-plain-obj": {
1534
+ "version": "4.1.0",
1535
+ "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz",
1536
+ "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==",
1537
+ "license": "MIT",
1538
+ "engines": {
1539
+ "node": ">=12"
1540
+ },
1541
+ "funding": {
1542
+ "url": "https://github.com/sponsors/sindresorhus"
1543
+ }
1544
+ },
1545
+ "node_modules/jiti": {
1546
+ "version": "2.7.0",
1547
+ "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.7.0.tgz",
1548
+ "integrity": "sha512-AC/7JofJvZGrrneWNaEnJeOLUx+JlGt7tNa0wZiRPT4MY1wmfKjt2+6O2p2uz2+skll8OZZmJMNqeke7kKbNgQ==",
1549
+ "devOptional": true,
1550
+ "license": "MIT",
1551
+ "bin": {
1552
+ "jiti": "lib/jiti-cli.mjs"
1553
+ }
1554
+ },
1555
+ "node_modules/lightningcss": {
1556
+ "version": "1.32.0",
1557
+ "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.32.0.tgz",
1558
+ "integrity": "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==",
1559
+ "dev": true,
1560
+ "license": "MPL-2.0",
1561
+ "dependencies": {
1562
+ "detect-libc": "^2.0.3"
1563
+ },
1564
+ "engines": {
1565
+ "node": ">= 12.0.0"
1566
+ },
1567
+ "funding": {
1568
+ "type": "opencollective",
1569
+ "url": "https://opencollective.com/parcel"
1570
+ },
1571
+ "optionalDependencies": {
1572
+ "lightningcss-android-arm64": "1.32.0",
1573
+ "lightningcss-darwin-arm64": "1.32.0",
1574
+ "lightningcss-darwin-x64": "1.32.0",
1575
+ "lightningcss-freebsd-x64": "1.32.0",
1576
+ "lightningcss-linux-arm-gnueabihf": "1.32.0",
1577
+ "lightningcss-linux-arm64-gnu": "1.32.0",
1578
+ "lightningcss-linux-arm64-musl": "1.32.0",
1579
+ "lightningcss-linux-x64-gnu": "1.32.0",
1580
+ "lightningcss-linux-x64-musl": "1.32.0",
1581
+ "lightningcss-win32-arm64-msvc": "1.32.0",
1582
+ "lightningcss-win32-x64-msvc": "1.32.0"
1583
+ }
1584
+ },
1585
+ "node_modules/lightningcss-android-arm64": {
1586
+ "version": "1.32.0",
1587
+ "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.32.0.tgz",
1588
+ "integrity": "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==",
1589
+ "cpu": [
1590
+ "arm64"
1591
+ ],
1592
+ "dev": true,
1593
+ "license": "MPL-2.0",
1594
+ "optional": true,
1595
+ "os": [
1596
+ "android"
1597
+ ],
1598
+ "engines": {
1599
+ "node": ">= 12.0.0"
1600
+ },
1601
+ "funding": {
1602
+ "type": "opencollective",
1603
+ "url": "https://opencollective.com/parcel"
1604
+ }
1605
+ },
1606
+ "node_modules/lightningcss-darwin-arm64": {
1607
+ "version": "1.32.0",
1608
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.32.0.tgz",
1609
+ "integrity": "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==",
1610
+ "cpu": [
1611
+ "arm64"
1612
+ ],
1613
+ "dev": true,
1614
+ "license": "MPL-2.0",
1615
+ "optional": true,
1616
+ "os": [
1617
+ "darwin"
1618
+ ],
1619
+ "engines": {
1620
+ "node": ">= 12.0.0"
1621
+ },
1622
+ "funding": {
1623
+ "type": "opencollective",
1624
+ "url": "https://opencollective.com/parcel"
1625
+ }
1626
+ },
1627
+ "node_modules/lightningcss-darwin-x64": {
1628
+ "version": "1.32.0",
1629
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.32.0.tgz",
1630
+ "integrity": "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==",
1631
+ "cpu": [
1632
+ "x64"
1633
+ ],
1634
+ "dev": true,
1635
+ "license": "MPL-2.0",
1636
+ "optional": true,
1637
+ "os": [
1638
+ "darwin"
1639
+ ],
1640
+ "engines": {
1641
+ "node": ">= 12.0.0"
1642
+ },
1643
+ "funding": {
1644
+ "type": "opencollective",
1645
+ "url": "https://opencollective.com/parcel"
1646
+ }
1647
+ },
1648
+ "node_modules/lightningcss-freebsd-x64": {
1649
+ "version": "1.32.0",
1650
+ "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.32.0.tgz",
1651
+ "integrity": "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==",
1652
+ "cpu": [
1653
+ "x64"
1654
+ ],
1655
+ "dev": true,
1656
+ "license": "MPL-2.0",
1657
+ "optional": true,
1658
+ "os": [
1659
+ "freebsd"
1660
+ ],
1661
+ "engines": {
1662
+ "node": ">= 12.0.0"
1663
+ },
1664
+ "funding": {
1665
+ "type": "opencollective",
1666
+ "url": "https://opencollective.com/parcel"
1667
+ }
1668
+ },
1669
+ "node_modules/lightningcss-linux-arm-gnueabihf": {
1670
+ "version": "1.32.0",
1671
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.32.0.tgz",
1672
+ "integrity": "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==",
1673
+ "cpu": [
1674
+ "arm"
1675
+ ],
1676
+ "dev": true,
1677
+ "license": "MPL-2.0",
1678
+ "optional": true,
1679
+ "os": [
1680
+ "linux"
1681
+ ],
1682
+ "engines": {
1683
+ "node": ">= 12.0.0"
1684
+ },
1685
+ "funding": {
1686
+ "type": "opencollective",
1687
+ "url": "https://opencollective.com/parcel"
1688
+ }
1689
+ },
1690
+ "node_modules/lightningcss-linux-arm64-gnu": {
1691
+ "version": "1.32.0",
1692
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.32.0.tgz",
1693
+ "integrity": "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==",
1694
+ "cpu": [
1695
+ "arm64"
1696
+ ],
1697
+ "dev": true,
1698
+ "libc": [
1699
+ "glibc"
1700
+ ],
1701
+ "license": "MPL-2.0",
1702
+ "optional": true,
1703
+ "os": [
1704
+ "linux"
1705
+ ],
1706
+ "engines": {
1707
+ "node": ">= 12.0.0"
1708
+ },
1709
+ "funding": {
1710
+ "type": "opencollective",
1711
+ "url": "https://opencollective.com/parcel"
1712
+ }
1713
+ },
1714
+ "node_modules/lightningcss-linux-arm64-musl": {
1715
+ "version": "1.32.0",
1716
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.32.0.tgz",
1717
+ "integrity": "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==",
1718
+ "cpu": [
1719
+ "arm64"
1720
+ ],
1721
+ "dev": true,
1722
+ "libc": [
1723
+ "musl"
1724
+ ],
1725
+ "license": "MPL-2.0",
1726
+ "optional": true,
1727
+ "os": [
1728
+ "linux"
1729
+ ],
1730
+ "engines": {
1731
+ "node": ">= 12.0.0"
1732
+ },
1733
+ "funding": {
1734
+ "type": "opencollective",
1735
+ "url": "https://opencollective.com/parcel"
1736
+ }
1737
+ },
1738
+ "node_modules/lightningcss-linux-x64-gnu": {
1739
+ "version": "1.32.0",
1740
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.32.0.tgz",
1741
+ "integrity": "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==",
1742
+ "cpu": [
1743
+ "x64"
1744
+ ],
1745
+ "dev": true,
1746
+ "libc": [
1747
+ "glibc"
1748
+ ],
1749
+ "license": "MPL-2.0",
1750
+ "optional": true,
1751
+ "os": [
1752
+ "linux"
1753
+ ],
1754
+ "engines": {
1755
+ "node": ">= 12.0.0"
1756
+ },
1757
+ "funding": {
1758
+ "type": "opencollective",
1759
+ "url": "https://opencollective.com/parcel"
1760
+ }
1761
+ },
1762
+ "node_modules/lightningcss-linux-x64-musl": {
1763
+ "version": "1.32.0",
1764
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.32.0.tgz",
1765
+ "integrity": "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==",
1766
+ "cpu": [
1767
+ "x64"
1768
+ ],
1769
+ "dev": true,
1770
+ "libc": [
1771
+ "musl"
1772
+ ],
1773
+ "license": "MPL-2.0",
1774
+ "optional": true,
1775
+ "os": [
1776
+ "linux"
1777
+ ],
1778
+ "engines": {
1779
+ "node": ">= 12.0.0"
1780
+ },
1781
+ "funding": {
1782
+ "type": "opencollective",
1783
+ "url": "https://opencollective.com/parcel"
1784
+ }
1785
+ },
1786
+ "node_modules/lightningcss-win32-arm64-msvc": {
1787
+ "version": "1.32.0",
1788
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.32.0.tgz",
1789
+ "integrity": "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==",
1790
+ "cpu": [
1791
+ "arm64"
1792
+ ],
1793
+ "dev": true,
1794
+ "license": "MPL-2.0",
1795
+ "optional": true,
1796
+ "os": [
1797
+ "win32"
1798
+ ],
1799
+ "engines": {
1800
+ "node": ">= 12.0.0"
1801
+ },
1802
+ "funding": {
1803
+ "type": "opencollective",
1804
+ "url": "https://opencollective.com/parcel"
1805
+ }
1806
+ },
1807
+ "node_modules/lightningcss-win32-x64-msvc": {
1808
+ "version": "1.32.0",
1809
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz",
1810
+ "integrity": "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==",
1811
+ "cpu": [
1812
+ "x64"
1813
+ ],
1814
+ "dev": true,
1815
+ "license": "MPL-2.0",
1816
+ "optional": true,
1817
+ "os": [
1818
+ "win32"
1819
+ ],
1820
+ "engines": {
1821
+ "node": ">= 12.0.0"
1822
+ },
1823
+ "funding": {
1824
+ "type": "opencollective",
1825
+ "url": "https://opencollective.com/parcel"
1826
+ }
1827
+ },
1828
+ "node_modules/longest-streak": {
1829
+ "version": "3.1.0",
1830
+ "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz",
1831
+ "integrity": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==",
1832
+ "license": "MIT",
1833
+ "funding": {
1834
+ "type": "github",
1835
+ "url": "https://github.com/sponsors/wooorm"
1836
+ }
1837
+ },
1838
+ "node_modules/magic-string": {
1839
+ "version": "0.30.21",
1840
+ "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz",
1841
+ "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==",
1842
+ "dev": true,
1843
+ "license": "MIT",
1844
+ "dependencies": {
1845
+ "@jridgewell/sourcemap-codec": "^1.5.5"
1846
+ }
1847
+ },
1848
+ "node_modules/markdown-table": {
1849
+ "version": "3.0.4",
1850
+ "resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-3.0.4.tgz",
1851
+ "integrity": "sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==",
1852
+ "license": "MIT",
1853
+ "funding": {
1854
+ "type": "github",
1855
+ "url": "https://github.com/sponsors/wooorm"
1856
+ }
1857
+ },
1858
+ "node_modules/mdast-util-find-and-replace": {
1859
+ "version": "3.0.2",
1860
+ "resolved": "https://registry.npmjs.org/mdast-util-find-and-replace/-/mdast-util-find-and-replace-3.0.2.tgz",
1861
+ "integrity": "sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==",
1862
+ "license": "MIT",
1863
+ "dependencies": {
1864
+ "@types/mdast": "^4.0.0",
1865
+ "escape-string-regexp": "^5.0.0",
1866
+ "unist-util-is": "^6.0.0",
1867
+ "unist-util-visit-parents": "^6.0.0"
1868
+ },
1869
+ "funding": {
1870
+ "type": "opencollective",
1871
+ "url": "https://opencollective.com/unified"
1872
+ }
1873
+ },
1874
+ "node_modules/mdast-util-from-markdown": {
1875
+ "version": "2.0.3",
1876
+ "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.3.tgz",
1877
+ "integrity": "sha512-W4mAWTvSlKvf8L6J+VN9yLSqQ9AOAAvHuoDAmPkz4dHf553m5gVj2ejadHJhoJmcmxEnOv6Pa8XJhpxE93kb8Q==",
1878
+ "license": "MIT",
1879
+ "dependencies": {
1880
+ "@types/mdast": "^4.0.0",
1881
+ "@types/unist": "^3.0.0",
1882
+ "decode-named-character-reference": "^1.0.0",
1883
+ "devlop": "^1.0.0",
1884
+ "mdast-util-to-string": "^4.0.0",
1885
+ "micromark": "^4.0.0",
1886
+ "micromark-util-decode-numeric-character-reference": "^2.0.0",
1887
+ "micromark-util-decode-string": "^2.0.0",
1888
+ "micromark-util-normalize-identifier": "^2.0.0",
1889
+ "micromark-util-symbol": "^2.0.0",
1890
+ "micromark-util-types": "^2.0.0",
1891
+ "unist-util-stringify-position": "^4.0.0"
1892
+ },
1893
+ "funding": {
1894
+ "type": "opencollective",
1895
+ "url": "https://opencollective.com/unified"
1896
+ }
1897
+ },
1898
+ "node_modules/mdast-util-gfm": {
1899
+ "version": "3.1.0",
1900
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm/-/mdast-util-gfm-3.1.0.tgz",
1901
+ "integrity": "sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==",
1902
+ "license": "MIT",
1903
+ "dependencies": {
1904
+ "mdast-util-from-markdown": "^2.0.0",
1905
+ "mdast-util-gfm-autolink-literal": "^2.0.0",
1906
+ "mdast-util-gfm-footnote": "^2.0.0",
1907
+ "mdast-util-gfm-strikethrough": "^2.0.0",
1908
+ "mdast-util-gfm-table": "^2.0.0",
1909
+ "mdast-util-gfm-task-list-item": "^2.0.0",
1910
+ "mdast-util-to-markdown": "^2.0.0"
1911
+ },
1912
+ "funding": {
1913
+ "type": "opencollective",
1914
+ "url": "https://opencollective.com/unified"
1915
+ }
1916
+ },
1917
+ "node_modules/mdast-util-gfm-autolink-literal": {
1918
+ "version": "2.0.1",
1919
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-2.0.1.tgz",
1920
+ "integrity": "sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==",
1921
+ "license": "MIT",
1922
+ "dependencies": {
1923
+ "@types/mdast": "^4.0.0",
1924
+ "ccount": "^2.0.0",
1925
+ "devlop": "^1.0.0",
1926
+ "mdast-util-find-and-replace": "^3.0.0",
1927
+ "micromark-util-character": "^2.0.0"
1928
+ },
1929
+ "funding": {
1930
+ "type": "opencollective",
1931
+ "url": "https://opencollective.com/unified"
1932
+ }
1933
+ },
1934
+ "node_modules/mdast-util-gfm-footnote": {
1935
+ "version": "2.1.0",
1936
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-2.1.0.tgz",
1937
+ "integrity": "sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==",
1938
+ "license": "MIT",
1939
+ "dependencies": {
1940
+ "@types/mdast": "^4.0.0",
1941
+ "devlop": "^1.1.0",
1942
+ "mdast-util-from-markdown": "^2.0.0",
1943
+ "mdast-util-to-markdown": "^2.0.0",
1944
+ "micromark-util-normalize-identifier": "^2.0.0"
1945
+ },
1946
+ "funding": {
1947
+ "type": "opencollective",
1948
+ "url": "https://opencollective.com/unified"
1949
+ }
1950
+ },
1951
+ "node_modules/mdast-util-gfm-strikethrough": {
1952
+ "version": "2.0.0",
1953
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-2.0.0.tgz",
1954
+ "integrity": "sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==",
1955
+ "license": "MIT",
1956
+ "dependencies": {
1957
+ "@types/mdast": "^4.0.0",
1958
+ "mdast-util-from-markdown": "^2.0.0",
1959
+ "mdast-util-to-markdown": "^2.0.0"
1960
+ },
1961
+ "funding": {
1962
+ "type": "opencollective",
1963
+ "url": "https://opencollective.com/unified"
1964
+ }
1965
+ },
1966
+ "node_modules/mdast-util-gfm-table": {
1967
+ "version": "2.0.0",
1968
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm-table/-/mdast-util-gfm-table-2.0.0.tgz",
1969
+ "integrity": "sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==",
1970
+ "license": "MIT",
1971
+ "dependencies": {
1972
+ "@types/mdast": "^4.0.0",
1973
+ "devlop": "^1.0.0",
1974
+ "markdown-table": "^3.0.0",
1975
+ "mdast-util-from-markdown": "^2.0.0",
1976
+ "mdast-util-to-markdown": "^2.0.0"
1977
+ },
1978
+ "funding": {
1979
+ "type": "opencollective",
1980
+ "url": "https://opencollective.com/unified"
1981
+ }
1982
+ },
1983
+ "node_modules/mdast-util-gfm-task-list-item": {
1984
+ "version": "2.0.0",
1985
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-2.0.0.tgz",
1986
+ "integrity": "sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==",
1987
+ "license": "MIT",
1988
+ "dependencies": {
1989
+ "@types/mdast": "^4.0.0",
1990
+ "devlop": "^1.0.0",
1991
+ "mdast-util-from-markdown": "^2.0.0",
1992
+ "mdast-util-to-markdown": "^2.0.0"
1993
+ },
1994
+ "funding": {
1995
+ "type": "opencollective",
1996
+ "url": "https://opencollective.com/unified"
1997
+ }
1998
+ },
1999
+ "node_modules/mdast-util-mdx-expression": {
2000
+ "version": "2.0.1",
2001
+ "resolved": "https://registry.npmjs.org/mdast-util-mdx-expression/-/mdast-util-mdx-expression-2.0.1.tgz",
2002
+ "integrity": "sha512-J6f+9hUp+ldTZqKRSg7Vw5V6MqjATc+3E4gf3CFNcuZNWD8XdyI6zQ8GqH7f8169MM6P7hMBRDVGnn7oHB9kXQ==",
2003
+ "license": "MIT",
2004
+ "dependencies": {
2005
+ "@types/estree-jsx": "^1.0.0",
2006
+ "@types/hast": "^3.0.0",
2007
+ "@types/mdast": "^4.0.0",
2008
+ "devlop": "^1.0.0",
2009
+ "mdast-util-from-markdown": "^2.0.0",
2010
+ "mdast-util-to-markdown": "^2.0.0"
2011
+ },
2012
+ "funding": {
2013
+ "type": "opencollective",
2014
+ "url": "https://opencollective.com/unified"
2015
+ }
2016
+ },
2017
+ "node_modules/mdast-util-mdx-jsx": {
2018
+ "version": "3.2.0",
2019
+ "resolved": "https://registry.npmjs.org/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-3.2.0.tgz",
2020
+ "integrity": "sha512-lj/z8v0r6ZtsN/cGNNtemmmfoLAFZnjMbNyLzBafjzikOM+glrjNHPlf6lQDOTccj9n5b0PPihEBbhneMyGs1Q==",
2021
+ "license": "MIT",
2022
+ "dependencies": {
2023
+ "@types/estree-jsx": "^1.0.0",
2024
+ "@types/hast": "^3.0.0",
2025
+ "@types/mdast": "^4.0.0",
2026
+ "@types/unist": "^3.0.0",
2027
+ "ccount": "^2.0.0",
2028
+ "devlop": "^1.1.0",
2029
+ "mdast-util-from-markdown": "^2.0.0",
2030
+ "mdast-util-to-markdown": "^2.0.0",
2031
+ "parse-entities": "^4.0.0",
2032
+ "stringify-entities": "^4.0.0",
2033
+ "unist-util-stringify-position": "^4.0.0",
2034
+ "vfile-message": "^4.0.0"
2035
+ },
2036
+ "funding": {
2037
+ "type": "opencollective",
2038
+ "url": "https://opencollective.com/unified"
2039
+ }
2040
+ },
2041
+ "node_modules/mdast-util-mdxjs-esm": {
2042
+ "version": "2.0.1",
2043
+ "resolved": "https://registry.npmjs.org/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-2.0.1.tgz",
2044
+ "integrity": "sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==",
2045
+ "license": "MIT",
2046
+ "dependencies": {
2047
+ "@types/estree-jsx": "^1.0.0",
2048
+ "@types/hast": "^3.0.0",
2049
+ "@types/mdast": "^4.0.0",
2050
+ "devlop": "^1.0.0",
2051
+ "mdast-util-from-markdown": "^2.0.0",
2052
+ "mdast-util-to-markdown": "^2.0.0"
2053
+ },
2054
+ "funding": {
2055
+ "type": "opencollective",
2056
+ "url": "https://opencollective.com/unified"
2057
+ }
2058
+ },
2059
+ "node_modules/mdast-util-phrasing": {
2060
+ "version": "4.1.0",
2061
+ "resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-4.1.0.tgz",
2062
+ "integrity": "sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==",
2063
+ "license": "MIT",
2064
+ "dependencies": {
2065
+ "@types/mdast": "^4.0.0",
2066
+ "unist-util-is": "^6.0.0"
2067
+ },
2068
+ "funding": {
2069
+ "type": "opencollective",
2070
+ "url": "https://opencollective.com/unified"
2071
+ }
2072
+ },
2073
+ "node_modules/mdast-util-to-hast": {
2074
+ "version": "13.2.1",
2075
+ "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-13.2.1.tgz",
2076
+ "integrity": "sha512-cctsq2wp5vTsLIcaymblUriiTcZd0CwWtCbLvrOzYCDZoWyMNV8sZ7krj09FSnsiJi3WVsHLM4k6Dq/yaPyCXA==",
2077
+ "license": "MIT",
2078
+ "dependencies": {
2079
+ "@types/hast": "^3.0.0",
2080
+ "@types/mdast": "^4.0.0",
2081
+ "@ungap/structured-clone": "^1.0.0",
2082
+ "devlop": "^1.0.0",
2083
+ "micromark-util-sanitize-uri": "^2.0.0",
2084
+ "trim-lines": "^3.0.0",
2085
+ "unist-util-position": "^5.0.0",
2086
+ "unist-util-visit": "^5.0.0",
2087
+ "vfile": "^6.0.0"
2088
+ },
2089
+ "funding": {
2090
+ "type": "opencollective",
2091
+ "url": "https://opencollective.com/unified"
2092
+ }
2093
+ },
2094
+ "node_modules/mdast-util-to-markdown": {
2095
+ "version": "2.1.2",
2096
+ "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.2.tgz",
2097
+ "integrity": "sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==",
2098
+ "license": "MIT",
2099
+ "dependencies": {
2100
+ "@types/mdast": "^4.0.0",
2101
+ "@types/unist": "^3.0.0",
2102
+ "longest-streak": "^3.0.0",
2103
+ "mdast-util-phrasing": "^4.0.0",
2104
+ "mdast-util-to-string": "^4.0.0",
2105
+ "micromark-util-classify-character": "^2.0.0",
2106
+ "micromark-util-decode-string": "^2.0.0",
2107
+ "unist-util-visit": "^5.0.0",
2108
+ "zwitch": "^2.0.0"
2109
+ },
2110
+ "funding": {
2111
+ "type": "opencollective",
2112
+ "url": "https://opencollective.com/unified"
2113
+ }
2114
+ },
2115
+ "node_modules/mdast-util-to-string": {
2116
+ "version": "4.0.0",
2117
+ "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz",
2118
+ "integrity": "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==",
2119
+ "license": "MIT",
2120
+ "dependencies": {
2121
+ "@types/mdast": "^4.0.0"
2122
+ },
2123
+ "funding": {
2124
+ "type": "opencollective",
2125
+ "url": "https://opencollective.com/unified"
2126
+ }
2127
+ },
2128
+ "node_modules/micromark": {
2129
+ "version": "4.0.2",
2130
+ "resolved": "https://registry.npmjs.org/micromark/-/micromark-4.0.2.tgz",
2131
+ "integrity": "sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==",
2132
+ "funding": [
2133
+ {
2134
+ "type": "GitHub Sponsors",
2135
+ "url": "https://github.com/sponsors/unifiedjs"
2136
+ },
2137
+ {
2138
+ "type": "OpenCollective",
2139
+ "url": "https://opencollective.com/unified"
2140
+ }
2141
+ ],
2142
+ "license": "MIT",
2143
+ "dependencies": {
2144
+ "@types/debug": "^4.0.0",
2145
+ "debug": "^4.0.0",
2146
+ "decode-named-character-reference": "^1.0.0",
2147
+ "devlop": "^1.0.0",
2148
+ "micromark-core-commonmark": "^2.0.0",
2149
+ "micromark-factory-space": "^2.0.0",
2150
+ "micromark-util-character": "^2.0.0",
2151
+ "micromark-util-chunked": "^2.0.0",
2152
+ "micromark-util-combine-extensions": "^2.0.0",
2153
+ "micromark-util-decode-numeric-character-reference": "^2.0.0",
2154
+ "micromark-util-encode": "^2.0.0",
2155
+ "micromark-util-normalize-identifier": "^2.0.0",
2156
+ "micromark-util-resolve-all": "^2.0.0",
2157
+ "micromark-util-sanitize-uri": "^2.0.0",
2158
+ "micromark-util-subtokenize": "^2.0.0",
2159
+ "micromark-util-symbol": "^2.0.0",
2160
+ "micromark-util-types": "^2.0.0"
2161
+ }
2162
+ },
2163
+ "node_modules/micromark-core-commonmark": {
2164
+ "version": "2.0.3",
2165
+ "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.3.tgz",
2166
+ "integrity": "sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==",
2167
+ "funding": [
2168
+ {
2169
+ "type": "GitHub Sponsors",
2170
+ "url": "https://github.com/sponsors/unifiedjs"
2171
+ },
2172
+ {
2173
+ "type": "OpenCollective",
2174
+ "url": "https://opencollective.com/unified"
2175
+ }
2176
+ ],
2177
+ "license": "MIT",
2178
+ "dependencies": {
2179
+ "decode-named-character-reference": "^1.0.0",
2180
+ "devlop": "^1.0.0",
2181
+ "micromark-factory-destination": "^2.0.0",
2182
+ "micromark-factory-label": "^2.0.0",
2183
+ "micromark-factory-space": "^2.0.0",
2184
+ "micromark-factory-title": "^2.0.0",
2185
+ "micromark-factory-whitespace": "^2.0.0",
2186
+ "micromark-util-character": "^2.0.0",
2187
+ "micromark-util-chunked": "^2.0.0",
2188
+ "micromark-util-classify-character": "^2.0.0",
2189
+ "micromark-util-html-tag-name": "^2.0.0",
2190
+ "micromark-util-normalize-identifier": "^2.0.0",
2191
+ "micromark-util-resolve-all": "^2.0.0",
2192
+ "micromark-util-subtokenize": "^2.0.0",
2193
+ "micromark-util-symbol": "^2.0.0",
2194
+ "micromark-util-types": "^2.0.0"
2195
+ }
2196
+ },
2197
+ "node_modules/micromark-extension-gfm": {
2198
+ "version": "3.0.0",
2199
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm/-/micromark-extension-gfm-3.0.0.tgz",
2200
+ "integrity": "sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==",
2201
+ "license": "MIT",
2202
+ "dependencies": {
2203
+ "micromark-extension-gfm-autolink-literal": "^2.0.0",
2204
+ "micromark-extension-gfm-footnote": "^2.0.0",
2205
+ "micromark-extension-gfm-strikethrough": "^2.0.0",
2206
+ "micromark-extension-gfm-table": "^2.0.0",
2207
+ "micromark-extension-gfm-tagfilter": "^2.0.0",
2208
+ "micromark-extension-gfm-task-list-item": "^2.0.0",
2209
+ "micromark-util-combine-extensions": "^2.0.0",
2210
+ "micromark-util-types": "^2.0.0"
2211
+ },
2212
+ "funding": {
2213
+ "type": "opencollective",
2214
+ "url": "https://opencollective.com/unified"
2215
+ }
2216
+ },
2217
+ "node_modules/micromark-extension-gfm-autolink-literal": {
2218
+ "version": "2.1.0",
2219
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-2.1.0.tgz",
2220
+ "integrity": "sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==",
2221
+ "license": "MIT",
2222
+ "dependencies": {
2223
+ "micromark-util-character": "^2.0.0",
2224
+ "micromark-util-sanitize-uri": "^2.0.0",
2225
+ "micromark-util-symbol": "^2.0.0",
2226
+ "micromark-util-types": "^2.0.0"
2227
+ },
2228
+ "funding": {
2229
+ "type": "opencollective",
2230
+ "url": "https://opencollective.com/unified"
2231
+ }
2232
+ },
2233
+ "node_modules/micromark-extension-gfm-footnote": {
2234
+ "version": "2.1.0",
2235
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-2.1.0.tgz",
2236
+ "integrity": "sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==",
2237
+ "license": "MIT",
2238
+ "dependencies": {
2239
+ "devlop": "^1.0.0",
2240
+ "micromark-core-commonmark": "^2.0.0",
2241
+ "micromark-factory-space": "^2.0.0",
2242
+ "micromark-util-character": "^2.0.0",
2243
+ "micromark-util-normalize-identifier": "^2.0.0",
2244
+ "micromark-util-sanitize-uri": "^2.0.0",
2245
+ "micromark-util-symbol": "^2.0.0",
2246
+ "micromark-util-types": "^2.0.0"
2247
+ },
2248
+ "funding": {
2249
+ "type": "opencollective",
2250
+ "url": "https://opencollective.com/unified"
2251
+ }
2252
+ },
2253
+ "node_modules/micromark-extension-gfm-strikethrough": {
2254
+ "version": "2.1.0",
2255
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-2.1.0.tgz",
2256
+ "integrity": "sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==",
2257
+ "license": "MIT",
2258
+ "dependencies": {
2259
+ "devlop": "^1.0.0",
2260
+ "micromark-util-chunked": "^2.0.0",
2261
+ "micromark-util-classify-character": "^2.0.0",
2262
+ "micromark-util-resolve-all": "^2.0.0",
2263
+ "micromark-util-symbol": "^2.0.0",
2264
+ "micromark-util-types": "^2.0.0"
2265
+ },
2266
+ "funding": {
2267
+ "type": "opencollective",
2268
+ "url": "https://opencollective.com/unified"
2269
+ }
2270
+ },
2271
+ "node_modules/micromark-extension-gfm-table": {
2272
+ "version": "2.1.1",
2273
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-2.1.1.tgz",
2274
+ "integrity": "sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==",
2275
+ "license": "MIT",
2276
+ "dependencies": {
2277
+ "devlop": "^1.0.0",
2278
+ "micromark-factory-space": "^2.0.0",
2279
+ "micromark-util-character": "^2.0.0",
2280
+ "micromark-util-symbol": "^2.0.0",
2281
+ "micromark-util-types": "^2.0.0"
2282
+ },
2283
+ "funding": {
2284
+ "type": "opencollective",
2285
+ "url": "https://opencollective.com/unified"
2286
+ }
2287
+ },
2288
+ "node_modules/micromark-extension-gfm-tagfilter": {
2289
+ "version": "2.0.0",
2290
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-2.0.0.tgz",
2291
+ "integrity": "sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==",
2292
+ "license": "MIT",
2293
+ "dependencies": {
2294
+ "micromark-util-types": "^2.0.0"
2295
+ },
2296
+ "funding": {
2297
+ "type": "opencollective",
2298
+ "url": "https://opencollective.com/unified"
2299
+ }
2300
+ },
2301
+ "node_modules/micromark-extension-gfm-task-list-item": {
2302
+ "version": "2.1.0",
2303
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-2.1.0.tgz",
2304
+ "integrity": "sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==",
2305
+ "license": "MIT",
2306
+ "dependencies": {
2307
+ "devlop": "^1.0.0",
2308
+ "micromark-factory-space": "^2.0.0",
2309
+ "micromark-util-character": "^2.0.0",
2310
+ "micromark-util-symbol": "^2.0.0",
2311
+ "micromark-util-types": "^2.0.0"
2312
+ },
2313
+ "funding": {
2314
+ "type": "opencollective",
2315
+ "url": "https://opencollective.com/unified"
2316
+ }
2317
+ },
2318
+ "node_modules/micromark-factory-destination": {
2319
+ "version": "2.0.1",
2320
+ "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz",
2321
+ "integrity": "sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==",
2322
+ "funding": [
2323
+ {
2324
+ "type": "GitHub Sponsors",
2325
+ "url": "https://github.com/sponsors/unifiedjs"
2326
+ },
2327
+ {
2328
+ "type": "OpenCollective",
2329
+ "url": "https://opencollective.com/unified"
2330
+ }
2331
+ ],
2332
+ "license": "MIT",
2333
+ "dependencies": {
2334
+ "micromark-util-character": "^2.0.0",
2335
+ "micromark-util-symbol": "^2.0.0",
2336
+ "micromark-util-types": "^2.0.0"
2337
+ }
2338
+ },
2339
+ "node_modules/micromark-factory-label": {
2340
+ "version": "2.0.1",
2341
+ "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.1.tgz",
2342
+ "integrity": "sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==",
2343
+ "funding": [
2344
+ {
2345
+ "type": "GitHub Sponsors",
2346
+ "url": "https://github.com/sponsors/unifiedjs"
2347
+ },
2348
+ {
2349
+ "type": "OpenCollective",
2350
+ "url": "https://opencollective.com/unified"
2351
+ }
2352
+ ],
2353
+ "license": "MIT",
2354
+ "dependencies": {
2355
+ "devlop": "^1.0.0",
2356
+ "micromark-util-character": "^2.0.0",
2357
+ "micromark-util-symbol": "^2.0.0",
2358
+ "micromark-util-types": "^2.0.0"
2359
+ }
2360
+ },
2361
+ "node_modules/micromark-factory-space": {
2362
+ "version": "2.0.1",
2363
+ "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz",
2364
+ "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==",
2365
+ "funding": [
2366
+ {
2367
+ "type": "GitHub Sponsors",
2368
+ "url": "https://github.com/sponsors/unifiedjs"
2369
+ },
2370
+ {
2371
+ "type": "OpenCollective",
2372
+ "url": "https://opencollective.com/unified"
2373
+ }
2374
+ ],
2375
+ "license": "MIT",
2376
+ "dependencies": {
2377
+ "micromark-util-character": "^2.0.0",
2378
+ "micromark-util-types": "^2.0.0"
2379
+ }
2380
+ },
2381
+ "node_modules/micromark-factory-title": {
2382
+ "version": "2.0.1",
2383
+ "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.1.tgz",
2384
+ "integrity": "sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==",
2385
+ "funding": [
2386
+ {
2387
+ "type": "GitHub Sponsors",
2388
+ "url": "https://github.com/sponsors/unifiedjs"
2389
+ },
2390
+ {
2391
+ "type": "OpenCollective",
2392
+ "url": "https://opencollective.com/unified"
2393
+ }
2394
+ ],
2395
+ "license": "MIT",
2396
+ "dependencies": {
2397
+ "micromark-factory-space": "^2.0.0",
2398
+ "micromark-util-character": "^2.0.0",
2399
+ "micromark-util-symbol": "^2.0.0",
2400
+ "micromark-util-types": "^2.0.0"
2401
+ }
2402
+ },
2403
+ "node_modules/micromark-factory-whitespace": {
2404
+ "version": "2.0.1",
2405
+ "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.1.tgz",
2406
+ "integrity": "sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==",
2407
+ "funding": [
2408
+ {
2409
+ "type": "GitHub Sponsors",
2410
+ "url": "https://github.com/sponsors/unifiedjs"
2411
+ },
2412
+ {
2413
+ "type": "OpenCollective",
2414
+ "url": "https://opencollective.com/unified"
2415
+ }
2416
+ ],
2417
+ "license": "MIT",
2418
+ "dependencies": {
2419
+ "micromark-factory-space": "^2.0.0",
2420
+ "micromark-util-character": "^2.0.0",
2421
+ "micromark-util-symbol": "^2.0.0",
2422
+ "micromark-util-types": "^2.0.0"
2423
+ }
2424
+ },
2425
+ "node_modules/micromark-util-character": {
2426
+ "version": "2.1.1",
2427
+ "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz",
2428
+ "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==",
2429
+ "funding": [
2430
+ {
2431
+ "type": "GitHub Sponsors",
2432
+ "url": "https://github.com/sponsors/unifiedjs"
2433
+ },
2434
+ {
2435
+ "type": "OpenCollective",
2436
+ "url": "https://opencollective.com/unified"
2437
+ }
2438
+ ],
2439
+ "license": "MIT",
2440
+ "dependencies": {
2441
+ "micromark-util-symbol": "^2.0.0",
2442
+ "micromark-util-types": "^2.0.0"
2443
+ }
2444
+ },
2445
+ "node_modules/micromark-util-chunked": {
2446
+ "version": "2.0.1",
2447
+ "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz",
2448
+ "integrity": "sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==",
2449
+ "funding": [
2450
+ {
2451
+ "type": "GitHub Sponsors",
2452
+ "url": "https://github.com/sponsors/unifiedjs"
2453
+ },
2454
+ {
2455
+ "type": "OpenCollective",
2456
+ "url": "https://opencollective.com/unified"
2457
+ }
2458
+ ],
2459
+ "license": "MIT",
2460
+ "dependencies": {
2461
+ "micromark-util-symbol": "^2.0.0"
2462
+ }
2463
+ },
2464
+ "node_modules/micromark-util-classify-character": {
2465
+ "version": "2.0.1",
2466
+ "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.1.tgz",
2467
+ "integrity": "sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==",
2468
+ "funding": [
2469
+ {
2470
+ "type": "GitHub Sponsors",
2471
+ "url": "https://github.com/sponsors/unifiedjs"
2472
+ },
2473
+ {
2474
+ "type": "OpenCollective",
2475
+ "url": "https://opencollective.com/unified"
2476
+ }
2477
+ ],
2478
+ "license": "MIT",
2479
+ "dependencies": {
2480
+ "micromark-util-character": "^2.0.0",
2481
+ "micromark-util-symbol": "^2.0.0",
2482
+ "micromark-util-types": "^2.0.0"
2483
+ }
2484
+ },
2485
+ "node_modules/micromark-util-combine-extensions": {
2486
+ "version": "2.0.1",
2487
+ "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.1.tgz",
2488
+ "integrity": "sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==",
2489
+ "funding": [
2490
+ {
2491
+ "type": "GitHub Sponsors",
2492
+ "url": "https://github.com/sponsors/unifiedjs"
2493
+ },
2494
+ {
2495
+ "type": "OpenCollective",
2496
+ "url": "https://opencollective.com/unified"
2497
+ }
2498
+ ],
2499
+ "license": "MIT",
2500
+ "dependencies": {
2501
+ "micromark-util-chunked": "^2.0.0",
2502
+ "micromark-util-types": "^2.0.0"
2503
+ }
2504
+ },
2505
+ "node_modules/micromark-util-decode-numeric-character-reference": {
2506
+ "version": "2.0.2",
2507
+ "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.2.tgz",
2508
+ "integrity": "sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==",
2509
+ "funding": [
2510
+ {
2511
+ "type": "GitHub Sponsors",
2512
+ "url": "https://github.com/sponsors/unifiedjs"
2513
+ },
2514
+ {
2515
+ "type": "OpenCollective",
2516
+ "url": "https://opencollective.com/unified"
2517
+ }
2518
+ ],
2519
+ "license": "MIT",
2520
+ "dependencies": {
2521
+ "micromark-util-symbol": "^2.0.0"
2522
+ }
2523
+ },
2524
+ "node_modules/micromark-util-decode-string": {
2525
+ "version": "2.0.1",
2526
+ "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-2.0.1.tgz",
2527
+ "integrity": "sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==",
2528
+ "funding": [
2529
+ {
2530
+ "type": "GitHub Sponsors",
2531
+ "url": "https://github.com/sponsors/unifiedjs"
2532
+ },
2533
+ {
2534
+ "type": "OpenCollective",
2535
+ "url": "https://opencollective.com/unified"
2536
+ }
2537
+ ],
2538
+ "license": "MIT",
2539
+ "dependencies": {
2540
+ "decode-named-character-reference": "^1.0.0",
2541
+ "micromark-util-character": "^2.0.0",
2542
+ "micromark-util-decode-numeric-character-reference": "^2.0.0",
2543
+ "micromark-util-symbol": "^2.0.0"
2544
+ }
2545
+ },
2546
+ "node_modules/micromark-util-encode": {
2547
+ "version": "2.0.1",
2548
+ "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz",
2549
+ "integrity": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==",
2550
+ "funding": [
2551
+ {
2552
+ "type": "GitHub Sponsors",
2553
+ "url": "https://github.com/sponsors/unifiedjs"
2554
+ },
2555
+ {
2556
+ "type": "OpenCollective",
2557
+ "url": "https://opencollective.com/unified"
2558
+ }
2559
+ ],
2560
+ "license": "MIT"
2561
+ },
2562
+ "node_modules/micromark-util-html-tag-name": {
2563
+ "version": "2.0.1",
2564
+ "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz",
2565
+ "integrity": "sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==",
2566
+ "funding": [
2567
+ {
2568
+ "type": "GitHub Sponsors",
2569
+ "url": "https://github.com/sponsors/unifiedjs"
2570
+ },
2571
+ {
2572
+ "type": "OpenCollective",
2573
+ "url": "https://opencollective.com/unified"
2574
+ }
2575
+ ],
2576
+ "license": "MIT"
2577
+ },
2578
+ "node_modules/micromark-util-normalize-identifier": {
2579
+ "version": "2.0.1",
2580
+ "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.1.tgz",
2581
+ "integrity": "sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==",
2582
+ "funding": [
2583
+ {
2584
+ "type": "GitHub Sponsors",
2585
+ "url": "https://github.com/sponsors/unifiedjs"
2586
+ },
2587
+ {
2588
+ "type": "OpenCollective",
2589
+ "url": "https://opencollective.com/unified"
2590
+ }
2591
+ ],
2592
+ "license": "MIT",
2593
+ "dependencies": {
2594
+ "micromark-util-symbol": "^2.0.0"
2595
+ }
2596
+ },
2597
+ "node_modules/micromark-util-resolve-all": {
2598
+ "version": "2.0.1",
2599
+ "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz",
2600
+ "integrity": "sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==",
2601
+ "funding": [
2602
+ {
2603
+ "type": "GitHub Sponsors",
2604
+ "url": "https://github.com/sponsors/unifiedjs"
2605
+ },
2606
+ {
2607
+ "type": "OpenCollective",
2608
+ "url": "https://opencollective.com/unified"
2609
+ }
2610
+ ],
2611
+ "license": "MIT",
2612
+ "dependencies": {
2613
+ "micromark-util-types": "^2.0.0"
2614
+ }
2615
+ },
2616
+ "node_modules/micromark-util-sanitize-uri": {
2617
+ "version": "2.0.1",
2618
+ "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz",
2619
+ "integrity": "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==",
2620
+ "funding": [
2621
+ {
2622
+ "type": "GitHub Sponsors",
2623
+ "url": "https://github.com/sponsors/unifiedjs"
2624
+ },
2625
+ {
2626
+ "type": "OpenCollective",
2627
+ "url": "https://opencollective.com/unified"
2628
+ }
2629
+ ],
2630
+ "license": "MIT",
2631
+ "dependencies": {
2632
+ "micromark-util-character": "^2.0.0",
2633
+ "micromark-util-encode": "^2.0.0",
2634
+ "micromark-util-symbol": "^2.0.0"
2635
+ }
2636
+ },
2637
+ "node_modules/micromark-util-subtokenize": {
2638
+ "version": "2.1.0",
2639
+ "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.1.0.tgz",
2640
+ "integrity": "sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==",
2641
+ "funding": [
2642
+ {
2643
+ "type": "GitHub Sponsors",
2644
+ "url": "https://github.com/sponsors/unifiedjs"
2645
+ },
2646
+ {
2647
+ "type": "OpenCollective",
2648
+ "url": "https://opencollective.com/unified"
2649
+ }
2650
+ ],
2651
+ "license": "MIT",
2652
+ "dependencies": {
2653
+ "devlop": "^1.0.0",
2654
+ "micromark-util-chunked": "^2.0.0",
2655
+ "micromark-util-symbol": "^2.0.0",
2656
+ "micromark-util-types": "^2.0.0"
2657
+ }
2658
+ },
2659
+ "node_modules/micromark-util-symbol": {
2660
+ "version": "2.0.1",
2661
+ "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz",
2662
+ "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==",
2663
+ "funding": [
2664
+ {
2665
+ "type": "GitHub Sponsors",
2666
+ "url": "https://github.com/sponsors/unifiedjs"
2667
+ },
2668
+ {
2669
+ "type": "OpenCollective",
2670
+ "url": "https://opencollective.com/unified"
2671
+ }
2672
+ ],
2673
+ "license": "MIT"
2674
+ },
2675
+ "node_modules/micromark-util-types": {
2676
+ "version": "2.0.2",
2677
+ "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz",
2678
+ "integrity": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==",
2679
+ "funding": [
2680
+ {
2681
+ "type": "GitHub Sponsors",
2682
+ "url": "https://github.com/sponsors/unifiedjs"
2683
+ },
2684
+ {
2685
+ "type": "OpenCollective",
2686
+ "url": "https://opencollective.com/unified"
2687
+ }
2688
+ ],
2689
+ "license": "MIT"
2690
+ },
2691
+ "node_modules/ms": {
2692
+ "version": "2.1.3",
2693
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
2694
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
2695
+ "license": "MIT"
2696
+ },
2697
+ "node_modules/nanoid": {
2698
+ "version": "3.3.18",
2699
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.18.tgz",
2700
+ "integrity": "sha512-DTg4MJbGMWkfi6VZFdNt2/caMbQy4Ou+Op/hJQvGEWcnVfoA1QA+xzRKAzw9jD6+GVOOeYr/mIcuDSdug6F6+w==",
2701
+ "funding": [
2702
+ {
2703
+ "type": "github",
2704
+ "url": "https://github.com/sponsors/ai"
2705
+ }
2706
+ ],
2707
+ "license": "MIT",
2708
+ "bin": {
2709
+ "nanoid": "bin/nanoid.cjs"
2710
+ },
2711
+ "engines": {
2712
+ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
2713
+ }
2714
+ },
2715
+ "node_modules/parse-entities": {
2716
+ "version": "4.0.2",
2717
+ "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-4.0.2.tgz",
2718
+ "integrity": "sha512-GG2AQYWoLgL877gQIKeRPGO1xF9+eG1ujIb5soS5gPvLQ1y2o8FL90w2QWNdf9I361Mpp7726c+lj3U0qK1uGw==",
2719
+ "license": "MIT",
2720
+ "dependencies": {
2721
+ "@types/unist": "^2.0.0",
2722
+ "character-entities-legacy": "^3.0.0",
2723
+ "character-reference-invalid": "^2.0.0",
2724
+ "decode-named-character-reference": "^1.0.0",
2725
+ "is-alphanumerical": "^2.0.0",
2726
+ "is-decimal": "^2.0.0",
2727
+ "is-hexadecimal": "^2.0.0"
2728
+ },
2729
+ "funding": {
2730
+ "type": "github",
2731
+ "url": "https://github.com/sponsors/wooorm"
2732
+ }
2733
+ },
2734
+ "node_modules/parse-entities/node_modules/@types/unist": {
2735
+ "version": "2.0.11",
2736
+ "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz",
2737
+ "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==",
2738
+ "license": "MIT"
2739
+ },
2740
+ "node_modules/picocolors": {
2741
+ "version": "1.1.1",
2742
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
2743
+ "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
2744
+ "license": "ISC"
2745
+ },
2746
+ "node_modules/picomatch": {
2747
+ "version": "4.0.7",
2748
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.7.tgz",
2749
+ "integrity": "sha512-qcJu88Q2IWqJsDD529JKMdwGm/dvInW4HvQnRwiH9JtihJvzGOscDtHE3x1pBKeUOTysQ8kVmLnJ2kJu7yhcGA==",
2750
+ "license": "MIT",
2751
+ "engines": {
2752
+ "node": ">=12"
2753
+ },
2754
+ "funding": {
2755
+ "url": "https://github.com/sponsors/jonschlinkert"
2756
+ }
2757
+ },
2758
+ "node_modules/postcss": {
2759
+ "version": "8.5.28",
2760
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.28.tgz",
2761
+ "integrity": "sha512-RRuzqDtt5Y9h3quz5hWhK+TPnsmVs6WwSU6LkJMeY4HstUEDuYTG8UJSdawMRzmzAtV+KEoG8N3Qg2qLy5vM/A==",
2762
+ "funding": [
2763
+ {
2764
+ "type": "opencollective",
2765
+ "url": "https://opencollective.com/postcss/"
2766
+ },
2767
+ {
2768
+ "type": "tidelift",
2769
+ "url": "https://tidelift.com/funding/github/npm/postcss"
2770
+ },
2771
+ {
2772
+ "type": "github",
2773
+ "url": "https://github.com/sponsors/ai"
2774
+ }
2775
+ ],
2776
+ "license": "MIT",
2777
+ "dependencies": {
2778
+ "nanoid": "^3.3.18",
2779
+ "picocolors": "^1.1.1",
2780
+ "source-map-js": "^1.2.1"
2781
+ },
2782
+ "engines": {
2783
+ "node": "^10 || ^12 || >=14"
2784
+ }
2785
+ },
2786
+ "node_modules/property-information": {
2787
+ "version": "7.2.0",
2788
+ "resolved": "https://registry.npmjs.org/property-information/-/property-information-7.2.0.tgz",
2789
+ "integrity": "sha512-IAtzIB6sUiWaJYrX9smp3V46pBGbBeLFRGdh25kg1334VcBlD8HzhPeNIWQH9zhGmo2itIe25EHt9dQP7G5hmg==",
2790
+ "license": "MIT",
2791
+ "funding": {
2792
+ "type": "github",
2793
+ "url": "https://github.com/sponsors/wooorm"
2794
+ }
2795
+ },
2796
+ "node_modules/react": {
2797
+ "version": "19.2.8",
2798
+ "resolved": "https://registry.npmjs.org/react/-/react-19.2.8.tgz",
2799
+ "integrity": "sha512-PWaYA1L/q9u2u7xYQi+Y3L3Yfnie7XyLeaJICV1MGD6LprsBxcAqGjYyr0eY3p+QdsA+x/Irkt4Qif8D63+Sbw==",
2800
+ "license": "MIT",
2801
+ "engines": {
2802
+ "node": ">=0.10.0"
2803
+ }
2804
+ },
2805
+ "node_modules/react-dom": {
2806
+ "version": "19.2.8",
2807
+ "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.8.tgz",
2808
+ "integrity": "sha512-rVprimfGBG3DR+Tq0IQG2DT5PxKth1WIGDmj5yPmlzr4YBe7uyE+Du4oVqTDXZSHGGGXRtTJEGSSePyQCMBglQ==",
2809
+ "license": "MIT",
2810
+ "dependencies": {
2811
+ "scheduler": "^0.27.0"
2812
+ },
2813
+ "peerDependencies": {
2814
+ "react": "^19.2.8"
2815
+ }
2816
+ },
2817
+ "node_modules/react-markdown": {
2818
+ "version": "10.1.0",
2819
+ "resolved": "https://registry.npmjs.org/react-markdown/-/react-markdown-10.1.0.tgz",
2820
+ "integrity": "sha512-qKxVopLT/TyA6BX3Ue5NwabOsAzm0Q7kAPwq6L+wWDwisYs7R8vZ0nRXqq6rkueboxpkjvLGU9fWifiX/ZZFxQ==",
2821
+ "license": "MIT",
2822
+ "dependencies": {
2823
+ "@types/hast": "^3.0.0",
2824
+ "@types/mdast": "^4.0.0",
2825
+ "devlop": "^1.0.0",
2826
+ "hast-util-to-jsx-runtime": "^2.0.0",
2827
+ "html-url-attributes": "^3.0.0",
2828
+ "mdast-util-to-hast": "^13.0.0",
2829
+ "remark-parse": "^11.0.0",
2830
+ "remark-rehype": "^11.0.0",
2831
+ "unified": "^11.0.0",
2832
+ "unist-util-visit": "^5.0.0",
2833
+ "vfile": "^6.0.0"
2834
+ },
2835
+ "funding": {
2836
+ "type": "opencollective",
2837
+ "url": "https://opencollective.com/unified"
2838
+ },
2839
+ "peerDependencies": {
2840
+ "@types/react": ">=18",
2841
+ "react": ">=18"
2842
+ }
2843
+ },
2844
+ "node_modules/remark-gfm": {
2845
+ "version": "4.0.1",
2846
+ "resolved": "https://registry.npmjs.org/remark-gfm/-/remark-gfm-4.0.1.tgz",
2847
+ "integrity": "sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==",
2848
+ "license": "MIT",
2849
+ "dependencies": {
2850
+ "@types/mdast": "^4.0.0",
2851
+ "mdast-util-gfm": "^3.0.0",
2852
+ "micromark-extension-gfm": "^3.0.0",
2853
+ "remark-parse": "^11.0.0",
2854
+ "remark-stringify": "^11.0.0",
2855
+ "unified": "^11.0.0"
2856
+ },
2857
+ "funding": {
2858
+ "type": "opencollective",
2859
+ "url": "https://opencollective.com/unified"
2860
+ }
2861
+ },
2862
+ "node_modules/remark-parse": {
2863
+ "version": "11.0.0",
2864
+ "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-11.0.0.tgz",
2865
+ "integrity": "sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==",
2866
+ "license": "MIT",
2867
+ "dependencies": {
2868
+ "@types/mdast": "^4.0.0",
2869
+ "mdast-util-from-markdown": "^2.0.0",
2870
+ "micromark-util-types": "^2.0.0",
2871
+ "unified": "^11.0.0"
2872
+ },
2873
+ "funding": {
2874
+ "type": "opencollective",
2875
+ "url": "https://opencollective.com/unified"
2876
+ }
2877
+ },
2878
+ "node_modules/remark-rehype": {
2879
+ "version": "11.1.2",
2880
+ "resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-11.1.2.tgz",
2881
+ "integrity": "sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==",
2882
+ "license": "MIT",
2883
+ "dependencies": {
2884
+ "@types/hast": "^3.0.0",
2885
+ "@types/mdast": "^4.0.0",
2886
+ "mdast-util-to-hast": "^13.0.0",
2887
+ "unified": "^11.0.0",
2888
+ "vfile": "^6.0.0"
2889
+ },
2890
+ "funding": {
2891
+ "type": "opencollective",
2892
+ "url": "https://opencollective.com/unified"
2893
+ }
2894
+ },
2895
+ "node_modules/remark-stringify": {
2896
+ "version": "11.0.0",
2897
+ "resolved": "https://registry.npmjs.org/remark-stringify/-/remark-stringify-11.0.0.tgz",
2898
+ "integrity": "sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==",
2899
+ "license": "MIT",
2900
+ "dependencies": {
2901
+ "@types/mdast": "^4.0.0",
2902
+ "mdast-util-to-markdown": "^2.0.0",
2903
+ "unified": "^11.0.0"
2904
+ },
2905
+ "funding": {
2906
+ "type": "opencollective",
2907
+ "url": "https://opencollective.com/unified"
2908
+ }
2909
+ },
2910
+ "node_modules/rolldown": {
2911
+ "version": "1.2.7",
2912
+ "resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.2.7.tgz",
2913
+ "integrity": "sha512-g0EtLvBjTUB7jhyV0S/TCup3v/XSVl45vUIGbOGU4QPiyjTenCe4mKuFvW9fEgYmS2Fo42AUssRmNuMziXdrig==",
2914
+ "license": "MIT",
2915
+ "dependencies": {
2916
+ "@oxc-project/types": "=0.148.0",
2917
+ "@rolldown/pluginutils": "^1.0.0"
2918
+ },
2919
+ "bin": {
2920
+ "rolldown": "bin/cli.mjs"
2921
+ },
2922
+ "engines": {
2923
+ "node": "^20.19.0 || >=22.12.0"
2924
+ },
2925
+ "optionalDependencies": {
2926
+ "@rolldown/binding-android-arm-eabi": "1.2.7",
2927
+ "@rolldown/binding-android-arm64": "1.2.7",
2928
+ "@rolldown/binding-darwin-arm64": "1.2.7",
2929
+ "@rolldown/binding-darwin-x64": "1.2.7",
2930
+ "@rolldown/binding-freebsd-x64": "1.2.7",
2931
+ "@rolldown/binding-linux-arm-gnueabihf": "1.2.7",
2932
+ "@rolldown/binding-linux-arm64-gnu": "1.2.7",
2933
+ "@rolldown/binding-linux-arm64-musl": "1.2.7",
2934
+ "@rolldown/binding-linux-ppc64-gnu": "1.2.7",
2935
+ "@rolldown/binding-linux-s390x-gnu": "1.2.7",
2936
+ "@rolldown/binding-linux-x64-gnu": "1.2.7",
2937
+ "@rolldown/binding-linux-x64-musl": "1.2.7",
2938
+ "@rolldown/binding-openharmony-arm64": "1.2.7",
2939
+ "@rolldown/binding-win32-arm64-msvc": "1.2.7",
2940
+ "@rolldown/binding-win32-x64-msvc": "1.2.7"
2941
+ }
2942
+ },
2943
+ "node_modules/scheduler": {
2944
+ "version": "0.27.0",
2945
+ "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz",
2946
+ "integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==",
2947
+ "license": "MIT"
2948
+ },
2949
+ "node_modules/source-map-js": {
2950
+ "version": "1.2.1",
2951
+ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
2952
+ "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
2953
+ "license": "BSD-3-Clause",
2954
+ "engines": {
2955
+ "node": ">=0.10.0"
2956
+ }
2957
+ },
2958
+ "node_modules/space-separated-tokens": {
2959
+ "version": "2.0.2",
2960
+ "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz",
2961
+ "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==",
2962
+ "license": "MIT",
2963
+ "funding": {
2964
+ "type": "github",
2965
+ "url": "https://github.com/sponsors/wooorm"
2966
+ }
2967
+ },
2968
+ "node_modules/stringify-entities": {
2969
+ "version": "4.0.4",
2970
+ "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.4.tgz",
2971
+ "integrity": "sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==",
2972
+ "license": "MIT",
2973
+ "dependencies": {
2974
+ "character-entities-html4": "^2.0.0",
2975
+ "character-entities-legacy": "^3.0.0"
2976
+ },
2977
+ "funding": {
2978
+ "type": "github",
2979
+ "url": "https://github.com/sponsors/wooorm"
2980
+ }
2981
+ },
2982
+ "node_modules/style-to-js": {
2983
+ "version": "1.1.21",
2984
+ "resolved": "https://registry.npmjs.org/style-to-js/-/style-to-js-1.1.21.tgz",
2985
+ "integrity": "sha512-RjQetxJrrUJLQPHbLku6U/ocGtzyjbJMP9lCNK7Ag0CNh690nSH8woqWH9u16nMjYBAok+i7JO1NP2pOy8IsPQ==",
2986
+ "license": "MIT",
2987
+ "dependencies": {
2988
+ "style-to-object": "1.0.14"
2989
+ }
2990
+ },
2991
+ "node_modules/style-to-object": {
2992
+ "version": "1.0.14",
2993
+ "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-1.0.14.tgz",
2994
+ "integrity": "sha512-LIN7rULI0jBscWQYaSswptyderlarFkjQ+t79nzty8tcIAceVomEVlLzH5VP4Cmsv6MtKhs7qaAiwlcp+Mgaxw==",
2995
+ "license": "MIT",
2996
+ "dependencies": {
2997
+ "inline-style-parser": "0.2.7"
2998
+ }
2999
+ },
3000
+ "node_modules/tailwind-merge": {
3001
+ "version": "3.6.0",
3002
+ "resolved": "https://registry.npmjs.org/tailwind-merge/-/tailwind-merge-3.6.0.tgz",
3003
+ "integrity": "sha512-uxL7qAVQriqRQPAyK3pj66VqskWqoZ37PW94jwOTwNfq/z9oyu1V+eqrZqtR2+fCiXdYOZe/Modt8GtvqNzu+w==",
3004
+ "license": "MIT",
3005
+ "funding": {
3006
+ "type": "github",
3007
+ "url": "https://github.com/sponsors/dcastil"
3008
+ }
3009
+ },
3010
+ "node_modules/tailwindcss": {
3011
+ "version": "4.3.3",
3012
+ "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.3.3.tgz",
3013
+ "integrity": "sha512-gOhV3P7ufE62QDGg1zVaTgCR+EtPv92k2nIhVcVKcLmxT1sUBsQGhnZj175j+MqRt4zLF7ic+sCYjfhxMxj7YQ==",
3014
+ "license": "MIT"
3015
+ },
3016
+ "node_modules/tailwindcss-animate": {
3017
+ "version": "1.0.7",
3018
+ "resolved": "https://registry.npmjs.org/tailwindcss-animate/-/tailwindcss-animate-1.0.7.tgz",
3019
+ "integrity": "sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA==",
3020
+ "license": "MIT",
3021
+ "peerDependencies": {
3022
+ "tailwindcss": ">=3.0.0 || insiders"
3023
+ }
3024
+ },
3025
+ "node_modules/tapable": {
3026
+ "version": "2.3.3",
3027
+ "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.3.tgz",
3028
+ "integrity": "sha512-uxc/zpqFg6x7C8vOE7lh6Lbda8eEL9zmVm/PLeTPBRhh1xCgdWaQ+J1CUieGpIfm2HdtsUpRv+HshiasBMcc6A==",
3029
+ "dev": true,
3030
+ "license": "MIT",
3031
+ "engines": {
3032
+ "node": ">=6"
3033
+ },
3034
+ "funding": {
3035
+ "type": "opencollective",
3036
+ "url": "https://opencollective.com/webpack"
3037
+ }
3038
+ },
3039
+ "node_modules/tinyglobby": {
3040
+ "version": "0.2.17",
3041
+ "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.17.tgz",
3042
+ "integrity": "sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==",
3043
+ "license": "MIT",
3044
+ "dependencies": {
3045
+ "fdir": "^6.5.0",
3046
+ "picomatch": "^4.0.4"
3047
+ },
3048
+ "engines": {
3049
+ "node": ">=12.0.0"
3050
+ },
3051
+ "funding": {
3052
+ "url": "https://github.com/sponsors/SuperchupuDev"
3053
+ }
3054
+ },
3055
+ "node_modules/tinyglobby/node_modules/fdir": {
3056
+ "version": "6.5.0",
3057
+ "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
3058
+ "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
3059
+ "license": "MIT",
3060
+ "engines": {
3061
+ "node": ">=12.0.0"
3062
+ },
3063
+ "peerDependencies": {
3064
+ "picomatch": "^3 || ^4"
3065
+ },
3066
+ "peerDependenciesMeta": {
3067
+ "picomatch": {
3068
+ "optional": true
3069
+ }
3070
+ }
3071
+ },
3072
+ "node_modules/trim-lines": {
3073
+ "version": "3.0.1",
3074
+ "resolved": "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz",
3075
+ "integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==",
3076
+ "license": "MIT",
3077
+ "funding": {
3078
+ "type": "github",
3079
+ "url": "https://github.com/sponsors/wooorm"
3080
+ }
3081
+ },
3082
+ "node_modules/trough": {
3083
+ "version": "2.2.0",
3084
+ "resolved": "https://registry.npmjs.org/trough/-/trough-2.2.0.tgz",
3085
+ "integrity": "sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==",
3086
+ "license": "MIT",
3087
+ "funding": {
3088
+ "type": "github",
3089
+ "url": "https://github.com/sponsors/wooorm"
3090
+ }
3091
+ },
3092
+ "node_modules/typescript": {
3093
+ "name": "@typescript/typescript6",
3094
+ "version": "6.0.2",
3095
+ "resolved": "https://registry.npmjs.org/@typescript/typescript6/-/typescript6-6.0.2.tgz",
3096
+ "integrity": "sha512-mbCddXd+jm7hfx7w2YU64/Av4/NqqeG3GoRZgxPcgoTxYjhrcfJRw9ULch71SS4G+Q3bOXFhRvPqjguN0Hyp5w==",
3097
+ "dev": true,
3098
+ "license": "Apache-2.0",
3099
+ "dependencies": {
3100
+ "@typescript/old": "npm:typescript@^6"
3101
+ },
3102
+ "bin": {
3103
+ "tsc6": "bin/tsc6"
3104
+ }
3105
+ },
3106
+ "node_modules/undici-types": {
3107
+ "version": "6.21.0",
3108
+ "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz",
3109
+ "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==",
3110
+ "devOptional": true,
3111
+ "license": "MIT"
3112
+ },
3113
+ "node_modules/unified": {
3114
+ "version": "11.0.5",
3115
+ "resolved": "https://registry.npmjs.org/unified/-/unified-11.0.5.tgz",
3116
+ "integrity": "sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==",
3117
+ "license": "MIT",
3118
+ "dependencies": {
3119
+ "@types/unist": "^3.0.0",
3120
+ "bail": "^2.0.0",
3121
+ "devlop": "^1.0.0",
3122
+ "extend": "^3.0.0",
3123
+ "is-plain-obj": "^4.0.0",
3124
+ "trough": "^2.0.0",
3125
+ "vfile": "^6.0.0"
3126
+ },
3127
+ "funding": {
3128
+ "type": "opencollective",
3129
+ "url": "https://opencollective.com/unified"
3130
+ }
3131
+ },
3132
+ "node_modules/unist-util-is": {
3133
+ "version": "6.0.1",
3134
+ "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.1.tgz",
3135
+ "integrity": "sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==",
3136
+ "license": "MIT",
3137
+ "dependencies": {
3138
+ "@types/unist": "^3.0.0"
3139
+ },
3140
+ "funding": {
3141
+ "type": "opencollective",
3142
+ "url": "https://opencollective.com/unified"
3143
+ }
3144
+ },
3145
+ "node_modules/unist-util-position": {
3146
+ "version": "5.0.0",
3147
+ "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-5.0.0.tgz",
3148
+ "integrity": "sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==",
3149
+ "license": "MIT",
3150
+ "dependencies": {
3151
+ "@types/unist": "^3.0.0"
3152
+ },
3153
+ "funding": {
3154
+ "type": "opencollective",
3155
+ "url": "https://opencollective.com/unified"
3156
+ }
3157
+ },
3158
+ "node_modules/unist-util-stringify-position": {
3159
+ "version": "4.0.0",
3160
+ "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz",
3161
+ "integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==",
3162
+ "license": "MIT",
3163
+ "dependencies": {
3164
+ "@types/unist": "^3.0.0"
3165
+ },
3166
+ "funding": {
3167
+ "type": "opencollective",
3168
+ "url": "https://opencollective.com/unified"
3169
+ }
3170
+ },
3171
+ "node_modules/unist-util-visit": {
3172
+ "version": "5.1.0",
3173
+ "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-5.1.0.tgz",
3174
+ "integrity": "sha512-m+vIdyeCOpdr/QeQCu2EzxX/ohgS8KbnPDgFni4dQsfSCtpz8UqDyY5GjRru8PDKuYn7Fq19j1CQ+nJSsGKOzg==",
3175
+ "license": "MIT",
3176
+ "dependencies": {
3177
+ "@types/unist": "^3.0.0",
3178
+ "unist-util-is": "^6.0.0",
3179
+ "unist-util-visit-parents": "^6.0.0"
3180
+ },
3181
+ "funding": {
3182
+ "type": "opencollective",
3183
+ "url": "https://opencollective.com/unified"
3184
+ }
3185
+ },
3186
+ "node_modules/unist-util-visit-parents": {
3187
+ "version": "6.0.2",
3188
+ "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.2.tgz",
3189
+ "integrity": "sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==",
3190
+ "license": "MIT",
3191
+ "dependencies": {
3192
+ "@types/unist": "^3.0.0",
3193
+ "unist-util-is": "^6.0.0"
3194
+ },
3195
+ "funding": {
3196
+ "type": "opencollective",
3197
+ "url": "https://opencollective.com/unified"
3198
+ }
3199
+ },
3200
+ "node_modules/vfile": {
3201
+ "version": "6.0.3",
3202
+ "resolved": "https://registry.npmjs.org/vfile/-/vfile-6.0.3.tgz",
3203
+ "integrity": "sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==",
3204
+ "license": "MIT",
3205
+ "dependencies": {
3206
+ "@types/unist": "^3.0.0",
3207
+ "vfile-message": "^4.0.0"
3208
+ },
3209
+ "funding": {
3210
+ "type": "opencollective",
3211
+ "url": "https://opencollective.com/unified"
3212
+ }
3213
+ },
3214
+ "node_modules/vfile-message": {
3215
+ "version": "4.0.3",
3216
+ "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.3.tgz",
3217
+ "integrity": "sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==",
3218
+ "license": "MIT",
3219
+ "dependencies": {
3220
+ "@types/unist": "^3.0.0",
3221
+ "unist-util-stringify-position": "^4.0.0"
3222
+ },
3223
+ "funding": {
3224
+ "type": "opencollective",
3225
+ "url": "https://opencollective.com/unified"
3226
+ }
3227
+ },
3228
+ "node_modules/vite": {
3229
+ "version": "8.2.2",
3230
+ "resolved": "https://registry.npmjs.org/vite/-/vite-8.2.2.tgz",
3231
+ "integrity": "sha512-cFKLV/PRgAUlIRm5WjMjJ86jrftzpqcgH+Us+DS8mI3CDNiH30Whrz8uHL3+MOLPAgqbMBAqWdAHAphOAM+z/Q==",
3232
+ "license": "MIT",
3233
+ "dependencies": {
3234
+ "lightningcss": "^1.33.0",
3235
+ "picomatch": "^4.0.5",
3236
+ "postcss": "^8.5.26",
3237
+ "rolldown": "~1.2.4",
3238
+ "tinyglobby": "^0.2.17"
3239
+ },
3240
+ "bin": {
3241
+ "vite": "bin/vite.js"
3242
+ },
3243
+ "engines": {
3244
+ "node": "^20.19.0 || >=22.12.0"
3245
+ },
3246
+ "funding": {
3247
+ "url": "https://github.com/vitejs/vite?sponsor=1"
3248
+ },
3249
+ "optionalDependencies": {
3250
+ "fsevents": "~2.3.3"
3251
+ },
3252
+ "peerDependencies": {
3253
+ "@types/node": "^20.19.0 || >=22.12.0",
3254
+ "@vitejs/devtools": "^0.4.0 || ^0.5.0",
3255
+ "esbuild": "^0.27.0 || ^0.28.0",
3256
+ "jiti": ">=1.21.0",
3257
+ "less": "^4.0.0",
3258
+ "sass": "^1.70.0",
3259
+ "sass-embedded": "^1.70.0",
3260
+ "stylus": ">=0.54.8",
3261
+ "sugarss": "^5.0.0",
3262
+ "terser": "^5.16.0",
3263
+ "tsx": "^4.8.1",
3264
+ "yaml": "^2.4.2"
3265
+ },
3266
+ "peerDependenciesMeta": {
3267
+ "@types/node": {
3268
+ "optional": true
3269
+ },
3270
+ "@vitejs/devtools": {
3271
+ "optional": true
3272
+ },
3273
+ "esbuild": {
3274
+ "optional": true
3275
+ },
3276
+ "jiti": {
3277
+ "optional": true
3278
+ },
3279
+ "less": {
3280
+ "optional": true
3281
+ },
3282
+ "sass": {
3283
+ "optional": true
3284
+ },
3285
+ "sass-embedded": {
3286
+ "optional": true
3287
+ },
3288
+ "stylus": {
3289
+ "optional": true
3290
+ },
3291
+ "sugarss": {
3292
+ "optional": true
3293
+ },
3294
+ "terser": {
3295
+ "optional": true
3296
+ },
3297
+ "tsx": {
3298
+ "optional": true
3299
+ },
3300
+ "yaml": {
3301
+ "optional": true
3302
+ }
3303
+ }
3304
+ },
3305
+ "node_modules/vite/node_modules/lightningcss": {
3306
+ "version": "1.33.0",
3307
+ "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.33.0.tgz",
3308
+ "integrity": "sha512-WkUDrojuJs0xkgGf2udWxa3yGBRxPtxUkB79i6aCZLRgc7PM8fZe9TosfPDcvEpQZbuFASnHYmRLBLUbmLOIIA==",
3309
+ "license": "MPL-2.0",
3310
+ "dependencies": {
3311
+ "detect-libc": "^2.0.3"
3312
+ },
3313
+ "engines": {
3314
+ "node": ">= 12.0.0"
3315
+ },
3316
+ "funding": {
3317
+ "type": "opencollective",
3318
+ "url": "https://opencollective.com/parcel"
3319
+ },
3320
+ "optionalDependencies": {
3321
+ "lightningcss-android-arm64": "1.33.0",
3322
+ "lightningcss-darwin-arm64": "1.33.0",
3323
+ "lightningcss-darwin-x64": "1.33.0",
3324
+ "lightningcss-freebsd-x64": "1.33.0",
3325
+ "lightningcss-linux-arm-gnueabihf": "1.33.0",
3326
+ "lightningcss-linux-arm64-gnu": "1.33.0",
3327
+ "lightningcss-linux-arm64-musl": "1.33.0",
3328
+ "lightningcss-linux-x64-gnu": "1.33.0",
3329
+ "lightningcss-linux-x64-musl": "1.33.0",
3330
+ "lightningcss-win32-arm64-msvc": "1.33.0",
3331
+ "lightningcss-win32-x64-msvc": "1.33.0"
3332
+ }
3333
+ },
3334
+ "node_modules/vite/node_modules/lightningcss-android-arm64": {
3335
+ "version": "1.33.0",
3336
+ "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.33.0.tgz",
3337
+ "integrity": "sha512-gEpRTalKdosp4Bb8qWtc2iOgE5SeIHlpS1up9bFq2wAyYhl1UdTObYiHe98zEM9SQvSoqQZ1IQD0JNpg3Ml5pg==",
3338
+ "cpu": [
3339
+ "arm64"
3340
+ ],
3341
+ "license": "MPL-2.0",
3342
+ "optional": true,
3343
+ "os": [
3344
+ "android"
3345
+ ],
3346
+ "engines": {
3347
+ "node": ">= 12.0.0"
3348
+ },
3349
+ "funding": {
3350
+ "type": "opencollective",
3351
+ "url": "https://opencollective.com/parcel"
3352
+ }
3353
+ },
3354
+ "node_modules/vite/node_modules/lightningcss-darwin-arm64": {
3355
+ "version": "1.33.0",
3356
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.33.0.tgz",
3357
+ "integrity": "sha512-Sciaz8eenNTKn9b3t7+xr0ipTp9YxKQY4npwQ3mrRuL0BAVHBLyZxofhaKBAVtzmtRZ/zTyo0/to4B1uWG/Djg==",
3358
+ "cpu": [
3359
+ "arm64"
3360
+ ],
3361
+ "license": "MPL-2.0",
3362
+ "optional": true,
3363
+ "os": [
3364
+ "darwin"
3365
+ ],
3366
+ "engines": {
3367
+ "node": ">= 12.0.0"
3368
+ },
3369
+ "funding": {
3370
+ "type": "opencollective",
3371
+ "url": "https://opencollective.com/parcel"
3372
+ }
3373
+ },
3374
+ "node_modules/vite/node_modules/lightningcss-darwin-x64": {
3375
+ "version": "1.33.0",
3376
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.33.0.tgz",
3377
+ "integrity": "sha512-Z5UPAxzrjlWNNyGy6i65cJzzvgJ5D3T6wMvs+gWpY9d7qRhANrxqAp6LhxIgZhWEw18RfJTGcRxjuLIBr+m8XQ==",
3378
+ "cpu": [
3379
+ "x64"
3380
+ ],
3381
+ "license": "MPL-2.0",
3382
+ "optional": true,
3383
+ "os": [
3384
+ "darwin"
3385
+ ],
3386
+ "engines": {
3387
+ "node": ">= 12.0.0"
3388
+ },
3389
+ "funding": {
3390
+ "type": "opencollective",
3391
+ "url": "https://opencollective.com/parcel"
3392
+ }
3393
+ },
3394
+ "node_modules/vite/node_modules/lightningcss-freebsd-x64": {
3395
+ "version": "1.33.0",
3396
+ "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.33.0.tgz",
3397
+ "integrity": "sha512-QQM/Ti/hQajJwCY+RiWuCZ9sdtI/XQk7nDK5vC8kkdwixezOlDgvDx7+RT+QjK6FcFT4MpsuoBnHIo/O3StRRg==",
3398
+ "cpu": [
3399
+ "x64"
3400
+ ],
3401
+ "license": "MPL-2.0",
3402
+ "optional": true,
3403
+ "os": [
3404
+ "freebsd"
3405
+ ],
3406
+ "engines": {
3407
+ "node": ">= 12.0.0"
3408
+ },
3409
+ "funding": {
3410
+ "type": "opencollective",
3411
+ "url": "https://opencollective.com/parcel"
3412
+ }
3413
+ },
3414
+ "node_modules/vite/node_modules/lightningcss-linux-arm-gnueabihf": {
3415
+ "version": "1.33.0",
3416
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.33.0.tgz",
3417
+ "integrity": "sha512-N7FVBe6iS24MlM6R/4RBTxGhQheZGs7tiQ9U32UtF75NzP5Q7xWPRqLBCKxlRQRk3rY1jCIPLzx7WzOhuUIRLQ==",
3418
+ "cpu": [
3419
+ "arm"
3420
+ ],
3421
+ "license": "MPL-2.0",
3422
+ "optional": true,
3423
+ "os": [
3424
+ "linux"
3425
+ ],
3426
+ "engines": {
3427
+ "node": ">= 12.0.0"
3428
+ },
3429
+ "funding": {
3430
+ "type": "opencollective",
3431
+ "url": "https://opencollective.com/parcel"
3432
+ }
3433
+ },
3434
+ "node_modules/vite/node_modules/lightningcss-linux-arm64-gnu": {
3435
+ "version": "1.33.0",
3436
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.33.0.tgz",
3437
+ "integrity": "sha512-j2v/itmy4HlNxlc6voKXYgBqNi0Ng2LShg4z7GufpEgs05P+2suBVyi9I6YHq5uoVFx9ETin3eCEhLVyXGQnKg==",
3438
+ "cpu": [
3439
+ "arm64"
3440
+ ],
3441
+ "libc": [
3442
+ "glibc"
3443
+ ],
3444
+ "license": "MPL-2.0",
3445
+ "optional": true,
3446
+ "os": [
3447
+ "linux"
3448
+ ],
3449
+ "engines": {
3450
+ "node": ">= 12.0.0"
3451
+ },
3452
+ "funding": {
3453
+ "type": "opencollective",
3454
+ "url": "https://opencollective.com/parcel"
3455
+ }
3456
+ },
3457
+ "node_modules/vite/node_modules/lightningcss-linux-arm64-musl": {
3458
+ "version": "1.33.0",
3459
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.33.0.tgz",
3460
+ "integrity": "sha512-yiO5ROMuYQgXbC60yjZU5CYSFZGKXL0HFATXt9mHJn1+zW55oCtMI9NfcVhYLMFDL7gV7oBPon/EmMMGg2OvtQ==",
3461
+ "cpu": [
3462
+ "arm64"
3463
+ ],
3464
+ "libc": [
3465
+ "musl"
3466
+ ],
3467
+ "license": "MPL-2.0",
3468
+ "optional": true,
3469
+ "os": [
3470
+ "linux"
3471
+ ],
3472
+ "engines": {
3473
+ "node": ">= 12.0.0"
3474
+ },
3475
+ "funding": {
3476
+ "type": "opencollective",
3477
+ "url": "https://opencollective.com/parcel"
3478
+ }
3479
+ },
3480
+ "node_modules/vite/node_modules/lightningcss-linux-x64-gnu": {
3481
+ "version": "1.33.0",
3482
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.33.0.tgz",
3483
+ "integrity": "sha512-ar+Ju7LmcN0Jo4FpL4hpFybwNG9/3A/Br5KW2n2jyODg3MEZXaDYADdemoNS+BDNfMgKvylJLj4S5tyRActuAg==",
3484
+ "cpu": [
3485
+ "x64"
3486
+ ],
3487
+ "libc": [
3488
+ "glibc"
3489
+ ],
3490
+ "license": "MPL-2.0",
3491
+ "optional": true,
3492
+ "os": [
3493
+ "linux"
3494
+ ],
3495
+ "engines": {
3496
+ "node": ">= 12.0.0"
3497
+ },
3498
+ "funding": {
3499
+ "type": "opencollective",
3500
+ "url": "https://opencollective.com/parcel"
3501
+ }
3502
+ },
3503
+ "node_modules/vite/node_modules/lightningcss-linux-x64-musl": {
3504
+ "version": "1.33.0",
3505
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.33.0.tgz",
3506
+ "integrity": "sha512-RYiYbkokw0trfKqqzfF55lginwEPrD3OJDfTuJzFs1MK6iFnDenaz1fqLLtX4ITG3OktJQXOeTaw1awrBAlZPw==",
3507
+ "cpu": [
3508
+ "x64"
3509
+ ],
3510
+ "libc": [
3511
+ "musl"
3512
+ ],
3513
+ "license": "MPL-2.0",
3514
+ "optional": true,
3515
+ "os": [
3516
+ "linux"
3517
+ ],
3518
+ "engines": {
3519
+ "node": ">= 12.0.0"
3520
+ },
3521
+ "funding": {
3522
+ "type": "opencollective",
3523
+ "url": "https://opencollective.com/parcel"
3524
+ }
3525
+ },
3526
+ "node_modules/vite/node_modules/lightningcss-win32-arm64-msvc": {
3527
+ "version": "1.33.0",
3528
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.33.0.tgz",
3529
+ "integrity": "sha512-1K+MPfLSFVpphzpdbfkhlWk6wBrTObBzS2T6db10PNOZgR9GoVsAWzwNyuhUYYbTp23j+4RrncfujZ4uAzXvwA==",
3530
+ "cpu": [
3531
+ "arm64"
3532
+ ],
3533
+ "license": "MPL-2.0",
3534
+ "optional": true,
3535
+ "os": [
3536
+ "win32"
3537
+ ],
3538
+ "engines": {
3539
+ "node": ">= 12.0.0"
3540
+ },
3541
+ "funding": {
3542
+ "type": "opencollective",
3543
+ "url": "https://opencollective.com/parcel"
3544
+ }
3545
+ },
3546
+ "node_modules/vite/node_modules/lightningcss-win32-x64-msvc": {
3547
+ "version": "1.33.0",
3548
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.33.0.tgz",
3549
+ "integrity": "sha512-OlEICDx/Xl0FqSp4bry8zFnCvGpig3Gl4gCquvYwHuqJKEC1+n9NgDniFvqHGmMv1ZkqDJrDqKKSykTDX+ehuA==",
3550
+ "cpu": [
3551
+ "x64"
3552
+ ],
3553
+ "license": "MPL-2.0",
3554
+ "optional": true,
3555
+ "os": [
3556
+ "win32"
3557
+ ],
3558
+ "engines": {
3559
+ "node": ">= 12.0.0"
3560
+ },
3561
+ "funding": {
3562
+ "type": "opencollective",
3563
+ "url": "https://opencollective.com/parcel"
3564
+ }
3565
+ },
3566
+ "node_modules/zwitch": {
3567
+ "version": "2.0.4",
3568
+ "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz",
3569
+ "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==",
3570
+ "license": "MIT",
3571
+ "funding": {
3572
+ "type": "github",
3573
+ "url": "https://github.com/sponsors/wooorm"
3574
+ }
3575
+ },
3576
+ "packages/sdk": {
3577
+ "name": "@notis/sdk",
3578
+ "version": "0.2.0",
3579
+ "dependencies": {
3580
+ "react-markdown": "^10.1.0",
3581
+ "remark-gfm": "^4.0.1"
3582
+ },
3583
+ "devDependencies": {
3584
+ "@types/node": "^20.0.0",
3585
+ "@types/react": "^19.2.18",
3586
+ "@types/react-dom": "^19.2.7",
3587
+ "typescript": "^7.0.2"
3588
+ },
3589
+ "peerDependencies": {
3590
+ "@vitejs/plugin-react": ">=4.0.0",
3591
+ "react": ">=18.0.0",
3592
+ "react-dom": ">=18.0.0",
3593
+ "vite": ">=5.0.0"
3594
+ }
3595
+ },
3596
+ "packages/sdk/node_modules/@types/node": {
3597
+ "version": "20.19.43",
3598
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-20.19.43.tgz",
3599
+ "integrity": "sha512-6oYBAi5ikg4Pl+kGsoYtawUMBT2zZMCvPNF7pVLnHZfd1zf38DRiWn/gT01RYCdUqkv7Fhr+C9ot4/tb+2sVvA==",
3600
+ "dev": true,
3601
+ "license": "MIT",
3602
+ "dependencies": {
3603
+ "undici-types": "~6.21.0"
3604
+ }
3605
+ },
3606
+ "packages/sdk/node_modules/typescript": {
3607
+ "version": "7.0.2",
3608
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-7.0.2.tgz",
3609
+ "integrity": "sha512-8FYau96o3NKOhbjKi/qNvG/W5jhzxkbdm5sj9AbZ/5T5sWqn3hJgLfGx27sRKZWTvyzCP8dLRBTf5tBTSRVUNA==",
3610
+ "dev": true,
3611
+ "license": "Apache-2.0",
3612
+ "bin": {
3613
+ "tsc": "bin/tsc"
3614
+ },
3615
+ "engines": {
3616
+ "node": ">=16.20.0"
3617
+ },
3618
+ "optionalDependencies": {
3619
+ "@typescript/typescript-aix-ppc64": "7.0.2",
3620
+ "@typescript/typescript-darwin-arm64": "7.0.2",
3621
+ "@typescript/typescript-darwin-x64": "7.0.2",
3622
+ "@typescript/typescript-freebsd-arm64": "7.0.2",
3623
+ "@typescript/typescript-freebsd-x64": "7.0.2",
3624
+ "@typescript/typescript-linux-arm": "7.0.2",
3625
+ "@typescript/typescript-linux-arm64": "7.0.2",
3626
+ "@typescript/typescript-linux-loong64": "7.0.2",
3627
+ "@typescript/typescript-linux-mips64el": "7.0.2",
3628
+ "@typescript/typescript-linux-ppc64": "7.0.2",
3629
+ "@typescript/typescript-linux-riscv64": "7.0.2",
3630
+ "@typescript/typescript-linux-s390x": "7.0.2",
3631
+ "@typescript/typescript-linux-x64": "7.0.2",
3632
+ "@typescript/typescript-netbsd-arm64": "7.0.2",
3633
+ "@typescript/typescript-netbsd-x64": "7.0.2",
3634
+ "@typescript/typescript-openbsd-arm64": "7.0.2",
3635
+ "@typescript/typescript-openbsd-x64": "7.0.2",
3636
+ "@typescript/typescript-sunos-x64": "7.0.2",
3637
+ "@typescript/typescript-win32-arm64": "7.0.2",
3638
+ "@typescript/typescript-win32-x64": "7.0.2"
3639
+ }
3640
+ }
3641
+ }
3642
+ }