├── pages
├── projects.mdx
├── projects
│ ├── _meta.jsx
│ ├── project2.mdx
│ └── project1.mdx
├── _meta.jsx
├── about.mdx
├── _app.js
└── index.mdx
├── .gitattributes
├── public
├── favicon.ico
├── images
│ └── dog.jpg
├── favicon-16x16.png
├── favicon-32x32.png
├── apple-touch-icon.png
├── android-chrome-192x192.png
├── android-chrome-512x512.png
├── robots.txt
├── site.webmanifest
└── sitemap.xml
├── components
├── counters.module.css
└── counters.tsx
├── next.config.js
├── next-env.d.ts
├── tsconfig.json
├── package.json
├── theme.config.tsx
├── LICENSE
├── .gitignore
├── README.md
└── pnpm-lock.yaml
/pages/projects.mdx:
--------------------------------------------------------------------------------
1 | # Projects
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
1 | # Auto detect text files and perform LF normalization
2 | * text=auto
3 |
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/t0nyz0/nextjs-blog/main/public/favicon.ico
--------------------------------------------------------------------------------
/public/images/dog.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/t0nyz0/nextjs-blog/main/public/images/dog.jpg
--------------------------------------------------------------------------------
/public/favicon-16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/t0nyz0/nextjs-blog/main/public/favicon-16x16.png
--------------------------------------------------------------------------------
/public/favicon-32x32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/t0nyz0/nextjs-blog/main/public/favicon-32x32.png
--------------------------------------------------------------------------------
/public/apple-touch-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/t0nyz0/nextjs-blog/main/public/apple-touch-icon.png
--------------------------------------------------------------------------------
/public/android-chrome-192x192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/t0nyz0/nextjs-blog/main/public/android-chrome-192x192.png
--------------------------------------------------------------------------------
/public/android-chrome-512x512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/t0nyz0/nextjs-blog/main/public/android-chrome-512x512.png
--------------------------------------------------------------------------------
/pages/projects/_meta.jsx:
--------------------------------------------------------------------------------
1 | const meta = {
2 | project1: "Project example 1",
3 | project2: "Project example 2",
4 | };
5 |
6 | export default meta;
--------------------------------------------------------------------------------
/components/counters.module.css:
--------------------------------------------------------------------------------
1 | .counter {
2 | border: 1px solid #ccc;
3 | border-radius: 5px;
4 | padding: 2px 6px;
5 | margin: 12px 0 0;
6 | }
7 |
--------------------------------------------------------------------------------
/public/robots.txt:
--------------------------------------------------------------------------------
1 | # robots.txt
2 |
3 | User-agent: *
4 | Disallow: /private/
5 | Disallow: /admin/
6 | Allow: /
7 |
8 |
9 | # Sitemap location
10 | # Sitemap: https://.com/sitemap.xml
--------------------------------------------------------------------------------
/next.config.js:
--------------------------------------------------------------------------------
1 | import withNextra from 'nextra';
2 |
3 | const themeConfig = './theme.config.tsx';
4 |
5 | const config = withNextra({
6 | theme: 'nextra-theme-docs',
7 | themeConfig,
8 | });
9 |
10 | export default config;
--------------------------------------------------------------------------------
/next-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 | ///
3 |
4 | // NOTE: This file should not be edited
5 | // see https://nextjs.org/docs/pages/api-reference/config/typescript for more information.
6 |
--------------------------------------------------------------------------------
/public/site.webmanifest:
--------------------------------------------------------------------------------
1 | {"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}
--------------------------------------------------------------------------------
/public/sitemap.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/pages/_meta.jsx:
--------------------------------------------------------------------------------
1 | const meta = {
2 | index: {
3 | title: "Introduction",
4 | theme: {
5 | toc: false, // Table of Contents disabled
6 | },
7 | },
8 | projects: {
9 | title: "Projects",
10 | },
11 | contact: {
12 | title: "Contact ↗",
13 | type: "page", // Indicates this is a standalone page
14 | href: "mailto:youremail@youremail.com", // Email link
15 | newWindow: true, // Open in a new tab
16 | },
17 | };
18 |
19 | export default meta;
--------------------------------------------------------------------------------
/components/counters.tsx:
--------------------------------------------------------------------------------
1 | // Example from https://beta.reactjs.org/learn
2 |
3 | import { useState } from 'react'
4 | import styles from './counters.module.css'
5 |
6 | function MyButton() {
7 | const [count, setCount] = useState(0)
8 |
9 | function handleClick() {
10 | setCount(count + 1)
11 | }
12 |
13 | return (
14 |
15 |
16 | Clicked {count} times
17 |
18 |
19 | )
20 | }
21 |
22 | export default function MyApp() {
23 | return
24 | }
25 |
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "target": "es5",
4 | "lib": ["dom", "dom.iterable", "esnext"],
5 | "allowJs": true,
6 | "skipLibCheck": true,
7 | "strict": false,
8 | "forceConsistentCasingInFileNames": true,
9 | "noEmit": true,
10 | "incremental": true,
11 | "esModuleInterop": true,
12 | "module": "esnext",
13 | "moduleResolution": "node",
14 | "resolveJsonModule": true,
15 | "isolatedModules": true,
16 | "jsx": "preserve"
17 | },
18 | "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
19 | "exclude": ["node_modules"]
20 | }
21 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "nextjs-blog",
3 | "version": "0.0.1",
4 | "description": "Simple blog",
5 | "scripts": {
6 | "dev": "next dev",
7 | "build": "next build",
8 | "start": "next start"
9 | },
10 | "repository": {
11 | "type": "git",
12 | "url": "git+https://github.com/t0nyz0/nextjs-blog.git"
13 | },
14 | "author": "t0nyz0 (Github)",
15 | "dependencies": {
16 | "next": "^15.1.3",
17 | "nextra": "^3.3.1",
18 | "nextra-theme-docs": "^3.3.1",
19 | "node": "^23.5.0",
20 | "react": "^18.2.0",
21 | "react-dom": "^18.2.0"
22 | },
23 | "devDependencies": {
24 | "@types/node": "18.11.10",
25 | "typescript": "^4.9.3"
26 | }
27 | }
28 |
--------------------------------------------------------------------------------
/pages/about.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | title: About me
3 | description: About me and my life
4 | keywords: programming, development, blog, 3dprinting, bambu, aws, nextjs, software, esp32, aboutme, developer
5 | ---
6 |
7 | # About me
8 |
9 |
10 |
11 | import Image from 'next/image'
12 |
13 | ### Add information about yourself here
14 |
15 |
16 |
28 |
29 |
--------------------------------------------------------------------------------
/theme.config.tsx:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 | import { DocsThemeConfig } from 'nextra-theme-docs'
3 |
4 | const config: DocsThemeConfig = {
5 | logo: Modern Nextjs Blog ,
6 | project: {
7 | link: 'https://github.com/t0nyz0',
8 | },
9 | footer: {
10 | content: 'Nextjs Blog',
11 | },
12 | editLink: {
13 | component: null
14 | },
15 | toc: {
16 | float: true,
17 | title: 'On This Page'
18 | },
19 | darkMode: true,
20 | feedback: {
21 | content: ''
22 | },
23 | sidebar: {
24 | defaultMenuCollapseLevel: 2,
25 | toggleButton: true
26 | },
27 | head: (
28 | <>
29 | Modern Nextjs Blog
30 |
35 |
41 |
47 | >
48 | ),
49 | }
50 |
51 | export default config
52 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2024 t0nyz0
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | .next
3 | public/images/.DS_Store
4 | public/.DS_Store
5 | pages/.DS_Store
6 | public/images/esp32/.DS_Store
7 | public/images/components/.DS_Store
8 | # Node modules
9 | node_modules/
10 | npm-debug.log*
11 | yarn-debug.log*
12 | yarn-error.log*
13 |
14 | # Dependency directories
15 | .pnp/
16 | .pnp.js
17 | .next/
18 | .out/
19 |
20 | # Build directories
21 | .next/
22 | out/
23 | dist/
24 |
25 | # MacOS specific files
26 | .DS_Store
27 |
28 | # Environment variables
29 | .env
30 | .env.local
31 | .env.development.local
32 | .env.test.local
33 | .env.production.local
34 |
35 | # Logs
36 | logs
37 | *.log
38 | npm-debug.log*
39 | yarn-debug.log*
40 | yarn-error.log*
41 |
42 | # Editor directories and files
43 | .vscode/
44 | .idea/
45 | *.suo
46 | *.ntvs*
47 | *.njsproj
48 | *.sln
49 | *.sw?
50 |
51 | # Other IDE specific files
52 | /.vs/
53 | .vscode/*
54 | .history/
55 | .cache/
56 |
57 | # Production build directory
58 | out/
59 |
60 | # Static exports
61 | out/
62 |
63 | # TypeScript cache
64 | *.tsbuildinfo
65 |
66 | # Optional npm cache directory
67 | .npm
68 |
69 | # Optional eslint cache
70 | .eslintcache
71 |
72 | # Next.js cache
73 | .next/cache/
74 |
75 | # Nextra specific files
76 | .nextra/
77 |
78 | # Coverage directory used by tools like istanbul
79 | coverage/
80 |
81 | # Windows specific files
82 | Thumbs.db
83 |
--------------------------------------------------------------------------------
/pages/_app.js:
--------------------------------------------------------------------------------
1 | import { useEffect } from 'react';
2 | import { useRouter } from 'next/router';
3 |
4 | function MyApp({ Component, pageProps }) {
5 | const router = useRouter();
6 |
7 | useEffect(() => {
8 | const handleRouteChange = (url) => {
9 | if (typeof window.gtag !== 'undefined') {
10 | window.gtag('config', 'G-00000000000', { // Enter google ID here
11 | page_path: url,
12 | });
13 | }
14 | };
15 |
16 | router.events.on('routeChangeComplete', handleRouteChange);
17 | return () => {
18 | router.events.off('routeChangeComplete', handleRouteChange);
19 | };
20 | }, [router.events]);
21 |
22 | useEffect(() => {
23 | // Insert Google Analytics script
24 | const script = document.createElement('script');
25 | script.src = `https://www.googletagmanager.com/gtag/js?id=G-000000000`; // Enter google ID here
26 | script.async = true;
27 | document.head.appendChild(script);
28 |
29 | script.onload = () => {
30 | window.dataLayer = window.dataLayer || [];
31 | function gtag() {
32 | window.dataLayer.push(arguments);
33 | }
34 | window.gtag = gtag; // Assign gtag function to window object
35 | gtag('js', new Date());
36 | gtag('config', 'G-0000000000'); // Enter google ID here
37 | };
38 | }, []);
39 |
40 | return ;
41 | }
42 |
43 | export default MyApp;
44 |
--------------------------------------------------------------------------------
/pages/index.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | title: My Next.js Blog
3 | description: A modern, customizable blog built with Next.js and MDX. Perfect for developers and content creators who want to quickly set up a blog.
4 | keywords: next.js, blog, MDX, customizable, project
5 | ---
6 |
7 | # 🚀 Welcome to My Next.js Blog
8 |
9 | Welcome to the **Next.js Blog** project, a modern, fully customizable blogging platform designed to be quick to set up and easy to maintain. This project is built using **Next.js** and **MDX**, providing you with all the tools you need to create a powerful and beautiful blog.
10 |
11 | ## ✨ Features
12 |
13 | - **📝 Write in MDX**: Seamlessly combine Markdown with React components to create dynamic and interactive blog posts.
14 | - **🎨 Fully Customizable**: Tailor the design and layout to your liking using custom components and CSS.
15 | - **⚡ Blazing Fast**: Powered by Next.js, ensuring your blog loads quickly and performs well across all devices.
16 | - **🔍 SEO-Friendly**: Optimized for search engines out of the box, helping your content reach a wider audience.
17 | - **📦 Easy Deployment**: Deploy to Vercel, Netlify, or any other platform with just a few clicks.
18 |
19 | ## 🎯 Project Goals
20 |
21 | The main goal of this project is to provide developers with a flexible and powerful blogging platform that is easy to customize and extend. Whether you're a developer looking to showcase your projects or share your technical insights, this blog template is designed to meet your needs.
22 | ## 🛠️ Tech Stack
23 |
24 | - **Next.js**: The React framework for production.
25 | - **MDX**: Markdown for the component era, allowing you to use JSX in your Markdown files.
26 | - **Vercel**: The platform for frontend frameworks and static sites, used to deploy this blog.
27 |
28 | ## 🚧 Getting Started
29 |
30 | Follow these steps to set up your blog:
31 |
32 | 1. **Clone the Repository**:
33 | ```bash
34 | git clone https://github.com/t0nyz0/nextjs-blog.git
35 | cd nextjs-blog
36 |
37 |
38 |
--------------------------------------------------------------------------------
/pages/projects/project2.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | title: Example Project - Smart Home Automation
3 | description: A comprehensive smart home automation system integrating IoT devices with a centralized control hub.
4 | keywords: smart home, IoT, automation, home automation, ESP32, MQTT, Node-RED, project
5 | ---
6 |
7 | import Image from 'next/image'
8 |
9 | # 🏠 Example Project 2 - Smart Home Automation
10 |
11 |
12 |
23 |
24 |
25 | ## 📝 Overview
26 |
27 | The **Smart Home Automation** project aims to create a fully integrated system for managing various IoT devices within a home environment. The system uses an ESP32 microcontroller as the central hub, connected to sensors, lights, and other devices via MQTT and controlled through a Node-RED dashboard.
28 |
29 | This project enhances convenience, security, and energy efficiency by allowing users to monitor and control their home remotely.
30 |
31 | ### 🔧 Features
32 |
33 | - **🧠 Centralized Control Hub:** An ESP32-based microcontroller acting as the brain of the system.
34 | - **📊 Real-Time Monitoring:** Sensor data (temperature, humidity, motion) is continuously monitored.
35 | - **🌐 Remote Access:** Control lights, appliances, and security systems from anywhere via a mobile app.
36 | - **💡 Energy Efficiency:** Automated routines for turning off unused devices and adjusting thermostats.
37 | - **🔄 Scalability:** Easily add more devices and sensors to the system.
38 |
39 |
40 |
41 | ## 🏗️ Architecture
42 |
43 | ```mermaid
44 | graph LR
45 | A[User] -->|Mobile App| B[Node-RED]
46 | B --> C[ESP32]
47 | C --> D1[Light Control]
48 | C --> D2[Temperature Sensor]
49 | C --> D3[Security Camera]
50 | C --> D4[Motion Sensor]
51 | C --> D5[Smart Plug]
52 |
--------------------------------------------------------------------------------
/pages/projects/project1.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | title: Weather Station
3 | description: A real-time weather station using ESP32 and various environmental sensors, with data displayed on a custom web dashboard.
4 | keywords: weather station, ESP32, IoT, sensors, web dashboard, project, data logging, environmental monitoring
5 | ---
6 |
7 | import Image from 'next/image'
8 |
9 | # 🌦️ Weather Station
10 |
11 |
12 |
23 |
24 |
25 | ## 📋 Project Overview
26 |
27 | The **Weather Station** project is designed to monitor and log environmental data such as temperature, humidity, atmospheric pressure, and light levels. It uses an ESP32 microcontroller connected to a range of sensors, with the data being displayed on a web dashboard.
28 |
29 | The project serves as an educational tool, a personal weather station, or a part of a larger IoT ecosystem, providing real-time insights into the local environment.
30 |
31 | ### 🔑 Key Features
32 |
33 | - **Real-Time Monitoring**: Continuous tracking of environmental data.
34 | - **Web Dashboard**: A responsive web interface for viewing data in real-time.
35 | - **Data Logging**: Historical data is stored and visualized over time.
36 | - **Alert System**: Configurable alerts for extreme weather conditions.
37 | - **Wireless Connectivity**: Data is transmitted via Wi-Fi to the dashboard.
38 |
39 |
40 |
41 | ## 🛠️ Components Used
42 |
43 | - **ESP32**: The main microcontroller, responsible for gathering data and sending it to the web dashboard.
44 | - **DHT22 Sensor**: For temperature and humidity measurement.
45 | - **BMP280 Sensor**: For atmospheric pressure measurement.
46 | - **BH1750 Sensor**: For light level detection.
47 | - **Web Server**: Hosted on the ESP32 to serve the dashboard interface.
48 |
49 |
50 | ## 🏗️ System Architecture
51 |
52 | ```mermaid
53 | graph TD;
54 | A[ESP32] -->|DHT22| B[Temperature & Humidity]
55 | A -->|BMP280| C[Atmospheric Pressure]
56 | A -->|BH1750| D[Light Level]
57 | A --> E[Web Server]
58 | E --> F[User Dashboard]
59 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # 🚀 Modern, Flexible, and Powerful Development Blog in Next.js in Minutes
2 |
3 | Welcome to the **Next.js Blog Template** – a fast, modern, and fully customizable blogging platform. This template is designed to be simple, clean, and free of unnecessary clutter, allowing you to focus on your content while benefiting from the latest web technologies.
4 |
5 | This template powers [t0nyz.com](https://t0nyz.com), so you can see it in action firsthand.
6 |
7 | ## 🌟 Key Features
8 |
9 | - **⚡ Fast**: Powered by Next.js, ensuring your blog loads quickly and performs well across all devices.
10 | - **🖥️ Modern**: Built with Next.js, providing you with the latest features and best practices.
11 | - **🌐 Hosted Free**: Easily deploy your blog to platforms like Vercel or Netlify at no cost.
12 | - **🔄 CICD**: Seamless continuous integration and continuous deployment, so your changes go live instantly.
13 | - **🔍 SEO Built-In**: Optimized for search engines right out of the box, helping your content reach a wider audience.
14 | - **✨ Simple & Clean**: No unnecessary bloat – just the essentials for a beautiful, minimalistic blog.
15 |
16 | ## Why should you use this template?
17 |
18 | This template goes beyond a generic Nextra setup by including:
19 |
20 | - **Built-In Favicon Example**: A ready-to-customize favicon setup, ensuring your blog has a unique and professional look.
21 | - **Built-In Google Analytics Example**: Easily track your blog's performance with Google Analytics.
22 | - **Built-In Project Examples**: Pre-made project pages to help you quickly showcase your work.
23 | - **Built-In SEO Optimization**: Pre-configured meta tags and settings to boost your blog's visibility in search engines.
24 |
25 | ## 🛠️ Getting Started (Easy)
26 |
27 | ### [Deploy your website right now 🚀](https://vercel.com/new/t0nyz0s-projects/clone?demo-description=Simple%2C+powerful+and+flexible+markdown-powered+docs+site.+Built+with+Next.js.&demo-image=%2F%2Fimages.ctfassets.net%2Fe5382hct74si%2F5RZetTd7rd1mQtoZt2fajA%2F747eabb89b6378ecfc0ef433f5e47a01%2FCleanShot_2022-12-02_at_12.07.44.png&demo-title=Nextra%3A+Docs+Starter+Kit&demo-url=https%3A%2F%2Fnextra-docs-template.vercel.app%2F&from=templates&project-name=Nextra%3A+Docs+Starter+Kit&repository-name=nextjs-blog&repository-url=https%3A%2F%2Fgithub.com%2Ft0nyz0%2Fnextjs-blog)
28 |
29 |
30 |
31 |
32 | ## Getting Started (Old fashioned way)
33 |
34 | 1. **Clone the Repository**:
35 | ```cpp
36 | git clone https://github.com/t0nyz0/nextjs-blog.git
37 | cd nextjs-blog
38 | ```
39 |
40 | 2. **Install Dependencies:**
41 |
42 | Make sure you have Node.js installed. If not, download and install [Node.js](https://nodejs.org/).
43 |
44 | Then, install the project dependencies by running:
45 | ```cpp
46 | npm install
47 | ```
48 |
49 | 3. Start the development server to see your project in action:
50 | ```ccp
51 | npm run dev
52 | ```
53 |
--------------------------------------------------------------------------------
/pnpm-lock.yaml:
--------------------------------------------------------------------------------
1 | lockfileVersion: '9.0'
2 |
3 | settings:
4 | autoInstallPeers: true
5 | excludeLinksFromLockfile: false
6 |
7 | importers:
8 |
9 | .:
10 | dependencies:
11 | next:
12 | specifier: ^15.1.3
13 | version: 15.1.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
14 | nextra:
15 | specifier: ^3.3.1
16 | version: 3.3.1(@types/react@18.3.3)(acorn@8.12.1)(next@15.1.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@4.9.3)
17 | nextra-theme-docs:
18 | specifier: ^3.3.1
19 | version: 3.3.1(next@15.1.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(nextra@3.3.1(@types/react@18.3.3)(acorn@8.12.1)(next@15.1.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@4.9.3))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
20 | node:
21 | specifier: ^23.5.0
22 | version: 23.5.0
23 | react:
24 | specifier: ^18.2.0
25 | version: 18.2.0
26 | react-dom:
27 | specifier: ^18.2.0
28 | version: 18.2.0(react@18.2.0)
29 | devDependencies:
30 | '@types/node':
31 | specifier: 18.11.10
32 | version: 18.11.10
33 | typescript:
34 | specifier: ^4.9.3
35 | version: 4.9.3
36 |
37 | packages:
38 |
39 | '@antfu/install-pkg@0.4.1':
40 | resolution: {integrity: sha512-T7yB5QNG29afhWVkVq7XeIMBa5U/vs9mX69YqayXypPRmYzUmzwnYltplHmPtZ4HPCn+sQKeXW8I47wCbuBOjw==}
41 |
42 | '@antfu/utils@0.7.10':
43 | resolution: {integrity: sha512-+562v9k4aI80m1+VuMHehNJWLOFjBnXn3tdOitzD0il5b7smkSBal4+a3oKiQTbrwMmN/TBUMDvbdoWDehgOww==}
44 |
45 | '@braintree/sanitize-url@7.1.1':
46 | resolution: {integrity: sha512-i1L7noDNxtFyL5DmZafWy1wRVhGehQmzZaz1HiN5e7iylJMSZR7ekOV7NsIqa5qBldlLrsKv4HbgFUVlQrz8Mw==}
47 |
48 | '@chevrotain/cst-dts-gen@11.0.3':
49 | resolution: {integrity: sha512-BvIKpRLeS/8UbfxXxgC33xOumsacaeCKAjAeLyOn7Pcp95HiRbrpl14S+9vaZLolnbssPIUuiUd8IvgkRyt6NQ==}
50 |
51 | '@chevrotain/gast@11.0.3':
52 | resolution: {integrity: sha512-+qNfcoNk70PyS/uxmj3li5NiECO+2YKZZQMbmjTqRI3Qchu8Hig/Q9vgkHpI3alNjr7M+a2St5pw5w5F6NL5/Q==}
53 |
54 | '@chevrotain/regexp-to-ast@11.0.3':
55 | resolution: {integrity: sha512-1fMHaBZxLFvWI067AVbGJav1eRY7N8DDvYCTwGBiE/ytKBgP8azTdgyrKyWZ9Mfh09eHWb5PgTSO8wi7U824RA==}
56 |
57 | '@chevrotain/types@11.0.3':
58 | resolution: {integrity: sha512-gsiM3G8b58kZC2HaWR50gu6Y1440cHiJ+i3JUvcp/35JchYejb2+5MVeJK0iKThYpAa/P2PYFV4hoi44HD+aHQ==}
59 |
60 | '@chevrotain/utils@11.0.3':
61 | resolution: {integrity: sha512-YslZMgtJUyuMbZ+aKvfF3x1f5liK4mWNxghFRv7jqRR9C3R3fAOGTTKvxXDa2Y1s9zSbcpuO0cAxDYsc9SrXoQ==}
62 |
63 | '@emnapi/runtime@1.3.1':
64 | resolution: {integrity: sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==}
65 |
66 | '@floating-ui/core@1.6.8':
67 | resolution: {integrity: sha512-7XJ9cPU+yI2QeLS+FCSlqNFZJq8arvswefkZrYI1yQBbftw6FyrZOxYSh+9S7z7TpeWlRt9zJ5IhM1WIL334jA==}
68 |
69 | '@floating-ui/dom@1.6.12':
70 | resolution: {integrity: sha512-NP83c0HjokcGVEMeoStg317VD9W7eDlGK7457dMBANbKA6GJZdc7rjujdgqzTaz93jkGgc5P/jeWbaCHnMNc+w==}
71 |
72 | '@floating-ui/react-dom@2.1.2':
73 | resolution: {integrity: sha512-06okr5cgPzMNBy+Ycse2A6udMi4bqwW/zgBF/rwjcNqWkyr82Mcg8b0vjX8OJpZFy/FKjJmw6wV7t44kK6kW7A==}
74 | peerDependencies:
75 | react: '>=16.8.0'
76 | react-dom: '>=16.8.0'
77 |
78 | '@floating-ui/react@0.26.28':
79 | resolution: {integrity: sha512-yORQuuAtVpiRjpMhdc0wJj06b9JFjrYF4qp96j++v2NBpbi6SEGF7donUJ3TMieerQ6qVkAv1tgr7L4r5roTqw==}
80 | peerDependencies:
81 | react: '>=16.8.0'
82 | react-dom: '>=16.8.0'
83 |
84 | '@floating-ui/utils@0.2.8':
85 | resolution: {integrity: sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig==}
86 |
87 | '@formatjs/intl-localematcher@0.5.10':
88 | resolution: {integrity: sha512-af3qATX+m4Rnd9+wHcjJ4w2ijq+rAVP3CCinJQvFv1kgSu1W6jypUmvleJxcewdxmutM8dmIRZFxO/IQBZmP2Q==}
89 |
90 | '@headlessui/react@2.2.0':
91 | resolution: {integrity: sha512-RzCEg+LXsuI7mHiSomsu/gBJSjpupm6A1qIZ5sWjd7JhARNlMiSA4kKfJpCKwU9tE+zMRterhhrP74PvfJrpXQ==}
92 | engines: {node: '>=10'}
93 | peerDependencies:
94 | react: ^18 || ^19 || ^19.0.0-rc
95 | react-dom: ^18 || ^19 || ^19.0.0-rc
96 |
97 | '@iconify/types@2.0.0':
98 | resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==}
99 |
100 | '@iconify/utils@2.2.1':
101 | resolution: {integrity: sha512-0/7J7hk4PqXmxo5PDBDxmnecw5PxklZJfNjIVG9FM0mEfVrvfudS22rYWsqVk6gR3UJ/mSYS90X4R3znXnqfNA==}
102 |
103 | '@img/sharp-darwin-arm64@0.33.5':
104 | resolution: {integrity: sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==}
105 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
106 | cpu: [arm64]
107 | os: [darwin]
108 |
109 | '@img/sharp-darwin-x64@0.33.5':
110 | resolution: {integrity: sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==}
111 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
112 | cpu: [x64]
113 | os: [darwin]
114 |
115 | '@img/sharp-libvips-darwin-arm64@1.0.4':
116 | resolution: {integrity: sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==}
117 | cpu: [arm64]
118 | os: [darwin]
119 |
120 | '@img/sharp-libvips-darwin-x64@1.0.4':
121 | resolution: {integrity: sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==}
122 | cpu: [x64]
123 | os: [darwin]
124 |
125 | '@img/sharp-libvips-linux-arm64@1.0.4':
126 | resolution: {integrity: sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==}
127 | cpu: [arm64]
128 | os: [linux]
129 |
130 | '@img/sharp-libvips-linux-arm@1.0.5':
131 | resolution: {integrity: sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==}
132 | cpu: [arm]
133 | os: [linux]
134 |
135 | '@img/sharp-libvips-linux-s390x@1.0.4':
136 | resolution: {integrity: sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==}
137 | cpu: [s390x]
138 | os: [linux]
139 |
140 | '@img/sharp-libvips-linux-x64@1.0.4':
141 | resolution: {integrity: sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==}
142 | cpu: [x64]
143 | os: [linux]
144 |
145 | '@img/sharp-libvips-linuxmusl-arm64@1.0.4':
146 | resolution: {integrity: sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==}
147 | cpu: [arm64]
148 | os: [linux]
149 |
150 | '@img/sharp-libvips-linuxmusl-x64@1.0.4':
151 | resolution: {integrity: sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==}
152 | cpu: [x64]
153 | os: [linux]
154 |
155 | '@img/sharp-linux-arm64@0.33.5':
156 | resolution: {integrity: sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==}
157 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
158 | cpu: [arm64]
159 | os: [linux]
160 |
161 | '@img/sharp-linux-arm@0.33.5':
162 | resolution: {integrity: sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==}
163 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
164 | cpu: [arm]
165 | os: [linux]
166 |
167 | '@img/sharp-linux-s390x@0.33.5':
168 | resolution: {integrity: sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==}
169 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
170 | cpu: [s390x]
171 | os: [linux]
172 |
173 | '@img/sharp-linux-x64@0.33.5':
174 | resolution: {integrity: sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==}
175 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
176 | cpu: [x64]
177 | os: [linux]
178 |
179 | '@img/sharp-linuxmusl-arm64@0.33.5':
180 | resolution: {integrity: sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==}
181 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
182 | cpu: [arm64]
183 | os: [linux]
184 |
185 | '@img/sharp-linuxmusl-x64@0.33.5':
186 | resolution: {integrity: sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==}
187 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
188 | cpu: [x64]
189 | os: [linux]
190 |
191 | '@img/sharp-wasm32@0.33.5':
192 | resolution: {integrity: sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==}
193 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
194 | cpu: [wasm32]
195 |
196 | '@img/sharp-win32-ia32@0.33.5':
197 | resolution: {integrity: sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==}
198 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
199 | cpu: [ia32]
200 | os: [win32]
201 |
202 | '@img/sharp-win32-x64@0.33.5':
203 | resolution: {integrity: sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==}
204 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
205 | cpu: [x64]
206 | os: [win32]
207 |
208 | '@mdx-js/mdx@3.1.0':
209 | resolution: {integrity: sha512-/QxEhPAvGwbQmy1Px8F899L5Uc2KZ6JtXwlCgJmjSTBedwOZkByYcBG4GceIGPXRDsmfxhHazuS+hlOShRLeDw==}
210 |
211 | '@mdx-js/react@3.1.0':
212 | resolution: {integrity: sha512-QjHtSaoameoalGnKDT3FoIl4+9RwyTmo9ZJGBdLOks/YOiWHoRDI3PUwEzOE7kEmGcV3AFcp9K6dYu9rEuKLAQ==}
213 | peerDependencies:
214 | '@types/react': '>=16'
215 | react: '>=16'
216 |
217 | '@mermaid-js/parser@0.3.0':
218 | resolution: {integrity: sha512-HsvL6zgE5sUPGgkIDlmAWR1HTNHz2Iy11BAWPTa4Jjabkpguy4Ze2gzfLrg6pdRuBvFwgUYyxiaNqZwrEEXepA==}
219 |
220 | '@napi-rs/simple-git-android-arm-eabi@0.1.17':
221 | resolution: {integrity: sha512-P+B95PKy46Dq9q1sr18wCn+Uj/WShMIyBBA+ezVHWJge6JSeGh4hLhKEpv3+Rk6S7ITCXxrr7Pn7U4o20nVqhQ==}
222 | engines: {node: '>= 10'}
223 | cpu: [arm]
224 | os: [android]
225 |
226 | '@napi-rs/simple-git-android-arm64@0.1.17':
227 | resolution: {integrity: sha512-qggMcxfNKiQsAa1pupFuC8fajvAz6QQcZirHxTPWUxQSEwUvliL8cyKM4QdJwSac0VEITTmHaegDSXsn43EvGg==}
228 | engines: {node: '>= 10'}
229 | cpu: [arm64]
230 | os: [android]
231 |
232 | '@napi-rs/simple-git-darwin-arm64@0.1.17':
233 | resolution: {integrity: sha512-LYgvP3Rw1lCkBW0Ud4xZFUZ2SI+Y2vvy9X/OEzlmqee5VPC1wiez2kZ62lD3ABU0Ta4Khv7W+eJsaXiTuvcq+Q==}
234 | engines: {node: '>= 10'}
235 | cpu: [arm64]
236 | os: [darwin]
237 |
238 | '@napi-rs/simple-git-darwin-x64@0.1.17':
239 | resolution: {integrity: sha512-CyLbxyLILT47jdNDTCREdO0LELKWqfkbw9EV4gaFrLZVD1Dej+NnZogR4oDrg7N12pcgVWnleaK1hcBDs7SeLQ==}
240 | engines: {node: '>= 10'}
241 | cpu: [x64]
242 | os: [darwin]
243 |
244 | '@napi-rs/simple-git-freebsd-x64@0.1.17':
245 | resolution: {integrity: sha512-SHWa3o5EZWYh7UoLi2sO4uLjZd58UFHaMttw4O9PZPvFcdjz5LjC6CQclwZbLyPDPMGefalrkUeYTs+/VJ+XEA==}
246 | engines: {node: '>= 10'}
247 | cpu: [x64]
248 | os: [freebsd]
249 |
250 | '@napi-rs/simple-git-linux-arm-gnueabihf@0.1.17':
251 | resolution: {integrity: sha512-nQpwitNfSN4qGmDpWOlS3XqeE7NARxCvL+lxO0CtKih2iBuWIoU0wViVKdf9fb/Rm3xsQHcblMkliMnjcAOupg==}
252 | engines: {node: '>= 10'}
253 | cpu: [arm]
254 | os: [linux]
255 |
256 | '@napi-rs/simple-git-linux-arm64-gnu@0.1.17':
257 | resolution: {integrity: sha512-JD8nSLa9WY1kAppMufYqcqFYYjZKjZZFdZtlpz6Kn0kk4Qmm3Rvt1etnuQBwax9R2wG4n9YPYfpidDxic8rlNw==}
258 | engines: {node: '>= 10'}
259 | cpu: [arm64]
260 | os: [linux]
261 |
262 | '@napi-rs/simple-git-linux-arm64-musl@0.1.17':
263 | resolution: {integrity: sha512-PRdVIEvgdIuJhDvdneO3X7XfZwujU7MOyymwK3kR1RMJPlbwzxdQBA86am/jEkBP7d8Cx8RbREzJ6y/2hAHKOQ==}
264 | engines: {node: '>= 10'}
265 | cpu: [arm64]
266 | os: [linux]
267 |
268 | '@napi-rs/simple-git-linux-powerpc64le-gnu@0.1.17':
269 | resolution: {integrity: sha512-afbfsJMpQjtdLP3BRGj/hKpRqymxw2Lt+dmyoRej0zKxZnuPrws3Fi85RyYsT/6Tq0hSUAMeh5UtxGAOH3q8gA==}
270 | engines: {node: '>= 10'}
271 | cpu: [powerpc64le]
272 | os: [linux]
273 |
274 | '@napi-rs/simple-git-linux-s390x-gnu@0.1.17':
275 | resolution: {integrity: sha512-qTgRIUsU+b7RMls+Ji4xlDYq0rsUuNBpzVgb991UPnzrhFWFFkCtyk6I6tJqMtRfg7Vgn1stCghFEQiHmpqkew==}
276 | engines: {node: '>= 10'}
277 | cpu: [s390x]
278 | os: [linux]
279 |
280 | '@napi-rs/simple-git-linux-x64-gnu@0.1.17':
281 | resolution: {integrity: sha512-xHlyUDJhjPUCR07JGrvMfLg5XSRVDsxgpo6B6zYQOSMcVgM7fjvyWNMBe508r4eD5YZKZyBPfSJUc5Ls9ToJNQ==}
282 | engines: {node: '>= 10'}
283 | cpu: [x64]
284 | os: [linux]
285 |
286 | '@napi-rs/simple-git-linux-x64-musl@0.1.17':
287 | resolution: {integrity: sha512-eaTr+WPeiuEegduE3O7VzHhHftGXmX1pzzILoOTbbdmeEuH1BHnGAr35XTu+1lUHUqE2JHef3d3PgBHeh844hA==}
288 | engines: {node: '>= 10'}
289 | cpu: [x64]
290 | os: [linux]
291 |
292 | '@napi-rs/simple-git-win32-arm64-msvc@0.1.17':
293 | resolution: {integrity: sha512-v1F72stOCjapCd0Ha928m8X8i/IPhPQIXbYEGX0MEmaaAzbAJ3PTSSFpb0rFLShXaDFA2Wuw/jzlkPLESPdKVQ==}
294 | engines: {node: '>= 10'}
295 | cpu: [arm64]
296 | os: [win32]
297 |
298 | '@napi-rs/simple-git-win32-x64-msvc@0.1.17':
299 | resolution: {integrity: sha512-ziSqhCGE2eTUqpQKEutGobU2fH1t9fXwGF58dMFaPgTJIISaENvdnKu5FDJfA94vPbe3BMN64JoTmjBSglGFhQ==}
300 | engines: {node: '>= 10'}
301 | cpu: [x64]
302 | os: [win32]
303 |
304 | '@napi-rs/simple-git@0.1.17':
305 | resolution: {integrity: sha512-lH8bYk2kqfbKsht/Gejd8K+y069ZXPHBfrlcj1ptS6xlJbHhncHxpFyy57W+PTuCcN+MPGVjs+3CiufG8EUrCQ==}
306 | engines: {node: '>= 10'}
307 |
308 | '@next/env@15.1.3':
309 | resolution: {integrity: sha512-Q1tXwQCGWyA3ehMph3VO+E6xFPHDKdHFYosadt0F78EObYxPio0S09H9UGYznDe6Wc8eLKLG89GqcFJJDiK5xw==}
310 |
311 | '@next/swc-darwin-arm64@15.1.3':
312 | resolution: {integrity: sha512-aZtmIh8jU89DZahXQt1La0f2EMPt/i7W+rG1sLtYJERsP7GRnNFghsciFpQcKHcGh4dUiyTB5C1X3Dde/Gw8gg==}
313 | engines: {node: '>= 10'}
314 | cpu: [arm64]
315 | os: [darwin]
316 |
317 | '@next/swc-darwin-x64@15.1.3':
318 | resolution: {integrity: sha512-aw8901rjkVBK5mbq5oV32IqkJg+CQa6aULNlN8zyCWSsePzEG3kpDkAFkkTOh3eJ0p95KbkLyWBzslQKamXsLA==}
319 | engines: {node: '>= 10'}
320 | cpu: [x64]
321 | os: [darwin]
322 |
323 | '@next/swc-linux-arm64-gnu@15.1.3':
324 | resolution: {integrity: sha512-YbdaYjyHa4fPK4GR4k2XgXV0p8vbU1SZh7vv6El4bl9N+ZSiMfbmqCuCuNU1Z4ebJMumafaz6UCC2zaJCsdzjw==}
325 | engines: {node: '>= 10'}
326 | cpu: [arm64]
327 | os: [linux]
328 |
329 | '@next/swc-linux-arm64-musl@15.1.3':
330 | resolution: {integrity: sha512-qgH/aRj2xcr4BouwKG3XdqNu33SDadqbkqB6KaZZkozar857upxKakbRllpqZgWl/NDeSCBYPmUAZPBHZpbA0w==}
331 | engines: {node: '>= 10'}
332 | cpu: [arm64]
333 | os: [linux]
334 |
335 | '@next/swc-linux-x64-gnu@15.1.3':
336 | resolution: {integrity: sha512-uzafnTFwZCPN499fNVnS2xFME8WLC9y7PLRs/yqz5lz1X/ySoxfaK2Hbz74zYUdEg+iDZPd8KlsWaw9HKkLEVw==}
337 | engines: {node: '>= 10'}
338 | cpu: [x64]
339 | os: [linux]
340 |
341 | '@next/swc-linux-x64-musl@15.1.3':
342 | resolution: {integrity: sha512-el6GUFi4SiDYnMTTlJJFMU+GHvw0UIFnffP1qhurrN1qJV3BqaSRUjkDUgVV44T6zpw1Lc6u+yn0puDKHs+Sbw==}
343 | engines: {node: '>= 10'}
344 | cpu: [x64]
345 | os: [linux]
346 |
347 | '@next/swc-win32-arm64-msvc@15.1.3':
348 | resolution: {integrity: sha512-6RxKjvnvVMM89giYGI1qye9ODsBQpHSHVo8vqA8xGhmRPZHDQUE4jcDbhBwK0GnFMqBnu+XMg3nYukNkmLOLWw==}
349 | engines: {node: '>= 10'}
350 | cpu: [arm64]
351 | os: [win32]
352 |
353 | '@next/swc-win32-x64-msvc@15.1.3':
354 | resolution: {integrity: sha512-VId/f5blObG7IodwC5Grf+aYP0O8Saz1/aeU3YcWqNdIUAmFQY3VEPKPaIzfv32F/clvanOb2K2BR5DtDs6XyQ==}
355 | engines: {node: '>= 10'}
356 | cpu: [x64]
357 | os: [win32]
358 |
359 | '@react-aria/focus@3.19.0':
360 | resolution: {integrity: sha512-hPF9EXoUQeQl1Y21/rbV2H4FdUR2v+4/I0/vB+8U3bT1CJ+1AFj1hc/rqx2DqEwDlEwOHN+E4+mRahQmlybq0A==}
361 | peerDependencies:
362 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
363 |
364 | '@react-aria/interactions@3.22.5':
365 | resolution: {integrity: sha512-kMwiAD9E0TQp+XNnOs13yVJghiy8ET8L0cbkeuTgNI96sOAp/63EJ1FSrDf17iD8sdjt41LafwX/dKXW9nCcLQ==}
366 | peerDependencies:
367 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
368 |
369 | '@react-aria/ssr@3.9.7':
370 | resolution: {integrity: sha512-GQygZaGlmYjmYM+tiNBA5C6acmiDWF52Nqd40bBp0Znk4M4hP+LTmI0lpI1BuKMw45T8RIhrAsICIfKwZvi2Gg==}
371 | engines: {node: '>= 12'}
372 | peerDependencies:
373 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
374 |
375 | '@react-aria/utils@3.26.0':
376 | resolution: {integrity: sha512-LkZouGSjjQ0rEqo4XJosS4L3YC/zzQkfRM3KoqK6fUOmUJ9t0jQ09WjiF+uOoG9u+p30AVg3TrZRUWmoTS+koQ==}
377 | peerDependencies:
378 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
379 |
380 | '@react-stately/utils@3.10.5':
381 | resolution: {integrity: sha512-iMQSGcpaecghDIh3mZEpZfoFH3ExBwTtuBEcvZ2XnGzCgQjeYXcMdIUwAfVQLXFTdHUHGF6Gu6/dFrYsCzySBQ==}
382 | peerDependencies:
383 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
384 |
385 | '@react-types/shared@3.26.0':
386 | resolution: {integrity: sha512-6FuPqvhmjjlpEDLTiYx29IJCbCNWPlsyO+ZUmCUXzhUv2ttShOXfw8CmeHWHftT/b2KweAWuzqSlfeXPR76jpw==}
387 | peerDependencies:
388 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
389 |
390 | '@shikijs/core@1.26.1':
391 | resolution: {integrity: sha512-yeo7sG+WZQblKPclUOKRPwkv1PyoHYkJ4gP9DzhFJbTdueKR7wYTI1vfF/bFi1NTgc545yG/DzvVhZgueVOXMA==}
392 |
393 | '@shikijs/engine-javascript@1.26.1':
394 | resolution: {integrity: sha512-CRhA0b8CaSLxS0E9A4Bzcb3LKBNpykfo9F85ozlNyArxjo2NkijtiwrJZ6eHa+NT5I9Kox2IXVdjUsP4dilsmw==}
395 |
396 | '@shikijs/engine-oniguruma@1.26.1':
397 | resolution: {integrity: sha512-F5XuxN1HljLuvfXv7d+mlTkV7XukC1cawdtOo+7pKgPD83CAB1Sf8uHqP3PK0u7njFH0ZhoXE1r+0JzEgAQ+kg==}
398 |
399 | '@shikijs/langs@1.26.1':
400 | resolution: {integrity: sha512-oz/TQiIqZejEIZbGtn68hbJijAOTtYH4TMMSWkWYozwqdpKR3EXgILneQy26WItmJjp3xVspHdiUxUCws4gtuw==}
401 |
402 | '@shikijs/themes@1.26.1':
403 | resolution: {integrity: sha512-JDxVn+z+wgLCiUhBGx2OQrLCkKZQGzNH3nAxFir4PjUcYiyD8Jdms9izyxIogYmSwmoPTatFTdzyrRKbKlSfPA==}
404 |
405 | '@shikijs/twoslash@1.26.1':
406 | resolution: {integrity: sha512-jgRt6c6y+rXVfpcLIAY8luCKDiadhozrLS1+xjXA6WcZ/5wCAB2oj+ubue+14UZkg2yLJaH0X7N8N2J7/X1YJQ==}
407 |
408 | '@shikijs/types@1.26.1':
409 | resolution: {integrity: sha512-d4B00TKKAMaHuFYgRf3L0gwtvqpW4hVdVwKcZYbBfAAQXspgkbWqnFfuFl3MDH6gLbsubOcr+prcnsqah3ny7Q==}
410 |
411 | '@shikijs/vscode-textmate@10.0.1':
412 | resolution: {integrity: sha512-fTIQwLF+Qhuws31iw7Ncl1R3HUDtGwIipiJ9iU+UsDUwMhegFcQKQHd51nZjb7CArq0MvON8rbgCGQYWHUKAdg==}
413 |
414 | '@swc/counter@0.1.3':
415 | resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==}
416 |
417 | '@swc/helpers@0.5.15':
418 | resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==}
419 |
420 | '@tanstack/react-virtual@3.11.2':
421 | resolution: {integrity: sha512-OuFzMXPF4+xZgx8UzJha0AieuMihhhaWG0tCqpp6tDzlFwOmNBPYMuLOtMJ1Tr4pXLHmgjcWhG6RlknY2oNTdQ==}
422 | peerDependencies:
423 | react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
424 | react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
425 |
426 | '@tanstack/virtual-core@3.11.2':
427 | resolution: {integrity: sha512-vTtpNt7mKCiZ1pwU9hfKPhpdVO2sVzFQsxoVBGtOSHxlrRRzYr8iQ2TlwbAcRYCcEiZ9ECAM8kBzH0v2+VzfKw==}
428 |
429 | '@theguild/remark-mermaid@0.1.3':
430 | resolution: {integrity: sha512-2FjVlaaKXK7Zj7UJAgOVTyaahn/3/EAfqYhyXg0BfDBVUl+lXcoIWRaxzqfnDr2rv8ax6GsC5mNh6hAaT86PDw==}
431 | peerDependencies:
432 | react: ^18.2.0
433 |
434 | '@theguild/remark-npm2yarn@0.3.3':
435 | resolution: {integrity: sha512-ma6DvR03gdbvwqfKx1omqhg9May/VYGdMHvTzB4VuxkyS7KzfZ/lzrj43hmcsggpMje0x7SADA/pcMph0ejRnA==}
436 |
437 | '@types/acorn@4.0.6':
438 | resolution: {integrity: sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==}
439 |
440 | '@types/d3-array@3.2.1':
441 | resolution: {integrity: sha512-Y2Jn2idRrLzUfAKV2LyRImR+y4oa2AntrgID95SHJxuMUrkNXmanDSed71sRNZysveJVt1hLLemQZIady0FpEg==}
442 |
443 | '@types/d3-axis@3.0.6':
444 | resolution: {integrity: sha512-pYeijfZuBd87T0hGn0FO1vQ/cgLk6E1ALJjfkC0oJ8cbwkZl3TpgS8bVBLZN+2jjGgg38epgxb2zmoGtSfvgMw==}
445 |
446 | '@types/d3-brush@3.0.6':
447 | resolution: {integrity: sha512-nH60IZNNxEcrh6L1ZSMNA28rj27ut/2ZmI3r96Zd+1jrZD++zD3LsMIjWlvg4AYrHn/Pqz4CF3veCxGjtbqt7A==}
448 |
449 | '@types/d3-chord@3.0.6':
450 | resolution: {integrity: sha512-LFYWWd8nwfwEmTZG9PfQxd17HbNPksHBiJHaKuY1XeqscXacsS2tyoo6OdRsjf+NQYeB6XrNL3a25E3gH69lcg==}
451 |
452 | '@types/d3-color@3.1.3':
453 | resolution: {integrity: sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==}
454 |
455 | '@types/d3-contour@3.0.6':
456 | resolution: {integrity: sha512-BjzLgXGnCWjUSYGfH1cpdo41/hgdWETu4YxpezoztawmqsvCeep+8QGfiY6YbDvfgHz/DkjeIkkZVJavB4a3rg==}
457 |
458 | '@types/d3-delaunay@6.0.4':
459 | resolution: {integrity: sha512-ZMaSKu4THYCU6sV64Lhg6qjf1orxBthaC161plr5KuPHo3CNm8DTHiLw/5Eq2b6TsNP0W0iJrUOFscY6Q450Hw==}
460 |
461 | '@types/d3-dispatch@3.0.6':
462 | resolution: {integrity: sha512-4fvZhzMeeuBJYZXRXrRIQnvUYfyXwYmLsdiN7XXmVNQKKw1cM8a5WdID0g1hVFZDqT9ZqZEY5pD44p24VS7iZQ==}
463 |
464 | '@types/d3-drag@3.0.7':
465 | resolution: {integrity: sha512-HE3jVKlzU9AaMazNufooRJ5ZpWmLIoc90A37WU2JMmeq28w1FQqCZswHZ3xR+SuxYftzHq6WU6KJHvqxKzTxxQ==}
466 |
467 | '@types/d3-dsv@3.0.7':
468 | resolution: {integrity: sha512-n6QBF9/+XASqcKK6waudgL0pf/S5XHPPI8APyMLLUHd8NqouBGLsU8MgtO7NINGtPBtk9Kko/W4ea0oAspwh9g==}
469 |
470 | '@types/d3-ease@3.0.2':
471 | resolution: {integrity: sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==}
472 |
473 | '@types/d3-fetch@3.0.7':
474 | resolution: {integrity: sha512-fTAfNmxSb9SOWNB9IoG5c8Hg6R+AzUHDRlsXsDZsNp6sxAEOP0tkP3gKkNSO/qmHPoBFTxNrjDprVHDQDvo5aA==}
475 |
476 | '@types/d3-force@3.0.10':
477 | resolution: {integrity: sha512-ZYeSaCF3p73RdOKcjj+swRlZfnYpK1EbaDiYICEEp5Q6sUiqFaFQ9qgoshp5CzIyyb/yD09kD9o2zEltCexlgw==}
478 |
479 | '@types/d3-format@3.0.4':
480 | resolution: {integrity: sha512-fALi2aI6shfg7vM5KiR1wNJnZ7r6UuggVqtDA+xiEdPZQwy/trcQaHnwShLuLdta2rTymCNpxYTiMZX/e09F4g==}
481 |
482 | '@types/d3-geo@3.1.0':
483 | resolution: {integrity: sha512-856sckF0oP/diXtS4jNsiQw/UuK5fQG8l/a9VVLeSouf1/PPbBE1i1W852zVwKwYCBkFJJB7nCFTbk6UMEXBOQ==}
484 |
485 | '@types/d3-hierarchy@3.1.7':
486 | resolution: {integrity: sha512-tJFtNoYBtRtkNysX1Xq4sxtjK8YgoWUNpIiUee0/jHGRwqvzYxkq0hGVbbOGSz+JgFxxRu4K8nb3YpG3CMARtg==}
487 |
488 | '@types/d3-interpolate@3.0.4':
489 | resolution: {integrity: sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==}
490 |
491 | '@types/d3-path@3.1.0':
492 | resolution: {integrity: sha512-P2dlU/q51fkOc/Gfl3Ul9kicV7l+ra934qBFXCFhrZMOL6du1TM0pm1ThYvENukyOn5h9v+yMJ9Fn5JK4QozrQ==}
493 |
494 | '@types/d3-polygon@3.0.2':
495 | resolution: {integrity: sha512-ZuWOtMaHCkN9xoeEMr1ubW2nGWsp4nIql+OPQRstu4ypeZ+zk3YKqQT0CXVe/PYqrKpZAi+J9mTs05TKwjXSRA==}
496 |
497 | '@types/d3-quadtree@3.0.6':
498 | resolution: {integrity: sha512-oUzyO1/Zm6rsxKRHA1vH0NEDG58HrT5icx/azi9MF1TWdtttWl0UIUsjEQBBh+SIkrpd21ZjEv7ptxWys1ncsg==}
499 |
500 | '@types/d3-random@3.0.3':
501 | resolution: {integrity: sha512-Imagg1vJ3y76Y2ea0871wpabqp613+8/r0mCLEBfdtqC7xMSfj9idOnmBYyMoULfHePJyxMAw3nWhJxzc+LFwQ==}
502 |
503 | '@types/d3-scale-chromatic@3.1.0':
504 | resolution: {integrity: sha512-iWMJgwkK7yTRmWqRB5plb1kadXyQ5Sj8V/zYlFGMUBbIPKQScw+Dku9cAAMgJG+z5GYDoMjWGLVOvjghDEFnKQ==}
505 |
506 | '@types/d3-scale@4.0.8':
507 | resolution: {integrity: sha512-gkK1VVTr5iNiYJ7vWDI+yUFFlszhNMtVeneJ6lUTKPjprsvLLI9/tgEGiXJOnlINJA8FyA88gfnQsHbybVZrYQ==}
508 |
509 | '@types/d3-selection@3.0.11':
510 | resolution: {integrity: sha512-bhAXu23DJWsrI45xafYpkQ4NtcKMwWnAC/vKrd2l+nxMFuvOT3XMYTIj2opv8vq8AO5Yh7Qac/nSeP/3zjTK0w==}
511 |
512 | '@types/d3-shape@3.1.6':
513 | resolution: {integrity: sha512-5KKk5aKGu2I+O6SONMYSNflgiP0WfZIQvVUMan50wHsLG1G94JlxEVnCpQARfTtzytuY0p/9PXXZb3I7giofIA==}
514 |
515 | '@types/d3-time-format@4.0.3':
516 | resolution: {integrity: sha512-5xg9rC+wWL8kdDj153qZcsJ0FWiFt0J5RB6LYUNZjwSnesfblqrI/bJ1wBdJ8OQfncgbJG5+2F+qfqnqyzYxyg==}
517 |
518 | '@types/d3-time@3.0.4':
519 | resolution: {integrity: sha512-yuzZug1nkAAaBlBBikKZTgzCeA+k1uy4ZFwWANOfKw5z5LRhV0gNA7gNkKm7HoK+HRN0wX3EkxGk0fpbWhmB7g==}
520 |
521 | '@types/d3-timer@3.0.2':
522 | resolution: {integrity: sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==}
523 |
524 | '@types/d3-transition@3.0.9':
525 | resolution: {integrity: sha512-uZS5shfxzO3rGlu0cC3bjmMFKsXv+SmZZcgp0KD22ts4uGXp5EVYGzu/0YdwZeKmddhcAccYtREJKkPfXkZuCg==}
526 |
527 | '@types/d3-zoom@3.0.8':
528 | resolution: {integrity: sha512-iqMC4/YlFCSlO8+2Ii1GGGliCAY4XdeG748w5vQUbevlbDu0zSjH/+jojorQVBK/se0j6DUFNPBGSqD3YWYnDw==}
529 |
530 | '@types/d3@7.4.3':
531 | resolution: {integrity: sha512-lZXZ9ckh5R8uiFVt8ogUNf+pIrK4EsWrx2Np75WvF/eTpJ0FMHNhjXk8CKEx/+gpHbNQyJWehbFaTvqmHWB3ww==}
532 |
533 | '@types/debug@4.1.12':
534 | resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==}
535 |
536 | '@types/estree-jsx@1.0.5':
537 | resolution: {integrity: sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==}
538 |
539 | '@types/estree@1.0.5':
540 | resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
541 |
542 | '@types/geojson@7946.0.15':
543 | resolution: {integrity: sha512-9oSxFzDCT2Rj6DfcHF8G++jxBKS7mBqXl5xrRW+Kbvjry6Uduya2iiwqHPhVXpasAVMBYKkEPGgKhd3+/HZ6xA==}
544 |
545 | '@types/hast@3.0.4':
546 | resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==}
547 |
548 | '@types/katex@0.16.7':
549 | resolution: {integrity: sha512-HMwFiRujE5PjrgwHQ25+bsLJgowjGjm5Z8FVSf0N6PwgJrwxH0QxzHYDcKsTfV3wva0vzrpqMTJS2jXPr5BMEQ==}
550 |
551 | '@types/mdast@4.0.4':
552 | resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==}
553 |
554 | '@types/mdx@2.0.13':
555 | resolution: {integrity: sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw==}
556 |
557 | '@types/ms@0.7.34':
558 | resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==}
559 |
560 | '@types/nlcst@2.0.3':
561 | resolution: {integrity: sha512-vSYNSDe6Ix3q+6Z7ri9lyWqgGhJTmzRjZRqyq15N0Z/1/UnVsno9G/N40NBijoYx2seFDIl0+B2mgAb9mezUCA==}
562 |
563 | '@types/node@18.11.10':
564 | resolution: {integrity: sha512-juG3RWMBOqcOuXC643OAdSA525V44cVgGV6dUDuiFtss+8Fk5x1hI93Rsld43VeJVIeqlP9I7Fn9/qaVqoEAuQ==}
565 |
566 | '@types/prop-types@15.7.12':
567 | resolution: {integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==}
568 |
569 | '@types/react@18.3.3':
570 | resolution: {integrity: sha512-hti/R0pS0q1/xx+TsI73XIqk26eBsISZ2R0wUijXIngRK9R/e7Xw/cXVxQK7R5JjW+SV4zGcn5hXjudkN/pLIw==}
571 |
572 | '@types/trusted-types@2.0.7':
573 | resolution: {integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==}
574 |
575 | '@types/unist@2.0.10':
576 | resolution: {integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==}
577 |
578 | '@types/unist@3.0.3':
579 | resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==}
580 |
581 | '@typescript/vfs@1.6.0':
582 | resolution: {integrity: sha512-hvJUjNVeBMp77qPINuUvYXj4FyWeeMMKZkxEATEU3hqBAQ7qdTBCUFT7Sp0Zu0faeEtFf+ldXxMEDr/bk73ISg==}
583 | peerDependencies:
584 | typescript: '*'
585 |
586 | '@ungap/structured-clone@1.2.1':
587 | resolution: {integrity: sha512-fEzPV3hSkSMltkw152tJKNARhOupqbH96MZWyRjNaYZOMIzbrTeQDG+MTc6Mr2pgzFQzFxAfmhGDNP5QK++2ZA==}
588 |
589 | acorn-jsx@5.3.2:
590 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
591 | peerDependencies:
592 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
593 |
594 | acorn@8.12.1:
595 | resolution: {integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==}
596 | engines: {node: '>=0.4.0'}
597 | hasBin: true
598 |
599 | acorn@8.14.0:
600 | resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==}
601 | engines: {node: '>=0.4.0'}
602 | hasBin: true
603 |
604 | arg@5.0.2:
605 | resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
606 |
607 | argparse@1.0.10:
608 | resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==}
609 |
610 | array-iterate@2.0.1:
611 | resolution: {integrity: sha512-I1jXZMjAgCMmxT4qxXfPXa6SthSoE8h6gkSI9BGGNv8mP8G/v0blc+qFnZu6K42vTOiuME596QaLO0TP3Lk0xg==}
612 |
613 | astring@1.8.6:
614 | resolution: {integrity: sha512-ISvCdHdlTDlH5IpxQJIex7BWBywFWgjJSVdwst+/iQCoEYnyOaQ95+X1JGshuBjGp6nxKUy1jMgE3zPqN7fQdg==}
615 | hasBin: true
616 |
617 | bail@2.0.2:
618 | resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==}
619 |
620 | better-react-mathjax@2.0.3:
621 | resolution: {integrity: sha512-wfifT8GFOKb1TWm2+E50I6DJpLZ5kLbch283Lu043EJtwSv0XvZDjr4YfR4d2MjAhqP6SH4VjjrKgbX8R00oCQ==}
622 | peerDependencies:
623 | react: '>=16.8'
624 |
625 | busboy@1.6.0:
626 | resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==}
627 | engines: {node: '>=10.16.0'}
628 |
629 | caniuse-lite@1.0.30001690:
630 | resolution: {integrity: sha512-5ExiE3qQN6oF8Clf8ifIDcMRCRE/dMGcETG/XGMD8/XiXm6HXQgQTh1yZYLXXpSOsEUlJm1Xr7kGULZTuGtP/w==}
631 |
632 | ccount@2.0.1:
633 | resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
634 |
635 | chalk@5.4.1:
636 | resolution: {integrity: sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==}
637 | engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
638 |
639 | character-entities-html4@2.1.0:
640 | resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==}
641 |
642 | character-entities-legacy@3.0.0:
643 | resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==}
644 |
645 | character-entities@2.0.2:
646 | resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==}
647 |
648 | character-reference-invalid@2.0.1:
649 | resolution: {integrity: sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==}
650 |
651 | chevrotain-allstar@0.3.1:
652 | resolution: {integrity: sha512-b7g+y9A0v4mxCW1qUhf3BSVPg+/NvGErk/dOkrDaHA0nQIQGAtrOjlX//9OQtRlSCy+x9rfB5N8yC71lH1nvMw==}
653 | peerDependencies:
654 | chevrotain: ^11.0.0
655 |
656 | chevrotain@11.0.3:
657 | resolution: {integrity: sha512-ci2iJH6LeIkvP9eJW6gpueU8cnZhv85ELY8w8WiFtNjMHA5ad6pQLaJo9mEly/9qUyCpvqX8/POVUTf18/HFdw==}
658 |
659 | client-only@0.0.1:
660 | resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==}
661 |
662 | clipboardy@4.0.0:
663 | resolution: {integrity: sha512-5mOlNS0mhX0707P2I0aZ2V/cmHUEO/fL7VFLqszkhUsxt7RwnmrInf/eEQKlf5GzvYeHIjT+Ov1HRfNmymlG0w==}
664 | engines: {node: '>=18'}
665 |
666 | clsx@2.1.1:
667 | resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
668 | engines: {node: '>=6'}
669 |
670 | collapse-white-space@2.1.0:
671 | resolution: {integrity: sha512-loKTxY1zCOuG4j9f6EPnuyyYkf58RnhhWTvRoZEokgB+WbdXehfjFviyOVYkqzEWz1Q5kRiZdBYS5SwxbQYwzw==}
672 |
673 | color-convert@2.0.1:
674 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
675 | engines: {node: '>=7.0.0'}
676 |
677 | color-name@1.1.3:
678 | resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
679 |
680 | color-name@1.1.4:
681 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
682 |
683 | color-string@1.9.1:
684 | resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==}
685 |
686 | color@4.2.3:
687 | resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==}
688 | engines: {node: '>=12.5.0'}
689 |
690 | comma-separated-tokens@2.0.3:
691 | resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==}
692 |
693 | commander@7.2.0:
694 | resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==}
695 | engines: {node: '>= 10'}
696 |
697 | commander@8.3.0:
698 | resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==}
699 | engines: {node: '>= 12'}
700 |
701 | commander@9.2.0:
702 | resolution: {integrity: sha512-e2i4wANQiSXgnrBlIatyHtP1odfUp0BbV5Y5nEGbxtIrStkEOAAzCUirvLBNXHLr7kwLvJl6V+4V3XV9x7Wd9w==}
703 | engines: {node: ^12.20.0 || >=14}
704 |
705 | compute-scroll-into-view@3.1.0:
706 | resolution: {integrity: sha512-rj8l8pD4bJ1nx+dAkMhV1xB5RuZEyVysfxJqB1pRchh1KVvwOv9b7CGB8ZfjTImVv2oF+sYMUkMZq6Na5Ftmbg==}
707 |
708 | confbox@0.1.8:
709 | resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==}
710 |
711 | cose-base@1.0.3:
712 | resolution: {integrity: sha512-s9whTXInMSgAp/NVXVNuVxVKzGH2qck3aQlVHxDCdAEPgtMKwc4Wq6/QKhgdEdgbLSi9rBTAcPoRa6JpiG4ksg==}
713 |
714 | cose-base@2.2.0:
715 | resolution: {integrity: sha512-AzlgcsCbUMymkADOJtQm3wO9S3ltPfYOFD5033keQn9NJzIbtnZj+UdBJe7DYml/8TdbtHJW3j58SOnKhWY/5g==}
716 |
717 | cross-spawn@7.0.6:
718 | resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
719 | engines: {node: '>= 8'}
720 |
721 | csstype@3.1.3:
722 | resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
723 |
724 | cytoscape-cose-bilkent@4.1.0:
725 | resolution: {integrity: sha512-wgQlVIUJF13Quxiv5e1gstZ08rnZj2XaLHGoFMYXz7SkNfCDOOteKBE6SYRfA9WxxI/iBc3ajfDoc6hb/MRAHQ==}
726 | peerDependencies:
727 | cytoscape: ^3.2.0
728 |
729 | cytoscape-fcose@2.2.0:
730 | resolution: {integrity: sha512-ki1/VuRIHFCzxWNrsshHYPs6L7TvLu3DL+TyIGEsRcvVERmxokbf5Gdk7mFxZnTdiGtnA4cfSmjZJMviqSuZrQ==}
731 | peerDependencies:
732 | cytoscape: ^3.2.0
733 |
734 | cytoscape@3.30.4:
735 | resolution: {integrity: sha512-OxtlZwQl1WbwMmLiyPSEBuzeTIQnwZhJYYWFzZ2PhEHVFwpeaqNIkUzSiso00D98qk60l8Gwon2RP304d3BJ1A==}
736 | engines: {node: '>=0.10'}
737 |
738 | d3-array@2.12.1:
739 | resolution: {integrity: sha512-B0ErZK/66mHtEsR1TkPEEkwdy+WDesimkM5gpZr5Dsg54BiTA5RXtYW5qTLIAcekaS9xfZrzBLF/OAkB3Qn1YQ==}
740 |
741 | d3-array@3.2.4:
742 | resolution: {integrity: sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==}
743 | engines: {node: '>=12'}
744 |
745 | d3-axis@3.0.0:
746 | resolution: {integrity: sha512-IH5tgjV4jE/GhHkRV0HiVYPDtvfjHQlQfJHs0usq7M30XcSBvOotpmH1IgkcXsO/5gEQZD43B//fc7SRT5S+xw==}
747 | engines: {node: '>=12'}
748 |
749 | d3-brush@3.0.0:
750 | resolution: {integrity: sha512-ALnjWlVYkXsVIGlOsuWH1+3udkYFI48Ljihfnh8FZPF2QS9o+PzGLBslO0PjzVoHLZ2KCVgAM8NVkXPJB2aNnQ==}
751 | engines: {node: '>=12'}
752 |
753 | d3-chord@3.0.1:
754 | resolution: {integrity: sha512-VE5S6TNa+j8msksl7HwjxMHDM2yNK3XCkusIlpX5kwauBfXuyLAtNg9jCp/iHH61tgI4sb6R/EIMWCqEIdjT/g==}
755 | engines: {node: '>=12'}
756 |
757 | d3-color@3.1.0:
758 | resolution: {integrity: sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==}
759 | engines: {node: '>=12'}
760 |
761 | d3-contour@4.0.2:
762 | resolution: {integrity: sha512-4EzFTRIikzs47RGmdxbeUvLWtGedDUNkTcmzoeyg4sP/dvCexO47AaQL7VKy/gul85TOxw+IBgA8US2xwbToNA==}
763 | engines: {node: '>=12'}
764 |
765 | d3-delaunay@6.0.4:
766 | resolution: {integrity: sha512-mdjtIZ1XLAM8bm/hx3WwjfHt6Sggek7qH043O8KEjDXN40xi3vx/6pYSVTwLjEgiXQTbvaouWKynLBiUZ6SK6A==}
767 | engines: {node: '>=12'}
768 |
769 | d3-dispatch@3.0.1:
770 | resolution: {integrity: sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==}
771 | engines: {node: '>=12'}
772 |
773 | d3-drag@3.0.0:
774 | resolution: {integrity: sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==}
775 | engines: {node: '>=12'}
776 |
777 | d3-dsv@3.0.1:
778 | resolution: {integrity: sha512-UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q==}
779 | engines: {node: '>=12'}
780 | hasBin: true
781 |
782 | d3-ease@3.0.1:
783 | resolution: {integrity: sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==}
784 | engines: {node: '>=12'}
785 |
786 | d3-fetch@3.0.1:
787 | resolution: {integrity: sha512-kpkQIM20n3oLVBKGg6oHrUchHM3xODkTzjMoj7aWQFq5QEM+R6E4WkzT5+tojDY7yjez8KgCBRoj4aEr99Fdqw==}
788 | engines: {node: '>=12'}
789 |
790 | d3-force@3.0.0:
791 | resolution: {integrity: sha512-zxV/SsA+U4yte8051P4ECydjD/S+qeYtnaIyAs9tgHCqfguma/aAQDjo85A9Z6EKhBirHRJHXIgJUlffT4wdLg==}
792 | engines: {node: '>=12'}
793 |
794 | d3-format@3.1.0:
795 | resolution: {integrity: sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==}
796 | engines: {node: '>=12'}
797 |
798 | d3-geo@3.1.1:
799 | resolution: {integrity: sha512-637ln3gXKXOwhalDzinUgY83KzNWZRKbYubaG+fGVuc/dxO64RRljtCTnf5ecMyE1RIdtqpkVcq0IbtU2S8j2Q==}
800 | engines: {node: '>=12'}
801 |
802 | d3-hierarchy@3.1.2:
803 | resolution: {integrity: sha512-FX/9frcub54beBdugHjDCdikxThEqjnR93Qt7PvQTOHxyiNCAlvMrHhclk3cD5VeAaq9fxmfRp+CnWw9rEMBuA==}
804 | engines: {node: '>=12'}
805 |
806 | d3-interpolate@3.0.1:
807 | resolution: {integrity: sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==}
808 | engines: {node: '>=12'}
809 |
810 | d3-path@1.0.9:
811 | resolution: {integrity: sha512-VLaYcn81dtHVTjEHd8B+pbe9yHWpXKZUC87PzoFmsFrJqgFwDe/qxfp5MlfsfM1V5E/iVt0MmEbWQ7FVIXh/bg==}
812 |
813 | d3-path@3.1.0:
814 | resolution: {integrity: sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==}
815 | engines: {node: '>=12'}
816 |
817 | d3-polygon@3.0.1:
818 | resolution: {integrity: sha512-3vbA7vXYwfe1SYhED++fPUQlWSYTTGmFmQiany/gdbiWgU/iEyQzyymwL9SkJjFFuCS4902BSzewVGsHHmHtXg==}
819 | engines: {node: '>=12'}
820 |
821 | d3-quadtree@3.0.1:
822 | resolution: {integrity: sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw==}
823 | engines: {node: '>=12'}
824 |
825 | d3-random@3.0.1:
826 | resolution: {integrity: sha512-FXMe9GfxTxqd5D6jFsQ+DJ8BJS4E/fT5mqqdjovykEB2oFbTMDVdg1MGFxfQW+FBOGoB++k8swBrgwSHT1cUXQ==}
827 | engines: {node: '>=12'}
828 |
829 | d3-sankey@0.12.3:
830 | resolution: {integrity: sha512-nQhsBRmM19Ax5xEIPLMY9ZmJ/cDvd1BG3UVvt5h3WRxKg5zGRbvnteTyWAbzeSvlh3tW7ZEmq4VwR5mB3tutmQ==}
831 |
832 | d3-scale-chromatic@3.1.0:
833 | resolution: {integrity: sha512-A3s5PWiZ9YCXFye1o246KoscMWqf8BsD9eRiJ3He7C9OBaxKhAd5TFCdEx/7VbKtxxTsu//1mMJFrEt572cEyQ==}
834 | engines: {node: '>=12'}
835 |
836 | d3-scale@4.0.2:
837 | resolution: {integrity: sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==}
838 | engines: {node: '>=12'}
839 |
840 | d3-selection@3.0.0:
841 | resolution: {integrity: sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==}
842 | engines: {node: '>=12'}
843 |
844 | d3-shape@1.3.7:
845 | resolution: {integrity: sha512-EUkvKjqPFUAZyOlhY5gzCxCeI0Aep04LwIRpsZ/mLFelJiUfnK56jo5JMDSE7yyP2kLSb6LtF+S5chMk7uqPqw==}
846 |
847 | d3-shape@3.2.0:
848 | resolution: {integrity: sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==}
849 | engines: {node: '>=12'}
850 |
851 | d3-time-format@4.1.0:
852 | resolution: {integrity: sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==}
853 | engines: {node: '>=12'}
854 |
855 | d3-time@3.1.0:
856 | resolution: {integrity: sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==}
857 | engines: {node: '>=12'}
858 |
859 | d3-timer@3.0.1:
860 | resolution: {integrity: sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==}
861 | engines: {node: '>=12'}
862 |
863 | d3-transition@3.0.1:
864 | resolution: {integrity: sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==}
865 | engines: {node: '>=12'}
866 | peerDependencies:
867 | d3-selection: 2 - 3
868 |
869 | d3-zoom@3.0.0:
870 | resolution: {integrity: sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==}
871 | engines: {node: '>=12'}
872 |
873 | d3@7.9.0:
874 | resolution: {integrity: sha512-e1U46jVP+w7Iut8Jt8ri1YsPOvFpg46k+K8TpCb0P+zjCkjkPnV7WzfDJzMHy1LnA+wj5pLT1wjO901gLXeEhA==}
875 | engines: {node: '>=12'}
876 |
877 | dagre-d3-es@7.0.11:
878 | resolution: {integrity: sha512-tvlJLyQf834SylNKax8Wkzco/1ias1OPw8DcUMDE7oUIoSEW25riQVuiu/0OWEFqT0cxHT3Pa9/D82Jr47IONw==}
879 |
880 | dayjs@1.11.13:
881 | resolution: {integrity: sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==}
882 |
883 | debug@4.3.6:
884 | resolution: {integrity: sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==}
885 | engines: {node: '>=6.0'}
886 | peerDependencies:
887 | supports-color: '*'
888 | peerDependenciesMeta:
889 | supports-color:
890 | optional: true
891 |
892 | debug@4.4.0:
893 | resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==}
894 | engines: {node: '>=6.0'}
895 | peerDependencies:
896 | supports-color: '*'
897 | peerDependenciesMeta:
898 | supports-color:
899 | optional: true
900 |
901 | decode-named-character-reference@1.0.2:
902 | resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==}
903 |
904 | delaunator@5.0.1:
905 | resolution: {integrity: sha512-8nvh+XBe96aCESrGOqMp/84b13H9cdKbG5P2ejQCh4d4sK9RL4371qou9drQjMhvnPmhWl5hnmqbEE0fXr9Xnw==}
906 |
907 | dequal@2.0.3:
908 | resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
909 | engines: {node: '>=6'}
910 |
911 | detect-libc@2.0.3:
912 | resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==}
913 | engines: {node: '>=8'}
914 |
915 | devlop@1.1.0:
916 | resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==}
917 |
918 | dompurify@3.2.3:
919 | resolution: {integrity: sha512-U1U5Hzc2MO0oW3DF+G9qYN0aT7atAou4AgI0XjWz061nyBPbdxkfdhfy5uMgGn6+oLFCfn44ZGbdDqCzVmlOWA==}
920 |
921 | emoji-regex-xs@1.0.0:
922 | resolution: {integrity: sha512-LRlerrMYoIDrT6jgpeZ2YYl/L8EulRTt5hQcYjy5AInh7HWXKimpqx68aknBFpGL2+/IcogTcaydJEgaTmOpDg==}
923 |
924 | entities@4.5.0:
925 | resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
926 | engines: {node: '>=0.12'}
927 |
928 | esast-util-from-estree@2.0.0:
929 | resolution: {integrity: sha512-4CyanoAudUSBAn5K13H4JhsMH6L9ZP7XbLVe/dKybkxMO7eDyLsT8UHl9TRNrU2Gr9nz+FovfSIjuXWJ81uVwQ==}
930 |
931 | esast-util-from-js@2.0.1:
932 | resolution: {integrity: sha512-8Ja+rNJ0Lt56Pcf3TAmpBZjmx8ZcK5Ts4cAzIOjsjevg9oSXJnl6SUQ2EevU8tv3h6ZLWmoKL5H4fgWvdvfETw==}
933 |
934 | escape-string-regexp@5.0.0:
935 | resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==}
936 | engines: {node: '>=12'}
937 |
938 | esm@3.2.25:
939 | resolution: {integrity: sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==}
940 | engines: {node: '>=6'}
941 |
942 | esprima@4.0.1:
943 | resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==}
944 | engines: {node: '>=4'}
945 | hasBin: true
946 |
947 | estree-util-attach-comments@3.0.0:
948 | resolution: {integrity: sha512-cKUwm/HUcTDsYh/9FgnuFqpfquUbwIqwKM26BVCGDPVgvaCl/nDCCjUfiLlx6lsEZ3Z4RFxNbOQ60pkaEwFxGw==}
949 |
950 | estree-util-build-jsx@3.0.1:
951 | resolution: {integrity: sha512-8U5eiL6BTrPxp/CHbs2yMgP8ftMhR5ww1eIKoWRMlqvltHF8fZn5LRDvTKuxD3DUn+shRbLGqXemcP51oFCsGQ==}
952 |
953 | estree-util-is-identifier-name@2.1.0:
954 | resolution: {integrity: sha512-bEN9VHRyXAUOjkKVQVvArFym08BTWB0aJPppZZr0UNyAqWsLaVfAqP7hbaTJjzHifmB5ebnR8Wm7r7yGN/HonQ==}
955 |
956 | estree-util-is-identifier-name@3.0.0:
957 | resolution: {integrity: sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==}
958 |
959 | estree-util-scope@1.0.0:
960 | resolution: {integrity: sha512-2CAASclonf+JFWBNJPndcOpA8EMJwa0Q8LUFJEKqXLW6+qBvbFZuF5gItbQOs/umBUkjviCSDCbBwU2cXbmrhQ==}
961 |
962 | estree-util-to-js@2.0.0:
963 | resolution: {integrity: sha512-WDF+xj5rRWmD5tj6bIqRi6CkLIXbbNQUcxQHzGysQzvHmdYG2G7p/Tf0J0gpxGgkeMZNTIjT/AoSvC9Xehcgdg==}
964 |
965 | estree-util-value-to-estree@1.3.0:
966 | resolution: {integrity: sha512-Y+ughcF9jSUJvncXwqRageavjrNPAI+1M/L3BI3PyLp1nmgYTGUXU6t5z1Y7OWuThoDdhPME07bQU+d5LxdJqw==}
967 | engines: {node: '>=12.0.0'}
968 |
969 | estree-util-value-to-estree@3.2.1:
970 | resolution: {integrity: sha512-Vt2UOjyPbNQQgT5eJh+K5aATti0OjCIAGc9SgMdOFYbohuifsWclR74l0iZTJwePMgWYdX1hlVS+dedH9XV8kw==}
971 |
972 | estree-util-visit@2.0.0:
973 | resolution: {integrity: sha512-m5KgiH85xAhhW8Wta0vShLcUvOsh3LLPI2YVwcbio1l7E09NTLL1EyMZFM1OyWowoH0skScNbhOPl4kcBgzTww==}
974 |
975 | estree-walker@3.0.3:
976 | resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==}
977 |
978 | execa@8.0.1:
979 | resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==}
980 | engines: {node: '>=16.17'}
981 |
982 | extend-shallow@2.0.1:
983 | resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==}
984 | engines: {node: '>=0.10.0'}
985 |
986 | extend@3.0.2:
987 | resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==}
988 |
989 | fault@2.0.1:
990 | resolution: {integrity: sha512-WtySTkS4OKev5JtpHXnib4Gxiurzh5NCGvWrFaZ34m6JehfTUhKZvn9njTfw48t6JumVQOmrKqpmGcdwxnhqBQ==}
991 |
992 | flexsearch@0.7.43:
993 | resolution: {integrity: sha512-c5o/+Um8aqCSOXGcZoqZOm+NqtVwNsvVpWv6lfmSclU954O3wvQKxxK8zj74fPaSJbXpSLTs4PRhh+wnoCXnKg==}
994 |
995 | format@0.2.2:
996 | resolution: {integrity: sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==}
997 | engines: {node: '>=0.4.x'}
998 |
999 | get-stream@8.0.1:
1000 | resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==}
1001 | engines: {node: '>=16'}
1002 |
1003 | github-slugger@2.0.0:
1004 | resolution: {integrity: sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==}
1005 |
1006 | globals@15.14.0:
1007 | resolution: {integrity: sha512-OkToC372DtlQeje9/zHIo5CT8lRP/FUgEOKBEhU4e0abL7J7CD24fD9ohiLN5hagG/kWCYj4K5oaxxtj2Z0Dig==}
1008 | engines: {node: '>=18'}
1009 |
1010 | graceful-fs@4.2.11:
1011 | resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
1012 |
1013 | gray-matter@4.0.3:
1014 | resolution: {integrity: sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==}
1015 | engines: {node: '>=6.0'}
1016 |
1017 | hachure-fill@0.5.2:
1018 | resolution: {integrity: sha512-3GKBOn+m2LX9iq+JC1064cSFprJY4jL1jCXTcpnfER5HYE2l/4EfWSGzkPa/ZDBmYI0ZOEj5VHV/eKnPGkHuOg==}
1019 |
1020 | hast-util-from-dom@5.0.1:
1021 | resolution: {integrity: sha512-N+LqofjR2zuzTjCPzyDUdSshy4Ma6li7p/c3pA78uTwzFgENbgbUrm2ugwsOdcjI1muO+o6Dgzp9p8WHtn/39Q==}
1022 |
1023 | hast-util-from-html-isomorphic@2.0.0:
1024 | resolution: {integrity: sha512-zJfpXq44yff2hmE0XmwEOzdWin5xwH+QIhMLOScpX91e/NSGPsAzNCvLQDIEPyO2TXi+lBmU6hjLIhV8MwP2kw==}
1025 |
1026 | hast-util-from-html@2.0.3:
1027 | resolution: {integrity: sha512-CUSRHXyKjzHov8yKsQjGOElXy/3EKpyX56ELnkHH34vDVw1N1XSQ1ZcAvTyAPtGqLTuKP/uxM+aLkSPqF/EtMw==}
1028 |
1029 | hast-util-from-parse5@8.0.2:
1030 | resolution: {integrity: sha512-SfMzfdAi/zAoZ1KkFEyyeXBn7u/ShQrfd675ZEE9M3qj+PMFX05xubzRyF76CCSJu8au9jgVxDV1+okFvgZU4A==}
1031 |
1032 | hast-util-is-element@3.0.0:
1033 | resolution: {integrity: sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g==}
1034 |
1035 | hast-util-parse-selector@4.0.0:
1036 | resolution: {integrity: sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==}
1037 |
1038 | hast-util-raw@9.1.0:
1039 | resolution: {integrity: sha512-Y8/SBAHkZGoNkpzqqfCldijcuUKh7/su31kEBp67cFY09Wy0mTRgtsLYsiIxMJxlu0f6AA5SUTbDR8K0rxnbUw==}
1040 |
1041 | hast-util-to-estree@3.1.1:
1042 | resolution: {integrity: sha512-IWtwwmPskfSmma9RpzCappDUitC8t5jhAynHhc1m2+5trOgsrp7txscUSavc5Ic8PATyAjfrCK1wgtxh2cICVQ==}
1043 |
1044 | hast-util-to-html@9.0.4:
1045 | resolution: {integrity: sha512-wxQzXtdbhiwGAUKrnQJXlOPmHnEehzphwkK7aluUPQ+lEc1xefC8pblMgpp2w5ldBTEfveRIrADcrhGIWrlTDA==}
1046 |
1047 | hast-util-to-jsx-runtime@2.3.2:
1048 | resolution: {integrity: sha512-1ngXYb+V9UT5h+PxNRa1O1FYguZK/XL+gkeqvp7EdHlB9oHUG0eYRo/vY5inBdcqo3RkPMC58/H94HvkbfGdyg==}
1049 |
1050 | hast-util-to-parse5@8.0.0:
1051 | resolution: {integrity: sha512-3KKrV5ZVI8if87DVSi1vDeByYrkGzg4mEfeu4alwgmmIeARiBLKCZS2uw5Gb6nU9x9Yufyj3iudm6i7nl52PFw==}
1052 |
1053 | hast-util-to-string@3.0.1:
1054 | resolution: {integrity: sha512-XelQVTDWvqcl3axRfI0xSeoVKzyIFPwsAGSLIsKdJKQMXDYJS4WYrBNF/8J7RdhIcFI2BOHgAifggsvsxp/3+A==}
1055 |
1056 | hast-util-to-text@4.0.2:
1057 | resolution: {integrity: sha512-KK6y/BN8lbaq654j7JgBydev7wuNMcID54lkRav1P0CaE1e47P72AWWPiGKXTJU271ooYzcvTAn/Zt0REnvc7A==}
1058 |
1059 | hast-util-whitespace@3.0.0:
1060 | resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==}
1061 |
1062 | hastscript@9.0.0:
1063 | resolution: {integrity: sha512-jzaLBGavEDKHrc5EfFImKN7nZKKBdSLIdGvCwDZ9TfzbF2ffXiov8CKE445L2Z1Ek2t/m4SKQ2j6Ipv7NyUolw==}
1064 |
1065 | html-void-elements@3.0.0:
1066 | resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==}
1067 |
1068 | human-signals@5.0.0:
1069 | resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==}
1070 | engines: {node: '>=16.17.0'}
1071 |
1072 | iconv-lite@0.6.3:
1073 | resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==}
1074 | engines: {node: '>=0.10.0'}
1075 |
1076 | inline-style-parser@0.2.4:
1077 | resolution: {integrity: sha512-0aO8FkhNZlj/ZIbNi7Lxxr12obT7cL1moPfE4tg1LkX7LlLfC6DeX4l2ZEud1ukP9jNQyNnfzQVqwbwmAATY4Q==}
1078 |
1079 | internmap@1.0.1:
1080 | resolution: {integrity: sha512-lDB5YccMydFBtasVtxnZ3MRBHuaoE8GKsppq+EchKL2U4nK/DmEpPHNH8MZe5HkMtpSiTSOZwfN0tzYjO/lJEw==}
1081 |
1082 | internmap@2.0.3:
1083 | resolution: {integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==}
1084 | engines: {node: '>=12'}
1085 |
1086 | is-alphabetical@2.0.1:
1087 | resolution: {integrity: sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==}
1088 |
1089 | is-alphanumerical@2.0.1:
1090 | resolution: {integrity: sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==}
1091 |
1092 | is-arrayish@0.3.2:
1093 | resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==}
1094 |
1095 | is-decimal@2.0.1:
1096 | resolution: {integrity: sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==}
1097 |
1098 | is-docker@3.0.0:
1099 | resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==}
1100 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
1101 | hasBin: true
1102 |
1103 | is-extendable@0.1.1:
1104 | resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==}
1105 | engines: {node: '>=0.10.0'}
1106 |
1107 | is-hexadecimal@2.0.1:
1108 | resolution: {integrity: sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==}
1109 |
1110 | is-inside-container@1.0.0:
1111 | resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==}
1112 | engines: {node: '>=14.16'}
1113 | hasBin: true
1114 |
1115 | is-plain-obj@3.0.0:
1116 | resolution: {integrity: sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==}
1117 | engines: {node: '>=10'}
1118 |
1119 | is-plain-obj@4.1.0:
1120 | resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==}
1121 | engines: {node: '>=12'}
1122 |
1123 | is-stream@3.0.0:
1124 | resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==}
1125 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
1126 |
1127 | is-wsl@3.1.0:
1128 | resolution: {integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==}
1129 | engines: {node: '>=16'}
1130 |
1131 | is64bit@2.0.0:
1132 | resolution: {integrity: sha512-jv+8jaWCl0g2lSBkNSVXdzfBA0npK1HGC2KtWM9FumFRoGS94g3NbCCLVnCYHLjp4GrW2KZeeSTMo5ddtznmGw==}
1133 | engines: {node: '>=18'}
1134 |
1135 | isexe@2.0.0:
1136 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
1137 |
1138 | js-tokens@4.0.0:
1139 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
1140 |
1141 | js-yaml@3.14.1:
1142 | resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==}
1143 | hasBin: true
1144 |
1145 | katex@0.16.11:
1146 | resolution: {integrity: sha512-RQrI8rlHY92OLf3rho/Ts8i/XvjgguEjOkO1BEXcU3N8BqPpSzBNwV/G0Ukr+P/l3ivvJUE/Fa/CwbS6HesGNQ==}
1147 | hasBin: true
1148 |
1149 | khroma@2.1.0:
1150 | resolution: {integrity: sha512-Ls993zuzfayK269Svk9hzpeGUKob/sIgZzyHYdjQoAdQetRKpOLj+k/QQQ/6Qi0Yz65mlROrfd+Ev+1+7dz9Kw==}
1151 |
1152 | kind-of@6.0.3:
1153 | resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==}
1154 | engines: {node: '>=0.10.0'}
1155 |
1156 | kolorist@1.8.0:
1157 | resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==}
1158 |
1159 | langium@3.0.0:
1160 | resolution: {integrity: sha512-+Ez9EoiByeoTu/2BXmEaZ06iPNXM6thWJp02KfBO/raSMyCJ4jw7AkWWa+zBCTm0+Tw1Fj9FOxdqSskyN5nAwg==}
1161 | engines: {node: '>=16.0.0'}
1162 |
1163 | layout-base@1.0.2:
1164 | resolution: {integrity: sha512-8h2oVEZNktL4BH2JCOI90iD1yXwL6iNW7KcCKT2QZgQJR2vbqDsldCTPRU9NifTCqHZci57XvQQ15YTu+sTYPg==}
1165 |
1166 | layout-base@2.0.1:
1167 | resolution: {integrity: sha512-dp3s92+uNI1hWIpPGH3jK2kxE2lMjdXdr+DH8ynZHpd6PUlH6x6cbuXnoMmiNumznqaNO31xu9e79F0uuZ0JFg==}
1168 |
1169 | local-pkg@0.5.1:
1170 | resolution: {integrity: sha512-9rrA30MRRP3gBD3HTGnC6cDFpaE1kVDWxWgqWJUN0RvDNAo+Nz/9GxB+nHOH0ifbVFy0hSA1V6vFDvnx54lTEQ==}
1171 | engines: {node: '>=14'}
1172 |
1173 | lodash-es@4.17.21:
1174 | resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==}
1175 |
1176 | longest-streak@3.1.0:
1177 | resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==}
1178 |
1179 | loose-envify@1.4.0:
1180 | resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
1181 | hasBin: true
1182 |
1183 | markdown-extensions@2.0.0:
1184 | resolution: {integrity: sha512-o5vL7aDWatOTX8LzaS1WMoaoxIiLRQJuIKKe2wAw6IeULDHaqbiqiggmx+pKvZDb1Sj+pE46Sn1T7lCqfFtg1Q==}
1185 | engines: {node: '>=16'}
1186 |
1187 | markdown-table@3.0.3:
1188 | resolution: {integrity: sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw==}
1189 |
1190 | marked@13.0.3:
1191 | resolution: {integrity: sha512-rqRix3/TWzE9rIoFGIn8JmsVfhiuC8VIQ8IdX5TfzmeBucdY05/0UlzKaw0eVtpcN/OdVFpBk7CjKGo9iHJ/zA==}
1192 | engines: {node: '>= 18'}
1193 | hasBin: true
1194 |
1195 | mathjax-full@3.2.2:
1196 | resolution: {integrity: sha512-+LfG9Fik+OuI8SLwsiR02IVdjcnRCy5MufYLi0C3TdMT56L/pjB0alMVGgoWJF8pN9Rc7FESycZB9BMNWIid5w==}
1197 |
1198 | mdast-util-find-and-replace@3.0.2:
1199 | resolution: {integrity: sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==}
1200 |
1201 | mdast-util-from-markdown@2.0.2:
1202 | resolution: {integrity: sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==}
1203 |
1204 | mdast-util-frontmatter@2.0.1:
1205 | resolution: {integrity: sha512-LRqI9+wdgC25P0URIJY9vwocIzCcksduHQ9OF2joxQoyTNVduwLAFUzjoopuRJbJAReaKrNQKAZKL3uCMugWJA==}
1206 |
1207 | mdast-util-gfm-autolink-literal@2.0.1:
1208 | resolution: {integrity: sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==}
1209 |
1210 | mdast-util-gfm-footnote@2.0.0:
1211 | resolution: {integrity: sha512-5jOT2boTSVkMnQ7LTrd6n/18kqwjmuYqo7JUPe+tRCY6O7dAuTFMtTPauYYrMPpox9hlN0uOx/FL8XvEfG9/mQ==}
1212 |
1213 | mdast-util-gfm-strikethrough@2.0.0:
1214 | resolution: {integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==}
1215 |
1216 | mdast-util-gfm-table@2.0.0:
1217 | resolution: {integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==}
1218 |
1219 | mdast-util-gfm-task-list-item@2.0.0:
1220 | resolution: {integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==}
1221 |
1222 | mdast-util-gfm@3.0.0:
1223 | resolution: {integrity: sha512-dgQEX5Amaq+DuUqf26jJqSK9qgixgd6rYDHAv4aTBuA92cTknZlKpPfa86Z/s8Dj8xsAQpFfBmPUHWJBWqS4Bw==}
1224 |
1225 | mdast-util-math@3.0.0:
1226 | resolution: {integrity: sha512-Tl9GBNeG/AhJnQM221bJR2HPvLOSnLE/T9cJI9tlc6zwQk2nPk/4f0cHkOdEixQPC/j8UtKDdITswvLAy1OZ1w==}
1227 |
1228 | mdast-util-mdx-expression@2.0.1:
1229 | resolution: {integrity: sha512-J6f+9hUp+ldTZqKRSg7Vw5V6MqjATc+3E4gf3CFNcuZNWD8XdyI6zQ8GqH7f8169MM6P7hMBRDVGnn7oHB9kXQ==}
1230 |
1231 | mdast-util-mdx-jsx@3.1.3:
1232 | resolution: {integrity: sha512-bfOjvNt+1AcbPLTFMFWY149nJz0OjmewJs3LQQ5pIyVGxP4CdOqNVJL6kTaM5c68p8q82Xv3nCyFfUnuEcH3UQ==}
1233 |
1234 | mdast-util-mdx@3.0.0:
1235 | resolution: {integrity: sha512-JfbYLAW7XnYTTbUsmpu0kdBUVe+yKVJZBItEjwyYJiDJuZ9w4eeaqks4HQO+R7objWgS2ymV60GYpI14Ug554w==}
1236 |
1237 | mdast-util-mdxjs-esm@2.0.1:
1238 | resolution: {integrity: sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==}
1239 |
1240 | mdast-util-phrasing@4.1.0:
1241 | resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==}
1242 |
1243 | mdast-util-to-hast@13.2.0:
1244 | resolution: {integrity: sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==}
1245 |
1246 | mdast-util-to-markdown@2.1.2:
1247 | resolution: {integrity: sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==}
1248 |
1249 | mdast-util-to-string@4.0.0:
1250 | resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==}
1251 |
1252 | merge-stream@2.0.0:
1253 | resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
1254 |
1255 | mermaid@11.4.1:
1256 | resolution: {integrity: sha512-Mb01JT/x6CKDWaxigwfZYuYmDZ6xtrNwNlidKZwkSrDaY9n90tdrJTV5Umk+wP1fZscGptmKFXHsXMDEVZ+Q6A==}
1257 |
1258 | mhchemparser@4.2.1:
1259 | resolution: {integrity: sha512-kYmyrCirqJf3zZ9t/0wGgRZ4/ZJw//VwaRVGA75C4nhE60vtnIzhl9J9ndkX/h6hxSN7pjg/cE0VxbnNM+bnDQ==}
1260 |
1261 | micromark-core-commonmark@2.0.2:
1262 | resolution: {integrity: sha512-FKjQKbxd1cibWMM1P9N+H8TwlgGgSkWZMmfuVucLCHaYqeSvJ0hFeHsIa65pA2nYbes0f8LDHPMrd9X7Ujxg9w==}
1263 |
1264 | micromark-extension-frontmatter@2.0.0:
1265 | resolution: {integrity: sha512-C4AkuM3dA58cgZha7zVnuVxBhDsbttIMiytjgsM2XbHAB2faRVaHRle40558FBN+DJcrLNCoqG5mlrpdU4cRtg==}
1266 |
1267 | micromark-extension-gfm-autolink-literal@2.1.0:
1268 | resolution: {integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==}
1269 |
1270 | micromark-extension-gfm-footnote@2.1.0:
1271 | resolution: {integrity: sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==}
1272 |
1273 | micromark-extension-gfm-strikethrough@2.1.0:
1274 | resolution: {integrity: sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==}
1275 |
1276 | micromark-extension-gfm-table@2.1.0:
1277 | resolution: {integrity: sha512-Ub2ncQv+fwD70/l4ou27b4YzfNaCJOvyX4HxXU15m7mpYY+rjuWzsLIPZHJL253Z643RpbcP1oeIJlQ/SKW67g==}
1278 |
1279 | micromark-extension-gfm-tagfilter@2.0.0:
1280 | resolution: {integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==}
1281 |
1282 | micromark-extension-gfm-task-list-item@2.1.0:
1283 | resolution: {integrity: sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==}
1284 |
1285 | micromark-extension-gfm@3.0.0:
1286 | resolution: {integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==}
1287 |
1288 | micromark-extension-math@3.1.0:
1289 | resolution: {integrity: sha512-lvEqd+fHjATVs+2v/8kg9i5Q0AP2k85H0WUOwpIVvUML8BapsMvh1XAogmQjOCsLpoKRCVQqEkQBB3NhVBcsOg==}
1290 |
1291 | micromark-extension-mdx-expression@3.0.0:
1292 | resolution: {integrity: sha512-sI0nwhUDz97xyzqJAbHQhp5TfaxEvZZZ2JDqUo+7NvyIYG6BZ5CPPqj2ogUoPJlmXHBnyZUzISg9+oUmU6tUjQ==}
1293 |
1294 | micromark-extension-mdx-jsx@3.0.1:
1295 | resolution: {integrity: sha512-vNuFb9czP8QCtAQcEJn0UJQJZA8Dk6DXKBqx+bg/w0WGuSxDxNr7hErW89tHUY31dUW4NqEOWwmEUNhjTFmHkg==}
1296 |
1297 | micromark-extension-mdx-md@2.0.0:
1298 | resolution: {integrity: sha512-EpAiszsB3blw4Rpba7xTOUptcFeBFi+6PY8VnJ2hhimH+vCQDirWgsMpz7w1XcZE7LVrSAUGb9VJpG9ghlYvYQ==}
1299 |
1300 | micromark-extension-mdxjs-esm@3.0.0:
1301 | resolution: {integrity: sha512-DJFl4ZqkErRpq/dAPyeWp15tGrcrrJho1hKK5uBS70BCtfrIFg81sqcTVu3Ta+KD1Tk5vAtBNElWxtAa+m8K9A==}
1302 |
1303 | micromark-extension-mdxjs@3.0.0:
1304 | resolution: {integrity: sha512-A873fJfhnJ2siZyUrJ31l34Uqwy4xIFmvPY1oj+Ean5PHcPBYzEsvqvWGaWcfEIr11O5Dlw3p2y0tZWpKHDejQ==}
1305 |
1306 | micromark-factory-destination@2.0.1:
1307 | resolution: {integrity: sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==}
1308 |
1309 | micromark-factory-label@2.0.1:
1310 | resolution: {integrity: sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==}
1311 |
1312 | micromark-factory-mdx-expression@2.0.2:
1313 | resolution: {integrity: sha512-5E5I2pFzJyg2CtemqAbcyCktpHXuJbABnsb32wX2U8IQKhhVFBqkcZR5LRm1WVoFqa4kTueZK4abep7wdo9nrw==}
1314 |
1315 | micromark-factory-space@2.0.1:
1316 | resolution: {integrity: sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==}
1317 |
1318 | micromark-factory-title@2.0.1:
1319 | resolution: {integrity: sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==}
1320 |
1321 | micromark-factory-whitespace@2.0.1:
1322 | resolution: {integrity: sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==}
1323 |
1324 | micromark-util-character@2.1.1:
1325 | resolution: {integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==}
1326 |
1327 | micromark-util-chunked@2.0.1:
1328 | resolution: {integrity: sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==}
1329 |
1330 | micromark-util-classify-character@2.0.1:
1331 | resolution: {integrity: sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==}
1332 |
1333 | micromark-util-combine-extensions@2.0.1:
1334 | resolution: {integrity: sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==}
1335 |
1336 | micromark-util-decode-numeric-character-reference@2.0.2:
1337 | resolution: {integrity: sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==}
1338 |
1339 | micromark-util-decode-string@2.0.1:
1340 | resolution: {integrity: sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==}
1341 |
1342 | micromark-util-encode@2.0.1:
1343 | resolution: {integrity: sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==}
1344 |
1345 | micromark-util-events-to-acorn@2.0.2:
1346 | resolution: {integrity: sha512-Fk+xmBrOv9QZnEDguL9OI9/NQQp6Hz4FuQ4YmCb/5V7+9eAh1s6AYSvL20kHkD67YIg7EpE54TiSlcsf3vyZgA==}
1347 |
1348 | micromark-util-html-tag-name@2.0.1:
1349 | resolution: {integrity: sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==}
1350 |
1351 | micromark-util-normalize-identifier@2.0.1:
1352 | resolution: {integrity: sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==}
1353 |
1354 | micromark-util-resolve-all@2.0.1:
1355 | resolution: {integrity: sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==}
1356 |
1357 | micromark-util-sanitize-uri@2.0.1:
1358 | resolution: {integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==}
1359 |
1360 | micromark-util-subtokenize@2.0.3:
1361 | resolution: {integrity: sha512-VXJJuNxYWSoYL6AJ6OQECCFGhIU2GGHMw8tahogePBrjkG8aCCas3ibkp7RnVOSTClg2is05/R7maAhF1XyQMg==}
1362 |
1363 | micromark-util-symbol@2.0.1:
1364 | resolution: {integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==}
1365 |
1366 | micromark-util-types@2.0.1:
1367 | resolution: {integrity: sha512-534m2WhVTddrcKVepwmVEVnUAmtrx9bfIjNoQHRqfnvdaHQiFytEhJoTgpWJvDEXCO5gLTQh3wYC1PgOJA4NSQ==}
1368 |
1369 | micromark@4.0.1:
1370 | resolution: {integrity: sha512-eBPdkcoCNvYcxQOAKAlceo5SNdzZWfF+FcSupREAzdAh9rRmE239CEQAiTwIgblwnoM8zzj35sZ5ZwvSEOF6Kw==}
1371 |
1372 | mimic-fn@4.0.0:
1373 | resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==}
1374 | engines: {node: '>=12'}
1375 |
1376 | mj-context-menu@0.6.1:
1377 | resolution: {integrity: sha512-7NO5s6n10TIV96d4g2uDpG7ZDpIhMh0QNfGdJw/W47JswFcosz457wqz/b5sAKvl12sxINGFCn80NZHKwxQEXA==}
1378 |
1379 | mlly@1.7.3:
1380 | resolution: {integrity: sha512-xUsx5n/mN0uQf4V548PKQ+YShA4/IW0KI1dZhrNrPCLG+xizETbHTkOa1f8/xut9JRPp8kQuMnz0oqwkTiLo/A==}
1381 |
1382 | ms@2.1.2:
1383 | resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
1384 |
1385 | ms@2.1.3:
1386 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
1387 |
1388 | nanoid@3.3.8:
1389 | resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==}
1390 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
1391 | hasBin: true
1392 |
1393 | negotiator@1.0.0:
1394 | resolution: {integrity: sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==}
1395 | engines: {node: '>= 0.6'}
1396 |
1397 | next-themes@0.4.4:
1398 | resolution: {integrity: sha512-LDQ2qIOJF0VnuVrrMSMLrWGjRMkq+0mpgl6e0juCLqdJ+oo8Q84JRWT6Wh11VDQKkMMe+dVzDKLWs5n87T+PkQ==}
1399 | peerDependencies:
1400 | react: ^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc
1401 | react-dom: ^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc
1402 |
1403 | next@15.1.3:
1404 | resolution: {integrity: sha512-5igmb8N8AEhWDYzogcJvtcRDU6n4cMGtBklxKD4biYv4LXN8+awc/bbQ2IM2NQHdVPgJ6XumYXfo3hBtErg1DA==}
1405 | engines: {node: ^18.18.0 || ^19.8.0 || >= 20.0.0}
1406 | hasBin: true
1407 | peerDependencies:
1408 | '@opentelemetry/api': ^1.1.0
1409 | '@playwright/test': ^1.41.2
1410 | babel-plugin-react-compiler: '*'
1411 | react: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0
1412 | react-dom: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0
1413 | sass: ^1.3.0
1414 | peerDependenciesMeta:
1415 | '@opentelemetry/api':
1416 | optional: true
1417 | '@playwright/test':
1418 | optional: true
1419 | babel-plugin-react-compiler:
1420 | optional: true
1421 | sass:
1422 | optional: true
1423 |
1424 | nextra-theme-docs@3.3.1:
1425 | resolution: {integrity: sha512-P305m2UcW2IDyQhjrcAu0qpdPArikofinABslUCAyixYShsmcdDRUhIMd4QBHYru4gQuVjGWX9PhWZZCbNvzDQ==}
1426 | peerDependencies:
1427 | next: '>=13'
1428 | nextra: 3.3.1
1429 | react: '>=18'
1430 | react-dom: '>=18'
1431 |
1432 | nextra@3.3.1:
1433 | resolution: {integrity: sha512-jiwj+LfUPHHeAxJAEqFuglxnbjFgzAOnDWFsjv7iv3BWiX8OksDwd3I2Sv3j2zba00iIBDEPdNeylfzTtTLZVg==}
1434 | engines: {node: '>=18'}
1435 | peerDependencies:
1436 | next: '>=13'
1437 | react: '>=18'
1438 | react-dom: '>=18'
1439 |
1440 | nlcst-to-string@4.0.0:
1441 | resolution: {integrity: sha512-YKLBCcUYKAg0FNlOBT6aI91qFmSiFKiluk655WzPF+DDMA02qIyy8uiRqI8QXtcFpEvll12LpL5MXqEmAZ+dcA==}
1442 |
1443 | node-bin-setup@1.1.3:
1444 | resolution: {integrity: sha512-opgw9iSCAzT2+6wJOETCpeRYAQxSopqQ2z+N6BXwIMsQQ7Zj5M8MaafQY8JMlolRR6R1UXg2WmhKp0p9lSOivg==}
1445 |
1446 | node@23.5.0:
1447 | resolution: {integrity: sha512-Wco8qYfFUAotVJJoMbB30cYdPbTqFd9QtzC528GvTCYWMldnPUu1pLNz4sKNKxal+dgBuAyUu8tRkeLVx1VT8Q==}
1448 | engines: {npm: '>=5.0.0'}
1449 | hasBin: true
1450 |
1451 | npm-run-path@5.3.0:
1452 | resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==}
1453 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
1454 |
1455 | npm-to-yarn@3.0.1:
1456 | resolution: {integrity: sha512-tt6PvKu4WyzPwWUzy/hvPFqn+uwXO0K1ZHka8az3NnrhWJDmSqI8ncWq0fkL0k/lmmi5tAC11FXwXuh0rFbt1A==}
1457 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1458 |
1459 | onetime@6.0.0:
1460 | resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==}
1461 | engines: {node: '>=12'}
1462 |
1463 | oniguruma-to-es@0.10.0:
1464 | resolution: {integrity: sha512-zapyOUOCJxt+xhiNRPPMtfJkHGsZ98HHB9qJEkdT8BGytO/+kpe4m1Ngf0MzbzTmhacn11w9yGeDP6tzDhnCdg==}
1465 |
1466 | p-limit@6.2.0:
1467 | resolution: {integrity: sha512-kuUqqHNUqoIWp/c467RI4X6mmyuojY5jGutNU0wVTmEOOfcuwLqyMVoAi9MKi2Ak+5i9+nhmrK4ufZE8069kHA==}
1468 | engines: {node: '>=18'}
1469 |
1470 | package-manager-detector@0.2.8:
1471 | resolution: {integrity: sha512-ts9KSdroZisdvKMWVAVCXiKqnqNfXz4+IbrBG8/BWx/TR5le+jfenvoBuIZ6UWM9nz47W7AbD9qYfAwfWMIwzA==}
1472 |
1473 | parse-entities@4.0.1:
1474 | resolution: {integrity: sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==}
1475 |
1476 | parse-latin@7.0.0:
1477 | resolution: {integrity: sha512-mhHgobPPua5kZ98EF4HWiH167JWBfl4pvAIXXdbaVohtK7a6YBOy56kvhCqduqyo/f3yrHFWmqmiMg/BkBkYYQ==}
1478 |
1479 | parse-numeric-range@1.3.0:
1480 | resolution: {integrity: sha512-twN+njEipszzlMJd4ONUYgSfZPDxgHhT9Ahed5uTigpQn90FggW4SA/AIPq/6a149fTbE9qBEcSwE3FAEp6wQQ==}
1481 |
1482 | parse5@7.1.2:
1483 | resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==}
1484 |
1485 | path-data-parser@0.1.0:
1486 | resolution: {integrity: sha512-NOnmBpt5Y2RWbuv0LMzsayp3lVylAHLPUTut412ZA3l+C4uw4ZVkQbjShYCQ8TCpUMdPapr4YjUqLYD6v68j+w==}
1487 |
1488 | path-key@3.1.1:
1489 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
1490 | engines: {node: '>=8'}
1491 |
1492 | path-key@4.0.0:
1493 | resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==}
1494 | engines: {node: '>=12'}
1495 |
1496 | pathe@1.1.2:
1497 | resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==}
1498 |
1499 | picocolors@1.0.0:
1500 | resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
1501 |
1502 | pkg-types@1.3.0:
1503 | resolution: {integrity: sha512-kS7yWjVFCkIw9hqdJBoMxDdzEngmkr5FXeWZZfQ6GoYacjVnsW6l2CcYW/0ThD0vF4LPJgVYnrg4d0uuhwYQbg==}
1504 |
1505 | points-on-curve@0.2.0:
1506 | resolution: {integrity: sha512-0mYKnYYe9ZcqMCWhUjItv/oHjvgEsfKvnUTg8sAtnHr3GVy7rGkXCb6d5cSyqrWqL4k81b9CPg3urd+T7aop3A==}
1507 |
1508 | points-on-path@0.2.1:
1509 | resolution: {integrity: sha512-25ClnWWuw7JbWZcgqY/gJ4FQWadKxGWk+3kR/7kD0tCaDtPPMj7oHu2ToLaVhfpnHrZzYby2w6tUA0eOIuUg8g==}
1510 |
1511 | postcss@8.4.31:
1512 | resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==}
1513 | engines: {node: ^10 || ^12 || >=14}
1514 |
1515 | property-information@6.5.0:
1516 | resolution: {integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==}
1517 |
1518 | react-dom@18.2.0:
1519 | resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==}
1520 | peerDependencies:
1521 | react: ^18.2.0
1522 |
1523 | react-medium-image-zoom@5.2.13:
1524 | resolution: {integrity: sha512-KcBL4OsoUQJgIFh6vQgt/6sRGqDy6bQBcsbhGD2tsy4B5Pw3dWrboocVOyIm76RRALEZ6Qwp3EDvIvfEv0m5sg==}
1525 | peerDependencies:
1526 | react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
1527 | react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
1528 |
1529 | react@18.2.0:
1530 | resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==}
1531 | engines: {node: '>=0.10.0'}
1532 |
1533 | reading-time@1.5.0:
1534 | resolution: {integrity: sha512-onYyVhBNr4CmAxFsKS7bz+uTLRakypIe4R+5A824vBSkQy/hB3fZepoVEf8OVAxzLvK+H/jm9TzpI3ETSm64Kg==}
1535 |
1536 | recma-build-jsx@1.0.0:
1537 | resolution: {integrity: sha512-8GtdyqaBcDfva+GUKDr3nev3VpKAhup1+RvkMvUxURHpW7QyIvk9F5wz7Vzo06CEMSilw6uArgRqhpiUcWp8ew==}
1538 |
1539 | recma-jsx@1.0.0:
1540 | resolution: {integrity: sha512-5vwkv65qWwYxg+Atz95acp8DMu1JDSqdGkA2Of1j6rCreyFUE/gp15fC8MnGEuG1W68UKjM6x6+YTWIh7hZM/Q==}
1541 |
1542 | recma-parse@1.0.0:
1543 | resolution: {integrity: sha512-OYLsIGBB5Y5wjnSnQW6t3Xg7q3fQ7FWbw/vcXtORTnyaSFscOtABg+7Pnz6YZ6c27fG1/aN8CjfwoUEUIdwqWQ==}
1544 |
1545 | recma-stringify@1.0.0:
1546 | resolution: {integrity: sha512-cjwII1MdIIVloKvC9ErQ+OgAtwHBmcZ0Bg4ciz78FtbT8In39aAYbaA7zvxQ61xVMSPE8WxhLwLbhif4Js2C+g==}
1547 |
1548 | regex-recursion@5.1.1:
1549 | resolution: {integrity: sha512-ae7SBCbzVNrIjgSbh7wMznPcQel1DNlDtzensnFxpiNpXt1U2ju/bHugH422r+4LAVS1FpW1YCwilmnNsjum9w==}
1550 |
1551 | regex-utilities@2.3.0:
1552 | resolution: {integrity: sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==}
1553 |
1554 | regex@5.1.1:
1555 | resolution: {integrity: sha512-dN5I359AVGPnwzJm2jN1k0W9LPZ+ePvoOeVMMfqIMFz53sSwXkxaJoxr50ptnsC771lK95BnTrVSZxq0b9yCGw==}
1556 |
1557 | rehype-katex@7.0.1:
1558 | resolution: {integrity: sha512-OiM2wrZ/wuhKkigASodFoo8wimG3H12LWQaH8qSPVJn9apWKFSH3YOCtbKpBorTVw/eI7cuT21XBbvwEswbIOA==}
1559 |
1560 | rehype-parse@9.0.1:
1561 | resolution: {integrity: sha512-ksCzCD0Fgfh7trPDxr2rSylbwq9iYDkSn8TCDmEJ49ljEUBxDVCzCHv7QNzZOfODanX4+bWQ4WZqLCRWYLfhag==}
1562 |
1563 | rehype-pretty-code@0.14.0:
1564 | resolution: {integrity: sha512-hBeKF/Wkkf3zyUS8lal9RCUuhypDWLQc+h9UrP9Pav25FUm/AQAVh4m5gdvJxh4Oz+U+xKvdsV01p1LdvsZTiQ==}
1565 | engines: {node: '>=18'}
1566 | peerDependencies:
1567 | shiki: ^1.3.0
1568 |
1569 | rehype-raw@7.0.0:
1570 | resolution: {integrity: sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==}
1571 |
1572 | rehype-recma@1.0.0:
1573 | resolution: {integrity: sha512-lqA4rGUf1JmacCNWWZx0Wv1dHqMwxzsDWYMTowuplHF3xH0N/MmrZ/G3BDZnzAkRmxDadujCjaKM2hqYdCBOGw==}
1574 |
1575 | remark-frontmatter@5.0.0:
1576 | resolution: {integrity: sha512-XTFYvNASMe5iPN0719nPrdItC9aU0ssC4v14mH1BCi1u0n1gAocqcujWUrByftZTbLhRtiKRyjYTSIOcr69UVQ==}
1577 |
1578 | remark-gfm@4.0.0:
1579 | resolution: {integrity: sha512-U92vJgBPkbw4Zfu/IiW2oTZLSL3Zpv+uI7My2eq8JxKgqraFdU8YUGicEJCEgSbeaG+QDFqIcwwfMTOEelPxuA==}
1580 |
1581 | remark-math@6.0.0:
1582 | resolution: {integrity: sha512-MMqgnP74Igy+S3WwnhQ7kqGlEerTETXMvJhrUzDikVZ2/uogJCb+WHUg97hK9/jcfc0dkD73s3LN8zU49cTEtA==}
1583 |
1584 | remark-mdx@3.1.0:
1585 | resolution: {integrity: sha512-Ngl/H3YXyBV9RcRNdlYsZujAmhsxwzxpDzpDEhFBVAGthS4GDgnctpDjgFl/ULx5UEDzqtW1cyBSNKqYYrqLBA==}
1586 |
1587 | remark-parse@11.0.0:
1588 | resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==}
1589 |
1590 | remark-reading-time@2.0.1:
1591 | resolution: {integrity: sha512-fy4BKy9SRhtYbEHvp6AItbRTnrhiDGbqLQTSYVbQPGuRCncU1ubSsh9p/W5QZSxtYcUXv8KGL0xBgPLyNJA1xw==}
1592 |
1593 | remark-rehype@11.1.1:
1594 | resolution: {integrity: sha512-g/osARvjkBXb6Wo0XvAeXQohVta8i84ACbenPpoSsxTOQH/Ae0/RGP4WZgnMH5pMLpsj4FG7OHmcIcXxpza8eQ==}
1595 |
1596 | remark-smartypants@3.0.2:
1597 | resolution: {integrity: sha512-ILTWeOriIluwEvPjv67v7Blgrcx+LZOkAUVtKI3putuhlZm84FnqDORNXPPm+HY3NdZOMhyDwZ1E+eZB/Df5dA==}
1598 | engines: {node: '>=16.0.0'}
1599 |
1600 | remark-stringify@11.0.0:
1601 | resolution: {integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==}
1602 |
1603 | retext-latin@4.0.0:
1604 | resolution: {integrity: sha512-hv9woG7Fy0M9IlRQloq/N6atV82NxLGveq+3H2WOi79dtIYWN8OaxogDm77f8YnVXJL2VD3bbqowu5E3EMhBYA==}
1605 |
1606 | retext-smartypants@6.2.0:
1607 | resolution: {integrity: sha512-kk0jOU7+zGv//kfjXEBjdIryL1Acl4i9XNkHxtM7Tm5lFiCog576fjNC9hjoR7LTKQ0DsPWy09JummSsH1uqfQ==}
1608 |
1609 | retext-stringify@4.0.0:
1610 | resolution: {integrity: sha512-rtfN/0o8kL1e+78+uxPTqu1Klt0yPzKuQ2BfWwwfgIUSayyzxpM1PJzkKt4V8803uB9qSy32MvI7Xep9khTpiA==}
1611 |
1612 | retext@9.0.0:
1613 | resolution: {integrity: sha512-sbMDcpHCNjvlheSgMfEcVrZko3cDzdbe1x/e7G66dFp0Ff7Mldvi2uv6JkJQzdRcvLYE8CA8Oe8siQx8ZOgTcA==}
1614 |
1615 | robust-predicates@3.0.2:
1616 | resolution: {integrity: sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg==}
1617 |
1618 | roughjs@4.6.6:
1619 | resolution: {integrity: sha512-ZUz/69+SYpFN/g/lUlo2FXcIjRkSu3nDarreVdGGndHEBJ6cXPdKguS8JGxwj5HA5xIbVKSmLgr5b3AWxtRfvQ==}
1620 |
1621 | rw@1.3.3:
1622 | resolution: {integrity: sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==}
1623 |
1624 | safer-buffer@2.1.2:
1625 | resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
1626 |
1627 | scheduler@0.23.0:
1628 | resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==}
1629 |
1630 | scroll-into-view-if-needed@3.1.0:
1631 | resolution: {integrity: sha512-49oNpRjWRvnU8NyGVmUaYG4jtTkNonFZI86MmGRDqBphEK2EXT9gdEUoQPZhuBM8yWHxCWbobltqYO5M4XrUvQ==}
1632 |
1633 | section-matter@1.0.0:
1634 | resolution: {integrity: sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==}
1635 | engines: {node: '>=4'}
1636 |
1637 | semver@7.6.3:
1638 | resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==}
1639 | engines: {node: '>=10'}
1640 | hasBin: true
1641 |
1642 | sharp@0.33.5:
1643 | resolution: {integrity: sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==}
1644 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
1645 |
1646 | shebang-command@2.0.0:
1647 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
1648 | engines: {node: '>=8'}
1649 |
1650 | shebang-regex@3.0.0:
1651 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
1652 | engines: {node: '>=8'}
1653 |
1654 | shiki@1.26.1:
1655 | resolution: {integrity: sha512-Gqg6DSTk3wYqaZ5OaYtzjcdxcBvX5kCy24yvRJEgjT5U+WHlmqCThLuBUx0juyxQBi+6ug53IGeuQS07DWwpcw==}
1656 |
1657 | signal-exit@4.1.0:
1658 | resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
1659 | engines: {node: '>=14'}
1660 |
1661 | simple-swizzle@0.2.2:
1662 | resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==}
1663 |
1664 | slash@5.1.0:
1665 | resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==}
1666 | engines: {node: '>=14.16'}
1667 |
1668 | source-map-js@1.0.2:
1669 | resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==}
1670 | engines: {node: '>=0.10.0'}
1671 |
1672 | source-map@0.7.4:
1673 | resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==}
1674 | engines: {node: '>= 8'}
1675 |
1676 | space-separated-tokens@2.0.2:
1677 | resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==}
1678 |
1679 | speech-rule-engine@4.0.7:
1680 | resolution: {integrity: sha512-sJrL3/wHzNwJRLBdf6CjJWIlxC04iYKkyXvYSVsWVOiC2DSkHmxsqOhEeMsBA9XK+CHuNcsdkbFDnoUfAsmp9g==}
1681 | hasBin: true
1682 |
1683 | sprintf-js@1.0.3:
1684 | resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
1685 |
1686 | streamsearch@1.1.0:
1687 | resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==}
1688 | engines: {node: '>=10.0.0'}
1689 |
1690 | stringify-entities@4.0.4:
1691 | resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==}
1692 |
1693 | strip-bom-string@1.0.0:
1694 | resolution: {integrity: sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==}
1695 | engines: {node: '>=0.10.0'}
1696 |
1697 | strip-final-newline@3.0.0:
1698 | resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==}
1699 | engines: {node: '>=12'}
1700 |
1701 | style-to-object@1.0.8:
1702 | resolution: {integrity: sha512-xT47I/Eo0rwJmaXC4oilDGDWLohVhR6o/xAQcPQN8q6QBuZVL8qMYL85kLmST5cPjAorwvqIA4qXTRQoYHaL6g==}
1703 |
1704 | styled-jsx@5.1.6:
1705 | resolution: {integrity: sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==}
1706 | engines: {node: '>= 12.0.0'}
1707 | peerDependencies:
1708 | '@babel/core': '*'
1709 | babel-plugin-macros: '*'
1710 | react: '>= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0'
1711 | peerDependenciesMeta:
1712 | '@babel/core':
1713 | optional: true
1714 | babel-plugin-macros:
1715 | optional: true
1716 |
1717 | stylis@4.3.4:
1718 | resolution: {integrity: sha512-osIBl6BGUmSfDkyH2mB7EFvCJntXDrLhKjHTRj/rK6xLH0yuPrHULDRQzKokSOD4VoorhtKpfcfW1GAntu8now==}
1719 |
1720 | system-architecture@0.1.0:
1721 | resolution: {integrity: sha512-ulAk51I9UVUyJgxlv9M6lFot2WP3e7t8Kz9+IS6D4rVba1tR9kON+Ey69f+1R4Q8cd45Lod6a4IcJIxnzGc/zA==}
1722 | engines: {node: '>=18'}
1723 |
1724 | tabbable@6.2.0:
1725 | resolution: {integrity: sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==}
1726 |
1727 | tinyexec@0.3.2:
1728 | resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==}
1729 |
1730 | title@4.0.1:
1731 | resolution: {integrity: sha512-xRnPkJx9nvE5MF6LkB5e8QJjE2FW8269wTu/LQdf7zZqBgPly0QJPf/CWAo7srj5so4yXfoLEdCFgurlpi47zg==}
1732 | hasBin: true
1733 |
1734 | trim-lines@3.0.1:
1735 | resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==}
1736 |
1737 | trough@2.1.0:
1738 | resolution: {integrity: sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g==}
1739 |
1740 | ts-dedent@2.2.0:
1741 | resolution: {integrity: sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==}
1742 | engines: {node: '>=6.10'}
1743 |
1744 | tslib@2.4.1:
1745 | resolution: {integrity: sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==}
1746 |
1747 | tslib@2.8.1:
1748 | resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
1749 |
1750 | twoslash-protocol@0.2.12:
1751 | resolution: {integrity: sha512-5qZLXVYfZ9ABdjqbvPc4RWMr7PrpPaaDSeaYY55vl/w1j6H6kzsWK/urAEIXlzYlyrFmyz1UbwIt+AA0ck+wbg==}
1752 |
1753 | twoslash@0.2.12:
1754 | resolution: {integrity: sha512-tEHPASMqi7kqwfJbkk7hc/4EhlrKCSLcur+TcvYki3vhIfaRMXnXjaYFgXpoZRbT6GdprD4tGuVBEmTpUgLBsw==}
1755 | peerDependencies:
1756 | typescript: '*'
1757 |
1758 | typescript@4.9.3:
1759 | resolution: {integrity: sha512-CIfGzTelbKNEnLpLdGFgdyKhG23CKdKgQPOBc+OUNrkJ2vr+KSzsSV5kq5iWhEQbok+quxgGzrAtGWCyU7tHnA==}
1760 | engines: {node: '>=4.2.0'}
1761 | hasBin: true
1762 |
1763 | ufo@1.5.4:
1764 | resolution: {integrity: sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==}
1765 |
1766 | unified@11.0.5:
1767 | resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==}
1768 |
1769 | unist-util-find-after@5.0.0:
1770 | resolution: {integrity: sha512-amQa0Ep2m6hE2g72AugUItjbuM8X8cGQnFoHk0pGfrFeT9GZhzN5SW8nRsiGKK7Aif4CrACPENkA6P/Lw6fHGQ==}
1771 |
1772 | unist-util-is@5.2.1:
1773 | resolution: {integrity: sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==}
1774 |
1775 | unist-util-is@6.0.0:
1776 | resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==}
1777 |
1778 | unist-util-modify-children@4.0.0:
1779 | resolution: {integrity: sha512-+tdN5fGNddvsQdIzUF3Xx82CU9sMM+fA0dLgR9vOmT0oPT2jH+P1nd5lSqfCfXAw+93NhcXNY2qqvTUtE4cQkw==}
1780 |
1781 | unist-util-position-from-estree@2.0.0:
1782 | resolution: {integrity: sha512-KaFVRjoqLyF6YXCbVLNad/eS4+OfPQQn2yOd7zF/h5T/CSL2v8NpN6a5TPvtbXthAGw5nG+PuTtq+DdIZr+cRQ==}
1783 |
1784 | unist-util-position@5.0.0:
1785 | resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==}
1786 |
1787 | unist-util-remove-position@5.0.0:
1788 | resolution: {integrity: sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==}
1789 |
1790 | unist-util-remove@4.0.0:
1791 | resolution: {integrity: sha512-b4gokeGId57UVRX/eVKej5gXqGlc9+trkORhFJpu9raqZkZhU0zm8Doi05+HaiBsMEIJowL+2WtQ5ItjsngPXg==}
1792 |
1793 | unist-util-stringify-position@4.0.0:
1794 | resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==}
1795 |
1796 | unist-util-visit-children@3.0.0:
1797 | resolution: {integrity: sha512-RgmdTfSBOg04sdPcpTSD1jzoNBjt9a80/ZCzp5cI9n1qPzLZWF9YdvWGN2zmTumP1HWhXKdUWexjy/Wy/lJ7tA==}
1798 |
1799 | unist-util-visit-parents@4.1.1:
1800 | resolution: {integrity: sha512-1xAFJXAKpnnJl8G7K5KgU7FY55y3GcLIXqkzUj5QF/QVP7biUm0K0O2oqVkYsdjzJKifYeWn9+o6piAK2hGSHw==}
1801 |
1802 | unist-util-visit-parents@6.0.1:
1803 | resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==}
1804 |
1805 | unist-util-visit@3.1.0:
1806 | resolution: {integrity: sha512-Szoh+R/Ll68QWAyQyZZpQzZQm2UPbxibDvaY8Xc9SUtYgPsDzx5AWSk++UUt2hJuow8mvwR+rG+LQLw+KsuAKA==}
1807 |
1808 | unist-util-visit@5.0.0:
1809 | resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==}
1810 |
1811 | uuid@9.0.1:
1812 | resolution: {integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==}
1813 | hasBin: true
1814 |
1815 | vfile-location@5.0.3:
1816 | resolution: {integrity: sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==}
1817 |
1818 | vfile-message@4.0.2:
1819 | resolution: {integrity: sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==}
1820 |
1821 | vfile@6.0.3:
1822 | resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==}
1823 |
1824 | vscode-jsonrpc@8.2.0:
1825 | resolution: {integrity: sha512-C+r0eKJUIfiDIfwJhria30+TYWPtuHJXHtI7J0YlOmKAo7ogxP20T0zxB7HZQIFhIyvoBPwWskjxrvAtfjyZfA==}
1826 | engines: {node: '>=14.0.0'}
1827 |
1828 | vscode-languageserver-protocol@3.17.5:
1829 | resolution: {integrity: sha512-mb1bvRJN8SVznADSGWM9u/b07H7Ecg0I3OgXDuLdn307rl/J3A9YD6/eYOssqhecL27hK1IPZAsaqh00i/Jljg==}
1830 |
1831 | vscode-languageserver-textdocument@1.0.12:
1832 | resolution: {integrity: sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==}
1833 |
1834 | vscode-languageserver-types@3.17.5:
1835 | resolution: {integrity: sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==}
1836 |
1837 | vscode-languageserver@9.0.1:
1838 | resolution: {integrity: sha512-woByF3PDpkHFUreUa7Hos7+pUWdeWMXRd26+ZX2A8cFx6v/JPTtd4/uN0/jB6XQHYaOlHbio03NTHCqrgG5n7g==}
1839 | hasBin: true
1840 |
1841 | vscode-uri@3.0.8:
1842 | resolution: {integrity: sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==}
1843 |
1844 | web-namespaces@2.0.1:
1845 | resolution: {integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==}
1846 |
1847 | which@2.0.2:
1848 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
1849 | engines: {node: '>= 8'}
1850 | hasBin: true
1851 |
1852 | wicked-good-xpath@1.3.0:
1853 | resolution: {integrity: sha512-Gd9+TUn5nXdwj/hFsPVx5cuHHiF5Bwuc30jZ4+ronF1qHK5O7HD0sgmXWSEgwKquT3ClLoKPVbO6qGwVwLzvAw==}
1854 |
1855 | xmldom-sre@0.1.31:
1856 | resolution: {integrity: sha512-f9s+fUkX04BxQf+7mMWAp5zk61pciie+fFLC9hX9UVvCeJQfNHRHXpeo5MPcR0EUf57PYLdt+ZO4f3Ipk2oZUw==}
1857 | engines: {node: '>=0.1'}
1858 |
1859 | yaml@2.7.0:
1860 | resolution: {integrity: sha512-+hSoy/QHluxmC9kCIJyL/uyFmLmc+e5CFR5Wa+bpIhIj85LVb9ZH2nVnqrHoSvKogwODv0ClqZkmiSSaIH5LTA==}
1861 | engines: {node: '>= 14'}
1862 | hasBin: true
1863 |
1864 | yocto-queue@1.1.1:
1865 | resolution: {integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==}
1866 | engines: {node: '>=12.20'}
1867 |
1868 | zod-validation-error@3.4.0:
1869 | resolution: {integrity: sha512-ZOPR9SVY6Pb2qqO5XHt+MkkTRxGXb4EVtnjc9JpXUOtUB1T9Ru7mZOT361AN3MsetVe7R0a1KZshJDZdgp9miQ==}
1870 | engines: {node: '>=18.0.0'}
1871 | peerDependencies:
1872 | zod: ^3.18.0
1873 |
1874 | zod@3.24.1:
1875 | resolution: {integrity: sha512-muH7gBL9sI1nciMZV67X5fTKKBLtwpZ5VBp1vsOQzj1MhrBZ4wlVCm3gedKZWLp0Oyel8sIGfeiz54Su+OVT+A==}
1876 |
1877 | zwitch@2.0.4:
1878 | resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==}
1879 |
1880 | snapshots:
1881 |
1882 | '@antfu/install-pkg@0.4.1':
1883 | dependencies:
1884 | package-manager-detector: 0.2.8
1885 | tinyexec: 0.3.2
1886 |
1887 | '@antfu/utils@0.7.10': {}
1888 |
1889 | '@braintree/sanitize-url@7.1.1': {}
1890 |
1891 | '@chevrotain/cst-dts-gen@11.0.3':
1892 | dependencies:
1893 | '@chevrotain/gast': 11.0.3
1894 | '@chevrotain/types': 11.0.3
1895 | lodash-es: 4.17.21
1896 |
1897 | '@chevrotain/gast@11.0.3':
1898 | dependencies:
1899 | '@chevrotain/types': 11.0.3
1900 | lodash-es: 4.17.21
1901 |
1902 | '@chevrotain/regexp-to-ast@11.0.3': {}
1903 |
1904 | '@chevrotain/types@11.0.3': {}
1905 |
1906 | '@chevrotain/utils@11.0.3': {}
1907 |
1908 | '@emnapi/runtime@1.3.1':
1909 | dependencies:
1910 | tslib: 2.4.1
1911 | optional: true
1912 |
1913 | '@floating-ui/core@1.6.8':
1914 | dependencies:
1915 | '@floating-ui/utils': 0.2.8
1916 |
1917 | '@floating-ui/dom@1.6.12':
1918 | dependencies:
1919 | '@floating-ui/core': 1.6.8
1920 | '@floating-ui/utils': 0.2.8
1921 |
1922 | '@floating-ui/react-dom@2.1.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
1923 | dependencies:
1924 | '@floating-ui/dom': 1.6.12
1925 | react: 18.2.0
1926 | react-dom: 18.2.0(react@18.2.0)
1927 |
1928 | '@floating-ui/react@0.26.28(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
1929 | dependencies:
1930 | '@floating-ui/react-dom': 2.1.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
1931 | '@floating-ui/utils': 0.2.8
1932 | react: 18.2.0
1933 | react-dom: 18.2.0(react@18.2.0)
1934 | tabbable: 6.2.0
1935 |
1936 | '@floating-ui/utils@0.2.8': {}
1937 |
1938 | '@formatjs/intl-localematcher@0.5.10':
1939 | dependencies:
1940 | tslib: 2.4.1
1941 |
1942 | '@headlessui/react@2.2.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
1943 | dependencies:
1944 | '@floating-ui/react': 0.26.28(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
1945 | '@react-aria/focus': 3.19.0(react@18.2.0)
1946 | '@react-aria/interactions': 3.22.5(react@18.2.0)
1947 | '@tanstack/react-virtual': 3.11.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
1948 | react: 18.2.0
1949 | react-dom: 18.2.0(react@18.2.0)
1950 |
1951 | '@iconify/types@2.0.0': {}
1952 |
1953 | '@iconify/utils@2.2.1':
1954 | dependencies:
1955 | '@antfu/install-pkg': 0.4.1
1956 | '@antfu/utils': 0.7.10
1957 | '@iconify/types': 2.0.0
1958 | debug: 4.4.0
1959 | globals: 15.14.0
1960 | kolorist: 1.8.0
1961 | local-pkg: 0.5.1
1962 | mlly: 1.7.3
1963 | transitivePeerDependencies:
1964 | - supports-color
1965 |
1966 | '@img/sharp-darwin-arm64@0.33.5':
1967 | optionalDependencies:
1968 | '@img/sharp-libvips-darwin-arm64': 1.0.4
1969 | optional: true
1970 |
1971 | '@img/sharp-darwin-x64@0.33.5':
1972 | optionalDependencies:
1973 | '@img/sharp-libvips-darwin-x64': 1.0.4
1974 | optional: true
1975 |
1976 | '@img/sharp-libvips-darwin-arm64@1.0.4':
1977 | optional: true
1978 |
1979 | '@img/sharp-libvips-darwin-x64@1.0.4':
1980 | optional: true
1981 |
1982 | '@img/sharp-libvips-linux-arm64@1.0.4':
1983 | optional: true
1984 |
1985 | '@img/sharp-libvips-linux-arm@1.0.5':
1986 | optional: true
1987 |
1988 | '@img/sharp-libvips-linux-s390x@1.0.4':
1989 | optional: true
1990 |
1991 | '@img/sharp-libvips-linux-x64@1.0.4':
1992 | optional: true
1993 |
1994 | '@img/sharp-libvips-linuxmusl-arm64@1.0.4':
1995 | optional: true
1996 |
1997 | '@img/sharp-libvips-linuxmusl-x64@1.0.4':
1998 | optional: true
1999 |
2000 | '@img/sharp-linux-arm64@0.33.5':
2001 | optionalDependencies:
2002 | '@img/sharp-libvips-linux-arm64': 1.0.4
2003 | optional: true
2004 |
2005 | '@img/sharp-linux-arm@0.33.5':
2006 | optionalDependencies:
2007 | '@img/sharp-libvips-linux-arm': 1.0.5
2008 | optional: true
2009 |
2010 | '@img/sharp-linux-s390x@0.33.5':
2011 | optionalDependencies:
2012 | '@img/sharp-libvips-linux-s390x': 1.0.4
2013 | optional: true
2014 |
2015 | '@img/sharp-linux-x64@0.33.5':
2016 | optionalDependencies:
2017 | '@img/sharp-libvips-linux-x64': 1.0.4
2018 | optional: true
2019 |
2020 | '@img/sharp-linuxmusl-arm64@0.33.5':
2021 | optionalDependencies:
2022 | '@img/sharp-libvips-linuxmusl-arm64': 1.0.4
2023 | optional: true
2024 |
2025 | '@img/sharp-linuxmusl-x64@0.33.5':
2026 | optionalDependencies:
2027 | '@img/sharp-libvips-linuxmusl-x64': 1.0.4
2028 | optional: true
2029 |
2030 | '@img/sharp-wasm32@0.33.5':
2031 | dependencies:
2032 | '@emnapi/runtime': 1.3.1
2033 | optional: true
2034 |
2035 | '@img/sharp-win32-ia32@0.33.5':
2036 | optional: true
2037 |
2038 | '@img/sharp-win32-x64@0.33.5':
2039 | optional: true
2040 |
2041 | '@mdx-js/mdx@3.1.0(acorn@8.12.1)':
2042 | dependencies:
2043 | '@types/estree': 1.0.5
2044 | '@types/estree-jsx': 1.0.5
2045 | '@types/hast': 3.0.4
2046 | '@types/mdx': 2.0.13
2047 | collapse-white-space: 2.1.0
2048 | devlop: 1.1.0
2049 | estree-util-is-identifier-name: 3.0.0
2050 | estree-util-scope: 1.0.0
2051 | estree-walker: 3.0.3
2052 | hast-util-to-jsx-runtime: 2.3.2
2053 | markdown-extensions: 2.0.0
2054 | recma-build-jsx: 1.0.0
2055 | recma-jsx: 1.0.0(acorn@8.12.1)
2056 | recma-stringify: 1.0.0
2057 | rehype-recma: 1.0.0
2058 | remark-mdx: 3.1.0
2059 | remark-parse: 11.0.0
2060 | remark-rehype: 11.1.1
2061 | source-map: 0.7.4
2062 | unified: 11.0.5
2063 | unist-util-position-from-estree: 2.0.0
2064 | unist-util-stringify-position: 4.0.0
2065 | unist-util-visit: 5.0.0
2066 | vfile: 6.0.3
2067 | transitivePeerDependencies:
2068 | - acorn
2069 | - supports-color
2070 |
2071 | '@mdx-js/react@3.1.0(@types/react@18.3.3)(react@18.2.0)':
2072 | dependencies:
2073 | '@types/mdx': 2.0.13
2074 | '@types/react': 18.3.3
2075 | react: 18.2.0
2076 |
2077 | '@mermaid-js/parser@0.3.0':
2078 | dependencies:
2079 | langium: 3.0.0
2080 |
2081 | '@napi-rs/simple-git-android-arm-eabi@0.1.17':
2082 | optional: true
2083 |
2084 | '@napi-rs/simple-git-android-arm64@0.1.17':
2085 | optional: true
2086 |
2087 | '@napi-rs/simple-git-darwin-arm64@0.1.17':
2088 | optional: true
2089 |
2090 | '@napi-rs/simple-git-darwin-x64@0.1.17':
2091 | optional: true
2092 |
2093 | '@napi-rs/simple-git-freebsd-x64@0.1.17':
2094 | optional: true
2095 |
2096 | '@napi-rs/simple-git-linux-arm-gnueabihf@0.1.17':
2097 | optional: true
2098 |
2099 | '@napi-rs/simple-git-linux-arm64-gnu@0.1.17':
2100 | optional: true
2101 |
2102 | '@napi-rs/simple-git-linux-arm64-musl@0.1.17':
2103 | optional: true
2104 |
2105 | '@napi-rs/simple-git-linux-powerpc64le-gnu@0.1.17':
2106 | optional: true
2107 |
2108 | '@napi-rs/simple-git-linux-s390x-gnu@0.1.17':
2109 | optional: true
2110 |
2111 | '@napi-rs/simple-git-linux-x64-gnu@0.1.17':
2112 | optional: true
2113 |
2114 | '@napi-rs/simple-git-linux-x64-musl@0.1.17':
2115 | optional: true
2116 |
2117 | '@napi-rs/simple-git-win32-arm64-msvc@0.1.17':
2118 | optional: true
2119 |
2120 | '@napi-rs/simple-git-win32-x64-msvc@0.1.17':
2121 | optional: true
2122 |
2123 | '@napi-rs/simple-git@0.1.17':
2124 | optionalDependencies:
2125 | '@napi-rs/simple-git-android-arm-eabi': 0.1.17
2126 | '@napi-rs/simple-git-android-arm64': 0.1.17
2127 | '@napi-rs/simple-git-darwin-arm64': 0.1.17
2128 | '@napi-rs/simple-git-darwin-x64': 0.1.17
2129 | '@napi-rs/simple-git-freebsd-x64': 0.1.17
2130 | '@napi-rs/simple-git-linux-arm-gnueabihf': 0.1.17
2131 | '@napi-rs/simple-git-linux-arm64-gnu': 0.1.17
2132 | '@napi-rs/simple-git-linux-arm64-musl': 0.1.17
2133 | '@napi-rs/simple-git-linux-powerpc64le-gnu': 0.1.17
2134 | '@napi-rs/simple-git-linux-s390x-gnu': 0.1.17
2135 | '@napi-rs/simple-git-linux-x64-gnu': 0.1.17
2136 | '@napi-rs/simple-git-linux-x64-musl': 0.1.17
2137 | '@napi-rs/simple-git-win32-arm64-msvc': 0.1.17
2138 | '@napi-rs/simple-git-win32-x64-msvc': 0.1.17
2139 |
2140 | '@next/env@15.1.3': {}
2141 |
2142 | '@next/swc-darwin-arm64@15.1.3':
2143 | optional: true
2144 |
2145 | '@next/swc-darwin-x64@15.1.3':
2146 | optional: true
2147 |
2148 | '@next/swc-linux-arm64-gnu@15.1.3':
2149 | optional: true
2150 |
2151 | '@next/swc-linux-arm64-musl@15.1.3':
2152 | optional: true
2153 |
2154 | '@next/swc-linux-x64-gnu@15.1.3':
2155 | optional: true
2156 |
2157 | '@next/swc-linux-x64-musl@15.1.3':
2158 | optional: true
2159 |
2160 | '@next/swc-win32-arm64-msvc@15.1.3':
2161 | optional: true
2162 |
2163 | '@next/swc-win32-x64-msvc@15.1.3':
2164 | optional: true
2165 |
2166 | '@react-aria/focus@3.19.0(react@18.2.0)':
2167 | dependencies:
2168 | '@react-aria/interactions': 3.22.5(react@18.2.0)
2169 | '@react-aria/utils': 3.26.0(react@18.2.0)
2170 | '@react-types/shared': 3.26.0(react@18.2.0)
2171 | '@swc/helpers': 0.5.15
2172 | clsx: 2.1.1
2173 | react: 18.2.0
2174 |
2175 | '@react-aria/interactions@3.22.5(react@18.2.0)':
2176 | dependencies:
2177 | '@react-aria/ssr': 3.9.7(react@18.2.0)
2178 | '@react-aria/utils': 3.26.0(react@18.2.0)
2179 | '@react-types/shared': 3.26.0(react@18.2.0)
2180 | '@swc/helpers': 0.5.15
2181 | react: 18.2.0
2182 |
2183 | '@react-aria/ssr@3.9.7(react@18.2.0)':
2184 | dependencies:
2185 | '@swc/helpers': 0.5.15
2186 | react: 18.2.0
2187 |
2188 | '@react-aria/utils@3.26.0(react@18.2.0)':
2189 | dependencies:
2190 | '@react-aria/ssr': 3.9.7(react@18.2.0)
2191 | '@react-stately/utils': 3.10.5(react@18.2.0)
2192 | '@react-types/shared': 3.26.0(react@18.2.0)
2193 | '@swc/helpers': 0.5.15
2194 | clsx: 2.1.1
2195 | react: 18.2.0
2196 |
2197 | '@react-stately/utils@3.10.5(react@18.2.0)':
2198 | dependencies:
2199 | '@swc/helpers': 0.5.15
2200 | react: 18.2.0
2201 |
2202 | '@react-types/shared@3.26.0(react@18.2.0)':
2203 | dependencies:
2204 | react: 18.2.0
2205 |
2206 | '@shikijs/core@1.26.1':
2207 | dependencies:
2208 | '@shikijs/engine-javascript': 1.26.1
2209 | '@shikijs/engine-oniguruma': 1.26.1
2210 | '@shikijs/types': 1.26.1
2211 | '@shikijs/vscode-textmate': 10.0.1
2212 | '@types/hast': 3.0.4
2213 | hast-util-to-html: 9.0.4
2214 |
2215 | '@shikijs/engine-javascript@1.26.1':
2216 | dependencies:
2217 | '@shikijs/types': 1.26.1
2218 | '@shikijs/vscode-textmate': 10.0.1
2219 | oniguruma-to-es: 0.10.0
2220 |
2221 | '@shikijs/engine-oniguruma@1.26.1':
2222 | dependencies:
2223 | '@shikijs/types': 1.26.1
2224 | '@shikijs/vscode-textmate': 10.0.1
2225 |
2226 | '@shikijs/langs@1.26.1':
2227 | dependencies:
2228 | '@shikijs/types': 1.26.1
2229 |
2230 | '@shikijs/themes@1.26.1':
2231 | dependencies:
2232 | '@shikijs/types': 1.26.1
2233 |
2234 | '@shikijs/twoslash@1.26.1(typescript@4.9.3)':
2235 | dependencies:
2236 | '@shikijs/core': 1.26.1
2237 | '@shikijs/types': 1.26.1
2238 | twoslash: 0.2.12(typescript@4.9.3)
2239 | transitivePeerDependencies:
2240 | - supports-color
2241 | - typescript
2242 |
2243 | '@shikijs/types@1.26.1':
2244 | dependencies:
2245 | '@shikijs/vscode-textmate': 10.0.1
2246 | '@types/hast': 3.0.4
2247 |
2248 | '@shikijs/vscode-textmate@10.0.1': {}
2249 |
2250 | '@swc/counter@0.1.3': {}
2251 |
2252 | '@swc/helpers@0.5.15':
2253 | dependencies:
2254 | tslib: 2.8.1
2255 |
2256 | '@tanstack/react-virtual@3.11.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
2257 | dependencies:
2258 | '@tanstack/virtual-core': 3.11.2
2259 | react: 18.2.0
2260 | react-dom: 18.2.0(react@18.2.0)
2261 |
2262 | '@tanstack/virtual-core@3.11.2': {}
2263 |
2264 | '@theguild/remark-mermaid@0.1.3(react@18.2.0)':
2265 | dependencies:
2266 | mermaid: 11.4.1
2267 | react: 18.2.0
2268 | unist-util-visit: 5.0.0
2269 | transitivePeerDependencies:
2270 | - supports-color
2271 |
2272 | '@theguild/remark-npm2yarn@0.3.3':
2273 | dependencies:
2274 | npm-to-yarn: 3.0.1
2275 | unist-util-visit: 5.0.0
2276 |
2277 | '@types/acorn@4.0.6':
2278 | dependencies:
2279 | '@types/estree': 1.0.5
2280 |
2281 | '@types/d3-array@3.2.1': {}
2282 |
2283 | '@types/d3-axis@3.0.6':
2284 | dependencies:
2285 | '@types/d3-selection': 3.0.11
2286 |
2287 | '@types/d3-brush@3.0.6':
2288 | dependencies:
2289 | '@types/d3-selection': 3.0.11
2290 |
2291 | '@types/d3-chord@3.0.6': {}
2292 |
2293 | '@types/d3-color@3.1.3': {}
2294 |
2295 | '@types/d3-contour@3.0.6':
2296 | dependencies:
2297 | '@types/d3-array': 3.2.1
2298 | '@types/geojson': 7946.0.15
2299 |
2300 | '@types/d3-delaunay@6.0.4': {}
2301 |
2302 | '@types/d3-dispatch@3.0.6': {}
2303 |
2304 | '@types/d3-drag@3.0.7':
2305 | dependencies:
2306 | '@types/d3-selection': 3.0.11
2307 |
2308 | '@types/d3-dsv@3.0.7': {}
2309 |
2310 | '@types/d3-ease@3.0.2': {}
2311 |
2312 | '@types/d3-fetch@3.0.7':
2313 | dependencies:
2314 | '@types/d3-dsv': 3.0.7
2315 |
2316 | '@types/d3-force@3.0.10': {}
2317 |
2318 | '@types/d3-format@3.0.4': {}
2319 |
2320 | '@types/d3-geo@3.1.0':
2321 | dependencies:
2322 | '@types/geojson': 7946.0.15
2323 |
2324 | '@types/d3-hierarchy@3.1.7': {}
2325 |
2326 | '@types/d3-interpolate@3.0.4':
2327 | dependencies:
2328 | '@types/d3-color': 3.1.3
2329 |
2330 | '@types/d3-path@3.1.0': {}
2331 |
2332 | '@types/d3-polygon@3.0.2': {}
2333 |
2334 | '@types/d3-quadtree@3.0.6': {}
2335 |
2336 | '@types/d3-random@3.0.3': {}
2337 |
2338 | '@types/d3-scale-chromatic@3.1.0': {}
2339 |
2340 | '@types/d3-scale@4.0.8':
2341 | dependencies:
2342 | '@types/d3-time': 3.0.4
2343 |
2344 | '@types/d3-selection@3.0.11': {}
2345 |
2346 | '@types/d3-shape@3.1.6':
2347 | dependencies:
2348 | '@types/d3-path': 3.1.0
2349 |
2350 | '@types/d3-time-format@4.0.3': {}
2351 |
2352 | '@types/d3-time@3.0.4': {}
2353 |
2354 | '@types/d3-timer@3.0.2': {}
2355 |
2356 | '@types/d3-transition@3.0.9':
2357 | dependencies:
2358 | '@types/d3-selection': 3.0.11
2359 |
2360 | '@types/d3-zoom@3.0.8':
2361 | dependencies:
2362 | '@types/d3-interpolate': 3.0.4
2363 | '@types/d3-selection': 3.0.11
2364 |
2365 | '@types/d3@7.4.3':
2366 | dependencies:
2367 | '@types/d3-array': 3.2.1
2368 | '@types/d3-axis': 3.0.6
2369 | '@types/d3-brush': 3.0.6
2370 | '@types/d3-chord': 3.0.6
2371 | '@types/d3-color': 3.1.3
2372 | '@types/d3-contour': 3.0.6
2373 | '@types/d3-delaunay': 6.0.4
2374 | '@types/d3-dispatch': 3.0.6
2375 | '@types/d3-drag': 3.0.7
2376 | '@types/d3-dsv': 3.0.7
2377 | '@types/d3-ease': 3.0.2
2378 | '@types/d3-fetch': 3.0.7
2379 | '@types/d3-force': 3.0.10
2380 | '@types/d3-format': 3.0.4
2381 | '@types/d3-geo': 3.1.0
2382 | '@types/d3-hierarchy': 3.1.7
2383 | '@types/d3-interpolate': 3.0.4
2384 | '@types/d3-path': 3.1.0
2385 | '@types/d3-polygon': 3.0.2
2386 | '@types/d3-quadtree': 3.0.6
2387 | '@types/d3-random': 3.0.3
2388 | '@types/d3-scale': 4.0.8
2389 | '@types/d3-scale-chromatic': 3.1.0
2390 | '@types/d3-selection': 3.0.11
2391 | '@types/d3-shape': 3.1.6
2392 | '@types/d3-time': 3.0.4
2393 | '@types/d3-time-format': 4.0.3
2394 | '@types/d3-timer': 3.0.2
2395 | '@types/d3-transition': 3.0.9
2396 | '@types/d3-zoom': 3.0.8
2397 |
2398 | '@types/debug@4.1.12':
2399 | dependencies:
2400 | '@types/ms': 0.7.34
2401 |
2402 | '@types/estree-jsx@1.0.5':
2403 | dependencies:
2404 | '@types/estree': 1.0.5
2405 |
2406 | '@types/estree@1.0.5': {}
2407 |
2408 | '@types/geojson@7946.0.15': {}
2409 |
2410 | '@types/hast@3.0.4':
2411 | dependencies:
2412 | '@types/unist': 2.0.10
2413 |
2414 | '@types/katex@0.16.7': {}
2415 |
2416 | '@types/mdast@4.0.4':
2417 | dependencies:
2418 | '@types/unist': 3.0.3
2419 |
2420 | '@types/mdx@2.0.13': {}
2421 |
2422 | '@types/ms@0.7.34': {}
2423 |
2424 | '@types/nlcst@2.0.3':
2425 | dependencies:
2426 | '@types/unist': 2.0.10
2427 |
2428 | '@types/node@18.11.10': {}
2429 |
2430 | '@types/prop-types@15.7.12': {}
2431 |
2432 | '@types/react@18.3.3':
2433 | dependencies:
2434 | '@types/prop-types': 15.7.12
2435 | csstype: 3.1.3
2436 |
2437 | '@types/trusted-types@2.0.7':
2438 | optional: true
2439 |
2440 | '@types/unist@2.0.10': {}
2441 |
2442 | '@types/unist@3.0.3': {}
2443 |
2444 | '@typescript/vfs@1.6.0(typescript@4.9.3)':
2445 | dependencies:
2446 | debug: 4.3.6
2447 | typescript: 4.9.3
2448 | transitivePeerDependencies:
2449 | - supports-color
2450 |
2451 | '@ungap/structured-clone@1.2.1': {}
2452 |
2453 | acorn-jsx@5.3.2(acorn@8.12.1):
2454 | dependencies:
2455 | acorn: 8.12.1
2456 |
2457 | acorn@8.12.1: {}
2458 |
2459 | acorn@8.14.0: {}
2460 |
2461 | arg@5.0.2: {}
2462 |
2463 | argparse@1.0.10:
2464 | dependencies:
2465 | sprintf-js: 1.0.3
2466 |
2467 | array-iterate@2.0.1: {}
2468 |
2469 | astring@1.8.6: {}
2470 |
2471 | bail@2.0.2: {}
2472 |
2473 | better-react-mathjax@2.0.3(react@18.2.0):
2474 | dependencies:
2475 | mathjax-full: 3.2.2
2476 | react: 18.2.0
2477 |
2478 | busboy@1.6.0:
2479 | dependencies:
2480 | streamsearch: 1.1.0
2481 |
2482 | caniuse-lite@1.0.30001690: {}
2483 |
2484 | ccount@2.0.1: {}
2485 |
2486 | chalk@5.4.1: {}
2487 |
2488 | character-entities-html4@2.1.0: {}
2489 |
2490 | character-entities-legacy@3.0.0: {}
2491 |
2492 | character-entities@2.0.2: {}
2493 |
2494 | character-reference-invalid@2.0.1: {}
2495 |
2496 | chevrotain-allstar@0.3.1(chevrotain@11.0.3):
2497 | dependencies:
2498 | chevrotain: 11.0.3
2499 | lodash-es: 4.17.21
2500 |
2501 | chevrotain@11.0.3:
2502 | dependencies:
2503 | '@chevrotain/cst-dts-gen': 11.0.3
2504 | '@chevrotain/gast': 11.0.3
2505 | '@chevrotain/regexp-to-ast': 11.0.3
2506 | '@chevrotain/types': 11.0.3
2507 | '@chevrotain/utils': 11.0.3
2508 | lodash-es: 4.17.21
2509 |
2510 | client-only@0.0.1: {}
2511 |
2512 | clipboardy@4.0.0:
2513 | dependencies:
2514 | execa: 8.0.1
2515 | is-wsl: 3.1.0
2516 | is64bit: 2.0.0
2517 |
2518 | clsx@2.1.1: {}
2519 |
2520 | collapse-white-space@2.1.0: {}
2521 |
2522 | color-convert@2.0.1:
2523 | dependencies:
2524 | color-name: 1.1.4
2525 | optional: true
2526 |
2527 | color-name@1.1.3:
2528 | optional: true
2529 |
2530 | color-name@1.1.4:
2531 | optional: true
2532 |
2533 | color-string@1.9.1:
2534 | dependencies:
2535 | color-name: 1.1.3
2536 | simple-swizzle: 0.2.2
2537 | optional: true
2538 |
2539 | color@4.2.3:
2540 | dependencies:
2541 | color-convert: 2.0.1
2542 | color-string: 1.9.1
2543 | optional: true
2544 |
2545 | comma-separated-tokens@2.0.3: {}
2546 |
2547 | commander@7.2.0: {}
2548 |
2549 | commander@8.3.0: {}
2550 |
2551 | commander@9.2.0: {}
2552 |
2553 | compute-scroll-into-view@3.1.0: {}
2554 |
2555 | confbox@0.1.8: {}
2556 |
2557 | cose-base@1.0.3:
2558 | dependencies:
2559 | layout-base: 1.0.2
2560 |
2561 | cose-base@2.2.0:
2562 | dependencies:
2563 | layout-base: 2.0.1
2564 |
2565 | cross-spawn@7.0.6:
2566 | dependencies:
2567 | path-key: 3.1.1
2568 | shebang-command: 2.0.0
2569 | which: 2.0.2
2570 |
2571 | csstype@3.1.3: {}
2572 |
2573 | cytoscape-cose-bilkent@4.1.0(cytoscape@3.30.4):
2574 | dependencies:
2575 | cose-base: 1.0.3
2576 | cytoscape: 3.30.4
2577 |
2578 | cytoscape-fcose@2.2.0(cytoscape@3.30.4):
2579 | dependencies:
2580 | cose-base: 2.2.0
2581 | cytoscape: 3.30.4
2582 |
2583 | cytoscape@3.30.4: {}
2584 |
2585 | d3-array@2.12.1:
2586 | dependencies:
2587 | internmap: 1.0.1
2588 |
2589 | d3-array@3.2.4:
2590 | dependencies:
2591 | internmap: 2.0.3
2592 |
2593 | d3-axis@3.0.0: {}
2594 |
2595 | d3-brush@3.0.0:
2596 | dependencies:
2597 | d3-dispatch: 3.0.1
2598 | d3-drag: 3.0.0
2599 | d3-interpolate: 3.0.1
2600 | d3-selection: 3.0.0
2601 | d3-transition: 3.0.1(d3-selection@3.0.0)
2602 |
2603 | d3-chord@3.0.1:
2604 | dependencies:
2605 | d3-path: 3.1.0
2606 |
2607 | d3-color@3.1.0: {}
2608 |
2609 | d3-contour@4.0.2:
2610 | dependencies:
2611 | d3-array: 3.2.4
2612 |
2613 | d3-delaunay@6.0.4:
2614 | dependencies:
2615 | delaunator: 5.0.1
2616 |
2617 | d3-dispatch@3.0.1: {}
2618 |
2619 | d3-drag@3.0.0:
2620 | dependencies:
2621 | d3-dispatch: 3.0.1
2622 | d3-selection: 3.0.0
2623 |
2624 | d3-dsv@3.0.1:
2625 | dependencies:
2626 | commander: 7.2.0
2627 | iconv-lite: 0.6.3
2628 | rw: 1.3.3
2629 |
2630 | d3-ease@3.0.1: {}
2631 |
2632 | d3-fetch@3.0.1:
2633 | dependencies:
2634 | d3-dsv: 3.0.1
2635 |
2636 | d3-force@3.0.0:
2637 | dependencies:
2638 | d3-dispatch: 3.0.1
2639 | d3-quadtree: 3.0.1
2640 | d3-timer: 3.0.1
2641 |
2642 | d3-format@3.1.0: {}
2643 |
2644 | d3-geo@3.1.1:
2645 | dependencies:
2646 | d3-array: 3.2.4
2647 |
2648 | d3-hierarchy@3.1.2: {}
2649 |
2650 | d3-interpolate@3.0.1:
2651 | dependencies:
2652 | d3-color: 3.1.0
2653 |
2654 | d3-path@1.0.9: {}
2655 |
2656 | d3-path@3.1.0: {}
2657 |
2658 | d3-polygon@3.0.1: {}
2659 |
2660 | d3-quadtree@3.0.1: {}
2661 |
2662 | d3-random@3.0.1: {}
2663 |
2664 | d3-sankey@0.12.3:
2665 | dependencies:
2666 | d3-array: 2.12.1
2667 | d3-shape: 1.3.7
2668 |
2669 | d3-scale-chromatic@3.1.0:
2670 | dependencies:
2671 | d3-color: 3.1.0
2672 | d3-interpolate: 3.0.1
2673 |
2674 | d3-scale@4.0.2:
2675 | dependencies:
2676 | d3-array: 3.2.4
2677 | d3-format: 3.1.0
2678 | d3-interpolate: 3.0.1
2679 | d3-time: 3.1.0
2680 | d3-time-format: 4.1.0
2681 |
2682 | d3-selection@3.0.0: {}
2683 |
2684 | d3-shape@1.3.7:
2685 | dependencies:
2686 | d3-path: 1.0.9
2687 |
2688 | d3-shape@3.2.0:
2689 | dependencies:
2690 | d3-path: 3.1.0
2691 |
2692 | d3-time-format@4.1.0:
2693 | dependencies:
2694 | d3-time: 3.1.0
2695 |
2696 | d3-time@3.1.0:
2697 | dependencies:
2698 | d3-array: 3.2.4
2699 |
2700 | d3-timer@3.0.1: {}
2701 |
2702 | d3-transition@3.0.1(d3-selection@3.0.0):
2703 | dependencies:
2704 | d3-color: 3.1.0
2705 | d3-dispatch: 3.0.1
2706 | d3-ease: 3.0.1
2707 | d3-interpolate: 3.0.1
2708 | d3-selection: 3.0.0
2709 | d3-timer: 3.0.1
2710 |
2711 | d3-zoom@3.0.0:
2712 | dependencies:
2713 | d3-dispatch: 3.0.1
2714 | d3-drag: 3.0.0
2715 | d3-interpolate: 3.0.1
2716 | d3-selection: 3.0.0
2717 | d3-transition: 3.0.1(d3-selection@3.0.0)
2718 |
2719 | d3@7.9.0:
2720 | dependencies:
2721 | d3-array: 3.2.4
2722 | d3-axis: 3.0.0
2723 | d3-brush: 3.0.0
2724 | d3-chord: 3.0.1
2725 | d3-color: 3.1.0
2726 | d3-contour: 4.0.2
2727 | d3-delaunay: 6.0.4
2728 | d3-dispatch: 3.0.1
2729 | d3-drag: 3.0.0
2730 | d3-dsv: 3.0.1
2731 | d3-ease: 3.0.1
2732 | d3-fetch: 3.0.1
2733 | d3-force: 3.0.0
2734 | d3-format: 3.1.0
2735 | d3-geo: 3.1.1
2736 | d3-hierarchy: 3.1.2
2737 | d3-interpolate: 3.0.1
2738 | d3-path: 3.1.0
2739 | d3-polygon: 3.0.1
2740 | d3-quadtree: 3.0.1
2741 | d3-random: 3.0.1
2742 | d3-scale: 4.0.2
2743 | d3-scale-chromatic: 3.1.0
2744 | d3-selection: 3.0.0
2745 | d3-shape: 3.2.0
2746 | d3-time: 3.1.0
2747 | d3-time-format: 4.1.0
2748 | d3-timer: 3.0.1
2749 | d3-transition: 3.0.1(d3-selection@3.0.0)
2750 | d3-zoom: 3.0.0
2751 |
2752 | dagre-d3-es@7.0.11:
2753 | dependencies:
2754 | d3: 7.9.0
2755 | lodash-es: 4.17.21
2756 |
2757 | dayjs@1.11.13: {}
2758 |
2759 | debug@4.3.6:
2760 | dependencies:
2761 | ms: 2.1.2
2762 |
2763 | debug@4.4.0:
2764 | dependencies:
2765 | ms: 2.1.3
2766 |
2767 | decode-named-character-reference@1.0.2:
2768 | dependencies:
2769 | character-entities: 2.0.2
2770 |
2771 | delaunator@5.0.1:
2772 | dependencies:
2773 | robust-predicates: 3.0.2
2774 |
2775 | dequal@2.0.3: {}
2776 |
2777 | detect-libc@2.0.3:
2778 | optional: true
2779 |
2780 | devlop@1.1.0:
2781 | dependencies:
2782 | dequal: 2.0.3
2783 |
2784 | dompurify@3.2.3:
2785 | optionalDependencies:
2786 | '@types/trusted-types': 2.0.7
2787 |
2788 | emoji-regex-xs@1.0.0: {}
2789 |
2790 | entities@4.5.0: {}
2791 |
2792 | esast-util-from-estree@2.0.0:
2793 | dependencies:
2794 | '@types/estree-jsx': 1.0.5
2795 | devlop: 1.1.0
2796 | estree-util-visit: 2.0.0
2797 | unist-util-position-from-estree: 2.0.0
2798 |
2799 | esast-util-from-js@2.0.1:
2800 | dependencies:
2801 | '@types/estree-jsx': 1.0.5
2802 | acorn: 8.12.1
2803 | esast-util-from-estree: 2.0.0
2804 | vfile-message: 4.0.2
2805 |
2806 | escape-string-regexp@5.0.0: {}
2807 |
2808 | esm@3.2.25: {}
2809 |
2810 | esprima@4.0.1: {}
2811 |
2812 | estree-util-attach-comments@3.0.0:
2813 | dependencies:
2814 | '@types/estree': 1.0.5
2815 |
2816 | estree-util-build-jsx@3.0.1:
2817 | dependencies:
2818 | '@types/estree-jsx': 1.0.5
2819 | devlop: 1.1.0
2820 | estree-util-is-identifier-name: 3.0.0
2821 | estree-walker: 3.0.3
2822 |
2823 | estree-util-is-identifier-name@2.1.0: {}
2824 |
2825 | estree-util-is-identifier-name@3.0.0: {}
2826 |
2827 | estree-util-scope@1.0.0:
2828 | dependencies:
2829 | '@types/estree': 1.0.5
2830 | devlop: 1.1.0
2831 |
2832 | estree-util-to-js@2.0.0:
2833 | dependencies:
2834 | '@types/estree-jsx': 1.0.5
2835 | astring: 1.8.6
2836 | source-map: 0.7.4
2837 |
2838 | estree-util-value-to-estree@1.3.0:
2839 | dependencies:
2840 | is-plain-obj: 3.0.0
2841 |
2842 | estree-util-value-to-estree@3.2.1:
2843 | dependencies:
2844 | '@types/estree': 1.0.5
2845 |
2846 | estree-util-visit@2.0.0:
2847 | dependencies:
2848 | '@types/estree-jsx': 1.0.5
2849 | '@types/unist': 3.0.3
2850 |
2851 | estree-walker@3.0.3:
2852 | dependencies:
2853 | '@types/estree': 1.0.5
2854 |
2855 | execa@8.0.1:
2856 | dependencies:
2857 | cross-spawn: 7.0.6
2858 | get-stream: 8.0.1
2859 | human-signals: 5.0.0
2860 | is-stream: 3.0.0
2861 | merge-stream: 2.0.0
2862 | npm-run-path: 5.3.0
2863 | onetime: 6.0.0
2864 | signal-exit: 4.1.0
2865 | strip-final-newline: 3.0.0
2866 |
2867 | extend-shallow@2.0.1:
2868 | dependencies:
2869 | is-extendable: 0.1.1
2870 |
2871 | extend@3.0.2: {}
2872 |
2873 | fault@2.0.1:
2874 | dependencies:
2875 | format: 0.2.2
2876 |
2877 | flexsearch@0.7.43: {}
2878 |
2879 | format@0.2.2: {}
2880 |
2881 | get-stream@8.0.1: {}
2882 |
2883 | github-slugger@2.0.0: {}
2884 |
2885 | globals@15.14.0: {}
2886 |
2887 | graceful-fs@4.2.11: {}
2888 |
2889 | gray-matter@4.0.3:
2890 | dependencies:
2891 | js-yaml: 3.14.1
2892 | kind-of: 6.0.3
2893 | section-matter: 1.0.0
2894 | strip-bom-string: 1.0.0
2895 |
2896 | hachure-fill@0.5.2: {}
2897 |
2898 | hast-util-from-dom@5.0.1:
2899 | dependencies:
2900 | '@types/hast': 3.0.4
2901 | hastscript: 9.0.0
2902 | web-namespaces: 2.0.1
2903 |
2904 | hast-util-from-html-isomorphic@2.0.0:
2905 | dependencies:
2906 | '@types/hast': 3.0.4
2907 | hast-util-from-dom: 5.0.1
2908 | hast-util-from-html: 2.0.3
2909 | unist-util-remove-position: 5.0.0
2910 |
2911 | hast-util-from-html@2.0.3:
2912 | dependencies:
2913 | '@types/hast': 3.0.4
2914 | devlop: 1.1.0
2915 | hast-util-from-parse5: 8.0.2
2916 | parse5: 7.1.2
2917 | vfile: 6.0.3
2918 | vfile-message: 4.0.2
2919 |
2920 | hast-util-from-parse5@8.0.2:
2921 | dependencies:
2922 | '@types/hast': 3.0.4
2923 | '@types/unist': 3.0.3
2924 | devlop: 1.1.0
2925 | hastscript: 9.0.0
2926 | property-information: 6.5.0
2927 | vfile: 6.0.3
2928 | vfile-location: 5.0.3
2929 | web-namespaces: 2.0.1
2930 |
2931 | hast-util-is-element@3.0.0:
2932 | dependencies:
2933 | '@types/hast': 3.0.4
2934 |
2935 | hast-util-parse-selector@4.0.0:
2936 | dependencies:
2937 | '@types/hast': 3.0.4
2938 |
2939 | hast-util-raw@9.1.0:
2940 | dependencies:
2941 | '@types/hast': 3.0.4
2942 | '@types/unist': 3.0.3
2943 | '@ungap/structured-clone': 1.2.1
2944 | hast-util-from-parse5: 8.0.2
2945 | hast-util-to-parse5: 8.0.0
2946 | html-void-elements: 3.0.0
2947 | mdast-util-to-hast: 13.2.0
2948 | parse5: 7.1.2
2949 | unist-util-position: 5.0.0
2950 | unist-util-visit: 5.0.0
2951 | vfile: 6.0.3
2952 | web-namespaces: 2.0.1
2953 | zwitch: 2.0.4
2954 |
2955 | hast-util-to-estree@3.1.1:
2956 | dependencies:
2957 | '@types/estree': 1.0.5
2958 | '@types/estree-jsx': 1.0.5
2959 | '@types/hast': 3.0.4
2960 | comma-separated-tokens: 2.0.3
2961 | devlop: 1.1.0
2962 | estree-util-attach-comments: 3.0.0
2963 | estree-util-is-identifier-name: 3.0.0
2964 | hast-util-whitespace: 3.0.0
2965 | mdast-util-mdx-expression: 2.0.1
2966 | mdast-util-mdx-jsx: 3.1.3
2967 | mdast-util-mdxjs-esm: 2.0.1
2968 | property-information: 6.5.0
2969 | space-separated-tokens: 2.0.2
2970 | style-to-object: 1.0.8
2971 | unist-util-position: 5.0.0
2972 | zwitch: 2.0.4
2973 | transitivePeerDependencies:
2974 | - supports-color
2975 |
2976 | hast-util-to-html@9.0.4:
2977 | dependencies:
2978 | '@types/hast': 3.0.4
2979 | '@types/unist': 3.0.3
2980 | ccount: 2.0.1
2981 | comma-separated-tokens: 2.0.3
2982 | hast-util-whitespace: 3.0.0
2983 | html-void-elements: 3.0.0
2984 | mdast-util-to-hast: 13.2.0
2985 | property-information: 6.5.0
2986 | space-separated-tokens: 2.0.2
2987 | stringify-entities: 4.0.4
2988 | zwitch: 2.0.4
2989 |
2990 | hast-util-to-jsx-runtime@2.3.2:
2991 | dependencies:
2992 | '@types/estree': 1.0.5
2993 | '@types/hast': 3.0.4
2994 | '@types/unist': 3.0.3
2995 | comma-separated-tokens: 2.0.3
2996 | devlop: 1.1.0
2997 | estree-util-is-identifier-name: 3.0.0
2998 | hast-util-whitespace: 3.0.0
2999 | mdast-util-mdx-expression: 2.0.1
3000 | mdast-util-mdx-jsx: 3.1.3
3001 | mdast-util-mdxjs-esm: 2.0.1
3002 | property-information: 6.5.0
3003 | space-separated-tokens: 2.0.2
3004 | style-to-object: 1.0.8
3005 | unist-util-position: 5.0.0
3006 | vfile-message: 4.0.2
3007 | transitivePeerDependencies:
3008 | - supports-color
3009 |
3010 | hast-util-to-parse5@8.0.0:
3011 | dependencies:
3012 | '@types/hast': 3.0.4
3013 | comma-separated-tokens: 2.0.3
3014 | devlop: 1.1.0
3015 | property-information: 6.5.0
3016 | space-separated-tokens: 2.0.2
3017 | web-namespaces: 2.0.1
3018 | zwitch: 2.0.4
3019 |
3020 | hast-util-to-string@3.0.1:
3021 | dependencies:
3022 | '@types/hast': 3.0.4
3023 |
3024 | hast-util-to-text@4.0.2:
3025 | dependencies:
3026 | '@types/hast': 3.0.4
3027 | '@types/unist': 3.0.3
3028 | hast-util-is-element: 3.0.0
3029 | unist-util-find-after: 5.0.0
3030 |
3031 | hast-util-whitespace@3.0.0:
3032 | dependencies:
3033 | '@types/hast': 3.0.4
3034 |
3035 | hastscript@9.0.0:
3036 | dependencies:
3037 | '@types/hast': 3.0.4
3038 | comma-separated-tokens: 2.0.3
3039 | hast-util-parse-selector: 4.0.0
3040 | property-information: 6.5.0
3041 | space-separated-tokens: 2.0.2
3042 |
3043 | html-void-elements@3.0.0: {}
3044 |
3045 | human-signals@5.0.0: {}
3046 |
3047 | iconv-lite@0.6.3:
3048 | dependencies:
3049 | safer-buffer: 2.1.2
3050 |
3051 | inline-style-parser@0.2.4: {}
3052 |
3053 | internmap@1.0.1: {}
3054 |
3055 | internmap@2.0.3: {}
3056 |
3057 | is-alphabetical@2.0.1: {}
3058 |
3059 | is-alphanumerical@2.0.1:
3060 | dependencies:
3061 | is-alphabetical: 2.0.1
3062 | is-decimal: 2.0.1
3063 |
3064 | is-arrayish@0.3.2:
3065 | optional: true
3066 |
3067 | is-decimal@2.0.1: {}
3068 |
3069 | is-docker@3.0.0: {}
3070 |
3071 | is-extendable@0.1.1: {}
3072 |
3073 | is-hexadecimal@2.0.1: {}
3074 |
3075 | is-inside-container@1.0.0:
3076 | dependencies:
3077 | is-docker: 3.0.0
3078 |
3079 | is-plain-obj@3.0.0: {}
3080 |
3081 | is-plain-obj@4.1.0: {}
3082 |
3083 | is-stream@3.0.0: {}
3084 |
3085 | is-wsl@3.1.0:
3086 | dependencies:
3087 | is-inside-container: 1.0.0
3088 |
3089 | is64bit@2.0.0:
3090 | dependencies:
3091 | system-architecture: 0.1.0
3092 |
3093 | isexe@2.0.0: {}
3094 |
3095 | js-tokens@4.0.0: {}
3096 |
3097 | js-yaml@3.14.1:
3098 | dependencies:
3099 | argparse: 1.0.10
3100 | esprima: 4.0.1
3101 |
3102 | katex@0.16.11:
3103 | dependencies:
3104 | commander: 8.3.0
3105 |
3106 | khroma@2.1.0: {}
3107 |
3108 | kind-of@6.0.3: {}
3109 |
3110 | kolorist@1.8.0: {}
3111 |
3112 | langium@3.0.0:
3113 | dependencies:
3114 | chevrotain: 11.0.3
3115 | chevrotain-allstar: 0.3.1(chevrotain@11.0.3)
3116 | vscode-languageserver: 9.0.1
3117 | vscode-languageserver-textdocument: 1.0.12
3118 | vscode-uri: 3.0.8
3119 |
3120 | layout-base@1.0.2: {}
3121 |
3122 | layout-base@2.0.1: {}
3123 |
3124 | local-pkg@0.5.1:
3125 | dependencies:
3126 | mlly: 1.7.3
3127 | pkg-types: 1.3.0
3128 |
3129 | lodash-es@4.17.21: {}
3130 |
3131 | longest-streak@3.1.0: {}
3132 |
3133 | loose-envify@1.4.0:
3134 | dependencies:
3135 | js-tokens: 4.0.0
3136 |
3137 | markdown-extensions@2.0.0: {}
3138 |
3139 | markdown-table@3.0.3: {}
3140 |
3141 | marked@13.0.3: {}
3142 |
3143 | mathjax-full@3.2.2:
3144 | dependencies:
3145 | esm: 3.2.25
3146 | mhchemparser: 4.2.1
3147 | mj-context-menu: 0.6.1
3148 | speech-rule-engine: 4.0.7
3149 |
3150 | mdast-util-find-and-replace@3.0.2:
3151 | dependencies:
3152 | '@types/mdast': 4.0.4
3153 | escape-string-regexp: 5.0.0
3154 | unist-util-is: 6.0.0
3155 | unist-util-visit-parents: 6.0.1
3156 |
3157 | mdast-util-from-markdown@2.0.2:
3158 | dependencies:
3159 | '@types/mdast': 4.0.4
3160 | '@types/unist': 3.0.3
3161 | decode-named-character-reference: 1.0.2
3162 | devlop: 1.1.0
3163 | mdast-util-to-string: 4.0.0
3164 | micromark: 4.0.1
3165 | micromark-util-decode-numeric-character-reference: 2.0.2
3166 | micromark-util-decode-string: 2.0.1
3167 | micromark-util-normalize-identifier: 2.0.1
3168 | micromark-util-symbol: 2.0.1
3169 | micromark-util-types: 2.0.1
3170 | unist-util-stringify-position: 4.0.0
3171 | transitivePeerDependencies:
3172 | - supports-color
3173 |
3174 | mdast-util-frontmatter@2.0.1:
3175 | dependencies:
3176 | '@types/mdast': 4.0.4
3177 | devlop: 1.1.0
3178 | escape-string-regexp: 5.0.0
3179 | mdast-util-from-markdown: 2.0.2
3180 | mdast-util-to-markdown: 2.1.2
3181 | micromark-extension-frontmatter: 2.0.0
3182 | transitivePeerDependencies:
3183 | - supports-color
3184 |
3185 | mdast-util-gfm-autolink-literal@2.0.1:
3186 | dependencies:
3187 | '@types/mdast': 4.0.4
3188 | ccount: 2.0.1
3189 | devlop: 1.1.0
3190 | mdast-util-find-and-replace: 3.0.2
3191 | micromark-util-character: 2.1.1
3192 |
3193 | mdast-util-gfm-footnote@2.0.0:
3194 | dependencies:
3195 | '@types/mdast': 4.0.4
3196 | devlop: 1.1.0
3197 | mdast-util-from-markdown: 2.0.2
3198 | mdast-util-to-markdown: 2.1.2
3199 | micromark-util-normalize-identifier: 2.0.1
3200 | transitivePeerDependencies:
3201 | - supports-color
3202 |
3203 | mdast-util-gfm-strikethrough@2.0.0:
3204 | dependencies:
3205 | '@types/mdast': 4.0.4
3206 | mdast-util-from-markdown: 2.0.2
3207 | mdast-util-to-markdown: 2.1.2
3208 | transitivePeerDependencies:
3209 | - supports-color
3210 |
3211 | mdast-util-gfm-table@2.0.0:
3212 | dependencies:
3213 | '@types/mdast': 4.0.4
3214 | devlop: 1.1.0
3215 | markdown-table: 3.0.3
3216 | mdast-util-from-markdown: 2.0.2
3217 | mdast-util-to-markdown: 2.1.2
3218 | transitivePeerDependencies:
3219 | - supports-color
3220 |
3221 | mdast-util-gfm-task-list-item@2.0.0:
3222 | dependencies:
3223 | '@types/mdast': 4.0.4
3224 | devlop: 1.1.0
3225 | mdast-util-from-markdown: 2.0.2
3226 | mdast-util-to-markdown: 2.1.2
3227 | transitivePeerDependencies:
3228 | - supports-color
3229 |
3230 | mdast-util-gfm@3.0.0:
3231 | dependencies:
3232 | mdast-util-from-markdown: 2.0.2
3233 | mdast-util-gfm-autolink-literal: 2.0.1
3234 | mdast-util-gfm-footnote: 2.0.0
3235 | mdast-util-gfm-strikethrough: 2.0.0
3236 | mdast-util-gfm-table: 2.0.0
3237 | mdast-util-gfm-task-list-item: 2.0.0
3238 | mdast-util-to-markdown: 2.1.2
3239 | transitivePeerDependencies:
3240 | - supports-color
3241 |
3242 | mdast-util-math@3.0.0:
3243 | dependencies:
3244 | '@types/hast': 3.0.4
3245 | '@types/mdast': 4.0.4
3246 | devlop: 1.1.0
3247 | longest-streak: 3.1.0
3248 | mdast-util-from-markdown: 2.0.2
3249 | mdast-util-to-markdown: 2.1.2
3250 | unist-util-remove-position: 5.0.0
3251 | transitivePeerDependencies:
3252 | - supports-color
3253 |
3254 | mdast-util-mdx-expression@2.0.1:
3255 | dependencies:
3256 | '@types/estree-jsx': 1.0.5
3257 | '@types/hast': 3.0.4
3258 | '@types/mdast': 4.0.4
3259 | devlop: 1.1.0
3260 | mdast-util-from-markdown: 2.0.2
3261 | mdast-util-to-markdown: 2.1.2
3262 | transitivePeerDependencies:
3263 | - supports-color
3264 |
3265 | mdast-util-mdx-jsx@3.1.3:
3266 | dependencies:
3267 | '@types/estree-jsx': 1.0.5
3268 | '@types/hast': 3.0.4
3269 | '@types/mdast': 4.0.4
3270 | '@types/unist': 3.0.3
3271 | ccount: 2.0.1
3272 | devlop: 1.1.0
3273 | mdast-util-from-markdown: 2.0.2
3274 | mdast-util-to-markdown: 2.1.2
3275 | parse-entities: 4.0.1
3276 | stringify-entities: 4.0.4
3277 | unist-util-stringify-position: 4.0.0
3278 | vfile-message: 4.0.2
3279 | transitivePeerDependencies:
3280 | - supports-color
3281 |
3282 | mdast-util-mdx@3.0.0:
3283 | dependencies:
3284 | mdast-util-from-markdown: 2.0.2
3285 | mdast-util-mdx-expression: 2.0.1
3286 | mdast-util-mdx-jsx: 3.1.3
3287 | mdast-util-mdxjs-esm: 2.0.1
3288 | mdast-util-to-markdown: 2.1.2
3289 | transitivePeerDependencies:
3290 | - supports-color
3291 |
3292 | mdast-util-mdxjs-esm@2.0.1:
3293 | dependencies:
3294 | '@types/estree-jsx': 1.0.5
3295 | '@types/hast': 3.0.4
3296 | '@types/mdast': 4.0.4
3297 | devlop: 1.1.0
3298 | mdast-util-from-markdown: 2.0.2
3299 | mdast-util-to-markdown: 2.1.2
3300 | transitivePeerDependencies:
3301 | - supports-color
3302 |
3303 | mdast-util-phrasing@4.1.0:
3304 | dependencies:
3305 | '@types/mdast': 4.0.4
3306 | unist-util-is: 6.0.0
3307 |
3308 | mdast-util-to-hast@13.2.0:
3309 | dependencies:
3310 | '@types/hast': 3.0.4
3311 | '@types/mdast': 4.0.4
3312 | '@ungap/structured-clone': 1.2.1
3313 | devlop: 1.1.0
3314 | micromark-util-sanitize-uri: 2.0.1
3315 | trim-lines: 3.0.1
3316 | unist-util-position: 5.0.0
3317 | unist-util-visit: 5.0.0
3318 | vfile: 6.0.3
3319 |
3320 | mdast-util-to-markdown@2.1.2:
3321 | dependencies:
3322 | '@types/mdast': 4.0.4
3323 | '@types/unist': 3.0.3
3324 | longest-streak: 3.1.0
3325 | mdast-util-phrasing: 4.1.0
3326 | mdast-util-to-string: 4.0.0
3327 | micromark-util-classify-character: 2.0.1
3328 | micromark-util-decode-string: 2.0.1
3329 | unist-util-visit: 5.0.0
3330 | zwitch: 2.0.4
3331 |
3332 | mdast-util-to-string@4.0.0:
3333 | dependencies:
3334 | '@types/mdast': 4.0.4
3335 |
3336 | merge-stream@2.0.0: {}
3337 |
3338 | mermaid@11.4.1:
3339 | dependencies:
3340 | '@braintree/sanitize-url': 7.1.1
3341 | '@iconify/utils': 2.2.1
3342 | '@mermaid-js/parser': 0.3.0
3343 | '@types/d3': 7.4.3
3344 | cytoscape: 3.30.4
3345 | cytoscape-cose-bilkent: 4.1.0(cytoscape@3.30.4)
3346 | cytoscape-fcose: 2.2.0(cytoscape@3.30.4)
3347 | d3: 7.9.0
3348 | d3-sankey: 0.12.3
3349 | dagre-d3-es: 7.0.11
3350 | dayjs: 1.11.13
3351 | dompurify: 3.2.3
3352 | katex: 0.16.11
3353 | khroma: 2.1.0
3354 | lodash-es: 4.17.21
3355 | marked: 13.0.3
3356 | roughjs: 4.6.6
3357 | stylis: 4.3.4
3358 | ts-dedent: 2.2.0
3359 | uuid: 9.0.1
3360 | transitivePeerDependencies:
3361 | - supports-color
3362 |
3363 | mhchemparser@4.2.1: {}
3364 |
3365 | micromark-core-commonmark@2.0.2:
3366 | dependencies:
3367 | decode-named-character-reference: 1.0.2
3368 | devlop: 1.1.0
3369 | micromark-factory-destination: 2.0.1
3370 | micromark-factory-label: 2.0.1
3371 | micromark-factory-space: 2.0.1
3372 | micromark-factory-title: 2.0.1
3373 | micromark-factory-whitespace: 2.0.1
3374 | micromark-util-character: 2.1.1
3375 | micromark-util-chunked: 2.0.1
3376 | micromark-util-classify-character: 2.0.1
3377 | micromark-util-html-tag-name: 2.0.1
3378 | micromark-util-normalize-identifier: 2.0.1
3379 | micromark-util-resolve-all: 2.0.1
3380 | micromark-util-subtokenize: 2.0.3
3381 | micromark-util-symbol: 2.0.1
3382 | micromark-util-types: 2.0.1
3383 |
3384 | micromark-extension-frontmatter@2.0.0:
3385 | dependencies:
3386 | fault: 2.0.1
3387 | micromark-util-character: 2.1.1
3388 | micromark-util-symbol: 2.0.1
3389 | micromark-util-types: 2.0.1
3390 |
3391 | micromark-extension-gfm-autolink-literal@2.1.0:
3392 | dependencies:
3393 | micromark-util-character: 2.1.1
3394 | micromark-util-sanitize-uri: 2.0.1
3395 | micromark-util-symbol: 2.0.1
3396 | micromark-util-types: 2.0.1
3397 |
3398 | micromark-extension-gfm-footnote@2.1.0:
3399 | dependencies:
3400 | devlop: 1.1.0
3401 | micromark-core-commonmark: 2.0.2
3402 | micromark-factory-space: 2.0.1
3403 | micromark-util-character: 2.1.1
3404 | micromark-util-normalize-identifier: 2.0.1
3405 | micromark-util-sanitize-uri: 2.0.1
3406 | micromark-util-symbol: 2.0.1
3407 | micromark-util-types: 2.0.1
3408 |
3409 | micromark-extension-gfm-strikethrough@2.1.0:
3410 | dependencies:
3411 | devlop: 1.1.0
3412 | micromark-util-chunked: 2.0.1
3413 | micromark-util-classify-character: 2.0.1
3414 | micromark-util-resolve-all: 2.0.1
3415 | micromark-util-symbol: 2.0.1
3416 | micromark-util-types: 2.0.1
3417 |
3418 | micromark-extension-gfm-table@2.1.0:
3419 | dependencies:
3420 | devlop: 1.1.0
3421 | micromark-factory-space: 2.0.1
3422 | micromark-util-character: 2.1.1
3423 | micromark-util-symbol: 2.0.1
3424 | micromark-util-types: 2.0.1
3425 |
3426 | micromark-extension-gfm-tagfilter@2.0.0:
3427 | dependencies:
3428 | micromark-util-types: 2.0.1
3429 |
3430 | micromark-extension-gfm-task-list-item@2.1.0:
3431 | dependencies:
3432 | devlop: 1.1.0
3433 | micromark-factory-space: 2.0.1
3434 | micromark-util-character: 2.1.1
3435 | micromark-util-symbol: 2.0.1
3436 | micromark-util-types: 2.0.1
3437 |
3438 | micromark-extension-gfm@3.0.0:
3439 | dependencies:
3440 | micromark-extension-gfm-autolink-literal: 2.1.0
3441 | micromark-extension-gfm-footnote: 2.1.0
3442 | micromark-extension-gfm-strikethrough: 2.1.0
3443 | micromark-extension-gfm-table: 2.1.0
3444 | micromark-extension-gfm-tagfilter: 2.0.0
3445 | micromark-extension-gfm-task-list-item: 2.1.0
3446 | micromark-util-combine-extensions: 2.0.1
3447 | micromark-util-types: 2.0.1
3448 |
3449 | micromark-extension-math@3.1.0:
3450 | dependencies:
3451 | '@types/katex': 0.16.7
3452 | devlop: 1.1.0
3453 | katex: 0.16.11
3454 | micromark-factory-space: 2.0.1
3455 | micromark-util-character: 2.1.1
3456 | micromark-util-symbol: 2.0.1
3457 | micromark-util-types: 2.0.1
3458 |
3459 | micromark-extension-mdx-expression@3.0.0:
3460 | dependencies:
3461 | '@types/estree': 1.0.5
3462 | devlop: 1.1.0
3463 | micromark-factory-mdx-expression: 2.0.2
3464 | micromark-factory-space: 2.0.1
3465 | micromark-util-character: 2.1.1
3466 | micromark-util-events-to-acorn: 2.0.2
3467 | micromark-util-symbol: 2.0.1
3468 | micromark-util-types: 2.0.1
3469 |
3470 | micromark-extension-mdx-jsx@3.0.1:
3471 | dependencies:
3472 | '@types/acorn': 4.0.6
3473 | '@types/estree': 1.0.5
3474 | devlop: 1.1.0
3475 | estree-util-is-identifier-name: 3.0.0
3476 | micromark-factory-mdx-expression: 2.0.2
3477 | micromark-factory-space: 2.0.1
3478 | micromark-util-character: 2.1.1
3479 | micromark-util-events-to-acorn: 2.0.2
3480 | micromark-util-symbol: 2.0.1
3481 | micromark-util-types: 2.0.1
3482 | vfile-message: 4.0.2
3483 |
3484 | micromark-extension-mdx-md@2.0.0:
3485 | dependencies:
3486 | micromark-util-types: 2.0.1
3487 |
3488 | micromark-extension-mdxjs-esm@3.0.0:
3489 | dependencies:
3490 | '@types/estree': 1.0.5
3491 | devlop: 1.1.0
3492 | micromark-core-commonmark: 2.0.2
3493 | micromark-util-character: 2.1.1
3494 | micromark-util-events-to-acorn: 2.0.2
3495 | micromark-util-symbol: 2.0.1
3496 | micromark-util-types: 2.0.1
3497 | unist-util-position-from-estree: 2.0.0
3498 | vfile-message: 4.0.2
3499 |
3500 | micromark-extension-mdxjs@3.0.0:
3501 | dependencies:
3502 | acorn: 8.12.1
3503 | acorn-jsx: 5.3.2(acorn@8.12.1)
3504 | micromark-extension-mdx-expression: 3.0.0
3505 | micromark-extension-mdx-jsx: 3.0.1
3506 | micromark-extension-mdx-md: 2.0.0
3507 | micromark-extension-mdxjs-esm: 3.0.0
3508 | micromark-util-combine-extensions: 2.0.1
3509 | micromark-util-types: 2.0.1
3510 |
3511 | micromark-factory-destination@2.0.1:
3512 | dependencies:
3513 | micromark-util-character: 2.1.1
3514 | micromark-util-symbol: 2.0.1
3515 | micromark-util-types: 2.0.1
3516 |
3517 | micromark-factory-label@2.0.1:
3518 | dependencies:
3519 | devlop: 1.1.0
3520 | micromark-util-character: 2.1.1
3521 | micromark-util-symbol: 2.0.1
3522 | micromark-util-types: 2.0.1
3523 |
3524 | micromark-factory-mdx-expression@2.0.2:
3525 | dependencies:
3526 | '@types/estree': 1.0.5
3527 | devlop: 1.1.0
3528 | micromark-factory-space: 2.0.1
3529 | micromark-util-character: 2.1.1
3530 | micromark-util-events-to-acorn: 2.0.2
3531 | micromark-util-symbol: 2.0.1
3532 | micromark-util-types: 2.0.1
3533 | unist-util-position-from-estree: 2.0.0
3534 | vfile-message: 4.0.2
3535 |
3536 | micromark-factory-space@2.0.1:
3537 | dependencies:
3538 | micromark-util-character: 2.1.1
3539 | micromark-util-types: 2.0.1
3540 |
3541 | micromark-factory-title@2.0.1:
3542 | dependencies:
3543 | micromark-factory-space: 2.0.1
3544 | micromark-util-character: 2.1.1
3545 | micromark-util-symbol: 2.0.1
3546 | micromark-util-types: 2.0.1
3547 |
3548 | micromark-factory-whitespace@2.0.1:
3549 | dependencies:
3550 | micromark-factory-space: 2.0.1
3551 | micromark-util-character: 2.1.1
3552 | micromark-util-symbol: 2.0.1
3553 | micromark-util-types: 2.0.1
3554 |
3555 | micromark-util-character@2.1.1:
3556 | dependencies:
3557 | micromark-util-symbol: 2.0.1
3558 | micromark-util-types: 2.0.1
3559 |
3560 | micromark-util-chunked@2.0.1:
3561 | dependencies:
3562 | micromark-util-symbol: 2.0.1
3563 |
3564 | micromark-util-classify-character@2.0.1:
3565 | dependencies:
3566 | micromark-util-character: 2.1.1
3567 | micromark-util-symbol: 2.0.1
3568 | micromark-util-types: 2.0.1
3569 |
3570 | micromark-util-combine-extensions@2.0.1:
3571 | dependencies:
3572 | micromark-util-chunked: 2.0.1
3573 | micromark-util-types: 2.0.1
3574 |
3575 | micromark-util-decode-numeric-character-reference@2.0.2:
3576 | dependencies:
3577 | micromark-util-symbol: 2.0.1
3578 |
3579 | micromark-util-decode-string@2.0.1:
3580 | dependencies:
3581 | decode-named-character-reference: 1.0.2
3582 | micromark-util-character: 2.1.1
3583 | micromark-util-decode-numeric-character-reference: 2.0.2
3584 | micromark-util-symbol: 2.0.1
3585 |
3586 | micromark-util-encode@2.0.1: {}
3587 |
3588 | micromark-util-events-to-acorn@2.0.2:
3589 | dependencies:
3590 | '@types/acorn': 4.0.6
3591 | '@types/estree': 1.0.5
3592 | '@types/unist': 3.0.3
3593 | devlop: 1.1.0
3594 | estree-util-visit: 2.0.0
3595 | micromark-util-symbol: 2.0.1
3596 | micromark-util-types: 2.0.1
3597 | vfile-message: 4.0.2
3598 |
3599 | micromark-util-html-tag-name@2.0.1: {}
3600 |
3601 | micromark-util-normalize-identifier@2.0.1:
3602 | dependencies:
3603 | micromark-util-symbol: 2.0.1
3604 |
3605 | micromark-util-resolve-all@2.0.1:
3606 | dependencies:
3607 | micromark-util-types: 2.0.1
3608 |
3609 | micromark-util-sanitize-uri@2.0.1:
3610 | dependencies:
3611 | micromark-util-character: 2.1.1
3612 | micromark-util-encode: 2.0.1
3613 | micromark-util-symbol: 2.0.1
3614 |
3615 | micromark-util-subtokenize@2.0.3:
3616 | dependencies:
3617 | devlop: 1.1.0
3618 | micromark-util-chunked: 2.0.1
3619 | micromark-util-symbol: 2.0.1
3620 | micromark-util-types: 2.0.1
3621 |
3622 | micromark-util-symbol@2.0.1: {}
3623 |
3624 | micromark-util-types@2.0.1: {}
3625 |
3626 | micromark@4.0.1:
3627 | dependencies:
3628 | '@types/debug': 4.1.12
3629 | debug: 4.3.6
3630 | decode-named-character-reference: 1.0.2
3631 | devlop: 1.1.0
3632 | micromark-core-commonmark: 2.0.2
3633 | micromark-factory-space: 2.0.1
3634 | micromark-util-character: 2.1.1
3635 | micromark-util-chunked: 2.0.1
3636 | micromark-util-combine-extensions: 2.0.1
3637 | micromark-util-decode-numeric-character-reference: 2.0.2
3638 | micromark-util-encode: 2.0.1
3639 | micromark-util-normalize-identifier: 2.0.1
3640 | micromark-util-resolve-all: 2.0.1
3641 | micromark-util-sanitize-uri: 2.0.1
3642 | micromark-util-subtokenize: 2.0.3
3643 | micromark-util-symbol: 2.0.1
3644 | micromark-util-types: 2.0.1
3645 | transitivePeerDependencies:
3646 | - supports-color
3647 |
3648 | mimic-fn@4.0.0: {}
3649 |
3650 | mj-context-menu@0.6.1: {}
3651 |
3652 | mlly@1.7.3:
3653 | dependencies:
3654 | acorn: 8.14.0
3655 | pathe: 1.1.2
3656 | pkg-types: 1.3.0
3657 | ufo: 1.5.4
3658 |
3659 | ms@2.1.2: {}
3660 |
3661 | ms@2.1.3: {}
3662 |
3663 | nanoid@3.3.8: {}
3664 |
3665 | negotiator@1.0.0: {}
3666 |
3667 | next-themes@0.4.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
3668 | dependencies:
3669 | react: 18.2.0
3670 | react-dom: 18.2.0(react@18.2.0)
3671 |
3672 | next@15.1.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
3673 | dependencies:
3674 | '@next/env': 15.1.3
3675 | '@swc/counter': 0.1.3
3676 | '@swc/helpers': 0.5.15
3677 | busboy: 1.6.0
3678 | caniuse-lite: 1.0.30001690
3679 | postcss: 8.4.31
3680 | react: 18.2.0
3681 | react-dom: 18.2.0(react@18.2.0)
3682 | styled-jsx: 5.1.6(react@18.2.0)
3683 | optionalDependencies:
3684 | '@next/swc-darwin-arm64': 15.1.3
3685 | '@next/swc-darwin-x64': 15.1.3
3686 | '@next/swc-linux-arm64-gnu': 15.1.3
3687 | '@next/swc-linux-arm64-musl': 15.1.3
3688 | '@next/swc-linux-x64-gnu': 15.1.3
3689 | '@next/swc-linux-x64-musl': 15.1.3
3690 | '@next/swc-win32-arm64-msvc': 15.1.3
3691 | '@next/swc-win32-x64-msvc': 15.1.3
3692 | sharp: 0.33.5
3693 | transitivePeerDependencies:
3694 | - '@babel/core'
3695 | - babel-plugin-macros
3696 |
3697 | nextra-theme-docs@3.3.1(next@15.1.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(nextra@3.3.1(@types/react@18.3.3)(acorn@8.12.1)(next@15.1.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@4.9.3))(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
3698 | dependencies:
3699 | '@headlessui/react': 2.2.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
3700 | clsx: 2.1.1
3701 | escape-string-regexp: 5.0.0
3702 | flexsearch: 0.7.43
3703 | next: 15.1.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
3704 | next-themes: 0.4.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
3705 | nextra: 3.3.1(@types/react@18.3.3)(acorn@8.12.1)(next@15.1.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@4.9.3)
3706 | react: 18.2.0
3707 | react-dom: 18.2.0(react@18.2.0)
3708 | scroll-into-view-if-needed: 3.1.0
3709 | zod: 3.24.1
3710 |
3711 | nextra@3.3.1(@types/react@18.3.3)(acorn@8.12.1)(next@15.1.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@4.9.3):
3712 | dependencies:
3713 | '@formatjs/intl-localematcher': 0.5.10
3714 | '@headlessui/react': 2.2.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
3715 | '@mdx-js/mdx': 3.1.0(acorn@8.12.1)
3716 | '@mdx-js/react': 3.1.0(@types/react@18.3.3)(react@18.2.0)
3717 | '@napi-rs/simple-git': 0.1.17
3718 | '@shikijs/twoslash': 1.26.1(typescript@4.9.3)
3719 | '@theguild/remark-mermaid': 0.1.3(react@18.2.0)
3720 | '@theguild/remark-npm2yarn': 0.3.3
3721 | better-react-mathjax: 2.0.3(react@18.2.0)
3722 | clsx: 2.1.1
3723 | estree-util-to-js: 2.0.0
3724 | estree-util-value-to-estree: 3.2.1
3725 | github-slugger: 2.0.0
3726 | graceful-fs: 4.2.11
3727 | gray-matter: 4.0.3
3728 | hast-util-to-estree: 3.1.1
3729 | katex: 0.16.11
3730 | mdast-util-from-markdown: 2.0.2
3731 | mdast-util-gfm: 3.0.0
3732 | mdast-util-to-hast: 13.2.0
3733 | negotiator: 1.0.0
3734 | next: 15.1.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
3735 | p-limit: 6.2.0
3736 | react: 18.2.0
3737 | react-dom: 18.2.0(react@18.2.0)
3738 | react-medium-image-zoom: 5.2.13(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
3739 | rehype-katex: 7.0.1
3740 | rehype-pretty-code: 0.14.0(shiki@1.26.1)
3741 | rehype-raw: 7.0.0
3742 | remark-frontmatter: 5.0.0
3743 | remark-gfm: 4.0.0
3744 | remark-math: 6.0.0
3745 | remark-reading-time: 2.0.1
3746 | remark-smartypants: 3.0.2
3747 | shiki: 1.26.1
3748 | slash: 5.1.0
3749 | title: 4.0.1
3750 | unist-util-remove: 4.0.0
3751 | unist-util-visit: 5.0.0
3752 | yaml: 2.7.0
3753 | zod: 3.24.1
3754 | zod-validation-error: 3.4.0(zod@3.24.1)
3755 | transitivePeerDependencies:
3756 | - '@types/react'
3757 | - acorn
3758 | - supports-color
3759 | - typescript
3760 |
3761 | nlcst-to-string@4.0.0:
3762 | dependencies:
3763 | '@types/nlcst': 2.0.3
3764 |
3765 | node-bin-setup@1.1.3: {}
3766 |
3767 | node@23.5.0:
3768 | dependencies:
3769 | node-bin-setup: 1.1.3
3770 |
3771 | npm-run-path@5.3.0:
3772 | dependencies:
3773 | path-key: 4.0.0
3774 |
3775 | npm-to-yarn@3.0.1: {}
3776 |
3777 | onetime@6.0.0:
3778 | dependencies:
3779 | mimic-fn: 4.0.0
3780 |
3781 | oniguruma-to-es@0.10.0:
3782 | dependencies:
3783 | emoji-regex-xs: 1.0.0
3784 | regex: 5.1.1
3785 | regex-recursion: 5.1.1
3786 |
3787 | p-limit@6.2.0:
3788 | dependencies:
3789 | yocto-queue: 1.1.1
3790 |
3791 | package-manager-detector@0.2.8: {}
3792 |
3793 | parse-entities@4.0.1:
3794 | dependencies:
3795 | '@types/unist': 2.0.10
3796 | character-entities: 2.0.2
3797 | character-entities-legacy: 3.0.0
3798 | character-reference-invalid: 2.0.1
3799 | decode-named-character-reference: 1.0.2
3800 | is-alphanumerical: 2.0.1
3801 | is-decimal: 2.0.1
3802 | is-hexadecimal: 2.0.1
3803 |
3804 | parse-latin@7.0.0:
3805 | dependencies:
3806 | '@types/nlcst': 2.0.3
3807 | '@types/unist': 3.0.3
3808 | nlcst-to-string: 4.0.0
3809 | unist-util-modify-children: 4.0.0
3810 | unist-util-visit-children: 3.0.0
3811 | vfile: 6.0.3
3812 |
3813 | parse-numeric-range@1.3.0: {}
3814 |
3815 | parse5@7.1.2:
3816 | dependencies:
3817 | entities: 4.5.0
3818 |
3819 | path-data-parser@0.1.0: {}
3820 |
3821 | path-key@3.1.1: {}
3822 |
3823 | path-key@4.0.0: {}
3824 |
3825 | pathe@1.1.2: {}
3826 |
3827 | picocolors@1.0.0: {}
3828 |
3829 | pkg-types@1.3.0:
3830 | dependencies:
3831 | confbox: 0.1.8
3832 | mlly: 1.7.3
3833 | pathe: 1.1.2
3834 |
3835 | points-on-curve@0.2.0: {}
3836 |
3837 | points-on-path@0.2.1:
3838 | dependencies:
3839 | path-data-parser: 0.1.0
3840 | points-on-curve: 0.2.0
3841 |
3842 | postcss@8.4.31:
3843 | dependencies:
3844 | nanoid: 3.3.8
3845 | picocolors: 1.0.0
3846 | source-map-js: 1.0.2
3847 |
3848 | property-information@6.5.0: {}
3849 |
3850 | react-dom@18.2.0(react@18.2.0):
3851 | dependencies:
3852 | loose-envify: 1.4.0
3853 | react: 18.2.0
3854 | scheduler: 0.23.0
3855 |
3856 | react-medium-image-zoom@5.2.13(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
3857 | dependencies:
3858 | react: 18.2.0
3859 | react-dom: 18.2.0(react@18.2.0)
3860 |
3861 | react@18.2.0:
3862 | dependencies:
3863 | loose-envify: 1.4.0
3864 |
3865 | reading-time@1.5.0: {}
3866 |
3867 | recma-build-jsx@1.0.0:
3868 | dependencies:
3869 | '@types/estree': 1.0.5
3870 | estree-util-build-jsx: 3.0.1
3871 | vfile: 6.0.3
3872 |
3873 | recma-jsx@1.0.0(acorn@8.12.1):
3874 | dependencies:
3875 | acorn-jsx: 5.3.2(acorn@8.12.1)
3876 | estree-util-to-js: 2.0.0
3877 | recma-parse: 1.0.0
3878 | recma-stringify: 1.0.0
3879 | unified: 11.0.5
3880 | transitivePeerDependencies:
3881 | - acorn
3882 |
3883 | recma-parse@1.0.0:
3884 | dependencies:
3885 | '@types/estree': 1.0.5
3886 | esast-util-from-js: 2.0.1
3887 | unified: 11.0.5
3888 | vfile: 6.0.3
3889 |
3890 | recma-stringify@1.0.0:
3891 | dependencies:
3892 | '@types/estree': 1.0.5
3893 | estree-util-to-js: 2.0.0
3894 | unified: 11.0.5
3895 | vfile: 6.0.3
3896 |
3897 | regex-recursion@5.1.1:
3898 | dependencies:
3899 | regex: 5.1.1
3900 | regex-utilities: 2.3.0
3901 |
3902 | regex-utilities@2.3.0: {}
3903 |
3904 | regex@5.1.1:
3905 | dependencies:
3906 | regex-utilities: 2.3.0
3907 |
3908 | rehype-katex@7.0.1:
3909 | dependencies:
3910 | '@types/hast': 3.0.4
3911 | '@types/katex': 0.16.7
3912 | hast-util-from-html-isomorphic: 2.0.0
3913 | hast-util-to-text: 4.0.2
3914 | katex: 0.16.11
3915 | unist-util-visit-parents: 6.0.1
3916 | vfile: 6.0.3
3917 |
3918 | rehype-parse@9.0.1:
3919 | dependencies:
3920 | '@types/hast': 3.0.4
3921 | hast-util-from-html: 2.0.3
3922 | unified: 11.0.5
3923 |
3924 | rehype-pretty-code@0.14.0(shiki@1.26.1):
3925 | dependencies:
3926 | '@types/hast': 3.0.4
3927 | hast-util-to-string: 3.0.1
3928 | parse-numeric-range: 1.3.0
3929 | rehype-parse: 9.0.1
3930 | shiki: 1.26.1
3931 | unified: 11.0.5
3932 | unist-util-visit: 5.0.0
3933 |
3934 | rehype-raw@7.0.0:
3935 | dependencies:
3936 | '@types/hast': 3.0.4
3937 | hast-util-raw: 9.1.0
3938 | vfile: 6.0.3
3939 |
3940 | rehype-recma@1.0.0:
3941 | dependencies:
3942 | '@types/estree': 1.0.5
3943 | '@types/hast': 3.0.4
3944 | hast-util-to-estree: 3.1.1
3945 | transitivePeerDependencies:
3946 | - supports-color
3947 |
3948 | remark-frontmatter@5.0.0:
3949 | dependencies:
3950 | '@types/mdast': 4.0.4
3951 | mdast-util-frontmatter: 2.0.1
3952 | micromark-extension-frontmatter: 2.0.0
3953 | unified: 11.0.5
3954 | transitivePeerDependencies:
3955 | - supports-color
3956 |
3957 | remark-gfm@4.0.0:
3958 | dependencies:
3959 | '@types/mdast': 4.0.4
3960 | mdast-util-gfm: 3.0.0
3961 | micromark-extension-gfm: 3.0.0
3962 | remark-parse: 11.0.0
3963 | remark-stringify: 11.0.0
3964 | unified: 11.0.5
3965 | transitivePeerDependencies:
3966 | - supports-color
3967 |
3968 | remark-math@6.0.0:
3969 | dependencies:
3970 | '@types/mdast': 4.0.4
3971 | mdast-util-math: 3.0.0
3972 | micromark-extension-math: 3.1.0
3973 | unified: 11.0.5
3974 | transitivePeerDependencies:
3975 | - supports-color
3976 |
3977 | remark-mdx@3.1.0:
3978 | dependencies:
3979 | mdast-util-mdx: 3.0.0
3980 | micromark-extension-mdxjs: 3.0.0
3981 | transitivePeerDependencies:
3982 | - supports-color
3983 |
3984 | remark-parse@11.0.0:
3985 | dependencies:
3986 | '@types/mdast': 4.0.4
3987 | mdast-util-from-markdown: 2.0.2
3988 | micromark-util-types: 2.0.1
3989 | unified: 11.0.5
3990 | transitivePeerDependencies:
3991 | - supports-color
3992 |
3993 | remark-reading-time@2.0.1:
3994 | dependencies:
3995 | estree-util-is-identifier-name: 2.1.0
3996 | estree-util-value-to-estree: 1.3.0
3997 | reading-time: 1.5.0
3998 | unist-util-visit: 3.1.0
3999 |
4000 | remark-rehype@11.1.1:
4001 | dependencies:
4002 | '@types/hast': 3.0.4
4003 | '@types/mdast': 4.0.4
4004 | mdast-util-to-hast: 13.2.0
4005 | unified: 11.0.5
4006 | vfile: 6.0.3
4007 |
4008 | remark-smartypants@3.0.2:
4009 | dependencies:
4010 | retext: 9.0.0
4011 | retext-smartypants: 6.2.0
4012 | unified: 11.0.5
4013 | unist-util-visit: 5.0.0
4014 |
4015 | remark-stringify@11.0.0:
4016 | dependencies:
4017 | '@types/mdast': 4.0.4
4018 | mdast-util-to-markdown: 2.1.2
4019 | unified: 11.0.5
4020 |
4021 | retext-latin@4.0.0:
4022 | dependencies:
4023 | '@types/nlcst': 2.0.3
4024 | parse-latin: 7.0.0
4025 | unified: 11.0.5
4026 |
4027 | retext-smartypants@6.2.0:
4028 | dependencies:
4029 | '@types/nlcst': 2.0.3
4030 | nlcst-to-string: 4.0.0
4031 | unist-util-visit: 5.0.0
4032 |
4033 | retext-stringify@4.0.0:
4034 | dependencies:
4035 | '@types/nlcst': 2.0.3
4036 | nlcst-to-string: 4.0.0
4037 | unified: 11.0.5
4038 |
4039 | retext@9.0.0:
4040 | dependencies:
4041 | '@types/nlcst': 2.0.3
4042 | retext-latin: 4.0.0
4043 | retext-stringify: 4.0.0
4044 | unified: 11.0.5
4045 |
4046 | robust-predicates@3.0.2: {}
4047 |
4048 | roughjs@4.6.6:
4049 | dependencies:
4050 | hachure-fill: 0.5.2
4051 | path-data-parser: 0.1.0
4052 | points-on-curve: 0.2.0
4053 | points-on-path: 0.2.1
4054 |
4055 | rw@1.3.3: {}
4056 |
4057 | safer-buffer@2.1.2: {}
4058 |
4059 | scheduler@0.23.0:
4060 | dependencies:
4061 | loose-envify: 1.4.0
4062 |
4063 | scroll-into-view-if-needed@3.1.0:
4064 | dependencies:
4065 | compute-scroll-into-view: 3.1.0
4066 |
4067 | section-matter@1.0.0:
4068 | dependencies:
4069 | extend-shallow: 2.0.1
4070 | kind-of: 6.0.3
4071 |
4072 | semver@7.6.3:
4073 | optional: true
4074 |
4075 | sharp@0.33.5:
4076 | dependencies:
4077 | color: 4.2.3
4078 | detect-libc: 2.0.3
4079 | semver: 7.6.3
4080 | optionalDependencies:
4081 | '@img/sharp-darwin-arm64': 0.33.5
4082 | '@img/sharp-darwin-x64': 0.33.5
4083 | '@img/sharp-libvips-darwin-arm64': 1.0.4
4084 | '@img/sharp-libvips-darwin-x64': 1.0.4
4085 | '@img/sharp-libvips-linux-arm': 1.0.5
4086 | '@img/sharp-libvips-linux-arm64': 1.0.4
4087 | '@img/sharp-libvips-linux-s390x': 1.0.4
4088 | '@img/sharp-libvips-linux-x64': 1.0.4
4089 | '@img/sharp-libvips-linuxmusl-arm64': 1.0.4
4090 | '@img/sharp-libvips-linuxmusl-x64': 1.0.4
4091 | '@img/sharp-linux-arm': 0.33.5
4092 | '@img/sharp-linux-arm64': 0.33.5
4093 | '@img/sharp-linux-s390x': 0.33.5
4094 | '@img/sharp-linux-x64': 0.33.5
4095 | '@img/sharp-linuxmusl-arm64': 0.33.5
4096 | '@img/sharp-linuxmusl-x64': 0.33.5
4097 | '@img/sharp-wasm32': 0.33.5
4098 | '@img/sharp-win32-ia32': 0.33.5
4099 | '@img/sharp-win32-x64': 0.33.5
4100 | optional: true
4101 |
4102 | shebang-command@2.0.0:
4103 | dependencies:
4104 | shebang-regex: 3.0.0
4105 |
4106 | shebang-regex@3.0.0: {}
4107 |
4108 | shiki@1.26.1:
4109 | dependencies:
4110 | '@shikijs/core': 1.26.1
4111 | '@shikijs/engine-javascript': 1.26.1
4112 | '@shikijs/engine-oniguruma': 1.26.1
4113 | '@shikijs/langs': 1.26.1
4114 | '@shikijs/themes': 1.26.1
4115 | '@shikijs/types': 1.26.1
4116 | '@shikijs/vscode-textmate': 10.0.1
4117 | '@types/hast': 3.0.4
4118 |
4119 | signal-exit@4.1.0: {}
4120 |
4121 | simple-swizzle@0.2.2:
4122 | dependencies:
4123 | is-arrayish: 0.3.2
4124 | optional: true
4125 |
4126 | slash@5.1.0: {}
4127 |
4128 | source-map-js@1.0.2: {}
4129 |
4130 | source-map@0.7.4: {}
4131 |
4132 | space-separated-tokens@2.0.2: {}
4133 |
4134 | speech-rule-engine@4.0.7:
4135 | dependencies:
4136 | commander: 9.2.0
4137 | wicked-good-xpath: 1.3.0
4138 | xmldom-sre: 0.1.31
4139 |
4140 | sprintf-js@1.0.3: {}
4141 |
4142 | streamsearch@1.1.0: {}
4143 |
4144 | stringify-entities@4.0.4:
4145 | dependencies:
4146 | character-entities-html4: 2.1.0
4147 | character-entities-legacy: 3.0.0
4148 |
4149 | strip-bom-string@1.0.0: {}
4150 |
4151 | strip-final-newline@3.0.0: {}
4152 |
4153 | style-to-object@1.0.8:
4154 | dependencies:
4155 | inline-style-parser: 0.2.4
4156 |
4157 | styled-jsx@5.1.6(react@18.2.0):
4158 | dependencies:
4159 | client-only: 0.0.1
4160 | react: 18.2.0
4161 |
4162 | stylis@4.3.4: {}
4163 |
4164 | system-architecture@0.1.0: {}
4165 |
4166 | tabbable@6.2.0: {}
4167 |
4168 | tinyexec@0.3.2: {}
4169 |
4170 | title@4.0.1:
4171 | dependencies:
4172 | arg: 5.0.2
4173 | chalk: 5.4.1
4174 | clipboardy: 4.0.0
4175 |
4176 | trim-lines@3.0.1: {}
4177 |
4178 | trough@2.1.0: {}
4179 |
4180 | ts-dedent@2.2.0: {}
4181 |
4182 | tslib@2.4.1: {}
4183 |
4184 | tslib@2.8.1: {}
4185 |
4186 | twoslash-protocol@0.2.12: {}
4187 |
4188 | twoslash@0.2.12(typescript@4.9.3):
4189 | dependencies:
4190 | '@typescript/vfs': 1.6.0(typescript@4.9.3)
4191 | twoslash-protocol: 0.2.12
4192 | typescript: 4.9.3
4193 | transitivePeerDependencies:
4194 | - supports-color
4195 |
4196 | typescript@4.9.3: {}
4197 |
4198 | ufo@1.5.4: {}
4199 |
4200 | unified@11.0.5:
4201 | dependencies:
4202 | '@types/unist': 3.0.3
4203 | bail: 2.0.2
4204 | devlop: 1.1.0
4205 | extend: 3.0.2
4206 | is-plain-obj: 4.1.0
4207 | trough: 2.1.0
4208 | vfile: 6.0.3
4209 |
4210 | unist-util-find-after@5.0.0:
4211 | dependencies:
4212 | '@types/unist': 3.0.3
4213 | unist-util-is: 6.0.0
4214 |
4215 | unist-util-is@5.2.1:
4216 | dependencies:
4217 | '@types/unist': 2.0.10
4218 |
4219 | unist-util-is@6.0.0:
4220 | dependencies:
4221 | '@types/unist': 3.0.3
4222 |
4223 | unist-util-modify-children@4.0.0:
4224 | dependencies:
4225 | '@types/unist': 3.0.3
4226 | array-iterate: 2.0.1
4227 |
4228 | unist-util-position-from-estree@2.0.0:
4229 | dependencies:
4230 | '@types/unist': 3.0.3
4231 |
4232 | unist-util-position@5.0.0:
4233 | dependencies:
4234 | '@types/unist': 3.0.3
4235 |
4236 | unist-util-remove-position@5.0.0:
4237 | dependencies:
4238 | '@types/unist': 3.0.3
4239 | unist-util-visit: 5.0.0
4240 |
4241 | unist-util-remove@4.0.0:
4242 | dependencies:
4243 | '@types/unist': 3.0.3
4244 | unist-util-is: 6.0.0
4245 | unist-util-visit-parents: 6.0.1
4246 |
4247 | unist-util-stringify-position@4.0.0:
4248 | dependencies:
4249 | '@types/unist': 3.0.3
4250 |
4251 | unist-util-visit-children@3.0.0:
4252 | dependencies:
4253 | '@types/unist': 3.0.3
4254 |
4255 | unist-util-visit-parents@4.1.1:
4256 | dependencies:
4257 | '@types/unist': 2.0.10
4258 | unist-util-is: 5.2.1
4259 |
4260 | unist-util-visit-parents@6.0.1:
4261 | dependencies:
4262 | '@types/unist': 3.0.3
4263 | unist-util-is: 6.0.0
4264 |
4265 | unist-util-visit@3.1.0:
4266 | dependencies:
4267 | '@types/unist': 2.0.10
4268 | unist-util-is: 5.2.1
4269 | unist-util-visit-parents: 4.1.1
4270 |
4271 | unist-util-visit@5.0.0:
4272 | dependencies:
4273 | '@types/unist': 3.0.3
4274 | unist-util-is: 6.0.0
4275 | unist-util-visit-parents: 6.0.1
4276 |
4277 | uuid@9.0.1: {}
4278 |
4279 | vfile-location@5.0.3:
4280 | dependencies:
4281 | '@types/unist': 3.0.3
4282 | vfile: 6.0.3
4283 |
4284 | vfile-message@4.0.2:
4285 | dependencies:
4286 | '@types/unist': 3.0.3
4287 | unist-util-stringify-position: 4.0.0
4288 |
4289 | vfile@6.0.3:
4290 | dependencies:
4291 | '@types/unist': 3.0.3
4292 | vfile-message: 4.0.2
4293 |
4294 | vscode-jsonrpc@8.2.0: {}
4295 |
4296 | vscode-languageserver-protocol@3.17.5:
4297 | dependencies:
4298 | vscode-jsonrpc: 8.2.0
4299 | vscode-languageserver-types: 3.17.5
4300 |
4301 | vscode-languageserver-textdocument@1.0.12: {}
4302 |
4303 | vscode-languageserver-types@3.17.5: {}
4304 |
4305 | vscode-languageserver@9.0.1:
4306 | dependencies:
4307 | vscode-languageserver-protocol: 3.17.5
4308 |
4309 | vscode-uri@3.0.8: {}
4310 |
4311 | web-namespaces@2.0.1: {}
4312 |
4313 | which@2.0.2:
4314 | dependencies:
4315 | isexe: 2.0.0
4316 |
4317 | wicked-good-xpath@1.3.0: {}
4318 |
4319 | xmldom-sre@0.1.31: {}
4320 |
4321 | yaml@2.7.0: {}
4322 |
4323 | yocto-queue@1.1.1: {}
4324 |
4325 | zod-validation-error@3.4.0(zod@3.24.1):
4326 | dependencies:
4327 | zod: 3.24.1
4328 |
4329 | zod@3.24.1: {}
4330 |
4331 | zwitch@2.0.4: {}
4332 |
--------------------------------------------------------------------------------