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