@notis_ai/cli 0.2.5 → 0.2.7

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