@promptbook/cli 0.103.0-10 → 0.103.0-100

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 (452) hide show
  1. package/README.md +59 -35
  2. package/apps/agents-server/README.md +3 -0
  3. package/apps/agents-server/TODO.txt +7 -0
  4. package/apps/agents-server/config.ts +128 -0
  5. package/apps/agents-server/next.config.ts +45 -0
  6. package/apps/agents-server/package-lock.json +1163 -0
  7. package/apps/agents-server/package.json +18 -0
  8. package/apps/agents-server/postcss.config.mjs +8 -0
  9. package/apps/agents-server/public/.gitkeep +0 -0
  10. package/apps/agents-server/public/favicon.ico +0 -0
  11. package/apps/agents-server/public/fonts/OpenMoji-black-glyf.woff2 +0 -0
  12. package/apps/agents-server/public/fonts/download-font.js +22 -0
  13. package/apps/agents-server/public/logo-blue-white-256.png +0 -0
  14. package/apps/agents-server/public/sw.js +16 -0
  15. package/apps/agents-server/src/app/AddAgentButton.tsx +41 -0
  16. package/apps/agents-server/src/app/[agentName]/[...rest]/page.tsx +11 -0
  17. package/apps/agents-server/src/app/[agentName]/page.tsx +1 -0
  18. package/apps/agents-server/src/app/actions.ts +51 -0
  19. package/apps/agents-server/src/app/admin/api-tokens/ApiTokensClient.tsx +186 -0
  20. package/apps/agents-server/src/app/admin/api-tokens/page.tsx +13 -0
  21. package/apps/agents-server/src/app/admin/chat-feedback/ChatFeedbackClient.tsx +614 -0
  22. package/apps/agents-server/src/app/admin/chat-feedback/page.tsx +22 -0
  23. package/apps/agents-server/src/app/admin/chat-history/ChatHistoryClient.tsx +634 -0
  24. package/apps/agents-server/src/app/admin/chat-history/page.tsx +21 -0
  25. package/apps/agents-server/src/app/admin/metadata/MetadataClient.tsx +477 -0
  26. package/apps/agents-server/src/app/admin/metadata/page.tsx +13 -0
  27. package/apps/agents-server/src/app/admin/models/page.tsx +22 -0
  28. package/apps/agents-server/src/app/admin/users/[userId]/UserDetailClient.tsx +131 -0
  29. package/apps/agents-server/src/app/admin/users/[userId]/page.tsx +21 -0
  30. package/apps/agents-server/src/app/admin/users/page.tsx +18 -0
  31. package/apps/agents-server/src/app/agents/[agentName]/AgentChatWrapper.tsx +78 -0
  32. package/apps/agents-server/src/app/agents/[agentName]/AgentOptionsMenu.tsx +216 -0
  33. package/apps/agents-server/src/app/agents/[agentName]/AgentProfileChat.tsx +78 -0
  34. package/apps/agents-server/src/app/agents/[agentName]/AgentProfileView.tsx +233 -0
  35. package/apps/agents-server/src/app/agents/[agentName]/AgentQrCode.tsx +55 -0
  36. package/apps/agents-server/src/app/agents/[agentName]/AgentUrlCopy.tsx +40 -0
  37. package/apps/agents-server/src/app/agents/[agentName]/ClearAgentChatFeedbackButton.tsx +63 -0
  38. package/apps/agents-server/src/app/agents/[agentName]/ClearAgentChatHistoryButton.tsx +63 -0
  39. package/apps/agents-server/src/app/agents/[agentName]/CloneAgentButton.tsx +41 -0
  40. package/apps/agents-server/src/app/agents/[agentName]/CopyField.tsx +44 -0
  41. package/apps/agents-server/src/app/agents/[agentName]/InstallPwaButton.tsx +74 -0
  42. package/apps/agents-server/src/app/agents/[agentName]/QrCodeModal.tsx +90 -0
  43. package/apps/agents-server/src/app/agents/[agentName]/ServiceWorkerRegister.tsx +24 -0
  44. package/apps/agents-server/src/app/agents/[agentName]/TODO.txt +1 -0
  45. package/apps/agents-server/src/app/agents/[agentName]/_utils.ts +19 -0
  46. package/apps/agents-server/src/app/agents/[agentName]/agentLinks.tsx +80 -0
  47. package/apps/agents-server/src/app/agents/[agentName]/api/agents/route.ts +67 -0
  48. package/apps/agents-server/src/app/agents/[agentName]/api/book/route.ts +88 -0
  49. package/apps/agents-server/src/app/agents/[agentName]/api/book/test.http +37 -0
  50. package/apps/agents-server/src/app/agents/[agentName]/api/chat/route.ts +174 -0
  51. package/apps/agents-server/src/app/agents/[agentName]/api/feedback/route.ts +54 -0
  52. package/apps/agents-server/src/app/agents/[agentName]/api/mcp/route.ts +203 -0
  53. package/apps/agents-server/src/app/agents/[agentName]/api/modelRequirements/TODO.txt +1 -0
  54. package/apps/agents-server/src/app/agents/[agentName]/api/modelRequirements/route.ts +55 -0
  55. package/apps/agents-server/src/app/agents/[agentName]/api/modelRequirements/systemMessage/route.ts +47 -0
  56. package/apps/agents-server/src/app/agents/[agentName]/api/openai/chat/completions/route.ts +10 -0
  57. package/apps/agents-server/src/app/agents/[agentName]/api/openai/models/route.ts +93 -0
  58. package/apps/agents-server/src/app/agents/[agentName]/api/openai/v1/chat/completions/route.ts +10 -0
  59. package/apps/agents-server/src/app/agents/[agentName]/api/openai/v1/models/route.ts +93 -0
  60. package/apps/agents-server/src/app/agents/[agentName]/api/openrouter/chat/completions/route.ts +10 -0
  61. package/apps/agents-server/src/app/agents/[agentName]/api/profile/route.ts +76 -0
  62. package/apps/agents-server/src/app/agents/[agentName]/api/voice/route.ts +181 -0
  63. package/apps/agents-server/src/app/agents/[agentName]/book/BookEditorWrapper.tsx +139 -0
  64. package/apps/agents-server/src/app/agents/[agentName]/book/page.tsx +35 -0
  65. package/apps/agents-server/src/app/agents/[agentName]/book+chat/AgentBookAndChat.tsx +75 -0
  66. package/apps/agents-server/src/app/agents/[agentName]/book+chat/AgentBookAndChatComponent.tsx.todo +160 -0
  67. package/apps/agents-server/src/app/agents/[agentName]/book+chat/page.tsx +32 -0
  68. package/apps/agents-server/src/app/agents/[agentName]/book+chat/page.tsx.todo +21 -0
  69. package/apps/agents-server/src/app/agents/[agentName]/chat/AgentChatWrapper.tsx +68 -0
  70. package/apps/agents-server/src/app/agents/[agentName]/chat/page.tsx +33 -0
  71. package/apps/agents-server/src/app/agents/[agentName]/generateAgentMetadata.ts +42 -0
  72. package/apps/agents-server/src/app/agents/[agentName]/history/RestoreVersionButton.tsx +46 -0
  73. package/apps/agents-server/src/app/agents/[agentName]/history/actions.ts +12 -0
  74. package/apps/agents-server/src/app/agents/[agentName]/history/page.tsx +62 -0
  75. package/apps/agents-server/src/app/agents/[agentName]/images/icon-256.png/route.tsx +80 -0
  76. package/apps/agents-server/src/app/agents/[agentName]/images/screenshot-fullhd.png/route.tsx +92 -0
  77. package/apps/agents-server/src/app/agents/[agentName]/images/screenshot-phone.png/route.tsx +92 -0
  78. package/apps/agents-server/src/app/agents/[agentName]/integration/SdkCodeTabs.tsx +31 -0
  79. package/apps/agents-server/src/app/agents/[agentName]/integration/page.tsx +302 -0
  80. package/apps/agents-server/src/app/agents/[agentName]/links/page.tsx +182 -0
  81. package/apps/agents-server/src/app/agents/[agentName]/opengraph-image.tsx +102 -0
  82. package/apps/agents-server/src/app/agents/[agentName]/page.tsx +159 -0
  83. package/apps/agents-server/src/app/agents/[agentName]/website-integration/page.tsx +61 -0
  84. package/apps/agents-server/src/app/agents/page.tsx +11 -0
  85. package/apps/agents-server/src/app/api/agents/[agentName]/clone/route.ts +47 -0
  86. package/apps/agents-server/src/app/api/agents/[agentName]/route.ts +19 -0
  87. package/apps/agents-server/src/app/api/agents/route.ts +43 -0
  88. package/apps/agents-server/src/app/api/api-tokens/route.ts +76 -0
  89. package/apps/agents-server/src/app/api/auth/change-password/route.ts +75 -0
  90. package/apps/agents-server/src/app/api/auth/login/route.ts +27 -0
  91. package/apps/agents-server/src/app/api/auth/logout/route.ts +7 -0
  92. package/apps/agents-server/src/app/api/chat/route.ts +32 -0
  93. package/apps/agents-server/src/app/api/chat-feedback/[id]/route.ts +38 -0
  94. package/apps/agents-server/src/app/api/chat-feedback/export/route.ts +55 -0
  95. package/apps/agents-server/src/app/api/chat-feedback/route.ts +157 -0
  96. package/apps/agents-server/src/app/api/chat-history/[id]/route.ts +37 -0
  97. package/apps/agents-server/src/app/api/chat-history/export/route.ts +55 -0
  98. package/apps/agents-server/src/app/api/chat-history/route.ts +147 -0
  99. package/apps/agents-server/src/app/api/chat-streaming/route.ts +48 -0
  100. package/apps/agents-server/src/app/api/embed.js/route.ts +93 -0
  101. package/apps/agents-server/src/app/api/federated-agents/route.ts +17 -0
  102. package/apps/agents-server/src/app/api/long-running-task/route.ts +7 -0
  103. package/apps/agents-server/src/app/api/long-streaming/route.ts +20 -0
  104. package/apps/agents-server/src/app/api/metadata/route.ts +116 -0
  105. package/apps/agents-server/src/app/api/openai/v1/chat/completions/route.ts +6 -0
  106. package/apps/agents-server/src/app/api/openai/v1/models/route.ts +65 -0
  107. package/apps/agents-server/src/app/api/upload/route.ts +83 -0
  108. package/apps/agents-server/src/app/api/users/[username]/route.ts +75 -0
  109. package/apps/agents-server/src/app/api/users/route.ts +71 -0
  110. package/apps/agents-server/src/app/docs/[docId]/page.tsx +43 -0
  111. package/apps/agents-server/src/app/docs/page.tsx +59 -0
  112. package/apps/agents-server/src/app/embed/page.tsx +24 -0
  113. package/apps/agents-server/src/app/globals.css +276 -0
  114. package/apps/agents-server/src/app/layout.tsx +124 -0
  115. package/apps/agents-server/src/app/manifest.ts +109 -0
  116. package/apps/agents-server/src/app/not-found.tsx +5 -0
  117. package/apps/agents-server/src/app/page.tsx +96 -0
  118. package/apps/agents-server/src/app/recycle-bin/RestoreAgentButton.tsx +40 -0
  119. package/apps/agents-server/src/app/recycle-bin/actions.ts +27 -0
  120. package/apps/agents-server/src/app/recycle-bin/page.tsx +58 -0
  121. package/apps/agents-server/src/app/restricted/page.tsx +33 -0
  122. package/apps/agents-server/src/app/test/og-image/README.md +1 -0
  123. package/apps/agents-server/src/app/test/og-image/opengraph-image.tsx +37 -0
  124. package/apps/agents-server/src/app/test/og-image/page.tsx +22 -0
  125. package/apps/agents-server/src/components/Auth/AuthControls.tsx +123 -0
  126. package/apps/agents-server/src/components/ChangePasswordDialog/ChangePasswordDialog.tsx +41 -0
  127. package/apps/agents-server/src/components/ChangePasswordForm/ChangePasswordForm.tsx +159 -0
  128. package/apps/agents-server/src/components/DocumentationContent/DocumentationContent.tsx +87 -0
  129. package/apps/agents-server/src/components/ErrorPage/ErrorPage.tsx +33 -0
  130. package/apps/agents-server/src/components/Footer/Footer.tsx +175 -0
  131. package/apps/agents-server/src/components/ForbiddenPage/ForbiddenPage.tsx +15 -0
  132. package/apps/agents-server/src/components/Header/Header.tsx +593 -0
  133. package/apps/agents-server/src/components/Homepage/AgentCard.tsx +60 -0
  134. package/apps/agents-server/src/components/Homepage/AgentsList.tsx +58 -0
  135. package/apps/agents-server/src/components/Homepage/Card.tsx +18 -0
  136. package/apps/agents-server/src/components/Homepage/ExternalAgentsSection.tsx +21 -0
  137. package/apps/agents-server/src/components/Homepage/ExternalAgentsSectionClient.tsx +183 -0
  138. package/apps/agents-server/src/components/Homepage/ModelCard.tsx +29 -0
  139. package/apps/agents-server/src/components/Homepage/ModelsSection.tsx +75 -0
  140. package/apps/agents-server/src/components/Homepage/Section.tsx +17 -0
  141. package/apps/agents-server/src/components/Homepage/TechInfoCard.tsx +20 -0
  142. package/apps/agents-server/src/components/LayoutWrapper/LayoutWrapper.tsx +53 -0
  143. package/apps/agents-server/src/components/LoginDialog/LoginDialog.tsx +41 -0
  144. package/apps/agents-server/src/components/LoginForm/LoginForm.tsx +109 -0
  145. package/apps/agents-server/src/components/NotFoundPage/NotFoundPage.tsx +17 -0
  146. package/apps/agents-server/src/components/OpenMojiIcon/OpenMojiIcon.tsx +20 -0
  147. package/apps/agents-server/src/components/Portal/Portal.tsx +38 -0
  148. package/apps/agents-server/src/components/PrintButton/PrintButton.tsx +18 -0
  149. package/apps/agents-server/src/components/PrintHeader/PrintHeader.tsx +18 -0
  150. package/apps/agents-server/src/components/UsersList/UsersList.tsx +141 -0
  151. package/apps/agents-server/src/components/UsersList/useUsersAdmin.ts +139 -0
  152. package/apps/agents-server/src/components/VercelDeploymentCard/VercelDeploymentCard.tsx +55 -0
  153. package/apps/agents-server/src/database/$getTableName.ts +18 -0
  154. package/apps/agents-server/src/database/$provideSupabase.ts +29 -0
  155. package/apps/agents-server/src/database/$provideSupabaseForBrowser.ts +41 -0
  156. package/apps/agents-server/src/database/$provideSupabaseForServer.ts +48 -0
  157. package/apps/agents-server/src/database/$provideSupabaseForWorker.ts +43 -0
  158. package/apps/agents-server/src/database/getMetadata.ts +31 -0
  159. package/apps/agents-server/src/database/metadataDefaults.ts +69 -0
  160. package/apps/agents-server/src/database/migrate.ts +131 -0
  161. package/apps/agents-server/src/database/migrations/2025-11-0001-initial-schema.sql +163 -0
  162. package/apps/agents-server/src/database/migrations/2025-11-0002-metadata-table.sql +16 -0
  163. package/apps/agents-server/src/database/migrations/2025-12-0010-llm-cache.sql +12 -0
  164. package/apps/agents-server/src/database/migrations/2025-12-0060-api-tokens.sql +13 -0
  165. package/apps/agents-server/src/database/migrations/2025-12-0070-chat-history-source.sql +2 -0
  166. package/apps/agents-server/src/database/schema.ts +308 -0
  167. package/apps/agents-server/src/deamons/longRunningTask.ts +37 -0
  168. package/apps/agents-server/src/middleware.ts +301 -0
  169. package/apps/agents-server/src/tools/$provideAgentCollectionForServer.ts +54 -0
  170. package/apps/agents-server/src/tools/$provideCdnForServer.ts +24 -0
  171. package/apps/agents-server/src/tools/$provideExecutionToolsForServer.ts +117 -0
  172. package/apps/agents-server/src/tools/$provideOpenAiAssistantExecutionToolsForServer.ts +35 -0
  173. package/apps/agents-server/src/tools/$provideServer.ts +39 -0
  174. package/apps/agents-server/src/utils/auth.ts +33 -0
  175. package/apps/agents-server/src/utils/authenticateUser.ts +42 -0
  176. package/apps/agents-server/src/utils/cache/SupabaseCacheStorage.ts +55 -0
  177. package/apps/agents-server/src/utils/cdn/classes/VercelBlobStorage.ts +63 -0
  178. package/apps/agents-server/src/utils/cdn/interfaces/IFilesStorage.ts +32 -0
  179. package/apps/agents-server/src/utils/cdn/interfaces/IStorage.ts +14 -0
  180. package/apps/agents-server/src/utils/cdn/utils/getUserFileCdnKey.ts +28 -0
  181. package/apps/agents-server/src/utils/cdn/utils/nameToSubfolderPath.ts +9 -0
  182. package/apps/agents-server/src/utils/cdn/utils/nextRequestToNodeRequest.ts +27 -0
  183. package/apps/agents-server/src/utils/chatFeedbackAdmin.ts +96 -0
  184. package/apps/agents-server/src/utils/chatHistoryAdmin.ts +96 -0
  185. package/apps/agents-server/src/utils/convertToCsv.ts +31 -0
  186. package/apps/agents-server/src/utils/getCurrentUser.ts +32 -0
  187. package/apps/agents-server/src/utils/getEffectiveFederatedServers.ts +22 -0
  188. package/apps/agents-server/src/utils/getFederatedAgents.ts +89 -0
  189. package/apps/agents-server/src/utils/getFederatedServersFromMetadata.ts +10 -0
  190. package/apps/agents-server/src/utils/getVisibleCommitmentDefinitions.ts +12 -0
  191. package/apps/agents-server/src/utils/handleChatCompletion.ts +355 -0
  192. package/apps/agents-server/src/utils/isIpAllowed.ts +101 -0
  193. package/apps/agents-server/src/utils/isUserAdmin.ts +31 -0
  194. package/apps/agents-server/src/utils/resolveInheritedAgentSource.ts +100 -0
  195. package/apps/agents-server/src/utils/session.ts +50 -0
  196. package/apps/agents-server/src/utils/validateApiKey.ts +128 -0
  197. package/apps/agents-server/src/utils/validators/validateMimeType.ts +24 -0
  198. package/apps/agents-server/tailwind.config.ts +26 -0
  199. package/apps/agents-server/tsconfig.json +29 -0
  200. package/apps/agents-server/vercel.json +7 -0
  201. package/esm/index.es.js +5114 -383
  202. package/esm/index.es.js.map +1 -1
  203. package/esm/typings/books/index.d.ts +0 -81
  204. package/esm/typings/servers.d.ts +9 -7
  205. package/esm/typings/src/_packages/browser.index.d.ts +6 -0
  206. package/esm/typings/src/_packages/cli.index.d.ts +4 -0
  207. package/esm/typings/src/_packages/components.index.d.ts +20 -8
  208. package/esm/typings/src/_packages/core.index.d.ts +58 -18
  209. package/esm/typings/src/_packages/node.index.d.ts +2 -2
  210. package/esm/typings/src/_packages/remote-server.index.d.ts +2 -0
  211. package/esm/typings/src/_packages/types.index.d.ts +58 -8
  212. package/esm/typings/src/_packages/utils.index.d.ts +6 -0
  213. package/esm/typings/src/_packages/wizard.index.d.ts +4 -0
  214. package/esm/typings/src/book-2.0/agent-source/AgentBasicInformation.d.ts +19 -5
  215. package/esm/typings/src/book-2.0/agent-source/AgentModelRequirements.d.ts +17 -1
  216. package/esm/typings/src/book-2.0/agent-source/AgentSourceParseResult.d.ts +3 -2
  217. package/esm/typings/src/book-2.0/agent-source/computeAgentHash.d.ts +8 -0
  218. package/esm/typings/src/book-2.0/agent-source/createCommitmentRegex.d.ts +3 -3
  219. package/esm/typings/src/book-2.0/agent-source/createDefaultAgentName.d.ts +8 -0
  220. package/esm/typings/src/book-2.0/agent-source/normalizeAgentName.d.ts +9 -0
  221. package/esm/typings/src/book-2.0/agent-source/padBook.d.ts +18 -0
  222. package/esm/typings/src/book-2.0/agent-source/parseAgentSourceWithCommitments.d.ts +1 -1
  223. package/esm/typings/src/book-2.0/agent-source/string_book.d.ts +3 -0
  224. package/esm/typings/src/book-components/AvatarProfile/AvatarProfile/AvatarProfile.d.ts +6 -1
  225. package/esm/typings/src/book-components/BookEditor/BookEditor.d.ts +77 -7
  226. package/esm/typings/src/book-components/BookEditor/BookEditorActionbar.d.ts +14 -0
  227. package/esm/typings/src/book-components/Chat/AgentChat/AgentChat.d.ts +14 -0
  228. package/esm/typings/src/book-components/Chat/AgentChat/AgentChatProps.d.ts +13 -0
  229. package/esm/typings/src/book-components/Chat/Chat/ChatProps.d.ts +10 -0
  230. package/esm/typings/src/book-components/Chat/LlmChat/LlmChatProps.d.ts +5 -0
  231. package/esm/typings/src/book-components/Chat/MarkdownContent/MarkdownContent.d.ts +15 -0
  232. package/esm/typings/src/book-components/Chat/MockedChat/MockedChat.d.ts +5 -0
  233. package/esm/typings/src/book-components/Chat/save/_common/ChatSaveFormatDefinition.d.ts +1 -1
  234. package/esm/typings/src/book-components/Chat/save/html/htmlSaveFormatDefinition.d.ts +1 -0
  235. package/esm/typings/src/book-components/Chat/save/pdf/pdfSaveFormatDefinition.d.ts +4 -0
  236. package/esm/typings/src/book-components/Chat/types/ChatParticipant.d.ts +1 -1
  237. package/esm/typings/src/book-components/PromptbookAgent/PromptbookAgent.d.ts +29 -0
  238. package/esm/typings/src/book-components/Qr/BrandedQrCode.d.ts +18 -0
  239. package/esm/typings/src/book-components/Qr/GenericQrCode.d.ts +10 -0
  240. package/esm/typings/src/book-components/Qr/PromptbookQrCode.d.ts +18 -0
  241. package/esm/typings/src/book-components/Qr/useQrCode.d.ts +15 -0
  242. package/esm/typings/src/book-components/_common/Dropdown/Dropdown.d.ts +15 -0
  243. package/esm/typings/src/book-components/_common/HamburgerMenu/HamburgerMenu.d.ts +12 -0
  244. package/esm/typings/src/book-components/_common/Modal/Modal.d.ts +2 -2
  245. package/esm/typings/src/book-components/_common/Tooltip/Tooltip.d.ts +47 -0
  246. package/esm/typings/src/book-components/icons/AboutIcon.d.ts +9 -0
  247. package/esm/typings/src/book-components/icons/CloseIcon.d.ts +4 -8
  248. package/esm/typings/src/book-components/icons/DownloadIcon.d.ts +9 -0
  249. package/esm/typings/src/book-components/icons/ExitFullscreenIcon.d.ts +7 -0
  250. package/esm/typings/src/book-components/icons/FullscreenIcon.d.ts +7 -0
  251. package/esm/typings/src/book-components/icons/MenuIcon.d.ts +12 -0
  252. package/esm/typings/src/book-components/icons/MicIcon.d.ts +8 -0
  253. package/esm/typings/src/cli/cli-commands/_boilerplate.d.ts +2 -1
  254. package/esm/typings/src/cli/cli-commands/about.d.ts +3 -1
  255. package/esm/typings/src/cli/cli-commands/hello.d.ts +2 -1
  256. package/esm/typings/src/cli/cli-commands/list-models.d.ts +2 -1
  257. package/esm/typings/src/cli/cli-commands/list-scrapers.d.ts +2 -1
  258. package/esm/typings/src/cli/cli-commands/login.d.ts +2 -1
  259. package/esm/typings/src/cli/cli-commands/make.d.ts +2 -1
  260. package/esm/typings/src/cli/cli-commands/prettify.d.ts +2 -1
  261. package/esm/typings/src/cli/cli-commands/run.d.ts +2 -1
  262. package/esm/typings/src/cli/cli-commands/{start-server.d.ts → start-agents-server.d.ts} +3 -2
  263. package/esm/typings/src/cli/cli-commands/start-pipelines-server.d.ts +15 -0
  264. package/esm/typings/src/cli/cli-commands/test-command.d.ts +2 -1
  265. package/esm/typings/src/cli/common/$addGlobalOptionsToCommand.d.ts +2 -1
  266. package/esm/typings/src/collection/agent-collection/AgentCollection.d.ts +12 -0
  267. package/esm/typings/src/collection/agent-collection/constructors/agent-collection-in-supabase/AgentCollectionInSupabase.d.ts +75 -0
  268. package/esm/typings/src/collection/agent-collection/constructors/agent-collection-in-supabase/AgentCollectionInSupabaseOptions.d.ts +10 -0
  269. package/esm/typings/src/collection/agent-collection/constructors/agent-collection-in-supabase/AgentsDatabaseSchema.d.ts +154 -0
  270. package/esm/typings/src/collection/{PipelineCollection.d.ts → pipeline-collection/PipelineCollection.d.ts} +7 -3
  271. package/esm/typings/src/collection/{SimplePipelineCollection.d.ts → pipeline-collection/SimplePipelineCollection.d.ts} +5 -5
  272. package/esm/typings/src/collection/{constructors/createCollectionFromDirectory.d.ts → pipeline-collection/constructors/createPipelineCollectionFromDirectory.d.ts} +8 -11
  273. package/esm/typings/src/collection/pipeline-collection/constructors/createPipelineCollectionFromJson.d.ts +13 -0
  274. package/esm/typings/src/collection/{constructors/createCollectionFromPromise.d.ts → pipeline-collection/constructors/createPipelineCollectionFromPromise.d.ts} +6 -5
  275. package/esm/typings/src/collection/pipeline-collection/constructors/createPipelineCollectionFromPromise.test.d.ts +1 -0
  276. package/esm/typings/src/collection/{constructors/createCollectionFromUrl.d.ts → pipeline-collection/constructors/createPipelineCollectionFromUrl.d.ts} +3 -3
  277. package/esm/typings/src/collection/{constructors/createSubcollection.d.ts → pipeline-collection/constructors/createPipelineSubcollection.d.ts} +3 -3
  278. package/esm/typings/src/collection/pipeline-collection/pipelineCollectionToJson.d.ts +13 -0
  279. package/esm/typings/src/commands/_common/types/CommandParser.d.ts +4 -5
  280. package/esm/typings/src/{book-2.0/commitments → commitments}/ACTION/ACTION.d.ts +5 -1
  281. package/esm/typings/src/commitments/CLOSED/CLOSED.d.ts +35 -0
  282. package/esm/typings/src/commitments/COMPONENT/COMPONENT.d.ts +28 -0
  283. package/esm/typings/src/{book-2.0/commitments → commitments}/DELETE/DELETE.d.ts +5 -1
  284. package/esm/typings/src/{book-2.0/commitments → commitments}/FORMAT/FORMAT.d.ts +5 -1
  285. package/esm/typings/src/commitments/FROM/FROM.d.ts +34 -0
  286. package/esm/typings/src/{book-2.0/commitments → commitments}/GOAL/GOAL.d.ts +5 -1
  287. package/esm/typings/src/{book-2.0/commitments → commitments}/KNOWLEDGE/KNOWLEDGE.d.ts +5 -5
  288. package/esm/typings/src/commitments/LANGUAGE/LANGUAGE.d.ts +35 -0
  289. package/esm/typings/src/{book-2.0/commitments → commitments}/MEMORY/MEMORY.d.ts +5 -1
  290. package/esm/typings/src/commitments/MESSAGE/AgentMessageCommitmentDefinition.d.ts +32 -0
  291. package/esm/typings/src/commitments/MESSAGE/InitialMessageCommitmentDefinition.d.ts +32 -0
  292. package/esm/typings/src/{book-2.0/commitments → commitments}/MESSAGE/MESSAGE.d.ts +5 -1
  293. package/esm/typings/src/commitments/MESSAGE/UserMessageCommitmentDefinition.d.ts +32 -0
  294. package/esm/typings/src/{book-2.0/commitments → commitments}/META/META.d.ts +5 -1
  295. package/esm/typings/src/commitments/META_COLOR/META_COLOR.d.ts +48 -0
  296. package/esm/typings/src/commitments/META_FONT/META_FONT.d.ts +42 -0
  297. package/esm/typings/src/{book-2.0/commitments → commitments}/META_IMAGE/META_IMAGE.d.ts +5 -1
  298. package/esm/typings/src/{book-2.0/commitments → commitments}/META_LINK/META_LINK.d.ts +5 -1
  299. package/esm/typings/src/{book-2.0/commitments → commitments}/MODEL/MODEL.d.ts +5 -1
  300. package/esm/typings/src/{book-2.0/commitments → commitments}/NOTE/NOTE.d.ts +5 -1
  301. package/esm/typings/src/commitments/OPEN/OPEN.d.ts +35 -0
  302. package/esm/typings/src/{book-2.0/commitments → commitments}/PERSONA/PERSONA.d.ts +5 -1
  303. package/esm/typings/src/{book-2.0/commitments → commitments}/RULE/RULE.d.ts +5 -1
  304. package/esm/typings/src/{book-2.0/commitments → commitments}/SAMPLE/SAMPLE.d.ts +5 -1
  305. package/esm/typings/src/{book-2.0/commitments → commitments}/SCENARIO/SCENARIO.d.ts +5 -1
  306. package/esm/typings/src/{book-2.0/commitments → commitments}/STYLE/STYLE.d.ts +5 -1
  307. package/esm/typings/src/commitments/USE/USE.d.ts +53 -0
  308. package/esm/typings/src/commitments/USE_BROWSER/USE_BROWSER.d.ts +38 -0
  309. package/esm/typings/src/commitments/USE_BROWSER/USE_BROWSER.test.d.ts +1 -0
  310. package/esm/typings/src/commitments/USE_MCP/USE_MCP.d.ts +37 -0
  311. package/esm/typings/src/commitments/USE_SEARCH_ENGINE/USE_SEARCH_ENGINE.d.ts +38 -0
  312. package/esm/typings/src/{book-2.0/commitments → commitments}/_base/BaseCommitmentDefinition.d.ts +8 -2
  313. package/esm/typings/src/{book-2.0/commitments → commitments}/_base/CommitmentDefinition.d.ts +6 -1
  314. package/esm/typings/src/{book-2.0/commitments → commitments}/_base/NotYetImplementedCommitmentDefinition.d.ts +5 -1
  315. package/esm/typings/src/{book-2.0/commitments → commitments}/_base/createEmptyAgentModelRequirements.d.ts +1 -1
  316. package/esm/typings/src/commitments/index.d.ts +93 -0
  317. package/esm/typings/src/config.d.ts +24 -3
  318. package/esm/typings/src/conversion/validation/validatePipeline.d.ts +2 -0
  319. package/esm/typings/src/errors/0-index.d.ts +6 -0
  320. package/esm/typings/src/errors/DatabaseError.d.ts +12 -0
  321. package/esm/typings/src/errors/NotAllowed.d.ts +9 -0
  322. package/esm/typings/src/errors/WrappedError.d.ts +2 -2
  323. package/esm/typings/src/execution/AvailableModel.d.ts +1 -0
  324. package/esm/typings/src/execution/Executables.d.ts +3 -0
  325. package/esm/typings/src/execution/ExecutionTask.d.ts +12 -3
  326. package/esm/typings/src/execution/ExecutionTools.d.ts +5 -0
  327. package/esm/typings/src/execution/FilesystemTools.d.ts +1 -1
  328. package/esm/typings/src/execution/LlmExecutionTools.d.ts +21 -1
  329. package/esm/typings/src/execution/createPipelineExecutor/10-executePipeline.d.ts +5 -0
  330. package/esm/typings/src/execution/createPipelineExecutor/20-executeTask.d.ts +5 -0
  331. package/esm/typings/src/execution/createPipelineExecutor/30-executeFormatSubvalues.d.ts +5 -0
  332. package/esm/typings/src/execution/createPipelineExecutor/40-executeAttempts.d.ts +5 -0
  333. package/esm/typings/src/execution/utils/usage-constants.d.ts +4 -124
  334. package/esm/typings/src/execution/utils/validatePromptResult.d.ts +2 -0
  335. package/esm/typings/src/high-level-abstractions/_common/HighLevelAbstraction.d.ts +2 -1
  336. package/esm/typings/src/llm-providers/_common/register/$provideLlmToolsForWizardOrCli.d.ts +2 -2
  337. package/esm/typings/src/llm-providers/_common/register/$registeredLlmToolsMessage.d.ts +2 -1
  338. package/esm/typings/src/llm-providers/_common/register/LlmToolsMetadata.d.ts +1 -1
  339. package/esm/typings/src/llm-providers/_common/utils/assertUniqueModels.d.ts +12 -0
  340. package/esm/typings/src/llm-providers/_multiple/getSingleLlmExecutionTools.d.ts +1 -0
  341. package/esm/typings/src/llm-providers/_multiple/joinLlmExecutionTools.d.ts +1 -0
  342. package/esm/typings/src/llm-providers/agent/Agent.d.ts +70 -0
  343. package/esm/typings/src/llm-providers/agent/AgentLlmExecutionTools.d.ts +26 -4
  344. package/esm/typings/src/llm-providers/agent/AgentOptions.d.ts +19 -0
  345. package/esm/typings/src/llm-providers/agent/CreateAgentLlmExecutionToolsOptions.d.ts +17 -0
  346. package/esm/typings/src/llm-providers/agent/RemoteAgent.d.ts +50 -0
  347. package/esm/typings/src/llm-providers/agent/RemoteAgentOptions.d.ts +11 -0
  348. package/esm/typings/src/llm-providers/agent/createAgentLlmExecutionTools.d.ts +1 -19
  349. package/esm/typings/src/llm-providers/anthropic-claude/anthropic-claude-models.d.ts +1 -1
  350. package/esm/typings/src/llm-providers/google/google-models.d.ts +1 -1
  351. package/esm/typings/src/llm-providers/openai/OpenAiAssistantExecutionTools.d.ts +60 -2
  352. package/esm/typings/src/llm-providers/openai/OpenAiAssistantExecutionToolsOptions.d.ts +7 -1
  353. package/esm/typings/src/llm-providers/openai/openai-models.d.ts +1 -1
  354. package/esm/typings/src/llm-providers/openai/openai-models.test.d.ts +4 -0
  355. package/esm/typings/src/other/templates/getTemplatesPipelineCollection.d.ts +1 -1
  356. package/esm/typings/src/pipeline/validatePipelineString.d.ts +2 -0
  357. package/esm/typings/src/playground/permanent/_boilerplate.d.ts +5 -0
  358. package/esm/typings/src/playground/permanent/agent-with-browser-playground.d.ts +5 -0
  359. package/esm/typings/src/prepare/PrepareAndScrapeOptions.d.ts +1 -0
  360. package/esm/typings/src/remote-server/startAgentServer.d.ts +26 -0
  361. package/esm/typings/src/remote-server/startRemoteServer.d.ts +4 -1
  362. package/esm/typings/src/remote-server/types/RemoteServerOptions.d.ts +3 -8
  363. package/esm/typings/src/scrapers/_boilerplate/createBoilerplateScraper.d.ts +1 -12
  364. package/esm/typings/src/scrapers/_boilerplate/register-metadata.d.ts +1 -9
  365. package/esm/typings/src/scrapers/document/createDocumentScraper.d.ts +1 -12
  366. package/esm/typings/src/scrapers/document/register-metadata.d.ts +1 -9
  367. package/esm/typings/src/scrapers/document-legacy/createLegacyDocumentScraper.d.ts +1 -12
  368. package/esm/typings/src/scrapers/document-legacy/register-metadata.d.ts +1 -9
  369. package/esm/typings/src/scrapers/markdown/createMarkdownScraper.d.ts +1 -12
  370. package/esm/typings/src/scrapers/markdown/register-metadata.d.ts +1 -9
  371. package/esm/typings/src/scrapers/markitdown/createMarkitdownScraper.d.ts +1 -12
  372. package/esm/typings/src/scrapers/markitdown/register-metadata.d.ts +1 -9
  373. package/esm/typings/src/scrapers/pdf/createPdfScraper.d.ts +1 -12
  374. package/esm/typings/src/scrapers/pdf/register-metadata.d.ts +1 -9
  375. package/esm/typings/src/scrapers/website/createWebsiteScraper.d.ts +1 -12
  376. package/esm/typings/src/scrapers/website/register-metadata.d.ts +1 -9
  377. package/esm/typings/src/storage/_common/PromptbookStorage.d.ts +1 -0
  378. package/esm/typings/src/storage/env-storage/$EnvStorage.d.ts +2 -1
  379. package/esm/typings/src/transpilers/_common/BookTranspiler.d.ts +33 -0
  380. package/esm/typings/src/transpilers/_common/BookTranspilerOptions.d.ts +18 -0
  381. package/esm/typings/src/transpilers/_common/register/$bookTranspilersRegister.d.ts +15 -0
  382. package/esm/typings/src/transpilers/formatted-book-in-markdown/FormattedBookInMarkdownTranspiler.d.ts +16 -0
  383. package/esm/typings/src/transpilers/formatted-book-in-markdown/register.d.ts +15 -0
  384. package/esm/typings/src/transpilers/openai-sdk/OpenAiSdkTranspiler.d.ts +16 -0
  385. package/esm/typings/src/transpilers/openai-sdk/OpenAiSdkTranspiler.test.d.ts +1 -0
  386. package/esm/typings/src/transpilers/openai-sdk/playground/playground.d.ts +5 -0
  387. package/esm/typings/src/transpilers/openai-sdk/register.d.ts +15 -0
  388. package/esm/typings/src/types/LlmCall.d.ts +20 -0
  389. package/esm/typings/src/types/Updatable.d.ts +19 -0
  390. package/esm/typings/src/types/typeAliases.d.ts +32 -2
  391. package/esm/typings/src/utils/color/$randomColor.d.ts +1 -0
  392. package/esm/typings/src/utils/color/Color.d.ts +15 -0
  393. package/esm/typings/src/utils/color/Color.test.d.ts +1 -0
  394. package/esm/typings/src/utils/color/css-colors.d.ts +1 -0
  395. package/esm/typings/src/utils/color/internal-utils/checkChannelValue.d.ts +0 -3
  396. package/esm/typings/src/utils/color/operators/darken.d.ts +1 -1
  397. package/esm/typings/src/utils/color/operators/grayscale.d.ts +1 -1
  398. package/esm/typings/src/utils/color/operators/lighten.d.ts +1 -1
  399. package/esm/typings/src/utils/color/operators/mixWithColor.d.ts +1 -1
  400. package/esm/typings/src/utils/color/operators/saturate.d.ts +1 -1
  401. package/esm/typings/src/utils/environment/$detectRuntimeEnvironment.d.ts +16 -0
  402. package/esm/typings/src/utils/environment/$getGlobalScope.d.ts +2 -2
  403. package/esm/typings/src/utils/execCommand/$execCommand.d.ts +2 -1
  404. package/esm/typings/src/utils/execCommand/$execCommands.d.ts +2 -1
  405. package/esm/typings/src/utils/files/$induceBookDownload.d.ts +13 -0
  406. package/esm/typings/src/utils/files/$induceFileDownload.d.ts +13 -0
  407. package/esm/typings/src/utils/files/ObjectUrl.d.ts +46 -0
  408. package/esm/typings/src/utils/files/listAllFiles.d.ts +2 -3
  409. package/esm/typings/src/utils/misc/aboutPromptbookInformation.d.ts +27 -0
  410. package/esm/typings/src/utils/misc/computeHash.d.ts +11 -0
  411. package/esm/typings/src/utils/misc/computeHash.test.d.ts +1 -0
  412. package/esm/typings/src/utils/misc/xAboutPromptbookInformation.d.ts +13 -0
  413. package/esm/typings/src/utils/normalization/normalize-to-kebab-case.d.ts +2 -0
  414. package/esm/typings/src/utils/normalization/normalizeMessageText.d.ts +9 -0
  415. package/esm/typings/src/utils/normalization/normalizeMessageText.test.d.ts +1 -0
  416. package/esm/typings/src/utils/normalization/normalizeTo_PascalCase.d.ts +3 -0
  417. package/esm/typings/src/utils/normalization/normalizeTo_camelCase.d.ts +2 -0
  418. package/esm/typings/src/utils/normalization/titleToName.d.ts +2 -0
  419. package/esm/typings/src/utils/organization/$sideEffect.d.ts +2 -2
  420. package/esm/typings/src/utils/organization/$side_effect.d.ts +7 -0
  421. package/esm/typings/src/utils/organization/TODO_USE.d.ts +2 -2
  422. package/esm/typings/src/utils/organization/keepUnused.d.ts +2 -2
  423. package/esm/typings/src/utils/organization/preserve.d.ts +3 -3
  424. package/esm/typings/src/utils/organization/really_any.d.ts +7 -0
  425. package/esm/typings/src/utils/random/$generateBookBoilerplate.d.ts +25 -0
  426. package/esm/typings/src/utils/random/$randomAgentPersona.d.ts +9 -0
  427. package/esm/typings/src/utils/random/$randomFullnameWithColor.d.ts +13 -0
  428. package/esm/typings/src/utils/random/$randomItem.d.ts +9 -0
  429. package/esm/typings/src/utils/random/$randomSeed.d.ts +3 -0
  430. package/esm/typings/src/utils/random/$randomToken.d.ts +2 -0
  431. package/esm/typings/src/utils/serialization/$deepFreeze.d.ts +2 -1
  432. package/esm/typings/src/utils/serialization/asSerializable.d.ts +2 -2
  433. package/esm/typings/src/utils/serialization/serializeToPromptbookJavascript.d.ts +2 -2
  434. package/esm/typings/src/utils/validators/parameterName/validateParameterName.d.ts +2 -0
  435. package/esm/typings/src/version.d.ts +1 -1
  436. package/esm/typings/src/wizard/$getCompiledBook.d.ts +1 -2
  437. package/package.json +15 -15
  438. package/umd/index.umd.js +5089 -356
  439. package/umd/index.umd.js.map +1 -1
  440. package/esm/typings/src/book-2.0/commitments/index.d.ts +0 -60
  441. package/esm/typings/src/book-components/BookEditor/config.d.ts +0 -11
  442. package/esm/typings/src/book-components/Chat/utils/renderMarkdown.d.ts +0 -21
  443. package/esm/typings/src/collection/collectionToJson.d.ts +0 -13
  444. package/esm/typings/src/collection/constructors/createCollectionFromJson.d.ts +0 -13
  445. /package/esm/typings/src/{book-components/Chat/utils/renderMarkdown.test.d.ts → book-2.0/agent-source/computeAgentHash.test.d.ts} +0 -0
  446. /package/esm/typings/src/{collection/constructors/createCollectionFromDirectory.test.d.ts → book-2.0/agent-source/normalizeAgentName.test.d.ts} +0 -0
  447. /package/esm/typings/src/{collection/constructors/createCollectionFromJson.test.d.ts → book-components/Chat/AgentChat/AgentChat.test.d.ts} +0 -0
  448. /package/esm/typings/src/collection/{constructors/createCollectionFromPromise.test.d.ts → pipeline-collection/constructors/createPipelineCollectionFromDirectory.test.d.ts} +0 -0
  449. /package/esm/typings/src/{commands/_common/parseCommand.test.d.ts → collection/pipeline-collection/constructors/createPipelineCollectionFromJson.test.d.ts} +0 -0
  450. /package/esm/typings/src/collection/{collectionToJson.test.d.ts → pipeline-collection/pipelineCollectionToJson.test.d.ts} +0 -0
  451. /package/esm/typings/src/{book-2.0/commitments → commitments}/_base/BookCommitment.d.ts +0 -0
  452. /package/esm/typings/src/{book-2.0/commitments → commitments}/_base/ParsedCommitment.d.ts +0 -0
