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