@notis_ai/cli 0.2.6 → 0.2.8

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