@@ -0,0 +1,1163 @@
1
+ {
2
+ "name": "promptbook-agents-server",
3
+ "lockfileVersion": 3,
4
+ "requires": true,
5
+ "packages": {
6
+ "": {
7
+ "name": "promptbook-agents-server",
8
+ "hasInstallScript": true,
9
+ "dependencies": {
10
+ "remark-gfm": "^4.0.1"
11
+ },
12
+ "devDependencies": {
13
+ "@tailwindcss/typography": "^0.5.19"
14
+ }
15
+ },
16
+ "node_modules/@tailwindcss/typography": {
17
+ "version": "0.5.19",
18
+ "resolved": "https://registry.npmjs.org/@tailwindcss/typography/-/typography-0.5.19.tgz",
19
+ "integrity": "sha512-w31dd8HOx3k9vPtcQh5QHP9GwKcgbMp87j58qi6xgiBnFFtKEAgCWnDw4qUT8aHwkCp8bKvb/KGKWWHedP0AAg==",
20
+ "dev": true,
21
+ "license": "MIT",
22
+ "dependencies": {
23
+ "postcss-selector-parser": "6.0.10"
24
+ },
25
+ "peerDependencies": {
26
+ "tailwindcss": ">=3.0.0 || insiders || >=4.0.0-alpha.20 || >=4.0.0-beta.1"
27
+ }
28
+ },
29
+ "node_modules/@types/debug": {
30
+ "version": "4.1.12",
31
+ "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz",
32
+ "integrity": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==",
33
+ "license": "MIT",
34
+ "dependencies": {
35
+ "@types/ms": "*"
36
+ }
37
+ },
38
+ "node_modules/@types/mdast": {
39
+ "version": "4.0.4",
40
+ "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz",
41
+ "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==",
42
+ "license": "MIT",
43
+ "dependencies": {
44
+ "@types/unist": "*"
45
+ }
46
+ },
47
+ "node_modules/@types/ms": {
48
+ "version": "2.1.0",
49
+ "resolved": "https://registry.npmjs.org/@types/ms/-/ms-2.1.0.tgz",
50
+ "integrity": "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==",
51
+ "license": "MIT"
52
+ },
53
+ "node_modules/@types/unist": {
54
+ "version": "3.0.3",
55
+ "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz",
56
+ "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==",
57
+ "license": "MIT"
58
+ },
59
+ "node_modules/bail": {
60
+ "version": "2.0.2",
61
+ "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz",
62
+ "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==",
63
+ "license": "MIT",
64
+ "funding": {
65
+ "type": "github",
66
+ "url": "https://github.com/sponsors/wooorm"
67
+ }
68
+ },
69
+ "node_modules/ccount": {
70
+ "version": "2.0.1",
71
+ "resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz",
72
+ "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==",
73
+ "license": "MIT",
74
+ "funding": {
75
+ "type": "github",
76
+ "url": "https://github.com/sponsors/wooorm"
77
+ }
78
+ },
79
+ "node_modules/character-entities": {
80
+ "version": "2.0.2",
81
+ "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz",
82
+ "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==",
83
+ "license": "MIT",
84
+ "funding": {
85
+ "type": "github",
86
+ "url": "https://github.com/sponsors/wooorm"
87
+ }
88
+ },
89
+ "node_modules/cssesc": {
90
+ "version": "3.0.0",
91
+ "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
92
+ "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==",
93
+ "dev": true,
94
+ "license": "MIT",
95
+ "bin": {
96
+ "cssesc": "bin/cssesc"
97
+ },
98
+ "engines": {
99
+ "node": ">=4"
100
+ }
101
+ },
102
+ "node_modules/debug": {
103
+ "version": "4.4.3",
104
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
105
+ "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
106
+ "license": "MIT",
107
+ "dependencies": {
108
+ "ms": "^2.1.3"
109
+ },
110
+ "engines": {
111
+ "node": ">=6.0"
112
+ },
113
+ "peerDependenciesMeta": {
114
+ "supports-color": {
115
+ "optional": true
116
+ }
117
+ }
118
+ },
119
+ "node_modules/decode-named-character-reference": {
120
+ "version": "1.2.0",
121
+ "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.2.0.tgz",
122
+ "integrity": "sha512-c6fcElNV6ShtZXmsgNgFFV5tVX2PaV4g+MOAkb8eXHvn6sryJBrZa9r0zV6+dtTyoCKxtDy5tyQ5ZwQuidtd+Q==",
123
+ "license": "MIT",
124
+ "dependencies": {
125
+ "character-entities": "^2.0.0"
126
+ },
127
+ "funding": {
128
+ "type": "github",
129
+ "url": "https://github.com/sponsors/wooorm"
130
+ }
131
+ },
132
+ "node_modules/dequal": {
133
+ "version": "2.0.3",
134
+ "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz",
135
+ "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==",
136
+ "license": "MIT",
137
+ "engines": {
138
+ "node": ">=6"
139
+ }
140
+ },
141
+ "node_modules/devlop": {
142
+ "version": "1.1.0",
143
+ "resolved": "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz",
144
+ "integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==",
145
+ "license": "MIT",
146
+ "dependencies": {
147
+ "dequal": "^2.0.0"
148
+ },
149
+ "funding": {
150
+ "type": "github",
151
+ "url": "https://github.com/sponsors/wooorm"
152
+ }
153
+ },
154
+ "node_modules/escape-string-regexp": {
155
+ "version": "5.0.0",
156
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz",
157
+ "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==",
158
+ "license": "MIT",
159
+ "engines": {
160
+ "node": ">=12"
161
+ },
162
+ "funding": {
163
+ "url": "https://github.com/sponsors/sindresorhus"
164
+ }
165
+ },
166
+ "node_modules/extend": {
167
+ "version": "3.0.2",
168
+ "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
169
+ "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==",
170
+ "license": "MIT"
171
+ },
172
+ "node_modules/is-plain-obj": {
173
+ "version": "4.1.0",
174
+ "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz",
175
+ "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==",
176
+ "license": "MIT",
177
+ "engines": {
178
+ "node": ">=12"
179
+ },
180
+ "funding": {
181
+ "url": "https://github.com/sponsors/sindresorhus"
182
+ }
183
+ },
184
+ "node_modules/longest-streak": {
185
+ "version": "3.1.0",
186
+ "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz",
187
+ "integrity": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==",
188
+ "license": "MIT",
189
+ "funding": {
190
+ "type": "github",
191
+ "url": "https://github.com/sponsors/wooorm"
192
+ }
193
+ },
194
+ "node_modules/markdown-table": {
195
+ "version": "3.0.4",
196
+ "resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-3.0.4.tgz",
197
+ "integrity": "sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==",
198
+ "license": "MIT",
199
+ "funding": {
200
+ "type": "github",
201
+ "url": "https://github.com/sponsors/wooorm"
202
+ }
203
+ },
204
+ "node_modules/mdast-util-find-and-replace": {
205
+ "version": "3.0.2",
206
+ "resolved": "https://registry.npmjs.org/mdast-util-find-and-replace/-/mdast-util-find-and-replace-3.0.2.tgz",
207
+ "integrity": "sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==",
208
+ "license": "MIT",
209
+ "dependencies": {
210
+ "@types/mdast": "^4.0.0",
211
+ "escape-string-regexp": "^5.0.0",
212
+ "unist-util-is": "^6.0.0",
213
+ "unist-util-visit-parents": "^6.0.0"
214
+ },
215
+ "funding": {
216
+ "type": "opencollective",
217
+ "url": "https://opencollective.com/unified"
218
+ }
219
+ },
220
+ "node_modules/mdast-util-from-markdown": {
221
+ "version": "2.0.2",
222
+ "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.2.tgz",
223
+ "integrity": "sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==",
224
+ "license": "MIT",
225
+ "dependencies": {
226
+ "@types/mdast": "^4.0.0",
227
+ "@types/unist": "^3.0.0",
228
+ "decode-named-character-reference": "^1.0.0",
229
+ "devlop": "^1.0.0",
230
+ "mdast-util-to-string": "^4.0.0",
231
+ "micromark": "^4.0.0",
232
+ "micromark-util-decode-numeric-character-reference": "^2.0.0",
233
+ "micromark-util-decode-string": "^2.0.0",
234
+ "micromark-util-normalize-identifier": "^2.0.0",
235
+ "micromark-util-symbol": "^2.0.0",
236
+ "micromark-util-types": "^2.0.0",
237
+ "unist-util-stringify-position": "^4.0.0"
238
+ },
239
+ "funding": {
240
+ "type": "opencollective",
241
+ "url": "https://opencollective.com/unified"
242
+ }
243
+ },
244
+ "node_modules/mdast-util-gfm": {
245
+ "version": "3.1.0",
246
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm/-/mdast-util-gfm-3.1.0.tgz",
247
+ "integrity": "sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==",
248
+ "license": "MIT",
249
+ "dependencies": {
250
+ "mdast-util-from-markdown": "^2.0.0",
251
+ "mdast-util-gfm-autolink-literal": "^2.0.0",
252
+ "mdast-util-gfm-footnote": "^2.0.0",
253
+ "mdast-util-gfm-strikethrough": "^2.0.0",
254
+ "mdast-util-gfm-table": "^2.0.0",
255
+ "mdast-util-gfm-task-list-item": "^2.0.0",
256
+ "mdast-util-to-markdown": "^2.0.0"
257
+ },
258
+ "funding": {
259
+ "type": "opencollective",
260
+ "url": "https://opencollective.com/unified"
261
+ }
262
+ },
263
+ "node_modules/mdast-util-gfm-autolink-literal": {
264
+ "version": "2.0.1",
265
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-2.0.1.tgz",
266
+ "integrity": "sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==",
267
+ "license": "MIT",
268
+ "dependencies": {
269
+ "@types/mdast": "^4.0.0",
270
+ "ccount": "^2.0.0",
271
+ "devlop": "^1.0.0",
272
+ "mdast-util-find-and-replace": "^3.0.0",
273
+ "micromark-util-character": "^2.0.0"
274
+ },
275
+ "funding": {
276
+ "type": "opencollective",
277
+ "url": "https://opencollective.com/unified"
278
+ }
279
+ },
280
+ "node_modules/mdast-util-gfm-footnote": {
281
+ "version": "2.1.0",
282
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-2.1.0.tgz",
283
+ "integrity": "sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==",
284
+ "license": "MIT",
285
+ "dependencies": {
286
+ "@types/mdast": "^4.0.0",
287
+ "devlop": "^1.1.0",
288
+ "mdast-util-from-markdown": "^2.0.0",
289
+ "mdast-util-to-markdown": "^2.0.0",
290
+ "micromark-util-normalize-identifier": "^2.0.0"
291
+ },
292
+ "funding": {
293
+ "type": "opencollective",
294
+ "url": "https://opencollective.com/unified"
295
+ }
296
+ },
297
+ "node_modules/mdast-util-gfm-strikethrough": {
298
+ "version": "2.0.0",
299
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-2.0.0.tgz",
300
+ "integrity": "sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==",
301
+ "license": "MIT",
302
+ "dependencies": {
303
+ "@types/mdast": "^4.0.0",
304
+ "mdast-util-from-markdown": "^2.0.0",
305
+ "mdast-util-to-markdown": "^2.0.0"
306
+ },
307
+ "funding": {
308
+ "type": "opencollective",
309
+ "url": "https://opencollective.com/unified"
310
+ }
311
+ },
312
+ "node_modules/mdast-util-gfm-table": {
313
+ "version": "2.0.0",
314
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm-table/-/mdast-util-gfm-table-2.0.0.tgz",
315
+ "integrity": "sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==",
316
+ "license": "MIT",
317
+ "dependencies": {
318
+ "@types/mdast": "^4.0.0",
319
+ "devlop": "^1.0.0",
320
+ "markdown-table": "^3.0.0",
321
+ "mdast-util-from-markdown": "^2.0.0",
322
+ "mdast-util-to-markdown": "^2.0.0"
323
+ },
324
+ "funding": {
325
+ "type": "opencollective",
326
+ "url": "https://opencollective.com/unified"
327
+ }
328
+ },
329
+ "node_modules/mdast-util-gfm-task-list-item": {
330
+ "version": "2.0.0",
331
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-2.0.0.tgz",
332
+ "integrity": "sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==",
333
+ "license": "MIT",
334
+ "dependencies": {
335
+ "@types/mdast": "^4.0.0",
336
+ "devlop": "^1.0.0",
337
+ "mdast-util-from-markdown": "^2.0.0",
338
+ "mdast-util-to-markdown": "^2.0.0"
339
+ },
340
+ "funding": {
341
+ "type": "opencollective",
342
+ "url": "https://opencollective.com/unified"
343
+ }
344
+ },
345
+ "node_modules/mdast-util-phrasing": {
346
+ "version": "4.1.0",
347
+ "resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-4.1.0.tgz",
348
+ "integrity": "sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==",
349
+ "license": "MIT",
350
+ "dependencies": {
351
+ "@types/mdast": "^4.0.0",
352
+ "unist-util-is": "^6.0.0"
353
+ },
354
+ "funding": {
355
+ "type": "opencollective",
356
+ "url": "https://opencollective.com/unified"
357
+ }
358
+ },
359
+ "node_modules/mdast-util-to-markdown": {
360
+ "version": "2.1.2",
361
+ "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.2.tgz",
362
+ "integrity": "sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==",
363
+ "license": "MIT",
364
+ "dependencies": {
365
+ "@types/mdast": "^4.0.0",
366
+ "@types/unist": "^3.0.0",
367
+ "longest-streak": "^3.0.0",
368
+ "mdast-util-phrasing": "^4.0.0",
369
+ "mdast-util-to-string": "^4.0.0",
370
+ "micromark-util-classify-character": "^2.0.0",
371
+ "micromark-util-decode-string": "^2.0.0",
372
+ "unist-util-visit": "^5.0.0",
373
+ "zwitch": "^2.0.0"
374
+ },
375
+ "funding": {
376
+ "type": "opencollective",
377
+ "url": "https://opencollective.com/unified"
378
+ }
379
+ },
380
+ "node_modules/mdast-util-to-string": {
381
+ "version": "4.0.0",
382
+ "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz",
383
+ "integrity": "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==",
384
+ "license": "MIT",
385
+ "dependencies": {
386
+ "@types/mdast": "^4.0.0"
387
+ },
388
+ "funding": {
389
+ "type": "opencollective",
390
+ "url": "https://opencollective.com/unified"
391
+ }
392
+ },
393
+ "node_modules/micromark": {
394
+ "version": "4.0.2",
395
+ "resolved": "https://registry.npmjs.org/micromark/-/micromark-4.0.2.tgz",
396
+ "integrity": "sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==",
397
+ "funding": [
398
+ {
399
+ "type": "GitHub Sponsors",
400
+ "url": "https://github.com/sponsors/unifiedjs"
401
+ },
402
+ {
403
+ "type": "OpenCollective",
404
+ "url": "https://opencollective.com/unified"
405
+ }
406
+ ],
407
+ "license": "MIT",
408
+ "dependencies": {
409
+ "@types/debug": "^4.0.0",
410
+ "debug": "^4.0.0",
411
+ "decode-named-character-reference": "^1.0.0",
412
+ "devlop": "^1.0.0",
413
+ "micromark-core-commonmark": "^2.0.0",
414
+ "micromark-factory-space": "^2.0.0",
415
+ "micromark-util-character": "^2.0.0",
416
+ "micromark-util-chunked": "^2.0.0",
417
+ "micromark-util-combine-extensions": "^2.0.0",
418
+ "micromark-util-decode-numeric-character-reference": "^2.0.0",
419
+ "micromark-util-encode": "^2.0.0",
420
+ "micromark-util-normalize-identifier": "^2.0.0",
421
+ "micromark-util-resolve-all": "^2.0.0",
422
+ "micromark-util-sanitize-uri": "^2.0.0",
423
+ "micromark-util-subtokenize": "^2.0.0",
424
+ "micromark-util-symbol": "^2.0.0",
425
+ "micromark-util-types": "^2.0.0"
426
+ }
427
+ },
428
+ "node_modules/micromark-core-commonmark": {
429
+ "version": "2.0.3",
430
+ "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.3.tgz",
431
+ "integrity": "sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==",
432
+ "funding": [
433
+ {
434
+ "type": "GitHub Sponsors",
435
+ "url": "https://github.com/sponsors/unifiedjs"
436
+ },
437
+ {
438
+ "type": "OpenCollective",
439
+ "url": "https://opencollective.com/unified"
440
+ }
441
+ ],
442
+ "license": "MIT",
443
+ "dependencies": {
444
+ "decode-named-character-reference": "^1.0.0",
445
+ "devlop": "^1.0.0",
446
+ "micromark-factory-destination": "^2.0.0",
447
+ "micromark-factory-label": "^2.0.0",
448
+ "micromark-factory-space": "^2.0.0",
449
+ "micromark-factory-title": "^2.0.0",
450
+ "micromark-factory-whitespace": "^2.0.0",
451
+ "micromark-util-character": "^2.0.0",
452
+ "micromark-util-chunked": "^2.0.0",
453
+ "micromark-util-classify-character": "^2.0.0",
454
+ "micromark-util-html-tag-name": "^2.0.0",
455
+ "micromark-util-normalize-identifier": "^2.0.0",
456
+ "micromark-util-resolve-all": "^2.0.0",
457
+ "micromark-util-subtokenize": "^2.0.0",
458
+ "micromark-util-symbol": "^2.0.0",
459
+ "micromark-util-types": "^2.0.0"
460
+ }
461
+ },
462
+ "node_modules/micromark-extension-gfm": {
463
+ "version": "3.0.0",
464
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm/-/micromark-extension-gfm-3.0.0.tgz",
465
+ "integrity": "sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==",
466
+ "license": "MIT",
467
+ "dependencies": {
468
+ "micromark-extension-gfm-autolink-literal": "^2.0.0",
469
+ "micromark-extension-gfm-footnote": "^2.0.0",
470
+ "micromark-extension-gfm-strikethrough": "^2.0.0",
471
+ "micromark-extension-gfm-table": "^2.0.0",
472
+ "micromark-extension-gfm-tagfilter": "^2.0.0",
473
+ "micromark-extension-gfm-task-list-item": "^2.0.0",
474
+ "micromark-util-combine-extensions": "^2.0.0",
475
+ "micromark-util-types": "^2.0.0"
476
+ },
477
+ "funding": {
478
+ "type": "opencollective",
479
+ "url": "https://opencollective.com/unified"
480
+ }
481
+ },
482
+ "node_modules/micromark-extension-gfm-autolink-literal": {
483
+ "version": "2.1.0",
484
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-2.1.0.tgz",
485
+ "integrity": "sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==",
486
+ "license": "MIT",
487
+ "dependencies": {
488
+ "micromark-util-character": "^2.0.0",
489
+ "micromark-util-sanitize-uri": "^2.0.0",
490
+ "micromark-util-symbol": "^2.0.0",
491
+ "micromark-util-types": "^2.0.0"
492
+ },
493
+ "funding": {
494
+ "type": "opencollective",
495
+ "url": "https://opencollective.com/unified"
496
+ }
497
+ },
498
+ "node_modules/micromark-extension-gfm-footnote": {
499
+ "version": "2.1.0",
500
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-2.1.0.tgz",
501
+ "integrity": "sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==",
502
+ "license": "MIT",
503
+ "dependencies": {
504
+ "devlop": "^1.0.0",
505
+ "micromark-core-commonmark": "^2.0.0",
506
+ "micromark-factory-space": "^2.0.0",
507
+ "micromark-util-character": "^2.0.0",
508
+ "micromark-util-normalize-identifier": "^2.0.0",
509
+ "micromark-util-sanitize-uri": "^2.0.0",
510
+ "micromark-util-symbol": "^2.0.0",
511
+ "micromark-util-types": "^2.0.0"
512
+ },
513
+ "funding": {
514
+ "type": "opencollective",
515
+ "url": "https://opencollective.com/unified"
516
+ }
517
+ },
518
+ "node_modules/micromark-extension-gfm-strikethrough": {
519
+ "version": "2.1.0",
520
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-2.1.0.tgz",
521
+ "integrity": "sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==",
522
+ "license": "MIT",
523
+ "dependencies": {
524
+ "devlop": "^1.0.0",
525
+ "micromark-util-chunked": "^2.0.0",
526
+ "micromark-util-classify-character": "^2.0.0",
527
+ "micromark-util-resolve-all": "^2.0.0",
528
+ "micromark-util-symbol": "^2.0.0",
529
+ "micromark-util-types": "^2.0.0"
530
+ },
531
+ "funding": {
532
+ "type": "opencollective",
533
+ "url": "https://opencollective.com/unified"
534
+ }
535
+ },
536
+ "node_modules/micromark-extension-gfm-table": {
537
+ "version": "2.1.1",
538
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-2.1.1.tgz",
539
+ "integrity": "sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==",
540
+ "license": "MIT",
541
+ "dependencies": {
542
+ "devlop": "^1.0.0",
543
+ "micromark-factory-space": "^2.0.0",
544
+ "micromark-util-character": "^2.0.0",
545
+ "micromark-util-symbol": "^2.0.0",
546
+ "micromark-util-types": "^2.0.0"
547
+ },
548
+ "funding": {
549
+ "type": "opencollective",
550
+ "url": "https://opencollective.com/unified"
551
+ }
552
+ },
553
+ "node_modules/micromark-extension-gfm-tagfilter": {
554
+ "version": "2.0.0",
555
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-2.0.0.tgz",
556
+ "integrity": "sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==",
557
+ "license": "MIT",
558
+ "dependencies": {
559
+ "micromark-util-types": "^2.0.0"
560
+ },
561
+ "funding": {
562
+ "type": "opencollective",
563
+ "url": "https://opencollective.com/unified"
564
+ }
565
+ },
566
+ "node_modules/micromark-extension-gfm-task-list-item": {
567
+ "version": "2.1.0",
568
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-2.1.0.tgz",
569
+ "integrity": "sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==",
570
+ "license": "MIT",
571
+ "dependencies": {
572
+ "devlop": "^1.0.0",
573
+ "micromark-factory-space": "^2.0.0",
574
+ "micromark-util-character": "^2.0.0",
575
+ "micromark-util-symbol": "^2.0.0",
576
+ "micromark-util-types": "^2.0.0"
577
+ },
578
+ "funding": {
579
+ "type": "opencollective",
580
+ "url": "https://opencollective.com/unified"
581
+ }
582
+ },
583
+ "node_modules/micromark-factory-destination": {
584
+ "version": "2.0.1",
585
+ "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz",
586
+ "integrity": "sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==",
587
+ "funding": [
588
+ {
589
+ "type": "GitHub Sponsors",
590
+ "url": "https://github.com/sponsors/unifiedjs"
591
+ },
592
+ {
593
+ "type": "OpenCollective",
594
+ "url": "https://opencollective.com/unified"
595
+ }
596
+ ],
597
+ "license": "MIT",
598
+ "dependencies": {
599
+ "micromark-util-character": "^2.0.0",
600
+ "micromark-util-symbol": "^2.0.0",
601
+ "micromark-util-types": "^2.0.0"
602
+ }
603
+ },
604
+ "node_modules/micromark-factory-label": {
605
+ "version": "2.0.1",
606
+ "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.1.tgz",
607
+ "integrity": "sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==",
608
+ "funding": [
609
+ {
610
+ "type": "GitHub Sponsors",
611
+ "url": "https://github.com/sponsors/unifiedjs"
612
+ },
613
+ {
614
+ "type": "OpenCollective",
615
+ "url": "https://opencollective.com/unified"
616
+ }
617
+ ],
618
+ "license": "MIT",
619
+ "dependencies": {
620
+ "devlop": "^1.0.0",
621
+ "micromark-util-character": "^2.0.0",
622
+ "micromark-util-symbol": "^2.0.0",
623
+ "micromark-util-types": "^2.0.0"
624
+ }
625
+ },
626
+ "node_modules/micromark-factory-space": {
627
+ "version": "2.0.1",
628
+ "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz",
629
+ "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==",
630
+ "funding": [
631
+ {
632
+ "type": "GitHub Sponsors",
633
+ "url": "https://github.com/sponsors/unifiedjs"
634
+ },
635
+ {
636
+ "type": "OpenCollective",
637
+ "url": "https://opencollective.com/unified"
638
+ }
639
+ ],
640
+ "license": "MIT",
641
+ "dependencies": {
642
+ "micromark-util-character": "^2.0.0",
643
+ "micromark-util-types": "^2.0.0"
644
+ }
645
+ },
646
+ "node_modules/micromark-factory-title": {
647
+ "version": "2.0.1",
648
+ "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.1.tgz",
649
+ "integrity": "sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==",
650
+ "funding": [
651
+ {
652
+ "type": "GitHub Sponsors",
653
+ "url": "https://github.com/sponsors/unifiedjs"
654
+ },
655
+ {
656
+ "type": "OpenCollective",
657
+ "url": "https://opencollective.com/unified"
658
+ }
659
+ ],
660
+ "license": "MIT",
661
+ "dependencies": {
662
+ "micromark-factory-space": "^2.0.0",
663
+ "micromark-util-character": "^2.0.0",
664
+ "micromark-util-symbol": "^2.0.0",
665
+ "micromark-util-types": "^2.0.0"
666
+ }
667
+ },
668
+ "node_modules/micromark-factory-whitespace": {
669
+ "version": "2.0.1",
670
+ "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.1.tgz",
671
+ "integrity": "sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==",
672
+ "funding": [
673
+ {
674
+ "type": "GitHub Sponsors",
675
+ "url": "https://github.com/sponsors/unifiedjs"
676
+ },
677
+ {
678
+ "type": "OpenCollective",
679
+ "url": "https://opencollective.com/unified"
680
+ }
681
+ ],
682
+ "license": "MIT",
683
+ "dependencies": {
684
+ "micromark-factory-space": "^2.0.0",
685
+ "micromark-util-character": "^2.0.0",
686
+ "micromark-util-symbol": "^2.0.0",
687
+ "micromark-util-types": "^2.0.0"
688
+ }
689
+ },
690
+ "node_modules/micromark-util-character": {
691
+ "version": "2.1.1",
692
+ "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz",
693
+ "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==",
694
+ "funding": [
695
+ {
696
+ "type": "GitHub Sponsors",
697
+ "url": "https://github.com/sponsors/unifiedjs"
698
+ },
699
+ {
700
+ "type": "OpenCollective",
701
+ "url": "https://opencollective.com/unified"
702
+ }
703
+ ],
704
+ "license": "MIT",
705
+ "dependencies": {
706
+ "micromark-util-symbol": "^2.0.0",
707
+ "micromark-util-types": "^2.0.0"
708
+ }
709
+ },
710
+ "node_modules/micromark-util-chunked": {
711
+ "version": "2.0.1",
712
+ "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz",
713
+ "integrity": "sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==",
714
+ "funding": [
715
+ {
716
+ "type": "GitHub Sponsors",
717
+ "url": "https://github.com/sponsors/unifiedjs"
718
+ },
719
+ {
720
+ "type": "OpenCollective",
721
+ "url": "https://opencollective.com/unified"
722
+ }
723
+ ],
724
+ "license": "MIT",
725
+ "dependencies": {
726
+ "micromark-util-symbol": "^2.0.0"
727
+ }
728
+ },
729
+ "node_modules/micromark-util-classify-character": {
730
+ "version": "2.0.1",
731
+ "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.1.tgz",
732
+ "integrity": "sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==",
733
+ "funding": [
734
+ {
735
+ "type": "GitHub Sponsors",
736
+ "url": "https://github.com/sponsors/unifiedjs"
737
+ },
738
+ {
739
+ "type": "OpenCollective",
740
+ "url": "https://opencollective.com/unified"
741
+ }
742
+ ],
743
+ "license": "MIT",
744
+ "dependencies": {
745
+ "micromark-util-character": "^2.0.0",
746
+ "micromark-util-symbol": "^2.0.0",
747
+ "micromark-util-types": "^2.0.0"
748
+ }
749
+ },
750
+ "node_modules/micromark-util-combine-extensions": {
751
+ "version": "2.0.1",
752
+ "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.1.tgz",
753
+ "integrity": "sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==",
754
+ "funding": [
755
+ {
756
+ "type": "GitHub Sponsors",
757
+ "url": "https://github.com/sponsors/unifiedjs"
758
+ },
759
+ {
760
+ "type": "OpenCollective",
761
+ "url": "https://opencollective.com/unified"
762
+ }
763
+ ],
764
+ "license": "MIT",
765
+ "dependencies": {
766
+ "micromark-util-chunked": "^2.0.0",
767
+ "micromark-util-types": "^2.0.0"
768
+ }
769
+ },
770
+ "node_modules/micromark-util-decode-numeric-character-reference": {
771
+ "version": "2.0.2",
772
+ "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.2.tgz",
773
+ "integrity": "sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==",
774
+ "funding": [
775
+ {
776
+ "type": "GitHub Sponsors",
777
+ "url": "https://github.com/sponsors/unifiedjs"
778
+ },
779
+ {
780
+ "type": "OpenCollective",
781
+ "url": "https://opencollective.com/unified"
782
+ }
783
+ ],
784
+ "license": "MIT",
785
+ "dependencies": {
786
+ "micromark-util-symbol": "^2.0.0"
787
+ }
788
+ },
789
+ "node_modules/micromark-util-decode-string": {
790
+ "version": "2.0.1",
791
+ "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-2.0.1.tgz",
792
+ "integrity": "sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==",
793
+ "funding": [
794
+ {
795
+ "type": "GitHub Sponsors",
796
+ "url": "https://github.com/sponsors/unifiedjs"
797
+ },
798
+ {
799
+ "type": "OpenCollective",
800
+ "url": "https://opencollective.com/unified"
801
+ }
802
+ ],
803
+ "license": "MIT",
804
+ "dependencies": {
805
+ "decode-named-character-reference": "^1.0.0",
806
+ "micromark-util-character": "^2.0.0",
807
+ "micromark-util-decode-numeric-character-reference": "^2.0.0",
808
+ "micromark-util-symbol": "^2.0.0"
809
+ }
810
+ },
811
+ "node_modules/micromark-util-encode": {
812
+ "version": "2.0.1",
813
+ "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz",
814
+ "integrity": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==",
815
+ "funding": [
816
+ {
817
+ "type": "GitHub Sponsors",
818
+ "url": "https://github.com/sponsors/unifiedjs"
819
+ },
820
+ {
821
+ "type": "OpenCollective",
822
+ "url": "https://opencollective.com/unified"
823
+ }
824
+ ],
825
+ "license": "MIT"
826
+ },
827
+ "node_modules/micromark-util-html-tag-name": {
828
+ "version": "2.0.1",
829
+ "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz",
830
+ "integrity": "sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==",
831
+ "funding": [
832
+ {
833
+ "type": "GitHub Sponsors",
834
+ "url": "https://github.com/sponsors/unifiedjs"
835
+ },
836
+ {
837
+ "type": "OpenCollective",
838
+ "url": "https://opencollective.com/unified"
839
+ }
840
+ ],
841
+ "license": "MIT"
842
+ },
843
+ "node_modules/micromark-util-normalize-identifier": {
844
+ "version": "2.0.1",
845
+ "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.1.tgz",
846
+ "integrity": "sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==",
847
+ "funding": [
848
+ {
849
+ "type": "GitHub Sponsors",
850
+ "url": "https://github.com/sponsors/unifiedjs"
851
+ },
852
+ {
853
+ "type": "OpenCollective",
854
+ "url": "https://opencollective.com/unified"
855
+ }
856
+ ],
857
+ "license": "MIT",
858
+ "dependencies": {
859
+ "micromark-util-symbol": "^2.0.0"
860
+ }
861
+ },
862
+ "node_modules/micromark-util-resolve-all": {
863
+ "version": "2.0.1",
864
+ "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz",
865
+ "integrity": "sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==",
866
+ "funding": [
867
+ {
868
+ "type": "GitHub Sponsors",
869
+ "url": "https://github.com/sponsors/unifiedjs"
870
+ },
871
+ {
872
+ "type": "OpenCollective",
873
+ "url": "https://opencollective.com/unified"
874
+ }
875
+ ],
876
+ "license": "MIT",
877
+ "dependencies": {
878
+ "micromark-util-types": "^2.0.0"
879
+ }
880
+ },
881
+ "node_modules/micromark-util-sanitize-uri": {
882
+ "version": "2.0.1",
883
+ "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz",
884
+ "integrity": "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==",
885
+ "funding": [
886
+ {
887
+ "type": "GitHub Sponsors",
888
+ "url": "https://github.com/sponsors/unifiedjs"
889
+ },
890
+ {
891
+ "type": "OpenCollective",
892
+ "url": "https://opencollective.com/unified"
893
+ }
894
+ ],
895
+ "license": "MIT",
896
+ "dependencies": {
897
+ "micromark-util-character": "^2.0.0",
898
+ "micromark-util-encode": "^2.0.0",
899
+ "micromark-util-symbol": "^2.0.0"
900
+ }
901
+ },
902
+ "node_modules/micromark-util-subtokenize": {
903
+ "version": "2.1.0",
904
+ "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.1.0.tgz",
905
+ "integrity": "sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==",
906
+ "funding": [
907
+ {
908
+ "type": "GitHub Sponsors",
909
+ "url": "https://github.com/sponsors/unifiedjs"
910
+ },
911
+ {
912
+ "type": "OpenCollective",
913
+ "url": "https://opencollective.com/unified"
914
+ }
915
+ ],
916
+ "license": "MIT",
917
+ "dependencies": {
918
+ "devlop": "^1.0.0",
919
+ "micromark-util-chunked": "^2.0.0",
920
+ "micromark-util-symbol": "^2.0.0",
921
+ "micromark-util-types": "^2.0.0"
922
+ }
923
+ },
924
+ "node_modules/micromark-util-symbol": {
925
+ "version": "2.0.1",
926
+ "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz",
927
+ "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==",
928
+ "funding": [
929
+ {
930
+ "type": "GitHub Sponsors",
931
+ "url": "https://github.com/sponsors/unifiedjs"
932
+ },
933
+ {
934
+ "type": "OpenCollective",
935
+ "url": "https://opencollective.com/unified"
936
+ }
937
+ ],
938
+ "license": "MIT"
939
+ },
940
+ "node_modules/micromark-util-types": {
941
+ "version": "2.0.2",
942
+ "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz",
943
+ "integrity": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==",
944
+ "funding": [
945
+ {
946
+ "type": "GitHub Sponsors",
947
+ "url": "https://github.com/sponsors/unifiedjs"
948
+ },
949
+ {
950
+ "type": "OpenCollective",
951
+ "url": "https://opencollective.com/unified"
952
+ }
953
+ ],
954
+ "license": "MIT"
955
+ },
956
+ "node_modules/ms": {
957
+ "version": "2.1.3",
958
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
959
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
960
+ "license": "MIT"
961
+ },
962
+ "node_modules/postcss-selector-parser": {
963
+ "version": "6.0.10",
964
+ "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz",
965
+ "integrity": "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==",
966
+ "dev": true,
967
+ "license": "MIT",
968
+ "dependencies": {
969
+ "cssesc": "^3.0.0",
970
+ "util-deprecate": "^1.0.2"
971
+ },
972
+ "engines": {
973
+ "node": ">=4"
974
+ }
975
+ },
976
+ "node_modules/remark-gfm": {
977
+ "version": "4.0.1",
978
+ "resolved": "https://registry.npmjs.org/remark-gfm/-/remark-gfm-4.0.1.tgz",
979
+ "integrity": "sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==",
980
+ "license": "MIT",
981
+ "dependencies": {
982
+ "@types/mdast": "^4.0.0",
983
+ "mdast-util-gfm": "^3.0.0",
984
+ "micromark-extension-gfm": "^3.0.0",
985
+ "remark-parse": "^11.0.0",
986
+ "remark-stringify": "^11.0.0",
987
+ "unified": "^11.0.0"
988
+ },
989
+ "funding": {
990
+ "type": "opencollective",
991
+ "url": "https://opencollective.com/unified"
992
+ }
993
+ },
994
+ "node_modules/remark-parse": {
995
+ "version": "11.0.0",
996
+ "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-11.0.0.tgz",
997
+ "integrity": "sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==",
998
+ "license": "MIT",
999
+ "dependencies": {
1000
+ "@types/mdast": "^4.0.0",
1001
+ "mdast-util-from-markdown": "^2.0.0",
1002
+ "micromark-util-types": "^2.0.0",
1003
+ "unified": "^11.0.0"
1004
+ },
1005
+ "funding": {
1006
+ "type": "opencollective",
1007
+ "url": "https://opencollective.com/unified"
1008
+ }
1009
+ },
1010
+ "node_modules/remark-stringify": {
1011
+ "version": "11.0.0",
1012
+ "resolved": "https://registry.npmjs.org/remark-stringify/-/remark-stringify-11.0.0.tgz",
1013
+ "integrity": "sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==",
1014
+ "license": "MIT",
1015
+ "dependencies": {
1016
+ "@types/mdast": "^4.0.0",
1017
+ "mdast-util-to-markdown": "^2.0.0",
1018
+ "unified": "^11.0.0"
1019
+ },
1020
+ "funding": {
1021
+ "type": "opencollective",
1022
+ "url": "https://opencollective.com/unified"
1023
+ }
1024
+ },
1025
+ "node_modules/tailwindcss": {
1026
+ "version": "4.1.17",
1027
+ "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.1.17.tgz",
1028
+ "integrity": "sha512-j9Ee2YjuQqYT9bbRTfTZht9W/ytp5H+jJpZKiYdP/bpnXARAuELt9ofP0lPnmHjbga7SNQIxdTAXCmtKVYjN+Q==",
1029
+ "dev": true,
1030
+ "license": "MIT",
1031
+ "peer": true
1032
+ },
1033
+ "node_modules/trough": {
1034
+ "version": "2.2.0",
1035
+ "resolved": "https://registry.npmjs.org/trough/-/trough-2.2.0.tgz",
1036
+ "integrity": "sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==",
1037
+ "license": "MIT",
1038
+ "funding": {
1039
+ "type": "github",
1040
+ "url": "https://github.com/sponsors/wooorm"
1041
+ }
1042
+ },
1043
+ "node_modules/unified": {
1044
+ "version": "11.0.5",
1045
+ "resolved": "https://registry.npmjs.org/unified/-/unified-11.0.5.tgz",
1046
+ "integrity": "sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==",
1047
+ "license": "MIT",
1048
+ "dependencies": {
1049
+ "@types/unist": "^3.0.0",
1050
+ "bail": "^2.0.0",
1051
+ "devlop": "^1.0.0",
1052
+ "extend": "^3.0.0",
1053
+ "is-plain-obj": "^4.0.0",
1054
+ "trough": "^2.0.0",
1055
+ "vfile": "^6.0.0"
1056
+ },
1057
+ "funding": {
1058
+ "type": "opencollective",
1059
+ "url": "https://opencollective.com/unified"
1060
+ }
1061
+ },
1062
+ "node_modules/unist-util-is": {
1063
+ "version": "6.0.1",
1064
+ "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.1.tgz",
1065
+ "integrity": "sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==",
1066
+ "license": "MIT",
1067
+ "dependencies": {
1068
+ "@types/unist": "^3.0.0"
1069
+ },
1070
+ "funding": {
1071
+ "type": "opencollective",
1072
+ "url": "https://opencollective.com/unified"
1073
+ }
1074
+ },
1075
+ "node_modules/unist-util-stringify-position": {
1076
+ "version": "4.0.0",
1077
+ "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz",
1078
+ "integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==",
1079
+ "license": "MIT",
1080
+ "dependencies": {
1081
+ "@types/unist": "^3.0.0"
1082
+ },
1083
+ "funding": {
1084
+ "type": "opencollective",
1085
+ "url": "https://opencollective.com/unified"
1086
+ }
1087
+ },
1088
+ "node_modules/unist-util-visit": {
1089
+ "version": "5.0.0",
1090
+ "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-5.0.0.tgz",
1091
+ "integrity": "sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==",
1092
+ "license": "MIT",
1093
+ "dependencies": {
1094
+ "@types/unist": "^3.0.0",
1095
+ "unist-util-is": "^6.0.0",
1096
+ "unist-util-visit-parents": "^6.0.0"
1097
+ },
1098
+ "funding": {
1099
+ "type": "opencollective",
1100
+ "url": "https://opencollective.com/unified"
1101
+ }
1102
+ },
1103
+ "node_modules/unist-util-visit-parents": {
1104
+ "version": "6.0.2",
1105
+ "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.2.tgz",
1106
+ "integrity": "sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==",
1107
+ "license": "MIT",
1108
+ "dependencies": {
1109
+ "@types/unist": "^3.0.0",
1110
+ "unist-util-is": "^6.0.0"
1111
+ },
1112
+ "funding": {
1113
+ "type": "opencollective",
1114
+ "url": "https://opencollective.com/unified"
1115
+ }
1116
+ },
1117
+ "node_modules/util-deprecate": {
1118
+ "version": "1.0.2",
1119
+ "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
1120
+ "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
1121
+ "dev": true,
1122
+ "license": "MIT"
1123
+ },
1124
+ "node_modules/vfile": {
1125
+ "version": "6.0.3",
1126
+ "resolved": "https://registry.npmjs.org/vfile/-/vfile-6.0.3.tgz",
1127
+ "integrity": "sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==",
1128
+ "license": "MIT",
1129
+ "dependencies": {
1130
+ "@types/unist": "^3.0.0",
1131
+ "vfile-message": "^4.0.0"
1132
+ },
1133
+ "funding": {
1134
+ "type": "opencollective",
1135
+ "url": "https://opencollective.com/unified"
1136
+ }
1137
+ },
1138
+ "node_modules/vfile-message": {
1139
+ "version": "4.0.3",
1140
+ "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.3.tgz",
1141
+ "integrity": "sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==",
1142
+ "license": "MIT",
1143
+ "dependencies": {
1144
+ "@types/unist": "^3.0.0",
1145
+ "unist-util-stringify-position": "^4.0.0"
1146
+ },
1147
+ "funding": {
1148
+ "type": "opencollective",
1149
+ "url": "https://opencollective.com/unified"
1150
+ }
1151
+ },
1152
+ "node_modules/zwitch": {
1153
+ "version": "2.0.4",
1154
+ "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz",
1155
+ "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==",
1156
+ "license": "MIT",
1157
+ "funding": {
1158
+ "type": "github",
1159
+ "url": "https://github.com/sponsors/wooorm"
1160
+ }
1161
+ }
1162
+ }
1163
+ }