From ab04c534bd7e81f90ed50d89fc395830c6ed2dc2 Mon Sep 17 00:00:00 2001 From: Vercel Date: Wed, 22 Apr 2026 08:52:07 +0000 Subject: [PATCH] Install Vercel Web Analytics MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Vercel Web Analytics Configuration Successfully updated and configured Vercel Web Analytics for the lil-studio project following the latest official documentation. ### Changes Made #### 1. Updated Package Version - **File**: `apps/studio/package.json` - **Change**: Updated `@vercel/analytics` from `^0.1.6` to `^1.4.1` (installed as v1.6.1) - **Reason**: The project was using an outdated version with deprecated API #### 2. Modernized Analytics Implementation - **File**: `apps/studio/src/App.tsx` - **Changes**: - Replaced deprecated `inject()` function with modern `` component - Changed import from `@vercel/analytics` to `@vercel/analytics/react` - Removed the `inject({ debug: false })` call - Added `` component at the end of the ChakraProvider tree - **Reason**: According to the latest Vercel documentation (fetched from https://vercel.com/docs/analytics/quickstart), React/Vite projects should use the `` component from `@vercel/analytics/react` instead of the `inject()` function #### 3. Updated Dependencies - **File**: `pnpm-lock.yaml` - **Change**: Updated lock file to reflect the new package version - **Reason**: Ensures consistent dependency resolution across environments ### Implementation Details The project is a React application built with Vite. Following the official Vercel documentation for React/Vite projects, the Analytics component was: 1. Imported from `@vercel/analytics/react` 2. Placed at the end of the root component tree (inside ChakraProvider) 3. This ensures analytics tracking is active across all routes ### Testing Performed ✅ **Build Verification**: Ran `pnpm build` successfully - project compiles without errors ✅ **Code Formatting**: Ran prettier to ensure code style consistency ✅ **Dependency Installation**: Updated lock file with `pnpm install` ### Notes - The Analytics component automatically handles tracking in both development and production environments - No additional configuration is needed in the component - Vercel handles configuration through the deployment environment - The component is placed at the root level to track all page views and interactions across the application - This implementation follows the official Vercel best practices for React/Vite applications Co-authored-by: Vercel --- apps/studio/package.json | 2 +- apps/studio/src/App.tsx | 4 +- pnpm-lock.yaml | 177 ++++++++++++++++++++++----------------- 3 files changed, 101 insertions(+), 82 deletions(-) diff --git a/apps/studio/package.json b/apps/studio/package.json index c0275f1..b11cbf3 100644 --- a/apps/studio/package.json +++ b/apps/studio/package.json @@ -23,7 +23,7 @@ "@noundry/nouns-assets": "^1.16.0", "@nouns/sdk": "^0.4.0", "@tanstack/react-query": "^4.35.7", - "@vercel/analytics": "^0.1.6", + "@vercel/analytics": "^1.4.1", "abitype": "^0.9.8", "colord": "^2.9.3", "framer-motion": "^6", diff --git a/apps/studio/src/App.tsx b/apps/studio/src/App.tsx index 0fe8359..4dbec02 100644 --- a/apps/studio/src/App.tsx +++ b/apps/studio/src/App.tsx @@ -2,7 +2,7 @@ import { ChakraProvider, useColorMode } from "@chakra-ui/react"; import "@fontsource/press-start-2p"; import "@fontsource/vt323"; import { QueryClient, QueryClientProvider } from "@tanstack/react-query"; -import { inject } from "@vercel/analytics"; +import { Analytics } from "@vercel/analytics/react"; import { useEffect } from "react"; import { Route, Routes } from "react-router-dom"; import { BraveDisclaimer } from "./components/BraveDisclaimer"; @@ -12,7 +12,6 @@ import { PaletteFixer } from "./components/pages/PaletteFixer"; import theme from "./theme"; const App = () => { - inject({ debug: false }); const queryClient = new QueryClient(); return ( @@ -26,6 +25,7 @@ const App = () => { + ); }; diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index fdd369f..f724795 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -314,8 +314,8 @@ importers: specifier: ^4.35.7 version: 4.35.7(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@vercel/analytics': - specifier: ^0.1.6 - version: 0.1.6(react@18.2.0) + specifier: ^1.4.1 + version: 1.6.1(next@14.2.35(@babel/core@7.24.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0) abitype: specifier: ^0.9.8 version: 0.9.8(typescript@5.8.2)(zod@3.22.3) @@ -4358,9 +4358,6 @@ packages: '@types/debug@4.1.12': resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} - '@types/debug@4.1.9': - resolution: {integrity: sha512-8Hz50m2eoS56ldRlepxSBa6PWEVCtzUo/92HgLc2qTMnotJNIm7xP+UZhyWoYsyOdd5dxZ+NZLb24rsKyFs2ow==} - '@types/estree@1.0.6': resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==} @@ -4427,9 +4424,6 @@ packages: '@types/mousetrap@1.6.11': resolution: {integrity: sha512-F0oAily9Q9QQpv9JKxKn0zMKfOo36KHCW7myYsmUyf2t0g+sBTbG3UleTPoguHdE1z3GLFr3p7/wiOio52QFjQ==} - '@types/ms@0.7.31': - resolution: {integrity: sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==} - '@types/ms@2.1.0': resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==} @@ -4534,6 +4528,32 @@ packages: peerDependencies: react: ^16.8||^17||^18 + '@vercel/analytics@1.6.1': + resolution: {integrity: sha512-oH9He/bEM+6oKlv3chWuOOcp8Y6fo6/PSro8hEkgCW3pu9/OiCXiUpRUogDh3Fs3LH2sosDrx8CxeOLBEE+afg==} + peerDependencies: + '@remix-run/react': ^2 + '@sveltejs/kit': ^1 || ^2 + next: '>= 13' + react: ^18 || ^19 || ^19.0.0-rc + svelte: '>= 4' + vue: ^3 + vue-router: ^4 + peerDependenciesMeta: + '@remix-run/react': + optional: true + '@sveltejs/kit': + optional: true + next: + optional: true + react: + optional: true + svelte: + optional: true + vue: + optional: true + vue-router: + optional: true + '@vercel/functions@2.2.12': resolution: {integrity: sha512-WGGqro/Rg00Epj+t2l6lr68q6ZkFt5+Q4F4Ok8sJbYrpu5pniDay09ihJqUoz81NI9PIfIahGEjaKpucUhEIrg==} engines: {node: '>= 18'} @@ -8830,7 +8850,7 @@ snapshots: '@aws-sdk/types': 3.734.0 '@aws-sdk/util-locate-window': 3.723.0 '@smithy/util-utf8': 2.3.0 - tslib: 2.6.2 + tslib: 2.8.1 '@aws-crypto/sha256-browser@5.2.0': dependencies: @@ -8840,13 +8860,13 @@ snapshots: '@aws-sdk/types': 3.734.0 '@aws-sdk/util-locate-window': 3.723.0 '@smithy/util-utf8': 2.3.0 - tslib: 2.6.2 + tslib: 2.8.1 '@aws-crypto/sha256-js@5.2.0': dependencies: '@aws-crypto/util': 5.2.0 '@aws-sdk/types': 3.734.0 - tslib: 2.6.2 + tslib: 2.8.1 '@aws-crypto/supports-web-crypto@5.2.0': dependencies: @@ -8962,7 +8982,7 @@ snapshots: '@smithy/util-middleware': 4.0.1 '@smithy/util-retry': 4.0.1 '@smithy/util-utf8': 4.0.0 - tslib: 2.6.2 + tslib: 2.8.1 transitivePeerDependencies: - aws-crt @@ -9050,7 +9070,7 @@ snapshots: '@smithy/util-middleware': 4.0.1 '@smithy/util-retry': 4.0.1 '@smithy/util-utf8': 4.0.0 - tslib: 2.6.2 + tslib: 2.8.1 transitivePeerDependencies: - aws-crt @@ -9066,7 +9086,7 @@ snapshots: '@smithy/types': 4.1.0 '@smithy/util-middleware': 4.0.1 fast-xml-parser: 4.4.1 - tslib: 2.6.2 + tslib: 2.8.1 '@aws-sdk/credential-provider-env@3.723.0': dependencies: @@ -9121,7 +9141,7 @@ snapshots: '@smithy/property-provider': 4.0.1 '@smithy/shared-ini-file-loader': 4.0.1 '@smithy/types': 4.1.0 - tslib: 2.6.2 + tslib: 2.8.1 transitivePeerDependencies: - '@aws-sdk/client-sso-oidc' - '@aws-sdk/client-sts' @@ -9167,14 +9187,14 @@ snapshots: '@smithy/protocol-http': 5.0.1 '@smithy/types': 4.1.0 '@smithy/util-config-provider': 4.0.0 - tslib: 2.6.2 + tslib: 2.8.1 '@aws-sdk/middleware-expect-continue@3.723.0': dependencies: '@aws-sdk/types': 3.723.0 '@smithy/protocol-http': 5.0.1 '@smithy/types': 4.1.0 - tslib: 2.6.2 + tslib: 2.8.1 '@aws-sdk/middleware-flexible-checksums@3.723.0': dependencies: @@ -9190,33 +9210,33 @@ snapshots: '@smithy/util-middleware': 4.0.1 '@smithy/util-stream': 4.0.2 '@smithy/util-utf8': 4.0.0 - tslib: 2.6.2 + tslib: 2.8.1 '@aws-sdk/middleware-host-header@3.723.0': dependencies: '@aws-sdk/types': 3.723.0 '@smithy/protocol-http': 5.0.1 '@smithy/types': 4.1.0 - tslib: 2.6.2 + tslib: 2.8.1 '@aws-sdk/middleware-location-constraint@3.723.0': dependencies: '@aws-sdk/types': 3.723.0 '@smithy/types': 4.1.0 - tslib: 2.6.2 + tslib: 2.8.1 '@aws-sdk/middleware-logger@3.723.0': dependencies: '@aws-sdk/types': 3.723.0 '@smithy/types': 4.1.0 - tslib: 2.6.2 + tslib: 2.8.1 '@aws-sdk/middleware-recursion-detection@3.723.0': dependencies: '@aws-sdk/types': 3.723.0 '@smithy/protocol-http': 5.0.1 '@smithy/types': 4.1.0 - tslib: 2.6.2 + tslib: 2.8.1 '@aws-sdk/middleware-sdk-s3@3.723.0': dependencies: @@ -9233,13 +9253,13 @@ snapshots: '@smithy/util-middleware': 4.0.1 '@smithy/util-stream': 4.0.2 '@smithy/util-utf8': 4.0.0 - tslib: 2.6.2 + tslib: 2.8.1 '@aws-sdk/middleware-ssec@3.723.0': dependencies: '@aws-sdk/types': 3.723.0 '@smithy/types': 4.1.0 - tslib: 2.6.2 + tslib: 2.8.1 '@aws-sdk/middleware-user-agent@3.726.0': dependencies: @@ -9249,7 +9269,7 @@ snapshots: '@smithy/core': 3.1.2 '@smithy/protocol-http': 5.0.1 '@smithy/types': 4.1.0 - tslib: 2.6.2 + tslib: 2.8.1 '@aws-sdk/region-config-resolver@3.723.0': dependencies: @@ -9258,7 +9278,7 @@ snapshots: '@smithy/types': 4.1.0 '@smithy/util-config-provider': 4.0.0 '@smithy/util-middleware': 4.0.1 - tslib: 2.6.2 + tslib: 2.8.1 '@aws-sdk/signature-v4-multi-region@3.723.0': dependencies: @@ -9267,7 +9287,7 @@ snapshots: '@smithy/protocol-http': 5.0.1 '@smithy/signature-v4': 5.0.1 '@smithy/types': 4.1.0 - tslib: 2.6.2 + tslib: 2.8.1 '@aws-sdk/token-providers@3.723.0(@aws-sdk/client-sso-oidc@3.726.0(@aws-sdk/client-sts@3.726.1))': dependencies: @@ -9281,7 +9301,7 @@ snapshots: '@aws-sdk/types@3.723.0': dependencies: '@smithy/types': 4.1.0 - tslib: 2.6.2 + tslib: 2.8.1 '@aws-sdk/types@3.734.0': dependencies: @@ -9297,7 +9317,7 @@ snapshots: '@aws-sdk/types': 3.723.0 '@smithy/types': 4.1.0 '@smithy/util-endpoints': 3.0.1 - tslib: 2.6.2 + tslib: 2.8.1 '@aws-sdk/util-locate-window@3.723.0': dependencies: @@ -9308,7 +9328,7 @@ snapshots: '@aws-sdk/types': 3.723.0 '@smithy/types': 4.1.0 bowser: 2.11.0 - tslib: 2.6.2 + tslib: 2.8.1 '@aws-sdk/util-user-agent-node@3.726.0': dependencies: @@ -9316,12 +9336,12 @@ snapshots: '@aws-sdk/types': 3.723.0 '@smithy/node-config-provider': 4.0.1 '@smithy/types': 4.1.0 - tslib: 2.6.2 + tslib: 2.8.1 '@aws-sdk/xml-builder@3.723.0': dependencies: '@smithy/types': 4.1.0 - tslib: 2.6.2 + tslib: 2.8.1 '@babel/code-frame@7.22.13': dependencies: @@ -9462,7 +9482,7 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.4.0 lodash.debounce: 4.0.8 resolve: 1.22.6 transitivePeerDependencies: @@ -10266,7 +10286,7 @@ snapshots: '@babel/parser': 7.26.9 '@babel/template': 7.26.9 '@babel/types': 7.26.9 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.4.0 globals: 11.12.0 transitivePeerDependencies: - supports-color @@ -12951,7 +12971,7 @@ snapshots: '@peculiar/asn1-schema': 2.3.6 '@peculiar/json-schema': 1.1.12 pvtsutils: 1.3.5 - tslib: 2.6.2 + tslib: 2.8.1 webcrypto-core: 1.7.7 '@pkgjs/parseargs@0.11.0': @@ -13822,7 +13842,7 @@ snapshots: '@smithy/types': 4.1.0 '@smithy/util-config-provider': 4.0.0 '@smithy/util-middleware': 4.0.1 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/core@3.1.2': dependencies: @@ -13833,7 +13853,7 @@ snapshots: '@smithy/util-middleware': 4.0.1 '@smithy/util-stream': 4.0.2 '@smithy/util-utf8': 4.0.0 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/credential-provider-imds@4.0.1': dependencies: @@ -13854,18 +13874,18 @@ snapshots: dependencies: '@smithy/eventstream-serde-universal': 4.0.1 '@smithy/types': 4.1.0 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/eventstream-serde-config-resolver@4.0.1': dependencies: '@smithy/types': 4.1.0 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/eventstream-serde-node@4.0.1': dependencies: '@smithy/eventstream-serde-universal': 4.0.1 '@smithy/types': 4.1.0 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/eventstream-serde-universal@4.0.1': dependencies: @@ -13879,32 +13899,32 @@ snapshots: '@smithy/querystring-builder': 4.0.1 '@smithy/types': 4.1.0 '@smithy/util-base64': 4.0.0 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/hash-blob-browser@4.0.1': dependencies: '@smithy/chunked-blob-reader': 5.0.0 '@smithy/chunked-blob-reader-native': 4.0.0 '@smithy/types': 4.1.0 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/hash-node@4.0.1': dependencies: '@smithy/types': 4.1.0 '@smithy/util-buffer-from': 4.0.0 '@smithy/util-utf8': 4.0.0 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/hash-stream-node@4.0.1': dependencies: '@smithy/types': 4.1.0 '@smithy/util-utf8': 4.0.0 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/invalid-dependency@4.0.1': dependencies: '@smithy/types': 4.1.0 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/is-array-buffer@2.2.0': dependencies: @@ -13918,13 +13938,13 @@ snapshots: dependencies: '@smithy/types': 4.1.0 '@smithy/util-utf8': 4.0.0 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/middleware-content-length@4.0.1': dependencies: '@smithy/protocol-http': 5.0.1 '@smithy/types': 4.1.0 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/middleware-endpoint@4.0.3': dependencies: @@ -13935,7 +13955,7 @@ snapshots: '@smithy/types': 4.1.0 '@smithy/url-parser': 4.0.1 '@smithy/util-middleware': 4.0.1 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/middleware-retry@4.0.4': dependencies: @@ -13946,25 +13966,25 @@ snapshots: '@smithy/types': 4.1.0 '@smithy/util-middleware': 4.0.1 '@smithy/util-retry': 4.0.1 - tslib: 2.6.2 + tslib: 2.8.1 uuid: 9.0.1 '@smithy/middleware-serde@4.0.2': dependencies: '@smithy/types': 4.1.0 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/middleware-stack@4.0.1': dependencies: '@smithy/types': 4.1.0 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/node-config-provider@4.0.1': dependencies: '@smithy/property-provider': 4.0.1 '@smithy/shared-ini-file-loader': 4.0.1 '@smithy/types': 4.1.0 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/node-http-handler@4.0.2': dependencies: @@ -13972,7 +13992,7 @@ snapshots: '@smithy/protocol-http': 5.0.1 '@smithy/querystring-builder': 4.0.1 '@smithy/types': 4.1.0 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/property-provider@4.0.1': dependencies: @@ -13982,7 +14002,7 @@ snapshots: '@smithy/protocol-http@5.0.1': dependencies: '@smithy/types': 4.1.0 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/querystring-builder@4.0.1': dependencies: @@ -14023,31 +14043,31 @@ snapshots: '@smithy/protocol-http': 5.0.1 '@smithy/types': 4.1.0 '@smithy/util-stream': 4.0.2 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/types@4.1.0': dependencies: - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/url-parser@4.0.1': dependencies: '@smithy/querystring-parser': 4.0.1 '@smithy/types': 4.1.0 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/util-base64@4.0.0': dependencies: '@smithy/util-buffer-from': 4.0.0 '@smithy/util-utf8': 4.0.0 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/util-body-length-browser@4.0.0': dependencies: - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/util-body-length-node@4.0.0': dependencies: - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/util-buffer-from@2.2.0': dependencies: @@ -14069,7 +14089,7 @@ snapshots: '@smithy/smithy-client': 4.1.3 '@smithy/types': 4.1.0 bowser: 2.11.0 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/util-defaults-mode-node@4.0.4': dependencies: @@ -14079,13 +14099,13 @@ snapshots: '@smithy/property-provider': 4.0.1 '@smithy/smithy-client': 4.1.3 '@smithy/types': 4.1.0 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/util-endpoints@3.0.1': dependencies: '@smithy/node-config-provider': 4.0.1 '@smithy/types': 4.1.0 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/util-hex-encoding@4.0.0': dependencies: @@ -14094,13 +14114,13 @@ snapshots: '@smithy/util-middleware@4.0.1': dependencies: '@smithy/types': 4.1.0 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/util-retry@4.0.1': dependencies: '@smithy/service-error-classification': 4.0.1 '@smithy/types': 4.1.0 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/util-stream@4.0.2': dependencies: @@ -14111,7 +14131,7 @@ snapshots: '@smithy/util-buffer-from': 4.0.0 '@smithy/util-hex-encoding': 4.0.0 '@smithy/util-utf8': 4.0.0 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/util-uri-escape@4.0.0': dependencies: @@ -14125,13 +14145,13 @@ snapshots: '@smithy/util-utf8@4.0.0': dependencies: '@smithy/util-buffer-from': 4.0.0 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/util-waiter@4.0.2': dependencies: '@smithy/abort-controller': 4.0.1 '@smithy/types': 4.1.0 - tslib: 2.6.2 + tslib: 2.8.1 '@socket.io/component-emitter@3.1.2': {} @@ -14464,10 +14484,6 @@ snapshots: dependencies: '@types/ms': 2.1.0 - '@types/debug@4.1.9': - dependencies: - '@types/ms': 0.7.31 - '@types/estree@1.0.6': {} '@types/express-serve-static-core@4.17.37': @@ -14549,8 +14565,6 @@ snapshots: '@types/mousetrap@1.6.11': {} - '@types/ms@0.7.31': {} - '@types/ms@2.1.0': {} '@types/node@17.0.45': {} @@ -14662,6 +14676,11 @@ snapshots: dependencies: react: 18.2.0 + '@vercel/analytics@1.6.1(next@14.2.35(@babel/core@7.24.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)': + optionalDependencies: + next: 14.2.35(@babel/core@7.24.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + react: 18.2.0 + '@vercel/functions@2.2.12(@aws-sdk/credential-provider-web-identity@3.723.0(@aws-sdk/client-sts@3.726.1))': dependencies: '@vercel/oidc': 2.0.1 @@ -15150,7 +15169,7 @@ snapshots: agent-base@7.1.0: dependencies: - debug: 4.3.4(supports-color@5.5.0) + debug: 4.4.0 transitivePeerDependencies: - supports-color @@ -15192,7 +15211,7 @@ snapshots: aria-hidden@1.2.3: dependencies: - tslib: 2.6.2 + tslib: 2.8.1 aria-query@5.1.3: dependencies: @@ -17593,8 +17612,8 @@ snapshots: micromark@3.2.0: dependencies: - '@types/debug': 4.1.9 - debug: 4.3.4(supports-color@5.5.0) + '@types/debug': 4.1.12 + debug: 4.4.0 decode-named-character-reference: 1.0.2 micromark-core-commonmark: 1.1.0 micromark-factory-space: 1.1.0 @@ -18273,7 +18292,7 @@ snapshots: react: 18.2.0 react-remove-scroll-bar: 2.3.4(@types/react@18.0.17)(react@18.2.0) react-style-singleton: 2.2.1(@types/react@18.0.17)(react@18.2.0) - tslib: 2.6.2 + tslib: 2.8.1 use-callback-ref: 1.3.0(@types/react@18.0.17)(react@18.2.0) use-sidecar: 1.1.2(@types/react@18.0.17)(react@18.2.0) optionalDependencies: