@notis_ai/cli 0.2.6 → 0.2.8

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 (151) hide show
  1. package/README.md +17 -0
  2. package/dist/scaffolds/notis-database/app/page.tsx +38 -41
  3. package/dist/scaffolds/notis-database/lib/types.ts +5 -7
  4. package/dist/scaffolds/notis-database/metadata/screenshot-1.png +0 -0
  5. package/dist/scaffolds/notis-database/metadata/screenshot-2.png +0 -0
  6. package/dist/scaffolds/notis-database/metadata/screenshot-3.png +0 -0
  7. package/dist/scaffolds/notis-database/metadata/screenshot-4.png +0 -0
  8. package/dist/scaffolds/notis-database/metadata/screenshot-5.png +0 -0
  9. package/dist/scaffolds/notis-database/metadata/screenshot-fixtures.json +1839 -0
  10. package/dist/scaffolds/notis-database/notis.config.ts +48 -1
  11. package/dist/scaffolds/notis-database/package-lock.json +3935 -0
  12. package/dist/scaffolds/notis-database/package.json +2 -1
  13. package/dist/scaffolds/notis-database/packages/sdk/package.json +36 -0
  14. package/dist/scaffolds/notis-database/packages/sdk/src/components/DocumentEditor.tsx +93 -0
  15. package/dist/scaffolds/notis-database/packages/sdk/src/components/Markdown.tsx +60 -0
  16. package/dist/scaffolds/notis-database/packages/sdk/src/components/MultiSelectActionBar.tsx +278 -0
  17. package/dist/scaffolds/notis-database/packages/sdk/src/components/MultiSelectCheckbox.tsx +91 -0
  18. package/dist/scaffolds/notis-database/packages/sdk/src/components/MultiSelectDragOverlay.tsx +39 -0
  19. package/dist/scaffolds/notis-database/packages/sdk/src/config.ts +196 -0
  20. package/dist/scaffolds/notis-database/packages/sdk/src/documents.ts +229 -0
  21. package/dist/scaffolds/notis-database/packages/sdk/src/hooks/useBackend.ts +41 -0
  22. package/dist/scaffolds/notis-database/packages/sdk/src/hooks/useDatabaseSchema.ts +85 -0
  23. package/dist/scaffolds/notis-database/packages/sdk/src/hooks/useDocument.ts +78 -0
  24. package/dist/scaffolds/notis-database/packages/sdk/src/hooks/useDocuments.ts +121 -0
  25. package/dist/scaffolds/notis-database/packages/sdk/src/hooks/useMultiSelect.ts +539 -0
  26. package/dist/scaffolds/notis-database/packages/sdk/src/hooks/useNotis.ts +34 -0
  27. package/dist/scaffolds/notis-database/packages/sdk/src/hooks/useNotisNavigation.ts +49 -0
  28. package/dist/scaffolds/notis-database/packages/sdk/src/hooks/useTool.ts +64 -0
  29. package/dist/scaffolds/notis-database/packages/sdk/src/hooks/useTools.ts +56 -0
  30. package/dist/scaffolds/notis-database/packages/sdk/src/hooks/useTopBarSearch.ts +73 -0
  31. package/dist/scaffolds/notis-database/packages/sdk/src/hooks/useUpsertDocument.ts +95 -0
  32. package/dist/scaffolds/notis-database/packages/sdk/src/index.ts +83 -0
  33. package/dist/scaffolds/notis-database/packages/sdk/src/provider.tsx +43 -0
  34. package/dist/scaffolds/notis-database/packages/sdk/src/runtime.ts +220 -0
  35. package/dist/scaffolds/notis-database/packages/sdk/src/styles.css +186 -0
  36. package/dist/scaffolds/notis-database/packages/sdk/src/ui.ts +15 -0
  37. package/dist/scaffolds/notis-database/packages/sdk/src/vite.ts +56 -0
  38. package/dist/scaffolds/notis-database/packages/sdk/tsconfig.json +15 -0
  39. package/dist/scaffolds/notis-database/src/mock-runtime.ts +4 -1
  40. package/dist/scaffolds/notis-journal/CHANGELOG.md +4 -0
  41. package/dist/scaffolds/notis-journal/app/page.tsx +1 -0
  42. package/dist/scaffolds/notis-journal/package-lock.json +4615 -0
  43. package/dist/scaffolds/notis-journal/package.json +2 -2
  44. package/dist/scaffolds/notis-journal/packages/sdk/src/config.ts +52 -1
  45. package/dist/scaffolds/notis-notes/app/page.tsx +39 -46
  46. package/dist/scaffolds/notis-notes/app/phosphor-icons.ts +596 -0
  47. package/dist/scaffolds/notis-notes/lib/visible-properties.ts +144 -0
  48. package/dist/scaffolds/notis-notes/metadata/screenshot-1.png +0 -0
  49. package/dist/scaffolds/notis-notes/metadata/screenshot-2.png +0 -0
  50. package/dist/scaffolds/notis-notes/metadata/screenshot-3.png +0 -0
  51. package/dist/scaffolds/notis-notes/metadata/screenshot-4.png +0 -0
  52. package/dist/scaffolds/notis-notes/metadata/screenshot-5.png +0 -0
  53. package/dist/scaffolds/notis-notes/metadata/screenshot-fixtures.json +752 -0
  54. package/dist/scaffolds/notis-notes/notis.config.ts +48 -3
  55. package/dist/scaffolds/notis-notes/package-lock.json +4636 -0
  56. package/dist/scaffolds/notis-notes/package.json +7 -3
  57. package/dist/scaffolds/notis-notes/packages/sdk/package.json +36 -0
  58. package/dist/scaffolds/notis-notes/packages/sdk/src/components/DocumentEditor.tsx +93 -0
  59. package/dist/scaffolds/notis-notes/packages/sdk/src/components/Markdown.tsx +60 -0
  60. package/dist/scaffolds/notis-notes/packages/sdk/src/components/MultiSelectActionBar.tsx +278 -0
  61. package/dist/scaffolds/notis-notes/packages/sdk/src/components/MultiSelectCheckbox.tsx +91 -0
  62. package/dist/scaffolds/notis-notes/packages/sdk/src/components/MultiSelectDragOverlay.tsx +39 -0
  63. package/dist/scaffolds/notis-notes/packages/sdk/src/config.ts +196 -0
  64. package/dist/scaffolds/notis-notes/packages/sdk/src/documents.ts +229 -0
  65. package/dist/scaffolds/notis-notes/packages/sdk/src/hooks/useBackend.ts +41 -0
  66. package/dist/scaffolds/notis-notes/packages/sdk/src/hooks/useDatabaseSchema.ts +85 -0
  67. package/dist/scaffolds/notis-notes/packages/sdk/src/hooks/useDocument.ts +78 -0
  68. package/dist/scaffolds/notis-notes/packages/sdk/src/hooks/useDocuments.ts +121 -0
  69. package/dist/scaffolds/notis-notes/packages/sdk/src/hooks/useMultiSelect.ts +539 -0
  70. package/dist/scaffolds/notis-notes/packages/sdk/src/hooks/useNotis.ts +34 -0
  71. package/dist/scaffolds/notis-notes/packages/sdk/src/hooks/useNotisNavigation.ts +49 -0
  72. package/dist/scaffolds/notis-notes/packages/sdk/src/hooks/useTool.ts +64 -0
  73. package/dist/scaffolds/notis-notes/packages/sdk/src/hooks/useTools.ts +56 -0
  74. package/dist/scaffolds/notis-notes/packages/sdk/src/hooks/useTopBarSearch.ts +73 -0
  75. package/dist/scaffolds/notis-notes/packages/sdk/src/hooks/useUpsertDocument.ts +95 -0
  76. package/dist/scaffolds/notis-notes/packages/sdk/src/index.ts +83 -0
  77. package/dist/scaffolds/notis-notes/packages/sdk/src/provider.tsx +43 -0
  78. package/dist/scaffolds/notis-notes/packages/sdk/src/runtime.ts +220 -0
  79. package/dist/scaffolds/notis-notes/packages/sdk/src/styles.css +186 -0
  80. package/dist/scaffolds/notis-notes/packages/sdk/src/ui.ts +15 -0
  81. package/dist/scaffolds/notis-notes/packages/sdk/src/vite.ts +56 -0
  82. package/dist/scaffolds/notis-notes/packages/sdk/tsconfig.json +15 -0
  83. package/dist/scaffolds/notis-random/CHANGELOG.md +12 -2
  84. package/dist/scaffolds/notis-random/app/history/page.tsx +5 -4
  85. package/dist/scaffolds/notis-random/app/page.tsx +141 -74
  86. package/dist/scaffolds/notis-random/components/ui/button.tsx +50 -0
  87. package/dist/scaffolds/notis-random/components/ui/card.tsx +16 -0
  88. package/dist/scaffolds/notis-random/components/ui/input.tsx +23 -0
  89. package/dist/scaffolds/notis-random/components.json +20 -0
  90. package/dist/scaffolds/notis-random/lib/notis-tools.ts +26 -7
  91. package/dist/scaffolds/notis-random/lib/rng.ts +179 -19
  92. package/dist/scaffolds/notis-random/lib/roll-record.ts +103 -16
  93. package/dist/scaffolds/notis-random/metadata/screenshot-1.png +0 -0
  94. package/dist/scaffolds/notis-random/metadata/screenshot-2.png +0 -0
  95. package/dist/scaffolds/notis-random/metadata/screenshot-3.png +0 -0
  96. package/dist/scaffolds/notis-random/metadata/screenshot-4.png +0 -0
  97. package/dist/scaffolds/notis-random/metadata/screenshot-5.png +0 -0
  98. package/dist/scaffolds/notis-random/metadata/screenshot-fixtures.json +753 -0
  99. package/dist/scaffolds/notis-random/notis.config.ts +47 -3
  100. package/dist/scaffolds/notis-random/package-lock.json +4513 -0
  101. package/dist/scaffolds/notis-random/package.json +6 -2
  102. package/dist/scaffolds/notis-random/packages/sdk/package.json +36 -0
  103. package/dist/scaffolds/notis-random/packages/sdk/src/components/DocumentEditor.tsx +93 -0
  104. package/dist/scaffolds/notis-random/packages/sdk/src/components/Markdown.tsx +60 -0
  105. package/dist/scaffolds/notis-random/packages/sdk/src/components/MultiSelectActionBar.tsx +278 -0
  106. package/dist/scaffolds/notis-random/packages/sdk/src/components/MultiSelectCheckbox.tsx +91 -0
  107. package/dist/scaffolds/notis-random/packages/sdk/src/components/MultiSelectDragOverlay.tsx +39 -0
  108. package/dist/scaffolds/notis-random/packages/sdk/src/config.ts +196 -0
  109. package/dist/scaffolds/notis-random/packages/sdk/src/documents.ts +229 -0
  110. package/dist/scaffolds/notis-random/packages/sdk/src/hooks/useBackend.ts +41 -0
  111. package/dist/scaffolds/notis-random/packages/sdk/src/hooks/useDatabaseSchema.ts +85 -0
  112. package/dist/scaffolds/notis-random/packages/sdk/src/hooks/useDocument.ts +78 -0
  113. package/dist/scaffolds/notis-random/packages/sdk/src/hooks/useDocuments.ts +121 -0
  114. package/dist/scaffolds/notis-random/packages/sdk/src/hooks/useMultiSelect.ts +539 -0
  115. package/dist/scaffolds/notis-random/packages/sdk/src/hooks/useNotis.ts +34 -0
  116. package/dist/scaffolds/notis-random/packages/sdk/src/hooks/useNotisNavigation.ts +49 -0
  117. package/dist/scaffolds/notis-random/packages/sdk/src/hooks/useTool.ts +64 -0
  118. package/dist/scaffolds/notis-random/packages/sdk/src/hooks/useTools.ts +56 -0
  119. package/dist/scaffolds/notis-random/packages/sdk/src/hooks/useTopBarSearch.ts +73 -0
  120. package/dist/scaffolds/notis-random/packages/sdk/src/hooks/useUpsertDocument.ts +95 -0
  121. package/dist/scaffolds/notis-random/packages/sdk/src/index.ts +83 -0
  122. package/dist/scaffolds/notis-random/packages/sdk/src/provider.tsx +43 -0
  123. package/dist/scaffolds/notis-random/packages/sdk/src/runtime.ts +220 -0
  124. package/dist/scaffolds/notis-random/packages/sdk/src/styles.css +186 -0
  125. package/dist/scaffolds/notis-random/packages/sdk/src/ui.ts +15 -0
  126. package/dist/scaffolds/notis-random/packages/sdk/src/vite.ts +56 -0
  127. package/dist/scaffolds/notis-random/packages/sdk/tsconfig.json +15 -0
  128. package/dist/scaffolds/notis-random/tailwind.config.ts +8 -1
  129. package/dist/scaffolds.json +8 -6
  130. package/package.json +2 -1
  131. package/skills/notis-apps/SKILL.md +449 -144
  132. package/skills/notis-apps/cli.md +15 -0
  133. package/skills/notis-cli/SKILL.md +8 -4
  134. package/skills/notis-onboarding/BRIEF.md +93 -0
  135. package/src/cli.js +52 -7
  136. package/src/command-specs/apps.js +154 -21
  137. package/src/command-specs/diagnostics.js +674 -0
  138. package/src/command-specs/helpers.js +4 -1
  139. package/src/command-specs/index.js +8 -0
  140. package/src/command-specs/onboarding.js +216 -0
  141. package/src/command-specs/smoke.js +386 -0
  142. package/src/command-specs/tools.js +189 -5
  143. package/src/runtime/app-platform.js +65 -4
  144. package/src/runtime/desktop-auth.js +66 -17
  145. package/src/runtime/errors.js +1 -0
  146. package/src/runtime/output.js +21 -3
  147. package/src/runtime/profiles.js +214 -18
  148. package/src/runtime/telemetry.js +92 -0
  149. package/src/runtime/transport.js +29 -1
  150. package/template/.harness/index.html.tmpl +30 -2
  151. package/template/packages/sdk/src/config.ts +38 -1
