@stackonward/cli 0.0.1 → 1.0.0
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.
- package/dist/index.js +4588 -205
- package/dist/index.js.map +1 -1
- package/dist/resources/apple/.claude/docs/architecture-template.md +54 -0
- package/dist/resources/apple/.claude/docs/architecture.md +52 -0
- package/dist/resources/apple/.claude/docs/index.md +13 -0
- package/dist/resources/apple/.claude/docs/security-lifecycle.md +57 -0
- package/dist/resources/apple/.claude/docs/stack.md +93 -0
- package/dist/resources/apple/.claude/docs/verification.md +63 -0
- package/dist/resources/apple/AGENTS.md +397 -0
- package/dist/resources/apple/CLAUDE.md +397 -0
- package/dist/resources/apple/Gemfile +2 -0
- package/dist/resources/apple/Gemfile.lock +365 -0
- package/dist/resources/apple/_gitignore +14 -0
- package/dist/resources/apple/fastlane/Fastfile +123 -0
- package/dist/resources/components/nuxt/site-source/app/app.vue +42 -0
- package/dist/resources/components/nuxt/site-source/app/assets/css/site-shell.css +1035 -0
- package/dist/resources/components/nuxt/site-source/app/assets/icons/brand/.gitkeep +0 -0
- package/dist/resources/components/nuxt/site-source/app/assets/icons/common/.gitkeep +0 -0
- package/dist/resources/components/nuxt/site-source/app/components/site/ApplicationHeader.vue +35 -0
- package/dist/resources/components/nuxt/site-source/app/components/site/ApplicationShell.vue +56 -0
- package/dist/resources/components/nuxt/site-source/app/components/site/ApplicationSidebar.vue +40 -0
- package/dist/resources/components/nuxt/site-source/app/components/site/BackToTop.vue +42 -0
- package/dist/resources/components/nuxt/site-source/app/components/site/ContentArticlePage.vue +40 -0
- package/dist/resources/components/nuxt/site-source/app/components/site/ContentListPage.vue +30 -0
- package/dist/resources/components/nuxt/site-source/app/components/site/CookieConsent.vue +18 -0
- package/dist/resources/components/nuxt/site-source/app/components/site/MarketingFooter.vue +52 -0
- package/dist/resources/components/nuxt/site-source/app/components/site/MarketingHeader.vue +106 -0
- package/dist/resources/components/nuxt/site-source/app/components/site/MarketingShell.vue +35 -0
- package/dist/resources/components/nuxt/site-source/app/components/site/SiteBrand.vue +10 -0
- package/dist/resources/components/nuxt/site-source/app/components/site/StaticPage.vue +21 -0
- package/dist/resources/components/nuxt/site-source/app/components/site/ToastViewport.vue +25 -0
- package/dist/resources/components/nuxt/site-source/app/components/ui/BaseButton.vue +86 -0
- package/dist/resources/components/nuxt/site-source/app/components/ui/BaseGradientBorder.vue +59 -0
- package/dist/resources/components/nuxt/site-source/app/components/ui/BaseModal.vue +131 -0
- package/dist/resources/components/nuxt/site-source/app/components/ui/BasePopover.vue +150 -0
- package/dist/resources/components/nuxt/site-source/app/components/ui/BaseText.vue +138 -0
- package/dist/resources/components/nuxt/site-source/app/components/ui/CheckoutStatus.vue +112 -0
- package/dist/resources/components/nuxt/site-source/app/components/ui/CheckoutSummary.vue +172 -0
- package/dist/resources/components/nuxt/site-source/app/components/ui/GoogleSignInButton.vue +113 -0
- package/dist/resources/components/nuxt/site-source/app/components/ui/InfiniteScroll.vue +123 -0
- package/dist/resources/components/nuxt/site-source/app/components/ui/YoutubeEmbed.vue +126 -0
- package/dist/resources/components/nuxt/site-source/app/composables/useAnalytics.ts +24 -0
- package/dist/resources/components/nuxt/site-source/app/composables/useCheckout.ts +121 -0
- package/dist/resources/components/nuxt/site-source/app/composables/useConsent.ts +31 -0
- package/dist/resources/components/nuxt/site-source/app/composables/useGoogleIdentity.ts +163 -0
- package/dist/resources/components/nuxt/site-source/app/composables/useNavigation.ts +11 -0
- package/dist/resources/components/nuxt/site-source/app/composables/useSeo.ts +33 -0
- package/dist/resources/components/nuxt/site-source/app/composables/useSiteShell.ts +58 -0
- package/dist/resources/components/nuxt/site-source/app/composables/useToasts.ts +48 -0
- package/dist/resources/components/nuxt/site-source/app/layouts/app.vue +5 -0
- package/dist/resources/components/nuxt/site-source/app/layouts/default.vue +5 -0
- package/dist/resources/components/nuxt/site-source/app/plugins/analytics.client.ts +121 -0
- package/dist/resources/components/nuxt/site-source/app/plugins/google-identity.client.ts +24 -0
- package/dist/resources/components/nuxt/site-source/app/theme/accordion.ts +9 -0
- package/dist/resources/components/nuxt/site-source/app/theme/breadcrumb.ts +8 -0
- package/dist/resources/components/nuxt/site-source/app/theme/button.ts +92 -0
- package/dist/resources/components/nuxt/site-source/app/theme/carousel.ts +11 -0
- package/dist/resources/components/nuxt/site-source/app/theme/checkbox.ts +12 -0
- package/dist/resources/components/nuxt/site-source/app/theme/index.ts +30 -0
- package/dist/resources/components/nuxt/site-source/app/theme/input.ts +47 -0
- package/dist/resources/components/nuxt/site-source/app/theme/modal.ts +9 -0
- package/dist/resources/components/nuxt/site-source/app/theme/pagination.ts +6 -0
- package/dist/resources/components/nuxt/site-source/app/theme/select.ts +23 -0
- package/dist/resources/components/nuxt/site-source/app/theme/stepper.ts +10 -0
- package/dist/resources/components/nuxt/site-source/app/theme/toast.ts +8 -0
- package/dist/resources/components/nuxt/site-source/app/theme/tooltip.ts +6 -0
- package/dist/resources/components/nuxt/site-source/app/types/site-shell.ts +85 -0
- package/dist/resources/components/react/ui/Button.tsx +73 -0
- package/dist/resources/components/react/ui/Input.tsx +44 -0
- package/dist/resources/components/registry.json +355 -0
- package/dist/resources/components/vue/feedback/Toast.vue +120 -0
- package/dist/resources/components/vue/feedback/useToast.ts +70 -0
- package/dist/resources/components/vue/media/FileUpload.vue +229 -0
- package/dist/resources/components/vue/media/VideoPlayer.vue +157 -0
- package/dist/resources/components/vue/ui/AppImage.vue +147 -0
- package/dist/resources/components/vue/ui/BottomSheet.vue +217 -0
- package/dist/resources/components/vue/ui/Button.vue +154 -0
- package/dist/resources/components/vue/ui/Card.vue +111 -0
- package/dist/resources/components/vue/ui/Input.vue +113 -0
- package/dist/resources/components/vue/ui/Modal.vue +193 -0
- package/dist/resources/components/vue/ui/ScrollArea.vue +163 -0
- package/dist/resources/components/vue/ui/Tooltip.vue +115 -0
- package/dist/resources/registry.json +158 -0
- package/dist/resources/snippets/node/cache.ts +116 -0
- package/dist/resources/snippets/node/date.ts +126 -0
- package/dist/resources/snippets/node/logger.ts +104 -0
- package/dist/resources/snippets/node/validation.ts +132 -0
- package/dist/resources/snippets/react/useDebounce.ts +90 -0
- package/dist/resources/snippets/registry.json +65 -0
- package/dist/resources/snippets/vue/useAsync.ts +96 -0
- package/dist/resources/snippets/vue/usePagination.ts +102 -0
- package/dist/resources/templates/base/.claude/docs/architecture-template.md +459 -0
- package/dist/resources/templates/base/.claude/docs/architecture.md +137 -0
- package/dist/resources/templates/base/.claude/docs/index.md +42 -0
- package/dist/resources/templates/base/.claude/docs/security-lifecycle.md +129 -0
- package/dist/resources/templates/base/.claude/docs/verification.md +121 -0
- package/dist/resources/templates/base/AGENTS.md +415 -0
- package/dist/resources/templates/base/CLAUDE.md +415 -0
- package/dist/resources/templates/go-backend/.claude/docs/api-design.md +486 -0
- package/dist/resources/templates/go-backend/.claude/docs/architecture-template.md +449 -0
- package/dist/resources/templates/go-backend/.claude/docs/check-list.md +155 -0
- package/dist/resources/templates/go-backend/.claude/docs/database.md +369 -0
- package/dist/resources/templates/go-backend/.claude/docs/e2e-standards.md +161 -0
- package/dist/resources/templates/go-backend/.claude/docs/error-handling.md +558 -0
- package/dist/resources/templates/go-backend/.claude/docs/event-runtime-boundary.md +124 -0
- package/dist/resources/templates/go-backend/.claude/docs/identifier-contract.md +195 -0
- package/dist/resources/templates/go-backend/.claude/docs/index.md +22 -0
- package/dist/resources/templates/go-backend/.claude/docs/logging.md +314 -0
- package/dist/resources/templates/go-backend/.claude/docs/mediagen-provider-onboarding-sop.md +917 -0
- package/dist/resources/templates/go-backend/.claude/docs/mediagen-provider-quick-reference.md +195 -0
- package/dist/resources/templates/go-backend/.claude/docs/module-standards.md +309 -0
- package/dist/resources/templates/go-backend/.claude/docs/openapi-contract.md +141 -0
- package/dist/resources/templates/go-backend/.claude/docs/payment-gateway-onboarding.md +283 -0
- package/dist/resources/templates/go-backend/.claude/docs/platform-boundary.md +191 -0
- package/dist/resources/templates/go-backend/.claude/docs/quality-gates.md +112 -0
- package/dist/resources/templates/go-backend/.dockerignore +6 -0
- package/dist/resources/templates/go-backend/.env.example +13 -0
- package/dist/resources/templates/go-backend/.gitattributes +2 -0
- package/dist/resources/templates/go-backend/AGENTS.md +1139 -0
- package/dist/resources/templates/go-backend/CLAUDE.md +1139 -0
- package/dist/resources/templates/go-backend/Dockerfile +14 -0
- package/dist/resources/templates/go-backend/Makefile +71 -0
- package/dist/resources/templates/go-backend/README.md +66 -0
- package/dist/resources/templates/go-backend/_gitignore +10 -0
- package/dist/resources/templates/go-backend/api/openapi/README.md +29 -0
- package/dist/resources/templates/go-backend/api/openapi/dist/artifact-manifest.json +19 -0
- package/dist/resources/templates/go-backend/api/openapi/dist/conformance-matrix.json +276 -0
- package/dist/resources/templates/go-backend/api/openapi/document.go +30 -0
- package/dist/resources/templates/go-backend/api/openapi/package.json +28 -0
- package/dist/resources/templates/go-backend/api/openapi/pnpm-lock.yaml +3052 -0
- package/dist/resources/templates/go-backend/api/openapi/redocly-source.yaml +18 -0
- package/dist/resources/templates/go-backend/api/openapi/redocly.yaml +8 -0
- package/dist/resources/templates/go-backend/api/openapi/sdk-generators.json +16 -0
- package/dist/resources/templates/go-backend/api/openapi/service-registry.json +39 -0
- package/dist/resources/templates/go-backend/api/openapi/services/product-api/conformance/runtime.arazzo.yaml +65 -0
- package/dist/resources/templates/go-backend/api/openapi/services/product-api/dist/internal.openapi.json +327 -0
- package/dist/resources/templates/go-backend/api/openapi/services/product-api/dist/runtime-contract.json +56 -0
- package/dist/resources/templates/go-backend/api/openapi/services/product-api/openapi.yaml +222 -0
- package/dist/resources/templates/go-backend/api/openapi/services/worker/conformance/runtime.arazzo.yaml +65 -0
- package/dist/resources/templates/go-backend/api/openapi/services/worker/dist/internal.openapi.json +327 -0
- package/dist/resources/templates/go-backend/api/openapi/services/worker/dist/runtime-contract.json +56 -0
- package/dist/resources/templates/go-backend/api/openapi/services/worker/openapi.yaml +222 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/breaking.mjs +416 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/build.mjs +103 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/conformance_coverage.mjs +111 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/contract_compiler.mjs +62 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/contract_policy.mjs +208 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/delegated_contract.mjs +302 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/deterministic_archive.mjs +69 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/documentation_example_privacy.mjs +93 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/documentation_projection.mjs +498 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/documentation_quality.mjs +346 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/git_artifact_history.mjs +188 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/manifest.mjs +170 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/overlay.mjs +98 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/project.mjs +549 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/route_contract.mjs +156 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/runtime_conformance.mjs +193 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/scalar_asset_localization.mjs +164 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/sdk_generator.mjs +229 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/semantic_version.mjs +64 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/service_contract_inputs.mjs +16 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/test/breaking.test.mjs +365 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/test/build.test.mjs +42 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/test/conformance_coverage.test.mjs +88 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/test/contract_policy.test.mjs +257 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/test/delegated_contract.test.mjs +205 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/test/documentation_example_privacy.test.mjs +51 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/test/documentation_projection.test.mjs +368 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/test/documentation_quality.test.mjs +151 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/test/git_artifact_history.test.mjs +60 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/test/head_policy.test.mjs +8 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/test/overlay.test.mjs +44 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/test/projection.test.mjs +270 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/test/redocly_documentation_rules.test.mjs +146 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/test/release_manifest.test.mjs +76 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/test/route_contract.test.mjs +119 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/test/runtime_conformance.test.mjs +75 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/test/scalar_asset_localization.test.mjs +50 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/test/sdk_generator.test.mjs +31 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/test/semantic_version.test.mjs +60 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/test/service_contract_inputs.test.mjs +27 -0
- package/dist/resources/templates/go-backend/cmd/internal/runtime/resources.go +125 -0
- package/dist/resources/templates/go-backend/cmd/internal/runtime/runtime.go +102 -0
- package/dist/resources/templates/go-backend/cmd/internal/runtime/runtime_test.go +70 -0
- package/dist/resources/templates/go-backend/cmd/product-api/lifecycle_test.go +58 -0
- package/dist/resources/templates/go-backend/cmd/product-api/main.go +32 -0
- package/dist/resources/templates/go-backend/cmd/product-api/wire.go +13 -0
- package/dist/resources/templates/go-backend/cmd/product-api/wire_gen.go +94 -0
- package/dist/resources/templates/go-backend/cmd/worker/main.go +47 -0
- package/dist/resources/templates/go-backend/cmd/worker/wire.go +14 -0
- package/dist/resources/templates/go-backend/cmd/worker/wire_gen.go +111 -0
- package/dist/resources/templates/go-backend/configs/config.yaml +37 -0
- package/dist/resources/templates/go-backend/deployments/compose.yaml +71 -0
- package/dist/resources/templates/go-backend/docs/openapi-provenance.json +489 -0
- package/dist/resources/templates/go-backend/docs/runtime-provenance.json +175 -0
- package/dist/resources/templates/go-backend/docs/source-provenance.json +3568 -0
- package/dist/resources/templates/go-backend/docs/standards-provenance.json +1624 -0
- package/dist/resources/templates/go-backend/go.mod +256 -0
- package/dist/resources/templates/go-backend/go.sum +805 -0
- package/dist/resources/templates/go-backend/internal/common/canonicaljson/canonical.go +370 -0
- package/dist/resources/templates/go-backend/internal/common/canonicaljson/canonical_test.go +223 -0
- package/dist/resources/templates/go-backend/internal/common/checkoutbff/contracts.go +125 -0
- package/dist/resources/templates/go-backend/internal/common/checkoutbff/platform_client.go +212 -0
- package/dist/resources/templates/go-backend/internal/common/checkoutbff/platform_client_test.go +319 -0
- package/dist/resources/templates/go-backend/internal/common/contentaccess/contentaccess.go +50 -0
- package/dist/resources/templates/go-backend/internal/common/contracts/contact.go +85 -0
- package/dist/resources/templates/go-backend/internal/common/ctxutil/identity.go +20 -0
- package/dist/resources/templates/go-backend/internal/common/ctxutil/product.go +53 -0
- package/dist/resources/templates/go-backend/internal/common/enumdomain/payment.go +12 -0
- package/dist/resources/templates/go-backend/internal/common/enums/dto_admin.go +9 -0
- package/dist/resources/templates/go-backend/internal/common/enums/enum.go +1247 -0
- package/dist/resources/templates/go-backend/internal/common/enums/handler_admin.go +66 -0
- package/dist/resources/templates/go-backend/internal/common/enums/module.go +46 -0
- package/dist/resources/templates/go-backend/internal/common/enums/provider.go +10 -0
- package/dist/resources/templates/go-backend/internal/common/enums/register.go +11 -0
- package/dist/resources/templates/go-backend/internal/common/enums/register_audit.go +274 -0
- package/dist/resources/templates/go-backend/internal/common/enums/register_command_replay.go +12 -0
- package/dist/resources/templates/go-backend/internal/common/enums/register_config.go +27 -0
- package/dist/resources/templates/go-backend/internal/common/enums/register_locale.go +37 -0
- package/dist/resources/templates/go-backend/internal/common/enums/register_ops.go +14 -0
- package/dist/resources/templates/go-backend/internal/common/enums/register_outbox.go +15 -0
- package/dist/resources/templates/go-backend/internal/common/enums/register_rule_expression.go +63 -0
- package/dist/resources/templates/go-backend/internal/common/enums/registry.go +77 -0
- package/dist/resources/templates/go-backend/internal/common/httporigin/origin.go +62 -0
- package/dist/resources/templates/go-backend/internal/common/httporigin/origin_test.go +38 -0
- package/dist/resources/templates/go-backend/internal/common/iamcredential/plaintext.go +35 -0
- package/dist/resources/templates/go-backend/internal/common/iamcredential/plaintext_test.go +29 -0
- package/dist/resources/templates/go-backend/internal/common/iamscope/scope.go +212 -0
- package/dist/resources/templates/go-backend/internal/common/iamscope/scope_binding.go +26 -0
- package/dist/resources/templates/go-backend/internal/common/iamscope/scope_filter.go +173 -0
- package/dist/resources/templates/go-backend/internal/common/iamscope/scope_filter_test.go +279 -0
- package/dist/resources/templates/go-backend/internal/common/internalapi/authorization_details.go +10 -0
- package/dist/resources/templates/go-backend/internal/common/internalapi/route_permission_policies.go +660 -0
- package/dist/resources/templates/go-backend/internal/common/internalapi/route_permission_policies_test.go +331 -0
- package/dist/resources/templates/go-backend/internal/common/internalservice/audience_token_source.go +166 -0
- package/dist/resources/templates/go-backend/internal/common/internalservice/bootstrap_token_exchanger.go +183 -0
- package/dist/resources/templates/go-backend/internal/common/internalservice/bound_service_token_signer.go +52 -0
- package/dist/resources/templates/go-backend/internal/common/internalservice/delegated_access_token_exchanger.go +189 -0
- package/dist/resources/templates/go-backend/internal/common/internalservice/delegated_access_token_exchanger_test.go +159 -0
- package/dist/resources/templates/go-backend/internal/common/internalservice/product_scoped_service_token_signer.go +92 -0
- package/dist/resources/templates/go-backend/internal/common/internalservice/provider.go +25 -0
- package/dist/resources/templates/go-backend/internal/common/internalservice/request_signer.go +86 -0
- package/dist/resources/templates/go-backend/internal/common/internalservice/resolver.go +69 -0
- package/dist/resources/templates/go-backend/internal/common/internalservice/resolver_test.go +42 -0
- package/dist/resources/templates/go-backend/internal/common/internalservice/route_scope.go +95 -0
- package/dist/resources/templates/go-backend/internal/common/internalservice/route_scope_test.go +78 -0
- package/dist/resources/templates/go-backend/internal/common/internalservice/service_identity_test.go +387 -0
- package/dist/resources/templates/go-backend/internal/common/jsonschema/compiler.go +100 -0
- package/dist/resources/templates/go-backend/internal/common/jsonschema/compiler_test.go +41 -0
- package/dist/resources/templates/go-backend/internal/common/jwksapi/handler.go +83 -0
- package/dist/resources/templates/go-backend/internal/common/jwksapi/handler_test.go +104 -0
- package/dist/resources/templates/go-backend/internal/common/locale/locale.go +145 -0
- package/dist/resources/templates/go-backend/internal/common/locale/locale_test.go +75 -0
- package/dist/resources/templates/go-backend/internal/common/mediaref/mediaref.go +54 -0
- package/dist/resources/templates/go-backend/internal/common/mediaref/mediaref_test.go +77 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/apikey_auth.go +320 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/apikey_throttle.go +158 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/auth.go +40 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/auth_test.go +50 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/client_context.go +86 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/cors.go +68 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/event_context.go +18 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/gateway_identity.go +279 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/helpers.go +159 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/iam_delegated_route_permission.go +171 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/iam_delegated_token_auth.go +151 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/iam_delegated_token_auth_test.go +99 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/iam_service_identity.go +138 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/iam_service_token_auth.go +74 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/idempotent.go +273 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/idempotent_test.go +83 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/internal_route_permission.go +45 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/internal_route_permission_test.go +186 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/logging.go +191 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/metrics.go +45 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/middleware_test.go +1516 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/principal_context.go +160 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/principal_context_test.go +355 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/product_context.go +100 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/recovery.go +40 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/referral_attribution.go +178 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/requestid.go +48 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/resource_permission.go +790 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/resource_permission_test.go +440 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/service_credential_auth.go +67 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/tenant.go +148 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/throttle.go +310 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/trusted_client_ip.go +23 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/trusted_client_ip_test.go +60 -0
- package/dist/resources/templates/go-backend/internal/common/money/currency.go +25 -0
- package/dist/resources/templates/go-backend/internal/common/money/errors.go +23 -0
- package/dist/resources/templates/go-backend/internal/common/money/format.go +123 -0
- package/dist/resources/templates/go-backend/internal/common/money/format_test.go +204 -0
- package/dist/resources/templates/go-backend/internal/common/money/gateway.go +144 -0
- package/dist/resources/templates/go-backend/internal/common/money/gateway_test.go +165 -0
- package/dist/resources/templates/go-backend/internal/common/money/rounding.go +56 -0
- package/dist/resources/templates/go-backend/internal/common/money/rounding_test.go +51 -0
- package/dist/resources/templates/go-backend/internal/common/principal/context.go +56 -0
- package/dist/resources/templates/go-backend/internal/common/principal/principal.go +49 -0
- package/dist/resources/templates/go-backend/internal/common/productcode/code.go +24 -0
- package/dist/resources/templates/go-backend/internal/common/productcode/code_test.go +35 -0
- package/dist/resources/templates/go-backend/internal/common/providerconfig/schema.go +577 -0
- package/dist/resources/templates/go-backend/internal/common/providerconfig/schema_test.go +47 -0
- package/dist/resources/templates/go-backend/internal/common/requestprivacy/request.go +246 -0
- package/dist/resources/templates/go-backend/internal/common/requestprivacy/request_test.go +170 -0
- package/dist/resources/templates/go-backend/internal/common/response/pagination.go +60 -0
- package/dist/resources/templates/go-backend/internal/common/response/response.go +110 -0
- package/dist/resources/templates/go-backend/internal/common/response/response_test.go +463 -0
- package/dist/resources/templates/go-backend/internal/common/ruleexpression/ast.go +141 -0
- package/dist/resources/templates/go-backend/internal/common/ruleexpression/ast_test.go +81 -0
- package/dist/resources/templates/go-backend/internal/common/ruleexpression/canonical.go +184 -0
- package/dist/resources/templates/go-backend/internal/common/ruleexpression/canonical_test.go +319 -0
- package/dist/resources/templates/go-backend/internal/common/ruleexpression/decoder.go +555 -0
- package/dist/resources/templates/go-backend/internal/common/ruleexpression/decoder_test.go +260 -0
- package/dist/resources/templates/go-backend/internal/common/ruleexpression/errors.go +55 -0
- package/dist/resources/templates/go-backend/internal/common/ruleexpression/evaluator.go +96 -0
- package/dist/resources/templates/go-backend/internal/common/ruleexpression/evaluator_test.go +220 -0
- package/dist/resources/templates/go-backend/internal/common/ruleexpression/fuzz_test.go +116 -0
- package/dist/resources/templates/go-backend/internal/common/ruleexpression/limits.go +331 -0
- package/dist/resources/templates/go-backend/internal/common/ruleexpression/schema.go +412 -0
- package/dist/resources/templates/go-backend/internal/common/ruleexpression/schema_test.go +164 -0
- package/dist/resources/templates/go-backend/internal/common/runtimeinput/runtime_input.go +627 -0
- package/dist/resources/templates/go-backend/internal/common/runtimeinput/runtime_input_test.go +245 -0
- package/dist/resources/templates/go-backend/internal/common/semver/errors.go +6 -0
- package/dist/resources/templates/go-backend/internal/common/semver/semver.go +125 -0
- package/dist/resources/templates/go-backend/internal/common/semver/semver_test.go +205 -0
- package/dist/resources/templates/go-backend/internal/common/serviceidentity/audience.go +48 -0
- package/dist/resources/templates/go-backend/internal/common/serviceidentity/audience_test.go +35 -0
- package/dist/resources/templates/go-backend/internal/common/serviceidentity/resource_identifier.go +33 -0
- package/dist/resources/templates/go-backend/internal/common/serviceidentity/resource_identifier_test.go +32 -0
- package/dist/resources/templates/go-backend/internal/common/tradeno/generator.go +99 -0
- package/dist/resources/templates/go-backend/internal/common/tradeno/generator_test.go +396 -0
- package/dist/resources/templates/go-backend/internal/common/tradeno/prefix.go +247 -0
- package/dist/resources/templates/go-backend/internal/common/types/asset_url.go +11 -0
- package/dist/resources/templates/go-backend/internal/common/types/billing.go +89 -0
- package/dist/resources/templates/go-backend/internal/common/types/billing_test.go +77 -0
- package/dist/resources/templates/go-backend/internal/common/types/country.go +74 -0
- package/dist/resources/templates/go-backend/internal/common/types/country_test.go +28 -0
- package/dist/resources/templates/go-backend/internal/common/types/currency.go +60 -0
- package/dist/resources/templates/go-backend/internal/common/types/identifiers.go +41 -0
- package/dist/resources/templates/go-backend/internal/common/types/operator.go +28 -0
- package/dist/resources/templates/go-backend/internal/common/types/subscription_entitlement.go +24 -0
- package/dist/resources/templates/go-backend/internal/common/types/subscription_entitlement_test.go +35 -0
- package/dist/resources/templates/go-backend/internal/common/types/tier.go +72 -0
- package/dist/resources/templates/go-backend/internal/common/types/types.go +411 -0
- package/dist/resources/templates/go-backend/internal/common/types/types_test.go +295 -0
- package/dist/resources/templates/go-backend/internal/common/utils/constants.go +100 -0
- package/dist/resources/templates/go-backend/internal/common/utils/crypto.go +158 -0
- package/dist/resources/templates/go-backend/internal/common/utils/crypto_test.go +345 -0
- package/dist/resources/templates/go-backend/internal/common/utils/duration.go +25 -0
- package/dist/resources/templates/go-backend/internal/common/utils/helpers.go +18 -0
- package/dist/resources/templates/go-backend/internal/common/utils/json.go +62 -0
- package/dist/resources/templates/go-backend/internal/common/utils/json_test.go +76 -0
- package/dist/resources/templates/go-backend/internal/common/utils/pagination.go +51 -0
- package/dist/resources/templates/go-backend/internal/common/utils/pagination_test.go +45 -0
- package/dist/resources/templates/go-backend/internal/common/utils/pointer.go +107 -0
- package/dist/resources/templates/go-backend/internal/common/utils/pointer_test.go +15 -0
- package/dist/resources/templates/go-backend/internal/common/utils/slice.go +24 -0
- package/dist/resources/templates/go-backend/internal/common/utils/snowflake.go +110 -0
- package/dist/resources/templates/go-backend/internal/common/utils/snowflake_test.go +316 -0
- package/dist/resources/templates/go-backend/internal/common/utils/string.go +16 -0
- package/dist/resources/templates/go-backend/internal/common/utils/timefmt.go +42 -0
- package/dist/resources/templates/go-backend/internal/common/validator/validator.go +136 -0
- package/dist/resources/templates/go-backend/internal/common/validator/validator_test.go +240 -0
- package/dist/resources/templates/go-backend/internal/common/youtubeapi/client.go +224 -0
- package/dist/resources/templates/go-backend/internal/core/apicontract/document.go +269 -0
- package/dist/resources/templates/go-backend/internal/core/apicontract/document_test.go +104 -0
- package/dist/resources/templates/go-backend/internal/core/apicontract/route_validator.go +78 -0
- package/dist/resources/templates/go-backend/internal/core/apicontract/route_validator_test.go +108 -0
- package/dist/resources/templates/go-backend/internal/core/apidocs/assets/scalar-api-reference.js +2385 -0
- package/dist/resources/templates/go-backend/internal/core/apidocs/assets/scalar-api-reference.metadata.json +10 -0
- package/dist/resources/templates/go-backend/internal/core/apidocs/route.go +107 -0
- package/dist/resources/templates/go-backend/internal/core/apidocs/route_test.go +200 -0
- package/dist/resources/templates/go-backend/internal/core/apidocs/scalar.go +117 -0
- package/dist/resources/templates/go-backend/internal/core/apidocs/scalar_test.go +99 -0
- package/dist/resources/templates/go-backend/internal/core/audit/access_log_policy.go +91 -0
- package/dist/resources/templates/go-backend/internal/core/audit/access_log_policy_test.go +51 -0
- package/dist/resources/templates/go-backend/internal/core/audit/actor_resolver.go +36 -0
- package/dist/resources/templates/go-backend/internal/core/audit/constants.go +30 -0
- package/dist/resources/templates/go-backend/internal/core/audit/context.go +119 -0
- package/dist/resources/templates/go-backend/internal/core/audit/context_test.go +310 -0
- package/dist/resources/templates/go-backend/internal/core/audit/dto.go +468 -0
- package/dist/resources/templates/go-backend/internal/core/audit/dto_admin.go +172 -0
- package/dist/resources/templates/go-backend/internal/core/audit/enum.go +460 -0
- package/dist/resources/templates/go-backend/internal/core/audit/enum_test.go +314 -0
- package/dist/resources/templates/go-backend/internal/core/audit/errors.go +9 -0
- package/dist/resources/templates/go-backend/internal/core/audit/handler.go +568 -0
- package/dist/resources/templates/go-backend/internal/core/audit/listener.go +319 -0
- package/dist/resources/templates/go-backend/internal/core/audit/listener_test.go +98 -0
- package/dist/resources/templates/go-backend/internal/core/audit/middleware.go +669 -0
- package/dist/resources/templates/go-backend/internal/core/audit/middleware_test.go +268 -0
- package/dist/resources/templates/go-backend/internal/core/audit/model.go +306 -0
- package/dist/resources/templates/go-backend/internal/core/audit/partition_job.go +316 -0
- package/dist/resources/templates/go-backend/internal/core/audit/ports.go +9 -0
- package/dist/resources/templates/go-backend/internal/core/audit/provider.go +30 -0
- package/dist/resources/templates/go-backend/internal/core/audit/repository.go +1007 -0
- package/dist/resources/templates/go-backend/internal/core/audit/repository_test.go +934 -0
- package/dist/resources/templates/go-backend/internal/core/audit/router.go +85 -0
- package/dist/resources/templates/go-backend/internal/core/audit/service.go +770 -0
- package/dist/resources/templates/go-backend/internal/core/audit/service_test.go +331 -0
- package/dist/resources/templates/go-backend/internal/core/audit/vo_admin.go +475 -0
- package/dist/resources/templates/go-backend/internal/core/cache/config.go +30 -0
- package/dist/resources/templates/go-backend/internal/core/cache/key.go +41 -0
- package/dist/resources/templates/go-backend/internal/core/cache/key_test.go +62 -0
- package/dist/resources/templates/go-backend/internal/core/cache/l1.go +153 -0
- package/dist/resources/templates/go-backend/internal/core/cache/l1_test.go +212 -0
- package/dist/resources/templates/go-backend/internal/core/cache/manager.go +278 -0
- package/dist/resources/templates/go-backend/internal/core/cache/manager_provider.go +24 -0
- package/dist/resources/templates/go-backend/internal/core/cache/metrics.go +126 -0
- package/dist/resources/templates/go-backend/internal/core/cache/namespace.go +46 -0
- package/dist/resources/templates/go-backend/internal/core/cache/namespace_test.go +90 -0
- package/dist/resources/templates/go-backend/internal/core/cache/options.go +39 -0
- package/dist/resources/templates/go-backend/internal/core/cache/options_test.go +96 -0
- package/dist/resources/templates/go-backend/internal/core/cache/redis.go +311 -0
- package/dist/resources/templates/go-backend/internal/core/cache/redis_test.go +51 -0
- package/dist/resources/templates/go-backend/internal/core/cache/serializer.go +31 -0
- package/dist/resources/templates/go-backend/internal/core/cache/serializer_test.go +139 -0
- package/dist/resources/templates/go-backend/internal/core/cache/singleflight.go +53 -0
- package/dist/resources/templates/go-backend/internal/core/cache/singleflight_test.go +211 -0
- package/dist/resources/templates/go-backend/internal/core/cache/warming.go +86 -0
- package/dist/resources/templates/go-backend/internal/core/clock/clock.go +66 -0
- package/dist/resources/templates/go-backend/internal/core/clock/clock_test.go +26 -0
- package/dist/resources/templates/go-backend/internal/core/clock/runtime_clock.go +283 -0
- package/dist/resources/templates/go-backend/internal/core/clock/runtime_clock_test.go +98 -0
- package/dist/resources/templates/go-backend/internal/core/commandreplay/errors.go +6 -0
- package/dist/resources/templates/go-backend/internal/core/commandreplay/model.go +90 -0
- package/dist/resources/templates/go-backend/internal/core/commandreplay/model_test.go +79 -0
- package/dist/resources/templates/go-backend/internal/core/commandreplay/namespace.go +7 -0
- package/dist/resources/templates/go-backend/internal/core/commandreplay/persistence.go +269 -0
- package/dist/resources/templates/go-backend/internal/core/commandreplay/persistence_test.go +185 -0
- package/dist/resources/templates/go-backend/internal/core/commandreplay/provider.go +9 -0
- package/dist/resources/templates/go-backend/internal/core/commandreplay/repository.go +22 -0
- package/dist/resources/templates/go-backend/internal/core/commandreplay/service.go +853 -0
- package/dist/resources/templates/go-backend/internal/core/commandreplay/service_persistence_test.go +432 -0
- package/dist/resources/templates/go-backend/internal/core/commandreplay/service_test.go +891 -0
- package/dist/resources/templates/go-backend/internal/core/commandreplay/types.go +121 -0
- package/dist/resources/templates/go-backend/internal/core/config/config.go +2069 -0
- package/dist/resources/templates/go-backend/internal/core/config/config_test.go +1122 -0
- package/dist/resources/templates/go-backend/internal/core/config/contract/contract_test.go +388 -0
- package/dist/resources/templates/go-backend/internal/core/config/contract/docs.go +198 -0
- package/dist/resources/templates/go-backend/internal/core/config/contract/verify.go +424 -0
- package/dist/resources/templates/go-backend/internal/core/config/enum.go +46 -0
- package/dist/resources/templates/go-backend/internal/core/config/metadata.go +717 -0
- package/dist/resources/templates/go-backend/internal/core/config/metadata_test.go +228 -0
- package/dist/resources/templates/go-backend/internal/core/config/product_admin_config_test.go +210 -0
- package/dist/resources/templates/go-backend/internal/core/crypto/aes_gcm.go +111 -0
- package/dist/resources/templates/go-backend/internal/core/crypto/aes_gcm_test.go +364 -0
- package/dist/resources/templates/go-backend/internal/core/crypto/encryptor.go +12 -0
- package/dist/resources/templates/go-backend/internal/core/crypto/envelope_encryptor.go +134 -0
- package/dist/resources/templates/go-backend/internal/core/crypto/envelope_encryptor_test.go +118 -0
- package/dist/resources/templates/go-backend/internal/core/crypto/pem.go +112 -0
- package/dist/resources/templates/go-backend/internal/core/crypto/pem_test.go +44 -0
- package/dist/resources/templates/go-backend/internal/core/crypto/provider.go +130 -0
- package/dist/resources/templates/go-backend/internal/core/crypto/provider_test.go +92 -0
- package/dist/resources/templates/go-backend/internal/core/database/base_model.go +24 -0
- package/dist/resources/templates/go-backend/internal/core/database/clickhouse.go +121 -0
- package/dist/resources/templates/go-backend/internal/core/database/database.go +112 -0
- package/dist/resources/templates/go-backend/internal/core/database/database_logger_test.go +95 -0
- package/dist/resources/templates/go-backend/internal/core/database/errors.go +25 -0
- package/dist/resources/templates/go-backend/internal/core/database/metrics_plugin.go +105 -0
- package/dist/resources/templates/go-backend/internal/core/database/pool_collector.go +71 -0
- package/dist/resources/templates/go-backend/internal/core/database/read_replica.go +520 -0
- package/dist/resources/templates/go-backend/internal/core/database/transaction.go +170 -0
- package/dist/resources/templates/go-backend/internal/core/database/transaction_test.go +282 -0
- package/dist/resources/templates/go-backend/internal/core/distlock/lock.go +353 -0
- package/dist/resources/templates/go-backend/internal/core/distlock/lock_test.go +106 -0
- package/dist/resources/templates/go-backend/internal/core/errors/handler.go +189 -0
- package/dist/resources/templates/go-backend/internal/core/errors/handler_test.go +515 -0
- package/dist/resources/templates/go-backend/internal/core/eventbus/eventbus.go +667 -0
- package/dist/resources/templates/go-backend/internal/core/eventbus/eventbus_test.go +792 -0
- package/dist/resources/templates/go-backend/internal/core/eventstream/noop.go +22 -0
- package/dist/resources/templates/go-backend/internal/core/eventstream/provider.go +20 -0
- package/dist/resources/templates/go-backend/internal/core/eventstream/publisher.go +38 -0
- package/dist/resources/templates/go-backend/internal/core/eventstream/redis.go +109 -0
- package/dist/resources/templates/go-backend/internal/core/eventstream/routing.go +104 -0
- package/dist/resources/templates/go-backend/internal/core/eventstream/routing_test.go +71 -0
- package/dist/resources/templates/go-backend/internal/core/geoip/model.go +19 -0
- package/dist/resources/templates/go-backend/internal/core/geoip/service.go +88 -0
- package/dist/resources/templates/go-backend/internal/core/health/health.go +333 -0
- package/dist/resources/templates/go-backend/internal/core/health/health_test.go +27 -0
- package/dist/resources/templates/go-backend/internal/core/httpclient/client.go +772 -0
- package/dist/resources/templates/go-backend/internal/core/httpclient/client_test.go +287 -0
- package/dist/resources/templates/go-backend/internal/core/httpclient/download.go +578 -0
- package/dist/resources/templates/go-backend/internal/core/httpclient/download_test.go +374 -0
- package/dist/resources/templates/go-backend/internal/core/jwtkeyring/jwk.go +38 -0
- package/dist/resources/templates/go-backend/internal/core/jwtkeyring/keyring.go +144 -0
- package/dist/resources/templates/go-backend/internal/core/jwtkeyring/keyring_test.go +128 -0
- package/dist/resources/templates/go-backend/internal/core/jwtkeyring/registry.go +60 -0
- package/dist/resources/templates/go-backend/internal/core/logger/logger.go +53 -0
- package/dist/resources/templates/go-backend/internal/core/logger/logger_test.go +194 -0
- package/dist/resources/templates/go-backend/internal/core/observability/metrics.go +358 -0
- package/dist/resources/templates/go-backend/internal/core/observability/sentry.go +445 -0
- package/dist/resources/templates/go-backend/internal/core/observability/sentry_privacy_test.go +175 -0
- package/dist/resources/templates/go-backend/internal/core/observability/tracing.go +187 -0
- package/dist/resources/templates/go-backend/internal/core/outbox/model.go +314 -0
- package/dist/resources/templates/go-backend/internal/core/outbox/model_test.go +77 -0
- package/dist/resources/templates/go-backend/internal/core/outbox/persistence.go +51 -0
- package/dist/resources/templates/go-backend/internal/core/outbox/provider.go +23 -0
- package/dist/resources/templates/go-backend/internal/core/outbox/relay.go +1138 -0
- package/dist/resources/templates/go-backend/internal/core/outbox/relay_postgres_test.go +257 -0
- package/dist/resources/templates/go-backend/internal/core/outbox/relay_test.go +690 -0
- package/dist/resources/templates/go-backend/internal/core/outbox/rescheduler.go +164 -0
- package/dist/resources/templates/go-backend/internal/core/outbox/rescheduler_test.go +209 -0
- package/dist/resources/templates/go-backend/internal/core/outbox/writer.go +249 -0
- package/dist/resources/templates/go-backend/internal/core/outbox/writer_postgres_test.go +170 -0
- package/dist/resources/templates/go-backend/internal/core/outbox/writer_test.go +123 -0
- package/dist/resources/templates/go-backend/internal/core/provider.go +198 -0
- package/dist/resources/templates/go-backend/internal/core/queue/metrics_middleware.go +38 -0
- package/dist/resources/templates/go-backend/internal/core/queue/metrics_middleware_test.go +12 -0
- package/dist/resources/templates/go-backend/internal/core/queue/queue.go +288 -0
- package/dist/resources/templates/go-backend/internal/core/queue/queue_test.go +159 -0
- package/dist/resources/templates/go-backend/internal/core/resilience/bulkhead.go +514 -0
- package/dist/resources/templates/go-backend/internal/core/resilience/bulkhead_test.go +984 -0
- package/dist/resources/templates/go-backend/internal/core/resilience/circuitbreaker.go +358 -0
- package/dist/resources/templates/go-backend/internal/core/resilience/circuitbreaker_test.go +788 -0
- package/dist/resources/templates/go-backend/internal/core/resilience/retry.go +318 -0
- package/dist/resources/templates/go-backend/internal/core/resilience/retry_test.go +735 -0
- package/dist/resources/templates/go-backend/internal/core/schedule/recorder.go +305 -0
- package/dist/resources/templates/go-backend/internal/core/schedule/run_context.go +124 -0
- package/dist/resources/templates/go-backend/internal/core/schedule/run_context_test.go +85 -0
- package/dist/resources/templates/go-backend/internal/core/schedule/scheduler.go +1589 -0
- package/dist/resources/templates/go-backend/internal/core/schedule/scheduler_control_test.go +808 -0
- package/dist/resources/templates/go-backend/internal/core/storage/oss_provider.go +398 -0
- package/dist/resources/templates/go-backend/internal/core/storage/oss_provider_test.go +89 -0
- package/dist/resources/templates/go-backend/internal/core/storage/path.go +110 -0
- package/dist/resources/templates/go-backend/internal/core/storage/path_test.go +301 -0
- package/dist/resources/templates/go-backend/internal/core/storage/s3_provider.go +489 -0
- package/dist/resources/templates/go-backend/internal/core/storage/s3_provider_test.go +60 -0
- package/dist/resources/templates/go-backend/internal/core/storage/storage.go +268 -0
- package/dist/resources/templates/go-backend/internal/core/storage/validation.go +225 -0
- package/dist/resources/templates/go-backend/internal/core/storage/validation_test.go +495 -0
- package/dist/resources/templates/go-backend/internal/core/temporal/logger.go +38 -0
- package/dist/resources/templates/go-backend/internal/core/temporal/provider.go +126 -0
- package/dist/resources/templates/go-backend/internal/core/temporal/provider_test.go +67 -0
- package/dist/resources/templates/go-backend/internal/core/websocket/client.go +282 -0
- package/dist/resources/templates/go-backend/internal/core/websocket/client_test.go +81 -0
- package/dist/resources/templates/go-backend/internal/core/websocket/config.go +58 -0
- package/dist/resources/templates/go-backend/internal/core/websocket/handler.go +53 -0
- package/dist/resources/templates/go-backend/internal/core/websocket/hub.go +269 -0
- package/dist/resources/templates/go-backend/internal/core/websocket/message.go +273 -0
- package/dist/resources/templates/go-backend/internal/core/websocket/notifier.go +92 -0
- package/dist/resources/templates/go-backend/internal/core/websocket/provider.go +33 -0
- package/dist/resources/templates/go-backend/internal/integrations/onex/iam/action.go +77 -0
- package/dist/resources/templates/go-backend/internal/integrations/onex/iam/action_test.go +238 -0
- package/dist/resources/templates/go-backend/internal/integrations/onex/iam/condition.go +107 -0
- package/dist/resources/templates/go-backend/internal/integrations/onex/iam/decision.go +256 -0
- package/dist/resources/templates/go-backend/internal/integrations/onex/iam/enum.go +643 -0
- package/dist/resources/templates/go-backend/internal/integrations/onex/iam/errors.go +102 -0
- package/dist/resources/templates/go-backend/internal/integrations/onex/iam/principal_record.go +21 -0
- package/dist/resources/templates/go-backend/internal/integrations/onex/iam/product_context.go +486 -0
- package/dist/resources/templates/go-backend/internal/integrations/onex/iam/resource.go +215 -0
- package/dist/resources/templates/go-backend/internal/integrations/onex/iam/resource_test.go +242 -0
- package/dist/resources/templates/go-backend/internal/products/README.md +5 -0
- package/dist/resources/templates/go-backend/internal/sharedevents/README.md +5 -0
- package/dist/resources/templates/go-backend/migrations/000001_infrastructure.down.sql +13 -0
- package/dist/resources/templates/go-backend/migrations/000001_infrastructure.up.sql +886 -0
- package/dist/resources/templates/go-backend/pkg/apierror/error.go +327 -0
- package/dist/resources/templates/go-backend/pkg/apierror/error_code.go +65 -0
- package/dist/resources/templates/go-backend/pkg/apierror/error_test.go +41 -0
- package/dist/resources/templates/go-backend/pkg/apierror/error_type.go +14 -0
- package/dist/resources/templates/go-backend/pkg/apierror/http_response.go +216 -0
- package/dist/resources/templates/go-backend/pkg/apierror/http_response_test.go +216 -0
- package/dist/resources/templates/go-backend/scripts/check-openapi-clean-deletion.sh +54 -0
- package/dist/resources/templates/go-backend/scripts/test-migrations.sh +32 -0
- package/dist/resources/templates/go-backend/tests/infrastructure.sql +69 -0
- package/dist/resources/templates/mcp-server/.claude/docs/stack.md +338 -0
- package/dist/resources/templates/mcp-server/.editorconfig +13 -0
- package/dist/resources/templates/mcp-server/.env.example +8 -0
- package/dist/resources/templates/mcp-server/.github/ISSUE_TEMPLATE/bug_report.yml +104 -0
- package/dist/resources/templates/mcp-server/.github/ISSUE_TEMPLATE/feature_request.yml +54 -0
- package/dist/resources/templates/mcp-server/.github/PULL_REQUEST_TEMPLATE.md +36 -0
- package/dist/resources/templates/mcp-server/.github/workflows/ci.yml +78 -0
- package/dist/resources/templates/mcp-server/.husky/commit-msg +1 -0
- package/dist/resources/templates/mcp-server/.husky/pre-commit +1 -0
- package/dist/resources/templates/mcp-server/.lintstagedrc.json +4 -0
- package/dist/resources/templates/mcp-server/.nvmrc +1 -0
- package/dist/resources/templates/mcp-server/.prettierrc +8 -0
- package/dist/resources/templates/mcp-server/CONTRIBUTING.md +184 -0
- package/dist/resources/templates/mcp-server/Dockerfile +23 -0
- package/dist/resources/templates/mcp-server/LICENSE +21 -0
- package/dist/resources/templates/mcp-server/README.md +123 -0
- package/dist/resources/templates/mcp-server/_gitignore +26 -0
- package/dist/resources/templates/mcp-server/commitlint.config.js +24 -0
- package/dist/resources/templates/mcp-server/eslint.config.js +30 -0
- package/dist/resources/templates/mcp-server/package.json +72 -0
- package/dist/resources/templates/mcp-server/src/index.ts +27 -0
- package/dist/resources/templates/mcp-server/src/resources.ts +33 -0
- package/dist/resources/templates/mcp-server/src/services/.gitkeep +0 -0
- package/dist/resources/templates/mcp-server/src/tools.ts +43 -0
- package/dist/resources/templates/mcp-server/src/types/index.ts +19 -0
- package/dist/resources/templates/mcp-server/src/utils/index.ts +31 -0
- package/dist/resources/templates/mcp-server/tsconfig.json +22 -0
- package/dist/resources/templates/mcp-server/tsup.config.ts +14 -0
- package/dist/resources/templates/mcp-server/vitest.config.ts +15 -0
- package/dist/resources/templates/nuxt/.claude/docs/stack.md +666 -0
- package/dist/resources/templates/nuxt/.editorconfig +15 -0
- package/dist/resources/templates/nuxt/.env.example +22 -0
- package/dist/resources/templates/nuxt/.github/workflows/ci.yml +34 -0
- package/dist/resources/templates/nuxt/.husky/commit-msg +1 -0
- package/dist/resources/templates/nuxt/.husky/pre-commit +1 -0
- package/dist/resources/templates/nuxt/.nvmrc +1 -0
- package/dist/resources/templates/nuxt/.prettierignore +9 -0
- package/dist/resources/templates/nuxt/.prettierrc +1 -0
- package/dist/resources/templates/nuxt/README.md +23 -0
- package/dist/resources/templates/nuxt/_gitignore +7 -0
- package/dist/resources/templates/nuxt/app/app.config.ts +105 -0
- package/dist/resources/templates/nuxt/app/i18n/locales/en.json +5 -0
- package/dist/resources/templates/nuxt/app/pages/app/index.vue +224 -0
- package/dist/resources/templates/nuxt/app/pages/authors/[slug].vue +37 -0
- package/dist/resources/templates/nuxt/app/pages/blog/[slug].vue +55 -0
- package/dist/resources/templates/nuxt/app/pages/blog/category/[category].vue +38 -0
- package/dist/resources/templates/nuxt/app/pages/blog/index.vue +46 -0
- package/dist/resources/templates/nuxt/app/pages/index.vue +626 -0
- package/dist/resources/templates/nuxt/app/pages/legal/privacy.vue +21 -0
- package/dist/resources/templates/nuxt/app/pages/legal/terms.vue +21 -0
- package/dist/resources/templates/nuxt/app/pages/ui/index.vue +397 -0
- package/dist/resources/templates/nuxt/commitlint.config.mjs +1 -0
- package/dist/resources/templates/nuxt/eslint.config.mjs +4 -0
- package/dist/resources/templates/nuxt/lint-staged.config.mjs +8 -0
- package/dist/resources/templates/nuxt/nuxt.config.ts +71 -0
- package/dist/resources/templates/nuxt/package.json +67 -0
- package/dist/resources/templates/nuxt/public/apple-touch-icon.png +0 -0
- package/dist/resources/templates/nuxt/public/favicon.ico +0 -0
- package/dist/resources/templates/nuxt/public/favicon.svg +5 -0
- package/dist/resources/templates/nuxt/public/icon-16x16.png +0 -0
- package/dist/resources/templates/nuxt/public/icon-192x192.png +0 -0
- package/dist/resources/templates/nuxt/public/icon-32x32.png +0 -0
- package/dist/resources/templates/nuxt/public/icon-512x512.png +0 -0
- package/dist/resources/templates/nuxt/public/logo.svg +6 -0
- package/dist/resources/templates/nuxt/public/media/hero-product-gallery.png +0 -0
- package/dist/resources/templates/nuxt/server/api/content/sitemap-urls.get.ts +12 -0
- package/dist/resources/templates/nuxt/server/api/preview.get.ts +9 -0
- package/dist/resources/templates/nuxt/stylelint.config.mjs +3 -0
- package/dist/resources/templates/nuxt/test/e2e/rendering.test.ts +13 -0
- package/dist/resources/templates/nuxt/tsconfig.json +3 -0
- package/dist/resources/templates/nuxt/vitest.config.ts +8 -0
- package/package.json +16 -12
|
@@ -0,0 +1,3052 @@
|
|
|
1
|
+
lockfileVersion: '9.0'
|
|
2
|
+
|
|
3
|
+
settings:
|
|
4
|
+
autoInstallPeers: true
|
|
5
|
+
excludeLinksFromLockfile: false
|
|
6
|
+
|
|
7
|
+
importers:
|
|
8
|
+
|
|
9
|
+
.:
|
|
10
|
+
devDependencies:
|
|
11
|
+
'@hey-api/openapi-ts':
|
|
12
|
+
specifier: 0.99.0
|
|
13
|
+
version: 0.99.0(typescript@5.9.3)
|
|
14
|
+
'@redocly/cli':
|
|
15
|
+
specifier: 2.39.0
|
|
16
|
+
version: 2.39.0
|
|
17
|
+
'@scalar/api-reference':
|
|
18
|
+
specifier: 1.62.6
|
|
19
|
+
version: 1.62.6(tailwindcss@4.3.2)(typescript@5.9.3)(zod@4.4.3)
|
|
20
|
+
'@swaggerexpert/jsonpath':
|
|
21
|
+
specifier: 4.0.4
|
|
22
|
+
version: 4.0.4
|
|
23
|
+
ajv:
|
|
24
|
+
specifier: 8.20.0
|
|
25
|
+
version: 8.20.0
|
|
26
|
+
ajv-formats:
|
|
27
|
+
specifier: 3.0.1
|
|
28
|
+
version: 3.0.1(ajv@8.20.0)
|
|
29
|
+
typescript:
|
|
30
|
+
specifier: 5.9.3
|
|
31
|
+
version: 5.9.3
|
|
32
|
+
yaml:
|
|
33
|
+
specifier: 2.8.1
|
|
34
|
+
version: 2.8.1
|
|
35
|
+
|
|
36
|
+
packages:
|
|
37
|
+
|
|
38
|
+
'@ai-sdk/gateway@3.0.13':
|
|
39
|
+
resolution: {integrity: sha512-g7nE4PFtngOZNZSy1lOPpkC+FAiHxqBJXqyRMEG7NUrEVZlz5goBdtHg1YgWRJIX776JTXAmbOI5JreAKVAsVA==}
|
|
40
|
+
engines: {node: '>=18'}
|
|
41
|
+
peerDependencies:
|
|
42
|
+
zod: ^3.25.76 || ^4.1.8
|
|
43
|
+
|
|
44
|
+
'@ai-sdk/provider-utils@4.0.5':
|
|
45
|
+
resolution: {integrity: sha512-Ow/X/SEkeExTTc1x+nYLB9ZHK2WUId8+9TlkamAx7Tl9vxU+cKzWx2dwjgMHeCN6twrgwkLrrtqckQeO4mxgVA==}
|
|
46
|
+
engines: {node: '>=18'}
|
|
47
|
+
peerDependencies:
|
|
48
|
+
zod: ^3.25.76 || ^4.1.8
|
|
49
|
+
|
|
50
|
+
'@ai-sdk/provider@3.0.2':
|
|
51
|
+
resolution: {integrity: sha512-HrEmNt/BH/hkQ7zpi2o6N3k1ZR1QTb7z85WYhYygiTxOQuaml4CMtHCWRbric5WPU+RNsYI7r1EpyVQMKO1pYw==}
|
|
52
|
+
engines: {node: '>=18'}
|
|
53
|
+
|
|
54
|
+
'@ai-sdk/vue@3.0.33':
|
|
55
|
+
resolution: {integrity: sha512-czM9Js3a7f+Eo35gjEYEeJYUoPvMg5Dfi4bOLyDBghLqn0gaVg8yTmTaSuHCg+3K/+1xPjyXd4+2XcQIohWWiQ==}
|
|
56
|
+
engines: {node: '>=18'}
|
|
57
|
+
peerDependencies:
|
|
58
|
+
vue: ^3.3.4
|
|
59
|
+
|
|
60
|
+
'@babel/helper-string-parser@7.29.7':
|
|
61
|
+
resolution: {integrity: sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==}
|
|
62
|
+
engines: {node: '>=6.9.0'}
|
|
63
|
+
|
|
64
|
+
'@babel/helper-validator-identifier@7.29.7':
|
|
65
|
+
resolution: {integrity: sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==}
|
|
66
|
+
engines: {node: '>=6.9.0'}
|
|
67
|
+
|
|
68
|
+
'@babel/parser@7.29.7':
|
|
69
|
+
resolution: {integrity: sha512-hnORnjP/1P/zFEndoeX+n+t1RwWRJiJpM/jO7FW32Kn9r5+sJB2JWOdYo4L6k78j15eCwY3Gm/7364B1EMwtNg==}
|
|
70
|
+
engines: {node: '>=6.0.0'}
|
|
71
|
+
hasBin: true
|
|
72
|
+
|
|
73
|
+
'@babel/types@7.29.7':
|
|
74
|
+
resolution: {integrity: sha512-4zBIxpPzowiZpusoFkyGVwakdRJUyuH5PxQ/PrqghfdFWWasvnCdPfQXHrenDai+gyLARulZjZowCOj6fjT4pA==}
|
|
75
|
+
engines: {node: '>=6.9.0'}
|
|
76
|
+
|
|
77
|
+
'@codemirror/autocomplete@6.20.3':
|
|
78
|
+
resolution: {integrity: sha512-tlosUqb+3BbxCxZdu4tKeRghPFC+QM7q4X5YhKV2eCmPG+1r2F3f4AaSz5sCrFqUtX4Jh20VFTKecl16MgiV9g==}
|
|
79
|
+
|
|
80
|
+
'@codemirror/commands@6.10.4':
|
|
81
|
+
resolution: {integrity: sha512-Ryk9y9T0FFVF0cUGhAknveAyUOl/A1qReTFi+qPKtOh2Z9F4AUBz3XOrYD4ZEgZirdugVzHvd/2/Wcwy5OliTg==}
|
|
82
|
+
|
|
83
|
+
'@codemirror/lang-css@6.3.1':
|
|
84
|
+
resolution: {integrity: sha512-kr5fwBGiGtmz6l0LSJIbno9QrifNMUusivHbnA1H6Dmqy4HZFte3UAICix1VuKo0lMPKQr2rqB+0BkKi/S3Ejg==}
|
|
85
|
+
|
|
86
|
+
'@codemirror/lang-html@6.4.11':
|
|
87
|
+
resolution: {integrity: sha512-9NsXp7Nwp891pQchI7gPdTwBuSuT3K65NGTHWHNJ55HjYcHLllr0rbIZNdOzas9ztc1EUVBlHou85FFZS4BNnw==}
|
|
88
|
+
|
|
89
|
+
'@codemirror/lang-javascript@6.2.5':
|
|
90
|
+
resolution: {integrity: sha512-zD4e5mS+50htS7F+TYjBPsiIFGanfVqg4HyUz6WNFikgOPf2BgKlx+TQedI1w6n/IqRBVBbBWmGFdLB/7uxO4A==}
|
|
91
|
+
|
|
92
|
+
'@codemirror/lang-json@6.0.2':
|
|
93
|
+
resolution: {integrity: sha512-x2OtO+AvwEHrEwR0FyyPtfDUiloG3rnVTSZV1W8UteaLL8/MajQd8DpvUb2YVzC+/T18aSDv0H9mu+xw0EStoQ==}
|
|
94
|
+
|
|
95
|
+
'@codemirror/lang-xml@6.1.0':
|
|
96
|
+
resolution: {integrity: sha512-3z0blhicHLfwi2UgkZYRPioSgVTo9PV5GP5ducFH6FaHy0IAJRg+ixj5gTR1gnT/glAIC8xv4w2VL1LoZfs+Jg==}
|
|
97
|
+
|
|
98
|
+
'@codemirror/lang-yaml@6.1.3':
|
|
99
|
+
resolution: {integrity: sha512-AZ8DJBuXGVHybpBQhmZtgew5//4hv3tdkXnr3vDmOUMJRuB6vn/uuwtmTOTlqEaQFg3hQSVeA90NmvIQyUV6FQ==}
|
|
100
|
+
|
|
101
|
+
'@codemirror/language@6.12.4':
|
|
102
|
+
resolution: {integrity: sha512-1q4PaT+o6PbgpkJt4Q8Fv5XJxTy4FUZ4MWETtyiDw3J0Pyr9E2vqcKL+k9wcvjNTIsauxvE7OfmWj3FRPHQ76A==}
|
|
103
|
+
|
|
104
|
+
'@codemirror/lint@6.9.7':
|
|
105
|
+
resolution: {integrity: sha512-28/+iWLYxKxsvGYhSYL7zaCZqLz5+FFFDq9tVsvGv9kv8RY4fFAchJ5WX9M3YrrRlTIsECjsXPqeNgnSmNP2dg==}
|
|
106
|
+
|
|
107
|
+
'@codemirror/state@6.7.1':
|
|
108
|
+
resolution: {integrity: sha512-9QzNDgE4EYDnAHfrTlR2lwiPciiOymLtwKK+8yHQzCc7GXhAP9xdEbEJFy2IWB1j9UGUl9BsgMmTo/ImA02T7A==}
|
|
109
|
+
|
|
110
|
+
'@codemirror/view@6.43.6':
|
|
111
|
+
resolution: {integrity: sha512-EVunGSYN1wz1p75WY1s3Xg7t3i8Yol0kGZGizNdX9BUFgMFILYVe8/u6EVpo7Ff5PwbZuILb4QAq7IZoKzIEQA==}
|
|
112
|
+
|
|
113
|
+
'@floating-ui/core@1.8.0':
|
|
114
|
+
resolution: {integrity: sha512-0CIZ5itps/8x7BG8dEIhs53BvCUH2PCoogtakwRTut+Arm58sJooJ0AuZhLw2HJYIR5cMLNPBSS728sPho2khQ==}
|
|
115
|
+
|
|
116
|
+
'@floating-ui/dom@1.8.0':
|
|
117
|
+
resolution: {integrity: sha512-yXSrzeHZBTZadLOlfyhCkJHNeLJnHRnRInwdZ40L7ZiaAtrBwoYlsDrX3v5zB1Utk7CLfzcOVnVVWoXEky7Ceg==}
|
|
118
|
+
|
|
119
|
+
'@floating-ui/utils@0.2.10':
|
|
120
|
+
resolution: {integrity: sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==}
|
|
121
|
+
|
|
122
|
+
'@floating-ui/utils@0.2.12':
|
|
123
|
+
resolution: {integrity: sha512-HpCo8tmWzLVad5s2d19EhAz5zqrrQ6s69qd6moPMQvkOuSwDT1YgRfWSVuc4ennqrgv3OHppiOGMQ7oC13yIww==}
|
|
124
|
+
|
|
125
|
+
'@floating-ui/vue@1.1.11':
|
|
126
|
+
resolution: {integrity: sha512-HzHKCNVxnGS35r9fCHBc3+uCnjw9IWIlCPL683cGgM9Kgj2BiAl8x1mS7vtvP6F9S/e/q4O6MApwSHj8hNLGfw==}
|
|
127
|
+
|
|
128
|
+
'@floating-ui/vue@1.1.9':
|
|
129
|
+
resolution: {integrity: sha512-BfNqNW6KA83Nexspgb9DZuz578R7HT8MZw1CfK9I6Ah4QReNWEJsXWHN+SdmOVLNGmTPDi+fDT535Df5PzMLbQ==}
|
|
130
|
+
|
|
131
|
+
'@headlessui/tailwindcss@0.2.2':
|
|
132
|
+
resolution: {integrity: sha512-xNe42KjdyA4kfUKLLPGzME9zkH7Q3rOZ5huFihWNWOQFxnItxPB3/67yBI8/qBfY8nwBRx5GHn4VprsoluVMGw==}
|
|
133
|
+
engines: {node: '>=10'}
|
|
134
|
+
peerDependencies:
|
|
135
|
+
tailwindcss: ^3.0 || ^4.0
|
|
136
|
+
|
|
137
|
+
'@headlessui/vue@1.7.23':
|
|
138
|
+
resolution: {integrity: sha512-JzdCNqurrtuu0YW6QaDtR2PIYCKPUWq28csDyMvN4zmGccmE7lz40Is6hc3LA4HFeCI7sekZ/PQMTNmn9I/4Wg==}
|
|
139
|
+
engines: {node: '>=10'}
|
|
140
|
+
peerDependencies:
|
|
141
|
+
vue: ^3.2.0
|
|
142
|
+
|
|
143
|
+
'@hey-api/codegen-core@0.9.1':
|
|
144
|
+
resolution: {integrity: sha512-s97jL1dgTMuiMHv2BZ1X4Tgd99Mf9GOvGdNqNcGwIMmnR+PgYNoraj4Zvp134MKsNCap/m7k0r0vKKnl56pj4w==}
|
|
145
|
+
engines: {node: '>=22.18.0'}
|
|
146
|
+
|
|
147
|
+
'@hey-api/json-schema-ref-parser@1.4.4':
|
|
148
|
+
resolution: {integrity: sha512-otmd+zCxbYVBIp/mlMTnGkvlNYLkVKgs3VOIq0kSnenhB1+fRwLPQIeSwyWM6E51oXhUedkYjVsVpkVexeuJOA==}
|
|
149
|
+
engines: {node: '>=22.18.0'}
|
|
150
|
+
|
|
151
|
+
'@hey-api/openapi-ts@0.99.0':
|
|
152
|
+
resolution: {integrity: sha512-SePU/5oEWWkvUBYmvzdYRctseoLuskyhs4ET0RvLIcmzc8yLQoA2R+KtBIQ8bPsoSUB0m4E5SmBnl6aGSA0szQ==}
|
|
153
|
+
engines: {node: '>=22.18.0'}
|
|
154
|
+
hasBin: true
|
|
155
|
+
peerDependencies:
|
|
156
|
+
typescript: '>=5.5.3 || >=6.0.0 || 6.0.1-rc'
|
|
157
|
+
|
|
158
|
+
'@hey-api/shared@0.5.0':
|
|
159
|
+
resolution: {integrity: sha512-JN/j4Ebh4cJGYIQ5cwWuqe7GeSUyQoz7oC51WqyhKOcrejK6DKZMDkshc5d1eKTRuRL+rjozuRcoUaZZn2DGPw==}
|
|
160
|
+
engines: {node: '>=22.18.0'}
|
|
161
|
+
|
|
162
|
+
'@hey-api/spec-types@0.2.0':
|
|
163
|
+
resolution: {integrity: sha512-ibQ8Is7evMavzr8GNyJCcTg975d8DpaMUyLmOrQ85UBdy1l6t1KuRAwgChAbesJsIlNV6gjmlXruWyegDX18Fg==}
|
|
164
|
+
|
|
165
|
+
'@hey-api/types@0.1.4':
|
|
166
|
+
resolution: {integrity: sha512-thWfawrDIP7wSI9ioT13I5soaaqB5vAPIiZmgD8PbeEVKNrkonc0N/Sjj97ezl7oQgusZmaNphGdMKipPO6IBg==}
|
|
167
|
+
|
|
168
|
+
'@internationalized/date@3.12.2':
|
|
169
|
+
resolution: {integrity: sha512-FY1Y+H64NDs+HAF6omlnWxm3mEpfgaCSWtL5l551ZZfImA+kGjPFgrnJrGjH6lfmLL0g8Z/mBu1R3kufeCp6Jw==}
|
|
170
|
+
|
|
171
|
+
'@internationalized/number@3.6.7':
|
|
172
|
+
resolution: {integrity: sha512-3ji1fcrT+FPAK86UqEhB/psHixYo6niWPJtt7+qRaYFynt/BaJG8GhAPimtWUpEiVSTq8ZM8L5psMxGquiB/Vg==}
|
|
173
|
+
|
|
174
|
+
'@jridgewell/sourcemap-codec@1.5.5':
|
|
175
|
+
resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
|
|
176
|
+
|
|
177
|
+
'@jsdevtools/ono@7.1.3':
|
|
178
|
+
resolution: {integrity: sha512-4JQNk+3mVzK3xh2rqd6RB4J46qUR19azEHBneZyTZM+c456qOrbbM/5xcR8huNCCcbVt7+UmizG6GuUvPvKUYg==}
|
|
179
|
+
|
|
180
|
+
'@lezer/common@1.5.2':
|
|
181
|
+
resolution: {integrity: sha512-sxQE460fPZyU3sdc8lafxiPwJHBzZRy/udNFynGQky1SePYBdhkBl1kOagA9uT3pxR8K09bOrmTUqA9wb/PjSQ==}
|
|
182
|
+
|
|
183
|
+
'@lezer/css@1.3.4':
|
|
184
|
+
resolution: {integrity: sha512-N+tn9tej2hPvyKgHEApMOQfHczDJCwxrRFS3SPn9QjYN+uwHvEDnCgKRrb3mxDYxRS8sKMM8fhC3+lc04Abz5Q==}
|
|
185
|
+
|
|
186
|
+
'@lezer/highlight@1.2.3':
|
|
187
|
+
resolution: {integrity: sha512-qXdH7UqTvGfdVBINrgKhDsVTJTxactNNxLk7+UMwZhU13lMHaOBlJe9Vqp907ya56Y3+ed2tlqzys7jDkTmW0g==}
|
|
188
|
+
|
|
189
|
+
'@lezer/html@1.3.13':
|
|
190
|
+
resolution: {integrity: sha512-oI7n6NJml729m7pjm9lvLvmXbdoMoi2f+1pwSDJkl9d68zGr7a9Btz8NdHTGQZtW2DA25ybeuv/SyDb9D5tseg==}
|
|
191
|
+
|
|
192
|
+
'@lezer/javascript@1.5.4':
|
|
193
|
+
resolution: {integrity: sha512-vvYx3MhWqeZtGPwDStM2dwgljd5smolYD2lR2UyFcHfxbBQebqx8yjmFmxtJ/E6nN6u1D9srOiVWm3Rb4tmcUA==}
|
|
194
|
+
|
|
195
|
+
'@lezer/json@1.0.3':
|
|
196
|
+
resolution: {integrity: sha512-BP9KzdF9Y35PDpv04r0VeSTKDeox5vVr3efE7eBbx3r4s3oNLfunchejZhjArmeieBH+nVOpgIiBJpEAv8ilqQ==}
|
|
197
|
+
|
|
198
|
+
'@lezer/lr@1.4.10':
|
|
199
|
+
resolution: {integrity: sha512-rnCpTIBafOx4mRp43xOxDJbFipJm/c0cia/V5TiGlhmMa+wsSdoGmUN3w5Bqrks/09Q/D4tNAmWaT8p6NRi77A==}
|
|
200
|
+
|
|
201
|
+
'@lezer/xml@1.0.6':
|
|
202
|
+
resolution: {integrity: sha512-CdDwirL0OEaStFue/66ZmFSeppuL6Dwjlk8qk153mSQwiSH/Dlri4GNymrNWnUmPl2Um7QfV1FO9KFUyX3Twww==}
|
|
203
|
+
|
|
204
|
+
'@lezer/yaml@1.0.4':
|
|
205
|
+
resolution: {integrity: sha512-2lrrHqxalACEbxIbsjhqGpSW8kWpUKuY6RHgnSAFZa6qK62wvnPxA8hGOwOoDbwHcOFs5M4o27mjGu+P7TvBmw==}
|
|
206
|
+
|
|
207
|
+
'@lukeed/ms@2.0.2':
|
|
208
|
+
resolution: {integrity: sha512-9I2Zn6+NJLfaGoz9jN3lpwDgAYvfGeNYdbAIjJOqzs4Tpc+VU3Jqq4IofSUBKajiDS8k9fZIg18/z13mpk1bsA==}
|
|
209
|
+
engines: {node: '>=8'}
|
|
210
|
+
|
|
211
|
+
'@marijn/find-cluster-break@1.0.3':
|
|
212
|
+
resolution: {integrity: sha512-FY+MKLBoTsLNJF/eLWaOsXGdz6uh3Iu1axjPf6TUq92IYumcTcXWHoS747JARLkcdlJ/Waiaxc5wQfFO8jC6NA==}
|
|
213
|
+
|
|
214
|
+
'@opentelemetry/api@1.9.0':
|
|
215
|
+
resolution: {integrity: sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg==}
|
|
216
|
+
engines: {node: '>=8.0.0'}
|
|
217
|
+
|
|
218
|
+
'@phosphor-icons/core@2.1.1':
|
|
219
|
+
resolution: {integrity: sha512-v4ARvrip4qBCImOE5rmPUylOEK4iiED9ZyKjcvzuezqMaiRASCHKcRIuvvxL/twvLpkfnEODCOJp5dM4eZilxQ==}
|
|
220
|
+
|
|
221
|
+
'@redocly/cli@2.39.0':
|
|
222
|
+
resolution: {integrity: sha512-xA0Z9YMEhlzbpn/BVErlE2UzuKfahp9llBwEnVtAYuhWdF8UCIm+cgYX8f/gHQIJ/TKwB93awAewTOgEsbZFZw==}
|
|
223
|
+
engines: {node: '>=22.12.0 || >=20.19.0 <21.0.0', npm: '>=10'}
|
|
224
|
+
hasBin: true
|
|
225
|
+
|
|
226
|
+
'@replit/codemirror-css-color-picker@6.3.0':
|
|
227
|
+
resolution: {integrity: sha512-19biDANghUm7Fz7L1SNMIhK48tagaWuCOHj4oPPxc7hxPGkTVY2lU/jVZ8tsbTKQPVG7BO2CBDzs7CBwb20t4A==}
|
|
228
|
+
peerDependencies:
|
|
229
|
+
'@codemirror/language': ^6.0.0
|
|
230
|
+
'@codemirror/state': ^6.0.0
|
|
231
|
+
'@codemirror/view': ^6.0.0
|
|
232
|
+
|
|
233
|
+
'@scalar/agent-chat@0.12.19':
|
|
234
|
+
resolution: {integrity: sha512-0reaPFMl70ripCr1pYLIFnwtVfyt4Naz7yfZo81lnfcbBR/uOM6SlCxMj7gghVSJR/MhhXdMfiAfZpxRnufxaw==}
|
|
235
|
+
engines: {node: '>=22'}
|
|
236
|
+
|
|
237
|
+
'@scalar/api-client@3.13.4':
|
|
238
|
+
resolution: {integrity: sha512-86DHrjB6PIL5J9Q5+brjbUtcUSPDCbyXGAJ2H/fqGg4w4h+3eh/52yFS+jVaE3mc6PefgXrHzD+HIelNPE+Yyg==}
|
|
239
|
+
engines: {node: '>=22'}
|
|
240
|
+
|
|
241
|
+
'@scalar/api-reference@1.62.6':
|
|
242
|
+
resolution: {integrity: sha512-ZN1gQuO2I1l/Ecd5X6rKvR375kE2hFsNc4wU/QlVrjoEGpQTCR6g24QnvBjDUTzTCGfwPO4aCaXzUy7chn0Lyw==}
|
|
243
|
+
engines: {node: '>=22'}
|
|
244
|
+
|
|
245
|
+
'@scalar/asyncapi-upgrader@0.1.2':
|
|
246
|
+
resolution: {integrity: sha512-h6NUhsctrhucrbO2XHWbTXp9EWt7eL5vvlsooUEw2bB014KSPd41JrBQ6t0h/dFdmhwxdbBI7Hmg9eZa/mlCXA==}
|
|
247
|
+
engines: {node: '>=22'}
|
|
248
|
+
|
|
249
|
+
'@scalar/blocks@0.1.5':
|
|
250
|
+
resolution: {integrity: sha512-/pHR3Ahjm7jw1hL03tPMjEgN9PYYZdduxe28/eozXtBbpnByMyNCI7zNx5cQc4hrw/oQ6vJapHZxwQ9vheJjNg==}
|
|
251
|
+
engines: {node: '>=22'}
|
|
252
|
+
|
|
253
|
+
'@scalar/code-highlight@0.4.1':
|
|
254
|
+
resolution: {integrity: sha512-pnr8gbQuvSXu4fcPPNkFNjAxxMWiJLffN57lRgVN3FCk+Q8hKHWWT01ulAT1/0Kg3/VmgtObrMHhX2qYnpM9+g==}
|
|
255
|
+
engines: {node: '>=22'}
|
|
256
|
+
|
|
257
|
+
'@scalar/components@0.27.6':
|
|
258
|
+
resolution: {integrity: sha512-jXTv2VgYn7/13yCAGKtc/26LCnrQSULGjcnP0LasJDqkVKDdRm1StHDG5iRniqrIzS21gJ6YcNGokksdLIrgQw==}
|
|
259
|
+
engines: {node: '>=22'}
|
|
260
|
+
|
|
261
|
+
'@scalar/helpers@0.9.0':
|
|
262
|
+
resolution: {integrity: sha512-M34CLRCttqC1bXthI/QSzQj0s5C6nrU2PFWf/vOT3RpycbiGDGQbqR+5RfFzpOIQvRqbHfNdcRbeiZBw+vCbkQ==}
|
|
263
|
+
engines: {node: '>=22'}
|
|
264
|
+
|
|
265
|
+
'@scalar/icons@0.7.3':
|
|
266
|
+
resolution: {integrity: sha512-5uSUvumj6yJEAZT7/MKpgrkNl76waDXUpu0kUBBFJ83GhZirBIK+Z9SktShEvJT0+rk/j9Zaer3BHoEhYwAEBQ==}
|
|
267
|
+
engines: {node: '>=22'}
|
|
268
|
+
|
|
269
|
+
'@scalar/json-magic@0.12.17':
|
|
270
|
+
resolution: {integrity: sha512-Vw2nrUDIjhvMP6vxFtkiiFlabJ6SyTtfn1BsOxgnr1hIB+/rkngMguiDzl5em21VjyfFGIoADia+QWKM2hdcdA==}
|
|
271
|
+
engines: {node: '>=22'}
|
|
272
|
+
|
|
273
|
+
'@scalar/oas-utils@0.19.5':
|
|
274
|
+
resolution: {integrity: sha512-Z5WEem7AKygqoPaR+viCub4xE6iQ4FlWHzDa1t40CfalpquP+CefRo7i+lX/uy94llqF6SU35tPXskeyl36siA==}
|
|
275
|
+
engines: {node: '>=22'}
|
|
276
|
+
|
|
277
|
+
'@scalar/openapi-types@0.9.1':
|
|
278
|
+
resolution: {integrity: sha512-gkGhSkxSzADaBiNg+ZAbJuwj+ZUmzP2Pg9CWZ7ZP+0fck2WjPeDDM7aAbouAm0aQQMF9xBjSPXSA9a/qTHYaTw==}
|
|
279
|
+
engines: {node: '>=22'}
|
|
280
|
+
|
|
281
|
+
'@scalar/openapi-upgrader@0.2.9':
|
|
282
|
+
resolution: {integrity: sha512-D5b0rGLLZgmkO9mdW2j/ND1KBlH1u3RCpr87HPxv9P9ZSr6PtM5iLqFOJq0ACiaHjY2mikCrxgDmnUEhTzRpHQ==}
|
|
283
|
+
engines: {node: '>=22'}
|
|
284
|
+
|
|
285
|
+
'@scalar/schemas@0.7.2':
|
|
286
|
+
resolution: {integrity: sha512-6Ble6WcbiKgD3ypIva+wgZv1qIClmeEjXA6jrOo1bKpYUu6sh4e89LZxDK+LULa2jQl/2O5GEaa6aZ0ImlpkHg==}
|
|
287
|
+
engines: {node: '>=22'}
|
|
288
|
+
|
|
289
|
+
'@scalar/sidebar@0.9.30':
|
|
290
|
+
resolution: {integrity: sha512-HxSp05swt20GB0QLLaGsU+9XfScYOmpBICwPoIcw9+I5WfxAmppFnBX8SGNUro+eeaCbfN8g5IvdbfOiuj79Xw==}
|
|
291
|
+
engines: {node: '>=22'}
|
|
292
|
+
|
|
293
|
+
'@scalar/snippetz@0.9.21':
|
|
294
|
+
resolution: {integrity: sha512-0XFKdiKh5OnBxnK/NCBxaXpva53MRpvW4o6T2SMEUd+/xVa4Xmz7oHCHoq2g86+uY4bmepG1kZ0ndapyQjg/vw==}
|
|
295
|
+
engines: {node: '>=22'}
|
|
296
|
+
|
|
297
|
+
'@scalar/themes@0.16.2':
|
|
298
|
+
resolution: {integrity: sha512-4mAn7z2W5/ASi1OF06dqf04xjxTHnMzESC2E+qVMukJsEsV4kDlYSIfm/g5hwWxhqWsBMjorF9Dtlqd0ycJ92g==}
|
|
299
|
+
engines: {node: '>=22'}
|
|
300
|
+
|
|
301
|
+
'@scalar/typebox@0.1.3':
|
|
302
|
+
resolution: {integrity: sha512-lU055AUccECZMIfGA0z/C1StYmboAYIPJLDFBzOO81yXBi35Pxdq+I4fWX6iUZ8qcoHneiLGk9jAUM1rA93iEg==}
|
|
303
|
+
|
|
304
|
+
'@scalar/types@0.16.2':
|
|
305
|
+
resolution: {integrity: sha512-QAlCtDVRsX/UV1N9ctLqPsKQy84eceFf4dMnTZM0JhaRfwS/Ovwp8oFf3POSpqQILNiqLFZLE6IV6p/5rNoAag==}
|
|
306
|
+
engines: {node: '>=22'}
|
|
307
|
+
|
|
308
|
+
'@scalar/use-codemirror@0.14.12':
|
|
309
|
+
resolution: {integrity: sha512-m+0tmVOHZVAybbcNEizR3m9RYOLtU59AStRkk29J5qaW4J+tsjrz4BDMceeTpoVawL/lxp2vDvQR+w/gKC3miQ==}
|
|
310
|
+
engines: {node: '>=22'}
|
|
311
|
+
|
|
312
|
+
'@scalar/use-hooks@0.4.7':
|
|
313
|
+
resolution: {integrity: sha512-8zajxhnKMJuO1HF36y8TeVuSIol2pueYdRvITZTEY8TuRbnwxrvJZk25II7YpxGMORAEDr0bwNF88Dr+QUfw1w==}
|
|
314
|
+
engines: {node: '>=22'}
|
|
315
|
+
|
|
316
|
+
'@scalar/use-toasts@0.10.2':
|
|
317
|
+
resolution: {integrity: sha512-1iHQFbDXv0YQRp13aa63S5EcTJ5K8T0ocnLxk+nziloPrLjKt6jdRt6vOHsLSv5sm9kFKcVKNQTQgialmKCOGA==}
|
|
318
|
+
engines: {node: '>=22'}
|
|
319
|
+
|
|
320
|
+
'@scalar/validation@0.6.0':
|
|
321
|
+
resolution: {integrity: sha512-tpmmG+/xRE2Kn9RpflU3AIyZv08v10+E1ZrJCx7z6+/91zHVxy0M73kC1LT4/8PbYNt85ywyC8+n+D99JdMcGA==}
|
|
322
|
+
engines: {node: '>=20'}
|
|
323
|
+
|
|
324
|
+
'@scalar/workspace-store@0.55.4':
|
|
325
|
+
resolution: {integrity: sha512-zpodJmejOuRDbQRlcIP4kqnxYo4/yfgtLr2XBqms+6/gaFwBV2naM/ydMkGZ645Ohqm201/Z+QzrgrBevGYjgQ==}
|
|
326
|
+
engines: {node: '>=22'}
|
|
327
|
+
|
|
328
|
+
'@standard-schema/spec@1.1.0':
|
|
329
|
+
resolution: {integrity: sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==}
|
|
330
|
+
|
|
331
|
+
'@swaggerexpert/jsonpath@4.0.4':
|
|
332
|
+
resolution: {integrity: sha512-jMUead/P3XFSy+XzlIkxlwnPX59MikrV99t+WzRr3rnmrDuS5VdsTbGJYdCd9ztH37WplDEPP+16+O+eVJmrkw==}
|
|
333
|
+
engines: {node: '>=16.14.0'}
|
|
334
|
+
|
|
335
|
+
'@swc/helpers@0.5.23':
|
|
336
|
+
resolution: {integrity: sha512-5lSsMOTXURePglDfvuAQUqkGek9Hg2kksOYay2m0+XR++b2NWYL/4sWyuvVBIs8oKnJaxkdi9whaL/sqN13afw==}
|
|
337
|
+
|
|
338
|
+
'@tanstack/virtual-core@3.17.4':
|
|
339
|
+
resolution: {integrity: sha512-nGm5KteqxasUdThLc2izl6dHUqLv0LQj7Nuyo5gYalTPf/U8a9ermvsl7reT+6ioBW1l8WfpP/mcU338nLXpqw==}
|
|
340
|
+
|
|
341
|
+
'@tanstack/vue-virtual@3.13.32':
|
|
342
|
+
resolution: {integrity: sha512-E8OCutx7QnwZdvpJijz0Q2PHsYDWBWjnGr3TvgWiqxTU35jB1kVhtkd93scRV7tTFuId2tg3x2iFiw+IE4evjQ==}
|
|
343
|
+
peerDependencies:
|
|
344
|
+
vue: ^2.7.0 || ^3.0.0
|
|
345
|
+
|
|
346
|
+
'@types/debug@4.1.13':
|
|
347
|
+
resolution: {integrity: sha512-KSVgmQmzMwPlmtljOomayoR89W4FynCAi3E8PPs7vmDVPe84hT+vGPKkJfThkmXs0x0jAaa9U8uW8bbfyS2fWw==}
|
|
348
|
+
|
|
349
|
+
'@types/har-format@1.2.16':
|
|
350
|
+
resolution: {integrity: sha512-fluxdy7ryD3MV6h8pTfTYpy/xQzCFC7m89nOH9y94cNqJ1mDIDPut7MnRHI3F6qRmh/cT2fUjG1MLdCNb4hE9A==}
|
|
351
|
+
|
|
352
|
+
'@types/hast@3.0.5':
|
|
353
|
+
resolution: {integrity: sha512-rp/ezSWaD1m44dPKICGhiskI13nVr7qTloFwDa/IYkhhf5nzwP+zIQcIJh3WIFSBOy/H1PzB40jPjMDksN4F+g==}
|
|
354
|
+
|
|
355
|
+
'@types/json-schema@7.0.15':
|
|
356
|
+
resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
|
|
357
|
+
|
|
358
|
+
'@types/mdast@4.0.4':
|
|
359
|
+
resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==}
|
|
360
|
+
|
|
361
|
+
'@types/ms@2.1.0':
|
|
362
|
+
resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==}
|
|
363
|
+
|
|
364
|
+
'@types/node@24.13.3':
|
|
365
|
+
resolution: {integrity: sha512-Dh8vAsV36ig5wa9OX4pXvMc9D3Veibfw2wix0CUwYODLD8nkj9UsLjASr49nPg+2eKzxhBV+v7L8pXvT4e639Q==}
|
|
366
|
+
|
|
367
|
+
'@types/unist@3.0.3':
|
|
368
|
+
resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==}
|
|
369
|
+
|
|
370
|
+
'@types/web-bluetooth@0.0.20':
|
|
371
|
+
resolution: {integrity: sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==}
|
|
372
|
+
|
|
373
|
+
'@types/web-bluetooth@0.0.21':
|
|
374
|
+
resolution: {integrity: sha512-oIQLCGWtcFZy2JW77j9k8nHzAOpqMHLQejDA48XXMWH6tjCQHz5RCFz1bzsmROyL6PUm+LLnUiI4BCn221inxA==}
|
|
375
|
+
|
|
376
|
+
'@ungap/structured-clone@1.3.3':
|
|
377
|
+
resolution: {integrity: sha512-60YRaenCQcVjYEKOcG824+DRGGIQ3VKErcBoAEDJZz5bKIs2ZG+X/H9Nk+Q6EVkwJk5QNApxbrc5QtBSwtrXAg==}
|
|
378
|
+
|
|
379
|
+
'@unhead/vue@2.1.15':
|
|
380
|
+
resolution: {integrity: sha512-SSByXfEjhzPn8gXdEdgpYqpLMPSkLUH2HVE0GxZfOtNsJ0GgOHQs0g9T67ZZ1z0kTELLKdtOtYrzrbv9+ffF7g==}
|
|
381
|
+
peerDependencies:
|
|
382
|
+
vue: '>=3.5.18'
|
|
383
|
+
|
|
384
|
+
'@vercel/oidc@3.1.0':
|
|
385
|
+
resolution: {integrity: sha512-Fw28YZpRnA3cAHHDlkt7xQHiJ0fcL+NRcIqsocZQUSmbzeIKRpwttJjik5ZGanXP+vlA4SbTg+AbA3bP363l+w==}
|
|
386
|
+
engines: {node: '>= 20'}
|
|
387
|
+
|
|
388
|
+
'@vue/compiler-core@3.5.39':
|
|
389
|
+
resolution: {integrity: sha512-16KBTEXAJCpDr0mwlw+AZyhu8iyC7R3S2vBwsI7QnWJU6X3WKc9VKeNEZpiMdZ569qWhz9574L3vV55qRL0Vtw==}
|
|
390
|
+
|
|
391
|
+
'@vue/compiler-dom@3.5.39':
|
|
392
|
+
resolution: {integrity: sha512-oQPigALqYbNxTNPvNgSOe+czwVExfbVF02lz8jP0S3AXJiu3jxYDygNUiqSep4ezzW8XgnubqH63My2A7JR/vg==}
|
|
393
|
+
|
|
394
|
+
'@vue/compiler-sfc@3.5.39':
|
|
395
|
+
resolution: {integrity: sha512-d0ki86iOyN8LoZPBmk5SJWNwHP19CnDDCfuo//+2WJa2g5Ke0Jay983PIBIcSSzldC68I8DrD5GrHV3OSDfodg==}
|
|
396
|
+
|
|
397
|
+
'@vue/compiler-ssr@3.5.39':
|
|
398
|
+
resolution: {integrity: sha512-Ce7/wvwMHai74bdszfXExdazFigYnlF9zgCmEQUcM1j0fOymlouZ7XilTYNo8oUjhlnjYOZbGrcYKuqjz89Ucw==}
|
|
399
|
+
|
|
400
|
+
'@vue/reactivity@3.5.39':
|
|
401
|
+
resolution: {integrity: sha512-TpsuBJ9gGlZa5d23XcM2y8EXanz9dZeVDQBXRwzy46ItgvM+rWpzs+UVM0wcRLxGvcav0HE5jz2gNL53xlRAog==}
|
|
402
|
+
|
|
403
|
+
'@vue/runtime-core@3.5.39':
|
|
404
|
+
resolution: {integrity: sha512-9GLtNyRvPAUMbX+7ono0RC2j0guo2LXVi8LvcmAooImACUKm0oFf0jjwbX8/H0AE/t1nxhAkn8RSl9PMCzzxZw==}
|
|
405
|
+
|
|
406
|
+
'@vue/runtime-dom@3.5.39':
|
|
407
|
+
resolution: {integrity: sha512-7Y6aAGboKcXAZ3ECuUy7RrS5yy2r47dhTp2SKaJmYxjopImaVFaNa5Ne66NwGovsrxVAl5S5rwc7m22UG7Lmww==}
|
|
408
|
+
|
|
409
|
+
'@vue/server-renderer@3.5.39':
|
|
410
|
+
resolution: {integrity: sha512-yZSakiAGw85rZfG7UM8akMnIF+FmeiNk47uvHf2nVBBSe+dIKUhZuZq9+XgJhbV3nS5Z4ALH23/MpXofW+mbcw==}
|
|
411
|
+
peerDependencies:
|
|
412
|
+
vue: 3.5.39
|
|
413
|
+
|
|
414
|
+
'@vue/shared@3.5.39':
|
|
415
|
+
resolution: {integrity: sha512-l1rrBtBfTnmxvtsvdQDXltUUy8S1Y+ZaqdfUzmAnJkTd8Z8rv5v/ytW+TKiqEOWyHPoqtPlNFSs0lhRmYVSHVA==}
|
|
416
|
+
|
|
417
|
+
'@vueuse/core@10.11.1':
|
|
418
|
+
resolution: {integrity: sha512-guoy26JQktXPcz+0n3GukWIy/JDNKti9v6VEMu6kV2sYBsWuGiTU8OWdg+ADfUbHg3/3DlqySDe7JmdHrktiww==}
|
|
419
|
+
|
|
420
|
+
'@vueuse/core@13.9.0':
|
|
421
|
+
resolution: {integrity: sha512-ts3regBQyURfCE2BcytLqzm8+MmLlo5Ln/KLoxDVcsZ2gzIwVNnQpQOL/UKV8alUqjSZOlpFZcRNsLRqj+OzyA==}
|
|
422
|
+
peerDependencies:
|
|
423
|
+
vue: ^3.5.0
|
|
424
|
+
|
|
425
|
+
'@vueuse/integrations@13.9.0':
|
|
426
|
+
resolution: {integrity: sha512-SDobKBbPIOe0cVL7QxMzGkuUGHvWTdihi9zOrrWaWUgFKe15cwEcwfWmgrcNzjT6kHnNmWuTajPHoIzUjYNYYQ==}
|
|
427
|
+
peerDependencies:
|
|
428
|
+
async-validator: ^4
|
|
429
|
+
axios: ^1
|
|
430
|
+
change-case: ^5
|
|
431
|
+
drauu: ^0.4
|
|
432
|
+
focus-trap: ^7
|
|
433
|
+
fuse.js: ^7
|
|
434
|
+
idb-keyval: ^6
|
|
435
|
+
jwt-decode: ^4
|
|
436
|
+
nprogress: ^0.2
|
|
437
|
+
qrcode: ^1.5
|
|
438
|
+
sortablejs: ^1
|
|
439
|
+
universal-cookie: ^7 || ^8
|
|
440
|
+
vue: ^3.5.0
|
|
441
|
+
peerDependenciesMeta:
|
|
442
|
+
async-validator:
|
|
443
|
+
optional: true
|
|
444
|
+
axios:
|
|
445
|
+
optional: true
|
|
446
|
+
change-case:
|
|
447
|
+
optional: true
|
|
448
|
+
drauu:
|
|
449
|
+
optional: true
|
|
450
|
+
focus-trap:
|
|
451
|
+
optional: true
|
|
452
|
+
fuse.js:
|
|
453
|
+
optional: true
|
|
454
|
+
idb-keyval:
|
|
455
|
+
optional: true
|
|
456
|
+
jwt-decode:
|
|
457
|
+
optional: true
|
|
458
|
+
nprogress:
|
|
459
|
+
optional: true
|
|
460
|
+
qrcode:
|
|
461
|
+
optional: true
|
|
462
|
+
sortablejs:
|
|
463
|
+
optional: true
|
|
464
|
+
universal-cookie:
|
|
465
|
+
optional: true
|
|
466
|
+
|
|
467
|
+
'@vueuse/metadata@10.11.1':
|
|
468
|
+
resolution: {integrity: sha512-IGa5FXd003Ug1qAZmyE8wF3sJ81xGLSqTqtQ6jaVfkeZ4i5kS2mwQF61yhVqojRnenVew5PldLyRgvdl4YYuSw==}
|
|
469
|
+
|
|
470
|
+
'@vueuse/metadata@13.9.0':
|
|
471
|
+
resolution: {integrity: sha512-1AFRvuiGphfF7yWixZa0KwjYH8ulyjDCC0aFgrGRz8+P4kvDFSdXLVfTk5xAN9wEuD1J6z4/myMoYbnHoX07zg==}
|
|
472
|
+
|
|
473
|
+
'@vueuse/shared@10.11.1':
|
|
474
|
+
resolution: {integrity: sha512-LHpC8711VFZlDaYUXEBbFBCQ7GS3dVU9mjOhhMhXP6txTV4EhYQg/KGnQuvt/sPAtoUKq7VVUnL6mVtFoL42sA==}
|
|
475
|
+
|
|
476
|
+
'@vueuse/shared@13.9.0':
|
|
477
|
+
resolution: {integrity: sha512-e89uuTLMh0U5cZ9iDpEI2senqPGfbPRTHM/0AaQkcxnpqjkZqDYP8rpfm7edOz8s+pOCOROEy1PIveSW8+fL5g==}
|
|
478
|
+
peerDependencies:
|
|
479
|
+
vue: ^3.5.0
|
|
480
|
+
|
|
481
|
+
ai@6.0.33:
|
|
482
|
+
resolution: {integrity: sha512-bVokbmy2E2QF6Efl+5hOJx5MRWoacZ/CZY/y1E+VcewknvGlgaiCzMu8Xgddz6ArFJjiMFNUPHKxAhIePE4rmg==}
|
|
483
|
+
engines: {node: '>=18'}
|
|
484
|
+
peerDependencies:
|
|
485
|
+
zod: ^3.25.76 || ^4.1.8
|
|
486
|
+
|
|
487
|
+
ajv-formats@3.0.1:
|
|
488
|
+
resolution: {integrity: sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==}
|
|
489
|
+
peerDependencies:
|
|
490
|
+
ajv: ^8.0.0
|
|
491
|
+
peerDependenciesMeta:
|
|
492
|
+
ajv:
|
|
493
|
+
optional: true
|
|
494
|
+
|
|
495
|
+
ajv@8.20.0:
|
|
496
|
+
resolution: {integrity: sha512-Thbli+OlOj+iMPYFBVBfJ3OmCAnaSyNn4M1vz9T6Gka5Jt9ba/HIR56joy65tY6kx/FCF5VXNB819Y7/GUrBGA==}
|
|
497
|
+
|
|
498
|
+
ansi-colors@4.1.3:
|
|
499
|
+
resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==}
|
|
500
|
+
engines: {node: '>=6'}
|
|
501
|
+
|
|
502
|
+
apg-lite@1.0.5:
|
|
503
|
+
resolution: {integrity: sha512-SlI+nLMQDzCZfS39ihzjGp3JNBQfJXyMi6cg9tkLOCPVErgFsUIAEdO9IezR7kbP5Xd0ozcPNQBkf9TO5cHgWw==}
|
|
504
|
+
|
|
505
|
+
argparse@2.0.1:
|
|
506
|
+
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
|
|
507
|
+
|
|
508
|
+
aria-hidden@1.2.6:
|
|
509
|
+
resolution: {integrity: sha512-ik3ZgC9dY/lYVVM++OISsaYDeg1tb0VtP5uL3ouh1koGOaUMDPpbFIei4JkFimWUFPn90sbMNMXQAIVOlnYKJA==}
|
|
510
|
+
engines: {node: '>=10'}
|
|
511
|
+
|
|
512
|
+
bail@2.0.2:
|
|
513
|
+
resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==}
|
|
514
|
+
|
|
515
|
+
bundle-name@4.1.0:
|
|
516
|
+
resolution: {integrity: sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==}
|
|
517
|
+
engines: {node: '>=18'}
|
|
518
|
+
|
|
519
|
+
c12@3.3.4:
|
|
520
|
+
resolution: {integrity: sha512-cM0ApFQSBXuourJejzwv/AuPRvAxordTyParRVcHjjtXirtkzM0uK2L9TTn9s0cXZbG7E55jCivRQzoxYmRAlA==}
|
|
521
|
+
peerDependencies:
|
|
522
|
+
magicast: '*'
|
|
523
|
+
peerDependenciesMeta:
|
|
524
|
+
magicast:
|
|
525
|
+
optional: true
|
|
526
|
+
|
|
527
|
+
ccount@2.0.1:
|
|
528
|
+
resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
|
|
529
|
+
|
|
530
|
+
chalk@5.6.2:
|
|
531
|
+
resolution: {integrity: sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==}
|
|
532
|
+
engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
|
|
533
|
+
|
|
534
|
+
character-entities-html4@2.1.0:
|
|
535
|
+
resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==}
|
|
536
|
+
|
|
537
|
+
character-entities-legacy@3.0.0:
|
|
538
|
+
resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==}
|
|
539
|
+
|
|
540
|
+
character-entities@2.0.2:
|
|
541
|
+
resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==}
|
|
542
|
+
|
|
543
|
+
chokidar@5.0.0:
|
|
544
|
+
resolution: {integrity: sha512-TQMmc3w+5AxjpL8iIiwebF73dRDF4fBIieAqGn9RGCWaEVwQ6Fb2cGe31Yns0RRIzii5goJ1Y7xbMwo1TxMplw==}
|
|
545
|
+
engines: {node: '>= 20.19.0'}
|
|
546
|
+
|
|
547
|
+
clsx@2.1.1:
|
|
548
|
+
resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
|
|
549
|
+
engines: {node: '>=6'}
|
|
550
|
+
|
|
551
|
+
color-support@1.1.3:
|
|
552
|
+
resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==}
|
|
553
|
+
hasBin: true
|
|
554
|
+
|
|
555
|
+
comma-separated-tokens@2.0.3:
|
|
556
|
+
resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==}
|
|
557
|
+
|
|
558
|
+
commander@15.0.0:
|
|
559
|
+
resolution: {integrity: sha512-z67u4ZhzCL/Tydu1lJARtEZYWbWaN7oYLHbsuzocr6y4N6WZAagG3RQ4FW61V1/0+jImpj293XfrcYnd1qxtPg==}
|
|
560
|
+
engines: {node: '>=22.12.0'}
|
|
561
|
+
|
|
562
|
+
confbox@0.2.4:
|
|
563
|
+
resolution: {integrity: sha512-ysOGlgTFbN2/Y6Cg3Iye8YKulHw+R2fNXHrgSmXISQdMnomY6eNDprVdW9R5xBguEqI954+S6709UyiO7B+6OQ==}
|
|
564
|
+
|
|
565
|
+
convert-hrtime@5.0.0:
|
|
566
|
+
resolution: {integrity: sha512-lOETlkIeYSJWcbbcvjRKGxVMXJR+8+OQb/mTPbA4ObPMytYIsUbuOE0Jzy60hjARYszq1id0j8KgVhC+WGZVTg==}
|
|
567
|
+
engines: {node: '>=12'}
|
|
568
|
+
|
|
569
|
+
crelt@1.0.7:
|
|
570
|
+
resolution: {integrity: sha512-aK6BbWfhf4U/wCcLHKPJl/xa6VkVstRaPywWtMKGwuOLc/wZTyQYuoxgvZnNsBvv7Kg3YTBQYYBCggcviQczuA==}
|
|
571
|
+
|
|
572
|
+
cross-spawn@7.0.6:
|
|
573
|
+
resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
|
|
574
|
+
engines: {node: '>= 8'}
|
|
575
|
+
|
|
576
|
+
csstype@3.2.3:
|
|
577
|
+
resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==}
|
|
578
|
+
|
|
579
|
+
cva@1.0.0-beta.4:
|
|
580
|
+
resolution: {integrity: sha512-F/JS9hScapq4DBVQXcK85l9U91M6ePeXoBMSp7vypzShoefUBxjQTo3g3935PUHgQd+IW77DjbPRIxugy4/GCQ==}
|
|
581
|
+
peerDependencies:
|
|
582
|
+
typescript: '>= 4.5.5'
|
|
583
|
+
peerDependenciesMeta:
|
|
584
|
+
typescript:
|
|
585
|
+
optional: true
|
|
586
|
+
|
|
587
|
+
debug@4.4.3:
|
|
588
|
+
resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
|
|
589
|
+
engines: {node: '>=6.0'}
|
|
590
|
+
peerDependencies:
|
|
591
|
+
supports-color: '*'
|
|
592
|
+
peerDependenciesMeta:
|
|
593
|
+
supports-color:
|
|
594
|
+
optional: true
|
|
595
|
+
|
|
596
|
+
decode-named-character-reference@1.3.0:
|
|
597
|
+
resolution: {integrity: sha512-GtpQYB283KrPp6nRw50q3U9/VfOutZOe103qlN7BPP6Ad27xYnOIWv4lPzo8HCAL+mMZofJ9KEy30fq6MfaK6Q==}
|
|
598
|
+
|
|
599
|
+
default-browser-id@5.0.1:
|
|
600
|
+
resolution: {integrity: sha512-x1VCxdX4t+8wVfd1so/9w+vQ4vx7lKd2Qp5tDRutErwmR85OgmfX7RlLRMWafRMY7hbEiXIbudNrjOAPa/hL8Q==}
|
|
601
|
+
engines: {node: '>=18'}
|
|
602
|
+
|
|
603
|
+
default-browser@5.5.0:
|
|
604
|
+
resolution: {integrity: sha512-H9LMLr5zwIbSxrmvikGuI/5KGhZ8E2zH3stkMgM5LpOWDutGM2JZaj460Udnf1a+946zc7YBgrqEWwbk7zHvGw==}
|
|
605
|
+
engines: {node: '>=18'}
|
|
606
|
+
|
|
607
|
+
define-lazy-prop@3.0.0:
|
|
608
|
+
resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==}
|
|
609
|
+
engines: {node: '>=12'}
|
|
610
|
+
|
|
611
|
+
defu@6.1.7:
|
|
612
|
+
resolution: {integrity: sha512-7z22QmUWiQ/2d0KkdYmANbRUVABpZ9SNYyH5vx6PZ+nE5bcC0l7uFvEfHlyld/HcGBFTL536ClDt3DEcSlEJAQ==}
|
|
613
|
+
|
|
614
|
+
dequal@2.0.3:
|
|
615
|
+
resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
|
|
616
|
+
engines: {node: '>=6'}
|
|
617
|
+
|
|
618
|
+
destr@2.0.5:
|
|
619
|
+
resolution: {integrity: sha512-ugFTXCtDZunbzasqBxrK93Ik/DRYsO6S/fedkWEMKqt04xZ4csmnmwGDBAb07QWNaGMAmnTIemsYZCksjATwsA==}
|
|
620
|
+
|
|
621
|
+
devlop@1.1.0:
|
|
622
|
+
resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==}
|
|
623
|
+
|
|
624
|
+
dotenv@17.4.2:
|
|
625
|
+
resolution: {integrity: sha512-nI4U3TottKAcAD9LLud4Cb7b2QztQMUEfHbvhTH09bqXTxnSie8WnjPALV/WMCrJZ6UV/qHJ6L03OqO3LcdYZw==}
|
|
626
|
+
engines: {node: '>=12'}
|
|
627
|
+
|
|
628
|
+
entities@6.0.1:
|
|
629
|
+
resolution: {integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==}
|
|
630
|
+
engines: {node: '>=0.12'}
|
|
631
|
+
|
|
632
|
+
entities@7.0.1:
|
|
633
|
+
resolution: {integrity: sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==}
|
|
634
|
+
engines: {node: '>=0.12'}
|
|
635
|
+
|
|
636
|
+
escape-string-regexp@5.0.0:
|
|
637
|
+
resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==}
|
|
638
|
+
engines: {node: '>=12'}
|
|
639
|
+
|
|
640
|
+
estree-walker@2.0.2:
|
|
641
|
+
resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
|
|
642
|
+
|
|
643
|
+
eventsource-parser@3.1.0:
|
|
644
|
+
resolution: {integrity: sha512-kJezFj9YFAMLeORyi7aCLxLbD5/qWMQnoMVlVPyHIll7lgRJCc3JVln9Vgl9nwQi0YkMnhdGTMNn7CkRRAptMg==}
|
|
645
|
+
engines: {node: '>=18.0.0'}
|
|
646
|
+
|
|
647
|
+
exsolve@1.1.0:
|
|
648
|
+
resolution: {integrity: sha512-D+42+T12DdIlJM3uepa55qGiL3sYdLBOxIl2ifQCzCHz4c7eiolaHsi3BIqEr7JxBzxv2pYZQX9kw16ziMcEmw==}
|
|
649
|
+
|
|
650
|
+
extend@3.0.2:
|
|
651
|
+
resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==}
|
|
652
|
+
|
|
653
|
+
fast-deep-equal@3.1.3:
|
|
654
|
+
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
|
|
655
|
+
|
|
656
|
+
fast-uri@3.1.7:
|
|
657
|
+
resolution: {integrity: sha512-dOvZVzjdZdz7phd9v6jCbwxrBW3fK6n8Rc0CtdmM4bumzMnxywBYhuph6J819RRw/ku+rLbelwfMunktuzVVHg==}
|
|
658
|
+
|
|
659
|
+
flatted@3.4.2:
|
|
660
|
+
resolution: {integrity: sha512-PjDse7RzhcPkIJwy5t7KPWQSZ9cAbzQXcafsetQoD7sOJRQlGikNbx7yZp2OotDnJyrDcbyRq3Ttb18iYOqkxA==}
|
|
661
|
+
|
|
662
|
+
focus-trap@7.8.0:
|
|
663
|
+
resolution: {integrity: sha512-/yNdlIkpWbM0ptxno3ONTuf+2g318kh2ez3KSeZN5dZ8YC6AAmgeWz+GasYYiBJPFaYcSAPeu4GfhUaChzIJXA==}
|
|
664
|
+
|
|
665
|
+
function-timeout@1.0.2:
|
|
666
|
+
resolution: {integrity: sha512-939eZS4gJ3htTHAldmyyuzlrD58P03fHG49v2JfFXbV6OhvZKRC9j2yAtdHw/zrp2zXHuv05zMIy40F0ge7spA==}
|
|
667
|
+
engines: {node: '>=18'}
|
|
668
|
+
|
|
669
|
+
fuse.js@7.5.0:
|
|
670
|
+
resolution: {integrity: sha512-sQtrEfA+ez/3G0cCZecF70oqpCRttCexYUG4mUrtWL49ULUzUyxokt5kyqwtKzj1270RaKih+hcP3qLcumccow==}
|
|
671
|
+
engines: {node: '>=10'}
|
|
672
|
+
|
|
673
|
+
get-own-enumerable-keys@1.0.0:
|
|
674
|
+
resolution: {integrity: sha512-PKsK2FSrQCyxcGHsGrLDcK0lx+0Ke+6e8KFFozA9/fIQLhQzPaRvJFdcz7+Axg3jUH/Mq+NI4xa5u/UT2tQskA==}
|
|
675
|
+
engines: {node: '>=14.16'}
|
|
676
|
+
|
|
677
|
+
get-tsconfig@4.14.0:
|
|
678
|
+
resolution: {integrity: sha512-yTb+8DXzDREzgvYmh6s9vHsSVCHeC0G3PI5bEXNBHtmshPnO+S5O7qgLEOn0I5QvMy6kpZN8K1NKGyilLb93wA==}
|
|
679
|
+
|
|
680
|
+
giget@3.3.0:
|
|
681
|
+
resolution: {integrity: sha512-gzi2D96p+AMfDcmJHGDj3KJ9NRiwvlFAU5yfa3ROwWZmFUjX4P43x3BcyRaOMMLto1vUo7C+86+MFhYTl6Ryiw==}
|
|
682
|
+
hasBin: true
|
|
683
|
+
|
|
684
|
+
guess-json-indent@3.0.1:
|
|
685
|
+
resolution: {integrity: sha512-LWZ3Vr8BG7DHE3TzPYFqkhjNRw4vYgFSsv2nfMuHklAlOfiy54/EwiDQuQfFVLxENCVv20wpbjfTayooQHrEhQ==}
|
|
686
|
+
engines: {node: '>=18.18.0'}
|
|
687
|
+
|
|
688
|
+
hast-util-embedded@3.0.0:
|
|
689
|
+
resolution: {integrity: sha512-naH8sld4Pe2ep03qqULEtvYr7EjrLK2QHY8KJR6RJkTUjPGObe1vnx585uzem2hGra+s1q08DZZpfgDVYRbaXA==}
|
|
690
|
+
|
|
691
|
+
hast-util-format@1.1.0:
|
|
692
|
+
resolution: {integrity: sha512-yY1UDz6bC9rDvCWHpx12aIBGRG7krurX0p0Fm6pT547LwDIZZiNr8a+IHDogorAdreULSEzP82Nlv5SZkHZcjA==}
|
|
693
|
+
|
|
694
|
+
hast-util-from-html@2.0.3:
|
|
695
|
+
resolution: {integrity: sha512-CUSRHXyKjzHov8yKsQjGOElXy/3EKpyX56ELnkHH34vDVw1N1XSQ1ZcAvTyAPtGqLTuKP/uxM+aLkSPqF/EtMw==}
|
|
696
|
+
|
|
697
|
+
hast-util-from-parse5@8.0.3:
|
|
698
|
+
resolution: {integrity: sha512-3kxEVkEKt0zvcZ3hCRYI8rqrgwtlIOFMWkbclACvjlDw8Li9S2hk/d51OI0nr/gIpdMHNepwgOKqZ/sy0Clpyg==}
|
|
699
|
+
|
|
700
|
+
hast-util-has-property@3.0.0:
|
|
701
|
+
resolution: {integrity: sha512-MNilsvEKLFpV604hwfhVStK0usFY/QmM5zX16bo7EjnAEGofr5YyI37kzopBlZJkHD4t887i+q/C8/tr5Q94cA==}
|
|
702
|
+
|
|
703
|
+
hast-util-is-body-ok-link@3.0.1:
|
|
704
|
+
resolution: {integrity: sha512-0qpnzOBLztXHbHQenVB8uNuxTnm/QBFUOmdOSsEn7GnBtyY07+ENTWVFBAnXd/zEgd9/SUG3lRY7hSIBWRgGpQ==}
|
|
705
|
+
|
|
706
|
+
hast-util-is-element@3.0.0:
|
|
707
|
+
resolution: {integrity: sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g==}
|
|
708
|
+
|
|
709
|
+
hast-util-minify-whitespace@1.0.1:
|
|
710
|
+
resolution: {integrity: sha512-L96fPOVpnclQE0xzdWb/D12VT5FabA7SnZOUMtL1DbXmYiHJMXZvFkIZfiMmTCNJHUeO2K9UYNXoVyfz+QHuOw==}
|
|
711
|
+
|
|
712
|
+
hast-util-parse-selector@4.0.0:
|
|
713
|
+
resolution: {integrity: sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==}
|
|
714
|
+
|
|
715
|
+
hast-util-phrasing@3.0.1:
|
|
716
|
+
resolution: {integrity: sha512-6h60VfI3uBQUxHqTyMymMZnEbNl1XmEGtOxxKYL7stY2o601COo62AWAYBQR9lZbYXYSBoxag8UpPRXK+9fqSQ==}
|
|
717
|
+
|
|
718
|
+
hast-util-raw@9.1.0:
|
|
719
|
+
resolution: {integrity: sha512-Y8/SBAHkZGoNkpzqqfCldijcuUKh7/su31kEBp67cFY09Wy0mTRgtsLYsiIxMJxlu0f6AA5SUTbDR8K0rxnbUw==}
|
|
720
|
+
|
|
721
|
+
hast-util-sanitize@5.0.2:
|
|
722
|
+
resolution: {integrity: sha512-3yTWghByc50aGS7JlGhk61SPenfE/p1oaFeNwkOOyrscaOkMGrcW9+Cy/QAIOBpZxP1yqDIzFMR0+Np0i0+usg==}
|
|
723
|
+
|
|
724
|
+
hast-util-to-html@9.0.5:
|
|
725
|
+
resolution: {integrity: sha512-OguPdidb+fbHQSU4Q4ZiLKnzWo8Wwsf5bZfbvu7//a9oTYoqD/fWpe96NuHkoS9h0ccGOTe0C4NGXdtS0iObOw==}
|
|
726
|
+
|
|
727
|
+
hast-util-to-parse5@8.0.1:
|
|
728
|
+
resolution: {integrity: sha512-MlWT6Pjt4CG9lFCjiz4BH7l9wmrMkfkJYCxFwKQic8+RTZgWPuWxwAfjJElsXkex7DJjfSJsQIt931ilUgmwdA==}
|
|
729
|
+
|
|
730
|
+
hast-util-to-text@4.0.2:
|
|
731
|
+
resolution: {integrity: sha512-KK6y/BN8lbaq654j7JgBydev7wuNMcID54lkRav1P0CaE1e47P72AWWPiGKXTJU271ooYzcvTAn/Zt0REnvc7A==}
|
|
732
|
+
|
|
733
|
+
hast-util-whitespace@3.0.0:
|
|
734
|
+
resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==}
|
|
735
|
+
|
|
736
|
+
hastscript@9.0.1:
|
|
737
|
+
resolution: {integrity: sha512-g7df9rMFX/SPi34tyGCyUBREQoKkapwdY/T04Qn9TDWfHhAYt4/I0gMVirzK5wEzeUqIjEB+LXC/ypb7Aqno5w==}
|
|
738
|
+
|
|
739
|
+
highlight.js@11.11.1:
|
|
740
|
+
resolution: {integrity: sha512-Xwwo44whKBVCYoliBQwaPvtd/2tYFkRQtXDWj1nackaV2JPXx3L0+Jvd8/qCJ2p+ML0/XVkJ2q+Mr+UVdpJK5w==}
|
|
741
|
+
engines: {node: '>=12.0.0'}
|
|
742
|
+
|
|
743
|
+
hookable@6.1.1:
|
|
744
|
+
resolution: {integrity: sha512-U9LYDy1CwhMCnprUfeAZWZGByVbhd54hwepegYTK7Pi5NvqEj63ifz5z+xukznehT7i6NIZRu89Ay1AZmRsLEQ==}
|
|
745
|
+
|
|
746
|
+
html-void-elements@3.0.0:
|
|
747
|
+
resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==}
|
|
748
|
+
|
|
749
|
+
html-whitespace-sensitive-tag-names@3.0.1:
|
|
750
|
+
resolution: {integrity: sha512-q+310vW8zmymYHALr1da4HyXUQ0zgiIwIicEfotYPWGN0OJVEN/58IJ3A4GBYcEq3LGAZqKb+ugvP0GNB9CEAA==}
|
|
751
|
+
|
|
752
|
+
identifier-regex@1.1.0:
|
|
753
|
+
resolution: {integrity: sha512-SLX4H/vtcYlYnL7XqnuJKHU7Z8517TgsW9nmQiGOgMCjQ8V/deLYu6bEmbGoXe7WMMhc9+EUGyFFneHja8KabA==}
|
|
754
|
+
engines: {node: '>=18'}
|
|
755
|
+
|
|
756
|
+
is-absolute-url@4.0.1:
|
|
757
|
+
resolution: {integrity: sha512-/51/TKE88Lmm7Gc4/8btclNXWS+g50wXhYJq8HWIBAGUBnoAdRu1aXeh364t/O7wXDAcTJDP8PNuNKWUDWie+A==}
|
|
758
|
+
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
|
|
759
|
+
|
|
760
|
+
is-docker@3.0.0:
|
|
761
|
+
resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==}
|
|
762
|
+
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
|
|
763
|
+
hasBin: true
|
|
764
|
+
|
|
765
|
+
is-identifier@1.1.0:
|
|
766
|
+
resolution: {integrity: sha512-NhOds0mDx9lJu+1lBRO0xbwFo5nobA7GCk/0e5xjr6+6XugX985+0OyGX35BNrTkPAsdLcIKg02HUQJOK8D8kw==}
|
|
767
|
+
engines: {node: '>=18'}
|
|
768
|
+
|
|
769
|
+
is-in-ssh@1.0.0:
|
|
770
|
+
resolution: {integrity: sha512-jYa6Q9rH90kR1vKB6NM7qqd1mge3Fx4Dhw5TVlK1MUBqhEOuCagrEHMevNuCcbECmXZ0ThXkRm+Ymr51HwEPAw==}
|
|
771
|
+
engines: {node: '>=20'}
|
|
772
|
+
|
|
773
|
+
is-inside-container@1.0.0:
|
|
774
|
+
resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==}
|
|
775
|
+
engines: {node: '>=14.16'}
|
|
776
|
+
hasBin: true
|
|
777
|
+
|
|
778
|
+
is-obj@3.0.0:
|
|
779
|
+
resolution: {integrity: sha512-IlsXEHOjtKhpN8r/tRFj2nDyTmHvcfNeu/nrRIcXE17ROeatXchkojffa1SpdqW4cr/Fj6QkEf/Gn4zf6KKvEQ==}
|
|
780
|
+
engines: {node: '>=12'}
|
|
781
|
+
|
|
782
|
+
is-plain-obj@4.1.0:
|
|
783
|
+
resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==}
|
|
784
|
+
engines: {node: '>=12'}
|
|
785
|
+
|
|
786
|
+
is-regexp@3.1.0:
|
|
787
|
+
resolution: {integrity: sha512-rbku49cWloU5bSMI+zaRaXdQHXnthP6DZ/vLnfdSKyL4zUzuWnomtOEiZZOd+ioQ+avFo/qau3KPTc7Fjy1uPA==}
|
|
788
|
+
engines: {node: '>=12'}
|
|
789
|
+
|
|
790
|
+
is-wsl@3.1.1:
|
|
791
|
+
resolution: {integrity: sha512-e6rvdUCiQCAuumZslxRJWR/Doq4VpPR82kqclvcS0efgt430SlGIk05vdCN58+VrzgtIcfNODjozVielycD4Sw==}
|
|
792
|
+
engines: {node: '>=16'}
|
|
793
|
+
|
|
794
|
+
isexe@2.0.0:
|
|
795
|
+
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
|
|
796
|
+
|
|
797
|
+
jiti@2.7.0:
|
|
798
|
+
resolution: {integrity: sha512-AC/7JofJvZGrrneWNaEnJeOLUx+JlGt7tNa0wZiRPT4MY1wmfKjt2+6O2p2uz2+skll8OZZmJMNqeke7kKbNgQ==}
|
|
799
|
+
hasBin: true
|
|
800
|
+
|
|
801
|
+
js-base64@3.9.1:
|
|
802
|
+
resolution: {integrity: sha512-U73qptcvf/HIOauFOmqT3a0mDUp0MYlfd15oqoe9kqZt5XhiXVb+HG09sLvI9PQ9tZIBFS4nlErai8zbWazP0g==}
|
|
803
|
+
|
|
804
|
+
js-yaml@4.2.0:
|
|
805
|
+
resolution: {integrity: sha512-ePWsvanv0DWuDRsW8dnt+R4jQ31SCRCQ7hhNcPXZPsoBZiemuZNYGf7adZdqX2D86j6rvKp3RpCxVTSb8WQlOw==}
|
|
806
|
+
hasBin: true
|
|
807
|
+
|
|
808
|
+
json-schema-traverse@1.0.0:
|
|
809
|
+
resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==}
|
|
810
|
+
|
|
811
|
+
json-schema@0.4.0:
|
|
812
|
+
resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==}
|
|
813
|
+
|
|
814
|
+
jsonc-parser@3.3.1:
|
|
815
|
+
resolution: {integrity: sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==}
|
|
816
|
+
|
|
817
|
+
longest-streak@3.1.0:
|
|
818
|
+
resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==}
|
|
819
|
+
|
|
820
|
+
lowlight@3.3.0:
|
|
821
|
+
resolution: {integrity: sha512-0JNhgFoPvP6U6lE/UdVsSq99tn6DhjjpAj5MxG49ewd2mOBVtwWYIT8ClyABhq198aXXODMU6Ox8DrGy/CpTZQ==}
|
|
822
|
+
|
|
823
|
+
magic-string@0.30.21:
|
|
824
|
+
resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
|
|
825
|
+
|
|
826
|
+
make-asynchronous@1.1.0:
|
|
827
|
+
resolution: {integrity: sha512-ayF7iT+44LXdxJLTrTd3TLQpFDDvPCBxXxbv+pMUSuHA5Q8zyAfwkRP6aHHwNVFBUFWtxAHqwNJxF8vMZLAbVg==}
|
|
828
|
+
engines: {node: '>=18'}
|
|
829
|
+
|
|
830
|
+
markdown-table@3.0.4:
|
|
831
|
+
resolution: {integrity: sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==}
|
|
832
|
+
|
|
833
|
+
mdast-util-find-and-replace@3.0.2:
|
|
834
|
+
resolution: {integrity: sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==}
|
|
835
|
+
|
|
836
|
+
mdast-util-from-markdown@2.0.3:
|
|
837
|
+
resolution: {integrity: sha512-W4mAWTvSlKvf8L6J+VN9yLSqQ9AOAAvHuoDAmPkz4dHf553m5gVj2ejadHJhoJmcmxEnOv6Pa8XJhpxE93kb8Q==}
|
|
838
|
+
|
|
839
|
+
mdast-util-gfm-autolink-literal@2.0.1:
|
|
840
|
+
resolution: {integrity: sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==}
|
|
841
|
+
|
|
842
|
+
mdast-util-gfm-footnote@2.1.0:
|
|
843
|
+
resolution: {integrity: sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==}
|
|
844
|
+
|
|
845
|
+
mdast-util-gfm-strikethrough@2.0.0:
|
|
846
|
+
resolution: {integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==}
|
|
847
|
+
|
|
848
|
+
mdast-util-gfm-table@2.0.0:
|
|
849
|
+
resolution: {integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==}
|
|
850
|
+
|
|
851
|
+
mdast-util-gfm-task-list-item@2.0.0:
|
|
852
|
+
resolution: {integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==}
|
|
853
|
+
|
|
854
|
+
mdast-util-gfm@3.1.0:
|
|
855
|
+
resolution: {integrity: sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==}
|
|
856
|
+
|
|
857
|
+
mdast-util-phrasing@4.1.0:
|
|
858
|
+
resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==}
|
|
859
|
+
|
|
860
|
+
mdast-util-to-hast@13.2.1:
|
|
861
|
+
resolution: {integrity: sha512-cctsq2wp5vTsLIcaymblUriiTcZd0CwWtCbLvrOzYCDZoWyMNV8sZ7krj09FSnsiJi3WVsHLM4k6Dq/yaPyCXA==}
|
|
862
|
+
|
|
863
|
+
mdast-util-to-markdown@2.1.2:
|
|
864
|
+
resolution: {integrity: sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==}
|
|
865
|
+
|
|
866
|
+
mdast-util-to-string@4.0.0:
|
|
867
|
+
resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==}
|
|
868
|
+
|
|
869
|
+
microdiff@1.5.0:
|
|
870
|
+
resolution: {integrity: sha512-Drq+/THMvDdzRYrK0oxJmOKiC24ayUV8ahrt8l3oRK51PWt6gdtrIGrlIH3pT/lFh1z93FbAcidtsHcWbnRz8Q==}
|
|
871
|
+
|
|
872
|
+
micromark-core-commonmark@2.0.3:
|
|
873
|
+
resolution: {integrity: sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==}
|
|
874
|
+
|
|
875
|
+
micromark-extension-gfm-autolink-literal@2.1.0:
|
|
876
|
+
resolution: {integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==}
|
|
877
|
+
|
|
878
|
+
micromark-extension-gfm-footnote@2.1.0:
|
|
879
|
+
resolution: {integrity: sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==}
|
|
880
|
+
|
|
881
|
+
micromark-extension-gfm-strikethrough@2.1.0:
|
|
882
|
+
resolution: {integrity: sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==}
|
|
883
|
+
|
|
884
|
+
micromark-extension-gfm-table@2.1.1:
|
|
885
|
+
resolution: {integrity: sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==}
|
|
886
|
+
|
|
887
|
+
micromark-extension-gfm-tagfilter@2.0.0:
|
|
888
|
+
resolution: {integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==}
|
|
889
|
+
|
|
890
|
+
micromark-extension-gfm-task-list-item@2.1.0:
|
|
891
|
+
resolution: {integrity: sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==}
|
|
892
|
+
|
|
893
|
+
micromark-extension-gfm@3.0.0:
|
|
894
|
+
resolution: {integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==}
|
|
895
|
+
|
|
896
|
+
micromark-factory-destination@2.0.1:
|
|
897
|
+
resolution: {integrity: sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==}
|
|
898
|
+
|
|
899
|
+
micromark-factory-label@2.0.1:
|
|
900
|
+
resolution: {integrity: sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==}
|
|
901
|
+
|
|
902
|
+
micromark-factory-space@2.0.1:
|
|
903
|
+
resolution: {integrity: sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==}
|
|
904
|
+
|
|
905
|
+
micromark-factory-title@2.0.1:
|
|
906
|
+
resolution: {integrity: sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==}
|
|
907
|
+
|
|
908
|
+
micromark-factory-whitespace@2.0.1:
|
|
909
|
+
resolution: {integrity: sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==}
|
|
910
|
+
|
|
911
|
+
micromark-util-character@2.1.1:
|
|
912
|
+
resolution: {integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==}
|
|
913
|
+
|
|
914
|
+
micromark-util-chunked@2.0.1:
|
|
915
|
+
resolution: {integrity: sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==}
|
|
916
|
+
|
|
917
|
+
micromark-util-classify-character@2.0.1:
|
|
918
|
+
resolution: {integrity: sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==}
|
|
919
|
+
|
|
920
|
+
micromark-util-combine-extensions@2.0.1:
|
|
921
|
+
resolution: {integrity: sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==}
|
|
922
|
+
|
|
923
|
+
micromark-util-decode-numeric-character-reference@2.0.2:
|
|
924
|
+
resolution: {integrity: sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==}
|
|
925
|
+
|
|
926
|
+
micromark-util-decode-string@2.0.1:
|
|
927
|
+
resolution: {integrity: sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==}
|
|
928
|
+
|
|
929
|
+
micromark-util-encode@2.0.1:
|
|
930
|
+
resolution: {integrity: sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==}
|
|
931
|
+
|
|
932
|
+
micromark-util-html-tag-name@2.0.1:
|
|
933
|
+
resolution: {integrity: sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==}
|
|
934
|
+
|
|
935
|
+
micromark-util-normalize-identifier@2.0.1:
|
|
936
|
+
resolution: {integrity: sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==}
|
|
937
|
+
|
|
938
|
+
micromark-util-resolve-all@2.0.1:
|
|
939
|
+
resolution: {integrity: sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==}
|
|
940
|
+
|
|
941
|
+
micromark-util-sanitize-uri@2.0.1:
|
|
942
|
+
resolution: {integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==}
|
|
943
|
+
|
|
944
|
+
micromark-util-subtokenize@2.1.0:
|
|
945
|
+
resolution: {integrity: sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==}
|
|
946
|
+
|
|
947
|
+
micromark-util-symbol@2.0.1:
|
|
948
|
+
resolution: {integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==}
|
|
949
|
+
|
|
950
|
+
micromark-util-types@2.0.2:
|
|
951
|
+
resolution: {integrity: sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==}
|
|
952
|
+
|
|
953
|
+
micromark@4.0.2:
|
|
954
|
+
resolution: {integrity: sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==}
|
|
955
|
+
|
|
956
|
+
ms@2.1.3:
|
|
957
|
+
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
|
|
958
|
+
|
|
959
|
+
nanoid@3.3.16:
|
|
960
|
+
resolution: {integrity: sha512-bzlKTyNJ7+LdGIIwy8ijFpIqEQIvafahV7eYykJ8Cvh42EdJeODoJ6gUJXpQJvej1BddH8OqTXZNE/KfbWAu8Q==}
|
|
961
|
+
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
|
|
962
|
+
hasBin: true
|
|
963
|
+
|
|
964
|
+
nanoid@5.1.16:
|
|
965
|
+
resolution: {integrity: sha512-kVrnsrJqMR8+oLJnGEmSWw9BivK5mt7H3FZatVRjrc5wGqFYuBxX1yG7+A7Gi5AefkX6t/oCkizcQgpu0cY1dQ==}
|
|
966
|
+
engines: {node: ^18 || >=20}
|
|
967
|
+
hasBin: true
|
|
968
|
+
|
|
969
|
+
neverpanic@0.0.8:
|
|
970
|
+
resolution: {integrity: sha512-vVdkelrLxaow/fdWDumzNBO+jwm6X8bxeLJc34THtpj70u0C5QBkcV6CRCu2X726km7XD45N0A3QtYCla4RvKw==}
|
|
971
|
+
|
|
972
|
+
ohash@2.0.11:
|
|
973
|
+
resolution: {integrity: sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==}
|
|
974
|
+
|
|
975
|
+
open@11.0.0:
|
|
976
|
+
resolution: {integrity: sha512-smsWv2LzFjP03xmvFoJ331ss6h+jixfA4UUV/Bsiyuu4YJPfN+FIQGOIiv4w9/+MoHkfkJ22UIaQWRVFRfH6Vw==}
|
|
977
|
+
engines: {node: '>=20'}
|
|
978
|
+
|
|
979
|
+
p-event@6.0.1:
|
|
980
|
+
resolution: {integrity: sha512-Q6Bekk5wpzW5qIyUP4gdMEujObYstZl6DMMOSenwBvV0BlE5LkDwkjs5yHbZmdCEq2o4RJx4tE1vwxFVf2FG1w==}
|
|
981
|
+
engines: {node: '>=16.17'}
|
|
982
|
+
|
|
983
|
+
p-timeout@6.1.4:
|
|
984
|
+
resolution: {integrity: sha512-MyIV3ZA/PmyBN/ud8vV9XzwTrNtR4jFrObymZYnZqMmW0zA8Z17vnT0rBgFE/TlohB+YCHqXMgZzb3Csp49vqg==}
|
|
985
|
+
engines: {node: '>=14.16'}
|
|
986
|
+
|
|
987
|
+
parse-ms@4.0.0:
|
|
988
|
+
resolution: {integrity: sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==}
|
|
989
|
+
engines: {node: '>=18'}
|
|
990
|
+
|
|
991
|
+
parse5@7.3.0:
|
|
992
|
+
resolution: {integrity: sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==}
|
|
993
|
+
|
|
994
|
+
path-key@3.1.1:
|
|
995
|
+
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
|
|
996
|
+
engines: {node: '>=8'}
|
|
997
|
+
|
|
998
|
+
pathe@2.0.3:
|
|
999
|
+
resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==}
|
|
1000
|
+
|
|
1001
|
+
perfect-debounce@2.1.0:
|
|
1002
|
+
resolution: {integrity: sha512-LjgdTytVFXeUgtHZr9WYViYSM/g8MkcTPYDlPa3cDqMirHjKiSZPYd6DoL7pK8AJQr+uWkQvCjHNdiMqsrJs+g==}
|
|
1003
|
+
|
|
1004
|
+
picocolors@1.1.1:
|
|
1005
|
+
resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
|
|
1006
|
+
|
|
1007
|
+
pkg-types@2.3.1:
|
|
1008
|
+
resolution: {integrity: sha512-y+ichcgc2LrADuhLNAx8DFjVfgz91pRxfZdI3UDhxHvcVEZsenLO+7XaU5vOp0u/7V/wZ+plyuQxtrDlZJ+yeg==}
|
|
1009
|
+
|
|
1010
|
+
postcss@8.5.19:
|
|
1011
|
+
resolution: {integrity: sha512-Mz8SaolMd8nB+G13WkORcxQKHZ/NE4xXevtkJHVuG+guo9/wYKlIMTKAqGdEmYOXR2ijPjTYNHssizdaVSUNdQ==}
|
|
1012
|
+
engines: {node: ^10 || ^12 || >=14}
|
|
1013
|
+
|
|
1014
|
+
powershell-utils@0.1.0:
|
|
1015
|
+
resolution: {integrity: sha512-dM0jVuXJPsDN6DvRpea484tCUaMiXWjuCn++HGTqUWzGDjv5tZkEZldAJ/UMlqRYGFrD/etByo4/xOuC/snX2A==}
|
|
1016
|
+
engines: {node: '>=20'}
|
|
1017
|
+
|
|
1018
|
+
pretty-ms@9.3.0:
|
|
1019
|
+
resolution: {integrity: sha512-gjVS5hOP+M3wMm5nmNOucbIrqudzs9v/57bWRHQWLYklXqoXKrVfYW2W9+glfGsqtPgpiz5WwyEEB+ksXIx3gQ==}
|
|
1020
|
+
engines: {node: '>=18'}
|
|
1021
|
+
|
|
1022
|
+
property-information@7.2.0:
|
|
1023
|
+
resolution: {integrity: sha512-IAtzIB6sUiWaJYrX9smp3V46pBGbBeLFRGdh25kg1334VcBlD8HzhPeNIWQH9zhGmo2itIe25EHt9dQP7G5hmg==}
|
|
1024
|
+
|
|
1025
|
+
radix-vue@1.9.17:
|
|
1026
|
+
resolution: {integrity: sha512-mVCu7I2vXt1L2IUYHTt0sZMz7s1K2ZtqKeTIxG3yC5mMFfLBG4FtE1FDeRMpDd+Hhg/ybi9+iXmAP1ISREndoQ==}
|
|
1027
|
+
peerDependencies:
|
|
1028
|
+
vue: '>= 3.2.0'
|
|
1029
|
+
|
|
1030
|
+
rc9@3.0.1:
|
|
1031
|
+
resolution: {integrity: sha512-gMDyleLWVE+i6Sgtc0QbbY6pEKqYs97NGi6isHQPqYlLemPoO8dxQ3uGi0f4NiP98c+jMW6cG1Kx9dDwfvqARQ==}
|
|
1032
|
+
|
|
1033
|
+
readdirp@5.0.0:
|
|
1034
|
+
resolution: {integrity: sha512-9u/XQ1pvrQtYyMpZe7DXKv2p5CNvyVwzUB6uhLAnQwHMSgKMBR62lc7AHljaeteeHXn11XTAaLLUVZYVZyuRBQ==}
|
|
1035
|
+
engines: {node: '>= 20.19.0'}
|
|
1036
|
+
|
|
1037
|
+
rehype-external-links@3.0.0:
|
|
1038
|
+
resolution: {integrity: sha512-yp+e5N9V3C6bwBeAC4n796kc86M4gJCdlVhiMTxIrJG5UHDMh+PJANf9heqORJbt1nrCbDwIlAZKjANIaVBbvw==}
|
|
1039
|
+
|
|
1040
|
+
rehype-format@5.0.1:
|
|
1041
|
+
resolution: {integrity: sha512-zvmVru9uB0josBVpr946OR8ui7nJEdzZobwLOOqHb/OOD88W0Vk2SqLwoVOj0fM6IPCCO6TaV9CvQvJMWwukFQ==}
|
|
1042
|
+
|
|
1043
|
+
rehype-parse@9.0.1:
|
|
1044
|
+
resolution: {integrity: sha512-ksCzCD0Fgfh7trPDxr2rSylbwq9iYDkSn8TCDmEJ49ljEUBxDVCzCHv7QNzZOfODanX4+bWQ4WZqLCRWYLfhag==}
|
|
1045
|
+
|
|
1046
|
+
rehype-raw@7.0.0:
|
|
1047
|
+
resolution: {integrity: sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==}
|
|
1048
|
+
|
|
1049
|
+
rehype-sanitize@6.0.0:
|
|
1050
|
+
resolution: {integrity: sha512-CsnhKNsyI8Tub6L4sm5ZFsme4puGfc6pYylvXo1AeqaGbjOYyzNv3qZPwvs0oMJ39eryyeOdmxwUIo94IpEhqg==}
|
|
1051
|
+
|
|
1052
|
+
rehype-stringify@10.0.1:
|
|
1053
|
+
resolution: {integrity: sha512-k9ecfXHmIPuFVI61B9DeLPN0qFHfawM6RsuX48hoqlaKSF61RskNjSm1lI8PhBEM0MRdLxVVm4WmTqJQccH9mA==}
|
|
1054
|
+
|
|
1055
|
+
remark-gfm@4.0.1:
|
|
1056
|
+
resolution: {integrity: sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==}
|
|
1057
|
+
|
|
1058
|
+
remark-parse@11.0.0:
|
|
1059
|
+
resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==}
|
|
1060
|
+
|
|
1061
|
+
remark-rehype@11.1.2:
|
|
1062
|
+
resolution: {integrity: sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==}
|
|
1063
|
+
|
|
1064
|
+
remark-stringify@11.0.0:
|
|
1065
|
+
resolution: {integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==}
|
|
1066
|
+
|
|
1067
|
+
require-from-string@2.0.2:
|
|
1068
|
+
resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
|
|
1069
|
+
engines: {node: '>=0.10.0'}
|
|
1070
|
+
|
|
1071
|
+
reserved-identifiers@1.2.0:
|
|
1072
|
+
resolution: {integrity: sha512-yE7KUfFvaBFzGPs5H3Ops1RevfUEsDc5Iz65rOwWg4lE8HJSYtle77uul3+573457oHvBKuHYDl/xqUkKpEEdw==}
|
|
1073
|
+
engines: {node: '>=18'}
|
|
1074
|
+
|
|
1075
|
+
resolve-pkg-maps@1.0.0:
|
|
1076
|
+
resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
|
|
1077
|
+
|
|
1078
|
+
run-applescript@7.1.0:
|
|
1079
|
+
resolution: {integrity: sha512-DPe5pVFaAsinSaV6QjQ6gdiedWDcRCbUuiQfQa2wmWV7+xC9bGulGI8+TdRmoFkAPaBXk8CrAbnlY2ISniJ47Q==}
|
|
1080
|
+
engines: {node: '>=18'}
|
|
1081
|
+
|
|
1082
|
+
semver@7.8.4:
|
|
1083
|
+
resolution: {integrity: sha512-rUCObTnP32Q08R2uuIrt7r9PlEonuTmtuXYcW6s5kjdlj3xbnwe+21yXptAUYcMAABLkYYTtnmzb3w3EDZfueA==}
|
|
1084
|
+
engines: {node: '>=10'}
|
|
1085
|
+
hasBin: true
|
|
1086
|
+
|
|
1087
|
+
set-cookie-parser@3.1.0:
|
|
1088
|
+
resolution: {integrity: sha512-kjnC1DXBHcxaOaOXBHBeRtltsDG2nUiUni+jP92M9gYdW12rsmx92UsfpH7o5tDRs7I1ZZPSQJQGv3UaRfCiuw==}
|
|
1089
|
+
|
|
1090
|
+
shebang-command@2.0.0:
|
|
1091
|
+
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
|
|
1092
|
+
engines: {node: '>=8'}
|
|
1093
|
+
|
|
1094
|
+
shebang-regex@3.0.0:
|
|
1095
|
+
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
|
|
1096
|
+
engines: {node: '>=8'}
|
|
1097
|
+
|
|
1098
|
+
source-map-js@1.2.1:
|
|
1099
|
+
resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
|
|
1100
|
+
engines: {node: '>=0.10.0'}
|
|
1101
|
+
|
|
1102
|
+
space-separated-tokens@2.0.2:
|
|
1103
|
+
resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==}
|
|
1104
|
+
|
|
1105
|
+
string-byte-length@3.0.1:
|
|
1106
|
+
resolution: {integrity: sha512-yJ8vP0HMwZ54CcA8S8mKoXbkezpZHANFtmafFo8lGxZThCQcAwRHjdFabuSLgOzxj9OFJcmssmiAvmcOK4O2Hw==}
|
|
1107
|
+
engines: {node: '>=18.18.0'}
|
|
1108
|
+
|
|
1109
|
+
string-byte-slice@3.0.1:
|
|
1110
|
+
resolution: {integrity: sha512-GWv2K4lYyd2+AhmKH3BV+OVx62xDX+99rSLfKpaqFiQU7uOMaUY1tDjdrRD4gsrCr9lTyjMgjna7tZcCOw+Smg==}
|
|
1111
|
+
engines: {node: '>=18.18.0'}
|
|
1112
|
+
|
|
1113
|
+
stringify-entities@4.0.4:
|
|
1114
|
+
resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==}
|
|
1115
|
+
|
|
1116
|
+
stringify-object@6.0.0:
|
|
1117
|
+
resolution: {integrity: sha512-6f94vIED6vmJJfh3lyVsVWxCYSfI5uM+16ntED/Ql37XIyV6kj0mRAAiTeMMc/QLYIaizC3bUprQ8pQnDDrKfA==}
|
|
1118
|
+
engines: {node: '>=20'}
|
|
1119
|
+
|
|
1120
|
+
style-mod@4.1.3:
|
|
1121
|
+
resolution: {integrity: sha512-i/n8VsZydrugj3Iuzll8+x/00GH2vnYsk1eomD8QiRrSAeW6ItbCQDtfXCeJHd0iwiNagqjQkvpvREEPtW3IoQ==}
|
|
1122
|
+
|
|
1123
|
+
super-regex@1.1.0:
|
|
1124
|
+
resolution: {integrity: sha512-WHkws2ZflZe41zj6AolvvmaTrWds/VuyeYr9iPVv/oQeaIoVxMKaushfFWpOGDT+GuBrM/sVqF8KUCYQlSSTdQ==}
|
|
1125
|
+
engines: {node: '>=18'}
|
|
1126
|
+
|
|
1127
|
+
swrv@1.2.0:
|
|
1128
|
+
resolution: {integrity: sha512-lH/g4UcNyj+7lzK4eRGT4C68Q4EhQ6JtM9otPRIASfhhzfLWtbZPHcMuhuba7S9YVYuxkMUGImwMyGpfbkH07A==}
|
|
1129
|
+
peerDependencies:
|
|
1130
|
+
vue: '>=3.2.26 < 4'
|
|
1131
|
+
|
|
1132
|
+
tabbable@6.5.0:
|
|
1133
|
+
resolution: {integrity: sha512-wieBHXygIm7OyQOu5hQlkk62/WyCFYGlWg7L6/ZCUZwx0o398Zkn4pVmMyfYhfMG8kGrj/Krt8eIk6UKC6VzwA==}
|
|
1134
|
+
|
|
1135
|
+
tagged-tag@1.0.0:
|
|
1136
|
+
resolution: {integrity: sha512-yEFYrVhod+hdNyx7g5Bnkkb0G6si8HJurOoOEgC8B/O0uXLHlaey/65KRv6cuWBNhBgHKAROVpc7QyYqE5gFng==}
|
|
1137
|
+
engines: {node: '>=20'}
|
|
1138
|
+
|
|
1139
|
+
tailwind-merge@3.5.0:
|
|
1140
|
+
resolution: {integrity: sha512-I8K9wewnVDkL1NTGoqWmVEIlUcB9gFriAEkXkfCjX5ib8ezGxtR3xD7iZIxrfArjEsH7F1CHD4RFUtxefdqV/A==}
|
|
1141
|
+
|
|
1142
|
+
tailwindcss@4.3.2:
|
|
1143
|
+
resolution: {integrity: sha512-WtctNNSH8A9jlMIqxzuYumOHU5uGZyRv0Q5svQl+oEPy5w84YpBxdb7MdqyiSPQge5jTJ6zFQLq0PFygdccSBA==}
|
|
1144
|
+
|
|
1145
|
+
time-span@5.1.0:
|
|
1146
|
+
resolution: {integrity: sha512-75voc/9G4rDIJleOo4jPvN4/YC4GRZrY8yy1uU4lwrB3XEQbWve8zXoO5No4eFrGcTAMYyoY67p8jRQdtA1HbA==}
|
|
1147
|
+
engines: {node: '>=12'}
|
|
1148
|
+
|
|
1149
|
+
trim-lines@3.0.1:
|
|
1150
|
+
resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==}
|
|
1151
|
+
|
|
1152
|
+
trough@2.2.0:
|
|
1153
|
+
resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==}
|
|
1154
|
+
|
|
1155
|
+
truncate-json@3.0.1:
|
|
1156
|
+
resolution: {integrity: sha512-QVsbr1WhGLq2F0oDyYbqtOXcf3gcnL8C9H5EX8bBwAr8ZWvWGJzukpPrDrWgJMrNtgDbo74BIjI4kJu3q2xQWw==}
|
|
1157
|
+
engines: {node: '>=18.18.0'}
|
|
1158
|
+
|
|
1159
|
+
tslib@2.8.1:
|
|
1160
|
+
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
|
|
1161
|
+
|
|
1162
|
+
type-fest@4.41.0:
|
|
1163
|
+
resolution: {integrity: sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==}
|
|
1164
|
+
engines: {node: '>=16'}
|
|
1165
|
+
|
|
1166
|
+
type-fest@5.8.0:
|
|
1167
|
+
resolution: {integrity: sha512-YGYEVz3Fm5iy/AybuA0oyNFq7H4CgQNfRp/qfe8nurE1kuCeNm3/vfm9X4Mtl+qLyaKJUh5xrFZwogr41SMjYA==}
|
|
1168
|
+
engines: {node: '>=20'}
|
|
1169
|
+
|
|
1170
|
+
typescript@5.9.3:
|
|
1171
|
+
resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
|
|
1172
|
+
engines: {node: '>=14.17'}
|
|
1173
|
+
hasBin: true
|
|
1174
|
+
|
|
1175
|
+
undici-types@7.18.2:
|
|
1176
|
+
resolution: {integrity: sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==}
|
|
1177
|
+
|
|
1178
|
+
unhead@2.1.15:
|
|
1179
|
+
resolution: {integrity: sha512-MCt5T90mCWyr3Z6pUCdM9lVRXoMoVBlL7z7U4CYVIiaDiuzad/UCfLuMqz5MeNmpZUgoBCQnrucJimU7EZR+XA==}
|
|
1180
|
+
|
|
1181
|
+
unified@11.0.5:
|
|
1182
|
+
resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==}
|
|
1183
|
+
|
|
1184
|
+
unist-util-find-after@5.0.0:
|
|
1185
|
+
resolution: {integrity: sha512-amQa0Ep2m6hE2g72AugUItjbuM8X8cGQnFoHk0pGfrFeT9GZhzN5SW8nRsiGKK7Aif4CrACPENkA6P/Lw6fHGQ==}
|
|
1186
|
+
|
|
1187
|
+
unist-util-is@6.0.1:
|
|
1188
|
+
resolution: {integrity: sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==}
|
|
1189
|
+
|
|
1190
|
+
unist-util-position@5.0.0:
|
|
1191
|
+
resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==}
|
|
1192
|
+
|
|
1193
|
+
unist-util-stringify-position@4.0.0:
|
|
1194
|
+
resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==}
|
|
1195
|
+
|
|
1196
|
+
unist-util-visit-parents@6.0.2:
|
|
1197
|
+
resolution: {integrity: sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==}
|
|
1198
|
+
|
|
1199
|
+
unist-util-visit@5.1.0:
|
|
1200
|
+
resolution: {integrity: sha512-m+vIdyeCOpdr/QeQCu2EzxX/ohgS8KbnPDgFni4dQsfSCtpz8UqDyY5GjRru8PDKuYn7Fq19j1CQ+nJSsGKOzg==}
|
|
1201
|
+
|
|
1202
|
+
vfile-location@5.0.3:
|
|
1203
|
+
resolution: {integrity: sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==}
|
|
1204
|
+
|
|
1205
|
+
vfile-message@4.0.3:
|
|
1206
|
+
resolution: {integrity: sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==}
|
|
1207
|
+
|
|
1208
|
+
vfile@6.0.3:
|
|
1209
|
+
resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==}
|
|
1210
|
+
|
|
1211
|
+
vue-component-type-helpers@3.3.7:
|
|
1212
|
+
resolution: {integrity: sha512-Skkhw9agYSgsWqv7bxSOGJZa9SaiJbZVGdXuFWnrzKaQYHnw9qbjD630rw6RyMqDbp54nfLCLw5SZA55if7JLg==}
|
|
1213
|
+
|
|
1214
|
+
vue-demi@0.14.10:
|
|
1215
|
+
resolution: {integrity: sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==}
|
|
1216
|
+
engines: {node: '>=12'}
|
|
1217
|
+
hasBin: true
|
|
1218
|
+
peerDependencies:
|
|
1219
|
+
'@vue/composition-api': ^1.0.0-rc.1
|
|
1220
|
+
vue: ^3.0.0-0 || ^2.6.0
|
|
1221
|
+
peerDependenciesMeta:
|
|
1222
|
+
'@vue/composition-api':
|
|
1223
|
+
optional: true
|
|
1224
|
+
|
|
1225
|
+
vue-sonner@1.3.2:
|
|
1226
|
+
resolution: {integrity: sha512-UbZ48E9VIya3ToiRHAZUbodKute/z/M1iT8/3fU8zEbwBRE11AKuHikssv18LMk2gTTr6eMQT4qf6JoLHWuj/A==}
|
|
1227
|
+
|
|
1228
|
+
vue@3.5.39:
|
|
1229
|
+
resolution: {integrity: sha512-xmZCYabFGcirU8r0fTuvl/LICc1OU620rnqepaJDL/a141ZigkG7AyaxQLdqJ02ZRYzWe6YPaDHeQx7MfknQfA==}
|
|
1230
|
+
peerDependencies:
|
|
1231
|
+
typescript: '*'
|
|
1232
|
+
peerDependenciesMeta:
|
|
1233
|
+
typescript:
|
|
1234
|
+
optional: true
|
|
1235
|
+
|
|
1236
|
+
w3c-keyname@2.2.8:
|
|
1237
|
+
resolution: {integrity: sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ==}
|
|
1238
|
+
|
|
1239
|
+
web-namespaces@2.0.1:
|
|
1240
|
+
resolution: {integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==}
|
|
1241
|
+
|
|
1242
|
+
web-worker@1.5.0:
|
|
1243
|
+
resolution: {integrity: sha512-RiMReJrTAiA+mBjGONMnjVDP2u3p9R1vkcGz6gDIrOMT3oGuYwX2WRMYI9ipkphSuE5XKEhydbhNEJh4NY9mlw==}
|
|
1244
|
+
|
|
1245
|
+
which@2.0.2:
|
|
1246
|
+
resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
|
|
1247
|
+
engines: {node: '>= 8'}
|
|
1248
|
+
hasBin: true
|
|
1249
|
+
|
|
1250
|
+
wsl-utils@0.3.1:
|
|
1251
|
+
resolution: {integrity: sha512-g/eziiSUNBSsdDJtCLB8bdYEUMj4jR7AGeUo96p/3dTafgjHhpF4RiCFPiRILwjQoDXx5MqkBr4fwWtR3Ky4Wg==}
|
|
1252
|
+
engines: {node: '>=20'}
|
|
1253
|
+
|
|
1254
|
+
yaml@2.8.1:
|
|
1255
|
+
resolution: {integrity: sha512-lcYcMxX2PO9XMGvAJkJ3OsNMw+/7FKes7/hgerGUYWIoWu5j/+YQqcZr5JnPZWzOsEBgMbSbiSTn/dv/69Mkpw==}
|
|
1256
|
+
engines: {node: '>= 14.6'}
|
|
1257
|
+
hasBin: true
|
|
1258
|
+
|
|
1259
|
+
yaml@2.9.0:
|
|
1260
|
+
resolution: {integrity: sha512-2AvhNX3mb8zd6Zy7INTtSpl1F15HW6Wnqj0srWlkKLcpYl/gMIMJiyuGq2KeI2YFxUPjdlB+3Lc10seMLtL4cA==}
|
|
1261
|
+
engines: {node: '>= 14.6'}
|
|
1262
|
+
hasBin: true
|
|
1263
|
+
|
|
1264
|
+
zod@4.4.3:
|
|
1265
|
+
resolution: {integrity: sha512-ytENFjIJFl2UwYglde2jchW2Hwm4GJFLDiSXWdTrJQBIN9Fcyp7n4DhxJEiWNAJMV1/BqWfW/kkg71UDcHJyTQ==}
|
|
1266
|
+
|
|
1267
|
+
zwitch@2.0.4:
|
|
1268
|
+
resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==}
|
|
1269
|
+
|
|
1270
|
+
snapshots:
|
|
1271
|
+
|
|
1272
|
+
'@ai-sdk/gateway@3.0.13(zod@4.4.3)':
|
|
1273
|
+
dependencies:
|
|
1274
|
+
'@ai-sdk/provider': 3.0.2
|
|
1275
|
+
'@ai-sdk/provider-utils': 4.0.5(zod@4.4.3)
|
|
1276
|
+
'@vercel/oidc': 3.1.0
|
|
1277
|
+
zod: 4.4.3
|
|
1278
|
+
|
|
1279
|
+
'@ai-sdk/provider-utils@4.0.5(zod@4.4.3)':
|
|
1280
|
+
dependencies:
|
|
1281
|
+
'@ai-sdk/provider': 3.0.2
|
|
1282
|
+
'@standard-schema/spec': 1.1.0
|
|
1283
|
+
eventsource-parser: 3.1.0
|
|
1284
|
+
zod: 4.4.3
|
|
1285
|
+
|
|
1286
|
+
'@ai-sdk/provider@3.0.2':
|
|
1287
|
+
dependencies:
|
|
1288
|
+
json-schema: 0.4.0
|
|
1289
|
+
|
|
1290
|
+
'@ai-sdk/vue@3.0.33(vue@3.5.39(typescript@5.9.3))(zod@4.4.3)':
|
|
1291
|
+
dependencies:
|
|
1292
|
+
'@ai-sdk/provider-utils': 4.0.5(zod@4.4.3)
|
|
1293
|
+
ai: 6.0.33(zod@4.4.3)
|
|
1294
|
+
swrv: 1.2.0(vue@3.5.39(typescript@5.9.3))
|
|
1295
|
+
vue: 3.5.39(typescript@5.9.3)
|
|
1296
|
+
transitivePeerDependencies:
|
|
1297
|
+
- zod
|
|
1298
|
+
|
|
1299
|
+
'@babel/helper-string-parser@7.29.7': {}
|
|
1300
|
+
|
|
1301
|
+
'@babel/helper-validator-identifier@7.29.7': {}
|
|
1302
|
+
|
|
1303
|
+
'@babel/parser@7.29.7':
|
|
1304
|
+
dependencies:
|
|
1305
|
+
'@babel/types': 7.29.7
|
|
1306
|
+
|
|
1307
|
+
'@babel/types@7.29.7':
|
|
1308
|
+
dependencies:
|
|
1309
|
+
'@babel/helper-string-parser': 7.29.7
|
|
1310
|
+
'@babel/helper-validator-identifier': 7.29.7
|
|
1311
|
+
|
|
1312
|
+
'@codemirror/autocomplete@6.20.3':
|
|
1313
|
+
dependencies:
|
|
1314
|
+
'@codemirror/language': 6.12.4
|
|
1315
|
+
'@codemirror/state': 6.7.1
|
|
1316
|
+
'@codemirror/view': 6.43.6
|
|
1317
|
+
'@lezer/common': 1.5.2
|
|
1318
|
+
|
|
1319
|
+
'@codemirror/commands@6.10.4':
|
|
1320
|
+
dependencies:
|
|
1321
|
+
'@codemirror/language': 6.12.4
|
|
1322
|
+
'@codemirror/state': 6.7.1
|
|
1323
|
+
'@codemirror/view': 6.43.6
|
|
1324
|
+
'@lezer/common': 1.5.2
|
|
1325
|
+
|
|
1326
|
+
'@codemirror/lang-css@6.3.1':
|
|
1327
|
+
dependencies:
|
|
1328
|
+
'@codemirror/autocomplete': 6.20.3
|
|
1329
|
+
'@codemirror/language': 6.12.4
|
|
1330
|
+
'@codemirror/state': 6.7.1
|
|
1331
|
+
'@lezer/common': 1.5.2
|
|
1332
|
+
'@lezer/css': 1.3.4
|
|
1333
|
+
|
|
1334
|
+
'@codemirror/lang-html@6.4.11':
|
|
1335
|
+
dependencies:
|
|
1336
|
+
'@codemirror/autocomplete': 6.20.3
|
|
1337
|
+
'@codemirror/lang-css': 6.3.1
|
|
1338
|
+
'@codemirror/lang-javascript': 6.2.5
|
|
1339
|
+
'@codemirror/language': 6.12.4
|
|
1340
|
+
'@codemirror/state': 6.7.1
|
|
1341
|
+
'@codemirror/view': 6.43.6
|
|
1342
|
+
'@lezer/common': 1.5.2
|
|
1343
|
+
'@lezer/css': 1.3.4
|
|
1344
|
+
'@lezer/html': 1.3.13
|
|
1345
|
+
|
|
1346
|
+
'@codemirror/lang-javascript@6.2.5':
|
|
1347
|
+
dependencies:
|
|
1348
|
+
'@codemirror/autocomplete': 6.20.3
|
|
1349
|
+
'@codemirror/language': 6.12.4
|
|
1350
|
+
'@codemirror/lint': 6.9.7
|
|
1351
|
+
'@codemirror/state': 6.7.1
|
|
1352
|
+
'@codemirror/view': 6.43.6
|
|
1353
|
+
'@lezer/common': 1.5.2
|
|
1354
|
+
'@lezer/javascript': 1.5.4
|
|
1355
|
+
|
|
1356
|
+
'@codemirror/lang-json@6.0.2':
|
|
1357
|
+
dependencies:
|
|
1358
|
+
'@codemirror/language': 6.12.4
|
|
1359
|
+
'@lezer/json': 1.0.3
|
|
1360
|
+
|
|
1361
|
+
'@codemirror/lang-xml@6.1.0':
|
|
1362
|
+
dependencies:
|
|
1363
|
+
'@codemirror/autocomplete': 6.20.3
|
|
1364
|
+
'@codemirror/language': 6.12.4
|
|
1365
|
+
'@codemirror/state': 6.7.1
|
|
1366
|
+
'@codemirror/view': 6.43.6
|
|
1367
|
+
'@lezer/common': 1.5.2
|
|
1368
|
+
'@lezer/xml': 1.0.6
|
|
1369
|
+
|
|
1370
|
+
'@codemirror/lang-yaml@6.1.3':
|
|
1371
|
+
dependencies:
|
|
1372
|
+
'@codemirror/autocomplete': 6.20.3
|
|
1373
|
+
'@codemirror/language': 6.12.4
|
|
1374
|
+
'@codemirror/state': 6.7.1
|
|
1375
|
+
'@lezer/common': 1.5.2
|
|
1376
|
+
'@lezer/highlight': 1.2.3
|
|
1377
|
+
'@lezer/lr': 1.4.10
|
|
1378
|
+
'@lezer/yaml': 1.0.4
|
|
1379
|
+
|
|
1380
|
+
'@codemirror/language@6.12.4':
|
|
1381
|
+
dependencies:
|
|
1382
|
+
'@codemirror/state': 6.7.1
|
|
1383
|
+
'@codemirror/view': 6.43.6
|
|
1384
|
+
'@lezer/common': 1.5.2
|
|
1385
|
+
'@lezer/highlight': 1.2.3
|
|
1386
|
+
'@lezer/lr': 1.4.10
|
|
1387
|
+
style-mod: 4.1.3
|
|
1388
|
+
|
|
1389
|
+
'@codemirror/lint@6.9.7':
|
|
1390
|
+
dependencies:
|
|
1391
|
+
'@codemirror/state': 6.7.1
|
|
1392
|
+
'@codemirror/view': 6.43.6
|
|
1393
|
+
crelt: 1.0.7
|
|
1394
|
+
|
|
1395
|
+
'@codemirror/state@6.7.1':
|
|
1396
|
+
dependencies:
|
|
1397
|
+
'@marijn/find-cluster-break': 1.0.3
|
|
1398
|
+
|
|
1399
|
+
'@codemirror/view@6.43.6':
|
|
1400
|
+
dependencies:
|
|
1401
|
+
'@codemirror/state': 6.7.1
|
|
1402
|
+
crelt: 1.0.7
|
|
1403
|
+
style-mod: 4.1.3
|
|
1404
|
+
w3c-keyname: 2.2.8
|
|
1405
|
+
|
|
1406
|
+
'@floating-ui/core@1.8.0':
|
|
1407
|
+
dependencies:
|
|
1408
|
+
'@floating-ui/utils': 0.2.12
|
|
1409
|
+
|
|
1410
|
+
'@floating-ui/dom@1.8.0':
|
|
1411
|
+
dependencies:
|
|
1412
|
+
'@floating-ui/core': 1.8.0
|
|
1413
|
+
'@floating-ui/utils': 0.2.12
|
|
1414
|
+
|
|
1415
|
+
'@floating-ui/utils@0.2.10': {}
|
|
1416
|
+
|
|
1417
|
+
'@floating-ui/utils@0.2.12': {}
|
|
1418
|
+
|
|
1419
|
+
'@floating-ui/vue@1.1.11(vue@3.5.39(typescript@5.9.3))':
|
|
1420
|
+
dependencies:
|
|
1421
|
+
'@floating-ui/dom': 1.8.0
|
|
1422
|
+
'@floating-ui/utils': 0.2.12
|
|
1423
|
+
vue-demi: 0.14.10(vue@3.5.39(typescript@5.9.3))
|
|
1424
|
+
transitivePeerDependencies:
|
|
1425
|
+
- '@vue/composition-api'
|
|
1426
|
+
- vue
|
|
1427
|
+
|
|
1428
|
+
'@floating-ui/vue@1.1.9(vue@3.5.39(typescript@5.9.3))':
|
|
1429
|
+
dependencies:
|
|
1430
|
+
'@floating-ui/dom': 1.8.0
|
|
1431
|
+
'@floating-ui/utils': 0.2.10
|
|
1432
|
+
vue-demi: 0.14.10(vue@3.5.39(typescript@5.9.3))
|
|
1433
|
+
transitivePeerDependencies:
|
|
1434
|
+
- '@vue/composition-api'
|
|
1435
|
+
- vue
|
|
1436
|
+
|
|
1437
|
+
'@headlessui/tailwindcss@0.2.2(tailwindcss@4.3.2)':
|
|
1438
|
+
dependencies:
|
|
1439
|
+
tailwindcss: 4.3.2
|
|
1440
|
+
|
|
1441
|
+
'@headlessui/vue@1.7.23(vue@3.5.39(typescript@5.9.3))':
|
|
1442
|
+
dependencies:
|
|
1443
|
+
'@tanstack/vue-virtual': 3.13.32(vue@3.5.39(typescript@5.9.3))
|
|
1444
|
+
vue: 3.5.39(typescript@5.9.3)
|
|
1445
|
+
|
|
1446
|
+
'@hey-api/codegen-core@0.9.1':
|
|
1447
|
+
dependencies:
|
|
1448
|
+
'@hey-api/types': 0.1.4
|
|
1449
|
+
ansi-colors: 4.1.3
|
|
1450
|
+
c12: 3.3.4
|
|
1451
|
+
color-support: 1.1.3
|
|
1452
|
+
transitivePeerDependencies:
|
|
1453
|
+
- magicast
|
|
1454
|
+
|
|
1455
|
+
'@hey-api/json-schema-ref-parser@1.4.4':
|
|
1456
|
+
dependencies:
|
|
1457
|
+
'@jsdevtools/ono': 7.1.3
|
|
1458
|
+
'@types/json-schema': 7.0.15
|
|
1459
|
+
js-yaml: 4.2.0
|
|
1460
|
+
|
|
1461
|
+
'@hey-api/openapi-ts@0.99.0(typescript@5.9.3)':
|
|
1462
|
+
dependencies:
|
|
1463
|
+
'@hey-api/codegen-core': 0.9.1
|
|
1464
|
+
'@hey-api/json-schema-ref-parser': 1.4.4
|
|
1465
|
+
'@hey-api/shared': 0.5.0
|
|
1466
|
+
'@hey-api/spec-types': 0.2.0
|
|
1467
|
+
'@hey-api/types': 0.1.4
|
|
1468
|
+
'@lukeed/ms': 2.0.2
|
|
1469
|
+
ansi-colors: 4.1.3
|
|
1470
|
+
color-support: 1.1.3
|
|
1471
|
+
commander: 15.0.0
|
|
1472
|
+
get-tsconfig: 4.14.0
|
|
1473
|
+
typescript: 5.9.3
|
|
1474
|
+
transitivePeerDependencies:
|
|
1475
|
+
- magicast
|
|
1476
|
+
|
|
1477
|
+
'@hey-api/shared@0.5.0':
|
|
1478
|
+
dependencies:
|
|
1479
|
+
'@hey-api/codegen-core': 0.9.1
|
|
1480
|
+
'@hey-api/json-schema-ref-parser': 1.4.4
|
|
1481
|
+
'@hey-api/spec-types': 0.2.0
|
|
1482
|
+
'@hey-api/types': 0.1.4
|
|
1483
|
+
ansi-colors: 4.1.3
|
|
1484
|
+
cross-spawn: 7.0.6
|
|
1485
|
+
open: 11.0.0
|
|
1486
|
+
semver: 7.8.4
|
|
1487
|
+
transitivePeerDependencies:
|
|
1488
|
+
- magicast
|
|
1489
|
+
|
|
1490
|
+
'@hey-api/spec-types@0.2.0':
|
|
1491
|
+
dependencies:
|
|
1492
|
+
'@hey-api/types': 0.1.4
|
|
1493
|
+
|
|
1494
|
+
'@hey-api/types@0.1.4': {}
|
|
1495
|
+
|
|
1496
|
+
'@internationalized/date@3.12.2':
|
|
1497
|
+
dependencies:
|
|
1498
|
+
'@swc/helpers': 0.5.23
|
|
1499
|
+
|
|
1500
|
+
'@internationalized/number@3.6.7':
|
|
1501
|
+
dependencies:
|
|
1502
|
+
'@swc/helpers': 0.5.23
|
|
1503
|
+
|
|
1504
|
+
'@jridgewell/sourcemap-codec@1.5.5': {}
|
|
1505
|
+
|
|
1506
|
+
'@jsdevtools/ono@7.1.3': {}
|
|
1507
|
+
|
|
1508
|
+
'@lezer/common@1.5.2': {}
|
|
1509
|
+
|
|
1510
|
+
'@lezer/css@1.3.4':
|
|
1511
|
+
dependencies:
|
|
1512
|
+
'@lezer/common': 1.5.2
|
|
1513
|
+
'@lezer/highlight': 1.2.3
|
|
1514
|
+
'@lezer/lr': 1.4.10
|
|
1515
|
+
|
|
1516
|
+
'@lezer/highlight@1.2.3':
|
|
1517
|
+
dependencies:
|
|
1518
|
+
'@lezer/common': 1.5.2
|
|
1519
|
+
|
|
1520
|
+
'@lezer/html@1.3.13':
|
|
1521
|
+
dependencies:
|
|
1522
|
+
'@lezer/common': 1.5.2
|
|
1523
|
+
'@lezer/highlight': 1.2.3
|
|
1524
|
+
'@lezer/lr': 1.4.10
|
|
1525
|
+
|
|
1526
|
+
'@lezer/javascript@1.5.4':
|
|
1527
|
+
dependencies:
|
|
1528
|
+
'@lezer/common': 1.5.2
|
|
1529
|
+
'@lezer/highlight': 1.2.3
|
|
1530
|
+
'@lezer/lr': 1.4.10
|
|
1531
|
+
|
|
1532
|
+
'@lezer/json@1.0.3':
|
|
1533
|
+
dependencies:
|
|
1534
|
+
'@lezer/common': 1.5.2
|
|
1535
|
+
'@lezer/highlight': 1.2.3
|
|
1536
|
+
'@lezer/lr': 1.4.10
|
|
1537
|
+
|
|
1538
|
+
'@lezer/lr@1.4.10':
|
|
1539
|
+
dependencies:
|
|
1540
|
+
'@lezer/common': 1.5.2
|
|
1541
|
+
|
|
1542
|
+
'@lezer/xml@1.0.6':
|
|
1543
|
+
dependencies:
|
|
1544
|
+
'@lezer/common': 1.5.2
|
|
1545
|
+
'@lezer/highlight': 1.2.3
|
|
1546
|
+
'@lezer/lr': 1.4.10
|
|
1547
|
+
|
|
1548
|
+
'@lezer/yaml@1.0.4':
|
|
1549
|
+
dependencies:
|
|
1550
|
+
'@lezer/common': 1.5.2
|
|
1551
|
+
'@lezer/highlight': 1.2.3
|
|
1552
|
+
'@lezer/lr': 1.4.10
|
|
1553
|
+
|
|
1554
|
+
'@lukeed/ms@2.0.2': {}
|
|
1555
|
+
|
|
1556
|
+
'@marijn/find-cluster-break@1.0.3': {}
|
|
1557
|
+
|
|
1558
|
+
'@opentelemetry/api@1.9.0': {}
|
|
1559
|
+
|
|
1560
|
+
'@phosphor-icons/core@2.1.1': {}
|
|
1561
|
+
|
|
1562
|
+
'@redocly/cli@2.39.0': {}
|
|
1563
|
+
|
|
1564
|
+
'@replit/codemirror-css-color-picker@6.3.0(@codemirror/language@6.12.4)(@codemirror/state@6.7.1)(@codemirror/view@6.43.6)':
|
|
1565
|
+
dependencies:
|
|
1566
|
+
'@codemirror/language': 6.12.4
|
|
1567
|
+
'@codemirror/state': 6.7.1
|
|
1568
|
+
'@codemirror/view': 6.43.6
|
|
1569
|
+
|
|
1570
|
+
'@scalar/agent-chat@0.12.19(tailwindcss@4.3.2)(typescript@5.9.3)(zod@4.4.3)':
|
|
1571
|
+
dependencies:
|
|
1572
|
+
'@ai-sdk/vue': 3.0.33(vue@3.5.39(typescript@5.9.3))(zod@4.4.3)
|
|
1573
|
+
'@scalar/api-client': 3.13.4(tailwindcss@4.3.2)(typescript@5.9.3)
|
|
1574
|
+
'@scalar/components': 0.27.6(tailwindcss@4.3.2)(typescript@5.9.3)
|
|
1575
|
+
'@scalar/helpers': 0.9.0
|
|
1576
|
+
'@scalar/icons': 0.7.3(typescript@5.9.3)
|
|
1577
|
+
'@scalar/json-magic': 0.12.17
|
|
1578
|
+
'@scalar/openapi-types': 0.9.1
|
|
1579
|
+
'@scalar/schemas': 0.7.2
|
|
1580
|
+
'@scalar/themes': 0.16.2
|
|
1581
|
+
'@scalar/types': 0.16.2
|
|
1582
|
+
'@scalar/use-toasts': 0.10.2(typescript@5.9.3)
|
|
1583
|
+
'@scalar/validation': 0.6.0
|
|
1584
|
+
'@scalar/workspace-store': 0.55.4(typescript@5.9.3)
|
|
1585
|
+
'@vueuse/core': 13.9.0(vue@3.5.39(typescript@5.9.3))
|
|
1586
|
+
ai: 6.0.33(zod@4.4.3)
|
|
1587
|
+
js-base64: 3.9.1
|
|
1588
|
+
neverpanic: 0.0.8
|
|
1589
|
+
truncate-json: 3.0.1
|
|
1590
|
+
vue: 3.5.39(typescript@5.9.3)
|
|
1591
|
+
transitivePeerDependencies:
|
|
1592
|
+
- '@vue/composition-api'
|
|
1593
|
+
- async-validator
|
|
1594
|
+
- axios
|
|
1595
|
+
- change-case
|
|
1596
|
+
- drauu
|
|
1597
|
+
- idb-keyval
|
|
1598
|
+
- jwt-decode
|
|
1599
|
+
- nprogress
|
|
1600
|
+
- qrcode
|
|
1601
|
+
- sortablejs
|
|
1602
|
+
- supports-color
|
|
1603
|
+
- tailwindcss
|
|
1604
|
+
- typescript
|
|
1605
|
+
- universal-cookie
|
|
1606
|
+
- zod
|
|
1607
|
+
|
|
1608
|
+
'@scalar/api-client@3.13.4(tailwindcss@4.3.2)(typescript@5.9.3)':
|
|
1609
|
+
dependencies:
|
|
1610
|
+
'@headlessui/tailwindcss': 0.2.2(tailwindcss@4.3.2)
|
|
1611
|
+
'@headlessui/vue': 1.7.23(vue@3.5.39(typescript@5.9.3))
|
|
1612
|
+
'@scalar/blocks': 0.1.5(tailwindcss@4.3.2)(typescript@5.9.3)
|
|
1613
|
+
'@scalar/components': 0.27.6(tailwindcss@4.3.2)(typescript@5.9.3)
|
|
1614
|
+
'@scalar/helpers': 0.9.0
|
|
1615
|
+
'@scalar/icons': 0.7.3(typescript@5.9.3)
|
|
1616
|
+
'@scalar/oas-utils': 0.19.5(typescript@5.9.3)
|
|
1617
|
+
'@scalar/openapi-types': 0.9.1
|
|
1618
|
+
'@scalar/sidebar': 0.9.30(tailwindcss@4.3.2)(typescript@5.9.3)
|
|
1619
|
+
'@scalar/snippetz': 0.9.21
|
|
1620
|
+
'@scalar/themes': 0.16.2
|
|
1621
|
+
'@scalar/typebox': 0.1.3
|
|
1622
|
+
'@scalar/types': 0.16.2
|
|
1623
|
+
'@scalar/use-codemirror': 0.14.12(typescript@5.9.3)
|
|
1624
|
+
'@scalar/use-hooks': 0.4.7(typescript@5.9.3)
|
|
1625
|
+
'@scalar/use-toasts': 0.10.2(typescript@5.9.3)
|
|
1626
|
+
'@scalar/workspace-store': 0.55.4(typescript@5.9.3)
|
|
1627
|
+
'@vueuse/core': 13.9.0(vue@3.5.39(typescript@5.9.3))
|
|
1628
|
+
'@vueuse/integrations': 13.9.0(focus-trap@7.8.0)(fuse.js@7.5.0)(vue@3.5.39(typescript@5.9.3))
|
|
1629
|
+
focus-trap: 7.8.0
|
|
1630
|
+
fuse.js: 7.5.0
|
|
1631
|
+
js-base64: 3.9.1
|
|
1632
|
+
jsonc-parser: 3.3.1
|
|
1633
|
+
nanoid: 5.1.16
|
|
1634
|
+
pretty-ms: 9.3.0
|
|
1635
|
+
radix-vue: 1.9.17(vue@3.5.39(typescript@5.9.3))
|
|
1636
|
+
set-cookie-parser: 3.1.0
|
|
1637
|
+
vue: 3.5.39(typescript@5.9.3)
|
|
1638
|
+
yaml: 2.9.0
|
|
1639
|
+
zod: 4.4.3
|
|
1640
|
+
transitivePeerDependencies:
|
|
1641
|
+
- '@vue/composition-api'
|
|
1642
|
+
- async-validator
|
|
1643
|
+
- axios
|
|
1644
|
+
- change-case
|
|
1645
|
+
- drauu
|
|
1646
|
+
- idb-keyval
|
|
1647
|
+
- jwt-decode
|
|
1648
|
+
- nprogress
|
|
1649
|
+
- qrcode
|
|
1650
|
+
- sortablejs
|
|
1651
|
+
- supports-color
|
|
1652
|
+
- tailwindcss
|
|
1653
|
+
- typescript
|
|
1654
|
+
- universal-cookie
|
|
1655
|
+
|
|
1656
|
+
'@scalar/api-reference@1.62.6(tailwindcss@4.3.2)(typescript@5.9.3)(zod@4.4.3)':
|
|
1657
|
+
dependencies:
|
|
1658
|
+
'@headlessui/vue': 1.7.23(vue@3.5.39(typescript@5.9.3))
|
|
1659
|
+
'@scalar/agent-chat': 0.12.19(tailwindcss@4.3.2)(typescript@5.9.3)(zod@4.4.3)
|
|
1660
|
+
'@scalar/api-client': 3.13.4(tailwindcss@4.3.2)(typescript@5.9.3)
|
|
1661
|
+
'@scalar/blocks': 0.1.5(tailwindcss@4.3.2)(typescript@5.9.3)
|
|
1662
|
+
'@scalar/code-highlight': 0.4.1
|
|
1663
|
+
'@scalar/components': 0.27.6(tailwindcss@4.3.2)(typescript@5.9.3)
|
|
1664
|
+
'@scalar/helpers': 0.9.0
|
|
1665
|
+
'@scalar/icons': 0.7.3(typescript@5.9.3)
|
|
1666
|
+
'@scalar/oas-utils': 0.19.5(typescript@5.9.3)
|
|
1667
|
+
'@scalar/schemas': 0.7.2
|
|
1668
|
+
'@scalar/sidebar': 0.9.30(tailwindcss@4.3.2)(typescript@5.9.3)
|
|
1669
|
+
'@scalar/snippetz': 0.9.21
|
|
1670
|
+
'@scalar/themes': 0.16.2
|
|
1671
|
+
'@scalar/types': 0.16.2
|
|
1672
|
+
'@scalar/use-hooks': 0.4.7(typescript@5.9.3)
|
|
1673
|
+
'@scalar/use-toasts': 0.10.2(typescript@5.9.3)
|
|
1674
|
+
'@scalar/validation': 0.6.0
|
|
1675
|
+
'@scalar/workspace-store': 0.55.4(typescript@5.9.3)
|
|
1676
|
+
'@unhead/vue': 2.1.15(vue@3.5.39(typescript@5.9.3))
|
|
1677
|
+
'@vueuse/core': 13.9.0(vue@3.5.39(typescript@5.9.3))
|
|
1678
|
+
fuse.js: 7.5.0
|
|
1679
|
+
microdiff: 1.5.0
|
|
1680
|
+
nanoid: 5.1.16
|
|
1681
|
+
vue: 3.5.39(typescript@5.9.3)
|
|
1682
|
+
yaml: 2.9.0
|
|
1683
|
+
transitivePeerDependencies:
|
|
1684
|
+
- '@vue/composition-api'
|
|
1685
|
+
- async-validator
|
|
1686
|
+
- axios
|
|
1687
|
+
- change-case
|
|
1688
|
+
- drauu
|
|
1689
|
+
- idb-keyval
|
|
1690
|
+
- jwt-decode
|
|
1691
|
+
- nprogress
|
|
1692
|
+
- qrcode
|
|
1693
|
+
- sortablejs
|
|
1694
|
+
- supports-color
|
|
1695
|
+
- tailwindcss
|
|
1696
|
+
- typescript
|
|
1697
|
+
- universal-cookie
|
|
1698
|
+
- zod
|
|
1699
|
+
|
|
1700
|
+
'@scalar/asyncapi-upgrader@0.1.2':
|
|
1701
|
+
dependencies:
|
|
1702
|
+
'@scalar/helpers': 0.9.0
|
|
1703
|
+
|
|
1704
|
+
'@scalar/blocks@0.1.5(tailwindcss@4.3.2)(typescript@5.9.3)':
|
|
1705
|
+
dependencies:
|
|
1706
|
+
'@scalar/components': 0.27.6(tailwindcss@4.3.2)(typescript@5.9.3)
|
|
1707
|
+
'@scalar/helpers': 0.9.0
|
|
1708
|
+
'@scalar/icons': 0.7.3(typescript@5.9.3)
|
|
1709
|
+
'@scalar/snippetz': 0.9.21
|
|
1710
|
+
'@scalar/themes': 0.16.2
|
|
1711
|
+
'@scalar/types': 0.16.2
|
|
1712
|
+
'@scalar/workspace-store': 0.55.4(typescript@5.9.3)
|
|
1713
|
+
'@types/har-format': 1.2.16
|
|
1714
|
+
js-base64: 3.9.1
|
|
1715
|
+
vue: 3.5.39(typescript@5.9.3)
|
|
1716
|
+
transitivePeerDependencies:
|
|
1717
|
+
- '@vue/composition-api'
|
|
1718
|
+
- supports-color
|
|
1719
|
+
- tailwindcss
|
|
1720
|
+
- typescript
|
|
1721
|
+
|
|
1722
|
+
'@scalar/code-highlight@0.4.1':
|
|
1723
|
+
dependencies:
|
|
1724
|
+
hast-util-to-text: 4.0.2
|
|
1725
|
+
highlight.js: 11.11.1
|
|
1726
|
+
lowlight: 3.3.0
|
|
1727
|
+
rehype-external-links: 3.0.0
|
|
1728
|
+
rehype-format: 5.0.1
|
|
1729
|
+
rehype-parse: 9.0.1
|
|
1730
|
+
rehype-raw: 7.0.0
|
|
1731
|
+
rehype-sanitize: 6.0.0
|
|
1732
|
+
rehype-stringify: 10.0.1
|
|
1733
|
+
remark-gfm: 4.0.1
|
|
1734
|
+
remark-parse: 11.0.0
|
|
1735
|
+
remark-rehype: 11.1.2
|
|
1736
|
+
remark-stringify: 11.0.0
|
|
1737
|
+
unified: 11.0.5
|
|
1738
|
+
unist-util-visit: 5.1.0
|
|
1739
|
+
transitivePeerDependencies:
|
|
1740
|
+
- supports-color
|
|
1741
|
+
|
|
1742
|
+
'@scalar/components@0.27.6(tailwindcss@4.3.2)(typescript@5.9.3)':
|
|
1743
|
+
dependencies:
|
|
1744
|
+
'@floating-ui/utils': 0.2.10
|
|
1745
|
+
'@floating-ui/vue': 1.1.9(vue@3.5.39(typescript@5.9.3))
|
|
1746
|
+
'@headlessui/tailwindcss': 0.2.2(tailwindcss@4.3.2)
|
|
1747
|
+
'@headlessui/vue': 1.7.23(vue@3.5.39(typescript@5.9.3))
|
|
1748
|
+
'@scalar/code-highlight': 0.4.1
|
|
1749
|
+
'@scalar/helpers': 0.9.0
|
|
1750
|
+
'@scalar/icons': 0.7.3(typescript@5.9.3)
|
|
1751
|
+
'@scalar/themes': 0.16.2
|
|
1752
|
+
'@scalar/use-hooks': 0.4.7(typescript@5.9.3)
|
|
1753
|
+
'@vueuse/core': 13.9.0(vue@3.5.39(typescript@5.9.3))
|
|
1754
|
+
cva: 1.0.0-beta.4(typescript@5.9.3)
|
|
1755
|
+
radix-vue: 1.9.17(vue@3.5.39(typescript@5.9.3))
|
|
1756
|
+
vue: 3.5.39(typescript@5.9.3)
|
|
1757
|
+
vue-component-type-helpers: 3.3.7
|
|
1758
|
+
transitivePeerDependencies:
|
|
1759
|
+
- '@vue/composition-api'
|
|
1760
|
+
- supports-color
|
|
1761
|
+
- tailwindcss
|
|
1762
|
+
- typescript
|
|
1763
|
+
|
|
1764
|
+
'@scalar/helpers@0.9.0': {}
|
|
1765
|
+
|
|
1766
|
+
'@scalar/icons@0.7.3(typescript@5.9.3)':
|
|
1767
|
+
dependencies:
|
|
1768
|
+
'@phosphor-icons/core': 2.1.1
|
|
1769
|
+
'@types/node': 24.13.3
|
|
1770
|
+
chalk: 5.6.2
|
|
1771
|
+
vue: 3.5.39(typescript@5.9.3)
|
|
1772
|
+
transitivePeerDependencies:
|
|
1773
|
+
- typescript
|
|
1774
|
+
|
|
1775
|
+
'@scalar/json-magic@0.12.17':
|
|
1776
|
+
dependencies:
|
|
1777
|
+
'@scalar/helpers': 0.9.0
|
|
1778
|
+
pathe: 2.0.3
|
|
1779
|
+
yaml: 2.9.0
|
|
1780
|
+
|
|
1781
|
+
'@scalar/oas-utils@0.19.5(typescript@5.9.3)':
|
|
1782
|
+
dependencies:
|
|
1783
|
+
'@scalar/helpers': 0.9.0
|
|
1784
|
+
'@scalar/themes': 0.16.2
|
|
1785
|
+
'@scalar/types': 0.16.2
|
|
1786
|
+
'@scalar/workspace-store': 0.55.4(typescript@5.9.3)
|
|
1787
|
+
flatted: 3.4.2
|
|
1788
|
+
vue: 3.5.39(typescript@5.9.3)
|
|
1789
|
+
yaml: 2.9.0
|
|
1790
|
+
transitivePeerDependencies:
|
|
1791
|
+
- typescript
|
|
1792
|
+
|
|
1793
|
+
'@scalar/openapi-types@0.9.1': {}
|
|
1794
|
+
|
|
1795
|
+
'@scalar/openapi-upgrader@0.2.9':
|
|
1796
|
+
dependencies:
|
|
1797
|
+
'@scalar/openapi-types': 0.9.1
|
|
1798
|
+
|
|
1799
|
+
'@scalar/schemas@0.7.2':
|
|
1800
|
+
dependencies:
|
|
1801
|
+
'@scalar/helpers': 0.9.0
|
|
1802
|
+
'@scalar/validation': 0.6.0
|
|
1803
|
+
|
|
1804
|
+
'@scalar/sidebar@0.9.30(tailwindcss@4.3.2)(typescript@5.9.3)':
|
|
1805
|
+
dependencies:
|
|
1806
|
+
'@scalar/components': 0.27.6(tailwindcss@4.3.2)(typescript@5.9.3)
|
|
1807
|
+
'@scalar/helpers': 0.9.0
|
|
1808
|
+
'@scalar/icons': 0.7.3(typescript@5.9.3)
|
|
1809
|
+
'@scalar/themes': 0.16.2
|
|
1810
|
+
'@scalar/use-hooks': 0.4.7(typescript@5.9.3)
|
|
1811
|
+
'@scalar/workspace-store': 0.55.4(typescript@5.9.3)
|
|
1812
|
+
vue: 3.5.39(typescript@5.9.3)
|
|
1813
|
+
transitivePeerDependencies:
|
|
1814
|
+
- '@vue/composition-api'
|
|
1815
|
+
- supports-color
|
|
1816
|
+
- tailwindcss
|
|
1817
|
+
- typescript
|
|
1818
|
+
|
|
1819
|
+
'@scalar/snippetz@0.9.21':
|
|
1820
|
+
dependencies:
|
|
1821
|
+
'@scalar/helpers': 0.9.0
|
|
1822
|
+
'@scalar/types': 0.16.2
|
|
1823
|
+
js-base64: 3.9.1
|
|
1824
|
+
stringify-object: 6.0.0
|
|
1825
|
+
|
|
1826
|
+
'@scalar/themes@0.16.2':
|
|
1827
|
+
dependencies:
|
|
1828
|
+
nanoid: 5.1.16
|
|
1829
|
+
|
|
1830
|
+
'@scalar/typebox@0.1.3': {}
|
|
1831
|
+
|
|
1832
|
+
'@scalar/types@0.16.2':
|
|
1833
|
+
dependencies:
|
|
1834
|
+
'@scalar/helpers': 0.9.0
|
|
1835
|
+
nanoid: 5.1.16
|
|
1836
|
+
type-fest: 5.8.0
|
|
1837
|
+
zod: 4.4.3
|
|
1838
|
+
|
|
1839
|
+
'@scalar/use-codemirror@0.14.12(typescript@5.9.3)':
|
|
1840
|
+
dependencies:
|
|
1841
|
+
'@codemirror/autocomplete': 6.20.3
|
|
1842
|
+
'@codemirror/commands': 6.10.4
|
|
1843
|
+
'@codemirror/lang-css': 6.3.1
|
|
1844
|
+
'@codemirror/lang-html': 6.4.11
|
|
1845
|
+
'@codemirror/lang-json': 6.0.2
|
|
1846
|
+
'@codemirror/lang-xml': 6.1.0
|
|
1847
|
+
'@codemirror/lang-yaml': 6.1.3
|
|
1848
|
+
'@codemirror/language': 6.12.4
|
|
1849
|
+
'@codemirror/lint': 6.9.7
|
|
1850
|
+
'@codemirror/state': 6.7.1
|
|
1851
|
+
'@codemirror/view': 6.43.6
|
|
1852
|
+
'@lezer/common': 1.5.2
|
|
1853
|
+
'@lezer/highlight': 1.2.3
|
|
1854
|
+
'@replit/codemirror-css-color-picker': 6.3.0(@codemirror/language@6.12.4)(@codemirror/state@6.7.1)(@codemirror/view@6.43.6)
|
|
1855
|
+
vue: 3.5.39(typescript@5.9.3)
|
|
1856
|
+
transitivePeerDependencies:
|
|
1857
|
+
- typescript
|
|
1858
|
+
|
|
1859
|
+
'@scalar/use-hooks@0.4.7(typescript@5.9.3)':
|
|
1860
|
+
dependencies:
|
|
1861
|
+
'@scalar/use-toasts': 0.10.2(typescript@5.9.3)
|
|
1862
|
+
'@scalar/validation': 0.6.0
|
|
1863
|
+
'@vueuse/core': 13.9.0(vue@3.5.39(typescript@5.9.3))
|
|
1864
|
+
cva: 1.0.0-beta.4(typescript@5.9.3)
|
|
1865
|
+
tailwind-merge: 3.5.0
|
|
1866
|
+
vue: 3.5.39(typescript@5.9.3)
|
|
1867
|
+
transitivePeerDependencies:
|
|
1868
|
+
- typescript
|
|
1869
|
+
|
|
1870
|
+
'@scalar/use-toasts@0.10.2(typescript@5.9.3)':
|
|
1871
|
+
dependencies:
|
|
1872
|
+
vue: 3.5.39(typescript@5.9.3)
|
|
1873
|
+
vue-sonner: 1.3.2
|
|
1874
|
+
transitivePeerDependencies:
|
|
1875
|
+
- typescript
|
|
1876
|
+
|
|
1877
|
+
'@scalar/validation@0.6.0': {}
|
|
1878
|
+
|
|
1879
|
+
'@scalar/workspace-store@0.55.4(typescript@5.9.3)':
|
|
1880
|
+
dependencies:
|
|
1881
|
+
'@scalar/asyncapi-upgrader': 0.1.2
|
|
1882
|
+
'@scalar/helpers': 0.9.0
|
|
1883
|
+
'@scalar/json-magic': 0.12.17
|
|
1884
|
+
'@scalar/openapi-upgrader': 0.2.9
|
|
1885
|
+
'@scalar/schemas': 0.7.2
|
|
1886
|
+
'@scalar/snippetz': 0.9.21
|
|
1887
|
+
'@scalar/typebox': 0.1.3
|
|
1888
|
+
'@scalar/types': 0.16.2
|
|
1889
|
+
'@scalar/validation': 0.6.0
|
|
1890
|
+
js-base64: 3.9.1
|
|
1891
|
+
type-fest: 5.8.0
|
|
1892
|
+
vue: 3.5.39(typescript@5.9.3)
|
|
1893
|
+
yaml: 2.9.0
|
|
1894
|
+
transitivePeerDependencies:
|
|
1895
|
+
- typescript
|
|
1896
|
+
|
|
1897
|
+
'@standard-schema/spec@1.1.0': {}
|
|
1898
|
+
|
|
1899
|
+
'@swaggerexpert/jsonpath@4.0.4':
|
|
1900
|
+
dependencies:
|
|
1901
|
+
apg-lite: 1.0.5
|
|
1902
|
+
|
|
1903
|
+
'@swc/helpers@0.5.23':
|
|
1904
|
+
dependencies:
|
|
1905
|
+
tslib: 2.8.1
|
|
1906
|
+
|
|
1907
|
+
'@tanstack/virtual-core@3.17.4': {}
|
|
1908
|
+
|
|
1909
|
+
'@tanstack/vue-virtual@3.13.32(vue@3.5.39(typescript@5.9.3))':
|
|
1910
|
+
dependencies:
|
|
1911
|
+
'@tanstack/virtual-core': 3.17.4
|
|
1912
|
+
vue: 3.5.39(typescript@5.9.3)
|
|
1913
|
+
|
|
1914
|
+
'@types/debug@4.1.13':
|
|
1915
|
+
dependencies:
|
|
1916
|
+
'@types/ms': 2.1.0
|
|
1917
|
+
|
|
1918
|
+
'@types/har-format@1.2.16': {}
|
|
1919
|
+
|
|
1920
|
+
'@types/hast@3.0.5':
|
|
1921
|
+
dependencies:
|
|
1922
|
+
'@types/unist': 3.0.3
|
|
1923
|
+
|
|
1924
|
+
'@types/json-schema@7.0.15': {}
|
|
1925
|
+
|
|
1926
|
+
'@types/mdast@4.0.4':
|
|
1927
|
+
dependencies:
|
|
1928
|
+
'@types/unist': 3.0.3
|
|
1929
|
+
|
|
1930
|
+
'@types/ms@2.1.0': {}
|
|
1931
|
+
|
|
1932
|
+
'@types/node@24.13.3':
|
|
1933
|
+
dependencies:
|
|
1934
|
+
undici-types: 7.18.2
|
|
1935
|
+
|
|
1936
|
+
'@types/unist@3.0.3': {}
|
|
1937
|
+
|
|
1938
|
+
'@types/web-bluetooth@0.0.20': {}
|
|
1939
|
+
|
|
1940
|
+
'@types/web-bluetooth@0.0.21': {}
|
|
1941
|
+
|
|
1942
|
+
'@ungap/structured-clone@1.3.3': {}
|
|
1943
|
+
|
|
1944
|
+
'@unhead/vue@2.1.15(vue@3.5.39(typescript@5.9.3))':
|
|
1945
|
+
dependencies:
|
|
1946
|
+
hookable: 6.1.1
|
|
1947
|
+
unhead: 2.1.15
|
|
1948
|
+
vue: 3.5.39(typescript@5.9.3)
|
|
1949
|
+
|
|
1950
|
+
'@vercel/oidc@3.1.0': {}
|
|
1951
|
+
|
|
1952
|
+
'@vue/compiler-core@3.5.39':
|
|
1953
|
+
dependencies:
|
|
1954
|
+
'@babel/parser': 7.29.7
|
|
1955
|
+
'@vue/shared': 3.5.39
|
|
1956
|
+
entities: 7.0.1
|
|
1957
|
+
estree-walker: 2.0.2
|
|
1958
|
+
source-map-js: 1.2.1
|
|
1959
|
+
|
|
1960
|
+
'@vue/compiler-dom@3.5.39':
|
|
1961
|
+
dependencies:
|
|
1962
|
+
'@vue/compiler-core': 3.5.39
|
|
1963
|
+
'@vue/shared': 3.5.39
|
|
1964
|
+
|
|
1965
|
+
'@vue/compiler-sfc@3.5.39':
|
|
1966
|
+
dependencies:
|
|
1967
|
+
'@babel/parser': 7.29.7
|
|
1968
|
+
'@vue/compiler-core': 3.5.39
|
|
1969
|
+
'@vue/compiler-dom': 3.5.39
|
|
1970
|
+
'@vue/compiler-ssr': 3.5.39
|
|
1971
|
+
'@vue/shared': 3.5.39
|
|
1972
|
+
estree-walker: 2.0.2
|
|
1973
|
+
magic-string: 0.30.21
|
|
1974
|
+
postcss: 8.5.19
|
|
1975
|
+
source-map-js: 1.2.1
|
|
1976
|
+
|
|
1977
|
+
'@vue/compiler-ssr@3.5.39':
|
|
1978
|
+
dependencies:
|
|
1979
|
+
'@vue/compiler-dom': 3.5.39
|
|
1980
|
+
'@vue/shared': 3.5.39
|
|
1981
|
+
|
|
1982
|
+
'@vue/reactivity@3.5.39':
|
|
1983
|
+
dependencies:
|
|
1984
|
+
'@vue/shared': 3.5.39
|
|
1985
|
+
|
|
1986
|
+
'@vue/runtime-core@3.5.39':
|
|
1987
|
+
dependencies:
|
|
1988
|
+
'@vue/reactivity': 3.5.39
|
|
1989
|
+
'@vue/shared': 3.5.39
|
|
1990
|
+
|
|
1991
|
+
'@vue/runtime-dom@3.5.39':
|
|
1992
|
+
dependencies:
|
|
1993
|
+
'@vue/reactivity': 3.5.39
|
|
1994
|
+
'@vue/runtime-core': 3.5.39
|
|
1995
|
+
'@vue/shared': 3.5.39
|
|
1996
|
+
csstype: 3.2.3
|
|
1997
|
+
|
|
1998
|
+
'@vue/server-renderer@3.5.39(vue@3.5.39(typescript@5.9.3))':
|
|
1999
|
+
dependencies:
|
|
2000
|
+
'@vue/compiler-ssr': 3.5.39
|
|
2001
|
+
'@vue/shared': 3.5.39
|
|
2002
|
+
vue: 3.5.39(typescript@5.9.3)
|
|
2003
|
+
|
|
2004
|
+
'@vue/shared@3.5.39': {}
|
|
2005
|
+
|
|
2006
|
+
'@vueuse/core@10.11.1(vue@3.5.39(typescript@5.9.3))':
|
|
2007
|
+
dependencies:
|
|
2008
|
+
'@types/web-bluetooth': 0.0.20
|
|
2009
|
+
'@vueuse/metadata': 10.11.1
|
|
2010
|
+
'@vueuse/shared': 10.11.1(vue@3.5.39(typescript@5.9.3))
|
|
2011
|
+
vue-demi: 0.14.10(vue@3.5.39(typescript@5.9.3))
|
|
2012
|
+
transitivePeerDependencies:
|
|
2013
|
+
- '@vue/composition-api'
|
|
2014
|
+
- vue
|
|
2015
|
+
|
|
2016
|
+
'@vueuse/core@13.9.0(vue@3.5.39(typescript@5.9.3))':
|
|
2017
|
+
dependencies:
|
|
2018
|
+
'@types/web-bluetooth': 0.0.21
|
|
2019
|
+
'@vueuse/metadata': 13.9.0
|
|
2020
|
+
'@vueuse/shared': 13.9.0(vue@3.5.39(typescript@5.9.3))
|
|
2021
|
+
vue: 3.5.39(typescript@5.9.3)
|
|
2022
|
+
|
|
2023
|
+
'@vueuse/integrations@13.9.0(focus-trap@7.8.0)(fuse.js@7.5.0)(vue@3.5.39(typescript@5.9.3))':
|
|
2024
|
+
dependencies:
|
|
2025
|
+
'@vueuse/core': 13.9.0(vue@3.5.39(typescript@5.9.3))
|
|
2026
|
+
'@vueuse/shared': 13.9.0(vue@3.5.39(typescript@5.9.3))
|
|
2027
|
+
vue: 3.5.39(typescript@5.9.3)
|
|
2028
|
+
optionalDependencies:
|
|
2029
|
+
focus-trap: 7.8.0
|
|
2030
|
+
fuse.js: 7.5.0
|
|
2031
|
+
|
|
2032
|
+
'@vueuse/metadata@10.11.1': {}
|
|
2033
|
+
|
|
2034
|
+
'@vueuse/metadata@13.9.0': {}
|
|
2035
|
+
|
|
2036
|
+
'@vueuse/shared@10.11.1(vue@3.5.39(typescript@5.9.3))':
|
|
2037
|
+
dependencies:
|
|
2038
|
+
vue-demi: 0.14.10(vue@3.5.39(typescript@5.9.3))
|
|
2039
|
+
transitivePeerDependencies:
|
|
2040
|
+
- '@vue/composition-api'
|
|
2041
|
+
- vue
|
|
2042
|
+
|
|
2043
|
+
'@vueuse/shared@13.9.0(vue@3.5.39(typescript@5.9.3))':
|
|
2044
|
+
dependencies:
|
|
2045
|
+
vue: 3.5.39(typescript@5.9.3)
|
|
2046
|
+
|
|
2047
|
+
ai@6.0.33(zod@4.4.3):
|
|
2048
|
+
dependencies:
|
|
2049
|
+
'@ai-sdk/gateway': 3.0.13(zod@4.4.3)
|
|
2050
|
+
'@ai-sdk/provider': 3.0.2
|
|
2051
|
+
'@ai-sdk/provider-utils': 4.0.5(zod@4.4.3)
|
|
2052
|
+
'@opentelemetry/api': 1.9.0
|
|
2053
|
+
zod: 4.4.3
|
|
2054
|
+
|
|
2055
|
+
ajv-formats@3.0.1(ajv@8.20.0):
|
|
2056
|
+
optionalDependencies:
|
|
2057
|
+
ajv: 8.20.0
|
|
2058
|
+
|
|
2059
|
+
ajv@8.20.0:
|
|
2060
|
+
dependencies:
|
|
2061
|
+
fast-deep-equal: 3.1.3
|
|
2062
|
+
fast-uri: 3.1.7
|
|
2063
|
+
json-schema-traverse: 1.0.0
|
|
2064
|
+
require-from-string: 2.0.2
|
|
2065
|
+
|
|
2066
|
+
ansi-colors@4.1.3: {}
|
|
2067
|
+
|
|
2068
|
+
apg-lite@1.0.5: {}
|
|
2069
|
+
|
|
2070
|
+
argparse@2.0.1: {}
|
|
2071
|
+
|
|
2072
|
+
aria-hidden@1.2.6:
|
|
2073
|
+
dependencies:
|
|
2074
|
+
tslib: 2.8.1
|
|
2075
|
+
|
|
2076
|
+
bail@2.0.2: {}
|
|
2077
|
+
|
|
2078
|
+
bundle-name@4.1.0:
|
|
2079
|
+
dependencies:
|
|
2080
|
+
run-applescript: 7.1.0
|
|
2081
|
+
|
|
2082
|
+
c12@3.3.4:
|
|
2083
|
+
dependencies:
|
|
2084
|
+
chokidar: 5.0.0
|
|
2085
|
+
confbox: 0.2.4
|
|
2086
|
+
defu: 6.1.7
|
|
2087
|
+
dotenv: 17.4.2
|
|
2088
|
+
exsolve: 1.1.0
|
|
2089
|
+
giget: 3.3.0
|
|
2090
|
+
jiti: 2.7.0
|
|
2091
|
+
ohash: 2.0.11
|
|
2092
|
+
pathe: 2.0.3
|
|
2093
|
+
perfect-debounce: 2.1.0
|
|
2094
|
+
pkg-types: 2.3.1
|
|
2095
|
+
rc9: 3.0.1
|
|
2096
|
+
|
|
2097
|
+
ccount@2.0.1: {}
|
|
2098
|
+
|
|
2099
|
+
chalk@5.6.2: {}
|
|
2100
|
+
|
|
2101
|
+
character-entities-html4@2.1.0: {}
|
|
2102
|
+
|
|
2103
|
+
character-entities-legacy@3.0.0: {}
|
|
2104
|
+
|
|
2105
|
+
character-entities@2.0.2: {}
|
|
2106
|
+
|
|
2107
|
+
chokidar@5.0.0:
|
|
2108
|
+
dependencies:
|
|
2109
|
+
readdirp: 5.0.0
|
|
2110
|
+
|
|
2111
|
+
clsx@2.1.1: {}
|
|
2112
|
+
|
|
2113
|
+
color-support@1.1.3: {}
|
|
2114
|
+
|
|
2115
|
+
comma-separated-tokens@2.0.3: {}
|
|
2116
|
+
|
|
2117
|
+
commander@15.0.0: {}
|
|
2118
|
+
|
|
2119
|
+
confbox@0.2.4: {}
|
|
2120
|
+
|
|
2121
|
+
convert-hrtime@5.0.0: {}
|
|
2122
|
+
|
|
2123
|
+
crelt@1.0.7: {}
|
|
2124
|
+
|
|
2125
|
+
cross-spawn@7.0.6:
|
|
2126
|
+
dependencies:
|
|
2127
|
+
path-key: 3.1.1
|
|
2128
|
+
shebang-command: 2.0.0
|
|
2129
|
+
which: 2.0.2
|
|
2130
|
+
|
|
2131
|
+
csstype@3.2.3: {}
|
|
2132
|
+
|
|
2133
|
+
cva@1.0.0-beta.4(typescript@5.9.3):
|
|
2134
|
+
dependencies:
|
|
2135
|
+
clsx: 2.1.1
|
|
2136
|
+
optionalDependencies:
|
|
2137
|
+
typescript: 5.9.3
|
|
2138
|
+
|
|
2139
|
+
debug@4.4.3:
|
|
2140
|
+
dependencies:
|
|
2141
|
+
ms: 2.1.3
|
|
2142
|
+
|
|
2143
|
+
decode-named-character-reference@1.3.0:
|
|
2144
|
+
dependencies:
|
|
2145
|
+
character-entities: 2.0.2
|
|
2146
|
+
|
|
2147
|
+
default-browser-id@5.0.1: {}
|
|
2148
|
+
|
|
2149
|
+
default-browser@5.5.0:
|
|
2150
|
+
dependencies:
|
|
2151
|
+
bundle-name: 4.1.0
|
|
2152
|
+
default-browser-id: 5.0.1
|
|
2153
|
+
|
|
2154
|
+
define-lazy-prop@3.0.0: {}
|
|
2155
|
+
|
|
2156
|
+
defu@6.1.7: {}
|
|
2157
|
+
|
|
2158
|
+
dequal@2.0.3: {}
|
|
2159
|
+
|
|
2160
|
+
destr@2.0.5: {}
|
|
2161
|
+
|
|
2162
|
+
devlop@1.1.0:
|
|
2163
|
+
dependencies:
|
|
2164
|
+
dequal: 2.0.3
|
|
2165
|
+
|
|
2166
|
+
dotenv@17.4.2: {}
|
|
2167
|
+
|
|
2168
|
+
entities@6.0.1: {}
|
|
2169
|
+
|
|
2170
|
+
entities@7.0.1: {}
|
|
2171
|
+
|
|
2172
|
+
escape-string-regexp@5.0.0: {}
|
|
2173
|
+
|
|
2174
|
+
estree-walker@2.0.2: {}
|
|
2175
|
+
|
|
2176
|
+
eventsource-parser@3.1.0: {}
|
|
2177
|
+
|
|
2178
|
+
exsolve@1.1.0: {}
|
|
2179
|
+
|
|
2180
|
+
extend@3.0.2: {}
|
|
2181
|
+
|
|
2182
|
+
fast-deep-equal@3.1.3: {}
|
|
2183
|
+
|
|
2184
|
+
fast-uri@3.1.7: {}
|
|
2185
|
+
|
|
2186
|
+
flatted@3.4.2: {}
|
|
2187
|
+
|
|
2188
|
+
focus-trap@7.8.0:
|
|
2189
|
+
dependencies:
|
|
2190
|
+
tabbable: 6.5.0
|
|
2191
|
+
|
|
2192
|
+
function-timeout@1.0.2: {}
|
|
2193
|
+
|
|
2194
|
+
fuse.js@7.5.0: {}
|
|
2195
|
+
|
|
2196
|
+
get-own-enumerable-keys@1.0.0: {}
|
|
2197
|
+
|
|
2198
|
+
get-tsconfig@4.14.0:
|
|
2199
|
+
dependencies:
|
|
2200
|
+
resolve-pkg-maps: 1.0.0
|
|
2201
|
+
|
|
2202
|
+
giget@3.3.0: {}
|
|
2203
|
+
|
|
2204
|
+
guess-json-indent@3.0.1: {}
|
|
2205
|
+
|
|
2206
|
+
hast-util-embedded@3.0.0:
|
|
2207
|
+
dependencies:
|
|
2208
|
+
'@types/hast': 3.0.5
|
|
2209
|
+
hast-util-is-element: 3.0.0
|
|
2210
|
+
|
|
2211
|
+
hast-util-format@1.1.0:
|
|
2212
|
+
dependencies:
|
|
2213
|
+
'@types/hast': 3.0.5
|
|
2214
|
+
hast-util-embedded: 3.0.0
|
|
2215
|
+
hast-util-minify-whitespace: 1.0.1
|
|
2216
|
+
hast-util-phrasing: 3.0.1
|
|
2217
|
+
hast-util-whitespace: 3.0.0
|
|
2218
|
+
html-whitespace-sensitive-tag-names: 3.0.1
|
|
2219
|
+
unist-util-visit-parents: 6.0.2
|
|
2220
|
+
|
|
2221
|
+
hast-util-from-html@2.0.3:
|
|
2222
|
+
dependencies:
|
|
2223
|
+
'@types/hast': 3.0.5
|
|
2224
|
+
devlop: 1.1.0
|
|
2225
|
+
hast-util-from-parse5: 8.0.3
|
|
2226
|
+
parse5: 7.3.0
|
|
2227
|
+
vfile: 6.0.3
|
|
2228
|
+
vfile-message: 4.0.3
|
|
2229
|
+
|
|
2230
|
+
hast-util-from-parse5@8.0.3:
|
|
2231
|
+
dependencies:
|
|
2232
|
+
'@types/hast': 3.0.5
|
|
2233
|
+
'@types/unist': 3.0.3
|
|
2234
|
+
devlop: 1.1.0
|
|
2235
|
+
hastscript: 9.0.1
|
|
2236
|
+
property-information: 7.2.0
|
|
2237
|
+
vfile: 6.0.3
|
|
2238
|
+
vfile-location: 5.0.3
|
|
2239
|
+
web-namespaces: 2.0.1
|
|
2240
|
+
|
|
2241
|
+
hast-util-has-property@3.0.0:
|
|
2242
|
+
dependencies:
|
|
2243
|
+
'@types/hast': 3.0.5
|
|
2244
|
+
|
|
2245
|
+
hast-util-is-body-ok-link@3.0.1:
|
|
2246
|
+
dependencies:
|
|
2247
|
+
'@types/hast': 3.0.5
|
|
2248
|
+
|
|
2249
|
+
hast-util-is-element@3.0.0:
|
|
2250
|
+
dependencies:
|
|
2251
|
+
'@types/hast': 3.0.5
|
|
2252
|
+
|
|
2253
|
+
hast-util-minify-whitespace@1.0.1:
|
|
2254
|
+
dependencies:
|
|
2255
|
+
'@types/hast': 3.0.5
|
|
2256
|
+
hast-util-embedded: 3.0.0
|
|
2257
|
+
hast-util-is-element: 3.0.0
|
|
2258
|
+
hast-util-whitespace: 3.0.0
|
|
2259
|
+
unist-util-is: 6.0.1
|
|
2260
|
+
|
|
2261
|
+
hast-util-parse-selector@4.0.0:
|
|
2262
|
+
dependencies:
|
|
2263
|
+
'@types/hast': 3.0.5
|
|
2264
|
+
|
|
2265
|
+
hast-util-phrasing@3.0.1:
|
|
2266
|
+
dependencies:
|
|
2267
|
+
'@types/hast': 3.0.5
|
|
2268
|
+
hast-util-embedded: 3.0.0
|
|
2269
|
+
hast-util-has-property: 3.0.0
|
|
2270
|
+
hast-util-is-body-ok-link: 3.0.1
|
|
2271
|
+
hast-util-is-element: 3.0.0
|
|
2272
|
+
|
|
2273
|
+
hast-util-raw@9.1.0:
|
|
2274
|
+
dependencies:
|
|
2275
|
+
'@types/hast': 3.0.5
|
|
2276
|
+
'@types/unist': 3.0.3
|
|
2277
|
+
'@ungap/structured-clone': 1.3.3
|
|
2278
|
+
hast-util-from-parse5: 8.0.3
|
|
2279
|
+
hast-util-to-parse5: 8.0.1
|
|
2280
|
+
html-void-elements: 3.0.0
|
|
2281
|
+
mdast-util-to-hast: 13.2.1
|
|
2282
|
+
parse5: 7.3.0
|
|
2283
|
+
unist-util-position: 5.0.0
|
|
2284
|
+
unist-util-visit: 5.1.0
|
|
2285
|
+
vfile: 6.0.3
|
|
2286
|
+
web-namespaces: 2.0.1
|
|
2287
|
+
zwitch: 2.0.4
|
|
2288
|
+
|
|
2289
|
+
hast-util-sanitize@5.0.2:
|
|
2290
|
+
dependencies:
|
|
2291
|
+
'@types/hast': 3.0.5
|
|
2292
|
+
'@ungap/structured-clone': 1.3.3
|
|
2293
|
+
unist-util-position: 5.0.0
|
|
2294
|
+
|
|
2295
|
+
hast-util-to-html@9.0.5:
|
|
2296
|
+
dependencies:
|
|
2297
|
+
'@types/hast': 3.0.5
|
|
2298
|
+
'@types/unist': 3.0.3
|
|
2299
|
+
ccount: 2.0.1
|
|
2300
|
+
comma-separated-tokens: 2.0.3
|
|
2301
|
+
hast-util-whitespace: 3.0.0
|
|
2302
|
+
html-void-elements: 3.0.0
|
|
2303
|
+
mdast-util-to-hast: 13.2.1
|
|
2304
|
+
property-information: 7.2.0
|
|
2305
|
+
space-separated-tokens: 2.0.2
|
|
2306
|
+
stringify-entities: 4.0.4
|
|
2307
|
+
zwitch: 2.0.4
|
|
2308
|
+
|
|
2309
|
+
hast-util-to-parse5@8.0.1:
|
|
2310
|
+
dependencies:
|
|
2311
|
+
'@types/hast': 3.0.5
|
|
2312
|
+
comma-separated-tokens: 2.0.3
|
|
2313
|
+
devlop: 1.1.0
|
|
2314
|
+
property-information: 7.2.0
|
|
2315
|
+
space-separated-tokens: 2.0.2
|
|
2316
|
+
web-namespaces: 2.0.1
|
|
2317
|
+
zwitch: 2.0.4
|
|
2318
|
+
|
|
2319
|
+
hast-util-to-text@4.0.2:
|
|
2320
|
+
dependencies:
|
|
2321
|
+
'@types/hast': 3.0.5
|
|
2322
|
+
'@types/unist': 3.0.3
|
|
2323
|
+
hast-util-is-element: 3.0.0
|
|
2324
|
+
unist-util-find-after: 5.0.0
|
|
2325
|
+
|
|
2326
|
+
hast-util-whitespace@3.0.0:
|
|
2327
|
+
dependencies:
|
|
2328
|
+
'@types/hast': 3.0.5
|
|
2329
|
+
|
|
2330
|
+
hastscript@9.0.1:
|
|
2331
|
+
dependencies:
|
|
2332
|
+
'@types/hast': 3.0.5
|
|
2333
|
+
comma-separated-tokens: 2.0.3
|
|
2334
|
+
hast-util-parse-selector: 4.0.0
|
|
2335
|
+
property-information: 7.2.0
|
|
2336
|
+
space-separated-tokens: 2.0.2
|
|
2337
|
+
|
|
2338
|
+
highlight.js@11.11.1: {}
|
|
2339
|
+
|
|
2340
|
+
hookable@6.1.1: {}
|
|
2341
|
+
|
|
2342
|
+
html-void-elements@3.0.0: {}
|
|
2343
|
+
|
|
2344
|
+
html-whitespace-sensitive-tag-names@3.0.1: {}
|
|
2345
|
+
|
|
2346
|
+
identifier-regex@1.1.0:
|
|
2347
|
+
dependencies:
|
|
2348
|
+
reserved-identifiers: 1.2.0
|
|
2349
|
+
|
|
2350
|
+
is-absolute-url@4.0.1: {}
|
|
2351
|
+
|
|
2352
|
+
is-docker@3.0.0: {}
|
|
2353
|
+
|
|
2354
|
+
is-identifier@1.1.0:
|
|
2355
|
+
dependencies:
|
|
2356
|
+
identifier-regex: 1.1.0
|
|
2357
|
+
super-regex: 1.1.0
|
|
2358
|
+
|
|
2359
|
+
is-in-ssh@1.0.0: {}
|
|
2360
|
+
|
|
2361
|
+
is-inside-container@1.0.0:
|
|
2362
|
+
dependencies:
|
|
2363
|
+
is-docker: 3.0.0
|
|
2364
|
+
|
|
2365
|
+
is-obj@3.0.0: {}
|
|
2366
|
+
|
|
2367
|
+
is-plain-obj@4.1.0: {}
|
|
2368
|
+
|
|
2369
|
+
is-regexp@3.1.0: {}
|
|
2370
|
+
|
|
2371
|
+
is-wsl@3.1.1:
|
|
2372
|
+
dependencies:
|
|
2373
|
+
is-inside-container: 1.0.0
|
|
2374
|
+
|
|
2375
|
+
isexe@2.0.0: {}
|
|
2376
|
+
|
|
2377
|
+
jiti@2.7.0: {}
|
|
2378
|
+
|
|
2379
|
+
js-base64@3.9.1: {}
|
|
2380
|
+
|
|
2381
|
+
js-yaml@4.2.0:
|
|
2382
|
+
dependencies:
|
|
2383
|
+
argparse: 2.0.1
|
|
2384
|
+
|
|
2385
|
+
json-schema-traverse@1.0.0: {}
|
|
2386
|
+
|
|
2387
|
+
json-schema@0.4.0: {}
|
|
2388
|
+
|
|
2389
|
+
jsonc-parser@3.3.1: {}
|
|
2390
|
+
|
|
2391
|
+
longest-streak@3.1.0: {}
|
|
2392
|
+
|
|
2393
|
+
lowlight@3.3.0:
|
|
2394
|
+
dependencies:
|
|
2395
|
+
'@types/hast': 3.0.5
|
|
2396
|
+
devlop: 1.1.0
|
|
2397
|
+
highlight.js: 11.11.1
|
|
2398
|
+
|
|
2399
|
+
magic-string@0.30.21:
|
|
2400
|
+
dependencies:
|
|
2401
|
+
'@jridgewell/sourcemap-codec': 1.5.5
|
|
2402
|
+
|
|
2403
|
+
make-asynchronous@1.1.0:
|
|
2404
|
+
dependencies:
|
|
2405
|
+
p-event: 6.0.1
|
|
2406
|
+
type-fest: 4.41.0
|
|
2407
|
+
web-worker: 1.5.0
|
|
2408
|
+
|
|
2409
|
+
markdown-table@3.0.4: {}
|
|
2410
|
+
|
|
2411
|
+
mdast-util-find-and-replace@3.0.2:
|
|
2412
|
+
dependencies:
|
|
2413
|
+
'@types/mdast': 4.0.4
|
|
2414
|
+
escape-string-regexp: 5.0.0
|
|
2415
|
+
unist-util-is: 6.0.1
|
|
2416
|
+
unist-util-visit-parents: 6.0.2
|
|
2417
|
+
|
|
2418
|
+
mdast-util-from-markdown@2.0.3:
|
|
2419
|
+
dependencies:
|
|
2420
|
+
'@types/mdast': 4.0.4
|
|
2421
|
+
'@types/unist': 3.0.3
|
|
2422
|
+
decode-named-character-reference: 1.3.0
|
|
2423
|
+
devlop: 1.1.0
|
|
2424
|
+
mdast-util-to-string: 4.0.0
|
|
2425
|
+
micromark: 4.0.2
|
|
2426
|
+
micromark-util-decode-numeric-character-reference: 2.0.2
|
|
2427
|
+
micromark-util-decode-string: 2.0.1
|
|
2428
|
+
micromark-util-normalize-identifier: 2.0.1
|
|
2429
|
+
micromark-util-symbol: 2.0.1
|
|
2430
|
+
micromark-util-types: 2.0.2
|
|
2431
|
+
unist-util-stringify-position: 4.0.0
|
|
2432
|
+
transitivePeerDependencies:
|
|
2433
|
+
- supports-color
|
|
2434
|
+
|
|
2435
|
+
mdast-util-gfm-autolink-literal@2.0.1:
|
|
2436
|
+
dependencies:
|
|
2437
|
+
'@types/mdast': 4.0.4
|
|
2438
|
+
ccount: 2.0.1
|
|
2439
|
+
devlop: 1.1.0
|
|
2440
|
+
mdast-util-find-and-replace: 3.0.2
|
|
2441
|
+
micromark-util-character: 2.1.1
|
|
2442
|
+
|
|
2443
|
+
mdast-util-gfm-footnote@2.1.0:
|
|
2444
|
+
dependencies:
|
|
2445
|
+
'@types/mdast': 4.0.4
|
|
2446
|
+
devlop: 1.1.0
|
|
2447
|
+
mdast-util-from-markdown: 2.0.3
|
|
2448
|
+
mdast-util-to-markdown: 2.1.2
|
|
2449
|
+
micromark-util-normalize-identifier: 2.0.1
|
|
2450
|
+
transitivePeerDependencies:
|
|
2451
|
+
- supports-color
|
|
2452
|
+
|
|
2453
|
+
mdast-util-gfm-strikethrough@2.0.0:
|
|
2454
|
+
dependencies:
|
|
2455
|
+
'@types/mdast': 4.0.4
|
|
2456
|
+
mdast-util-from-markdown: 2.0.3
|
|
2457
|
+
mdast-util-to-markdown: 2.1.2
|
|
2458
|
+
transitivePeerDependencies:
|
|
2459
|
+
- supports-color
|
|
2460
|
+
|
|
2461
|
+
mdast-util-gfm-table@2.0.0:
|
|
2462
|
+
dependencies:
|
|
2463
|
+
'@types/mdast': 4.0.4
|
|
2464
|
+
devlop: 1.1.0
|
|
2465
|
+
markdown-table: 3.0.4
|
|
2466
|
+
mdast-util-from-markdown: 2.0.3
|
|
2467
|
+
mdast-util-to-markdown: 2.1.2
|
|
2468
|
+
transitivePeerDependencies:
|
|
2469
|
+
- supports-color
|
|
2470
|
+
|
|
2471
|
+
mdast-util-gfm-task-list-item@2.0.0:
|
|
2472
|
+
dependencies:
|
|
2473
|
+
'@types/mdast': 4.0.4
|
|
2474
|
+
devlop: 1.1.0
|
|
2475
|
+
mdast-util-from-markdown: 2.0.3
|
|
2476
|
+
mdast-util-to-markdown: 2.1.2
|
|
2477
|
+
transitivePeerDependencies:
|
|
2478
|
+
- supports-color
|
|
2479
|
+
|
|
2480
|
+
mdast-util-gfm@3.1.0:
|
|
2481
|
+
dependencies:
|
|
2482
|
+
mdast-util-from-markdown: 2.0.3
|
|
2483
|
+
mdast-util-gfm-autolink-literal: 2.0.1
|
|
2484
|
+
mdast-util-gfm-footnote: 2.1.0
|
|
2485
|
+
mdast-util-gfm-strikethrough: 2.0.0
|
|
2486
|
+
mdast-util-gfm-table: 2.0.0
|
|
2487
|
+
mdast-util-gfm-task-list-item: 2.0.0
|
|
2488
|
+
mdast-util-to-markdown: 2.1.2
|
|
2489
|
+
transitivePeerDependencies:
|
|
2490
|
+
- supports-color
|
|
2491
|
+
|
|
2492
|
+
mdast-util-phrasing@4.1.0:
|
|
2493
|
+
dependencies:
|
|
2494
|
+
'@types/mdast': 4.0.4
|
|
2495
|
+
unist-util-is: 6.0.1
|
|
2496
|
+
|
|
2497
|
+
mdast-util-to-hast@13.2.1:
|
|
2498
|
+
dependencies:
|
|
2499
|
+
'@types/hast': 3.0.5
|
|
2500
|
+
'@types/mdast': 4.0.4
|
|
2501
|
+
'@ungap/structured-clone': 1.3.3
|
|
2502
|
+
devlop: 1.1.0
|
|
2503
|
+
micromark-util-sanitize-uri: 2.0.1
|
|
2504
|
+
trim-lines: 3.0.1
|
|
2505
|
+
unist-util-position: 5.0.0
|
|
2506
|
+
unist-util-visit: 5.1.0
|
|
2507
|
+
vfile: 6.0.3
|
|
2508
|
+
|
|
2509
|
+
mdast-util-to-markdown@2.1.2:
|
|
2510
|
+
dependencies:
|
|
2511
|
+
'@types/mdast': 4.0.4
|
|
2512
|
+
'@types/unist': 3.0.3
|
|
2513
|
+
longest-streak: 3.1.0
|
|
2514
|
+
mdast-util-phrasing: 4.1.0
|
|
2515
|
+
mdast-util-to-string: 4.0.0
|
|
2516
|
+
micromark-util-classify-character: 2.0.1
|
|
2517
|
+
micromark-util-decode-string: 2.0.1
|
|
2518
|
+
unist-util-visit: 5.1.0
|
|
2519
|
+
zwitch: 2.0.4
|
|
2520
|
+
|
|
2521
|
+
mdast-util-to-string@4.0.0:
|
|
2522
|
+
dependencies:
|
|
2523
|
+
'@types/mdast': 4.0.4
|
|
2524
|
+
|
|
2525
|
+
microdiff@1.5.0: {}
|
|
2526
|
+
|
|
2527
|
+
micromark-core-commonmark@2.0.3:
|
|
2528
|
+
dependencies:
|
|
2529
|
+
decode-named-character-reference: 1.3.0
|
|
2530
|
+
devlop: 1.1.0
|
|
2531
|
+
micromark-factory-destination: 2.0.1
|
|
2532
|
+
micromark-factory-label: 2.0.1
|
|
2533
|
+
micromark-factory-space: 2.0.1
|
|
2534
|
+
micromark-factory-title: 2.0.1
|
|
2535
|
+
micromark-factory-whitespace: 2.0.1
|
|
2536
|
+
micromark-util-character: 2.1.1
|
|
2537
|
+
micromark-util-chunked: 2.0.1
|
|
2538
|
+
micromark-util-classify-character: 2.0.1
|
|
2539
|
+
micromark-util-html-tag-name: 2.0.1
|
|
2540
|
+
micromark-util-normalize-identifier: 2.0.1
|
|
2541
|
+
micromark-util-resolve-all: 2.0.1
|
|
2542
|
+
micromark-util-subtokenize: 2.1.0
|
|
2543
|
+
micromark-util-symbol: 2.0.1
|
|
2544
|
+
micromark-util-types: 2.0.2
|
|
2545
|
+
|
|
2546
|
+
micromark-extension-gfm-autolink-literal@2.1.0:
|
|
2547
|
+
dependencies:
|
|
2548
|
+
micromark-util-character: 2.1.1
|
|
2549
|
+
micromark-util-sanitize-uri: 2.0.1
|
|
2550
|
+
micromark-util-symbol: 2.0.1
|
|
2551
|
+
micromark-util-types: 2.0.2
|
|
2552
|
+
|
|
2553
|
+
micromark-extension-gfm-footnote@2.1.0:
|
|
2554
|
+
dependencies:
|
|
2555
|
+
devlop: 1.1.0
|
|
2556
|
+
micromark-core-commonmark: 2.0.3
|
|
2557
|
+
micromark-factory-space: 2.0.1
|
|
2558
|
+
micromark-util-character: 2.1.1
|
|
2559
|
+
micromark-util-normalize-identifier: 2.0.1
|
|
2560
|
+
micromark-util-sanitize-uri: 2.0.1
|
|
2561
|
+
micromark-util-symbol: 2.0.1
|
|
2562
|
+
micromark-util-types: 2.0.2
|
|
2563
|
+
|
|
2564
|
+
micromark-extension-gfm-strikethrough@2.1.0:
|
|
2565
|
+
dependencies:
|
|
2566
|
+
devlop: 1.1.0
|
|
2567
|
+
micromark-util-chunked: 2.0.1
|
|
2568
|
+
micromark-util-classify-character: 2.0.1
|
|
2569
|
+
micromark-util-resolve-all: 2.0.1
|
|
2570
|
+
micromark-util-symbol: 2.0.1
|
|
2571
|
+
micromark-util-types: 2.0.2
|
|
2572
|
+
|
|
2573
|
+
micromark-extension-gfm-table@2.1.1:
|
|
2574
|
+
dependencies:
|
|
2575
|
+
devlop: 1.1.0
|
|
2576
|
+
micromark-factory-space: 2.0.1
|
|
2577
|
+
micromark-util-character: 2.1.1
|
|
2578
|
+
micromark-util-symbol: 2.0.1
|
|
2579
|
+
micromark-util-types: 2.0.2
|
|
2580
|
+
|
|
2581
|
+
micromark-extension-gfm-tagfilter@2.0.0:
|
|
2582
|
+
dependencies:
|
|
2583
|
+
micromark-util-types: 2.0.2
|
|
2584
|
+
|
|
2585
|
+
micromark-extension-gfm-task-list-item@2.1.0:
|
|
2586
|
+
dependencies:
|
|
2587
|
+
devlop: 1.1.0
|
|
2588
|
+
micromark-factory-space: 2.0.1
|
|
2589
|
+
micromark-util-character: 2.1.1
|
|
2590
|
+
micromark-util-symbol: 2.0.1
|
|
2591
|
+
micromark-util-types: 2.0.2
|
|
2592
|
+
|
|
2593
|
+
micromark-extension-gfm@3.0.0:
|
|
2594
|
+
dependencies:
|
|
2595
|
+
micromark-extension-gfm-autolink-literal: 2.1.0
|
|
2596
|
+
micromark-extension-gfm-footnote: 2.1.0
|
|
2597
|
+
micromark-extension-gfm-strikethrough: 2.1.0
|
|
2598
|
+
micromark-extension-gfm-table: 2.1.1
|
|
2599
|
+
micromark-extension-gfm-tagfilter: 2.0.0
|
|
2600
|
+
micromark-extension-gfm-task-list-item: 2.1.0
|
|
2601
|
+
micromark-util-combine-extensions: 2.0.1
|
|
2602
|
+
micromark-util-types: 2.0.2
|
|
2603
|
+
|
|
2604
|
+
micromark-factory-destination@2.0.1:
|
|
2605
|
+
dependencies:
|
|
2606
|
+
micromark-util-character: 2.1.1
|
|
2607
|
+
micromark-util-symbol: 2.0.1
|
|
2608
|
+
micromark-util-types: 2.0.2
|
|
2609
|
+
|
|
2610
|
+
micromark-factory-label@2.0.1:
|
|
2611
|
+
dependencies:
|
|
2612
|
+
devlop: 1.1.0
|
|
2613
|
+
micromark-util-character: 2.1.1
|
|
2614
|
+
micromark-util-symbol: 2.0.1
|
|
2615
|
+
micromark-util-types: 2.0.2
|
|
2616
|
+
|
|
2617
|
+
micromark-factory-space@2.0.1:
|
|
2618
|
+
dependencies:
|
|
2619
|
+
micromark-util-character: 2.1.1
|
|
2620
|
+
micromark-util-types: 2.0.2
|
|
2621
|
+
|
|
2622
|
+
micromark-factory-title@2.0.1:
|
|
2623
|
+
dependencies:
|
|
2624
|
+
micromark-factory-space: 2.0.1
|
|
2625
|
+
micromark-util-character: 2.1.1
|
|
2626
|
+
micromark-util-symbol: 2.0.1
|
|
2627
|
+
micromark-util-types: 2.0.2
|
|
2628
|
+
|
|
2629
|
+
micromark-factory-whitespace@2.0.1:
|
|
2630
|
+
dependencies:
|
|
2631
|
+
micromark-factory-space: 2.0.1
|
|
2632
|
+
micromark-util-character: 2.1.1
|
|
2633
|
+
micromark-util-symbol: 2.0.1
|
|
2634
|
+
micromark-util-types: 2.0.2
|
|
2635
|
+
|
|
2636
|
+
micromark-util-character@2.1.1:
|
|
2637
|
+
dependencies:
|
|
2638
|
+
micromark-util-symbol: 2.0.1
|
|
2639
|
+
micromark-util-types: 2.0.2
|
|
2640
|
+
|
|
2641
|
+
micromark-util-chunked@2.0.1:
|
|
2642
|
+
dependencies:
|
|
2643
|
+
micromark-util-symbol: 2.0.1
|
|
2644
|
+
|
|
2645
|
+
micromark-util-classify-character@2.0.1:
|
|
2646
|
+
dependencies:
|
|
2647
|
+
micromark-util-character: 2.1.1
|
|
2648
|
+
micromark-util-symbol: 2.0.1
|
|
2649
|
+
micromark-util-types: 2.0.2
|
|
2650
|
+
|
|
2651
|
+
micromark-util-combine-extensions@2.0.1:
|
|
2652
|
+
dependencies:
|
|
2653
|
+
micromark-util-chunked: 2.0.1
|
|
2654
|
+
micromark-util-types: 2.0.2
|
|
2655
|
+
|
|
2656
|
+
micromark-util-decode-numeric-character-reference@2.0.2:
|
|
2657
|
+
dependencies:
|
|
2658
|
+
micromark-util-symbol: 2.0.1
|
|
2659
|
+
|
|
2660
|
+
micromark-util-decode-string@2.0.1:
|
|
2661
|
+
dependencies:
|
|
2662
|
+
decode-named-character-reference: 1.3.0
|
|
2663
|
+
micromark-util-character: 2.1.1
|
|
2664
|
+
micromark-util-decode-numeric-character-reference: 2.0.2
|
|
2665
|
+
micromark-util-symbol: 2.0.1
|
|
2666
|
+
|
|
2667
|
+
micromark-util-encode@2.0.1: {}
|
|
2668
|
+
|
|
2669
|
+
micromark-util-html-tag-name@2.0.1: {}
|
|
2670
|
+
|
|
2671
|
+
micromark-util-normalize-identifier@2.0.1:
|
|
2672
|
+
dependencies:
|
|
2673
|
+
micromark-util-symbol: 2.0.1
|
|
2674
|
+
|
|
2675
|
+
micromark-util-resolve-all@2.0.1:
|
|
2676
|
+
dependencies:
|
|
2677
|
+
micromark-util-types: 2.0.2
|
|
2678
|
+
|
|
2679
|
+
micromark-util-sanitize-uri@2.0.1:
|
|
2680
|
+
dependencies:
|
|
2681
|
+
micromark-util-character: 2.1.1
|
|
2682
|
+
micromark-util-encode: 2.0.1
|
|
2683
|
+
micromark-util-symbol: 2.0.1
|
|
2684
|
+
|
|
2685
|
+
micromark-util-subtokenize@2.1.0:
|
|
2686
|
+
dependencies:
|
|
2687
|
+
devlop: 1.1.0
|
|
2688
|
+
micromark-util-chunked: 2.0.1
|
|
2689
|
+
micromark-util-symbol: 2.0.1
|
|
2690
|
+
micromark-util-types: 2.0.2
|
|
2691
|
+
|
|
2692
|
+
micromark-util-symbol@2.0.1: {}
|
|
2693
|
+
|
|
2694
|
+
micromark-util-types@2.0.2: {}
|
|
2695
|
+
|
|
2696
|
+
micromark@4.0.2:
|
|
2697
|
+
dependencies:
|
|
2698
|
+
'@types/debug': 4.1.13
|
|
2699
|
+
debug: 4.4.3
|
|
2700
|
+
decode-named-character-reference: 1.3.0
|
|
2701
|
+
devlop: 1.1.0
|
|
2702
|
+
micromark-core-commonmark: 2.0.3
|
|
2703
|
+
micromark-factory-space: 2.0.1
|
|
2704
|
+
micromark-util-character: 2.1.1
|
|
2705
|
+
micromark-util-chunked: 2.0.1
|
|
2706
|
+
micromark-util-combine-extensions: 2.0.1
|
|
2707
|
+
micromark-util-decode-numeric-character-reference: 2.0.2
|
|
2708
|
+
micromark-util-encode: 2.0.1
|
|
2709
|
+
micromark-util-normalize-identifier: 2.0.1
|
|
2710
|
+
micromark-util-resolve-all: 2.0.1
|
|
2711
|
+
micromark-util-sanitize-uri: 2.0.1
|
|
2712
|
+
micromark-util-subtokenize: 2.1.0
|
|
2713
|
+
micromark-util-symbol: 2.0.1
|
|
2714
|
+
micromark-util-types: 2.0.2
|
|
2715
|
+
transitivePeerDependencies:
|
|
2716
|
+
- supports-color
|
|
2717
|
+
|
|
2718
|
+
ms@2.1.3: {}
|
|
2719
|
+
|
|
2720
|
+
nanoid@3.3.16: {}
|
|
2721
|
+
|
|
2722
|
+
nanoid@5.1.16: {}
|
|
2723
|
+
|
|
2724
|
+
neverpanic@0.0.8: {}
|
|
2725
|
+
|
|
2726
|
+
ohash@2.0.11: {}
|
|
2727
|
+
|
|
2728
|
+
open@11.0.0:
|
|
2729
|
+
dependencies:
|
|
2730
|
+
default-browser: 5.5.0
|
|
2731
|
+
define-lazy-prop: 3.0.0
|
|
2732
|
+
is-in-ssh: 1.0.0
|
|
2733
|
+
is-inside-container: 1.0.0
|
|
2734
|
+
powershell-utils: 0.1.0
|
|
2735
|
+
wsl-utils: 0.3.1
|
|
2736
|
+
|
|
2737
|
+
p-event@6.0.1:
|
|
2738
|
+
dependencies:
|
|
2739
|
+
p-timeout: 6.1.4
|
|
2740
|
+
|
|
2741
|
+
p-timeout@6.1.4: {}
|
|
2742
|
+
|
|
2743
|
+
parse-ms@4.0.0: {}
|
|
2744
|
+
|
|
2745
|
+
parse5@7.3.0:
|
|
2746
|
+
dependencies:
|
|
2747
|
+
entities: 6.0.1
|
|
2748
|
+
|
|
2749
|
+
path-key@3.1.1: {}
|
|
2750
|
+
|
|
2751
|
+
pathe@2.0.3: {}
|
|
2752
|
+
|
|
2753
|
+
perfect-debounce@2.1.0: {}
|
|
2754
|
+
|
|
2755
|
+
picocolors@1.1.1: {}
|
|
2756
|
+
|
|
2757
|
+
pkg-types@2.3.1:
|
|
2758
|
+
dependencies:
|
|
2759
|
+
confbox: 0.2.4
|
|
2760
|
+
exsolve: 1.1.0
|
|
2761
|
+
pathe: 2.0.3
|
|
2762
|
+
|
|
2763
|
+
postcss@8.5.19:
|
|
2764
|
+
dependencies:
|
|
2765
|
+
nanoid: 3.3.16
|
|
2766
|
+
picocolors: 1.1.1
|
|
2767
|
+
source-map-js: 1.2.1
|
|
2768
|
+
|
|
2769
|
+
powershell-utils@0.1.0: {}
|
|
2770
|
+
|
|
2771
|
+
pretty-ms@9.3.0:
|
|
2772
|
+
dependencies:
|
|
2773
|
+
parse-ms: 4.0.0
|
|
2774
|
+
|
|
2775
|
+
property-information@7.2.0: {}
|
|
2776
|
+
|
|
2777
|
+
radix-vue@1.9.17(vue@3.5.39(typescript@5.9.3)):
|
|
2778
|
+
dependencies:
|
|
2779
|
+
'@floating-ui/dom': 1.8.0
|
|
2780
|
+
'@floating-ui/vue': 1.1.11(vue@3.5.39(typescript@5.9.3))
|
|
2781
|
+
'@internationalized/date': 3.12.2
|
|
2782
|
+
'@internationalized/number': 3.6.7
|
|
2783
|
+
'@tanstack/vue-virtual': 3.13.32(vue@3.5.39(typescript@5.9.3))
|
|
2784
|
+
'@vueuse/core': 10.11.1(vue@3.5.39(typescript@5.9.3))
|
|
2785
|
+
'@vueuse/shared': 10.11.1(vue@3.5.39(typescript@5.9.3))
|
|
2786
|
+
aria-hidden: 1.2.6
|
|
2787
|
+
defu: 6.1.7
|
|
2788
|
+
fast-deep-equal: 3.1.3
|
|
2789
|
+
nanoid: 5.1.16
|
|
2790
|
+
vue: 3.5.39(typescript@5.9.3)
|
|
2791
|
+
transitivePeerDependencies:
|
|
2792
|
+
- '@vue/composition-api'
|
|
2793
|
+
|
|
2794
|
+
rc9@3.0.1:
|
|
2795
|
+
dependencies:
|
|
2796
|
+
defu: 6.1.7
|
|
2797
|
+
destr: 2.0.5
|
|
2798
|
+
|
|
2799
|
+
readdirp@5.0.0: {}
|
|
2800
|
+
|
|
2801
|
+
rehype-external-links@3.0.0:
|
|
2802
|
+
dependencies:
|
|
2803
|
+
'@types/hast': 3.0.5
|
|
2804
|
+
'@ungap/structured-clone': 1.3.3
|
|
2805
|
+
hast-util-is-element: 3.0.0
|
|
2806
|
+
is-absolute-url: 4.0.1
|
|
2807
|
+
space-separated-tokens: 2.0.2
|
|
2808
|
+
unist-util-visit: 5.1.0
|
|
2809
|
+
|
|
2810
|
+
rehype-format@5.0.1:
|
|
2811
|
+
dependencies:
|
|
2812
|
+
'@types/hast': 3.0.5
|
|
2813
|
+
hast-util-format: 1.1.0
|
|
2814
|
+
|
|
2815
|
+
rehype-parse@9.0.1:
|
|
2816
|
+
dependencies:
|
|
2817
|
+
'@types/hast': 3.0.5
|
|
2818
|
+
hast-util-from-html: 2.0.3
|
|
2819
|
+
unified: 11.0.5
|
|
2820
|
+
|
|
2821
|
+
rehype-raw@7.0.0:
|
|
2822
|
+
dependencies:
|
|
2823
|
+
'@types/hast': 3.0.5
|
|
2824
|
+
hast-util-raw: 9.1.0
|
|
2825
|
+
vfile: 6.0.3
|
|
2826
|
+
|
|
2827
|
+
rehype-sanitize@6.0.0:
|
|
2828
|
+
dependencies:
|
|
2829
|
+
'@types/hast': 3.0.5
|
|
2830
|
+
hast-util-sanitize: 5.0.2
|
|
2831
|
+
|
|
2832
|
+
rehype-stringify@10.0.1:
|
|
2833
|
+
dependencies:
|
|
2834
|
+
'@types/hast': 3.0.5
|
|
2835
|
+
hast-util-to-html: 9.0.5
|
|
2836
|
+
unified: 11.0.5
|
|
2837
|
+
|
|
2838
|
+
remark-gfm@4.0.1:
|
|
2839
|
+
dependencies:
|
|
2840
|
+
'@types/mdast': 4.0.4
|
|
2841
|
+
mdast-util-gfm: 3.1.0
|
|
2842
|
+
micromark-extension-gfm: 3.0.0
|
|
2843
|
+
remark-parse: 11.0.0
|
|
2844
|
+
remark-stringify: 11.0.0
|
|
2845
|
+
unified: 11.0.5
|
|
2846
|
+
transitivePeerDependencies:
|
|
2847
|
+
- supports-color
|
|
2848
|
+
|
|
2849
|
+
remark-parse@11.0.0:
|
|
2850
|
+
dependencies:
|
|
2851
|
+
'@types/mdast': 4.0.4
|
|
2852
|
+
mdast-util-from-markdown: 2.0.3
|
|
2853
|
+
micromark-util-types: 2.0.2
|
|
2854
|
+
unified: 11.0.5
|
|
2855
|
+
transitivePeerDependencies:
|
|
2856
|
+
- supports-color
|
|
2857
|
+
|
|
2858
|
+
remark-rehype@11.1.2:
|
|
2859
|
+
dependencies:
|
|
2860
|
+
'@types/hast': 3.0.5
|
|
2861
|
+
'@types/mdast': 4.0.4
|
|
2862
|
+
mdast-util-to-hast: 13.2.1
|
|
2863
|
+
unified: 11.0.5
|
|
2864
|
+
vfile: 6.0.3
|
|
2865
|
+
|
|
2866
|
+
remark-stringify@11.0.0:
|
|
2867
|
+
dependencies:
|
|
2868
|
+
'@types/mdast': 4.0.4
|
|
2869
|
+
mdast-util-to-markdown: 2.1.2
|
|
2870
|
+
unified: 11.0.5
|
|
2871
|
+
|
|
2872
|
+
require-from-string@2.0.2: {}
|
|
2873
|
+
|
|
2874
|
+
reserved-identifiers@1.2.0: {}
|
|
2875
|
+
|
|
2876
|
+
resolve-pkg-maps@1.0.0: {}
|
|
2877
|
+
|
|
2878
|
+
run-applescript@7.1.0: {}
|
|
2879
|
+
|
|
2880
|
+
semver@7.8.4: {}
|
|
2881
|
+
|
|
2882
|
+
set-cookie-parser@3.1.0: {}
|
|
2883
|
+
|
|
2884
|
+
shebang-command@2.0.0:
|
|
2885
|
+
dependencies:
|
|
2886
|
+
shebang-regex: 3.0.0
|
|
2887
|
+
|
|
2888
|
+
shebang-regex@3.0.0: {}
|
|
2889
|
+
|
|
2890
|
+
source-map-js@1.2.1: {}
|
|
2891
|
+
|
|
2892
|
+
space-separated-tokens@2.0.2: {}
|
|
2893
|
+
|
|
2894
|
+
string-byte-length@3.0.1: {}
|
|
2895
|
+
|
|
2896
|
+
string-byte-slice@3.0.1: {}
|
|
2897
|
+
|
|
2898
|
+
stringify-entities@4.0.4:
|
|
2899
|
+
dependencies:
|
|
2900
|
+
character-entities-html4: 2.1.0
|
|
2901
|
+
character-entities-legacy: 3.0.0
|
|
2902
|
+
|
|
2903
|
+
stringify-object@6.0.0:
|
|
2904
|
+
dependencies:
|
|
2905
|
+
get-own-enumerable-keys: 1.0.0
|
|
2906
|
+
is-identifier: 1.1.0
|
|
2907
|
+
is-obj: 3.0.0
|
|
2908
|
+
is-regexp: 3.1.0
|
|
2909
|
+
|
|
2910
|
+
style-mod@4.1.3: {}
|
|
2911
|
+
|
|
2912
|
+
super-regex@1.1.0:
|
|
2913
|
+
dependencies:
|
|
2914
|
+
function-timeout: 1.0.2
|
|
2915
|
+
make-asynchronous: 1.1.0
|
|
2916
|
+
time-span: 5.1.0
|
|
2917
|
+
|
|
2918
|
+
swrv@1.2.0(vue@3.5.39(typescript@5.9.3)):
|
|
2919
|
+
dependencies:
|
|
2920
|
+
vue: 3.5.39(typescript@5.9.3)
|
|
2921
|
+
|
|
2922
|
+
tabbable@6.5.0: {}
|
|
2923
|
+
|
|
2924
|
+
tagged-tag@1.0.0: {}
|
|
2925
|
+
|
|
2926
|
+
tailwind-merge@3.5.0: {}
|
|
2927
|
+
|
|
2928
|
+
tailwindcss@4.3.2: {}
|
|
2929
|
+
|
|
2930
|
+
time-span@5.1.0:
|
|
2931
|
+
dependencies:
|
|
2932
|
+
convert-hrtime: 5.0.0
|
|
2933
|
+
|
|
2934
|
+
trim-lines@3.0.1: {}
|
|
2935
|
+
|
|
2936
|
+
trough@2.2.0: {}
|
|
2937
|
+
|
|
2938
|
+
truncate-json@3.0.1:
|
|
2939
|
+
dependencies:
|
|
2940
|
+
guess-json-indent: 3.0.1
|
|
2941
|
+
string-byte-length: 3.0.1
|
|
2942
|
+
string-byte-slice: 3.0.1
|
|
2943
|
+
|
|
2944
|
+
tslib@2.8.1: {}
|
|
2945
|
+
|
|
2946
|
+
type-fest@4.41.0: {}
|
|
2947
|
+
|
|
2948
|
+
type-fest@5.8.0:
|
|
2949
|
+
dependencies:
|
|
2950
|
+
tagged-tag: 1.0.0
|
|
2951
|
+
|
|
2952
|
+
typescript@5.9.3: {}
|
|
2953
|
+
|
|
2954
|
+
undici-types@7.18.2: {}
|
|
2955
|
+
|
|
2956
|
+
unhead@2.1.15:
|
|
2957
|
+
dependencies:
|
|
2958
|
+
hookable: 6.1.1
|
|
2959
|
+
|
|
2960
|
+
unified@11.0.5:
|
|
2961
|
+
dependencies:
|
|
2962
|
+
'@types/unist': 3.0.3
|
|
2963
|
+
bail: 2.0.2
|
|
2964
|
+
devlop: 1.1.0
|
|
2965
|
+
extend: 3.0.2
|
|
2966
|
+
is-plain-obj: 4.1.0
|
|
2967
|
+
trough: 2.2.0
|
|
2968
|
+
vfile: 6.0.3
|
|
2969
|
+
|
|
2970
|
+
unist-util-find-after@5.0.0:
|
|
2971
|
+
dependencies:
|
|
2972
|
+
'@types/unist': 3.0.3
|
|
2973
|
+
unist-util-is: 6.0.1
|
|
2974
|
+
|
|
2975
|
+
unist-util-is@6.0.1:
|
|
2976
|
+
dependencies:
|
|
2977
|
+
'@types/unist': 3.0.3
|
|
2978
|
+
|
|
2979
|
+
unist-util-position@5.0.0:
|
|
2980
|
+
dependencies:
|
|
2981
|
+
'@types/unist': 3.0.3
|
|
2982
|
+
|
|
2983
|
+
unist-util-stringify-position@4.0.0:
|
|
2984
|
+
dependencies:
|
|
2985
|
+
'@types/unist': 3.0.3
|
|
2986
|
+
|
|
2987
|
+
unist-util-visit-parents@6.0.2:
|
|
2988
|
+
dependencies:
|
|
2989
|
+
'@types/unist': 3.0.3
|
|
2990
|
+
unist-util-is: 6.0.1
|
|
2991
|
+
|
|
2992
|
+
unist-util-visit@5.1.0:
|
|
2993
|
+
dependencies:
|
|
2994
|
+
'@types/unist': 3.0.3
|
|
2995
|
+
unist-util-is: 6.0.1
|
|
2996
|
+
unist-util-visit-parents: 6.0.2
|
|
2997
|
+
|
|
2998
|
+
vfile-location@5.0.3:
|
|
2999
|
+
dependencies:
|
|
3000
|
+
'@types/unist': 3.0.3
|
|
3001
|
+
vfile: 6.0.3
|
|
3002
|
+
|
|
3003
|
+
vfile-message@4.0.3:
|
|
3004
|
+
dependencies:
|
|
3005
|
+
'@types/unist': 3.0.3
|
|
3006
|
+
unist-util-stringify-position: 4.0.0
|
|
3007
|
+
|
|
3008
|
+
vfile@6.0.3:
|
|
3009
|
+
dependencies:
|
|
3010
|
+
'@types/unist': 3.0.3
|
|
3011
|
+
vfile-message: 4.0.3
|
|
3012
|
+
|
|
3013
|
+
vue-component-type-helpers@3.3.7: {}
|
|
3014
|
+
|
|
3015
|
+
vue-demi@0.14.10(vue@3.5.39(typescript@5.9.3)):
|
|
3016
|
+
dependencies:
|
|
3017
|
+
vue: 3.5.39(typescript@5.9.3)
|
|
3018
|
+
|
|
3019
|
+
vue-sonner@1.3.2: {}
|
|
3020
|
+
|
|
3021
|
+
vue@3.5.39(typescript@5.9.3):
|
|
3022
|
+
dependencies:
|
|
3023
|
+
'@vue/compiler-dom': 3.5.39
|
|
3024
|
+
'@vue/compiler-sfc': 3.5.39
|
|
3025
|
+
'@vue/runtime-dom': 3.5.39
|
|
3026
|
+
'@vue/server-renderer': 3.5.39(vue@3.5.39(typescript@5.9.3))
|
|
3027
|
+
'@vue/shared': 3.5.39
|
|
3028
|
+
optionalDependencies:
|
|
3029
|
+
typescript: 5.9.3
|
|
3030
|
+
|
|
3031
|
+
w3c-keyname@2.2.8: {}
|
|
3032
|
+
|
|
3033
|
+
web-namespaces@2.0.1: {}
|
|
3034
|
+
|
|
3035
|
+
web-worker@1.5.0: {}
|
|
3036
|
+
|
|
3037
|
+
which@2.0.2:
|
|
3038
|
+
dependencies:
|
|
3039
|
+
isexe: 2.0.0
|
|
3040
|
+
|
|
3041
|
+
wsl-utils@0.3.1:
|
|
3042
|
+
dependencies:
|
|
3043
|
+
is-wsl: 3.1.1
|
|
3044
|
+
powershell-utils: 0.1.0
|
|
3045
|
+
|
|
3046
|
+
yaml@2.8.1: {}
|
|
3047
|
+
|
|
3048
|
+
yaml@2.9.0: {}
|
|
3049
|
+
|
|
3050
|
+
zod@4.4.3: {}
|
|
3051
|
+
|
|
3052
|
+
zwitch@2.0.4: {}
|