@@ -0,0 +1,4513 @@
1
+ {
2
+ "name": "@notis-apps/notis-random",
3
+ "version": "0.1.0",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "@notis-apps/notis-random",
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.1.0",
14
+ "class-variance-authority": "^0.7.0",
15
+ "clsx": "^2.1.1",
16
+ "react": "^19.0.0",
17
+ "react-dom": "^19.0.0",
18
+ "tailwind-merge": "^2.6.0"
19
+ },
20
+ "devDependencies": {
21
+ "@types/node": "^22.0.0",
22
+ "@types/react": "^19.0.0",
23
+ "@types/react-dom": "^19.0.0",
24
+ "@vitejs/plugin-react": "^4.3.0",
25
+ "autoprefixer": "^10.4.0",
26
+ "postcss": "^8.4.0",
27
+ "tailwindcss": "^3.4.0",
28
+ "tailwindcss-animate": "^1.0.7",
29
+ "tsx": "^4.21.0",
30
+ "typescript": "^5.5.0",
31
+ "vite": "^6.0.0"
32
+ }
33
+ },
34
+ "../../packages/sdk": {
35
+ "name": "@notis/sdk",
36
+ "version": "0.1.0",
37
+ "extraneous": true,
38
+ "dependencies": {
39
+ "react-markdown": "^10.1.0",
40
+ "remark-gfm": "^4.0.1"
41
+ },
42
+ "devDependencies": {
43
+ "@types/node": "^20.0.0",
44
+ "@types/react": "^19.0.0",
45
+ "@types/react-dom": "^19.0.0",
46
+ "typescript": "^5.0.0"
47
+ },
48
+ "peerDependencies": {
49
+ "@vitejs/plugin-react": ">=4.0.0",
50
+ "react": ">=18.0.0",
51
+ "react-dom": ">=18.0.0",
52
+ "vite": ">=5.0.0"
53
+ }
54
+ },
55
+ "node_modules/@alloc/quick-lru": {
56
+ "version": "5.2.0",
57
+ "dev": true,
58
+ "license": "MIT",
59
+ "engines": {
60
+ "node": ">=10"
61
+ },
62
+ "funding": {
63
+ "url": "https://github.com/sponsors/sindresorhus"
64
+ }
65
+ },
66
+ "node_modules/@babel/code-frame": {
67
+ "version": "7.29.7",
68
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.7.tgz",
69
+ "integrity": "sha512-Aup7aUOfpbAUg2ROOJN6Iw5f9DMBlzu0mIkm/malLQFN/YQgO48wCj0Kxa3sEHJvPVFg7siR+qRInwXd2qhQKw==",
70
+ "license": "MIT",
71
+ "dependencies": {
72
+ "@babel/helper-validator-identifier": "^7.29.7",
73
+ "js-tokens": "^4.0.0",
74
+ "picocolors": "^1.1.1"
75
+ },
76
+ "engines": {
77
+ "node": ">=6.9.0"
78
+ }
79
+ },
80
+ "node_modules/@babel/compat-data": {
81
+ "version": "7.29.7",
82
+ "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.29.7.tgz",
83
+ "integrity": "sha512-locTkQyKvwIEgBzVrn8693ebc97F2U8ZHjbXwDXJ5Fn2TCpNwTlKcaKLkdHop5c/icOFE7qt7Q9JC5hnKNa6Gg==",
84
+ "license": "MIT",
85
+ "engines": {
86
+ "node": ">=6.9.0"
87
+ }
88
+ },
89
+ "node_modules/@babel/core": {
90
+ "version": "7.29.7",
91
+ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.29.7.tgz",
92
+ "integrity": "sha512-RgHBCvtjbOK2gXSNBNIkNoEc9qoVEtau3hj8gEqKQuL3HZAibKarWFEI3Lfm6EYKkLalOh8eSrj9b+ch9H/VBA==",
93
+ "license": "MIT",
94
+ "dependencies": {
95
+ "@babel/code-frame": "^7.29.7",
96
+ "@babel/generator": "^7.29.7",
97
+ "@babel/helper-compilation-targets": "^7.29.7",
98
+ "@babel/helper-module-transforms": "^7.29.7",
99
+ "@babel/helpers": "^7.29.7",
100
+ "@babel/parser": "^7.29.7",
101
+ "@babel/template": "^7.29.7",
102
+ "@babel/traverse": "^7.29.7",
103
+ "@babel/types": "^7.29.7",
104
+ "@jridgewell/remapping": "^2.3.5",
105
+ "convert-source-map": "^2.0.0",
106
+ "debug": "^4.1.0",
107
+ "gensync": "^1.0.0-beta.2",
108
+ "json5": "^2.2.3",
109
+ "semver": "^6.3.1"
110
+ },
111
+ "engines": {
112
+ "node": ">=6.9.0"
113
+ },
114
+ "funding": {
115
+ "type": "opencollective",
116
+ "url": "https://opencollective.com/babel"
117
+ }
118
+ },
119
+ "node_modules/@babel/generator": {
120
+ "version": "7.29.7",
121
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.7.tgz",
122
+ "integrity": "sha512-DkXD5OJQaAQIdZ1bt3UZdEnHAn9Imd3IVBdX03UFe+ony9Ojw5pzr9YVKGDY1jt+Gcn/FnGkNf8r+Vj5NOJWtQ==",
123
+ "license": "MIT",
124
+ "dependencies": {
125
+ "@babel/parser": "^7.29.7",
126
+ "@babel/types": "^7.29.7",
127
+ "@jridgewell/gen-mapping": "^0.3.12",
128
+ "@jridgewell/trace-mapping": "^0.3.28",
129
+ "jsesc": "^3.0.2"
130
+ },
131
+ "engines": {
132
+ "node": ">=6.9.0"
133
+ }
134
+ },
135
+ "node_modules/@babel/helper-compilation-targets": {
136
+ "version": "7.29.7",
137
+ "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.29.7.tgz",
138
+ "integrity": "sha512-wem6WaBj4NaVYVdNhLPPVacES6ZJ+KBBfSkTMD3YZxbP3rm3Di85tJU5ljaUNhaOynt+Aj0xruhYuzQBt8n71g==",
139
+ "license": "MIT",
140
+ "dependencies": {
141
+ "@babel/compat-data": "^7.29.7",
142
+ "@babel/helper-validator-option": "^7.29.7",
143
+ "browserslist": "^4.24.0",
144
+ "lru-cache": "^5.1.1",
145
+ "semver": "^6.3.1"
146
+ },
147
+ "engines": {
148
+ "node": ">=6.9.0"
149
+ }
150
+ },
151
+ "node_modules/@babel/helper-globals": {
152
+ "version": "7.29.7",
153
+ "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.29.7.tgz",
154
+ "integrity": "sha512-3nQVUAtvkKH9zahfWgw96Jc/uFOmjACE1kQz82E2lqWmHBgjzbNlsC22nuQTfahmWeQtTq5nQ/4Nnd2A1wj4zA==",
155
+ "license": "MIT",
156
+ "engines": {
157
+ "node": ">=6.9.0"
158
+ }
159
+ },
160
+ "node_modules/@babel/helper-module-imports": {
161
+ "version": "7.29.7",
162
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.29.7.tgz",
163
+ "integrity": "sha512-ejHwrQQYcm9xnTivShn2IDOlIzInN34AXskvq9QicvCtEzq1Vzclu/tKF8Jq1Cg8JG2GL6/EmjgsCT7lXepE3g==",
164
+ "license": "MIT",
165
+ "dependencies": {
166
+ "@babel/traverse": "^7.29.7",
167
+ "@babel/types": "^7.29.7"
168
+ },
169
+ "engines": {
170
+ "node": ">=6.9.0"
171
+ }
172
+ },
173
+ "node_modules/@babel/helper-module-transforms": {
174
+ "version": "7.29.7",
175
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.29.7.tgz",
176
+ "integrity": "sha512-UPUVSyXbOh627KiCIGQSgwWzGeBKLkaJ9PJEdrngIwMSzxLR4jS4+f1f1jb7VzBbg8nFLaYotvVPFCTqdrmTAg==",
177
+ "license": "MIT",
178
+ "dependencies": {
179
+ "@babel/helper-module-imports": "^7.29.7",
180
+ "@babel/helper-validator-identifier": "^7.29.7",
181
+ "@babel/traverse": "^7.29.7"
182
+ },
183
+ "engines": {
184
+ "node": ">=6.9.0"
185
+ },
186
+ "peerDependencies": {
187
+ "@babel/core": "^7.0.0"
188
+ }
189
+ },
190
+ "node_modules/@babel/helper-plugin-utils": {
191
+ "version": "7.28.6",
192
+ "license": "MIT",
193
+ "engines": {
194
+ "node": ">=6.9.0"
195
+ }
196
+ },
197
+ "node_modules/@babel/helper-string-parser": {
198
+ "version": "7.29.7",
199
+ "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.29.7.tgz",
200
+ "integrity": "sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==",
201
+ "license": "MIT",
202
+ "engines": {
203
+ "node": ">=6.9.0"
204
+ }
205
+ },
206
+ "node_modules/@babel/helper-validator-identifier": {
207
+ "version": "7.29.7",
208
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.29.7.tgz",
209
+ "integrity": "sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==",
210
+ "license": "MIT",
211
+ "engines": {
212
+ "node": ">=6.9.0"
213
+ }
214
+ },
215
+ "node_modules/@babel/helper-validator-option": {
216
+ "version": "7.29.7",
217
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.29.7.tgz",
218
+ "integrity": "sha512-N9ZErrD+yW5geCDtBqnOoxmR8+tNKiGuxKlDpuJxfsqpa2dFcexaziGAE/qoHLiDDreVNMupxGmSoNlyvsA3gw==",
219
+ "license": "MIT",
220
+ "engines": {
221
+ "node": ">=6.9.0"
222
+ }
223
+ },
224
+ "node_modules/@babel/helpers": {
225
+ "version": "7.29.7",
226
+ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.29.7.tgz",
227
+ "integrity": "sha512-1k2lAGRMfHTcwuNYcCNUmaUffmQv8KWMfh2iJUUeRlwlwH4FdNG7mfPI10NPfLHJFThE4Tyr4mv7kTNZOiPuBg==",
228
+ "license": "MIT",
229
+ "dependencies": {
230
+ "@babel/template": "^7.29.7",
231
+ "@babel/types": "^7.29.7"
232
+ },
233
+ "engines": {
234
+ "node": ">=6.9.0"
235
+ }
236
+ },
237
+ "node_modules/@babel/parser": {
238
+ "version": "7.29.7",
239
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.7.tgz",
240
+ "integrity": "sha512-hnORnjP/1P/zFEndoeX+n+t1RwWRJiJpM/jO7FW32Kn9r5+sJB2JWOdYo4L6k78j15eCwY3Gm/7364B1EMwtNg==",
241
+ "license": "MIT",
242
+ "dependencies": {
243
+ "@babel/types": "^7.29.7"
244
+ },
245
+ "bin": {
246
+ "parser": "bin/babel-parser.js"
247
+ },
248
+ "engines": {
249
+ "node": ">=6.0.0"
250
+ }
251
+ },
252
+ "node_modules/@babel/plugin-transform-react-jsx-self": {
253
+ "version": "7.27.1",
254
+ "license": "MIT",
255
+ "dependencies": {
256
+ "@babel/helper-plugin-utils": "^7.27.1"
257
+ },
258
+ "engines": {
259
+ "node": ">=6.9.0"
260
+ },
261
+ "peerDependencies": {
262
+ "@babel/core": "^7.0.0-0"
263
+ }
264
+ },
265
+ "node_modules/@babel/plugin-transform-react-jsx-source": {
266
+ "version": "7.27.1",
267
+ "license": "MIT",
268
+ "dependencies": {
269
+ "@babel/helper-plugin-utils": "^7.27.1"
270
+ },
271
+ "engines": {
272
+ "node": ">=6.9.0"
273
+ },
274
+ "peerDependencies": {
275
+ "@babel/core": "^7.0.0-0"
276
+ }
277
+ },
278
+ "node_modules/@babel/template": {
279
+ "version": "7.29.7",
280
+ "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.29.7.tgz",
281
+ "integrity": "sha512-puq+Gf35oI24FeN11LkoUQFqv9uwNeWpxXZi/Ji3rRIoKAzKnxRaZ+Gkj0vKS9ZCiTESfng1N9LyOyXvo+m+Gg==",
282
+ "license": "MIT",
283
+ "dependencies": {
284
+ "@babel/code-frame": "^7.29.7",
285
+ "@babel/parser": "^7.29.7",
286
+ "@babel/types": "^7.29.7"
287
+ },
288
+ "engines": {
289
+ "node": ">=6.9.0"
290
+ }
291
+ },
292
+ "node_modules/@babel/traverse": {
293
+ "version": "7.29.7",
294
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.29.7.tgz",
295
+ "integrity": "sha512-EhlfNQtZ+NK22w5BM61ciuiq1m58ed33Wr1Xan//ZRTy6hgjnwyCffRYwzsGXdASJSUJ1guZILsErh1eQcl+zw==",
296
+ "license": "MIT",
297
+ "dependencies": {
298
+ "@babel/code-frame": "^7.29.7",
299
+ "@babel/generator": "^7.29.7",
300
+ "@babel/helper-globals": "^7.29.7",
301
+ "@babel/parser": "^7.29.7",
302
+ "@babel/template": "^7.29.7",
303
+ "@babel/types": "^7.29.7",
304
+ "debug": "^4.3.1"
305
+ },
306
+ "engines": {
307
+ "node": ">=6.9.0"
308
+ }
309
+ },
310
+ "node_modules/@babel/types": {
311
+ "version": "7.29.7",
312
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.7.tgz",
313
+ "integrity": "sha512-4zBIxpPzowiZpusoFkyGVwakdRJUyuH5PxQ/PrqghfdFWWasvnCdPfQXHrenDai+gyLARulZjZowCOj6fjT4pA==",
314
+ "license": "MIT",
315
+ "dependencies": {
316
+ "@babel/helper-string-parser": "^7.29.7",
317
+ "@babel/helper-validator-identifier": "^7.29.7"
318
+ },
319
+ "engines": {
320
+ "node": ">=6.9.0"
321
+ }
322
+ },
323
+ "node_modules/@esbuild/aix-ppc64": {
324
+ "version": "0.25.12",
325
+ "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.12.tgz",
326
+ "integrity": "sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==",
327
+ "cpu": [
328
+ "ppc64"
329
+ ],
330
+ "license": "MIT",
331
+ "optional": true,
332
+ "os": [
333
+ "aix"
334
+ ],
335
+ "engines": {
336
+ "node": ">=18"
337
+ }
338
+ },
339
+ "node_modules/@esbuild/android-arm": {
340
+ "version": "0.25.12",
341
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.12.tgz",
342
+ "integrity": "sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==",
343
+ "cpu": [
344
+ "arm"
345
+ ],
346
+ "license": "MIT",
347
+ "optional": true,
348
+ "os": [
349
+ "android"
350
+ ],
351
+ "engines": {
352
+ "node": ">=18"
353
+ }
354
+ },
355
+ "node_modules/@esbuild/android-arm64": {
356
+ "version": "0.25.12",
357
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.12.tgz",
358
+ "integrity": "sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==",
359
+ "cpu": [
360
+ "arm64"
361
+ ],
362
+ "license": "MIT",
363
+ "optional": true,
364
+ "os": [
365
+ "android"
366
+ ],
367
+ "engines": {
368
+ "node": ">=18"
369
+ }
370
+ },
371
+ "node_modules/@esbuild/android-x64": {
372
+ "version": "0.25.12",
373
+ "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.12.tgz",
374
+ "integrity": "sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==",
375
+ "cpu": [
376
+ "x64"
377
+ ],
378
+ "license": "MIT",
379
+ "optional": true,
380
+ "os": [
381
+ "android"
382
+ ],
383
+ "engines": {
384
+ "node": ">=18"
385
+ }
386
+ },
387
+ "node_modules/@esbuild/darwin-arm64": {
388
+ "version": "0.25.12",
389
+ "cpu": [
390
+ "arm64"
391
+ ],
392
+ "license": "MIT",
393
+ "optional": true,
394
+ "os": [
395
+ "darwin"
396
+ ],
397
+ "engines": {
398
+ "node": ">=18"
399
+ }
400
+ },
401
+ "node_modules/@esbuild/darwin-x64": {
402
+ "version": "0.25.12",
403
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.12.tgz",
404
+ "integrity": "sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==",
405
+ "cpu": [
406
+ "x64"
407
+ ],
408
+ "license": "MIT",
409
+ "optional": true,
410
+ "os": [
411
+ "darwin"
412
+ ],
413
+ "engines": {
414
+ "node": ">=18"
415
+ }
416
+ },
417
+ "node_modules/@esbuild/freebsd-arm64": {
418
+ "version": "0.25.12",
419
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.12.tgz",
420
+ "integrity": "sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==",
421
+ "cpu": [
422
+ "arm64"
423
+ ],
424
+ "license": "MIT",
425
+ "optional": true,
426
+ "os": [
427
+ "freebsd"
428
+ ],
429
+ "engines": {
430
+ "node": ">=18"
431
+ }
432
+ },
433
+ "node_modules/@esbuild/freebsd-x64": {
434
+ "version": "0.25.12",
435
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.12.tgz",
436
+ "integrity": "sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==",
437
+ "cpu": [
438
+ "x64"
439
+ ],
440
+ "license": "MIT",
441
+ "optional": true,
442
+ "os": [
443
+ "freebsd"
444
+ ],
445
+ "engines": {
446
+ "node": ">=18"
447
+ }
448
+ },
449
+ "node_modules/@esbuild/linux-arm": {
450
+ "version": "0.25.12",
451
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.12.tgz",
452
+ "integrity": "sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==",
453
+ "cpu": [
454
+ "arm"
455
+ ],
456
+ "license": "MIT",
457
+ "optional": true,
458
+ "os": [
459
+ "linux"
460
+ ],
461
+ "engines": {
462
+ "node": ">=18"
463
+ }
464
+ },
465
+ "node_modules/@esbuild/linux-arm64": {
466
+ "version": "0.25.12",
467
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.12.tgz",
468
+ "integrity": "sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==",
469
+ "cpu": [
470
+ "arm64"
471
+ ],
472
+ "license": "MIT",
473
+ "optional": true,
474
+ "os": [
475
+ "linux"
476
+ ],
477
+ "engines": {
478
+ "node": ">=18"
479
+ }
480
+ },
481
+ "node_modules/@esbuild/linux-ia32": {
482
+ "version": "0.25.12",
483
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.12.tgz",
484
+ "integrity": "sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==",
485
+ "cpu": [
486
+ "ia32"
487
+ ],
488
+ "license": "MIT",
489
+ "optional": true,
490
+ "os": [
491
+ "linux"
492
+ ],
493
+ "engines": {
494
+ "node": ">=18"
495
+ }
496
+ },
497
+ "node_modules/@esbuild/linux-loong64": {
498
+ "version": "0.25.12",
499
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.12.tgz",
500
+ "integrity": "sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==",
501
+ "cpu": [
502
+ "loong64"
503
+ ],
504
+ "license": "MIT",
505
+ "optional": true,
506
+ "os": [
507
+ "linux"
508
+ ],
509
+ "engines": {
510
+ "node": ">=18"
511
+ }
512
+ },
513
+ "node_modules/@esbuild/linux-mips64el": {
514
+ "version": "0.25.12",
515
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.12.tgz",
516
+ "integrity": "sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==",
517
+ "cpu": [
518
+ "mips64el"
519
+ ],
520
+ "license": "MIT",
521
+ "optional": true,
522
+ "os": [
523
+ "linux"
524
+ ],
525
+ "engines": {
526
+ "node": ">=18"
527
+ }
528
+ },
529
+ "node_modules/@esbuild/linux-ppc64": {
530
+ "version": "0.25.12",
531
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.12.tgz",
532
+ "integrity": "sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==",
533
+ "cpu": [
534
+ "ppc64"
535
+ ],
536
+ "license": "MIT",
537
+ "optional": true,
538
+ "os": [
539
+ "linux"
540
+ ],
541
+ "engines": {
542
+ "node": ">=18"
543
+ }
544
+ },
545
+ "node_modules/@esbuild/linux-riscv64": {
546
+ "version": "0.25.12",
547
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.12.tgz",
548
+ "integrity": "sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==",
549
+ "cpu": [
550
+ "riscv64"
551
+ ],
552
+ "license": "MIT",
553
+ "optional": true,
554
+ "os": [
555
+ "linux"
556
+ ],
557
+ "engines": {
558
+ "node": ">=18"
559
+ }
560
+ },
561
+ "node_modules/@esbuild/linux-s390x": {
562
+ "version": "0.25.12",
563
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.12.tgz",
564
+ "integrity": "sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==",
565
+ "cpu": [
566
+ "s390x"
567
+ ],
568
+ "license": "MIT",
569
+ "optional": true,
570
+ "os": [
571
+ "linux"
572
+ ],
573
+ "engines": {
574
+ "node": ">=18"
575
+ }
576
+ },
577
+ "node_modules/@esbuild/linux-x64": {
578
+ "version": "0.25.12",
579
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.12.tgz",
580
+ "integrity": "sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==",
581
+ "cpu": [
582
+ "x64"
583
+ ],
584
+ "license": "MIT",
585
+ "optional": true,
586
+ "os": [
587
+ "linux"
588
+ ],
589
+ "engines": {
590
+ "node": ">=18"
591
+ }
592
+ },
593
+ "node_modules/@esbuild/netbsd-arm64": {
594
+ "version": "0.25.12",
595
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.12.tgz",
596
+ "integrity": "sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==",
597
+ "cpu": [
598
+ "arm64"
599
+ ],
600
+ "license": "MIT",
601
+ "optional": true,
602
+ "os": [
603
+ "netbsd"
604
+ ],
605
+ "engines": {
606
+ "node": ">=18"
607
+ }
608
+ },
609
+ "node_modules/@esbuild/netbsd-x64": {
610
+ "version": "0.25.12",
611
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.12.tgz",
612
+ "integrity": "sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==",
613
+ "cpu": [
614
+ "x64"
615
+ ],
616
+ "license": "MIT",
617
+ "optional": true,
618
+ "os": [
619
+ "netbsd"
620
+ ],
621
+ "engines": {
622
+ "node": ">=18"
623
+ }
624
+ },
625
+ "node_modules/@esbuild/openbsd-arm64": {
626
+ "version": "0.25.12",
627
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.12.tgz",
628
+ "integrity": "sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==",
629
+ "cpu": [
630
+ "arm64"
631
+ ],
632
+ "license": "MIT",
633
+ "optional": true,
634
+ "os": [
635
+ "openbsd"
636
+ ],
637
+ "engines": {
638
+ "node": ">=18"
639
+ }
640
+ },
641
+ "node_modules/@esbuild/openbsd-x64": {
642
+ "version": "0.25.12",
643
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.12.tgz",
644
+ "integrity": "sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==",
645
+ "cpu": [
646
+ "x64"
647
+ ],
648
+ "license": "MIT",
649
+ "optional": true,
650
+ "os": [
651
+ "openbsd"
652
+ ],
653
+ "engines": {
654
+ "node": ">=18"
655
+ }
656
+ },
657
+ "node_modules/@esbuild/openharmony-arm64": {
658
+ "version": "0.25.12",
659
+ "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.12.tgz",
660
+ "integrity": "sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==",
661
+ "cpu": [
662
+ "arm64"
663
+ ],
664
+ "license": "MIT",
665
+ "optional": true,
666
+ "os": [
667
+ "openharmony"
668
+ ],
669
+ "engines": {
670
+ "node": ">=18"
671
+ }
672
+ },
673
+ "node_modules/@esbuild/sunos-x64": {
674
+ "version": "0.25.12",
675
+ "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.12.tgz",
676
+ "integrity": "sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==",
677
+ "cpu": [
678
+ "x64"
679
+ ],
680
+ "license": "MIT",
681
+ "optional": true,
682
+ "os": [
683
+ "sunos"
684
+ ],
685
+ "engines": {
686
+ "node": ">=18"
687
+ }
688
+ },
689
+ "node_modules/@esbuild/win32-arm64": {
690
+ "version": "0.25.12",
691
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.12.tgz",
692
+ "integrity": "sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==",
693
+ "cpu": [
694
+ "arm64"
695
+ ],
696
+ "license": "MIT",
697
+ "optional": true,
698
+ "os": [
699
+ "win32"
700
+ ],
701
+ "engines": {
702
+ "node": ">=18"
703
+ }
704
+ },
705
+ "node_modules/@esbuild/win32-ia32": {
706
+ "version": "0.25.12",
707
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.12.tgz",
708
+ "integrity": "sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==",
709
+ "cpu": [
710
+ "ia32"
711
+ ],
712
+ "license": "MIT",
713
+ "optional": true,
714
+ "os": [
715
+ "win32"
716
+ ],
717
+ "engines": {
718
+ "node": ">=18"
719
+ }
720
+ },
721
+ "node_modules/@esbuild/win32-x64": {
722
+ "version": "0.25.12",
723
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.12.tgz",
724
+ "integrity": "sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==",
725
+ "cpu": [
726
+ "x64"
727
+ ],
728
+ "license": "MIT",
729
+ "optional": true,
730
+ "os": [
731
+ "win32"
732
+ ],
733
+ "engines": {
734
+ "node": ">=18"
735
+ }
736
+ },
737
+ "node_modules/@jridgewell/gen-mapping": {
738
+ "version": "0.3.13",
739
+ "license": "MIT",
740
+ "dependencies": {
741
+ "@jridgewell/sourcemap-codec": "^1.5.0",
742
+ "@jridgewell/trace-mapping": "^0.3.24"
743
+ }
744
+ },
745
+ "node_modules/@jridgewell/remapping": {
746
+ "version": "2.3.5",
747
+ "license": "MIT",
748
+ "dependencies": {
749
+ "@jridgewell/gen-mapping": "^0.3.5",
750
+ "@jridgewell/trace-mapping": "^0.3.24"
751
+ }
752
+ },
753
+ "node_modules/@jridgewell/resolve-uri": {
754
+ "version": "3.1.2",
755
+ "license": "MIT",
756
+ "engines": {
757
+ "node": ">=6.0.0"
758
+ }
759
+ },
760
+ "node_modules/@jridgewell/sourcemap-codec": {
761
+ "version": "1.5.5",
762
+ "license": "MIT"
763
+ },
764
+ "node_modules/@jridgewell/trace-mapping": {
765
+ "version": "0.3.31",
766
+ "license": "MIT",
767
+ "dependencies": {
768
+ "@jridgewell/resolve-uri": "^3.1.0",
769
+ "@jridgewell/sourcemap-codec": "^1.4.14"
770
+ }
771
+ },
772
+ "node_modules/@nodelib/fs.scandir": {
773
+ "version": "2.1.5",
774
+ "dev": true,
775
+ "license": "MIT",
776
+ "dependencies": {
777
+ "@nodelib/fs.stat": "2.0.5",
778
+ "run-parallel": "^1.1.9"
779
+ },
780
+ "engines": {
781
+ "node": ">= 8"
782
+ }
783
+ },
784
+ "node_modules/@nodelib/fs.stat": {
785
+ "version": "2.0.5",
786
+ "dev": true,
787
+ "license": "MIT",
788
+ "engines": {
789
+ "node": ">= 8"
790
+ }
791
+ },
792
+ "node_modules/@nodelib/fs.walk": {
793
+ "version": "1.2.8",
794
+ "dev": true,
795
+ "license": "MIT",
796
+ "dependencies": {
797
+ "@nodelib/fs.scandir": "2.1.5",
798
+ "fastq": "^1.6.0"
799
+ },
800
+ "engines": {
801
+ "node": ">= 8"
802
+ }
803
+ },
804
+ "node_modules/@notis/sdk": {
805
+ "resolved": "packages/sdk",
806
+ "link": true
807
+ },
808
+ "node_modules/@phosphor-icons/react": {
809
+ "version": "2.1.10",
810
+ "license": "MIT",
811
+ "engines": {
812
+ "node": ">=10"
813
+ },
814
+ "peerDependencies": {
815
+ "react": ">= 16.8",
816
+ "react-dom": ">= 16.8"
817
+ }
818
+ },
819
+ "node_modules/@radix-ui/react-compose-refs": {
820
+ "version": "1.1.5",
821
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.1.5.tgz",
822
+ "integrity": "sha512-+48PbAAbq3didjJxa+OaWY2ZwgAKsNiRGyeHKszblZMQ+kcpd9pAaT11cMkGEie0vsOi3QdeTE6d5Fe3Gn61kA==",
823
+ "license": "MIT",
824
+ "peerDependencies": {
825
+ "@types/react": "*",
826
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
827
+ },
828
+ "peerDependenciesMeta": {
829
+ "@types/react": {
830
+ "optional": true
831
+ }
832
+ }
833
+ },
834
+ "node_modules/@radix-ui/react-slot": {
835
+ "version": "1.3.3",
836
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.3.3.tgz",
837
+ "integrity": "sha512-qx7oqnYbxnK9kYI9m317qmFmEgo6ywqWvbTogdj7cL9p3/yx4M48p7Rnw5z3H890cL/ow/EeWJsuTykeZVXP5Q==",
838
+ "license": "MIT",
839
+ "dependencies": {
840
+ "@radix-ui/react-compose-refs": "1.1.5"
841
+ },
842
+ "peerDependencies": {
843
+ "@types/react": "*",
844
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
845
+ },
846
+ "peerDependenciesMeta": {
847
+ "@types/react": {
848
+ "optional": true
849
+ }
850
+ }
851
+ },
852
+ "node_modules/@rolldown/pluginutils": {
853
+ "version": "1.0.0-beta.27",
854
+ "license": "MIT"
855
+ },
856
+ "node_modules/@rollup/rollup-android-arm-eabi": {
857
+ "version": "4.60.2",
858
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.60.2.tgz",
859
+ "integrity": "sha512-dnlp69efPPg6Uaw2dVqzWRfAWRnYVb1XJ8CyyhIbZeaq4CA5/mLeZ1IEt9QqQxmbdvagjLIm2ZL8BxXv5lH4Yw==",
860
+ "cpu": [
861
+ "arm"
862
+ ],
863
+ "license": "MIT",
864
+ "optional": true,
865
+ "os": [
866
+ "android"
867
+ ]
868
+ },
869
+ "node_modules/@rollup/rollup-android-arm64": {
870
+ "version": "4.60.2",
871
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.60.2.tgz",
872
+ "integrity": "sha512-OqZTwDRDchGRHHm/hwLOL7uVPB9aUvI0am/eQuWMNyFHf5PSEQmyEeYYheA0EPPKUO/l0uigCp+iaTjoLjVoHg==",
873
+ "cpu": [
874
+ "arm64"
875
+ ],
876
+ "license": "MIT",
877
+ "optional": true,
878
+ "os": [
879
+ "android"
880
+ ]
881
+ },
882
+ "node_modules/@rollup/rollup-darwin-arm64": {
883
+ "version": "4.60.2",
884
+ "cpu": [
885
+ "arm64"
886
+ ],
887
+ "license": "MIT",
888
+ "optional": true,
889
+ "os": [
890
+ "darwin"
891
+ ]
892
+ },
893
+ "node_modules/@rollup/rollup-darwin-x64": {
894
+ "version": "4.60.2",
895
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.60.2.tgz",
896
+ "integrity": "sha512-gjEtURKLCC5VXm1I+2i1u9OhxFsKAQJKTVB8WvDAHF+oZlq0GTVFOlTlO1q3AlCTE/DF32c16ESvfgqR7343/g==",
897
+ "cpu": [
898
+ "x64"
899
+ ],
900
+ "license": "MIT",
901
+ "optional": true,
902
+ "os": [
903
+ "darwin"
904
+ ]
905
+ },
906
+ "node_modules/@rollup/rollup-freebsd-arm64": {
907
+ "version": "4.60.2",
908
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.60.2.tgz",
909
+ "integrity": "sha512-Bcl6CYDeAgE70cqZaMojOi/eK63h5Me97ZqAQoh77VPjMysA/4ORQBRGo3rRy45x4MzVlU9uZxs8Uwy7ZaKnBw==",
910
+ "cpu": [
911
+ "arm64"
912
+ ],
913
+ "license": "MIT",
914
+ "optional": true,
915
+ "os": [
916
+ "freebsd"
917
+ ]
918
+ },
919
+ "node_modules/@rollup/rollup-freebsd-x64": {
920
+ "version": "4.60.2",
921
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.60.2.tgz",
922
+ "integrity": "sha512-LU+TPda3mAE2QB0/Hp5VyeKJivpC6+tlOXd1VMoXV/YFMvk/MNk5iXeBfB4MQGRWyOYVJ01625vjkr0Az98OJQ==",
923
+ "cpu": [
924
+ "x64"
925
+ ],
926
+ "license": "MIT",
927
+ "optional": true,
928
+ "os": [
929
+ "freebsd"
930
+ ]
931
+ },
932
+ "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
933
+ "version": "4.60.2",
934
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.60.2.tgz",
935
+ "integrity": "sha512-2QxQrM+KQ7DAW4o22j+XZ6RKdxjLD7BOWTP0Bv0tmjdyhXSsr2Ul1oJDQqh9Zf5qOwTuTc7Ek83mOFaKnodPjg==",
936
+ "cpu": [
937
+ "arm"
938
+ ],
939
+ "license": "MIT",
940
+ "optional": true,
941
+ "os": [
942
+ "linux"
943
+ ]
944
+ },
945
+ "node_modules/@rollup/rollup-linux-arm-musleabihf": {
946
+ "version": "4.60.2",
947
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.60.2.tgz",
948
+ "integrity": "sha512-TbziEu2DVsTEOPif2mKWkMeDMLoYjx95oESa9fkQQK7r/Orta0gnkcDpzwufEcAO2BLBsD7mZkXGFqEdMRRwfw==",
949
+ "cpu": [
950
+ "arm"
951
+ ],
952
+ "license": "MIT",
953
+ "optional": true,
954
+ "os": [
955
+ "linux"
956
+ ]
957
+ },
958
+ "node_modules/@rollup/rollup-linux-arm64-gnu": {
959
+ "version": "4.60.2",
960
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.60.2.tgz",
961
+ "integrity": "sha512-bO/rVDiDUuM2YfuCUwZ1t1cP+/yqjqz+Xf2VtkdppefuOFS2OSeAfgafaHNkFn0t02hEyXngZkxtGqXcXwO8Rg==",
962
+ "cpu": [
963
+ "arm64"
964
+ ],
965
+ "license": "MIT",
966
+ "optional": true,
967
+ "os": [
968
+ "linux"
969
+ ]
970
+ },
971
+ "node_modules/@rollup/rollup-linux-arm64-musl": {
972
+ "version": "4.60.2",
973
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.60.2.tgz",
974
+ "integrity": "sha512-hr26p7e93Rl0Za+JwW7EAnwAvKkehh12BU1Llm9Ykiibg4uIr2rbpxG9WCf56GuvidlTG9KiiQT/TXT1yAWxTA==",
975
+ "cpu": [
976
+ "arm64"
977
+ ],
978
+ "license": "MIT",
979
+ "optional": true,
980
+ "os": [
981
+ "linux"
982
+ ]
983
+ },
984
+ "node_modules/@rollup/rollup-linux-loong64-gnu": {
985
+ "version": "4.60.2",
986
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.60.2.tgz",
987
+ "integrity": "sha512-pOjB/uSIyDt+ow3k/RcLvUAOGpysT2phDn7TTUB3n75SlIgZzM6NKAqlErPhoFU+npgY3/n+2HYIQVbF70P9/A==",
988
+ "cpu": [
989
+ "loong64"
990
+ ],
991
+ "license": "MIT",
992
+ "optional": true,
993
+ "os": [
994
+ "linux"
995
+ ]
996
+ },
997
+ "node_modules/@rollup/rollup-linux-loong64-musl": {
998
+ "version": "4.60.2",
999
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.60.2.tgz",
1000
+ "integrity": "sha512-2/w+q8jszv9Ww1c+6uJT3OwqhdmGP2/4T17cu8WuwyUuuaCDDJ2ojdyYwZzCxx0GcsZBhzi3HmH+J5pZNXnd+Q==",
1001
+ "cpu": [
1002
+ "loong64"
1003
+ ],
1004
+ "license": "MIT",
1005
+ "optional": true,
1006
+ "os": [
1007
+ "linux"
1008
+ ]
1009
+ },
1010
+ "node_modules/@rollup/rollup-linux-ppc64-gnu": {
1011
+ "version": "4.60.2",
1012
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.60.2.tgz",
1013
+ "integrity": "sha512-11+aL5vKheYgczxtPVVRhdptAM2H7fcDR5Gw4/bTcteuZBlH4oP9f5s9zYO9aGZvoGeBpqXI/9TZZihZ609wKw==",
1014
+ "cpu": [
1015
+ "ppc64"
1016
+ ],
1017
+ "license": "MIT",
1018
+ "optional": true,
1019
+ "os": [
1020
+ "linux"
1021
+ ]
1022
+ },
1023
+ "node_modules/@rollup/rollup-linux-ppc64-musl": {
1024
+ "version": "4.60.2",
1025
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.60.2.tgz",
1026
+ "integrity": "sha512-i16fokAGK46IVZuV8LIIwMdtqhin9hfYkCh8pf8iC3QU3LpwL+1FSFGej+O7l3E/AoknL6Dclh2oTdnRMpTzFQ==",
1027
+ "cpu": [
1028
+ "ppc64"
1029
+ ],
1030
+ "license": "MIT",
1031
+ "optional": true,
1032
+ "os": [
1033
+ "linux"
1034
+ ]
1035
+ },
1036
+ "node_modules/@rollup/rollup-linux-riscv64-gnu": {
1037
+ "version": "4.60.2",
1038
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.60.2.tgz",
1039
+ "integrity": "sha512-49FkKS6RGQoriDSK/6E2GkAsAuU5kETFCh7pG4yD/ylj9rKhTmO3elsnmBvRD4PgJPds5W2PkhC82aVwmUcJ7A==",
1040
+ "cpu": [
1041
+ "riscv64"
1042
+ ],
1043
+ "license": "MIT",
1044
+ "optional": true,
1045
+ "os": [
1046
+ "linux"
1047
+ ]
1048
+ },
1049
+ "node_modules/@rollup/rollup-linux-riscv64-musl": {
1050
+ "version": "4.60.2",
1051
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.60.2.tgz",
1052
+ "integrity": "sha512-mjYNkHPfGpUR00DuM1ZZIgs64Hpf4bWcz9Z41+4Q+pgDx73UwWdAYyf6EG/lRFldmdHHzgrYyge5akFUW0D3mQ==",
1053
+ "cpu": [
1054
+ "riscv64"
1055
+ ],
1056
+ "license": "MIT",
1057
+ "optional": true,
1058
+ "os": [
1059
+ "linux"
1060
+ ]
1061
+ },
1062
+ "node_modules/@rollup/rollup-linux-s390x-gnu": {
1063
+ "version": "4.60.2",
1064
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.60.2.tgz",
1065
+ "integrity": "sha512-ALyvJz965BQk8E9Al/JDKKDLH2kfKFLTGMlgkAbbYtZuJt9LU8DW3ZoDMCtQpXAltZxwBHevXz5u+gf0yA0YoA==",
1066
+ "cpu": [
1067
+ "s390x"
1068
+ ],
1069
+ "license": "MIT",
1070
+ "optional": true,
1071
+ "os": [
1072
+ "linux"
1073
+ ]
1074
+ },
1075
+ "node_modules/@rollup/rollup-linux-x64-gnu": {
1076
+ "version": "4.60.2",
1077
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.60.2.tgz",
1078
+ "integrity": "sha512-UQjrkIdWrKI626Du8lCQ6MJp/6V1LAo2bOK9OTu4mSn8GGXIkPXk/Vsp4bLHCd9Z9Iz2OTEaokUE90VweJgIYQ==",
1079
+ "cpu": [
1080
+ "x64"
1081
+ ],
1082
+ "license": "MIT",
1083
+ "optional": true,
1084
+ "os": [
1085
+ "linux"
1086
+ ]
1087
+ },
1088
+ "node_modules/@rollup/rollup-linux-x64-musl": {
1089
+ "version": "4.60.2",
1090
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.60.2.tgz",
1091
+ "integrity": "sha512-bTsRGj6VlSdn/XD4CGyzMnzaBs9bsRxy79eTqTCBsA8TMIEky7qg48aPkvJvFe1HyzQ5oMZdg7AnVlWQSKLTnw==",
1092
+ "cpu": [
1093
+ "x64"
1094
+ ],
1095
+ "license": "MIT",
1096
+ "optional": true,
1097
+ "os": [
1098
+ "linux"
1099
+ ]
1100
+ },
1101
+ "node_modules/@rollup/rollup-openbsd-x64": {
1102
+ "version": "4.60.2",
1103
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.60.2.tgz",
1104
+ "integrity": "sha512-6d4Z3534xitaA1FcMWP7mQPq5zGwBmGbhphh2DwaA1aNIXUu3KTOfwrWpbwI4/Gr0uANo7NTtaykFyO2hPuFLg==",
1105
+ "cpu": [
1106
+ "x64"
1107
+ ],
1108
+ "license": "MIT",
1109
+ "optional": true,
1110
+ "os": [
1111
+ "openbsd"
1112
+ ]
1113
+ },
1114
+ "node_modules/@rollup/rollup-openharmony-arm64": {
1115
+ "version": "4.60.2",
1116
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.60.2.tgz",
1117
+ "integrity": "sha512-NetAg5iO2uN7eB8zE5qrZ3CSil+7IJt4WDFLcC75Ymywq1VZVD6qJ6EvNLjZ3rEm6gB7XW5JdT60c6MN35Z85Q==",
1118
+ "cpu": [
1119
+ "arm64"
1120
+ ],
1121
+ "license": "MIT",
1122
+ "optional": true,
1123
+ "os": [
1124
+ "openharmony"
1125
+ ]
1126
+ },
1127
+ "node_modules/@rollup/rollup-win32-arm64-msvc": {
1128
+ "version": "4.60.2",
1129
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.60.2.tgz",
1130
+ "integrity": "sha512-NCYhOotpgWZ5kdxCZsv6Iudx0wX8980Q/oW4pNFNihpBKsDbEA1zpkfxJGC0yugsUuyDZ7gL37dbzwhR0VI7pQ==",
1131
+ "cpu": [
1132
+ "arm64"
1133
+ ],
1134
+ "license": "MIT",
1135
+ "optional": true,
1136
+ "os": [
1137
+ "win32"
1138
+ ]
1139
+ },
1140
+ "node_modules/@rollup/rollup-win32-ia32-msvc": {
1141
+ "version": "4.60.2",
1142
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.60.2.tgz",
1143
+ "integrity": "sha512-RXsaOqXxfoUBQoOgvmmijVxJnW2IGB0eoMO7F8FAjaj0UTywUO/luSqimWBJn04WNgUkeNhh7fs7pESXajWmkg==",
1144
+ "cpu": [
1145
+ "ia32"
1146
+ ],
1147
+ "license": "MIT",
1148
+ "optional": true,
1149
+ "os": [
1150
+ "win32"
1151
+ ]
1152
+ },
1153
+ "node_modules/@rollup/rollup-win32-x64-gnu": {
1154
+ "version": "4.60.2",
1155
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.60.2.tgz",
1156
+ "integrity": "sha512-qdAzEULD+/hzObedtmV6iBpdL5TIbKVztGiK7O3/KYSf+HIzU257+MX1EXJcyIiDbMAqmbwaufcYPvyRryeZtA==",
1157
+ "cpu": [
1158
+ "x64"
1159
+ ],
1160
+ "license": "MIT",
1161
+ "optional": true,
1162
+ "os": [
1163
+ "win32"
1164
+ ]
1165
+ },
1166
+ "node_modules/@rollup/rollup-win32-x64-msvc": {
1167
+ "version": "4.60.2",
1168
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.60.2.tgz",
1169
+ "integrity": "sha512-Nd/SgG27WoA9e+/TdK74KnHz852TLa94ovOYySo/yMPuTmpckK/jIF2jSwS3g7ELSKXK13/cVdmg1Z/DaCWKxA==",
1170
+ "cpu": [
1171
+ "x64"
1172
+ ],
1173
+ "license": "MIT",
1174
+ "optional": true,
1175
+ "os": [
1176
+ "win32"
1177
+ ]
1178
+ },
1179
+ "node_modules/@types/babel__core": {
1180
+ "version": "7.20.5",
1181
+ "license": "MIT",
1182
+ "dependencies": {
1183
+ "@babel/parser": "^7.20.7",
1184
+ "@babel/types": "^7.20.7",
1185
+ "@types/babel__generator": "*",
1186
+ "@types/babel__template": "*",
1187
+ "@types/babel__traverse": "*"
1188
+ }
1189
+ },
1190
+ "node_modules/@types/babel__generator": {
1191
+ "version": "7.27.0",
1192
+ "license": "MIT",
1193
+ "dependencies": {
1194
+ "@babel/types": "^7.0.0"
1195
+ }
1196
+ },
1197
+ "node_modules/@types/babel__template": {
1198
+ "version": "7.4.4",
1199
+ "license": "MIT",
1200
+ "dependencies": {
1201
+ "@babel/parser": "^7.1.0",
1202
+ "@babel/types": "^7.0.0"
1203
+ }
1204
+ },
1205
+ "node_modules/@types/babel__traverse": {
1206
+ "version": "7.28.0",
1207
+ "license": "MIT",
1208
+ "dependencies": {
1209
+ "@babel/types": "^7.28.2"
1210
+ }
1211
+ },
1212
+ "node_modules/@types/debug": {
1213
+ "version": "4.1.13",
1214
+ "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.13.tgz",
1215
+ "integrity": "sha512-KSVgmQmzMwPlmtljOomayoR89W4FynCAi3E8PPs7vmDVPe84hT+vGPKkJfThkmXs0x0jAaa9U8uW8bbfyS2fWw==",
1216
+ "license": "MIT",
1217
+ "dependencies": {
1218
+ "@types/ms": "*"
1219
+ }
1220
+ },
1221
+ "node_modules/@types/estree": {
1222
+ "version": "1.0.8",
1223
+ "license": "MIT"
1224
+ },
1225
+ "node_modules/@types/estree-jsx": {
1226
+ "version": "1.0.5",
1227
+ "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.5.tgz",
1228
+ "integrity": "sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==",
1229
+ "license": "MIT",
1230
+ "dependencies": {
1231
+ "@types/estree": "*"
1232
+ }
1233
+ },
1234
+ "node_modules/@types/hast": {
1235
+ "version": "3.0.5",
1236
+ "resolved": "https://registry.npmjs.org/@types/hast/-/hast-3.0.5.tgz",
1237
+ "integrity": "sha512-rp/ezSWaD1m44dPKICGhiskI13nVr7qTloFwDa/IYkhhf5nzwP+zIQcIJh3WIFSBOy/H1PzB40jPjMDksN4F+g==",
1238
+ "license": "MIT",
1239
+ "dependencies": {
1240
+ "@types/unist": "*"
1241
+ }
1242
+ },
1243
+ "node_modules/@types/mdast": {
1244
+ "version": "4.0.4",
1245
+ "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz",
1246
+ "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==",
1247
+ "license": "MIT",
1248
+ "dependencies": {
1249
+ "@types/unist": "*"
1250
+ }
1251
+ },
1252
+ "node_modules/@types/ms": {
1253
+ "version": "2.1.0",
1254
+ "resolved": "https://registry.npmjs.org/@types/ms/-/ms-2.1.0.tgz",
1255
+ "integrity": "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==",
1256
+ "license": "MIT"
1257
+ },
1258
+ "node_modules/@types/node": {
1259
+ "version": "22.19.17",
1260
+ "devOptional": true,
1261
+ "license": "MIT",
1262
+ "dependencies": {
1263
+ "undici-types": "~6.21.0"
1264
+ }
1265
+ },
1266
+ "node_modules/@types/react": {
1267
+ "version": "19.2.14",
1268
+ "license": "MIT",
1269
+ "dependencies": {
1270
+ "csstype": "^3.2.2"
1271
+ }
1272
+ },
1273
+ "node_modules/@types/react-dom": {
1274
+ "version": "19.2.3",
1275
+ "dev": true,
1276
+ "license": "MIT",
1277
+ "peerDependencies": {
1278
+ "@types/react": "^19.2.0"
1279
+ }
1280
+ },
1281
+ "node_modules/@types/unist": {
1282
+ "version": "3.0.3",
1283
+ "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz",
1284
+ "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==",
1285
+ "license": "MIT"
1286
+ },
1287
+ "node_modules/@ungap/structured-clone": {
1288
+ "version": "1.3.3",
1289
+ "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.3.tgz",
1290
+ "integrity": "sha512-60YRaenCQcVjYEKOcG824+DRGGIQ3VKErcBoAEDJZz5bKIs2ZG+X/H9Nk+Q6EVkwJk5QNApxbrc5QtBSwtrXAg==",
1291
+ "license": "ISC"
1292
+ },
1293
+ "node_modules/@vitejs/plugin-react": {
1294
+ "version": "4.7.0",
1295
+ "license": "MIT",
1296
+ "dependencies": {
1297
+ "@babel/core": "^7.28.0",
1298
+ "@babel/plugin-transform-react-jsx-self": "^7.27.1",
1299
+ "@babel/plugin-transform-react-jsx-source": "^7.27.1",
1300
+ "@rolldown/pluginutils": "1.0.0-beta.27",
1301
+ "@types/babel__core": "^7.20.5",
1302
+ "react-refresh": "^0.17.0"
1303
+ },
1304
+ "engines": {
1305
+ "node": "^14.18.0 || >=16.0.0"
1306
+ },
1307
+ "peerDependencies": {
1308
+ "vite": "^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0"
1309
+ }
1310
+ },
1311
+ "node_modules/any-promise": {
1312
+ "version": "1.3.0",
1313
+ "dev": true,
1314
+ "license": "MIT"
1315
+ },
1316
+ "node_modules/anymatch": {
1317
+ "version": "3.1.3",
1318
+ "dev": true,
1319
+ "license": "ISC",
1320
+ "dependencies": {
1321
+ "normalize-path": "^3.0.0",
1322
+ "picomatch": "^2.0.4"
1323
+ },
1324
+ "engines": {
1325
+ "node": ">= 8"
1326
+ }
1327
+ },
1328
+ "node_modules/arg": {
1329
+ "version": "5.0.2",
1330
+ "dev": true,
1331
+ "license": "MIT"
1332
+ },
1333
+ "node_modules/autoprefixer": {
1334
+ "version": "10.5.0",
1335
+ "dev": true,
1336
+ "funding": [
1337
+ {
1338
+ "type": "opencollective",
1339
+ "url": "https://opencollective.com/postcss/"
1340
+ },
1341
+ {
1342
+ "type": "tidelift",
1343
+ "url": "https://tidelift.com/funding/github/npm/autoprefixer"
1344
+ },
1345
+ {
1346
+ "type": "github",
1347
+ "url": "https://github.com/sponsors/ai"
1348
+ }
1349
+ ],
1350
+ "license": "MIT",
1351
+ "dependencies": {
1352
+ "browserslist": "^4.28.2",
1353
+ "caniuse-lite": "^1.0.30001787",
1354
+ "fraction.js": "^5.3.4",
1355
+ "picocolors": "^1.1.1",
1356
+ "postcss-value-parser": "^4.2.0"
1357
+ },
1358
+ "bin": {
1359
+ "autoprefixer": "bin/autoprefixer"
1360
+ },
1361
+ "engines": {
1362
+ "node": "^10 || ^12 || >=14"
1363
+ },
1364
+ "peerDependencies": {
1365
+ "postcss": "^8.1.0"
1366
+ }
1367
+ },
1368
+ "node_modules/bail": {
1369
+ "version": "2.0.2",
1370
+ "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz",
1371
+ "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==",
1372
+ "license": "MIT",
1373
+ "funding": {
1374
+ "type": "github",
1375
+ "url": "https://github.com/sponsors/wooorm"
1376
+ }
1377
+ },
1378
+ "node_modules/baseline-browser-mapping": {
1379
+ "version": "2.10.24",
1380
+ "license": "Apache-2.0",
1381
+ "bin": {
1382
+ "baseline-browser-mapping": "dist/cli.cjs"
1383
+ },
1384
+ "engines": {
1385
+ "node": ">=6.0.0"
1386
+ }
1387
+ },
1388
+ "node_modules/binary-extensions": {
1389
+ "version": "2.3.0",
1390
+ "dev": true,
1391
+ "license": "MIT",
1392
+ "engines": {
1393
+ "node": ">=8"
1394
+ },
1395
+ "funding": {
1396
+ "url": "https://github.com/sponsors/sindresorhus"
1397
+ }
1398
+ },
1399
+ "node_modules/braces": {
1400
+ "version": "3.0.3",
1401
+ "dev": true,
1402
+ "license": "MIT",
1403
+ "dependencies": {
1404
+ "fill-range": "^7.1.1"
1405
+ },
1406
+ "engines": {
1407
+ "node": ">=8"
1408
+ }
1409
+ },
1410
+ "node_modules/browserslist": {
1411
+ "version": "4.28.2",
1412
+ "funding": [
1413
+ {
1414
+ "type": "opencollective",
1415
+ "url": "https://opencollective.com/browserslist"
1416
+ },
1417
+ {
1418
+ "type": "tidelift",
1419
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
1420
+ },
1421
+ {
1422
+ "type": "github",
1423
+ "url": "https://github.com/sponsors/ai"
1424
+ }
1425
+ ],
1426
+ "license": "MIT",
1427
+ "dependencies": {
1428
+ "baseline-browser-mapping": "^2.10.12",
1429
+ "caniuse-lite": "^1.0.30001782",
1430
+ "electron-to-chromium": "^1.5.328",
1431
+ "node-releases": "^2.0.36",
1432
+ "update-browserslist-db": "^1.2.3"
1433
+ },
1434
+ "bin": {
1435
+ "browserslist": "cli.js"
1436
+ },
1437
+ "engines": {
1438
+ "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
1439
+ }
1440
+ },
1441
+ "node_modules/camelcase-css": {
1442
+ "version": "2.0.1",
1443
+ "dev": true,
1444
+ "license": "MIT",
1445
+ "engines": {
1446
+ "node": ">= 6"
1447
+ }
1448
+ },
1449
+ "node_modules/caniuse-lite": {
1450
+ "version": "1.0.30001791",
1451
+ "funding": [
1452
+ {
1453
+ "type": "opencollective",
1454
+ "url": "https://opencollective.com/browserslist"
1455
+ },
1456
+ {
1457
+ "type": "tidelift",
1458
+ "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
1459
+ },
1460
+ {
1461
+ "type": "github",
1462
+ "url": "https://github.com/sponsors/ai"
1463
+ }
1464
+ ],
1465
+ "license": "CC-BY-4.0"
1466
+ },
1467
+ "node_modules/ccount": {
1468
+ "version": "2.0.1",
1469
+ "resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz",
1470
+ "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==",
1471
+ "license": "MIT",
1472
+ "funding": {
1473
+ "type": "github",
1474
+ "url": "https://github.com/sponsors/wooorm"
1475
+ }
1476
+ },
1477
+ "node_modules/character-entities": {
1478
+ "version": "2.0.2",
1479
+ "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz",
1480
+ "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==",
1481
+ "license": "MIT",
1482
+ "funding": {
1483
+ "type": "github",
1484
+ "url": "https://github.com/sponsors/wooorm"
1485
+ }
1486
+ },
1487
+ "node_modules/character-entities-html4": {
1488
+ "version": "2.1.0",
1489
+ "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz",
1490
+ "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==",
1491
+ "license": "MIT",
1492
+ "funding": {
1493
+ "type": "github",
1494
+ "url": "https://github.com/sponsors/wooorm"
1495
+ }
1496
+ },
1497
+ "node_modules/character-entities-legacy": {
1498
+ "version": "3.0.0",
1499
+ "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz",
1500
+ "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==",
1501
+ "license": "MIT",
1502
+ "funding": {
1503
+ "type": "github",
1504
+ "url": "https://github.com/sponsors/wooorm"
1505
+ }
1506
+ },
1507
+ "node_modules/character-reference-invalid": {
1508
+ "version": "2.0.1",
1509
+ "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz",
1510
+ "integrity": "sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==",
1511
+ "license": "MIT",
1512
+ "funding": {
1513
+ "type": "github",
1514
+ "url": "https://github.com/sponsors/wooorm"
1515
+ }
1516
+ },
1517
+ "node_modules/chokidar": {
1518
+ "version": "3.6.0",
1519
+ "dev": true,
1520
+ "license": "MIT",
1521
+ "dependencies": {
1522
+ "anymatch": "~3.1.2",
1523
+ "braces": "~3.0.2",
1524
+ "glob-parent": "~5.1.2",
1525
+ "is-binary-path": "~2.1.0",
1526
+ "is-glob": "~4.0.1",
1527
+ "normalize-path": "~3.0.0",
1528
+ "readdirp": "~3.6.0"
1529
+ },
1530
+ "engines": {
1531
+ "node": ">= 8.10.0"
1532
+ },
1533
+ "funding": {
1534
+ "url": "https://paulmillr.com/funding/"
1535
+ },
1536
+ "optionalDependencies": {
1537
+ "fsevents": "~2.3.2"
1538
+ }
1539
+ },
1540
+ "node_modules/chokidar/node_modules/glob-parent": {
1541
+ "version": "5.1.2",
1542
+ "dev": true,
1543
+ "license": "ISC",
1544
+ "dependencies": {
1545
+ "is-glob": "^4.0.1"
1546
+ },
1547
+ "engines": {
1548
+ "node": ">= 6"
1549
+ }
1550
+ },
1551
+ "node_modules/class-variance-authority": {
1552
+ "version": "0.7.1",
1553
+ "resolved": "https://registry.npmjs.org/class-variance-authority/-/class-variance-authority-0.7.1.tgz",
1554
+ "integrity": "sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg==",
1555
+ "license": "Apache-2.0",
1556
+ "dependencies": {
1557
+ "clsx": "^2.1.1"
1558
+ },
1559
+ "funding": {
1560
+ "url": "https://polar.sh/cva"
1561
+ }
1562
+ },
1563
+ "node_modules/clsx": {
1564
+ "version": "2.1.1",
1565
+ "license": "MIT",
1566
+ "engines": {
1567
+ "node": ">=6"
1568
+ }
1569
+ },
1570
+ "node_modules/comma-separated-tokens": {
1571
+ "version": "2.0.3",
1572
+ "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz",
1573
+ "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==",
1574
+ "license": "MIT",
1575
+ "funding": {
1576
+ "type": "github",
1577
+ "url": "https://github.com/sponsors/wooorm"
1578
+ }
1579
+ },
1580
+ "node_modules/commander": {
1581
+ "version": "4.1.1",
1582
+ "dev": true,
1583
+ "license": "MIT",
1584
+ "engines": {
1585
+ "node": ">= 6"
1586
+ }
1587
+ },
1588
+ "node_modules/convert-source-map": {
1589
+ "version": "2.0.0",
1590
+ "license": "MIT"
1591
+ },
1592
+ "node_modules/cssesc": {
1593
+ "version": "3.0.0",
1594
+ "dev": true,
1595
+ "license": "MIT",
1596
+ "bin": {
1597
+ "cssesc": "bin/cssesc"
1598
+ },
1599
+ "engines": {
1600
+ "node": ">=4"
1601
+ }
1602
+ },
1603
+ "node_modules/csstype": {
1604
+ "version": "3.2.3",
1605
+ "license": "MIT"
1606
+ },
1607
+ "node_modules/debug": {
1608
+ "version": "4.4.3",
1609
+ "license": "MIT",
1610
+ "dependencies": {
1611
+ "ms": "^2.1.3"
1612
+ },
1613
+ "engines": {
1614
+ "node": ">=6.0"
1615
+ },
1616
+ "peerDependenciesMeta": {
1617
+ "supports-color": {
1618
+ "optional": true
1619
+ }
1620
+ }
1621
+ },
1622
+ "node_modules/decode-named-character-reference": {
1623
+ "version": "1.3.0",
1624
+ "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.3.0.tgz",
1625
+ "integrity": "sha512-GtpQYB283KrPp6nRw50q3U9/VfOutZOe103qlN7BPP6Ad27xYnOIWv4lPzo8HCAL+mMZofJ9KEy30fq6MfaK6Q==",
1626
+ "license": "MIT",
1627
+ "dependencies": {
1628
+ "character-entities": "^2.0.0"
1629
+ },
1630
+ "funding": {
1631
+ "type": "github",
1632
+ "url": "https://github.com/sponsors/wooorm"
1633
+ }
1634
+ },
1635
+ "node_modules/dequal": {
1636
+ "version": "2.0.3",
1637
+ "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz",
1638
+ "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==",
1639
+ "license": "MIT",
1640
+ "engines": {
1641
+ "node": ">=6"
1642
+ }
1643
+ },
1644
+ "node_modules/devlop": {
1645
+ "version": "1.1.0",
1646
+ "resolved": "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz",
1647
+ "integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==",
1648
+ "license": "MIT",
1649
+ "dependencies": {
1650
+ "dequal": "^2.0.0"
1651
+ },
1652
+ "funding": {
1653
+ "type": "github",
1654
+ "url": "https://github.com/sponsors/wooorm"
1655
+ }
1656
+ },
1657
+ "node_modules/didyoumean": {
1658
+ "version": "1.2.2",
1659
+ "dev": true,
1660
+ "license": "Apache-2.0"
1661
+ },
1662
+ "node_modules/dlv": {
1663
+ "version": "1.1.3",
1664
+ "dev": true,
1665
+ "license": "MIT"
1666
+ },
1667
+ "node_modules/electron-to-chromium": {
1668
+ "version": "1.5.344",
1669
+ "license": "ISC"
1670
+ },
1671
+ "node_modules/es-errors": {
1672
+ "version": "1.3.0",
1673
+ "dev": true,
1674
+ "license": "MIT",
1675
+ "engines": {
1676
+ "node": ">= 0.4"
1677
+ }
1678
+ },
1679
+ "node_modules/esbuild": {
1680
+ "version": "0.25.12",
1681
+ "hasInstallScript": true,
1682
+ "license": "MIT",
1683
+ "bin": {
1684
+ "esbuild": "bin/esbuild"
1685
+ },
1686
+ "engines": {
1687
+ "node": ">=18"
1688
+ },
1689
+ "optionalDependencies": {
1690
+ "@esbuild/aix-ppc64": "0.25.12",
1691
+ "@esbuild/android-arm": "0.25.12",
1692
+ "@esbuild/android-arm64": "0.25.12",
1693
+ "@esbuild/android-x64": "0.25.12",
1694
+ "@esbuild/darwin-arm64": "0.25.12",
1695
+ "@esbuild/darwin-x64": "0.25.12",
1696
+ "@esbuild/freebsd-arm64": "0.25.12",
1697
+ "@esbuild/freebsd-x64": "0.25.12",
1698
+ "@esbuild/linux-arm": "0.25.12",
1699
+ "@esbuild/linux-arm64": "0.25.12",
1700
+ "@esbuild/linux-ia32": "0.25.12",
1701
+ "@esbuild/linux-loong64": "0.25.12",
1702
+ "@esbuild/linux-mips64el": "0.25.12",
1703
+ "@esbuild/linux-ppc64": "0.25.12",
1704
+ "@esbuild/linux-riscv64": "0.25.12",
1705
+ "@esbuild/linux-s390x": "0.25.12",
1706
+ "@esbuild/linux-x64": "0.25.12",
1707
+ "@esbuild/netbsd-arm64": "0.25.12",
1708
+ "@esbuild/netbsd-x64": "0.25.12",
1709
+ "@esbuild/openbsd-arm64": "0.25.12",
1710
+ "@esbuild/openbsd-x64": "0.25.12",
1711
+ "@esbuild/openharmony-arm64": "0.25.12",
1712
+ "@esbuild/sunos-x64": "0.25.12",
1713
+ "@esbuild/win32-arm64": "0.25.12",
1714
+ "@esbuild/win32-ia32": "0.25.12",
1715
+ "@esbuild/win32-x64": "0.25.12"
1716
+ }
1717
+ },
1718
+ "node_modules/escalade": {
1719
+ "version": "3.2.0",
1720
+ "license": "MIT",
1721
+ "engines": {
1722
+ "node": ">=6"
1723
+ }
1724
+ },
1725
+ "node_modules/escape-string-regexp": {
1726
+ "version": "5.0.0",
1727
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz",
1728
+ "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==",
1729
+ "license": "MIT",
1730
+ "engines": {
1731
+ "node": ">=12"
1732
+ },
1733
+ "funding": {
1734
+ "url": "https://github.com/sponsors/sindresorhus"
1735
+ }
1736
+ },
1737
+ "node_modules/estree-util-is-identifier-name": {
1738
+ "version": "3.0.0",
1739
+ "resolved": "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-3.0.0.tgz",
1740
+ "integrity": "sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==",
1741
+ "license": "MIT",
1742
+ "funding": {
1743
+ "type": "opencollective",
1744
+ "url": "https://opencollective.com/unified"
1745
+ }
1746
+ },
1747
+ "node_modules/extend": {
1748
+ "version": "3.0.2",
1749
+ "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
1750
+ "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==",
1751
+ "license": "MIT"
1752
+ },
1753
+ "node_modules/fast-glob": {
1754
+ "version": "3.3.3",
1755
+ "dev": true,
1756
+ "license": "MIT",
1757
+ "dependencies": {
1758
+ "@nodelib/fs.stat": "^2.0.2",
1759
+ "@nodelib/fs.walk": "^1.2.3",
1760
+ "glob-parent": "^5.1.2",
1761
+ "merge2": "^1.3.0",
1762
+ "micromatch": "^4.0.8"
1763
+ },
1764
+ "engines": {
1765
+ "node": ">=8.6.0"
1766
+ }
1767
+ },
1768
+ "node_modules/fast-glob/node_modules/glob-parent": {
1769
+ "version": "5.1.2",
1770
+ "dev": true,
1771
+ "license": "ISC",
1772
+ "dependencies": {
1773
+ "is-glob": "^4.0.1"
1774
+ },
1775
+ "engines": {
1776
+ "node": ">= 6"
1777
+ }
1778
+ },
1779
+ "node_modules/fastq": {
1780
+ "version": "1.20.1",
1781
+ "dev": true,
1782
+ "license": "ISC",
1783
+ "dependencies": {
1784
+ "reusify": "^1.0.4"
1785
+ }
1786
+ },
1787
+ "node_modules/fill-range": {
1788
+ "version": "7.1.1",
1789
+ "dev": true,
1790
+ "license": "MIT",
1791
+ "dependencies": {
1792
+ "to-regex-range": "^5.0.1"
1793
+ },
1794
+ "engines": {
1795
+ "node": ">=8"
1796
+ }
1797
+ },
1798
+ "node_modules/fraction.js": {
1799
+ "version": "5.3.4",
1800
+ "dev": true,
1801
+ "license": "MIT",
1802
+ "engines": {
1803
+ "node": "*"
1804
+ },
1805
+ "funding": {
1806
+ "type": "github",
1807
+ "url": "https://github.com/sponsors/rawify"
1808
+ }
1809
+ },
1810
+ "node_modules/fsevents": {
1811
+ "version": "2.3.3",
1812
+ "license": "MIT",
1813
+ "optional": true,
1814
+ "os": [
1815
+ "darwin"
1816
+ ],
1817
+ "engines": {
1818
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
1819
+ }
1820
+ },
1821
+ "node_modules/function-bind": {
1822
+ "version": "1.1.2",
1823
+ "dev": true,
1824
+ "license": "MIT",
1825
+ "funding": {
1826
+ "url": "https://github.com/sponsors/ljharb"
1827
+ }
1828
+ },
1829
+ "node_modules/gensync": {
1830
+ "version": "1.0.0-beta.2",
1831
+ "license": "MIT",
1832
+ "engines": {
1833
+ "node": ">=6.9.0"
1834
+ }
1835
+ },
1836
+ "node_modules/glob-parent": {
1837
+ "version": "6.0.2",
1838
+ "dev": true,
1839
+ "license": "ISC",
1840
+ "dependencies": {
1841
+ "is-glob": "^4.0.3"
1842
+ },
1843
+ "engines": {
1844
+ "node": ">=10.13.0"
1845
+ }
1846
+ },
1847
+ "node_modules/hasown": {
1848
+ "version": "2.0.3",
1849
+ "dev": true,
1850
+ "license": "MIT",
1851
+ "dependencies": {
1852
+ "function-bind": "^1.1.2"
1853
+ },
1854
+ "engines": {
1855
+ "node": ">= 0.4"
1856
+ }
1857
+ },
1858
+ "node_modules/hast-util-to-jsx-runtime": {
1859
+ "version": "2.3.6",
1860
+ "resolved": "https://registry.npmjs.org/hast-util-to-jsx-runtime/-/hast-util-to-jsx-runtime-2.3.6.tgz",
1861
+ "integrity": "sha512-zl6s8LwNyo1P9uw+XJGvZtdFF1GdAkOg8ujOw+4Pyb76874fLps4ueHXDhXWdk6YHQ6OgUtinliG7RsYvCbbBg==",
1862
+ "license": "MIT",
1863
+ "dependencies": {
1864
+ "@types/estree": "^1.0.0",
1865
+ "@types/hast": "^3.0.0",
1866
+ "@types/unist": "^3.0.0",
1867
+ "comma-separated-tokens": "^2.0.0",
1868
+ "devlop": "^1.0.0",
1869
+ "estree-util-is-identifier-name": "^3.0.0",
1870
+ "hast-util-whitespace": "^3.0.0",
1871
+ "mdast-util-mdx-expression": "^2.0.0",
1872
+ "mdast-util-mdx-jsx": "^3.0.0",
1873
+ "mdast-util-mdxjs-esm": "^2.0.0",
1874
+ "property-information": "^7.0.0",
1875
+ "space-separated-tokens": "^2.0.0",
1876
+ "style-to-js": "^1.0.0",
1877
+ "unist-util-position": "^5.0.0",
1878
+ "vfile-message": "^4.0.0"
1879
+ },
1880
+ "funding": {
1881
+ "type": "opencollective",
1882
+ "url": "https://opencollective.com/unified"
1883
+ }
1884
+ },
1885
+ "node_modules/hast-util-whitespace": {
1886
+ "version": "3.0.0",
1887
+ "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz",
1888
+ "integrity": "sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==",
1889
+ "license": "MIT",
1890
+ "dependencies": {
1891
+ "@types/hast": "^3.0.0"
1892
+ },
1893
+ "funding": {
1894
+ "type": "opencollective",
1895
+ "url": "https://opencollective.com/unified"
1896
+ }
1897
+ },
1898
+ "node_modules/html-url-attributes": {
1899
+ "version": "3.0.1",
1900
+ "resolved": "https://registry.npmjs.org/html-url-attributes/-/html-url-attributes-3.0.1.tgz",
1901
+ "integrity": "sha512-ol6UPyBWqsrO6EJySPz2O7ZSr856WDrEzM5zMqp+FJJLGMW35cLYmmZnl0vztAZxRUoNZJFTCohfjuIJ8I4QBQ==",
1902
+ "license": "MIT",
1903
+ "funding": {
1904
+ "type": "opencollective",
1905
+ "url": "https://opencollective.com/unified"
1906
+ }
1907
+ },
1908
+ "node_modules/inline-style-parser": {
1909
+ "version": "0.2.7",
1910
+ "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.2.7.tgz",
1911
+ "integrity": "sha512-Nb2ctOyNR8DqQoR0OwRG95uNWIC0C1lCgf5Naz5H6Ji72KZ8OcFZLz2P5sNgwlyoJ8Yif11oMuYs5pBQa86csA==",
1912
+ "license": "MIT"
1913
+ },
1914
+ "node_modules/is-alphabetical": {
1915
+ "version": "2.0.1",
1916
+ "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-2.0.1.tgz",
1917
+ "integrity": "sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==",
1918
+ "license": "MIT",
1919
+ "funding": {
1920
+ "type": "github",
1921
+ "url": "https://github.com/sponsors/wooorm"
1922
+ }
1923
+ },
1924
+ "node_modules/is-alphanumerical": {
1925
+ "version": "2.0.1",
1926
+ "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz",
1927
+ "integrity": "sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==",
1928
+ "license": "MIT",
1929
+ "dependencies": {
1930
+ "is-alphabetical": "^2.0.0",
1931
+ "is-decimal": "^2.0.0"
1932
+ },
1933
+ "funding": {
1934
+ "type": "github",
1935
+ "url": "https://github.com/sponsors/wooorm"
1936
+ }
1937
+ },
1938
+ "node_modules/is-binary-path": {
1939
+ "version": "2.1.0",
1940
+ "dev": true,
1941
+ "license": "MIT",
1942
+ "dependencies": {
1943
+ "binary-extensions": "^2.0.0"
1944
+ },
1945
+ "engines": {
1946
+ "node": ">=8"
1947
+ }
1948
+ },
1949
+ "node_modules/is-core-module": {
1950
+ "version": "2.16.1",
1951
+ "dev": true,
1952
+ "license": "MIT",
1953
+ "dependencies": {
1954
+ "hasown": "^2.0.2"
1955
+ },
1956
+ "engines": {
1957
+ "node": ">= 0.4"
1958
+ },
1959
+ "funding": {
1960
+ "url": "https://github.com/sponsors/ljharb"
1961
+ }
1962
+ },
1963
+ "node_modules/is-decimal": {
1964
+ "version": "2.0.1",
1965
+ "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-2.0.1.tgz",
1966
+ "integrity": "sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==",
1967
+ "license": "MIT",
1968
+ "funding": {
1969
+ "type": "github",
1970
+ "url": "https://github.com/sponsors/wooorm"
1971
+ }
1972
+ },
1973
+ "node_modules/is-extglob": {
1974
+ "version": "2.1.1",
1975
+ "dev": true,
1976
+ "license": "MIT",
1977
+ "engines": {
1978
+ "node": ">=0.10.0"
1979
+ }
1980
+ },
1981
+ "node_modules/is-glob": {
1982
+ "version": "4.0.3",
1983
+ "dev": true,
1984
+ "license": "MIT",
1985
+ "dependencies": {
1986
+ "is-extglob": "^2.1.1"
1987
+ },
1988
+ "engines": {
1989
+ "node": ">=0.10.0"
1990
+ }
1991
+ },
1992
+ "node_modules/is-hexadecimal": {
1993
+ "version": "2.0.1",
1994
+ "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz",
1995
+ "integrity": "sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==",
1996
+ "license": "MIT",
1997
+ "funding": {
1998
+ "type": "github",
1999
+ "url": "https://github.com/sponsors/wooorm"
2000
+ }
2001
+ },
2002
+ "node_modules/is-number": {
2003
+ "version": "7.0.0",
2004
+ "dev": true,
2005
+ "license": "MIT",
2006
+ "engines": {
2007
+ "node": ">=0.12.0"
2008
+ }
2009
+ },
2010
+ "node_modules/is-plain-obj": {
2011
+ "version": "4.1.0",
2012
+ "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz",
2013
+ "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==",
2014
+ "license": "MIT",
2015
+ "engines": {
2016
+ "node": ">=12"
2017
+ },
2018
+ "funding": {
2019
+ "url": "https://github.com/sponsors/sindresorhus"
2020
+ }
2021
+ },
2022
+ "node_modules/jiti": {
2023
+ "version": "1.21.7",
2024
+ "devOptional": true,
2025
+ "license": "MIT",
2026
+ "bin": {
2027
+ "jiti": "bin/jiti.js"
2028
+ }
2029
+ },
2030
+ "node_modules/js-tokens": {
2031
+ "version": "4.0.0",
2032
+ "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
2033
+ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
2034
+ "license": "MIT"
2035
+ },
2036
+ "node_modules/jsesc": {
2037
+ "version": "3.1.0",
2038
+ "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
2039
+ "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
2040
+ "license": "MIT",
2041
+ "bin": {
2042
+ "jsesc": "bin/jsesc"
2043
+ },
2044
+ "engines": {
2045
+ "node": ">=6"
2046
+ }
2047
+ },
2048
+ "node_modules/json5": {
2049
+ "version": "2.2.3",
2050
+ "license": "MIT",
2051
+ "bin": {
2052
+ "json5": "lib/cli.js"
2053
+ },
2054
+ "engines": {
2055
+ "node": ">=6"
2056
+ }
2057
+ },
2058
+ "node_modules/lilconfig": {
2059
+ "version": "3.1.3",
2060
+ "dev": true,
2061
+ "license": "MIT",
2062
+ "engines": {
2063
+ "node": ">=14"
2064
+ },
2065
+ "funding": {
2066
+ "url": "https://github.com/sponsors/antonk52"
2067
+ }
2068
+ },
2069
+ "node_modules/lines-and-columns": {
2070
+ "version": "1.2.4",
2071
+ "dev": true,
2072
+ "license": "MIT"
2073
+ },
2074
+ "node_modules/longest-streak": {
2075
+ "version": "3.1.0",
2076
+ "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz",
2077
+ "integrity": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==",
2078
+ "license": "MIT",
2079
+ "funding": {
2080
+ "type": "github",
2081
+ "url": "https://github.com/sponsors/wooorm"
2082
+ }
2083
+ },
2084
+ "node_modules/lru-cache": {
2085
+ "version": "5.1.1",
2086
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
2087
+ "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
2088
+ "license": "ISC",
2089
+ "dependencies": {
2090
+ "yallist": "^3.0.2"
2091
+ }
2092
+ },
2093
+ "node_modules/markdown-table": {
2094
+ "version": "3.0.4",
2095
+ "resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-3.0.4.tgz",
2096
+ "integrity": "sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==",
2097
+ "license": "MIT",
2098
+ "funding": {
2099
+ "type": "github",
2100
+ "url": "https://github.com/sponsors/wooorm"
2101
+ }
2102
+ },
2103
+ "node_modules/mdast-util-find-and-replace": {
2104
+ "version": "3.0.2",
2105
+ "resolved": "https://registry.npmjs.org/mdast-util-find-and-replace/-/mdast-util-find-and-replace-3.0.2.tgz",
2106
+ "integrity": "sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==",
2107
+ "license": "MIT",
2108
+ "dependencies": {
2109
+ "@types/mdast": "^4.0.0",
2110
+ "escape-string-regexp": "^5.0.0",
2111
+ "unist-util-is": "^6.0.0",
2112
+ "unist-util-visit-parents": "^6.0.0"
2113
+ },
2114
+ "funding": {
2115
+ "type": "opencollective",
2116
+ "url": "https://opencollective.com/unified"
2117
+ }
2118
+ },
2119
+ "node_modules/mdast-util-from-markdown": {
2120
+ "version": "2.0.3",
2121
+ "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.3.tgz",
2122
+ "integrity": "sha512-W4mAWTvSlKvf8L6J+VN9yLSqQ9AOAAvHuoDAmPkz4dHf553m5gVj2ejadHJhoJmcmxEnOv6Pa8XJhpxE93kb8Q==",
2123
+ "license": "MIT",
2124
+ "dependencies": {
2125
+ "@types/mdast": "^4.0.0",
2126
+ "@types/unist": "^3.0.0",
2127
+ "decode-named-character-reference": "^1.0.0",
2128
+ "devlop": "^1.0.0",
2129
+ "mdast-util-to-string": "^4.0.0",
2130
+ "micromark": "^4.0.0",
2131
+ "micromark-util-decode-numeric-character-reference": "^2.0.0",
2132
+ "micromark-util-decode-string": "^2.0.0",
2133
+ "micromark-util-normalize-identifier": "^2.0.0",
2134
+ "micromark-util-symbol": "^2.0.0",
2135
+ "micromark-util-types": "^2.0.0",
2136
+ "unist-util-stringify-position": "^4.0.0"
2137
+ },
2138
+ "funding": {
2139
+ "type": "opencollective",
2140
+ "url": "https://opencollective.com/unified"
2141
+ }
2142
+ },
2143
+ "node_modules/mdast-util-gfm": {
2144
+ "version": "3.1.0",
2145
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm/-/mdast-util-gfm-3.1.0.tgz",
2146
+ "integrity": "sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==",
2147
+ "license": "MIT",
2148
+ "dependencies": {
2149
+ "mdast-util-from-markdown": "^2.0.0",
2150
+ "mdast-util-gfm-autolink-literal": "^2.0.0",
2151
+ "mdast-util-gfm-footnote": "^2.0.0",
2152
+ "mdast-util-gfm-strikethrough": "^2.0.0",
2153
+ "mdast-util-gfm-table": "^2.0.0",
2154
+ "mdast-util-gfm-task-list-item": "^2.0.0",
2155
+ "mdast-util-to-markdown": "^2.0.0"
2156
+ },
2157
+ "funding": {
2158
+ "type": "opencollective",
2159
+ "url": "https://opencollective.com/unified"
2160
+ }
2161
+ },
2162
+ "node_modules/mdast-util-gfm-autolink-literal": {
2163
+ "version": "2.0.1",
2164
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-2.0.1.tgz",
2165
+ "integrity": "sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==",
2166
+ "license": "MIT",
2167
+ "dependencies": {
2168
+ "@types/mdast": "^4.0.0",
2169
+ "ccount": "^2.0.0",
2170
+ "devlop": "^1.0.0",
2171
+ "mdast-util-find-and-replace": "^3.0.0",
2172
+ "micromark-util-character": "^2.0.0"
2173
+ },
2174
+ "funding": {
2175
+ "type": "opencollective",
2176
+ "url": "https://opencollective.com/unified"
2177
+ }
2178
+ },
2179
+ "node_modules/mdast-util-gfm-footnote": {
2180
+ "version": "2.1.0",
2181
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-2.1.0.tgz",
2182
+ "integrity": "sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==",
2183
+ "license": "MIT",
2184
+ "dependencies": {
2185
+ "@types/mdast": "^4.0.0",
2186
+ "devlop": "^1.1.0",
2187
+ "mdast-util-from-markdown": "^2.0.0",
2188
+ "mdast-util-to-markdown": "^2.0.0",
2189
+ "micromark-util-normalize-identifier": "^2.0.0"
2190
+ },
2191
+ "funding": {
2192
+ "type": "opencollective",
2193
+ "url": "https://opencollective.com/unified"
2194
+ }
2195
+ },
2196
+ "node_modules/mdast-util-gfm-strikethrough": {
2197
+ "version": "2.0.0",
2198
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-2.0.0.tgz",
2199
+ "integrity": "sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==",
2200
+ "license": "MIT",
2201
+ "dependencies": {
2202
+ "@types/mdast": "^4.0.0",
2203
+ "mdast-util-from-markdown": "^2.0.0",
2204
+ "mdast-util-to-markdown": "^2.0.0"
2205
+ },
2206
+ "funding": {
2207
+ "type": "opencollective",
2208
+ "url": "https://opencollective.com/unified"
2209
+ }
2210
+ },
2211
+ "node_modules/mdast-util-gfm-table": {
2212
+ "version": "2.0.0",
2213
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm-table/-/mdast-util-gfm-table-2.0.0.tgz",
2214
+ "integrity": "sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==",
2215
+ "license": "MIT",
2216
+ "dependencies": {
2217
+ "@types/mdast": "^4.0.0",
2218
+ "devlop": "^1.0.0",
2219
+ "markdown-table": "^3.0.0",
2220
+ "mdast-util-from-markdown": "^2.0.0",
2221
+ "mdast-util-to-markdown": "^2.0.0"
2222
+ },
2223
+ "funding": {
2224
+ "type": "opencollective",
2225
+ "url": "https://opencollective.com/unified"
2226
+ }
2227
+ },
2228
+ "node_modules/mdast-util-gfm-task-list-item": {
2229
+ "version": "2.0.0",
2230
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-2.0.0.tgz",
2231
+ "integrity": "sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==",
2232
+ "license": "MIT",
2233
+ "dependencies": {
2234
+ "@types/mdast": "^4.0.0",
2235
+ "devlop": "^1.0.0",
2236
+ "mdast-util-from-markdown": "^2.0.0",
2237
+ "mdast-util-to-markdown": "^2.0.0"
2238
+ },
2239
+ "funding": {
2240
+ "type": "opencollective",
2241
+ "url": "https://opencollective.com/unified"
2242
+ }
2243
+ },
2244
+ "node_modules/mdast-util-mdx-expression": {
2245
+ "version": "2.0.1",
2246
+ "resolved": "https://registry.npmjs.org/mdast-util-mdx-expression/-/mdast-util-mdx-expression-2.0.1.tgz",
2247
+ "integrity": "sha512-J6f+9hUp+ldTZqKRSg7Vw5V6MqjATc+3E4gf3CFNcuZNWD8XdyI6zQ8GqH7f8169MM6P7hMBRDVGnn7oHB9kXQ==",
2248
+ "license": "MIT",
2249
+ "dependencies": {
2250
+ "@types/estree-jsx": "^1.0.0",
2251
+ "@types/hast": "^3.0.0",
2252
+ "@types/mdast": "^4.0.0",
2253
+ "devlop": "^1.0.0",
2254
+ "mdast-util-from-markdown": "^2.0.0",
2255
+ "mdast-util-to-markdown": "^2.0.0"
2256
+ },
2257
+ "funding": {
2258
+ "type": "opencollective",
2259
+ "url": "https://opencollective.com/unified"
2260
+ }
2261
+ },
2262
+ "node_modules/mdast-util-mdx-jsx": {
2263
+ "version": "3.2.0",
2264
+ "resolved": "https://registry.npmjs.org/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-3.2.0.tgz",
2265
+ "integrity": "sha512-lj/z8v0r6ZtsN/cGNNtemmmfoLAFZnjMbNyLzBafjzikOM+glrjNHPlf6lQDOTccj9n5b0PPihEBbhneMyGs1Q==",
2266
+ "license": "MIT",
2267
+ "dependencies": {
2268
+ "@types/estree-jsx": "^1.0.0",
2269
+ "@types/hast": "^3.0.0",
2270
+ "@types/mdast": "^4.0.0",
2271
+ "@types/unist": "^3.0.0",
2272
+ "ccount": "^2.0.0",
2273
+ "devlop": "^1.1.0",
2274
+ "mdast-util-from-markdown": "^2.0.0",
2275
+ "mdast-util-to-markdown": "^2.0.0",
2276
+ "parse-entities": "^4.0.0",
2277
+ "stringify-entities": "^4.0.0",
2278
+ "unist-util-stringify-position": "^4.0.0",
2279
+ "vfile-message": "^4.0.0"
2280
+ },
2281
+ "funding": {
2282
+ "type": "opencollective",
2283
+ "url": "https://opencollective.com/unified"
2284
+ }
2285
+ },
2286
+ "node_modules/mdast-util-mdxjs-esm": {
2287
+ "version": "2.0.1",
2288
+ "resolved": "https://registry.npmjs.org/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-2.0.1.tgz",
2289
+ "integrity": "sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==",
2290
+ "license": "MIT",
2291
+ "dependencies": {
2292
+ "@types/estree-jsx": "^1.0.0",
2293
+ "@types/hast": "^3.0.0",
2294
+ "@types/mdast": "^4.0.0",
2295
+ "devlop": "^1.0.0",
2296
+ "mdast-util-from-markdown": "^2.0.0",
2297
+ "mdast-util-to-markdown": "^2.0.0"
2298
+ },
2299
+ "funding": {
2300
+ "type": "opencollective",
2301
+ "url": "https://opencollective.com/unified"
2302
+ }
2303
+ },
2304
+ "node_modules/mdast-util-phrasing": {
2305
+ "version": "4.1.0",
2306
+ "resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-4.1.0.tgz",
2307
+ "integrity": "sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==",
2308
+ "license": "MIT",
2309
+ "dependencies": {
2310
+ "@types/mdast": "^4.0.0",
2311
+ "unist-util-is": "^6.0.0"
2312
+ },
2313
+ "funding": {
2314
+ "type": "opencollective",
2315
+ "url": "https://opencollective.com/unified"
2316
+ }
2317
+ },
2318
+ "node_modules/mdast-util-to-hast": {
2319
+ "version": "13.2.1",
2320
+ "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-13.2.1.tgz",
2321
+ "integrity": "sha512-cctsq2wp5vTsLIcaymblUriiTcZd0CwWtCbLvrOzYCDZoWyMNV8sZ7krj09FSnsiJi3WVsHLM4k6Dq/yaPyCXA==",
2322
+ "license": "MIT",
2323
+ "dependencies": {
2324
+ "@types/hast": "^3.0.0",
2325
+ "@types/mdast": "^4.0.0",
2326
+ "@ungap/structured-clone": "^1.0.0",
2327
+ "devlop": "^1.0.0",
2328
+ "micromark-util-sanitize-uri": "^2.0.0",
2329
+ "trim-lines": "^3.0.0",
2330
+ "unist-util-position": "^5.0.0",
2331
+ "unist-util-visit": "^5.0.0",
2332
+ "vfile": "^6.0.0"
2333
+ },
2334
+ "funding": {
2335
+ "type": "opencollective",
2336
+ "url": "https://opencollective.com/unified"
2337
+ }
2338
+ },
2339
+ "node_modules/mdast-util-to-markdown": {
2340
+ "version": "2.1.2",
2341
+ "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.2.tgz",
2342
+ "integrity": "sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==",
2343
+ "license": "MIT",
2344
+ "dependencies": {
2345
+ "@types/mdast": "^4.0.0",
2346
+ "@types/unist": "^3.0.0",
2347
+ "longest-streak": "^3.0.0",
2348
+ "mdast-util-phrasing": "^4.0.0",
2349
+ "mdast-util-to-string": "^4.0.0",
2350
+ "micromark-util-classify-character": "^2.0.0",
2351
+ "micromark-util-decode-string": "^2.0.0",
2352
+ "unist-util-visit": "^5.0.0",
2353
+ "zwitch": "^2.0.0"
2354
+ },
2355
+ "funding": {
2356
+ "type": "opencollective",
2357
+ "url": "https://opencollective.com/unified"
2358
+ }
2359
+ },
2360
+ "node_modules/mdast-util-to-string": {
2361
+ "version": "4.0.0",
2362
+ "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz",
2363
+ "integrity": "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==",
2364
+ "license": "MIT",
2365
+ "dependencies": {
2366
+ "@types/mdast": "^4.0.0"
2367
+ },
2368
+ "funding": {
2369
+ "type": "opencollective",
2370
+ "url": "https://opencollective.com/unified"
2371
+ }
2372
+ },
2373
+ "node_modules/merge2": {
2374
+ "version": "1.4.1",
2375
+ "dev": true,
2376
+ "license": "MIT",
2377
+ "engines": {
2378
+ "node": ">= 8"
2379
+ }
2380
+ },
2381
+ "node_modules/micromark": {
2382
+ "version": "4.0.2",
2383
+ "resolved": "https://registry.npmjs.org/micromark/-/micromark-4.0.2.tgz",
2384
+ "integrity": "sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==",
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
+ "@types/debug": "^4.0.0",
2398
+ "debug": "^4.0.0",
2399
+ "decode-named-character-reference": "^1.0.0",
2400
+ "devlop": "^1.0.0",
2401
+ "micromark-core-commonmark": "^2.0.0",
2402
+ "micromark-factory-space": "^2.0.0",
2403
+ "micromark-util-character": "^2.0.0",
2404
+ "micromark-util-chunked": "^2.0.0",
2405
+ "micromark-util-combine-extensions": "^2.0.0",
2406
+ "micromark-util-decode-numeric-character-reference": "^2.0.0",
2407
+ "micromark-util-encode": "^2.0.0",
2408
+ "micromark-util-normalize-identifier": "^2.0.0",
2409
+ "micromark-util-resolve-all": "^2.0.0",
2410
+ "micromark-util-sanitize-uri": "^2.0.0",
2411
+ "micromark-util-subtokenize": "^2.0.0",
2412
+ "micromark-util-symbol": "^2.0.0",
2413
+ "micromark-util-types": "^2.0.0"
2414
+ }
2415
+ },
2416
+ "node_modules/micromark-core-commonmark": {
2417
+ "version": "2.0.3",
2418
+ "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.3.tgz",
2419
+ "integrity": "sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==",
2420
+ "funding": [
2421
+ {
2422
+ "type": "GitHub Sponsors",
2423
+ "url": "https://github.com/sponsors/unifiedjs"
2424
+ },
2425
+ {
2426
+ "type": "OpenCollective",
2427
+ "url": "https://opencollective.com/unified"
2428
+ }
2429
+ ],
2430
+ "license": "MIT",
2431
+ "dependencies": {
2432
+ "decode-named-character-reference": "^1.0.0",
2433
+ "devlop": "^1.0.0",
2434
+ "micromark-factory-destination": "^2.0.0",
2435
+ "micromark-factory-label": "^2.0.0",
2436
+ "micromark-factory-space": "^2.0.0",
2437
+ "micromark-factory-title": "^2.0.0",
2438
+ "micromark-factory-whitespace": "^2.0.0",
2439
+ "micromark-util-character": "^2.0.0",
2440
+ "micromark-util-chunked": "^2.0.0",
2441
+ "micromark-util-classify-character": "^2.0.0",
2442
+ "micromark-util-html-tag-name": "^2.0.0",
2443
+ "micromark-util-normalize-identifier": "^2.0.0",
2444
+ "micromark-util-resolve-all": "^2.0.0",
2445
+ "micromark-util-subtokenize": "^2.0.0",
2446
+ "micromark-util-symbol": "^2.0.0",
2447
+ "micromark-util-types": "^2.0.0"
2448
+ }
2449
+ },
2450
+ "node_modules/micromark-extension-gfm": {
2451
+ "version": "3.0.0",
2452
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm/-/micromark-extension-gfm-3.0.0.tgz",
2453
+ "integrity": "sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==",
2454
+ "license": "MIT",
2455
+ "dependencies": {
2456
+ "micromark-extension-gfm-autolink-literal": "^2.0.0",
2457
+ "micromark-extension-gfm-footnote": "^2.0.0",
2458
+ "micromark-extension-gfm-strikethrough": "^2.0.0",
2459
+ "micromark-extension-gfm-table": "^2.0.0",
2460
+ "micromark-extension-gfm-tagfilter": "^2.0.0",
2461
+ "micromark-extension-gfm-task-list-item": "^2.0.0",
2462
+ "micromark-util-combine-extensions": "^2.0.0",
2463
+ "micromark-util-types": "^2.0.0"
2464
+ },
2465
+ "funding": {
2466
+ "type": "opencollective",
2467
+ "url": "https://opencollective.com/unified"
2468
+ }
2469
+ },
2470
+ "node_modules/micromark-extension-gfm-autolink-literal": {
2471
+ "version": "2.1.0",
2472
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-2.1.0.tgz",
2473
+ "integrity": "sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==",
2474
+ "license": "MIT",
2475
+ "dependencies": {
2476
+ "micromark-util-character": "^2.0.0",
2477
+ "micromark-util-sanitize-uri": "^2.0.0",
2478
+ "micromark-util-symbol": "^2.0.0",
2479
+ "micromark-util-types": "^2.0.0"
2480
+ },
2481
+ "funding": {
2482
+ "type": "opencollective",
2483
+ "url": "https://opencollective.com/unified"
2484
+ }
2485
+ },
2486
+ "node_modules/micromark-extension-gfm-footnote": {
2487
+ "version": "2.1.0",
2488
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-2.1.0.tgz",
2489
+ "integrity": "sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==",
2490
+ "license": "MIT",
2491
+ "dependencies": {
2492
+ "devlop": "^1.0.0",
2493
+ "micromark-core-commonmark": "^2.0.0",
2494
+ "micromark-factory-space": "^2.0.0",
2495
+ "micromark-util-character": "^2.0.0",
2496
+ "micromark-util-normalize-identifier": "^2.0.0",
2497
+ "micromark-util-sanitize-uri": "^2.0.0",
2498
+ "micromark-util-symbol": "^2.0.0",
2499
+ "micromark-util-types": "^2.0.0"
2500
+ },
2501
+ "funding": {
2502
+ "type": "opencollective",
2503
+ "url": "https://opencollective.com/unified"
2504
+ }
2505
+ },
2506
+ "node_modules/micromark-extension-gfm-strikethrough": {
2507
+ "version": "2.1.0",
2508
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-2.1.0.tgz",
2509
+ "integrity": "sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==",
2510
+ "license": "MIT",
2511
+ "dependencies": {
2512
+ "devlop": "^1.0.0",
2513
+ "micromark-util-chunked": "^2.0.0",
2514
+ "micromark-util-classify-character": "^2.0.0",
2515
+ "micromark-util-resolve-all": "^2.0.0",
2516
+ "micromark-util-symbol": "^2.0.0",
2517
+ "micromark-util-types": "^2.0.0"
2518
+ },
2519
+ "funding": {
2520
+ "type": "opencollective",
2521
+ "url": "https://opencollective.com/unified"
2522
+ }
2523
+ },
2524
+ "node_modules/micromark-extension-gfm-table": {
2525
+ "version": "2.1.1",
2526
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-2.1.1.tgz",
2527
+ "integrity": "sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==",
2528
+ "license": "MIT",
2529
+ "dependencies": {
2530
+ "devlop": "^1.0.0",
2531
+ "micromark-factory-space": "^2.0.0",
2532
+ "micromark-util-character": "^2.0.0",
2533
+ "micromark-util-symbol": "^2.0.0",
2534
+ "micromark-util-types": "^2.0.0"
2535
+ },
2536
+ "funding": {
2537
+ "type": "opencollective",
2538
+ "url": "https://opencollective.com/unified"
2539
+ }
2540
+ },
2541
+ "node_modules/micromark-extension-gfm-tagfilter": {
2542
+ "version": "2.0.0",
2543
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-2.0.0.tgz",
2544
+ "integrity": "sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==",
2545
+ "license": "MIT",
2546
+ "dependencies": {
2547
+ "micromark-util-types": "^2.0.0"
2548
+ },
2549
+ "funding": {
2550
+ "type": "opencollective",
2551
+ "url": "https://opencollective.com/unified"
2552
+ }
2553
+ },
2554
+ "node_modules/micromark-extension-gfm-task-list-item": {
2555
+ "version": "2.1.0",
2556
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-2.1.0.tgz",
2557
+ "integrity": "sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==",
2558
+ "license": "MIT",
2559
+ "dependencies": {
2560
+ "devlop": "^1.0.0",
2561
+ "micromark-factory-space": "^2.0.0",
2562
+ "micromark-util-character": "^2.0.0",
2563
+ "micromark-util-symbol": "^2.0.0",
2564
+ "micromark-util-types": "^2.0.0"
2565
+ },
2566
+ "funding": {
2567
+ "type": "opencollective",
2568
+ "url": "https://opencollective.com/unified"
2569
+ }
2570
+ },
2571
+ "node_modules/micromark-factory-destination": {
2572
+ "version": "2.0.1",
2573
+ "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz",
2574
+ "integrity": "sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==",
2575
+ "funding": [
2576
+ {
2577
+ "type": "GitHub Sponsors",
2578
+ "url": "https://github.com/sponsors/unifiedjs"
2579
+ },
2580
+ {
2581
+ "type": "OpenCollective",
2582
+ "url": "https://opencollective.com/unified"
2583
+ }
2584
+ ],
2585
+ "license": "MIT",
2586
+ "dependencies": {
2587
+ "micromark-util-character": "^2.0.0",
2588
+ "micromark-util-symbol": "^2.0.0",
2589
+ "micromark-util-types": "^2.0.0"
2590
+ }
2591
+ },
2592
+ "node_modules/micromark-factory-label": {
2593
+ "version": "2.0.1",
2594
+ "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.1.tgz",
2595
+ "integrity": "sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==",
2596
+ "funding": [
2597
+ {
2598
+ "type": "GitHub Sponsors",
2599
+ "url": "https://github.com/sponsors/unifiedjs"
2600
+ },
2601
+ {
2602
+ "type": "OpenCollective",
2603
+ "url": "https://opencollective.com/unified"
2604
+ }
2605
+ ],
2606
+ "license": "MIT",
2607
+ "dependencies": {
2608
+ "devlop": "^1.0.0",
2609
+ "micromark-util-character": "^2.0.0",
2610
+ "micromark-util-symbol": "^2.0.0",
2611
+ "micromark-util-types": "^2.0.0"
2612
+ }
2613
+ },
2614
+ "node_modules/micromark-factory-space": {
2615
+ "version": "2.0.1",
2616
+ "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz",
2617
+ "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==",
2618
+ "funding": [
2619
+ {
2620
+ "type": "GitHub Sponsors",
2621
+ "url": "https://github.com/sponsors/unifiedjs"
2622
+ },
2623
+ {
2624
+ "type": "OpenCollective",
2625
+ "url": "https://opencollective.com/unified"
2626
+ }
2627
+ ],
2628
+ "license": "MIT",
2629
+ "dependencies": {
2630
+ "micromark-util-character": "^2.0.0",
2631
+ "micromark-util-types": "^2.0.0"
2632
+ }
2633
+ },
2634
+ "node_modules/micromark-factory-title": {
2635
+ "version": "2.0.1",
2636
+ "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.1.tgz",
2637
+ "integrity": "sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==",
2638
+ "funding": [
2639
+ {
2640
+ "type": "GitHub Sponsors",
2641
+ "url": "https://github.com/sponsors/unifiedjs"
2642
+ },
2643
+ {
2644
+ "type": "OpenCollective",
2645
+ "url": "https://opencollective.com/unified"
2646
+ }
2647
+ ],
2648
+ "license": "MIT",
2649
+ "dependencies": {
2650
+ "micromark-factory-space": "^2.0.0",
2651
+ "micromark-util-character": "^2.0.0",
2652
+ "micromark-util-symbol": "^2.0.0",
2653
+ "micromark-util-types": "^2.0.0"
2654
+ }
2655
+ },
2656
+ "node_modules/micromark-factory-whitespace": {
2657
+ "version": "2.0.1",
2658
+ "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.1.tgz",
2659
+ "integrity": "sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==",
2660
+ "funding": [
2661
+ {
2662
+ "type": "GitHub Sponsors",
2663
+ "url": "https://github.com/sponsors/unifiedjs"
2664
+ },
2665
+ {
2666
+ "type": "OpenCollective",
2667
+ "url": "https://opencollective.com/unified"
2668
+ }
2669
+ ],
2670
+ "license": "MIT",
2671
+ "dependencies": {
2672
+ "micromark-factory-space": "^2.0.0",
2673
+ "micromark-util-character": "^2.0.0",
2674
+ "micromark-util-symbol": "^2.0.0",
2675
+ "micromark-util-types": "^2.0.0"
2676
+ }
2677
+ },
2678
+ "node_modules/micromark-util-character": {
2679
+ "version": "2.1.1",
2680
+ "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz",
2681
+ "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==",
2682
+ "funding": [
2683
+ {
2684
+ "type": "GitHub Sponsors",
2685
+ "url": "https://github.com/sponsors/unifiedjs"
2686
+ },
2687
+ {
2688
+ "type": "OpenCollective",
2689
+ "url": "https://opencollective.com/unified"
2690
+ }
2691
+ ],
2692
+ "license": "MIT",
2693
+ "dependencies": {
2694
+ "micromark-util-symbol": "^2.0.0",
2695
+ "micromark-util-types": "^2.0.0"
2696
+ }
2697
+ },
2698
+ "node_modules/micromark-util-chunked": {
2699
+ "version": "2.0.1",
2700
+ "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz",
2701
+ "integrity": "sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==",
2702
+ "funding": [
2703
+ {
2704
+ "type": "GitHub Sponsors",
2705
+ "url": "https://github.com/sponsors/unifiedjs"
2706
+ },
2707
+ {
2708
+ "type": "OpenCollective",
2709
+ "url": "https://opencollective.com/unified"
2710
+ }
2711
+ ],
2712
+ "license": "MIT",
2713
+ "dependencies": {
2714
+ "micromark-util-symbol": "^2.0.0"
2715
+ }
2716
+ },
2717
+ "node_modules/micromark-util-classify-character": {
2718
+ "version": "2.0.1",
2719
+ "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.1.tgz",
2720
+ "integrity": "sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==",
2721
+ "funding": [
2722
+ {
2723
+ "type": "GitHub Sponsors",
2724
+ "url": "https://github.com/sponsors/unifiedjs"
2725
+ },
2726
+ {
2727
+ "type": "OpenCollective",
2728
+ "url": "https://opencollective.com/unified"
2729
+ }
2730
+ ],
2731
+ "license": "MIT",
2732
+ "dependencies": {
2733
+ "micromark-util-character": "^2.0.0",
2734
+ "micromark-util-symbol": "^2.0.0",
2735
+ "micromark-util-types": "^2.0.0"
2736
+ }
2737
+ },
2738
+ "node_modules/micromark-util-combine-extensions": {
2739
+ "version": "2.0.1",
2740
+ "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.1.tgz",
2741
+ "integrity": "sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==",
2742
+ "funding": [
2743
+ {
2744
+ "type": "GitHub Sponsors",
2745
+ "url": "https://github.com/sponsors/unifiedjs"
2746
+ },
2747
+ {
2748
+ "type": "OpenCollective",
2749
+ "url": "https://opencollective.com/unified"
2750
+ }
2751
+ ],
2752
+ "license": "MIT",
2753
+ "dependencies": {
2754
+ "micromark-util-chunked": "^2.0.0",
2755
+ "micromark-util-types": "^2.0.0"
2756
+ }
2757
+ },
2758
+ "node_modules/micromark-util-decode-numeric-character-reference": {
2759
+ "version": "2.0.2",
2760
+ "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.2.tgz",
2761
+ "integrity": "sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==",
2762
+ "funding": [
2763
+ {
2764
+ "type": "GitHub Sponsors",
2765
+ "url": "https://github.com/sponsors/unifiedjs"
2766
+ },
2767
+ {
2768
+ "type": "OpenCollective",
2769
+ "url": "https://opencollective.com/unified"
2770
+ }
2771
+ ],
2772
+ "license": "MIT",
2773
+ "dependencies": {
2774
+ "micromark-util-symbol": "^2.0.0"
2775
+ }
2776
+ },
2777
+ "node_modules/micromark-util-decode-string": {
2778
+ "version": "2.0.1",
2779
+ "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-2.0.1.tgz",
2780
+ "integrity": "sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==",
2781
+ "funding": [
2782
+ {
2783
+ "type": "GitHub Sponsors",
2784
+ "url": "https://github.com/sponsors/unifiedjs"
2785
+ },
2786
+ {
2787
+ "type": "OpenCollective",
2788
+ "url": "https://opencollective.com/unified"
2789
+ }
2790
+ ],
2791
+ "license": "MIT",
2792
+ "dependencies": {
2793
+ "decode-named-character-reference": "^1.0.0",
2794
+ "micromark-util-character": "^2.0.0",
2795
+ "micromark-util-decode-numeric-character-reference": "^2.0.0",
2796
+ "micromark-util-symbol": "^2.0.0"
2797
+ }
2798
+ },
2799
+ "node_modules/micromark-util-encode": {
2800
+ "version": "2.0.1",
2801
+ "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz",
2802
+ "integrity": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==",
2803
+ "funding": [
2804
+ {
2805
+ "type": "GitHub Sponsors",
2806
+ "url": "https://github.com/sponsors/unifiedjs"
2807
+ },
2808
+ {
2809
+ "type": "OpenCollective",
2810
+ "url": "https://opencollective.com/unified"
2811
+ }
2812
+ ],
2813
+ "license": "MIT"
2814
+ },
2815
+ "node_modules/micromark-util-html-tag-name": {
2816
+ "version": "2.0.1",
2817
+ "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz",
2818
+ "integrity": "sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==",
2819
+ "funding": [
2820
+ {
2821
+ "type": "GitHub Sponsors",
2822
+ "url": "https://github.com/sponsors/unifiedjs"
2823
+ },
2824
+ {
2825
+ "type": "OpenCollective",
2826
+ "url": "https://opencollective.com/unified"
2827
+ }
2828
+ ],
2829
+ "license": "MIT"
2830
+ },
2831
+ "node_modules/micromark-util-normalize-identifier": {
2832
+ "version": "2.0.1",
2833
+ "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.1.tgz",
2834
+ "integrity": "sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==",
2835
+ "funding": [
2836
+ {
2837
+ "type": "GitHub Sponsors",
2838
+ "url": "https://github.com/sponsors/unifiedjs"
2839
+ },
2840
+ {
2841
+ "type": "OpenCollective",
2842
+ "url": "https://opencollective.com/unified"
2843
+ }
2844
+ ],
2845
+ "license": "MIT",
2846
+ "dependencies": {
2847
+ "micromark-util-symbol": "^2.0.0"
2848
+ }
2849
+ },
2850
+ "node_modules/micromark-util-resolve-all": {
2851
+ "version": "2.0.1",
2852
+ "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz",
2853
+ "integrity": "sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==",
2854
+ "funding": [
2855
+ {
2856
+ "type": "GitHub Sponsors",
2857
+ "url": "https://github.com/sponsors/unifiedjs"
2858
+ },
2859
+ {
2860
+ "type": "OpenCollective",
2861
+ "url": "https://opencollective.com/unified"
2862
+ }
2863
+ ],
2864
+ "license": "MIT",
2865
+ "dependencies": {
2866
+ "micromark-util-types": "^2.0.0"
2867
+ }
2868
+ },
2869
+ "node_modules/micromark-util-sanitize-uri": {
2870
+ "version": "2.0.1",
2871
+ "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz",
2872
+ "integrity": "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==",
2873
+ "funding": [
2874
+ {
2875
+ "type": "GitHub Sponsors",
2876
+ "url": "https://github.com/sponsors/unifiedjs"
2877
+ },
2878
+ {
2879
+ "type": "OpenCollective",
2880
+ "url": "https://opencollective.com/unified"
2881
+ }
2882
+ ],
2883
+ "license": "MIT",
2884
+ "dependencies": {
2885
+ "micromark-util-character": "^2.0.0",
2886
+ "micromark-util-encode": "^2.0.0",
2887
+ "micromark-util-symbol": "^2.0.0"
2888
+ }
2889
+ },
2890
+ "node_modules/micromark-util-subtokenize": {
2891
+ "version": "2.1.0",
2892
+ "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.1.0.tgz",
2893
+ "integrity": "sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==",
2894
+ "funding": [
2895
+ {
2896
+ "type": "GitHub Sponsors",
2897
+ "url": "https://github.com/sponsors/unifiedjs"
2898
+ },
2899
+ {
2900
+ "type": "OpenCollective",
2901
+ "url": "https://opencollective.com/unified"
2902
+ }
2903
+ ],
2904
+ "license": "MIT",
2905
+ "dependencies": {
2906
+ "devlop": "^1.0.0",
2907
+ "micromark-util-chunked": "^2.0.0",
2908
+ "micromark-util-symbol": "^2.0.0",
2909
+ "micromark-util-types": "^2.0.0"
2910
+ }
2911
+ },
2912
+ "node_modules/micromark-util-symbol": {
2913
+ "version": "2.0.1",
2914
+ "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz",
2915
+ "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==",
2916
+ "funding": [
2917
+ {
2918
+ "type": "GitHub Sponsors",
2919
+ "url": "https://github.com/sponsors/unifiedjs"
2920
+ },
2921
+ {
2922
+ "type": "OpenCollective",
2923
+ "url": "https://opencollective.com/unified"
2924
+ }
2925
+ ],
2926
+ "license": "MIT"
2927
+ },
2928
+ "node_modules/micromark-util-types": {
2929
+ "version": "2.0.2",
2930
+ "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz",
2931
+ "integrity": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==",
2932
+ "funding": [
2933
+ {
2934
+ "type": "GitHub Sponsors",
2935
+ "url": "https://github.com/sponsors/unifiedjs"
2936
+ },
2937
+ {
2938
+ "type": "OpenCollective",
2939
+ "url": "https://opencollective.com/unified"
2940
+ }
2941
+ ],
2942
+ "license": "MIT"
2943
+ },
2944
+ "node_modules/micromatch": {
2945
+ "version": "4.0.8",
2946
+ "dev": true,
2947
+ "license": "MIT",
2948
+ "dependencies": {
2949
+ "braces": "^3.0.3",
2950
+ "picomatch": "^2.3.1"
2951
+ },
2952
+ "engines": {
2953
+ "node": ">=8.6"
2954
+ }
2955
+ },
2956
+ "node_modules/ms": {
2957
+ "version": "2.1.3",
2958
+ "license": "MIT"
2959
+ },
2960
+ "node_modules/mz": {
2961
+ "version": "2.7.0",
2962
+ "dev": true,
2963
+ "license": "MIT",
2964
+ "dependencies": {
2965
+ "any-promise": "^1.0.0",
2966
+ "object-assign": "^4.0.1",
2967
+ "thenify-all": "^1.0.0"
2968
+ }
2969
+ },
2970
+ "node_modules/nanoid": {
2971
+ "version": "3.3.16",
2972
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.16.tgz",
2973
+ "integrity": "sha512-bzlKTyNJ7+LdGIIwy8ijFpIqEQIvafahV7eYykJ8Cvh42EdJeODoJ6gUJXpQJvej1BddH8OqTXZNE/KfbWAu8Q==",
2974
+ "funding": [
2975
+ {
2976
+ "type": "github",
2977
+ "url": "https://github.com/sponsors/ai"
2978
+ }
2979
+ ],
2980
+ "license": "MIT",
2981
+ "bin": {
2982
+ "nanoid": "bin/nanoid.cjs"
2983
+ },
2984
+ "engines": {
2985
+ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
2986
+ }
2987
+ },
2988
+ "node_modules/node-releases": {
2989
+ "version": "2.0.38",
2990
+ "license": "MIT"
2991
+ },
2992
+ "node_modules/normalize-path": {
2993
+ "version": "3.0.0",
2994
+ "dev": true,
2995
+ "license": "MIT",
2996
+ "engines": {
2997
+ "node": ">=0.10.0"
2998
+ }
2999
+ },
3000
+ "node_modules/object-assign": {
3001
+ "version": "4.1.1",
3002
+ "dev": true,
3003
+ "license": "MIT",
3004
+ "engines": {
3005
+ "node": ">=0.10.0"
3006
+ }
3007
+ },
3008
+ "node_modules/object-hash": {
3009
+ "version": "3.0.0",
3010
+ "dev": true,
3011
+ "license": "MIT",
3012
+ "engines": {
3013
+ "node": ">= 6"
3014
+ }
3015
+ },
3016
+ "node_modules/parse-entities": {
3017
+ "version": "4.0.2",
3018
+ "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-4.0.2.tgz",
3019
+ "integrity": "sha512-GG2AQYWoLgL877gQIKeRPGO1xF9+eG1ujIb5soS5gPvLQ1y2o8FL90w2QWNdf9I361Mpp7726c+lj3U0qK1uGw==",
3020
+ "license": "MIT",
3021
+ "dependencies": {
3022
+ "@types/unist": "^2.0.0",
3023
+ "character-entities-legacy": "^3.0.0",
3024
+ "character-reference-invalid": "^2.0.0",
3025
+ "decode-named-character-reference": "^1.0.0",
3026
+ "is-alphanumerical": "^2.0.0",
3027
+ "is-decimal": "^2.0.0",
3028
+ "is-hexadecimal": "^2.0.0"
3029
+ },
3030
+ "funding": {
3031
+ "type": "github",
3032
+ "url": "https://github.com/sponsors/wooorm"
3033
+ }
3034
+ },
3035
+ "node_modules/parse-entities/node_modules/@types/unist": {
3036
+ "version": "2.0.11",
3037
+ "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz",
3038
+ "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==",
3039
+ "license": "MIT"
3040
+ },
3041
+ "node_modules/path-parse": {
3042
+ "version": "1.0.7",
3043
+ "dev": true,
3044
+ "license": "MIT"
3045
+ },
3046
+ "node_modules/picocolors": {
3047
+ "version": "1.1.1",
3048
+ "license": "ISC"
3049
+ },
3050
+ "node_modules/picomatch": {
3051
+ "version": "2.3.2",
3052
+ "dev": true,
3053
+ "license": "MIT",
3054
+ "engines": {
3055
+ "node": ">=8.6"
3056
+ },
3057
+ "funding": {
3058
+ "url": "https://github.com/sponsors/jonschlinkert"
3059
+ }
3060
+ },
3061
+ "node_modules/pify": {
3062
+ "version": "2.3.0",
3063
+ "dev": true,
3064
+ "license": "MIT",
3065
+ "engines": {
3066
+ "node": ">=0.10.0"
3067
+ }
3068
+ },
3069
+ "node_modules/pirates": {
3070
+ "version": "4.0.7",
3071
+ "dev": true,
3072
+ "license": "MIT",
3073
+ "engines": {
3074
+ "node": ">= 6"
3075
+ }
3076
+ },
3077
+ "node_modules/postcss": {
3078
+ "version": "8.5.24",
3079
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.24.tgz",
3080
+ "integrity": "sha512-8RyVklq0owXUTa4xlpzu4l9AaVKIdQvAcOHZWaMh98HgySsUtxRVf/chRe3dsSLqb6i40BzGRzEUddRaI+9TSw==",
3081
+ "funding": [
3082
+ {
3083
+ "type": "opencollective",
3084
+ "url": "https://opencollective.com/postcss/"
3085
+ },
3086
+ {
3087
+ "type": "tidelift",
3088
+ "url": "https://tidelift.com/funding/github/npm/postcss"
3089
+ },
3090
+ {
3091
+ "type": "github",
3092
+ "url": "https://github.com/sponsors/ai"
3093
+ }
3094
+ ],
3095
+ "license": "MIT",
3096
+ "dependencies": {
3097
+ "nanoid": "^3.3.16",
3098
+ "picocolors": "^1.1.1",
3099
+ "source-map-js": "^1.2.1"
3100
+ },
3101
+ "engines": {
3102
+ "node": "^10 || ^12 || >=14"
3103
+ }
3104
+ },
3105
+ "node_modules/postcss-import": {
3106
+ "version": "15.1.0",
3107
+ "dev": true,
3108
+ "license": "MIT",
3109
+ "dependencies": {
3110
+ "postcss-value-parser": "^4.0.0",
3111
+ "read-cache": "^1.0.0",
3112
+ "resolve": "^1.1.7"
3113
+ },
3114
+ "engines": {
3115
+ "node": ">=14.0.0"
3116
+ },
3117
+ "peerDependencies": {
3118
+ "postcss": "^8.0.0"
3119
+ }
3120
+ },
3121
+ "node_modules/postcss-js": {
3122
+ "version": "4.1.0",
3123
+ "dev": true,
3124
+ "funding": [
3125
+ {
3126
+ "type": "opencollective",
3127
+ "url": "https://opencollective.com/postcss/"
3128
+ },
3129
+ {
3130
+ "type": "github",
3131
+ "url": "https://github.com/sponsors/ai"
3132
+ }
3133
+ ],
3134
+ "license": "MIT",
3135
+ "dependencies": {
3136
+ "camelcase-css": "^2.0.1"
3137
+ },
3138
+ "engines": {
3139
+ "node": "^12 || ^14 || >= 16"
3140
+ },
3141
+ "peerDependencies": {
3142
+ "postcss": "^8.4.21"
3143
+ }
3144
+ },
3145
+ "node_modules/postcss-load-config": {
3146
+ "version": "6.0.1",
3147
+ "dev": true,
3148
+ "funding": [
3149
+ {
3150
+ "type": "opencollective",
3151
+ "url": "https://opencollective.com/postcss/"
3152
+ },
3153
+ {
3154
+ "type": "github",
3155
+ "url": "https://github.com/sponsors/ai"
3156
+ }
3157
+ ],
3158
+ "license": "MIT",
3159
+ "dependencies": {
3160
+ "lilconfig": "^3.1.1"
3161
+ },
3162
+ "engines": {
3163
+ "node": ">= 18"
3164
+ },
3165
+ "peerDependencies": {
3166
+ "jiti": ">=1.21.0",
3167
+ "postcss": ">=8.0.9",
3168
+ "tsx": "^4.8.1",
3169
+ "yaml": "^2.4.2"
3170
+ },
3171
+ "peerDependenciesMeta": {
3172
+ "jiti": {
3173
+ "optional": true
3174
+ },
3175
+ "postcss": {
3176
+ "optional": true
3177
+ },
3178
+ "tsx": {
3179
+ "optional": true
3180
+ },
3181
+ "yaml": {
3182
+ "optional": true
3183
+ }
3184
+ }
3185
+ },
3186
+ "node_modules/postcss-nested": {
3187
+ "version": "6.2.0",
3188
+ "dev": true,
3189
+ "funding": [
3190
+ {
3191
+ "type": "opencollective",
3192
+ "url": "https://opencollective.com/postcss/"
3193
+ },
3194
+ {
3195
+ "type": "github",
3196
+ "url": "https://github.com/sponsors/ai"
3197
+ }
3198
+ ],
3199
+ "license": "MIT",
3200
+ "dependencies": {
3201
+ "postcss-selector-parser": "^6.1.1"
3202
+ },
3203
+ "engines": {
3204
+ "node": ">=12.0"
3205
+ },
3206
+ "peerDependencies": {
3207
+ "postcss": "^8.2.14"
3208
+ }
3209
+ },
3210
+ "node_modules/postcss-selector-parser": {
3211
+ "version": "6.1.2",
3212
+ "dev": true,
3213
+ "license": "MIT",
3214
+ "dependencies": {
3215
+ "cssesc": "^3.0.0",
3216
+ "util-deprecate": "^1.0.2"
3217
+ },
3218
+ "engines": {
3219
+ "node": ">=4"
3220
+ }
3221
+ },
3222
+ "node_modules/postcss-value-parser": {
3223
+ "version": "4.2.0",
3224
+ "dev": true,
3225
+ "license": "MIT"
3226
+ },
3227
+ "node_modules/property-information": {
3228
+ "version": "7.2.0",
3229
+ "resolved": "https://registry.npmjs.org/property-information/-/property-information-7.2.0.tgz",
3230
+ "integrity": "sha512-IAtzIB6sUiWaJYrX9smp3V46pBGbBeLFRGdh25kg1334VcBlD8HzhPeNIWQH9zhGmo2itIe25EHt9dQP7G5hmg==",
3231
+ "license": "MIT",
3232
+ "funding": {
3233
+ "type": "github",
3234
+ "url": "https://github.com/sponsors/wooorm"
3235
+ }
3236
+ },
3237
+ "node_modules/queue-microtask": {
3238
+ "version": "1.2.3",
3239
+ "dev": true,
3240
+ "funding": [
3241
+ {
3242
+ "type": "github",
3243
+ "url": "https://github.com/sponsors/feross"
3244
+ },
3245
+ {
3246
+ "type": "patreon",
3247
+ "url": "https://www.patreon.com/feross"
3248
+ },
3249
+ {
3250
+ "type": "consulting",
3251
+ "url": "https://feross.org/support"
3252
+ }
3253
+ ],
3254
+ "license": "MIT"
3255
+ },
3256
+ "node_modules/react": {
3257
+ "version": "19.2.5",
3258
+ "license": "MIT",
3259
+ "engines": {
3260
+ "node": ">=0.10.0"
3261
+ }
3262
+ },
3263
+ "node_modules/react-dom": {
3264
+ "version": "19.2.5",
3265
+ "license": "MIT",
3266
+ "dependencies": {
3267
+ "scheduler": "^0.27.0"
3268
+ },
3269
+ "peerDependencies": {
3270
+ "react": "^19.2.5"
3271
+ }
3272
+ },
3273
+ "node_modules/react-markdown": {
3274
+ "version": "10.1.0",
3275
+ "resolved": "https://registry.npmjs.org/react-markdown/-/react-markdown-10.1.0.tgz",
3276
+ "integrity": "sha512-qKxVopLT/TyA6BX3Ue5NwabOsAzm0Q7kAPwq6L+wWDwisYs7R8vZ0nRXqq6rkueboxpkjvLGU9fWifiX/ZZFxQ==",
3277
+ "license": "MIT",
3278
+ "dependencies": {
3279
+ "@types/hast": "^3.0.0",
3280
+ "@types/mdast": "^4.0.0",
3281
+ "devlop": "^1.0.0",
3282
+ "hast-util-to-jsx-runtime": "^2.0.0",
3283
+ "html-url-attributes": "^3.0.0",
3284
+ "mdast-util-to-hast": "^13.0.0",
3285
+ "remark-parse": "^11.0.0",
3286
+ "remark-rehype": "^11.0.0",
3287
+ "unified": "^11.0.0",
3288
+ "unist-util-visit": "^5.0.0",
3289
+ "vfile": "^6.0.0"
3290
+ },
3291
+ "funding": {
3292
+ "type": "opencollective",
3293
+ "url": "https://opencollective.com/unified"
3294
+ },
3295
+ "peerDependencies": {
3296
+ "@types/react": ">=18",
3297
+ "react": ">=18"
3298
+ }
3299
+ },
3300
+ "node_modules/react-refresh": {
3301
+ "version": "0.17.0",
3302
+ "license": "MIT",
3303
+ "engines": {
3304
+ "node": ">=0.10.0"
3305
+ }
3306
+ },
3307
+ "node_modules/read-cache": {
3308
+ "version": "1.0.0",
3309
+ "dev": true,
3310
+ "license": "MIT",
3311
+ "dependencies": {
3312
+ "pify": "^2.3.0"
3313
+ }
3314
+ },
3315
+ "node_modules/readdirp": {
3316
+ "version": "3.6.0",
3317
+ "dev": true,
3318
+ "license": "MIT",
3319
+ "dependencies": {
3320
+ "picomatch": "^2.2.1"
3321
+ },
3322
+ "engines": {
3323
+ "node": ">=8.10.0"
3324
+ }
3325
+ },
3326
+ "node_modules/remark-gfm": {
3327
+ "version": "4.0.1",
3328
+ "resolved": "https://registry.npmjs.org/remark-gfm/-/remark-gfm-4.0.1.tgz",
3329
+ "integrity": "sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==",
3330
+ "license": "MIT",
3331
+ "dependencies": {
3332
+ "@types/mdast": "^4.0.0",
3333
+ "mdast-util-gfm": "^3.0.0",
3334
+ "micromark-extension-gfm": "^3.0.0",
3335
+ "remark-parse": "^11.0.0",
3336
+ "remark-stringify": "^11.0.0",
3337
+ "unified": "^11.0.0"
3338
+ },
3339
+ "funding": {
3340
+ "type": "opencollective",
3341
+ "url": "https://opencollective.com/unified"
3342
+ }
3343
+ },
3344
+ "node_modules/remark-parse": {
3345
+ "version": "11.0.0",
3346
+ "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-11.0.0.tgz",
3347
+ "integrity": "sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==",
3348
+ "license": "MIT",
3349
+ "dependencies": {
3350
+ "@types/mdast": "^4.0.0",
3351
+ "mdast-util-from-markdown": "^2.0.0",
3352
+ "micromark-util-types": "^2.0.0",
3353
+ "unified": "^11.0.0"
3354
+ },
3355
+ "funding": {
3356
+ "type": "opencollective",
3357
+ "url": "https://opencollective.com/unified"
3358
+ }
3359
+ },
3360
+ "node_modules/remark-rehype": {
3361
+ "version": "11.1.2",
3362
+ "resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-11.1.2.tgz",
3363
+ "integrity": "sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==",
3364
+ "license": "MIT",
3365
+ "dependencies": {
3366
+ "@types/hast": "^3.0.0",
3367
+ "@types/mdast": "^4.0.0",
3368
+ "mdast-util-to-hast": "^13.0.0",
3369
+ "unified": "^11.0.0",
3370
+ "vfile": "^6.0.0"
3371
+ },
3372
+ "funding": {
3373
+ "type": "opencollective",
3374
+ "url": "https://opencollective.com/unified"
3375
+ }
3376
+ },
3377
+ "node_modules/remark-stringify": {
3378
+ "version": "11.0.0",
3379
+ "resolved": "https://registry.npmjs.org/remark-stringify/-/remark-stringify-11.0.0.tgz",
3380
+ "integrity": "sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==",
3381
+ "license": "MIT",
3382
+ "dependencies": {
3383
+ "@types/mdast": "^4.0.0",
3384
+ "mdast-util-to-markdown": "^2.0.0",
3385
+ "unified": "^11.0.0"
3386
+ },
3387
+ "funding": {
3388
+ "type": "opencollective",
3389
+ "url": "https://opencollective.com/unified"
3390
+ }
3391
+ },
3392
+ "node_modules/resolve": {
3393
+ "version": "1.22.12",
3394
+ "dev": true,
3395
+ "license": "MIT",
3396
+ "dependencies": {
3397
+ "es-errors": "^1.3.0",
3398
+ "is-core-module": "^2.16.1",
3399
+ "path-parse": "^1.0.7",
3400
+ "supports-preserve-symlinks-flag": "^1.0.0"
3401
+ },
3402
+ "bin": {
3403
+ "resolve": "bin/resolve"
3404
+ },
3405
+ "engines": {
3406
+ "node": ">= 0.4"
3407
+ },
3408
+ "funding": {
3409
+ "url": "https://github.com/sponsors/ljharb"
3410
+ }
3411
+ },
3412
+ "node_modules/reusify": {
3413
+ "version": "1.1.0",
3414
+ "dev": true,
3415
+ "license": "MIT",
3416
+ "engines": {
3417
+ "iojs": ">=1.0.0",
3418
+ "node": ">=0.10.0"
3419
+ }
3420
+ },
3421
+ "node_modules/rollup": {
3422
+ "version": "4.60.2",
3423
+ "license": "MIT",
3424
+ "dependencies": {
3425
+ "@types/estree": "1.0.8"
3426
+ },
3427
+ "bin": {
3428
+ "rollup": "dist/bin/rollup"
3429
+ },
3430
+ "engines": {
3431
+ "node": ">=18.0.0",
3432
+ "npm": ">=8.0.0"
3433
+ },
3434
+ "optionalDependencies": {
3435
+ "@rollup/rollup-android-arm-eabi": "4.60.2",
3436
+ "@rollup/rollup-android-arm64": "4.60.2",
3437
+ "@rollup/rollup-darwin-arm64": "4.60.2",
3438
+ "@rollup/rollup-darwin-x64": "4.60.2",
3439
+ "@rollup/rollup-freebsd-arm64": "4.60.2",
3440
+ "@rollup/rollup-freebsd-x64": "4.60.2",
3441
+ "@rollup/rollup-linux-arm-gnueabihf": "4.60.2",
3442
+ "@rollup/rollup-linux-arm-musleabihf": "4.60.2",
3443
+ "@rollup/rollup-linux-arm64-gnu": "4.60.2",
3444
+ "@rollup/rollup-linux-arm64-musl": "4.60.2",
3445
+ "@rollup/rollup-linux-loong64-gnu": "4.60.2",
3446
+ "@rollup/rollup-linux-loong64-musl": "4.60.2",
3447
+ "@rollup/rollup-linux-ppc64-gnu": "4.60.2",
3448
+ "@rollup/rollup-linux-ppc64-musl": "4.60.2",
3449
+ "@rollup/rollup-linux-riscv64-gnu": "4.60.2",
3450
+ "@rollup/rollup-linux-riscv64-musl": "4.60.2",
3451
+ "@rollup/rollup-linux-s390x-gnu": "4.60.2",
3452
+ "@rollup/rollup-linux-x64-gnu": "4.60.2",
3453
+ "@rollup/rollup-linux-x64-musl": "4.60.2",
3454
+ "@rollup/rollup-openbsd-x64": "4.60.2",
3455
+ "@rollup/rollup-openharmony-arm64": "4.60.2",
3456
+ "@rollup/rollup-win32-arm64-msvc": "4.60.2",
3457
+ "@rollup/rollup-win32-ia32-msvc": "4.60.2",
3458
+ "@rollup/rollup-win32-x64-gnu": "4.60.2",
3459
+ "@rollup/rollup-win32-x64-msvc": "4.60.2",
3460
+ "fsevents": "~2.3.2"
3461
+ }
3462
+ },
3463
+ "node_modules/run-parallel": {
3464
+ "version": "1.2.0",
3465
+ "dev": true,
3466
+ "funding": [
3467
+ {
3468
+ "type": "github",
3469
+ "url": "https://github.com/sponsors/feross"
3470
+ },
3471
+ {
3472
+ "type": "patreon",
3473
+ "url": "https://www.patreon.com/feross"
3474
+ },
3475
+ {
3476
+ "type": "consulting",
3477
+ "url": "https://feross.org/support"
3478
+ }
3479
+ ],
3480
+ "license": "MIT",
3481
+ "dependencies": {
3482
+ "queue-microtask": "^1.2.2"
3483
+ }
3484
+ },
3485
+ "node_modules/scheduler": {
3486
+ "version": "0.27.0",
3487
+ "license": "MIT"
3488
+ },
3489
+ "node_modules/semver": {
3490
+ "version": "6.3.1",
3491
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
3492
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
3493
+ "license": "ISC",
3494
+ "bin": {
3495
+ "semver": "bin/semver.js"
3496
+ }
3497
+ },
3498
+ "node_modules/source-map-js": {
3499
+ "version": "1.2.1",
3500
+ "license": "BSD-3-Clause",
3501
+ "engines": {
3502
+ "node": ">=0.10.0"
3503
+ }
3504
+ },
3505
+ "node_modules/space-separated-tokens": {
3506
+ "version": "2.0.2",
3507
+ "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz",
3508
+ "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==",
3509
+ "license": "MIT",
3510
+ "funding": {
3511
+ "type": "github",
3512
+ "url": "https://github.com/sponsors/wooorm"
3513
+ }
3514
+ },
3515
+ "node_modules/stringify-entities": {
3516
+ "version": "4.0.4",
3517
+ "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.4.tgz",
3518
+ "integrity": "sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==",
3519
+ "license": "MIT",
3520
+ "dependencies": {
3521
+ "character-entities-html4": "^2.0.0",
3522
+ "character-entities-legacy": "^3.0.0"
3523
+ },
3524
+ "funding": {
3525
+ "type": "github",
3526
+ "url": "https://github.com/sponsors/wooorm"
3527
+ }
3528
+ },
3529
+ "node_modules/style-to-js": {
3530
+ "version": "1.1.21",
3531
+ "resolved": "https://registry.npmjs.org/style-to-js/-/style-to-js-1.1.21.tgz",
3532
+ "integrity": "sha512-RjQetxJrrUJLQPHbLku6U/ocGtzyjbJMP9lCNK7Ag0CNh690nSH8woqWH9u16nMjYBAok+i7JO1NP2pOy8IsPQ==",
3533
+ "license": "MIT",
3534
+ "dependencies": {
3535
+ "style-to-object": "1.0.14"
3536
+ }
3537
+ },
3538
+ "node_modules/style-to-object": {
3539
+ "version": "1.0.14",
3540
+ "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-1.0.14.tgz",
3541
+ "integrity": "sha512-LIN7rULI0jBscWQYaSswptyderlarFkjQ+t79nzty8tcIAceVomEVlLzH5VP4Cmsv6MtKhs7qaAiwlcp+Mgaxw==",
3542
+ "license": "MIT",
3543
+ "dependencies": {
3544
+ "inline-style-parser": "0.2.7"
3545
+ }
3546
+ },
3547
+ "node_modules/sucrase": {
3548
+ "version": "3.35.1",
3549
+ "dev": true,
3550
+ "license": "MIT",
3551
+ "dependencies": {
3552
+ "@jridgewell/gen-mapping": "^0.3.2",
3553
+ "commander": "^4.0.0",
3554
+ "lines-and-columns": "^1.1.6",
3555
+ "mz": "^2.7.0",
3556
+ "pirates": "^4.0.1",
3557
+ "tinyglobby": "^0.2.11",
3558
+ "ts-interface-checker": "^0.1.9"
3559
+ },
3560
+ "bin": {
3561
+ "sucrase": "bin/sucrase",
3562
+ "sucrase-node": "bin/sucrase-node"
3563
+ },
3564
+ "engines": {
3565
+ "node": ">=16 || 14 >=14.17"
3566
+ }
3567
+ },
3568
+ "node_modules/supports-preserve-symlinks-flag": {
3569
+ "version": "1.0.0",
3570
+ "dev": true,
3571
+ "license": "MIT",
3572
+ "engines": {
3573
+ "node": ">= 0.4"
3574
+ },
3575
+ "funding": {
3576
+ "url": "https://github.com/sponsors/ljharb"
3577
+ }
3578
+ },
3579
+ "node_modules/tailwind-merge": {
3580
+ "version": "2.6.1",
3581
+ "license": "MIT",
3582
+ "funding": {
3583
+ "type": "github",
3584
+ "url": "https://github.com/sponsors/dcastil"
3585
+ }
3586
+ },
3587
+ "node_modules/tailwindcss": {
3588
+ "version": "3.4.19",
3589
+ "dev": true,
3590
+ "license": "MIT",
3591
+ "dependencies": {
3592
+ "@alloc/quick-lru": "^5.2.0",
3593
+ "arg": "^5.0.2",
3594
+ "chokidar": "^3.6.0",
3595
+ "didyoumean": "^1.2.2",
3596
+ "dlv": "^1.1.3",
3597
+ "fast-glob": "^3.3.2",
3598
+ "glob-parent": "^6.0.2",
3599
+ "is-glob": "^4.0.3",
3600
+ "jiti": "^1.21.7",
3601
+ "lilconfig": "^3.1.3",
3602
+ "micromatch": "^4.0.8",
3603
+ "normalize-path": "^3.0.0",
3604
+ "object-hash": "^3.0.0",
3605
+ "picocolors": "^1.1.1",
3606
+ "postcss": "^8.4.47",
3607
+ "postcss-import": "^15.1.0",
3608
+ "postcss-js": "^4.0.1",
3609
+ "postcss-load-config": "^4.0.2 || ^5.0 || ^6.0",
3610
+ "postcss-nested": "^6.2.0",
3611
+ "postcss-selector-parser": "^6.1.2",
3612
+ "resolve": "^1.22.8",
3613
+ "sucrase": "^3.35.0"
3614
+ },
3615
+ "bin": {
3616
+ "tailwind": "lib/cli.js",
3617
+ "tailwindcss": "lib/cli.js"
3618
+ },
3619
+ "engines": {
3620
+ "node": ">=14.0.0"
3621
+ }
3622
+ },
3623
+ "node_modules/tailwindcss-animate": {
3624
+ "version": "1.0.7",
3625
+ "dev": true,
3626
+ "license": "MIT",
3627
+ "peerDependencies": {
3628
+ "tailwindcss": ">=3.0.0 || insiders"
3629
+ }
3630
+ },
3631
+ "node_modules/thenify": {
3632
+ "version": "3.3.1",
3633
+ "dev": true,
3634
+ "license": "MIT",
3635
+ "dependencies": {
3636
+ "any-promise": "^1.0.0"
3637
+ }
3638
+ },
3639
+ "node_modules/thenify-all": {
3640
+ "version": "1.6.0",
3641
+ "dev": true,
3642
+ "license": "MIT",
3643
+ "dependencies": {
3644
+ "thenify": ">= 3.1.0 < 4"
3645
+ },
3646
+ "engines": {
3647
+ "node": ">=0.8"
3648
+ }
3649
+ },
3650
+ "node_modules/tinyglobby": {
3651
+ "version": "0.2.16",
3652
+ "license": "MIT",
3653
+ "dependencies": {
3654
+ "fdir": "^6.5.0",
3655
+ "picomatch": "^4.0.4"
3656
+ },
3657
+ "engines": {
3658
+ "node": ">=12.0.0"
3659
+ },
3660
+ "funding": {
3661
+ "url": "https://github.com/sponsors/SuperchupuDev"
3662
+ }
3663
+ },
3664
+ "node_modules/tinyglobby/node_modules/fdir": {
3665
+ "version": "6.5.0",
3666
+ "license": "MIT",
3667
+ "engines": {
3668
+ "node": ">=12.0.0"
3669
+ },
3670
+ "peerDependencies": {
3671
+ "picomatch": "^3 || ^4"
3672
+ },
3673
+ "peerDependenciesMeta": {
3674
+ "picomatch": {
3675
+ "optional": true
3676
+ }
3677
+ }
3678
+ },
3679
+ "node_modules/tinyglobby/node_modules/picomatch": {
3680
+ "version": "4.0.4",
3681
+ "license": "MIT",
3682
+ "engines": {
3683
+ "node": ">=12"
3684
+ },
3685
+ "funding": {
3686
+ "url": "https://github.com/sponsors/jonschlinkert"
3687
+ }
3688
+ },
3689
+ "node_modules/to-regex-range": {
3690
+ "version": "5.0.1",
3691
+ "dev": true,
3692
+ "license": "MIT",
3693
+ "dependencies": {
3694
+ "is-number": "^7.0.0"
3695
+ },
3696
+ "engines": {
3697
+ "node": ">=8.0"
3698
+ }
3699
+ },
3700
+ "node_modules/trim-lines": {
3701
+ "version": "3.0.1",
3702
+ "resolved": "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz",
3703
+ "integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==",
3704
+ "license": "MIT",
3705
+ "funding": {
3706
+ "type": "github",
3707
+ "url": "https://github.com/sponsors/wooorm"
3708
+ }
3709
+ },
3710
+ "node_modules/trough": {
3711
+ "version": "2.2.0",
3712
+ "resolved": "https://registry.npmjs.org/trough/-/trough-2.2.0.tgz",
3713
+ "integrity": "sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==",
3714
+ "license": "MIT",
3715
+ "funding": {
3716
+ "type": "github",
3717
+ "url": "https://github.com/sponsors/wooorm"
3718
+ }
3719
+ },
3720
+ "node_modules/ts-interface-checker": {
3721
+ "version": "0.1.13",
3722
+ "dev": true,
3723
+ "license": "Apache-2.0"
3724
+ },
3725
+ "node_modules/tsx": {
3726
+ "version": "4.23.1",
3727
+ "resolved": "https://registry.npmjs.org/tsx/-/tsx-4.23.1.tgz",
3728
+ "integrity": "sha512-GQHnkIfxyx1wYCOS/wonik5MVRZU9hi1TEZmzGZSCJB1y9YgoZ8H6itNE/u4suE+yLmOzuE4E5S4TZ/ZX2wcWQ==",
3729
+ "devOptional": true,
3730
+ "license": "MIT",
3731
+ "dependencies": {
3732
+ "esbuild": "~0.28.0"
3733
+ },
3734
+ "bin": {
3735
+ "tsx": "dist/cli.mjs"
3736
+ },
3737
+ "engines": {
3738
+ "node": ">=18.0.0"
3739
+ },
3740
+ "optionalDependencies": {
3741
+ "fsevents": "~2.3.3"
3742
+ }
3743
+ },
3744
+ "node_modules/tsx/node_modules/@esbuild/aix-ppc64": {
3745
+ "version": "0.28.1",
3746
+ "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.28.1.tgz",
3747
+ "integrity": "sha512-Svl7tq8k/08+p6CXPpRjQ1fKX+1odH/BQbb48fV6fj3CWHhsoIOoY87w1oHXm0qEpkIK3ZfVgp0hed3XBXzXMQ==",
3748
+ "cpu": [
3749
+ "ppc64"
3750
+ ],
3751
+ "license": "MIT",
3752
+ "optional": true,
3753
+ "os": [
3754
+ "aix"
3755
+ ],
3756
+ "engines": {
3757
+ "node": ">=18"
3758
+ }
3759
+ },
3760
+ "node_modules/tsx/node_modules/@esbuild/android-arm": {
3761
+ "version": "0.28.1",
3762
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.28.1.tgz",
3763
+ "integrity": "sha512-0k2F129Xdio1TdJfzJ8sy1Q47vUD2NnwdhiAf7drUN1EBTfPf4hsFCtmMgu/6m8JSzsBrlmVjudMBQqOfG8usQ==",
3764
+ "cpu": [
3765
+ "arm"
3766
+ ],
3767
+ "license": "MIT",
3768
+ "optional": true,
3769
+ "os": [
3770
+ "android"
3771
+ ],
3772
+ "engines": {
3773
+ "node": ">=18"
3774
+ }
3775
+ },
3776
+ "node_modules/tsx/node_modules/@esbuild/android-arm64": {
3777
+ "version": "0.28.1",
3778
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.28.1.tgz",
3779
+ "integrity": "sha512-34EGEbCIAgosYz6goLcopX6Mo7NyGv9tfwEM2/7Ce2VcVRk568iSvniGWcUXIy7wEDR1wzolcxcriFVrWYcwBg==",
3780
+ "cpu": [
3781
+ "arm64"
3782
+ ],
3783
+ "license": "MIT",
3784
+ "optional": true,
3785
+ "os": [
3786
+ "android"
3787
+ ],
3788
+ "engines": {
3789
+ "node": ">=18"
3790
+ }
3791
+ },
3792
+ "node_modules/tsx/node_modules/@esbuild/android-x64": {
3793
+ "version": "0.28.1",
3794
+ "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.28.1.tgz",
3795
+ "integrity": "sha512-dbwY7ltSMDWsRatcRpCnES4F+im88OCUgGZjy52shC7GqHRE/cYlxNbB4Z4UpJswpcc4Qxd2oE/ufM0p61IKng==",
3796
+ "cpu": [
3797
+ "x64"
3798
+ ],
3799
+ "license": "MIT",
3800
+ "optional": true,
3801
+ "os": [
3802
+ "android"
3803
+ ],
3804
+ "engines": {
3805
+ "node": ">=18"
3806
+ }
3807
+ },
3808
+ "node_modules/tsx/node_modules/@esbuild/darwin-arm64": {
3809
+ "version": "0.28.1",
3810
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.28.1.tgz",
3811
+ "integrity": "sha512-TZbWkQY7kvTAXbXUT7uVACR5cMHsDiSz9z7ZKAX/RTq/WJEk3QyRr0wZpNhBDX+/0CtdqUIJlOiodQcta6tY3Q==",
3812
+ "cpu": [
3813
+ "arm64"
3814
+ ],
3815
+ "license": "MIT",
3816
+ "optional": true,
3817
+ "os": [
3818
+ "darwin"
3819
+ ],
3820
+ "engines": {
3821
+ "node": ">=18"
3822
+ }
3823
+ },
3824
+ "node_modules/tsx/node_modules/@esbuild/darwin-x64": {
3825
+ "version": "0.28.1",
3826
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.28.1.tgz",
3827
+ "integrity": "sha512-zfdzgK9ACBNZLI/CyHTOx81SyNbM6YXn7rxSgX97VjyiPl9W1i4Ka4fgKECEoFCKGpvBj5qArWIGgQjOwkgskQ==",
3828
+ "cpu": [
3829
+ "x64"
3830
+ ],
3831
+ "license": "MIT",
3832
+ "optional": true,
3833
+ "os": [
3834
+ "darwin"
3835
+ ],
3836
+ "engines": {
3837
+ "node": ">=18"
3838
+ }
3839
+ },
3840
+ "node_modules/tsx/node_modules/@esbuild/freebsd-arm64": {
3841
+ "version": "0.28.1",
3842
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.28.1.tgz",
3843
+ "integrity": "sha512-wG2EA8ENdEI0qhkSZMjfqrdY+ziCYCPMmtZjjIwOmXFjmyzEHn+UUxk5of+SYsjtfs3VpnlC7QLzSI5hY/rOAw==",
3844
+ "cpu": [
3845
+ "arm64"
3846
+ ],
3847
+ "license": "MIT",
3848
+ "optional": true,
3849
+ "os": [
3850
+ "freebsd"
3851
+ ],
3852
+ "engines": {
3853
+ "node": ">=18"
3854
+ }
3855
+ },
3856
+ "node_modules/tsx/node_modules/@esbuild/freebsd-x64": {
3857
+ "version": "0.28.1",
3858
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.28.1.tgz",
3859
+ "integrity": "sha512-i7dZ9vQgnvSCzi/rYCXNgtF/U+eKZNJBzu3eTQbRgHnM7tNSizLOkRFAl3qzVc/Op/u5YkHHa4pf/3DOYHthLQ==",
3860
+ "cpu": [
3861
+ "x64"
3862
+ ],
3863
+ "license": "MIT",
3864
+ "optional": true,
3865
+ "os": [
3866
+ "freebsd"
3867
+ ],
3868
+ "engines": {
3869
+ "node": ">=18"
3870
+ }
3871
+ },
3872
+ "node_modules/tsx/node_modules/@esbuild/linux-arm": {
3873
+ "version": "0.28.1",
3874
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.28.1.tgz",
3875
+ "integrity": "sha512-qVXBOHQS+d5Y722GwJzJUtOLlX7km3CraOaGormF1pDtPd2C/l1SHRPgjLunLGe51Sh5YYWKMFDyV4SxgMQYTQ==",
3876
+ "cpu": [
3877
+ "arm"
3878
+ ],
3879
+ "license": "MIT",
3880
+ "optional": true,
3881
+ "os": [
3882
+ "linux"
3883
+ ],
3884
+ "engines": {
3885
+ "node": ">=18"
3886
+ }
3887
+ },
3888
+ "node_modules/tsx/node_modules/@esbuild/linux-arm64": {
3889
+ "version": "0.28.1",
3890
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.28.1.tgz",
3891
+ "integrity": "sha512-yHs+0uc8+nvEAfAfxrWQKK5peSNzBc4PegcMO0EJ2hT71uA7vB8Ihg2e77R2P7SG5uYjPbHlLLmve4LLLRCf0g==",
3892
+ "cpu": [
3893
+ "arm64"
3894
+ ],
3895
+ "license": "MIT",
3896
+ "optional": true,
3897
+ "os": [
3898
+ "linux"
3899
+ ],
3900
+ "engines": {
3901
+ "node": ">=18"
3902
+ }
3903
+ },
3904
+ "node_modules/tsx/node_modules/@esbuild/linux-ia32": {
3905
+ "version": "0.28.1",
3906
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.28.1.tgz",
3907
+ "integrity": "sha512-d1z4ZuP0ajrfz/FhGT4vv278rX8KnPPJx8i5+AtK7TYbx9Le9F1hyzurZpkEyjkGa9dUGhQow4C1NmeGvqxN2w==",
3908
+ "cpu": [
3909
+ "ia32"
3910
+ ],
3911
+ "license": "MIT",
3912
+ "optional": true,
3913
+ "os": [
3914
+ "linux"
3915
+ ],
3916
+ "engines": {
3917
+ "node": ">=18"
3918
+ }
3919
+ },
3920
+ "node_modules/tsx/node_modules/@esbuild/linux-loong64": {
3921
+ "version": "0.28.1",
3922
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.28.1.tgz",
3923
+ "integrity": "sha512-M5sRjUVZrkm1OAPR3dlOYzNmN+loZKGVi1VUQGrwuqLcbR6qeAz+famMhjASeH3YVKvZz+zT1jlh/keC3Rj/lg==",
3924
+ "cpu": [
3925
+ "loong64"
3926
+ ],
3927
+ "license": "MIT",
3928
+ "optional": true,
3929
+ "os": [
3930
+ "linux"
3931
+ ],
3932
+ "engines": {
3933
+ "node": ">=18"
3934
+ }
3935
+ },
3936
+ "node_modules/tsx/node_modules/@esbuild/linux-mips64el": {
3937
+ "version": "0.28.1",
3938
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.28.1.tgz",
3939
+ "integrity": "sha512-mRObBZeHh2OxcBFPWE/FjylkRgZdYuiTR3vaTozquCGOH14iP9oN4x4Ge81CoIDYQrXmIxpFumJBu5MtZpnQJQ==",
3940
+ "cpu": [
3941
+ "mips64el"
3942
+ ],
3943
+ "license": "MIT",
3944
+ "optional": true,
3945
+ "os": [
3946
+ "linux"
3947
+ ],
3948
+ "engines": {
3949
+ "node": ">=18"
3950
+ }
3951
+ },
3952
+ "node_modules/tsx/node_modules/@esbuild/linux-ppc64": {
3953
+ "version": "0.28.1",
3954
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.28.1.tgz",
3955
+ "integrity": "sha512-slScBsMAb3GFDcdrCgLwZtPYRoH2H/youv10QiZyRjmsP48fznoveWytSgCI/R0ZcUgpc0ZhIUEx6LHts8yrfQ==",
3956
+ "cpu": [
3957
+ "ppc64"
3958
+ ],
3959
+ "license": "MIT",
3960
+ "optional": true,
3961
+ "os": [
3962
+ "linux"
3963
+ ],
3964
+ "engines": {
3965
+ "node": ">=18"
3966
+ }
3967
+ },
3968
+ "node_modules/tsx/node_modules/@esbuild/linux-riscv64": {
3969
+ "version": "0.28.1",
3970
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.28.1.tgz",
3971
+ "integrity": "sha512-kw0owk1o0GFETUJyW0jc0G4Yzs0BHZn0JDZ8JRT088vjJYX777BAs1fDGxAC+q831qOs2DTC96mNsG2opdfyyQ==",
3972
+ "cpu": [
3973
+ "riscv64"
3974
+ ],
3975
+ "license": "MIT",
3976
+ "optional": true,
3977
+ "os": [
3978
+ "linux"
3979
+ ],
3980
+ "engines": {
3981
+ "node": ">=18"
3982
+ }
3983
+ },
3984
+ "node_modules/tsx/node_modules/@esbuild/linux-s390x": {
3985
+ "version": "0.28.1",
3986
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.28.1.tgz",
3987
+ "integrity": "sha512-/lAIjX8aYFRByhh6L5rYtPEDRqa9de/4V/juOXcta5frjvzXO4/sqEtyytse0g3zZFuWu5cDN0MkLz2qRDD2Ag==",
3988
+ "cpu": [
3989
+ "s390x"
3990
+ ],
3991
+ "license": "MIT",
3992
+ "optional": true,
3993
+ "os": [
3994
+ "linux"
3995
+ ],
3996
+ "engines": {
3997
+ "node": ">=18"
3998
+ }
3999
+ },
4000
+ "node_modules/tsx/node_modules/@esbuild/linux-x64": {
4001
+ "version": "0.28.1",
4002
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.28.1.tgz",
4003
+ "integrity": "sha512-u/anNYF2mmVOEDwLtnQ1wOr3EZ9sTNGLWrsYGYwHWzGA3Si84IOkHXlbWTD1NB+9/1lcnweYKO54uhxZydNzfA==",
4004
+ "cpu": [
4005
+ "x64"
4006
+ ],
4007
+ "license": "MIT",
4008
+ "optional": true,
4009
+ "os": [
4010
+ "linux"
4011
+ ],
4012
+ "engines": {
4013
+ "node": ">=18"
4014
+ }
4015
+ },
4016
+ "node_modules/tsx/node_modules/@esbuild/netbsd-arm64": {
4017
+ "version": "0.28.1",
4018
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.28.1.tgz",
4019
+ "integrity": "sha512-oks0DYbLwWMmaakTsCb+zL4E+aHRVLom9IJZOAthMQEPiQmydXHkziYEsGYRx0uNV/IjEKGAV941JzH02pflqw==",
4020
+ "cpu": [
4021
+ "arm64"
4022
+ ],
4023
+ "license": "MIT",
4024
+ "optional": true,
4025
+ "os": [
4026
+ "netbsd"
4027
+ ],
4028
+ "engines": {
4029
+ "node": ">=18"
4030
+ }
4031
+ },
4032
+ "node_modules/tsx/node_modules/@esbuild/netbsd-x64": {
4033
+ "version": "0.28.1",
4034
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.28.1.tgz",
4035
+ "integrity": "sha512-aeL6lAnN89Hz43Mlh1G8ARasbuoYvSITDEx0tHh5b7jJnHcssqgjy9Yx430GDpmCa6OyrKoS0aNRjKundRizGg==",
4036
+ "cpu": [
4037
+ "x64"
4038
+ ],
4039
+ "license": "MIT",
4040
+ "optional": true,
4041
+ "os": [
4042
+ "netbsd"
4043
+ ],
4044
+ "engines": {
4045
+ "node": ">=18"
4046
+ }
4047
+ },
4048
+ "node_modules/tsx/node_modules/@esbuild/openbsd-arm64": {
4049
+ "version": "0.28.1",
4050
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.28.1.tgz",
4051
+ "integrity": "sha512-MEFJe5C3R8pwXdZ5Y21oo6m7ePiS0d9pWucn99O/wvyJZChoIQKrQDxKrGeW8F5+T0okTHesAmDeiHDTIq0V/Q==",
4052
+ "cpu": [
4053
+ "arm64"
4054
+ ],
4055
+ "license": "MIT",
4056
+ "optional": true,
4057
+ "os": [
4058
+ "openbsd"
4059
+ ],
4060
+ "engines": {
4061
+ "node": ">=18"
4062
+ }
4063
+ },
4064
+ "node_modules/tsx/node_modules/@esbuild/openbsd-x64": {
4065
+ "version": "0.28.1",
4066
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.28.1.tgz",
4067
+ "integrity": "sha512-i/ZLIOafE0Z8cI/XANJAixoJL/uRAoS2xOA3rb0xN+KK0K177cMAsQYkzHtBrtMXAKuAc7HGgcWiZ/sRC1Nxgw==",
4068
+ "cpu": [
4069
+ "x64"
4070
+ ],
4071
+ "license": "MIT",
4072
+ "optional": true,
4073
+ "os": [
4074
+ "openbsd"
4075
+ ],
4076
+ "engines": {
4077
+ "node": ">=18"
4078
+ }
4079
+ },
4080
+ "node_modules/tsx/node_modules/@esbuild/openharmony-arm64": {
4081
+ "version": "0.28.1",
4082
+ "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.28.1.tgz",
4083
+ "integrity": "sha512-ge+Z7EXFNt2BO1oAMsVpiQ8EwndV9i1xXerAeTIK7AtPs3bKFXQM7nlRxDSIUIMeueR1CNXxqztLzdNeReKBJg==",
4084
+ "cpu": [
4085
+ "arm64"
4086
+ ],
4087
+ "license": "MIT",
4088
+ "optional": true,
4089
+ "os": [
4090
+ "openharmony"
4091
+ ],
4092
+ "engines": {
4093
+ "node": ">=18"
4094
+ }
4095
+ },
4096
+ "node_modules/tsx/node_modules/@esbuild/sunos-x64": {
4097
+ "version": "0.28.1",
4098
+ "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.28.1.tgz",
4099
+ "integrity": "sha512-BEjgtECkL3vY+SaSQ6nzVfiALUeFxpawyp8Jmf5PtYhf1Ug40N1h/hxlhts+f1FvSvarEigdxS3BlSMI2PJLcQ==",
4100
+ "cpu": [
4101
+ "x64"
4102
+ ],
4103
+ "license": "MIT",
4104
+ "optional": true,
4105
+ "os": [
4106
+ "sunos"
4107
+ ],
4108
+ "engines": {
4109
+ "node": ">=18"
4110
+ }
4111
+ },
4112
+ "node_modules/tsx/node_modules/@esbuild/win32-arm64": {
4113
+ "version": "0.28.1",
4114
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.28.1.tgz",
4115
+ "integrity": "sha512-lCv9eK/H6ZJWbE7bh2nw54CZ9M2nupBxJcTsdk/QQnWkdSjKGuxmmH8/GWrlT1eMmZfn4dGcCjRte397WqfQXA==",
4116
+ "cpu": [
4117
+ "arm64"
4118
+ ],
4119
+ "license": "MIT",
4120
+ "optional": true,
4121
+ "os": [
4122
+ "win32"
4123
+ ],
4124
+ "engines": {
4125
+ "node": ">=18"
4126
+ }
4127
+ },
4128
+ "node_modules/tsx/node_modules/@esbuild/win32-ia32": {
4129
+ "version": "0.28.1",
4130
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.28.1.tgz",
4131
+ "integrity": "sha512-zvb/mB2bSCoJOpoCBgYKKpX6YM6mJBlBUVUtVj41DlZJVEB6/0CKlRYxP5wWl1C1ILiCoAU5wZZ4q1P3qeS6Eg==",
4132
+ "cpu": [
4133
+ "ia32"
4134
+ ],
4135
+ "license": "MIT",
4136
+ "optional": true,
4137
+ "os": [
4138
+ "win32"
4139
+ ],
4140
+ "engines": {
4141
+ "node": ">=18"
4142
+ }
4143
+ },
4144
+ "node_modules/tsx/node_modules/@esbuild/win32-x64": {
4145
+ "version": "0.28.1",
4146
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.28.1.tgz",
4147
+ "integrity": "sha512-bm4Mowrv+GXMlpWX++EcXw/iLyd1o3+bJkC2DkWXYVvgZCqD/bSj9ctZeAMC3cIxgjRVR2Dufaiu4YPxr5gW1A==",
4148
+ "cpu": [
4149
+ "x64"
4150
+ ],
4151
+ "license": "MIT",
4152
+ "optional": true,
4153
+ "os": [
4154
+ "win32"
4155
+ ],
4156
+ "engines": {
4157
+ "node": ">=18"
4158
+ }
4159
+ },
4160
+ "node_modules/tsx/node_modules/esbuild": {
4161
+ "version": "0.28.1",
4162
+ "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.28.1.tgz",
4163
+ "integrity": "sha512-HrJrvZv5ayxBzPfwphOoNzkzOIIlifzk0KJrGK2c8R4+LKpMtpYLQeUdjnwjWv/LZlkH2laZk+4w78pi99D4Vw==",
4164
+ "devOptional": true,
4165
+ "hasInstallScript": true,
4166
+ "license": "MIT",
4167
+ "bin": {
4168
+ "esbuild": "bin/esbuild"
4169
+ },
4170
+ "engines": {
4171
+ "node": ">=18"
4172
+ },
4173
+ "optionalDependencies": {
4174
+ "@esbuild/aix-ppc64": "0.28.1",
4175
+ "@esbuild/android-arm": "0.28.1",
4176
+ "@esbuild/android-arm64": "0.28.1",
4177
+ "@esbuild/android-x64": "0.28.1",
4178
+ "@esbuild/darwin-arm64": "0.28.1",
4179
+ "@esbuild/darwin-x64": "0.28.1",
4180
+ "@esbuild/freebsd-arm64": "0.28.1",
4181
+ "@esbuild/freebsd-x64": "0.28.1",
4182
+ "@esbuild/linux-arm": "0.28.1",
4183
+ "@esbuild/linux-arm64": "0.28.1",
4184
+ "@esbuild/linux-ia32": "0.28.1",
4185
+ "@esbuild/linux-loong64": "0.28.1",
4186
+ "@esbuild/linux-mips64el": "0.28.1",
4187
+ "@esbuild/linux-ppc64": "0.28.1",
4188
+ "@esbuild/linux-riscv64": "0.28.1",
4189
+ "@esbuild/linux-s390x": "0.28.1",
4190
+ "@esbuild/linux-x64": "0.28.1",
4191
+ "@esbuild/netbsd-arm64": "0.28.1",
4192
+ "@esbuild/netbsd-x64": "0.28.1",
4193
+ "@esbuild/openbsd-arm64": "0.28.1",
4194
+ "@esbuild/openbsd-x64": "0.28.1",
4195
+ "@esbuild/openharmony-arm64": "0.28.1",
4196
+ "@esbuild/sunos-x64": "0.28.1",
4197
+ "@esbuild/win32-arm64": "0.28.1",
4198
+ "@esbuild/win32-ia32": "0.28.1",
4199
+ "@esbuild/win32-x64": "0.28.1"
4200
+ }
4201
+ },
4202
+ "node_modules/typescript": {
4203
+ "version": "5.9.3",
4204
+ "dev": true,
4205
+ "license": "Apache-2.0",
4206
+ "bin": {
4207
+ "tsc": "bin/tsc",
4208
+ "tsserver": "bin/tsserver"
4209
+ },
4210
+ "engines": {
4211
+ "node": ">=14.17"
4212
+ }
4213
+ },
4214
+ "node_modules/undici-types": {
4215
+ "version": "6.21.0",
4216
+ "devOptional": true,
4217
+ "license": "MIT"
4218
+ },
4219
+ "node_modules/unified": {
4220
+ "version": "11.0.5",
4221
+ "resolved": "https://registry.npmjs.org/unified/-/unified-11.0.5.tgz",
4222
+ "integrity": "sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==",
4223
+ "license": "MIT",
4224
+ "dependencies": {
4225
+ "@types/unist": "^3.0.0",
4226
+ "bail": "^2.0.0",
4227
+ "devlop": "^1.0.0",
4228
+ "extend": "^3.0.0",
4229
+ "is-plain-obj": "^4.0.0",
4230
+ "trough": "^2.0.0",
4231
+ "vfile": "^6.0.0"
4232
+ },
4233
+ "funding": {
4234
+ "type": "opencollective",
4235
+ "url": "https://opencollective.com/unified"
4236
+ }
4237
+ },
4238
+ "node_modules/unist-util-is": {
4239
+ "version": "6.0.1",
4240
+ "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.1.tgz",
4241
+ "integrity": "sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==",
4242
+ "license": "MIT",
4243
+ "dependencies": {
4244
+ "@types/unist": "^3.0.0"
4245
+ },
4246
+ "funding": {
4247
+ "type": "opencollective",
4248
+ "url": "https://opencollective.com/unified"
4249
+ }
4250
+ },
4251
+ "node_modules/unist-util-position": {
4252
+ "version": "5.0.0",
4253
+ "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-5.0.0.tgz",
4254
+ "integrity": "sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==",
4255
+ "license": "MIT",
4256
+ "dependencies": {
4257
+ "@types/unist": "^3.0.0"
4258
+ },
4259
+ "funding": {
4260
+ "type": "opencollective",
4261
+ "url": "https://opencollective.com/unified"
4262
+ }
4263
+ },
4264
+ "node_modules/unist-util-stringify-position": {
4265
+ "version": "4.0.0",
4266
+ "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz",
4267
+ "integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==",
4268
+ "license": "MIT",
4269
+ "dependencies": {
4270
+ "@types/unist": "^3.0.0"
4271
+ },
4272
+ "funding": {
4273
+ "type": "opencollective",
4274
+ "url": "https://opencollective.com/unified"
4275
+ }
4276
+ },
4277
+ "node_modules/unist-util-visit": {
4278
+ "version": "5.1.0",
4279
+ "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-5.1.0.tgz",
4280
+ "integrity": "sha512-m+vIdyeCOpdr/QeQCu2EzxX/ohgS8KbnPDgFni4dQsfSCtpz8UqDyY5GjRru8PDKuYn7Fq19j1CQ+nJSsGKOzg==",
4281
+ "license": "MIT",
4282
+ "dependencies": {
4283
+ "@types/unist": "^3.0.0",
4284
+ "unist-util-is": "^6.0.0",
4285
+ "unist-util-visit-parents": "^6.0.0"
4286
+ },
4287
+ "funding": {
4288
+ "type": "opencollective",
4289
+ "url": "https://opencollective.com/unified"
4290
+ }
4291
+ },
4292
+ "node_modules/unist-util-visit-parents": {
4293
+ "version": "6.0.2",
4294
+ "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.2.tgz",
4295
+ "integrity": "sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==",
4296
+ "license": "MIT",
4297
+ "dependencies": {
4298
+ "@types/unist": "^3.0.0",
4299
+ "unist-util-is": "^6.0.0"
4300
+ },
4301
+ "funding": {
4302
+ "type": "opencollective",
4303
+ "url": "https://opencollective.com/unified"
4304
+ }
4305
+ },
4306
+ "node_modules/update-browserslist-db": {
4307
+ "version": "1.2.3",
4308
+ "funding": [
4309
+ {
4310
+ "type": "opencollective",
4311
+ "url": "https://opencollective.com/browserslist"
4312
+ },
4313
+ {
4314
+ "type": "tidelift",
4315
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
4316
+ },
4317
+ {
4318
+ "type": "github",
4319
+ "url": "https://github.com/sponsors/ai"
4320
+ }
4321
+ ],
4322
+ "license": "MIT",
4323
+ "dependencies": {
4324
+ "escalade": "^3.2.0",
4325
+ "picocolors": "^1.1.1"
4326
+ },
4327
+ "bin": {
4328
+ "update-browserslist-db": "cli.js"
4329
+ },
4330
+ "peerDependencies": {
4331
+ "browserslist": ">= 4.21.0"
4332
+ }
4333
+ },
4334
+ "node_modules/util-deprecate": {
4335
+ "version": "1.0.2",
4336
+ "dev": true,
4337
+ "license": "MIT"
4338
+ },
4339
+ "node_modules/vfile": {
4340
+ "version": "6.0.3",
4341
+ "resolved": "https://registry.npmjs.org/vfile/-/vfile-6.0.3.tgz",
4342
+ "integrity": "sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==",
4343
+ "license": "MIT",
4344
+ "dependencies": {
4345
+ "@types/unist": "^3.0.0",
4346
+ "vfile-message": "^4.0.0"
4347
+ },
4348
+ "funding": {
4349
+ "type": "opencollective",
4350
+ "url": "https://opencollective.com/unified"
4351
+ }
4352
+ },
4353
+ "node_modules/vfile-message": {
4354
+ "version": "4.0.3",
4355
+ "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.3.tgz",
4356
+ "integrity": "sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==",
4357
+ "license": "MIT",
4358
+ "dependencies": {
4359
+ "@types/unist": "^3.0.0",
4360
+ "unist-util-stringify-position": "^4.0.0"
4361
+ },
4362
+ "funding": {
4363
+ "type": "opencollective",
4364
+ "url": "https://opencollective.com/unified"
4365
+ }
4366
+ },
4367
+ "node_modules/vite": {
4368
+ "version": "6.4.3",
4369
+ "resolved": "https://registry.npmjs.org/vite/-/vite-6.4.3.tgz",
4370
+ "integrity": "sha512-NTKlcQjlAK7MlQoyb6LgaqHc8sso/pVyUJYWMws3jg21uTJw/LddqIFPcPqP6PzpgbIcZyKI85sFE4HBrQDA8A==",
4371
+ "license": "MIT",
4372
+ "dependencies": {
4373
+ "esbuild": "^0.25.0",
4374
+ "fdir": "^6.4.4",
4375
+ "picomatch": "^4.0.2",
4376
+ "postcss": "^8.5.3",
4377
+ "rollup": "^4.34.9",
4378
+ "tinyglobby": "^0.2.13"
4379
+ },
4380
+ "bin": {
4381
+ "vite": "bin/vite.js"
4382
+ },
4383
+ "engines": {
4384
+ "node": "^18.0.0 || ^20.0.0 || >=22.0.0"
4385
+ },
4386
+ "funding": {
4387
+ "url": "https://github.com/vitejs/vite?sponsor=1"
4388
+ },
4389
+ "optionalDependencies": {
4390
+ "fsevents": "~2.3.3"
4391
+ },
4392
+ "peerDependencies": {
4393
+ "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0",
4394
+ "jiti": ">=1.21.0",
4395
+ "less": "*",
4396
+ "lightningcss": "^1.21.0",
4397
+ "sass": "*",
4398
+ "sass-embedded": "*",
4399
+ "stylus": "*",
4400
+ "sugarss": "*",
4401
+ "terser": "^5.16.0",
4402
+ "tsx": "^4.8.1",
4403
+ "yaml": "^2.4.2"
4404
+ },
4405
+ "peerDependenciesMeta": {
4406
+ "@types/node": {
4407
+ "optional": true
4408
+ },
4409
+ "jiti": {
4410
+ "optional": true
4411
+ },
4412
+ "less": {
4413
+ "optional": true
4414
+ },
4415
+ "lightningcss": {
4416
+ "optional": true
4417
+ },
4418
+ "sass": {
4419
+ "optional": true
4420
+ },
4421
+ "sass-embedded": {
4422
+ "optional": true
4423
+ },
4424
+ "stylus": {
4425
+ "optional": true
4426
+ },
4427
+ "sugarss": {
4428
+ "optional": true
4429
+ },
4430
+ "terser": {
4431
+ "optional": true
4432
+ },
4433
+ "tsx": {
4434
+ "optional": true
4435
+ },
4436
+ "yaml": {
4437
+ "optional": true
4438
+ }
4439
+ }
4440
+ },
4441
+ "node_modules/vite/node_modules/fdir": {
4442
+ "version": "6.5.0",
4443
+ "license": "MIT",
4444
+ "engines": {
4445
+ "node": ">=12.0.0"
4446
+ },
4447
+ "peerDependencies": {
4448
+ "picomatch": "^3 || ^4"
4449
+ },
4450
+ "peerDependenciesMeta": {
4451
+ "picomatch": {
4452
+ "optional": true
4453
+ }
4454
+ }
4455
+ },
4456
+ "node_modules/vite/node_modules/picomatch": {
4457
+ "version": "4.0.4",
4458
+ "license": "MIT",
4459
+ "engines": {
4460
+ "node": ">=12"
4461
+ },
4462
+ "funding": {
4463
+ "url": "https://github.com/sponsors/jonschlinkert"
4464
+ }
4465
+ },
4466
+ "node_modules/yallist": {
4467
+ "version": "3.1.1",
4468
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
4469
+ "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
4470
+ "license": "ISC"
4471
+ },
4472
+ "node_modules/zwitch": {
4473
+ "version": "2.0.4",
4474
+ "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz",
4475
+ "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==",
4476
+ "license": "MIT",
4477
+ "funding": {
4478
+ "type": "github",
4479
+ "url": "https://github.com/sponsors/wooorm"
4480
+ }
4481
+ },
4482
+ "packages/sdk": {
4483
+ "name": "@notis/sdk",
4484
+ "version": "0.1.0",
4485
+ "dependencies": {
4486
+ "react-markdown": "^10.1.0",
4487
+ "remark-gfm": "^4.0.1"
4488
+ },
4489
+ "devDependencies": {
4490
+ "@types/node": "^20.0.0",
4491
+ "@types/react": "^19.0.0",
4492
+ "@types/react-dom": "^19.0.0",
4493
+ "typescript": "^5.0.0"
4494
+ },
4495
+ "peerDependencies": {
4496
+ "@vitejs/plugin-react": ">=4.0.0",
4497
+ "react": ">=18.0.0",
4498
+ "react-dom": ">=18.0.0",
4499
+ "vite": ">=5.0.0"
4500
+ }
4501
+ },
4502
+ "packages/sdk/node_modules/@types/node": {
4503
+ "version": "20.19.43",
4504
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-20.19.43.tgz",
4505
+ "integrity": "sha512-6oYBAi5ikg4Pl+kGsoYtawUMBT2zZMCvPNF7pVLnHZfd1zf38DRiWn/gT01RYCdUqkv7Fhr+C9ot4/tb+2sVvA==",
4506
+ "dev": true,
4507
+ "license": "MIT",
4508
+ "dependencies": {
4509
+ "undici-types": "~6.21.0"
4510
+ }
4511
+ }
4512
+ }
4513
+ }