init
cd4318f7
68 file(s) · +19037 −0
| 1 | + | root = true |
|
| 2 | + | ||
| 3 | + | [*] |
|
| 4 | + | end_of_line = lf |
|
| 5 | + | indent_style = space |
|
| 6 | + | indent_size = 2 |
|
| 7 | + | charset = utf-8 |
|
| 8 | + | trim_trailing_whitespace = true |
|
| 9 | + | insert_final_newline = true |
| 1 | + | dist |
|
| 2 | + | node_modules |
|
| 3 | + | .github |
|
| 4 | + | .changeset |
| 1 | + | /** @type {import("@types/eslint").Linter.Config} */ |
|
| 2 | + | module.exports = { |
|
| 3 | + | ignorePatterns: ["node_modules", "dist"], |
|
| 4 | + | root: true, |
|
| 5 | + | env: { |
|
| 6 | + | node: true, |
|
| 7 | + | }, |
|
| 8 | + | parser: "@typescript-eslint/parser", |
|
| 9 | + | plugins: ["@typescript-eslint", "prettier"], |
|
| 10 | + | extends: [ |
|
| 11 | + | "eslint:recommended", |
|
| 12 | + | "plugin:@typescript-eslint/recommended", |
|
| 13 | + | "plugin:prettier/recommended", |
|
| 14 | + | "plugin:astro/recommended", |
|
| 15 | + | "plugin:astro/jsx-a11y-recommended", |
|
| 16 | + | ], |
|
| 17 | + | overrides: [ |
|
| 18 | + | { |
|
| 19 | + | files: ["*.astro"], |
|
| 20 | + | parser: "astro-eslint-parser", |
|
| 21 | + | parserOptions: { |
|
| 22 | + | parser: "@typescript-eslint/parser", |
|
| 23 | + | extraFileExtensions: [".astro"], |
|
| 24 | + | }, |
|
| 25 | + | rules: { |
|
| 26 | + | "prettier/prettier": "off", |
|
| 27 | + | "import/no-named-as-default-member": "off", |
|
| 28 | + | "import/no-named-as-default": "off", |
|
| 29 | + | "@typescript-eslint/consistent-type-imports": "error", |
|
| 30 | + | "@typescript-eslint/no-unused-vars": "off", |
|
| 31 | + | }, |
|
| 32 | + | }, |
|
| 33 | + | { |
|
| 34 | + | files: ["**/*.mjs"], |
|
| 35 | + | parserOptions: { |
|
| 36 | + | sourceType: "module", |
|
| 37 | + | ecmaVersion: 2015, |
|
| 38 | + | }, |
|
| 39 | + | rules: { |
|
| 40 | + | "import/no-extraneous-dependencies": "off", |
|
| 41 | + | "import/no-unresolved": "off", |
|
| 42 | + | }, |
|
| 43 | + | }, |
|
| 44 | + | { |
|
| 45 | + | files: ["**/*.ts"], |
|
| 46 | + | parser: "@typescript-eslint/parser", |
|
| 47 | + | extends: ["plugin:@typescript-eslint/recommended"], |
|
| 48 | + | rules: { |
|
| 49 | + | "@typescript-eslint/no-unused-vars": [ |
|
| 50 | + | "error", |
|
| 51 | + | { argsIgnorePattern: "^_", destructuredArrayIgnorePattern: "^_" }, |
|
| 52 | + | ], |
|
| 53 | + | "@typescript-eslint/no-non-null-assertion": "off", |
|
| 54 | + | }, |
|
| 55 | + | }, |
|
| 56 | + | ], |
|
| 57 | + | rules: { |
|
| 58 | + | "@typescript-eslint/no-var-requires": "warn", |
|
| 59 | + | }, |
|
| 60 | + | }; |
| 1 | + | # build output |
|
| 2 | + | dist/ |
|
| 3 | + | .output/ |
|
| 4 | + | ||
| 5 | + | # dependencies |
|
| 6 | + | node_modules/ |
|
| 7 | + | ||
| 8 | + | # logs |
|
| 9 | + | npm-debug.log* |
|
| 10 | + | yarn-debug.log* |
|
| 11 | + | yarn-error.log* |
|
| 12 | + | pnpm-debug.log* |
|
| 13 | + | ||
| 14 | + | ||
| 15 | + | # environment variables |
|
| 16 | + | .env |
|
| 17 | + | .env.production |
|
| 18 | + | ||
| 19 | + | # macOS-specific files |
|
| 20 | + | .DS_Store |
|
| 21 | + | ||
| 22 | + | # misc |
|
| 23 | + | *.pem |
|
| 24 | + | .cache |
|
| 25 | + | .astro |
| 1 | + | *.min.js |
|
| 2 | + | **/node_modules/** |
|
| 3 | + | flow-typed |
|
| 4 | + | ||
| 5 | + | # webfont demo styles |
|
| 6 | + | **/specimen_files |
|
| 7 | + | ||
| 8 | + | # built sites |
|
| 9 | + | benchmarks/**/public |
|
| 10 | + | e2e-tests/**/public |
|
| 11 | + | examples/**/public |
|
| 12 | + | integration-tests/**/public |
|
| 13 | + | www/public |
|
| 14 | + | ||
| 15 | + | # cache-dirs |
|
| 16 | + | **/.cache |
|
| 17 | + | ||
| 18 | + | # ignore built packages |
|
| 19 | + | packages/**/*.js |
|
| 20 | + | !packages/*/src/**/*.js |
|
| 21 | + | ||
| 22 | + | # fixtures |
|
| 23 | + | **/__testfixtures__/** |
|
| 24 | + | **/__tests__/fixtures/** |
|
| 25 | + | ||
| 26 | + | infrastructure |
|
| 27 | + | ||
| 28 | + | # coverage |
|
| 29 | + | coverage |
|
| 30 | + | ||
| 31 | + | pnpm-lock.yaml |
|
| 32 | + | dist |
| 1 | + | /** @type {import("@types/prettier").Options} */ |
|
| 2 | + | module.exports = { |
|
| 3 | + | printWidth: 100, |
|
| 4 | + | semi: true, |
|
| 5 | + | singleQuote: false, |
|
| 6 | + | tabWidth: 2, |
|
| 7 | + | useTabs: true, |
|
| 8 | + | plugins: [ |
|
| 9 | + | require("prettier-plugin-astro"), |
|
| 10 | + | require("prettier-plugin-tailwindcss") /* Must come last */, |
|
| 11 | + | ], |
|
| 12 | + | pluginSearchDirs: false, |
|
| 13 | + | overrides: [ |
|
| 14 | + | { |
|
| 15 | + | files: "**/*astro", |
|
| 16 | + | options: { |
|
| 17 | + | parser: "astro", |
|
| 18 | + | }, |
|
| 19 | + | }, |
|
| 20 | + | ], |
|
| 21 | + | }; |
| 1 | + | module.exports = { |
|
| 2 | + | extends: ["stylelint-config-standard", "stylelint-config-prettier"], |
|
| 3 | + | overrides: [ |
|
| 4 | + | { |
|
| 5 | + | files: ["*.astro", "**/*.astro"], |
|
| 6 | + | customSyntax: "postcss-html", |
|
| 7 | + | }, |
|
| 8 | + | ], |
|
| 9 | + | rules: { |
|
| 10 | + | "at-rule-no-unknown": [ |
|
| 11 | + | true, |
|
| 12 | + | { |
|
| 13 | + | ignoreAtRules: ["tailwind", "apply", "variants", "responsive", "screen"], |
|
| 14 | + | }, |
|
| 15 | + | ], |
|
| 16 | + | "function-no-unknown": [true, { ignoreFunctions: ["theme"] }], |
|
| 17 | + | "declaration-block-trailing-semicolon": null, |
|
| 18 | + | "declaration-empty-line-before": "never", |
|
| 19 | + | "no-descending-specificity": null, |
|
| 20 | + | "custom-property-empty-line-before": "never", |
|
| 21 | + | "hue-degree-notation": "number", |
|
| 22 | + | "alpha-value-notation": "number", |
|
| 23 | + | "selector-pseudo-class-no-unknown": [ |
|
| 24 | + | true, |
|
| 25 | + | { |
|
| 26 | + | ignorePseudoClasses: ["global"], |
|
| 27 | + | }, |
|
| 28 | + | ], |
|
| 29 | + | }, |
|
| 30 | + | }; |
| 1 | + | { |
|
| 2 | + | "recommendations": ["astro-build.astro-vscode"], |
|
| 3 | + | "unwantedRecommendations": [] |
|
| 4 | + | } |
| 1 | + | { |
|
| 2 | + | "version": "0.2.0", |
|
| 3 | + | "configurations": [ |
|
| 4 | + | { |
|
| 5 | + | "command": "./node_modules/.bin/astro dev", |
|
| 6 | + | "name": "Development server", |
|
| 7 | + | "request": "launch", |
|
| 8 | + | "type": "node-terminal" |
|
| 9 | + | } |
|
| 10 | + | ] |
|
| 11 | + | } |
| 1 | + | { |
|
| 2 | + | "editor.formatOnSave": true, |
|
| 3 | + | "editor.codeActionsOnSave": { |
|
| 4 | + | "source.fixAll.eslint": true |
|
| 5 | + | }, |
|
| 6 | + | "stylelint.validate": ["css", "less", "postcss", "astro"], |
|
| 7 | + | "stylelint.snippet": ["css", "less", "postcss", "astro"], |
|
| 8 | + | "[markdown]": { |
|
| 9 | + | "editor.wordWrap": "on", |
|
| 10 | + | "editor.codeActionsOnSave": { |
|
| 11 | + | "source.fixAll.markdownlint": true |
|
| 12 | + | } |
|
| 13 | + | }, |
|
| 14 | + | "prettier.documentSelectors": ["**/*.astro"], |
|
| 15 | + | "eslint.validate": [ |
|
| 16 | + | "javascript", |
|
| 17 | + | "javascriptreact", |
|
| 18 | + | "astro", // Enable .astro |
|
| 19 | + | "typescript", // Enable .ts |
|
| 20 | + | "typescriptreact" |
|
| 21 | + | ] |
|
| 22 | + | } |
| 1 | + | MIT License |
|
| 2 | + | ||
| 3 | + | Copyright (c) 2022 Chris Williams |
|
| 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. |
| 1 | + | <div align="center"> |
|
| 2 | + | <img alt="Astro Theme Cactus logo" src="./gh-assets/astro-cactus-logo.png" width="70" /> |
|
| 3 | + | </div> |
|
| 4 | + | <h1 align="center"> |
|
| 5 | + | 🚀 Astro Theme Cactus 🌵 |
|
| 6 | + | </h1> |
|
| 7 | + | ||
| 8 | + | Astro Theme Cactus is a simple opinionated starter built with the Astro framework. Use it to create an easy-to-use blog or website. |
|
| 9 | + | ||
| 10 | + | ## Key Features |
|
| 11 | + | ||
| 12 | + | - Astro Fast 🚀 |
|
| 13 | + | - TailwindCSS Utility classes |
|
| 14 | + | - Accessible, semantic HTML markup |
|
| 15 | + | - Responsive & SEO-friendly |
|
| 16 | + | - Dark / Light mode, using Tailwind and CSS variables |
|
| 17 | + | - [Astro Image Integration](https://docs.astro.build/en/guides/integrations-guide/image/) for optimised images |
|
| 18 | + | - MD & [MDX](https://docs.astro.build/en/guides/markdown-content/#mdx-only-features) posts |
|
| 19 | + | - [Satori](https://github.com/vercel/satori) for creating open graph png images. |
|
| 20 | + | - Pagination |
|
| 21 | + | - [Automatic RSS feed](https://docs.astro.build/en/guides/rss) |
|
| 22 | + | - Shiki code syntax styling |
|
| 23 | + | - Auto-generated [sitemap](https://docs.astro.build/en/guides/integrations-guide/sitemap/) |
|
| 24 | + | ||
| 25 | + | ## Demo 💻 |
|
| 26 | + | ||
| 27 | + | Check out the [Demo](https://astro-theme-cactus.netlify.app/), hosted on Netlify |
|
| 28 | + | ||
| 29 | + | ## Quick start |
|
| 30 | + | ||
| 31 | + | [Create a new repo](https://github.com/chrismwilliams/astro-theme-cactus/generate) from this template. |
|
| 32 | + | ||
| 33 | + | [](https://app.netlify.com/start/deploy?repository=https://github.com/chrismwilliams/astro-theme-cactus) [](https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Fchrismwilliams%2Fastro-theme-cactus&project-name=astro-theme-cactus) |
|
| 34 | + | ||
| 35 | + | ## Commands |
|
| 36 | + | ||
| 37 | + | Replace pnpm with your choice of npm / yarn |
|
| 38 | + | ||
| 39 | + | | Command | Action | |
|
| 40 | + | | :------------- | :------------------------------------------------------------- | |
|
| 41 | + | | `pnpm install` | Installs dependencies | |
|
| 42 | + | | `pnpm dev` | Starts local dev server at `localhost:3000` | |
|
| 43 | + | | `pnpm build` | Build your production site to `./dist/` | |
|
| 44 | + | | `pnpm preview` | Preview your build locally, before deploying | |
|
| 45 | + | | `pnpm sync` | Generate types based on your config in `src/content/config.ts` | |
|
| 46 | + | ||
| 47 | + | ## Configure |
|
| 48 | + | ||
| 49 | + | - Edit the config file `src/site.config.ts` for basic site meta data |
|
| 50 | + | - Update file `astro.config.ts` site property with your own domain |
|
| 51 | + | - Replace & update files within the `/public` folder: |
|
| 52 | + | - favicon.ico & other social icons |
|
| 53 | + | - robots.txt - update the Sitemap url to your own domain |
|
| 54 | + | - manifest.webmanifest |
|
| 55 | + | - Modify file `src/styles/global.css` with your own light and dark styles |
|
| 56 | + | - Edit social links in `src/data/constants.ts` and in turn `src/components/SocialList.astro` to add/replace your media profile. Icons used can be found @ [tablericons](https://tablericons.com/) |
|
| 57 | + | - Create / edit posts for your blog within `src/content/post/` with .md/mdx file(s). See [below](#adding-posts) for more details. |
|
| 58 | + | - OG Image: |
|
| 59 | + | - If you would like to change the style of the generated image the Satori library creates, open up `src/pages/og-image/[slug].png.ts` to the markup function where you can edit the html/tailwind-classes as necessary. You can also use this [satori playground](https://og-playground.vercel.app/) to aid your design. |
|
| 60 | + | - If you would like to generate svg og images rather than the default .png ones, you will need to remove the @resvg/resvg-js library, and return the svg within the body of the get function from the file `src/pages/og-image/[slug].png.ts`. |
|
| 61 | + | - You can also create your own og images and skip satori generating if for you by adding an ogImage property in the frontmatter with a link to the asset, an example can be found in `src/content/post/social-image.md`. More info on frontmatter can be found [here](#frontmatter) |
|
| 62 | + | - Optional: |
|
| 63 | + | - Fonts: This theme sets the body element to the font family `font-mono`, located in the global css file `src/styles/global.css`. You can change fonts by removing the variant `font-mono`, after which TailwindCSS will default to the `font-sans` [font family stack](https://tailwindcss.com/docs/font-family). |
|
| 64 | + | ||
| 65 | + | ## Adding posts |
|
| 66 | + | ||
| 67 | + | This theme utilises [Content Collections](https://docs.astro.build/en/guides/content-collections/) to organise Markdown and/or MDX files, as well as type-checking frontmatter with a schema -> `src/content/config.ts`. |
|
| 68 | + | ||
| 69 | + | Adding a post is a simple as adding your .md(x) file(s) to the `src/content/post` folder, the filename of which will be used as the slug/url. The two posts included with this template are there as an example of how to structure your frontmatter. Additionally, the [Astro docs](https://docs.astro.build/en/guides/markdown-content/) has a detailed section on markdown pages. |
|
| 70 | + | ||
| 71 | + | ### Frontmatter |
|
| 72 | + | ||
| 73 | + | | Property (\* required) | Description | |
|
| 74 | + | | :--------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | |
|
| 75 | + | | title \* | Self explanatory. Used as the text link to the post, the h1 on the posts' page, and the pages title property. Has a max length of 60 chars, set in `src/content/config.ts` | |
|
| 76 | + | | description \* | Similar to above, used as the seo description property. Has a min length of 50 and a max length of 160 chars, set in the post schema. | |
|
| 77 | + | | publishDate \* | Again pretty simple. To change the date format/locale, currently **en-GB**, update/pass the **locale** arg to function **getFormattedDate**, found in `src/utils/date.ts`. | |
|
| 78 | + | | tags | Tags are optional with any created post. Any new tag(s) will be shown in `yourdomain.com/posts` + `yourdomain.com/tags`, and generate the page(s) `yourdomain.com/tags/[yourTag]` | |
|
| 79 | + | | ogImage | This is an optional property. An OG Image will be generated automatically for every post where this property **isn't** provided. If you would like to create your own for a specific post, include this property and a link to your image, the theme will then skip automatically generating one. | |
|
| 80 | + | ||
| 81 | + | ## Analytics |
|
| 82 | + | ||
| 83 | + | You may want to track the number of visitors you receive to your blog/website in order to understand trends and popular posts/pages you've created. There are a number of providers out there one could use, including web hosts such as [vercel](https://vercel.com/analytics), [netlify](https://www.netlify.com/products/analytics/), and [cloudflare](https://www.cloudflare.com/web-analytics/). |
|
| 84 | + | ||
| 85 | + | This theme/template doesn't include a specific solution due to there being a number of use cases and/or options which some people may or may not use. |
|
| 86 | + | ||
| 87 | + | You may be asked to included a snippet inside the **HEAD** tag of your website when setting it up, which can be found in `src/layouts/Base.astro`. Alternatively, you could add the snippet in `src/components/BaseHead.astro`. |
|
| 88 | + | ||
| 89 | + | Another popular provider is google analytics which you could integrate via the above method, or, for example adding [astro-google-analytics](https://www.npmjs.com/package/astro-google-analytics) |
|
| 90 | + | ||
| 91 | + | ```bash |
|
| 92 | + | pnpm install astro-google-analytics |
|
| 93 | + | ``` |
|
| 94 | + | ||
| 95 | + | Edit `src/layouts/Base.astro`, and add: |
|
| 96 | + | ||
| 97 | + | ```tsx |
|
| 98 | + | --- |
|
| 99 | + | import { GoogleAnalytics } from 'astro-google-analytics'; |
|
| 100 | + | // ...other imports |
|
| 101 | + | --- |
|
| 102 | + | ||
| 103 | + | <head> |
|
| 104 | + | <!-- Replace id with your own Google Analytics ID --> |
|
| 105 | + | <GoogleAnalytics id="G-XXXXXXXXXX" /> |
|
| 106 | + | </head> |
|
| 107 | + | ``` |
|
| 108 | + | ||
| 109 | + | ## Deploy |
|
| 110 | + | ||
| 111 | + | [Astro docs](https://docs.astro.build/en/guides/deploy/) has a great section and breakdown of how to deploy your own Astro site on various platforms and their idiosyncrasies. |
|
| 112 | + | ||
| 113 | + | By default the site will be built (see [Commands](#commands) section above) to a `/dist` directory. |
|
| 114 | + | ||
| 115 | + | ## Acknowledgment |
|
| 116 | + | ||
| 117 | + | This theme is inspired by [Hexo Theme Cactus](https://github.com/probberechts/hexo-theme-cactus) |
|
| 118 | + | ||
| 119 | + | ## License |
|
| 120 | + | ||
| 121 | + | MIT |
| 1 | + | import { defineConfig } from "astro/config"; |
|
| 2 | + | import mdx from "@astrojs/mdx"; |
|
| 3 | + | import tailwind from "@astrojs/tailwind"; |
|
| 4 | + | import image from "@astrojs/image"; |
|
| 5 | + | import sitemap from "@astrojs/sitemap"; |
|
| 6 | + | import prefetch from "@astrojs/prefetch"; |
|
| 7 | + | ||
| 8 | + | // https://astro.build/config |
|
| 9 | + | export default defineConfig({ |
|
| 10 | + | site: "https://www.astro-theme-cactus.netlify.app/", |
|
| 11 | + | markdown: { |
|
| 12 | + | shikiConfig: { |
|
| 13 | + | theme: "nord", |
|
| 14 | + | wrap: true, |
|
| 15 | + | }, |
|
| 16 | + | }, |
|
| 17 | + | integrations: [ |
|
| 18 | + | mdx({}), |
|
| 19 | + | tailwind({ |
|
| 20 | + | config: { |
|
| 21 | + | applyBaseStyles: false, |
|
| 22 | + | }, |
|
| 23 | + | }), |
|
| 24 | + | image({ |
|
| 25 | + | serviceEntryPoint: "@astrojs/image/sharp", |
|
| 26 | + | }), |
|
| 27 | + | sitemap(), |
|
| 28 | + | prefetch(), |
|
| 29 | + | ], |
|
| 30 | + | vite: { |
|
| 31 | + | optimizeDeps: { |
|
| 32 | + | exclude: ["@resvg/resvg-js"], |
|
| 33 | + | }, |
|
| 34 | + | }, |
|
| 35 | + | }); |
Binary file — no preview.
| 1 | + | [build] |
|
| 2 | + | command = 'pnpm run build' |
| 1 | + | { |
|
| 2 | + | "name": "astro-cactus", |
|
| 3 | + | "version": "2.1.0", |
|
| 4 | + | "lockfileVersion": 3, |
|
| 5 | + | "requires": true, |
|
| 6 | + | "packages": { |
|
| 7 | + | "": { |
|
| 8 | + | "name": "astro-cactus", |
|
| 9 | + | "version": "2.1.0", |
|
| 10 | + | "dependencies": { |
|
| 11 | + | "@astrojs/prefetch": "^0.1.1", |
|
| 12 | + | "@astrojs/rss": "^2.0.0", |
|
| 13 | + | "astro": "2.0.2", |
|
| 14 | + | "satori": "0.1.2", |
|
| 15 | + | "satori-html": "^0.3.2", |
|
| 16 | + | "sharp": "^0.31.3" |
|
| 17 | + | }, |
|
| 18 | + | "devDependencies": { |
|
| 19 | + | "@astrojs/image": "0.13.0", |
|
| 20 | + | "@astrojs/mdx": "^0.15.1", |
|
| 21 | + | "@astrojs/sitemap": "^1.0.0", |
|
| 22 | + | "@astrojs/tailwind": "3.0.0", |
|
| 23 | + | "@resvg/resvg-js": "^2.2.0", |
|
| 24 | + | "@tailwindcss/aspect-ratio": "^0.4.2", |
|
| 25 | + | "@tailwindcss/line-clamp": "^0.4.2", |
|
| 26 | + | "@tailwindcss/typography": "^0.5.8", |
|
| 27 | + | "@types/eslint": "^8.4.10", |
|
| 28 | + | "@types/prettier": "^2.7.2", |
|
| 29 | + | "@types/sharp": "^0.31.1", |
|
| 30 | + | "@typescript-eslint/eslint-plugin": "^5.48.0", |
|
| 31 | + | "@typescript-eslint/parser": "^5.48.0", |
|
| 32 | + | "astro-eslint-parser": "^0.11.0", |
|
| 33 | + | "autoprefixer": "^10.4.13", |
|
| 34 | + | "eslint": "^8.32.0", |
|
| 35 | + | "eslint-config-prettier": "^8.6.0", |
|
| 36 | + | "eslint-import-resolver-typescript": "^3.5.2", |
|
| 37 | + | "eslint-plugin-astro": "^0.23.0", |
|
| 38 | + | "eslint-plugin-import": "^2.26.0", |
|
| 39 | + | "eslint-plugin-jsx-a11y": "^6.7.1", |
|
| 40 | + | "eslint-plugin-prettier": "^4.2.1", |
|
| 41 | + | "postcss": "^8.4.21", |
|
| 42 | + | "postcss-html": "^1.5.0", |
|
| 43 | + | "prettier": "^2.8.3", |
|
| 44 | + | "prettier-plugin-astro": "0.8.0", |
|
| 45 | + | "prettier-plugin-tailwindcss": "^0.2.2", |
|
| 46 | + | "stylelint": "^14.16.1", |
|
| 47 | + | "stylelint-config-prettier": "^9.0.4", |
|
| 48 | + | "stylelint-config-standard": "^29.0.0", |
|
| 49 | + | "tailwindcss": "^3.2.4", |
|
| 50 | + | "typescript": "^4.9.4" |
|
| 51 | + | } |
|
| 52 | + | }, |
|
| 53 | + | "node_modules/@altano/tiny-async-pool": { |
|
| 54 | + | "version": "1.0.2", |
|
| 55 | + | "resolved": "https://registry.npmjs.org/@altano/tiny-async-pool/-/tiny-async-pool-1.0.2.tgz", |
|
| 56 | + | "integrity": "sha512-qQzaI0TBUPdpjZ3qo5b2ziQY9MSNpbziH2ZrE5lvtUZL+kn9GwVuVJwoOubaoNkeDB+rqEefnpu1k+oMpOCYiw==", |
|
| 57 | + | "dev": true |
|
| 58 | + | }, |
|
| 59 | + | "node_modules/@ampproject/remapping": { |
|
| 60 | + | "version": "2.2.0", |
|
| 61 | + | "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz", |
|
| 62 | + | "integrity": "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==", |
|
| 63 | + | "dependencies": { |
|
| 64 | + | "@jridgewell/gen-mapping": "^0.1.0", |
|
| 65 | + | "@jridgewell/trace-mapping": "^0.3.9" |
|
| 66 | + | }, |
|
| 67 | + | "engines": { |
|
| 68 | + | "node": ">=6.0.0" |
|
| 69 | + | } |
|
| 70 | + | }, |
|
| 71 | + | "node_modules/@astrojs/compiler": { |
|
| 72 | + | "version": "1.1.2", |
|
| 73 | + | "resolved": "https://registry.npmjs.org/@astrojs/compiler/-/compiler-1.1.2.tgz", |
|
| 74 | + | "integrity": "sha512-L3/JrdNwBFKcoDeStmRgJWvI2t/5nNJm7HnGjDy4e8BH3qKv8iQYdpvuQjeYRA00k6I1lxZGBm/0wU+Lg7HPiQ==" |
|
| 75 | + | }, |
|
| 76 | + | "node_modules/@astrojs/image": { |
|
| 77 | + | "version": "0.13.0", |
|
| 78 | + | "resolved": "https://registry.npmjs.org/@astrojs/image/-/image-0.13.0.tgz", |
|
| 79 | + | "integrity": "sha512-18IlEsb/mau4ji9sR7+JVPFJHtgIk7Qh/Ol+Hh/JNcPn/oMrjP6FMU3VrNHPy5Ltvw1DyzkDV4wu+jYKU/V0Hw==", |
|
| 80 | + | "dev": true, |
|
| 81 | + | "dependencies": { |
|
| 82 | + | "@altano/tiny-async-pool": "^1.0.2", |
|
| 83 | + | "http-cache-semantics": "^4.1.0", |
|
| 84 | + | "image-size": "^1.0.2", |
|
| 85 | + | "kleur": "^4.1.5", |
|
| 86 | + | "magic-string": "^0.27.0", |
|
| 87 | + | "mime": "^3.0.0", |
|
| 88 | + | "slash": "^4.0.0" |
|
| 89 | + | }, |
|
| 90 | + | "peerDependencies": { |
|
| 91 | + | "astro": "^2.0.0", |
|
| 92 | + | "sharp": ">=0.31.0" |
|
| 93 | + | }, |
|
| 94 | + | "peerDependenciesMeta": { |
|
| 95 | + | "sharp": { |
|
| 96 | + | "optional": true |
|
| 97 | + | } |
|
| 98 | + | } |
|
| 99 | + | }, |
|
| 100 | + | "node_modules/@astrojs/language-server": { |
|
| 101 | + | "version": "0.28.3", |
|
| 102 | + | "resolved": "https://registry.npmjs.org/@astrojs/language-server/-/language-server-0.28.3.tgz", |
|
| 103 | + | "integrity": "sha512-fPovAX/X46eE2w03jNRMpQ7W9m2mAvNt4Ay65lD9wl1Z5vIQYxlg7Enp9qP225muTr4jSVB5QiLumFJmZMAaVA==", |
|
| 104 | + | "dependencies": { |
|
| 105 | + | "@vscode/emmet-helper": "^2.8.4", |
|
| 106 | + | "events": "^3.3.0", |
|
| 107 | + | "prettier": "^2.7.1", |
|
| 108 | + | "prettier-plugin-astro": "^0.7.0", |
|
| 109 | + | "source-map": "^0.7.3", |
|
| 110 | + | "vscode-css-languageservice": "^6.0.1", |
|
| 111 | + | "vscode-html-languageservice": "^5.0.0", |
|
| 112 | + | "vscode-languageserver": "^8.0.1", |
|
| 113 | + | "vscode-languageserver-protocol": "^3.17.1", |
|
| 114 | + | "vscode-languageserver-textdocument": "^1.0.4", |
|
| 115 | + | "vscode-languageserver-types": "^3.17.1", |
|
| 116 | + | "vscode-uri": "^3.0.3" |
|
| 117 | + | }, |
|
| 118 | + | "bin": { |
|
| 119 | + | "astro-ls": "bin/nodeServer.js" |
|
| 120 | + | } |
|
| 121 | + | }, |
|
| 122 | + | "node_modules/@astrojs/language-server/node_modules/@astrojs/compiler": { |
|
| 123 | + | "version": "0.31.4", |
|
| 124 | + | "resolved": "https://registry.npmjs.org/@astrojs/compiler/-/compiler-0.31.4.tgz", |
|
| 125 | + | "integrity": "sha512-6bBFeDTtPOn4jZaiD3p0f05MEGQL9pw2Zbfj546oFETNmjJFWO3nzHz6/m+P53calknCvyVzZ5YhoBLIvzn5iw==" |
|
| 126 | + | }, |
|
| 127 | + | "node_modules/@astrojs/language-server/node_modules/prettier-plugin-astro": { |
|
| 128 | + | "version": "0.7.2", |
|
| 129 | + | "resolved": "https://registry.npmjs.org/prettier-plugin-astro/-/prettier-plugin-astro-0.7.2.tgz", |
|
| 130 | + | "integrity": "sha512-mmifnkG160BtC727gqoimoxnZT/dwr8ASxpoGGl6EHevhfblSOeu+pwH1LAm5Qu1MynizktztFujHHaijLCkww==", |
|
| 131 | + | "dependencies": { |
|
| 132 | + | "@astrojs/compiler": "^0.31.3", |
|
| 133 | + | "prettier": "^2.7.1", |
|
| 134 | + | "sass-formatter": "^0.7.5", |
|
| 135 | + | "synckit": "^0.8.4" |
|
| 136 | + | }, |
|
| 137 | + | "engines": { |
|
| 138 | + | "node": "^14.15.0 || >=16.0.0", |
|
| 139 | + | "pnpm": ">=7.14.0" |
|
| 140 | + | } |
|
| 141 | + | }, |
|
| 142 | + | "node_modules/@astrojs/markdown-remark": { |
|
| 143 | + | "version": "2.0.1", |
|
| 144 | + | "resolved": "https://registry.npmjs.org/@astrojs/markdown-remark/-/markdown-remark-2.0.1.tgz", |
|
| 145 | + | "integrity": "sha512-xQF1rXGJN18m+zZucwRRtmNehuhPMMhZhi6HWKrtpEAKnHSPk8lqf1GXgKH7/Sypglu8ivdECZ+EGs6kOYVasQ==", |
|
| 146 | + | "dependencies": { |
|
| 147 | + | "@astrojs/prism": "^2.0.0", |
|
| 148 | + | "github-slugger": "^1.4.0", |
|
| 149 | + | "import-meta-resolve": "^2.1.0", |
|
| 150 | + | "rehype-raw": "^6.1.1", |
|
| 151 | + | "rehype-stringify": "^9.0.3", |
|
| 152 | + | "remark-gfm": "^3.0.1", |
|
| 153 | + | "remark-parse": "^10.0.1", |
|
| 154 | + | "remark-rehype": "^10.1.0", |
|
| 155 | + | "remark-smartypants": "^2.0.0", |
|
| 156 | + | "shiki": "^0.11.1", |
|
| 157 | + | "unified": "^10.1.2", |
|
| 158 | + | "unist-util-visit": "^4.1.0", |
|
| 159 | + | "vfile": "^5.3.2" |
|
| 160 | + | }, |
|
| 161 | + | "peerDependencies": { |
|
| 162 | + | "astro": "^2.0.2" |
|
| 163 | + | } |
|
| 164 | + | }, |
|
| 165 | + | "node_modules/@astrojs/mdx": { |
|
| 166 | + | "version": "0.15.2", |
|
| 167 | + | "resolved": "https://registry.npmjs.org/@astrojs/mdx/-/mdx-0.15.2.tgz", |
|
| 168 | + | "integrity": "sha512-vrv1fw5kLZqaV0FHr6IKR46Rq5DENHhqUVZIXpAbvpRG/qXxHpg9QVN9ji+3bgLDKvG2Yz4wi8CYvSjmUtJHBQ==", |
|
| 169 | + | "dev": true, |
|
| 170 | + | "dependencies": { |
|
| 171 | + | "@astrojs/markdown-remark": "^2.0.1", |
|
| 172 | + | "@astrojs/prism": "^2.0.0", |
|
| 173 | + | "@mdx-js/mdx": "^2.1.2", |
|
| 174 | + | "@mdx-js/rollup": "^2.1.1", |
|
| 175 | + | "acorn": "^8.8.0", |
|
| 176 | + | "es-module-lexer": "^0.10.5", |
|
| 177 | + | "estree-util-visit": "^1.2.0", |
|
| 178 | + | "github-slugger": "^1.4.0", |
|
| 179 | + | "gray-matter": "^4.0.3", |
|
| 180 | + | "kleur": "^4.1.4", |
|
| 181 | + | "rehype-raw": "^6.1.1", |
|
| 182 | + | "remark-frontmatter": "^4.0.1", |
|
| 183 | + | "remark-gfm": "^3.0.1", |
|
| 184 | + | "remark-smartypants": "^2.0.0", |
|
| 185 | + | "shiki": "^0.11.1", |
|
| 186 | + | "unist-util-visit": "^4.1.0", |
|
| 187 | + | "vfile": "^5.3.2" |
|
| 188 | + | }, |
|
| 189 | + | "engines": { |
|
| 190 | + | "node": ">=16.12.0" |
|
| 191 | + | } |
|
| 192 | + | }, |
|
| 193 | + | "node_modules/@astrojs/prefetch": { |
|
| 194 | + | "version": "0.1.2", |
|
| 195 | + | "resolved": "https://registry.npmjs.org/@astrojs/prefetch/-/prefetch-0.1.2.tgz", |
|
| 196 | + | "integrity": "sha512-Plf1GLKDyvTHjEKVMH922wc1AmvlFYvEXrbdaMAlgJuoqTRXirP1CennildFHndTetH8swWMlVGwxdG57dN7cA==", |
|
| 197 | + | "dependencies": { |
|
| 198 | + | "throttles": "^1.0.1" |
|
| 199 | + | } |
|
| 200 | + | }, |
|
| 201 | + | "node_modules/@astrojs/prism": { |
|
| 202 | + | "version": "2.0.0", |
|
| 203 | + | "resolved": "https://registry.npmjs.org/@astrojs/prism/-/prism-2.0.0.tgz", |
|
| 204 | + | "integrity": "sha512-YgeoeEPqsxaEpg0rwe/bUq3653LqSQnMjrLlpYwrbQQMQQqz6Y5yXN+RX3SfLJ6ppNb4+Fu2+Z49EXjk48Ihjw==", |
|
| 205 | + | "dependencies": { |
|
| 206 | + | "prismjs": "^1.28.0" |
|
| 207 | + | }, |
|
| 208 | + | "engines": { |
|
| 209 | + | "node": ">=16.12.0" |
|
| 210 | + | } |
|
| 211 | + | }, |
|
| 212 | + | "node_modules/@astrojs/rss": { |
|
| 213 | + | "version": "2.1.1", |
|
| 214 | + | "resolved": "https://registry.npmjs.org/@astrojs/rss/-/rss-2.1.1.tgz", |
|
| 215 | + | "integrity": "sha512-3BpCqyCmVWfrGqyc1YXUQf7O3QjORYNmvxzeKvp0E+7KGiKj8ckRzwj90xGYjbKcb/BwKfzYgek4+BrZ1aqQtA==", |
|
| 216 | + | "dependencies": { |
|
| 217 | + | "fast-xml-parser": "^4.0.8", |
|
| 218 | + | "kleur": "^4.1.5" |
|
| 219 | + | } |
|
| 220 | + | }, |
|
| 221 | + | "node_modules/@astrojs/sitemap": { |
|
| 222 | + | "version": "1.0.1", |
|
| 223 | + | "resolved": "https://registry.npmjs.org/@astrojs/sitemap/-/sitemap-1.0.1.tgz", |
|
| 224 | + | "integrity": "sha512-qexepZPH6/dLToI/njxr2FjvyxJU0HBAnQRNzEggF0ok811oSNC6su1DkyW2VKp0TNPbWoujuSbcb1yFOjnAqA==", |
|
| 225 | + | "dev": true, |
|
| 226 | + | "dependencies": { |
|
| 227 | + | "sitemap": "^7.1.1", |
|
| 228 | + | "zod": "^3.17.3" |
|
| 229 | + | } |
|
| 230 | + | }, |
|
| 231 | + | "node_modules/@astrojs/tailwind": { |
|
| 232 | + | "version": "3.0.0", |
|
| 233 | + | "resolved": "https://registry.npmjs.org/@astrojs/tailwind/-/tailwind-3.0.0.tgz", |
|
| 234 | + | "integrity": "sha512-Ul0LzTIW+QD/qXUaTDSDoe/uNOPSAX6Ce7yTMzl7v+9OlZ4vlgkj1CUq/WkhlKnJ2+SnJvLArEj6yYs/M2V8nA==", |
|
| 235 | + | "dev": true, |
|
| 236 | + | "dependencies": { |
|
| 237 | + | "@proload/core": "^0.3.2", |
|
| 238 | + | "autoprefixer": "^10.4.7", |
|
| 239 | + | "postcss": "^8.4.14", |
|
| 240 | + | "postcss-load-config": "^4.0.1" |
|
| 241 | + | }, |
|
| 242 | + | "peerDependencies": { |
|
| 243 | + | "astro": "^2.0.0", |
|
| 244 | + | "tailwindcss": "^3.0.24" |
|
| 245 | + | } |
|
| 246 | + | }, |
|
| 247 | + | "node_modules/@astrojs/telemetry": { |
|
| 248 | + | "version": "2.0.0", |
|
| 249 | + | "resolved": "https://registry.npmjs.org/@astrojs/telemetry/-/telemetry-2.0.0.tgz", |
|
| 250 | + | "integrity": "sha512-RnWojVMIsql3GGWDP5pNWmhmBQVkCpxGNZ8yPr2cbmUqsUYGSvErhqfkLfro9j2/STi5UDmSpNgjPkQmXpgnKw==", |
|
| 251 | + | "dependencies": { |
|
| 252 | + | "ci-info": "^3.3.1", |
|
| 253 | + | "debug": "^4.3.4", |
|
| 254 | + | "dlv": "^1.1.3", |
|
| 255 | + | "dset": "^3.1.2", |
|
| 256 | + | "is-docker": "^3.0.0", |
|
| 257 | + | "is-wsl": "^2.2.0", |
|
| 258 | + | "undici": "^5.14.0", |
|
| 259 | + | "which-pm-runs": "^1.1.0" |
|
| 260 | + | }, |
|
| 261 | + | "engines": { |
|
| 262 | + | "node": ">=16.12.0" |
|
| 263 | + | } |
|
| 264 | + | }, |
|
| 265 | + | "node_modules/@astrojs/webapi": { |
|
| 266 | + | "version": "2.0.1", |
|
| 267 | + | "resolved": "https://registry.npmjs.org/@astrojs/webapi/-/webapi-2.0.1.tgz", |
|
| 268 | + | "integrity": "sha512-aOOHa86W5Ux77A3dS91YrVlSxtBSJsVK4UhvcXHY0gAl0ZrOStSKSBO45gZ6tFi2AiHu3bzpMtZjwrPHtl+cyg==", |
|
| 269 | + | "dependencies": { |
|
| 270 | + | "undici": "5.18.0" |
|
| 271 | + | } |
|
| 272 | + | }, |
|
| 273 | + | "node_modules/@astrojs/webapi/node_modules/undici": { |
|
| 274 | + | "version": "5.18.0", |
|
| 275 | + | "resolved": "https://registry.npmjs.org/undici/-/undici-5.18.0.tgz", |
|
| 276 | + | "integrity": "sha512-1iVwbhonhFytNdg0P4PqyIAXbdlVZVebtPDvuM36m66mRw4OGrCm2MYynJv/UENFLdP13J1nPVQzVE2zTs1OeA==", |
|
| 277 | + | "dependencies": { |
|
| 278 | + | "busboy": "^1.6.0" |
|
| 279 | + | }, |
|
| 280 | + | "engines": { |
|
| 281 | + | "node": ">=12.18" |
|
| 282 | + | } |
|
| 283 | + | }, |
|
| 284 | + | "node_modules/@babel/code-frame": { |
|
| 285 | + | "version": "7.18.6", |
|
| 286 | + | "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", |
|
| 287 | + | "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", |
|
| 288 | + | "dependencies": { |
|
| 289 | + | "@babel/highlight": "^7.18.6" |
|
| 290 | + | }, |
|
| 291 | + | "engines": { |
|
| 292 | + | "node": ">=6.9.0" |
|
| 293 | + | } |
|
| 294 | + | }, |
|
| 295 | + | "node_modules/@babel/compat-data": { |
|
| 296 | + | "version": "7.21.0", |
|
| 297 | + | "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.21.0.tgz", |
|
| 298 | + | "integrity": "sha512-gMuZsmsgxk/ENC3O/fRw5QY8A9/uxQbbCEypnLIiYYc/qVJtEV7ouxC3EllIIwNzMqAQee5tanFabWsUOutS7g==", |
|
| 299 | + | "engines": { |
|
| 300 | + | "node": ">=6.9.0" |
|
| 301 | + | } |
|
| 302 | + | }, |
|
| 303 | + | "node_modules/@babel/core": { |
|
| 304 | + | "version": "7.21.0", |
|
| 305 | + | "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.21.0.tgz", |
|
| 306 | + | "integrity": "sha512-PuxUbxcW6ZYe656yL3EAhpy7qXKq0DmYsrJLpbB8XrsCP9Nm+XCg9XFMb5vIDliPD7+U/+M+QJlH17XOcB7eXA==", |
|
| 307 | + | "dependencies": { |
|
| 308 | + | "@ampproject/remapping": "^2.2.0", |
|
| 309 | + | "@babel/code-frame": "^7.18.6", |
|
| 310 | + | "@babel/generator": "^7.21.0", |
|
| 311 | + | "@babel/helper-compilation-targets": "^7.20.7", |
|
| 312 | + | "@babel/helper-module-transforms": "^7.21.0", |
|
| 313 | + | "@babel/helpers": "^7.21.0", |
|
| 314 | + | "@babel/parser": "^7.21.0", |
|
| 315 | + | "@babel/template": "^7.20.7", |
|
| 316 | + | "@babel/traverse": "^7.21.0", |
|
| 317 | + | "@babel/types": "^7.21.0", |
|
| 318 | + | "convert-source-map": "^1.7.0", |
|
| 319 | + | "debug": "^4.1.0", |
|
| 320 | + | "gensync": "^1.0.0-beta.2", |
|
| 321 | + | "json5": "^2.2.2", |
|
| 322 | + | "semver": "^6.3.0" |
|
| 323 | + | }, |
|
| 324 | + | "engines": { |
|
| 325 | + | "node": ">=6.9.0" |
|
| 326 | + | }, |
|
| 327 | + | "funding": { |
|
| 328 | + | "type": "opencollective", |
|
| 329 | + | "url": "https://opencollective.com/babel" |
|
| 330 | + | } |
|
| 331 | + | }, |
|
| 332 | + | "node_modules/@babel/core/node_modules/semver": { |
|
| 333 | + | "version": "6.3.0", |
|
| 334 | + | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", |
|
| 335 | + | "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", |
|
| 336 | + | "bin": { |
|
| 337 | + | "semver": "bin/semver.js" |
|
| 338 | + | } |
|
| 339 | + | }, |
|
| 340 | + | "node_modules/@babel/generator": { |
|
| 341 | + | "version": "7.21.1", |
|
| 342 | + | "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.21.1.tgz", |
|
| 343 | + | "integrity": "sha512-1lT45bAYlQhFn/BHivJs43AiW2rg3/UbLyShGfF3C0KmHvO5fSghWd5kBJy30kpRRucGzXStvnnCFniCR2kXAA==", |
|
| 344 | + | "dependencies": { |
|
| 345 | + | "@babel/types": "^7.21.0", |
|
| 346 | + | "@jridgewell/gen-mapping": "^0.3.2", |
|
| 347 | + | "@jridgewell/trace-mapping": "^0.3.17", |
|
| 348 | + | "jsesc": "^2.5.1" |
|
| 349 | + | }, |
|
| 350 | + | "engines": { |
|
| 351 | + | "node": ">=6.9.0" |
|
| 352 | + | } |
|
| 353 | + | }, |
|
| 354 | + | "node_modules/@babel/generator/node_modules/@jridgewell/gen-mapping": { |
|
| 355 | + | "version": "0.3.2", |
|
| 356 | + | "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", |
|
| 357 | + | "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", |
|
| 358 | + | "dependencies": { |
|
| 359 | + | "@jridgewell/set-array": "^1.0.1", |
|
| 360 | + | "@jridgewell/sourcemap-codec": "^1.4.10", |
|
| 361 | + | "@jridgewell/trace-mapping": "^0.3.9" |
|
| 362 | + | }, |
|
| 363 | + | "engines": { |
|
| 364 | + | "node": ">=6.0.0" |
|
| 365 | + | } |
|
| 366 | + | }, |
|
| 367 | + | "node_modules/@babel/helper-annotate-as-pure": { |
|
| 368 | + | "version": "7.18.6", |
|
| 369 | + | "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz", |
|
| 370 | + | "integrity": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==", |
|
| 371 | + | "dependencies": { |
|
| 372 | + | "@babel/types": "^7.18.6" |
|
| 373 | + | }, |
|
| 374 | + | "engines": { |
|
| 375 | + | "node": ">=6.9.0" |
|
| 376 | + | } |
|
| 377 | + | }, |
|
| 378 | + | "node_modules/@babel/helper-compilation-targets": { |
|
| 379 | + | "version": "7.20.7", |
|
| 380 | + | "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.7.tgz", |
|
| 381 | + | "integrity": "sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==", |
|
| 382 | + | "dependencies": { |
|
| 383 | + | "@babel/compat-data": "^7.20.5", |
|
| 384 | + | "@babel/helper-validator-option": "^7.18.6", |
|
| 385 | + | "browserslist": "^4.21.3", |
|
| 386 | + | "lru-cache": "^5.1.1", |
|
| 387 | + | "semver": "^6.3.0" |
|
| 388 | + | }, |
|
| 389 | + | "engines": { |
|
| 390 | + | "node": ">=6.9.0" |
|
| 391 | + | }, |
|
| 392 | + | "peerDependencies": { |
|
| 393 | + | "@babel/core": "^7.0.0" |
|
| 394 | + | } |
|
| 395 | + | }, |
|
| 396 | + | "node_modules/@babel/helper-compilation-targets/node_modules/semver": { |
|
| 397 | + | "version": "6.3.0", |
|
| 398 | + | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", |
|
| 399 | + | "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", |
|
| 400 | + | "bin": { |
|
| 401 | + | "semver": "bin/semver.js" |
|
| 402 | + | } |
|
| 403 | + | }, |
|
| 404 | + | "node_modules/@babel/helper-environment-visitor": { |
|
| 405 | + | "version": "7.18.9", |
|
| 406 | + | "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz", |
|
| 407 | + | "integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==", |
|
| 408 | + | "engines": { |
|
| 409 | + | "node": ">=6.9.0" |
|
| 410 | + | } |
|
| 411 | + | }, |
|
| 412 | + | "node_modules/@babel/helper-function-name": { |
|
| 413 | + | "version": "7.21.0", |
|
| 414 | + | "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.21.0.tgz", |
|
| 415 | + | "integrity": "sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==", |
|
| 416 | + | "dependencies": { |
|
| 417 | + | "@babel/template": "^7.20.7", |
|
| 418 | + | "@babel/types": "^7.21.0" |
|
| 419 | + | }, |
|
| 420 | + | "engines": { |
|
| 421 | + | "node": ">=6.9.0" |
|
| 422 | + | } |
|
| 423 | + | }, |
|
| 424 | + | "node_modules/@babel/helper-hoist-variables": { |
|
| 425 | + | "version": "7.18.6", |
|
| 426 | + | "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", |
|
| 427 | + | "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", |
|
| 428 | + | "dependencies": { |
|
| 429 | + | "@babel/types": "^7.18.6" |
|
| 430 | + | }, |
|
| 431 | + | "engines": { |
|
| 432 | + | "node": ">=6.9.0" |
|
| 433 | + | } |
|
| 434 | + | }, |
|
| 435 | + | "node_modules/@babel/helper-module-imports": { |
|
| 436 | + | "version": "7.18.6", |
|
| 437 | + | "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz", |
|
| 438 | + | "integrity": "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==", |
|
| 439 | + | "dependencies": { |
|
| 440 | + | "@babel/types": "^7.18.6" |
|
| 441 | + | }, |
|
| 442 | + | "engines": { |
|
| 443 | + | "node": ">=6.9.0" |
|
| 444 | + | } |
|
| 445 | + | }, |
|
| 446 | + | "node_modules/@babel/helper-module-transforms": { |
|
| 447 | + | "version": "7.21.2", |
|
| 448 | + | "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.21.2.tgz", |
|
| 449 | + | "integrity": "sha512-79yj2AR4U/Oqq/WOV7Lx6hUjau1Zfo4cI+JLAVYeMV5XIlbOhmjEk5ulbTc9fMpmlojzZHkUUxAiK+UKn+hNQQ==", |
|
| 450 | + | "dependencies": { |
|
| 451 | + | "@babel/helper-environment-visitor": "^7.18.9", |
|
| 452 | + | "@babel/helper-module-imports": "^7.18.6", |
|
| 453 | + | "@babel/helper-simple-access": "^7.20.2", |
|
| 454 | + | "@babel/helper-split-export-declaration": "^7.18.6", |
|
| 455 | + | "@babel/helper-validator-identifier": "^7.19.1", |
|
| 456 | + | "@babel/template": "^7.20.7", |
|
| 457 | + | "@babel/traverse": "^7.21.2", |
|
| 458 | + | "@babel/types": "^7.21.2" |
|
| 459 | + | }, |
|
| 460 | + | "engines": { |
|
| 461 | + | "node": ">=6.9.0" |
|
| 462 | + | } |
|
| 463 | + | }, |
|
| 464 | + | "node_modules/@babel/helper-plugin-utils": { |
|
| 465 | + | "version": "7.20.2", |
|
| 466 | + | "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", |
|
| 467 | + | "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", |
|
| 468 | + | "engines": { |
|
| 469 | + | "node": ">=6.9.0" |
|
| 470 | + | } |
|
| 471 | + | }, |
|
| 472 | + | "node_modules/@babel/helper-simple-access": { |
|
| 473 | + | "version": "7.20.2", |
|
| 474 | + | "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz", |
|
| 475 | + | "integrity": "sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==", |
|
| 476 | + | "dependencies": { |
|
| 477 | + | "@babel/types": "^7.20.2" |
|
| 478 | + | }, |
|
| 479 | + | "engines": { |
|
| 480 | + | "node": ">=6.9.0" |
|
| 481 | + | } |
|
| 482 | + | }, |
|
| 483 | + | "node_modules/@babel/helper-split-export-declaration": { |
|
| 484 | + | "version": "7.18.6", |
|
| 485 | + | "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", |
|
| 486 | + | "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", |
|
| 487 | + | "dependencies": { |
|
| 488 | + | "@babel/types": "^7.18.6" |
|
| 489 | + | }, |
|
| 490 | + | "engines": { |
|
| 491 | + | "node": ">=6.9.0" |
|
| 492 | + | } |
|
| 493 | + | }, |
|
| 494 | + | "node_modules/@babel/helper-string-parser": { |
|
| 495 | + | "version": "7.19.4", |
|
| 496 | + | "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz", |
|
| 497 | + | "integrity": "sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==", |
|
| 498 | + | "engines": { |
|
| 499 | + | "node": ">=6.9.0" |
|
| 500 | + | } |
|
| 501 | + | }, |
|
| 502 | + | "node_modules/@babel/helper-validator-identifier": { |
|
| 503 | + | "version": "7.19.1", |
|
| 504 | + | "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz", |
|
| 505 | + | "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==", |
|
| 506 | + | "engines": { |
|
| 507 | + | "node": ">=6.9.0" |
|
| 508 | + | } |
|
| 509 | + | }, |
|
| 510 | + | "node_modules/@babel/helper-validator-option": { |
|
| 511 | + | "version": "7.21.0", |
|
| 512 | + | "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.21.0.tgz", |
|
| 513 | + | "integrity": "sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==", |
|
| 514 | + | "engines": { |
|
| 515 | + | "node": ">=6.9.0" |
|
| 516 | + | } |
|
| 517 | + | }, |
|
| 518 | + | "node_modules/@babel/helpers": { |
|
| 519 | + | "version": "7.21.0", |
|
| 520 | + | "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.21.0.tgz", |
|
| 521 | + | "integrity": "sha512-XXve0CBtOW0pd7MRzzmoyuSj0e3SEzj8pgyFxnTT1NJZL38BD1MK7yYrm8yefRPIDvNNe14xR4FdbHwpInD4rA==", |
|
| 522 | + | "dependencies": { |
|
| 523 | + | "@babel/template": "^7.20.7", |
|
| 524 | + | "@babel/traverse": "^7.21.0", |
|
| 525 | + | "@babel/types": "^7.21.0" |
|
| 526 | + | }, |
|
| 527 | + | "engines": { |
|
| 528 | + | "node": ">=6.9.0" |
|
| 529 | + | } |
|
| 530 | + | }, |
|
| 531 | + | "node_modules/@babel/highlight": { |
|
| 532 | + | "version": "7.18.6", |
|
| 533 | + | "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", |
|
| 534 | + | "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", |
|
| 535 | + | "dependencies": { |
|
| 536 | + | "@babel/helper-validator-identifier": "^7.18.6", |
|
| 537 | + | "chalk": "^2.0.0", |
|
| 538 | + | "js-tokens": "^4.0.0" |
|
| 539 | + | }, |
|
| 540 | + | "engines": { |
|
| 541 | + | "node": ">=6.9.0" |
|
| 542 | + | } |
|
| 543 | + | }, |
|
| 544 | + | "node_modules/@babel/parser": { |
|
| 545 | + | "version": "7.21.2", |
|
| 546 | + | "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.21.2.tgz", |
|
| 547 | + | "integrity": "sha512-URpaIJQwEkEC2T9Kn+Ai6Xe/02iNaVCuT/PtoRz3GPVJVDpPd7mLo+VddTbhCRU9TXqW5mSrQfXZyi8kDKOVpQ==", |
|
| 548 | + | "bin": { |
|
| 549 | + | "parser": "bin/babel-parser.js" |
|
| 550 | + | }, |
|
| 551 | + | "engines": { |
|
| 552 | + | "node": ">=6.0.0" |
|
| 553 | + | } |
|
| 554 | + | }, |
|
| 555 | + | "node_modules/@babel/plugin-syntax-jsx": { |
|
| 556 | + | "version": "7.18.6", |
|
| 557 | + | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz", |
|
| 558 | + | "integrity": "sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==", |
|
| 559 | + | "dependencies": { |
|
| 560 | + | "@babel/helper-plugin-utils": "^7.18.6" |
|
| 561 | + | }, |
|
| 562 | + | "engines": { |
|
| 563 | + | "node": ">=6.9.0" |
|
| 564 | + | }, |
|
| 565 | + | "peerDependencies": { |
|
| 566 | + | "@babel/core": "^7.0.0-0" |
|
| 567 | + | } |
|
| 568 | + | }, |
|
| 569 | + | "node_modules/@babel/plugin-transform-react-jsx": { |
|
| 570 | + | "version": "7.21.0", |
|
| 571 | + | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.21.0.tgz", |
|
| 572 | + | "integrity": "sha512-6OAWljMvQrZjR2DaNhVfRz6dkCAVV+ymcLUmaf8bccGOHn2v5rHJK3tTpij0BuhdYWP4LLaqj5lwcdlpAAPuvg==", |
|
| 573 | + | "dependencies": { |
|
| 574 | + | "@babel/helper-annotate-as-pure": "^7.18.6", |
|
| 575 | + | "@babel/helper-module-imports": "^7.18.6", |
|
| 576 | + | "@babel/helper-plugin-utils": "^7.20.2", |
|
| 577 | + | "@babel/plugin-syntax-jsx": "^7.18.6", |
|
| 578 | + | "@babel/types": "^7.21.0" |
|
| 579 | + | }, |
|
| 580 | + | "engines": { |
|
| 581 | + | "node": ">=6.9.0" |
|
| 582 | + | }, |
|
| 583 | + | "peerDependencies": { |
|
| 584 | + | "@babel/core": "^7.0.0-0" |
|
| 585 | + | } |
|
| 586 | + | }, |
|
| 587 | + | "node_modules/@babel/runtime": { |
|
| 588 | + | "version": "7.21.0", |
|
| 589 | + | "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.0.tgz", |
|
| 590 | + | "integrity": "sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw==", |
|
| 591 | + | "dev": true, |
|
| 592 | + | "dependencies": { |
|
| 593 | + | "regenerator-runtime": "^0.13.11" |
|
| 594 | + | }, |
|
| 595 | + | "engines": { |
|
| 596 | + | "node": ">=6.9.0" |
|
| 597 | + | } |
|
| 598 | + | }, |
|
| 599 | + | "node_modules/@babel/template": { |
|
| 600 | + | "version": "7.20.7", |
|
| 601 | + | "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz", |
|
| 602 | + | "integrity": "sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==", |
|
| 603 | + | "dependencies": { |
|
| 604 | + | "@babel/code-frame": "^7.18.6", |
|
| 605 | + | "@babel/parser": "^7.20.7", |
|
| 606 | + | "@babel/types": "^7.20.7" |
|
| 607 | + | }, |
|
| 608 | + | "engines": { |
|
| 609 | + | "node": ">=6.9.0" |
|
| 610 | + | } |
|
| 611 | + | }, |
|
| 612 | + | "node_modules/@babel/traverse": { |
|
| 613 | + | "version": "7.21.2", |
|
| 614 | + | "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.21.2.tgz", |
|
| 615 | + | "integrity": "sha512-ts5FFU/dSUPS13tv8XiEObDu9K+iagEKME9kAbaP7r0Y9KtZJZ+NGndDvWoRAYNpeWafbpFeki3q9QoMD6gxyw==", |
|
| 616 | + | "dependencies": { |
|
| 617 | + | "@babel/code-frame": "^7.18.6", |
|
| 618 | + | "@babel/generator": "^7.21.1", |
|
| 619 | + | "@babel/helper-environment-visitor": "^7.18.9", |
|
| 620 | + | "@babel/helper-function-name": "^7.21.0", |
|
| 621 | + | "@babel/helper-hoist-variables": "^7.18.6", |
|
| 622 | + | "@babel/helper-split-export-declaration": "^7.18.6", |
|
| 623 | + | "@babel/parser": "^7.21.2", |
|
| 624 | + | "@babel/types": "^7.21.2", |
|
| 625 | + | "debug": "^4.1.0", |
|
| 626 | + | "globals": "^11.1.0" |
|
| 627 | + | }, |
|
| 628 | + | "engines": { |
|
| 629 | + | "node": ">=6.9.0" |
|
| 630 | + | } |
|
| 631 | + | }, |
|
| 632 | + | "node_modules/@babel/types": { |
|
| 633 | + | "version": "7.21.2", |
|
| 634 | + | "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.21.2.tgz", |
|
| 635 | + | "integrity": "sha512-3wRZSs7jiFaB8AjxiiD+VqN5DTG2iRvJGQ+qYFrs/654lg6kGTQWIOFjlBo5RaXuAZjBmP3+OQH4dmhqiiyYxw==", |
|
| 636 | + | "dependencies": { |
|
| 637 | + | "@babel/helper-string-parser": "^7.19.4", |
|
| 638 | + | "@babel/helper-validator-identifier": "^7.19.1", |
|
| 639 | + | "to-fast-properties": "^2.0.0" |
|
| 640 | + | }, |
|
| 641 | + | "engines": { |
|
| 642 | + | "node": ">=6.9.0" |
|
| 643 | + | } |
|
| 644 | + | }, |
|
| 645 | + | "node_modules/@csstools/selector-specificity": { |
|
| 646 | + | "version": "2.1.1", |
|
| 647 | + | "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-2.1.1.tgz", |
|
| 648 | + | "integrity": "sha512-jwx+WCqszn53YHOfvFMJJRd/B2GqkCBt+1MJSG6o5/s8+ytHMvDZXsJgUEWLk12UnLd7HYKac4BYU5i/Ron1Cw==", |
|
| 649 | + | "dev": true, |
|
| 650 | + | "engines": { |
|
| 651 | + | "node": "^14 || ^16 || >=18" |
|
| 652 | + | }, |
|
| 653 | + | "funding": { |
|
| 654 | + | "type": "opencollective", |
|
| 655 | + | "url": "https://opencollective.com/csstools" |
|
| 656 | + | }, |
|
| 657 | + | "peerDependencies": { |
|
| 658 | + | "postcss": "^8.4", |
|
| 659 | + | "postcss-selector-parser": "^6.0.10" |
|
| 660 | + | } |
|
| 661 | + | }, |
|
| 662 | + | "node_modules/@emmetio/abbreviation": { |
|
| 663 | + | "version": "2.2.3", |
|
| 664 | + | "resolved": "https://registry.npmjs.org/@emmetio/abbreviation/-/abbreviation-2.2.3.tgz", |
|
| 665 | + | "integrity": "sha512-87pltuCPt99aL+y9xS6GPZ+Wmmyhll2WXH73gG/xpGcQ84DRnptBsI2r0BeIQ0EB/SQTOe2ANPqFqj3Rj5FOGA==", |
|
| 666 | + | "dependencies": { |
|
| 667 | + | "@emmetio/scanner": "^1.0.0" |
|
| 668 | + | } |
|
| 669 | + | }, |
|
| 670 | + | "node_modules/@emmetio/css-abbreviation": { |
|
| 671 | + | "version": "2.1.4", |
|
| 672 | + | "resolved": "https://registry.npmjs.org/@emmetio/css-abbreviation/-/css-abbreviation-2.1.4.tgz", |
|
| 673 | + | "integrity": "sha512-qk9L60Y+uRtM5CPbB0y+QNl/1XKE09mSO+AhhSauIfr2YOx/ta3NJw2d8RtCFxgzHeRqFRr8jgyzThbu+MZ4Uw==", |
|
| 674 | + | "dependencies": { |
|
| 675 | + | "@emmetio/scanner": "^1.0.0" |
|
| 676 | + | } |
|
| 677 | + | }, |
|
| 678 | + | "node_modules/@emmetio/scanner": { |
|
| 679 | + | "version": "1.0.0", |
|
| 680 | + | "resolved": "https://registry.npmjs.org/@emmetio/scanner/-/scanner-1.0.0.tgz", |
|
| 681 | + | "integrity": "sha512-8HqW8EVqjnCmWXVpqAOZf+EGESdkR27odcMMMGefgKXtar00SoYNSryGv//TELI4T3QFsECo78p+0lmalk/CFA==" |
|
| 682 | + | }, |
|
| 683 | + | "node_modules/@esbuild/android-arm": { |
|
| 684 | + | "version": "0.16.17", |
|
| 685 | + | "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.16.17.tgz", |
|
| 686 | + | "integrity": "sha512-N9x1CMXVhtWEAMS7pNNONyA14f71VPQN9Cnavj1XQh6T7bskqiLLrSca4O0Vr8Wdcga943eThxnVp3JLnBMYtw==", |
|
| 687 | + | "cpu": [ |
|
| 688 | + | "arm" |
|
| 689 | + | ], |
|
| 690 | + | "optional": true, |
|
| 691 | + | "os": [ |
|
| 692 | + | "android" |
|
| 693 | + | ], |
|
| 694 | + | "engines": { |
|
| 695 | + | "node": ">=12" |
|
| 696 | + | } |
|
| 697 | + | }, |
|
| 698 | + | "node_modules/@esbuild/android-arm64": { |
|
| 699 | + | "version": "0.16.17", |
|
| 700 | + | "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.16.17.tgz", |
|
| 701 | + | "integrity": "sha512-MIGl6p5sc3RDTLLkYL1MyL8BMRN4tLMRCn+yRJJmEDvYZ2M7tmAf80hx1kbNEUX2KJ50RRtxZ4JHLvCfuB6kBg==", |
|
| 702 | + | "cpu": [ |
|
| 703 | + | "arm64" |
|
| 704 | + | ], |
|
| 705 | + | "optional": true, |
|
| 706 | + | "os": [ |
|
| 707 | + | "android" |
|
| 708 | + | ], |
|
| 709 | + | "engines": { |
|
| 710 | + | "node": ">=12" |
|
| 711 | + | } |
|
| 712 | + | }, |
|
| 713 | + | "node_modules/@esbuild/android-x64": { |
|
| 714 | + | "version": "0.16.17", |
|
| 715 | + | "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.16.17.tgz", |
|
| 716 | + | "integrity": "sha512-a3kTv3m0Ghh4z1DaFEuEDfz3OLONKuFvI4Xqczqx4BqLyuFaFkuaG4j2MtA6fuWEFeC5x9IvqnX7drmRq/fyAQ==", |
|
| 717 | + | "cpu": [ |
|
| 718 | + | "x64" |
|
| 719 | + | ], |
|
| 720 | + | "optional": true, |
|
| 721 | + | "os": [ |
|
| 722 | + | "android" |
|
| 723 | + | ], |
|
| 724 | + | "engines": { |
|
| 725 | + | "node": ">=12" |
|
| 726 | + | } |
|
| 727 | + | }, |
|
| 728 | + | "node_modules/@esbuild/darwin-arm64": { |
|
| 729 | + | "version": "0.16.17", |
|
| 730 | + | "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.16.17.tgz", |
|
| 731 | + | "integrity": "sha512-/2agbUEfmxWHi9ARTX6OQ/KgXnOWfsNlTeLcoV7HSuSTv63E4DqtAc+2XqGw1KHxKMHGZgbVCZge7HXWX9Vn+w==", |
|
| 732 | + | "cpu": [ |
|
| 733 | + | "arm64" |
|
| 734 | + | ], |
|
| 735 | + | "optional": true, |
|
| 736 | + | "os": [ |
|
| 737 | + | "darwin" |
|
| 738 | + | ], |
|
| 739 | + | "engines": { |
|
| 740 | + | "node": ">=12" |
|
| 741 | + | } |
|
| 742 | + | }, |
|
| 743 | + | "node_modules/@esbuild/darwin-x64": { |
|
| 744 | + | "version": "0.16.17", |
|
| 745 | + | "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.16.17.tgz", |
|
| 746 | + | "integrity": "sha512-2By45OBHulkd9Svy5IOCZt376Aa2oOkiE9QWUK9fe6Tb+WDr8hXL3dpqi+DeLiMed8tVXspzsTAvd0jUl96wmg==", |
|
| 747 | + | "cpu": [ |
|
| 748 | + | "x64" |
|
| 749 | + | ], |
|
| 750 | + | "optional": true, |
|
| 751 | + | "os": [ |
|
| 752 | + | "darwin" |
|
| 753 | + | ], |
|
| 754 | + | "engines": { |
|
| 755 | + | "node": ">=12" |
|
| 756 | + | } |
|
| 757 | + | }, |
|
| 758 | + | "node_modules/@esbuild/freebsd-arm64": { |
|
| 759 | + | "version": "0.16.17", |
|
| 760 | + | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.16.17.tgz", |
|
| 761 | + | "integrity": "sha512-mt+cxZe1tVx489VTb4mBAOo2aKSnJ33L9fr25JXpqQqzbUIw/yzIzi+NHwAXK2qYV1lEFp4OoVeThGjUbmWmdw==", |
|
| 762 | + | "cpu": [ |
|
| 763 | + | "arm64" |
|
| 764 | + | ], |
|
| 765 | + | "optional": true, |
|
| 766 | + | "os": [ |
|
| 767 | + | "freebsd" |
|
| 768 | + | ], |
|
| 769 | + | "engines": { |
|
| 770 | + | "node": ">=12" |
|
| 771 | + | } |
|
| 772 | + | }, |
|
| 773 | + | "node_modules/@esbuild/freebsd-x64": { |
|
| 774 | + | "version": "0.16.17", |
|
| 775 | + | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.16.17.tgz", |
|
| 776 | + | "integrity": "sha512-8ScTdNJl5idAKjH8zGAsN7RuWcyHG3BAvMNpKOBaqqR7EbUhhVHOqXRdL7oZvz8WNHL2pr5+eIT5c65kA6NHug==", |
|
| 777 | + | "cpu": [ |
|
| 778 | + | "x64" |
|
| 779 | + | ], |
|
| 780 | + | "optional": true, |
|
| 781 | + | "os": [ |
|
| 782 | + | "freebsd" |
|
| 783 | + | ], |
|
| 784 | + | "engines": { |
|
| 785 | + | "node": ">=12" |
|
| 786 | + | } |
|
| 787 | + | }, |
|
| 788 | + | "node_modules/@esbuild/linux-arm": { |
|
| 789 | + | "version": "0.16.17", |
|
| 790 | + | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.16.17.tgz", |
|
| 791 | + | "integrity": "sha512-iihzrWbD4gIT7j3caMzKb/RsFFHCwqqbrbH9SqUSRrdXkXaygSZCZg1FybsZz57Ju7N/SHEgPyaR0LZ8Zbe9gQ==", |
|
| 792 | + | "cpu": [ |
|
| 793 | + | "arm" |
|
| 794 | + | ], |
|
| 795 | + | "optional": true, |
|
| 796 | + | "os": [ |
|
| 797 | + | "linux" |
|
| 798 | + | ], |
|
| 799 | + | "engines": { |
|
| 800 | + | "node": ">=12" |
|
| 801 | + | } |
|
| 802 | + | }, |
|
| 803 | + | "node_modules/@esbuild/linux-arm64": { |
|
| 804 | + | "version": "0.16.17", |
|
| 805 | + | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.16.17.tgz", |
|
| 806 | + | "integrity": "sha512-7S8gJnSlqKGVJunnMCrXHU9Q8Q/tQIxk/xL8BqAP64wchPCTzuM6W3Ra8cIa1HIflAvDnNOt2jaL17vaW+1V0g==", |
|
| 807 | + | "cpu": [ |
|
| 808 | + | "arm64" |
|
| 809 | + | ], |
|
| 810 | + | "optional": true, |
|
| 811 | + | "os": [ |
|
| 812 | + | "linux" |
|
| 813 | + | ], |
|
| 814 | + | "engines": { |
|
| 815 | + | "node": ">=12" |
|
| 816 | + | } |
|
| 817 | + | }, |
|
| 818 | + | "node_modules/@esbuild/linux-ia32": { |
|
| 819 | + | "version": "0.16.17", |
|
| 820 | + | "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.16.17.tgz", |
|
| 821 | + | "integrity": "sha512-kiX69+wcPAdgl3Lonh1VI7MBr16nktEvOfViszBSxygRQqSpzv7BffMKRPMFwzeJGPxcio0pdD3kYQGpqQ2SSg==", |
|
| 822 | + | "cpu": [ |
|
| 823 | + | "ia32" |
|
| 824 | + | ], |
|
| 825 | + | "optional": true, |
|
| 826 | + | "os": [ |
|
| 827 | + | "linux" |
|
| 828 | + | ], |
|
| 829 | + | "engines": { |
|
| 830 | + | "node": ">=12" |
|
| 831 | + | } |
|
| 832 | + | }, |
|
| 833 | + | "node_modules/@esbuild/linux-loong64": { |
|
| 834 | + | "version": "0.16.17", |
|
| 835 | + | "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.16.17.tgz", |
|
| 836 | + | "integrity": "sha512-dTzNnQwembNDhd654cA4QhbS9uDdXC3TKqMJjgOWsC0yNCbpzfWoXdZvp0mY7HU6nzk5E0zpRGGx3qoQg8T2DQ==", |
|
| 837 | + | "cpu": [ |
|
| 838 | + | "loong64" |
|
| 839 | + | ], |
|
| 840 | + | "optional": true, |
|
| 841 | + | "os": [ |
|
| 842 | + | "linux" |
|
| 843 | + | ], |
|
| 844 | + | "engines": { |
|
| 845 | + | "node": ">=12" |
|
| 846 | + | } |
|
| 847 | + | }, |
|
| 848 | + | "node_modules/@esbuild/linux-mips64el": { |
|
| 849 | + | "version": "0.16.17", |
|
| 850 | + | "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.16.17.tgz", |
|
| 851 | + | "integrity": "sha512-ezbDkp2nDl0PfIUn0CsQ30kxfcLTlcx4Foz2kYv8qdC6ia2oX5Q3E/8m6lq84Dj/6b0FrkgD582fJMIfHhJfSw==", |
|
| 852 | + | "cpu": [ |
|
| 853 | + | "mips64el" |
|
| 854 | + | ], |
|
| 855 | + | "optional": true, |
|
| 856 | + | "os": [ |
|
| 857 | + | "linux" |
|
| 858 | + | ], |
|
| 859 | + | "engines": { |
|
| 860 | + | "node": ">=12" |
|
| 861 | + | } |
|
| 862 | + | }, |
|
| 863 | + | "node_modules/@esbuild/linux-ppc64": { |
|
| 864 | + | "version": "0.16.17", |
|
| 865 | + | "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.16.17.tgz", |
|
| 866 | + | "integrity": "sha512-dzS678gYD1lJsW73zrFhDApLVdM3cUF2MvAa1D8K8KtcSKdLBPP4zZSLy6LFZ0jYqQdQ29bjAHJDgz0rVbLB3g==", |
|
| 867 | + | "cpu": [ |
|
| 868 | + | "ppc64" |
|
| 869 | + | ], |
|
| 870 | + | "optional": true, |
|
| 871 | + | "os": [ |
|
| 872 | + | "linux" |
|
| 873 | + | ], |
|
| 874 | + | "engines": { |
|
| 875 | + | "node": ">=12" |
|
| 876 | + | } |
|
| 877 | + | }, |
|
| 878 | + | "node_modules/@esbuild/linux-riscv64": { |
|
| 879 | + | "version": "0.16.17", |
|
| 880 | + | "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.16.17.tgz", |
|
| 881 | + | "integrity": "sha512-ylNlVsxuFjZK8DQtNUwiMskh6nT0vI7kYl/4fZgV1llP5d6+HIeL/vmmm3jpuoo8+NuXjQVZxmKuhDApK0/cKw==", |
|
| 882 | + | "cpu": [ |
|
| 883 | + | "riscv64" |
|
| 884 | + | ], |
|
| 885 | + | "optional": true, |
|
| 886 | + | "os": [ |
|
| 887 | + | "linux" |
|
| 888 | + | ], |
|
| 889 | + | "engines": { |
|
| 890 | + | "node": ">=12" |
|
| 891 | + | } |
|
| 892 | + | }, |
|
| 893 | + | "node_modules/@esbuild/linux-s390x": { |
|
| 894 | + | "version": "0.16.17", |
|
| 895 | + | "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.16.17.tgz", |
|
| 896 | + | "integrity": "sha512-gzy7nUTO4UA4oZ2wAMXPNBGTzZFP7mss3aKR2hH+/4UUkCOyqmjXiKpzGrY2TlEUhbbejzXVKKGazYcQTZWA/w==", |
|
| 897 | + | "cpu": [ |
|
| 898 | + | "s390x" |
|
| 899 | + | ], |
|
| 900 | + | "optional": true, |
|
| 901 | + | "os": [ |
|
| 902 | + | "linux" |
|
| 903 | + | ], |
|
| 904 | + | "engines": { |
|
| 905 | + | "node": ">=12" |
|
| 906 | + | } |
|
| 907 | + | }, |
|
| 908 | + | "node_modules/@esbuild/linux-x64": { |
|
| 909 | + | "version": "0.16.17", |
|
| 910 | + | "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.16.17.tgz", |
|
| 911 | + | "integrity": "sha512-mdPjPxfnmoqhgpiEArqi4egmBAMYvaObgn4poorpUaqmvzzbvqbowRllQ+ZgzGVMGKaPkqUmPDOOFQRUFDmeUw==", |
|
| 912 | + | "cpu": [ |
|
| 913 | + | "x64" |
|
| 914 | + | ], |
|
| 915 | + | "optional": true, |
|
| 916 | + | "os": [ |
|
| 917 | + | "linux" |
|
| 918 | + | ], |
|
| 919 | + | "engines": { |
|
| 920 | + | "node": ">=12" |
|
| 921 | + | } |
|
| 922 | + | }, |
|
| 923 | + | "node_modules/@esbuild/netbsd-x64": { |
|
| 924 | + | "version": "0.16.17", |
|
| 925 | + | "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.16.17.tgz", |
|
| 926 | + | "integrity": "sha512-/PzmzD/zyAeTUsduZa32bn0ORug+Jd1EGGAUJvqfeixoEISYpGnAezN6lnJoskauoai0Jrs+XSyvDhppCPoKOA==", |
|
| 927 | + | "cpu": [ |
|
| 928 | + | "x64" |
|
| 929 | + | ], |
|
| 930 | + | "optional": true, |
|
| 931 | + | "os": [ |
|
| 932 | + | "netbsd" |
|
| 933 | + | ], |
|
| 934 | + | "engines": { |
|
| 935 | + | "node": ">=12" |
|
| 936 | + | } |
|
| 937 | + | }, |
|
| 938 | + | "node_modules/@esbuild/openbsd-x64": { |
|
| 939 | + | "version": "0.16.17", |
|
| 940 | + | "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.16.17.tgz", |
|
| 941 | + | "integrity": "sha512-2yaWJhvxGEz2RiftSk0UObqJa/b+rIAjnODJgv2GbGGpRwAfpgzyrg1WLK8rqA24mfZa9GvpjLcBBg8JHkoodg==", |
|
| 942 | + | "cpu": [ |
|
| 943 | + | "x64" |
|
| 944 | + | ], |
|
| 945 | + | "optional": true, |
|
| 946 | + | "os": [ |
|
| 947 | + | "openbsd" |
|
| 948 | + | ], |
|
| 949 | + | "engines": { |
|
| 950 | + | "node": ">=12" |
|
| 951 | + | } |
|
| 952 | + | }, |
|
| 953 | + | "node_modules/@esbuild/sunos-x64": { |
|
| 954 | + | "version": "0.16.17", |
|
| 955 | + | "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.16.17.tgz", |
|
| 956 | + | "integrity": "sha512-xtVUiev38tN0R3g8VhRfN7Zl42YCJvyBhRKw1RJjwE1d2emWTVToPLNEQj/5Qxc6lVFATDiy6LjVHYhIPrLxzw==", |
|
| 957 | + | "cpu": [ |
|
| 958 | + | "x64" |
|
| 959 | + | ], |
|
| 960 | + | "optional": true, |
|
| 961 | + | "os": [ |
|
| 962 | + | "sunos" |
|
| 963 | + | ], |
|
| 964 | + | "engines": { |
|
| 965 | + | "node": ">=12" |
|
| 966 | + | } |
|
| 967 | + | }, |
|
| 968 | + | "node_modules/@esbuild/win32-arm64": { |
|
| 969 | + | "version": "0.16.17", |
|
| 970 | + | "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.16.17.tgz", |
|
| 971 | + | "integrity": "sha512-ga8+JqBDHY4b6fQAmOgtJJue36scANy4l/rL97W+0wYmijhxKetzZdKOJI7olaBaMhWt8Pac2McJdZLxXWUEQw==", |
|
| 972 | + | "cpu": [ |
|
| 973 | + | "arm64" |
|
| 974 | + | ], |
|
| 975 | + | "optional": true, |
|
| 976 | + | "os": [ |
|
| 977 | + | "win32" |
|
| 978 | + | ], |
|
| 979 | + | "engines": { |
|
| 980 | + | "node": ">=12" |
|
| 981 | + | } |
|
| 982 | + | }, |
|
| 983 | + | "node_modules/@esbuild/win32-ia32": { |
|
| 984 | + | "version": "0.16.17", |
|
| 985 | + | "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.16.17.tgz", |
|
| 986 | + | "integrity": "sha512-WnsKaf46uSSF/sZhwnqE4L/F89AYNMiD4YtEcYekBt9Q7nj0DiId2XH2Ng2PHM54qi5oPrQ8luuzGszqi/veig==", |
|
| 987 | + | "cpu": [ |
|
| 988 | + | "ia32" |
|
| 989 | + | ], |
|
| 990 | + | "optional": true, |
|
| 991 | + | "os": [ |
|
| 992 | + | "win32" |
|
| 993 | + | ], |
|
| 994 | + | "engines": { |
|
| 995 | + | "node": ">=12" |
|
| 996 | + | } |
|
| 997 | + | }, |
|
| 998 | + | "node_modules/@esbuild/win32-x64": { |
|
| 999 | + | "version": "0.16.17", |
|
| 1000 | + | "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.16.17.tgz", |
|
| 1001 | + | "integrity": "sha512-y+EHuSchhL7FjHgvQL/0fnnFmO4T1bhvWANX6gcnqTjtnKWbTvUMCpGnv2+t+31d7RzyEAYAd4u2fnIhHL6N/Q==", |
|
| 1002 | + | "cpu": [ |
|
| 1003 | + | "x64" |
|
| 1004 | + | ], |
|
| 1005 | + | "optional": true, |
|
| 1006 | + | "os": [ |
|
| 1007 | + | "win32" |
|
| 1008 | + | ], |
|
| 1009 | + | "engines": { |
|
| 1010 | + | "node": ">=12" |
|
| 1011 | + | } |
|
| 1012 | + | }, |
|
| 1013 | + | "node_modules/@eslint/eslintrc": { |
|
| 1014 | + | "version": "1.4.1", |
|
| 1015 | + | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.4.1.tgz", |
|
| 1016 | + | "integrity": "sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==", |
|
| 1017 | + | "dev": true, |
|
| 1018 | + | "dependencies": { |
|
| 1019 | + | "ajv": "^6.12.4", |
|
| 1020 | + | "debug": "^4.3.2", |
|
| 1021 | + | "espree": "^9.4.0", |
|
| 1022 | + | "globals": "^13.19.0", |
|
| 1023 | + | "ignore": "^5.2.0", |
|
| 1024 | + | "import-fresh": "^3.2.1", |
|
| 1025 | + | "js-yaml": "^4.1.0", |
|
| 1026 | + | "minimatch": "^3.1.2", |
|
| 1027 | + | "strip-json-comments": "^3.1.1" |
|
| 1028 | + | }, |
|
| 1029 | + | "engines": { |
|
| 1030 | + | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" |
|
| 1031 | + | }, |
|
| 1032 | + | "funding": { |
|
| 1033 | + | "url": "https://opencollective.com/eslint" |
|
| 1034 | + | } |
|
| 1035 | + | }, |
|
| 1036 | + | "node_modules/@eslint/eslintrc/node_modules/globals": { |
|
| 1037 | + | "version": "13.20.0", |
|
| 1038 | + | "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", |
|
| 1039 | + | "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", |
|
| 1040 | + | "dev": true, |
|
| 1041 | + | "dependencies": { |
|
| 1042 | + | "type-fest": "^0.20.2" |
|
| 1043 | + | }, |
|
| 1044 | + | "engines": { |
|
| 1045 | + | "node": ">=8" |
|
| 1046 | + | }, |
|
| 1047 | + | "funding": { |
|
| 1048 | + | "url": "https://github.com/sponsors/sindresorhus" |
|
| 1049 | + | } |
|
| 1050 | + | }, |
|
| 1051 | + | "node_modules/@eslint/eslintrc/node_modules/type-fest": { |
|
| 1052 | + | "version": "0.20.2", |
|
| 1053 | + | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", |
|
| 1054 | + | "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", |
|
| 1055 | + | "dev": true, |
|
| 1056 | + | "engines": { |
|
| 1057 | + | "node": ">=10" |
|
| 1058 | + | }, |
|
| 1059 | + | "funding": { |
|
| 1060 | + | "url": "https://github.com/sponsors/sindresorhus" |
|
| 1061 | + | } |
|
| 1062 | + | }, |
|
| 1063 | + | "node_modules/@humanwhocodes/config-array": { |
|
| 1064 | + | "version": "0.11.8", |
|
| 1065 | + | "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz", |
|
| 1066 | + | "integrity": "sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==", |
|
| 1067 | + | "dev": true, |
|
| 1068 | + | "dependencies": { |
|
| 1069 | + | "@humanwhocodes/object-schema": "^1.2.1", |
|
| 1070 | + | "debug": "^4.1.1", |
|
| 1071 | + | "minimatch": "^3.0.5" |
|
| 1072 | + | }, |
|
| 1073 | + | "engines": { |
|
| 1074 | + | "node": ">=10.10.0" |
|
| 1075 | + | } |
|
| 1076 | + | }, |
|
| 1077 | + | "node_modules/@humanwhocodes/module-importer": { |
|
| 1078 | + | "version": "1.0.1", |
|
| 1079 | + | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", |
|
| 1080 | + | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", |
|
| 1081 | + | "dev": true, |
|
| 1082 | + | "engines": { |
|
| 1083 | + | "node": ">=12.22" |
|
| 1084 | + | }, |
|
| 1085 | + | "funding": { |
|
| 1086 | + | "type": "github", |
|
| 1087 | + | "url": "https://github.com/sponsors/nzakas" |
|
| 1088 | + | } |
|
| 1089 | + | }, |
|
| 1090 | + | "node_modules/@humanwhocodes/object-schema": { |
|
| 1091 | + | "version": "1.2.1", |
|
| 1092 | + | "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", |
|
| 1093 | + | "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", |
|
| 1094 | + | "dev": true |
|
| 1095 | + | }, |
|
| 1096 | + | "node_modules/@jridgewell/gen-mapping": { |
|
| 1097 | + | "version": "0.1.1", |
|
| 1098 | + | "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz", |
|
| 1099 | + | "integrity": "sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==", |
|
| 1100 | + | "dependencies": { |
|
| 1101 | + | "@jridgewell/set-array": "^1.0.0", |
|
| 1102 | + | "@jridgewell/sourcemap-codec": "^1.4.10" |
|
| 1103 | + | }, |
|
| 1104 | + | "engines": { |
|
| 1105 | + | "node": ">=6.0.0" |
|
| 1106 | + | } |
|
| 1107 | + | }, |
|
| 1108 | + | "node_modules/@jridgewell/resolve-uri": { |
|
| 1109 | + | "version": "3.1.0", |
|
| 1110 | + | "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", |
|
| 1111 | + | "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", |
|
| 1112 | + | "engines": { |
|
| 1113 | + | "node": ">=6.0.0" |
|
| 1114 | + | } |
|
| 1115 | + | }, |
|
| 1116 | + | "node_modules/@jridgewell/set-array": { |
|
| 1117 | + | "version": "1.1.2", |
|
| 1118 | + | "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", |
|
| 1119 | + | "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", |
|
| 1120 | + | "engines": { |
|
| 1121 | + | "node": ">=6.0.0" |
|
| 1122 | + | } |
|
| 1123 | + | }, |
|
| 1124 | + | "node_modules/@jridgewell/sourcemap-codec": { |
|
| 1125 | + | "version": "1.4.14", |
|
| 1126 | + | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", |
|
| 1127 | + | "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" |
|
| 1128 | + | }, |
|
| 1129 | + | "node_modules/@jridgewell/trace-mapping": { |
|
| 1130 | + | "version": "0.3.17", |
|
| 1131 | + | "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz", |
|
| 1132 | + | "integrity": "sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==", |
|
| 1133 | + | "dependencies": { |
|
| 1134 | + | "@jridgewell/resolve-uri": "3.1.0", |
|
| 1135 | + | "@jridgewell/sourcemap-codec": "1.4.14" |
|
| 1136 | + | } |
|
| 1137 | + | }, |
|
| 1138 | + | "node_modules/@ljharb/has-package-exports-patterns": { |
|
| 1139 | + | "version": "0.0.2", |
|
| 1140 | + | "resolved": "https://registry.npmjs.org/@ljharb/has-package-exports-patterns/-/has-package-exports-patterns-0.0.2.tgz", |
|
| 1141 | + | "integrity": "sha512-4/RWEeXDO6bocPONheFe6gX/oQdP/bEpv0oL4HqjPP5DCenBSt0mHgahppY49N0CpsaqffdwPq+TlX9CYOq2Dw==" |
|
| 1142 | + | }, |
|
| 1143 | + | "node_modules/@mdx-js/mdx": { |
|
| 1144 | + | "version": "2.3.0", |
|
| 1145 | + | "resolved": "https://registry.npmjs.org/@mdx-js/mdx/-/mdx-2.3.0.tgz", |
|
| 1146 | + | "integrity": "sha512-jLuwRlz8DQfQNiUCJR50Y09CGPq3fLtmtUQfVrj79E0JWu3dvsVcxVIcfhR5h0iXu+/z++zDrYeiJqifRynJkA==", |
|
| 1147 | + | "dev": true, |
|
| 1148 | + | "dependencies": { |
|
| 1149 | + | "@types/estree-jsx": "^1.0.0", |
|
| 1150 | + | "@types/mdx": "^2.0.0", |
|
| 1151 | + | "estree-util-build-jsx": "^2.0.0", |
|
| 1152 | + | "estree-util-is-identifier-name": "^2.0.0", |
|
| 1153 | + | "estree-util-to-js": "^1.1.0", |
|
| 1154 | + | "estree-walker": "^3.0.0", |
|
| 1155 | + | "hast-util-to-estree": "^2.0.0", |
|
| 1156 | + | "markdown-extensions": "^1.0.0", |
|
| 1157 | + | "periscopic": "^3.0.0", |
|
| 1158 | + | "remark-mdx": "^2.0.0", |
|
| 1159 | + | "remark-parse": "^10.0.0", |
|
| 1160 | + | "remark-rehype": "^10.0.0", |
|
| 1161 | + | "unified": "^10.0.0", |
|
| 1162 | + | "unist-util-position-from-estree": "^1.0.0", |
|
| 1163 | + | "unist-util-stringify-position": "^3.0.0", |
|
| 1164 | + | "unist-util-visit": "^4.0.0", |
|
| 1165 | + | "vfile": "^5.0.0" |
|
| 1166 | + | }, |
|
| 1167 | + | "funding": { |
|
| 1168 | + | "type": "opencollective", |
|
| 1169 | + | "url": "https://opencollective.com/unified" |
|
| 1170 | + | } |
|
| 1171 | + | }, |
|
| 1172 | + | "node_modules/@mdx-js/rollup": { |
|
| 1173 | + | "version": "2.3.0", |
|
| 1174 | + | "resolved": "https://registry.npmjs.org/@mdx-js/rollup/-/rollup-2.3.0.tgz", |
|
| 1175 | + | "integrity": "sha512-wLvRfJS/M4UmdqTd+WoaySEE7q4BIejYf1xAHXYvtT1du/1Tl/z2450Gg2+Hu7fh05KwRRiehiTP9Yc/Dtn0fA==", |
|
| 1176 | + | "dev": true, |
|
| 1177 | + | "dependencies": { |
|
| 1178 | + | "@mdx-js/mdx": "^2.0.0", |
|
| 1179 | + | "@rollup/pluginutils": "^5.0.0", |
|
| 1180 | + | "source-map": "^0.7.0", |
|
| 1181 | + | "vfile": "^5.0.0" |
|
| 1182 | + | }, |
|
| 1183 | + | "funding": { |
|
| 1184 | + | "type": "opencollective", |
|
| 1185 | + | "url": "https://opencollective.com/unified" |
|
| 1186 | + | }, |
|
| 1187 | + | "peerDependencies": { |
|
| 1188 | + | "rollup": ">=2" |
|
| 1189 | + | } |
|
| 1190 | + | }, |
|
| 1191 | + | "node_modules/@nodelib/fs.scandir": { |
|
| 1192 | + | "version": "2.1.5", |
|
| 1193 | + | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", |
|
| 1194 | + | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", |
|
| 1195 | + | "dependencies": { |
|
| 1196 | + | "@nodelib/fs.stat": "2.0.5", |
|
| 1197 | + | "run-parallel": "^1.1.9" |
|
| 1198 | + | }, |
|
| 1199 | + | "engines": { |
|
| 1200 | + | "node": ">= 8" |
|
| 1201 | + | } |
|
| 1202 | + | }, |
|
| 1203 | + | "node_modules/@nodelib/fs.stat": { |
|
| 1204 | + | "version": "2.0.5", |
|
| 1205 | + | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", |
|
| 1206 | + | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", |
|
| 1207 | + | "engines": { |
|
| 1208 | + | "node": ">= 8" |
|
| 1209 | + | } |
|
| 1210 | + | }, |
|
| 1211 | + | "node_modules/@nodelib/fs.walk": { |
|
| 1212 | + | "version": "1.2.8", |
|
| 1213 | + | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", |
|
| 1214 | + | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", |
|
| 1215 | + | "dependencies": { |
|
| 1216 | + | "@nodelib/fs.scandir": "2.1.5", |
|
| 1217 | + | "fastq": "^1.6.0" |
|
| 1218 | + | }, |
|
| 1219 | + | "engines": { |
|
| 1220 | + | "node": ">= 8" |
|
| 1221 | + | } |
|
| 1222 | + | }, |
|
| 1223 | + | "node_modules/@pkgr/utils": { |
|
| 1224 | + | "version": "2.3.1", |
|
| 1225 | + | "resolved": "https://registry.npmjs.org/@pkgr/utils/-/utils-2.3.1.tgz", |
|
| 1226 | + | "integrity": "sha512-wfzX8kc1PMyUILA+1Z/EqoE4UCXGy0iRGMhPwdfae1+f0OXlLqCk+By+aMzgJBzR9AzS4CDizioG6Ss1gvAFJw==", |
|
| 1227 | + | "dependencies": { |
|
| 1228 | + | "cross-spawn": "^7.0.3", |
|
| 1229 | + | "is-glob": "^4.0.3", |
|
| 1230 | + | "open": "^8.4.0", |
|
| 1231 | + | "picocolors": "^1.0.0", |
|
| 1232 | + | "tiny-glob": "^0.2.9", |
|
| 1233 | + | "tslib": "^2.4.0" |
|
| 1234 | + | }, |
|
| 1235 | + | "engines": { |
|
| 1236 | + | "node": "^12.20.0 || ^14.18.0 || >=16.0.0" |
|
| 1237 | + | }, |
|
| 1238 | + | "funding": { |
|
| 1239 | + | "url": "https://opencollective.com/unts" |
|
| 1240 | + | } |
|
| 1241 | + | }, |
|
| 1242 | + | "node_modules/@proload/core": { |
|
| 1243 | + | "version": "0.3.3", |
|
| 1244 | + | "resolved": "https://registry.npmjs.org/@proload/core/-/core-0.3.3.tgz", |
|
| 1245 | + | "integrity": "sha512-7dAFWsIK84C90AMl24+N/ProHKm4iw0akcnoKjRvbfHifJZBLhaDsDus1QJmhG12lXj4e/uB/8mB/0aduCW+NQ==", |
|
| 1246 | + | "dev": true, |
|
| 1247 | + | "dependencies": { |
|
| 1248 | + | "deepmerge": "^4.2.2", |
|
| 1249 | + | "escalade": "^3.1.1" |
|
| 1250 | + | } |
|
| 1251 | + | }, |
|
| 1252 | + | "node_modules/@resvg/resvg-js": { |
|
| 1253 | + | "version": "2.4.1", |
|
| 1254 | + | "resolved": "https://registry.npmjs.org/@resvg/resvg-js/-/resvg-js-2.4.1.tgz", |
|
| 1255 | + | "integrity": "sha512-wTOf1zerZX8qYcMmLZw3czR4paI4hXqPjShNwJRh5DeHxvgffUS5KM7XwxtbIheUW6LVYT5fhT2AJiP6mU7U4A==", |
|
| 1256 | + | "dev": true, |
|
| 1257 | + | "engines": { |
|
| 1258 | + | "node": ">= 10" |
|
| 1259 | + | }, |
|
| 1260 | + | "optionalDependencies": { |
|
| 1261 | + | "@resvg/resvg-js-android-arm-eabi": "2.4.1", |
|
| 1262 | + | "@resvg/resvg-js-android-arm64": "2.4.1", |
|
| 1263 | + | "@resvg/resvg-js-darwin-arm64": "2.4.1", |
|
| 1264 | + | "@resvg/resvg-js-darwin-x64": "2.4.1", |
|
| 1265 | + | "@resvg/resvg-js-linux-arm-gnueabihf": "2.4.1", |
|
| 1266 | + | "@resvg/resvg-js-linux-arm64-gnu": "2.4.1", |
|
| 1267 | + | "@resvg/resvg-js-linux-arm64-musl": "2.4.1", |
|
| 1268 | + | "@resvg/resvg-js-linux-x64-gnu": "2.4.1", |
|
| 1269 | + | "@resvg/resvg-js-linux-x64-musl": "2.4.1", |
|
| 1270 | + | "@resvg/resvg-js-win32-arm64-msvc": "2.4.1", |
|
| 1271 | + | "@resvg/resvg-js-win32-ia32-msvc": "2.4.1", |
|
| 1272 | + | "@resvg/resvg-js-win32-x64-msvc": "2.4.1" |
|
| 1273 | + | } |
|
| 1274 | + | }, |
|
| 1275 | + | "node_modules/@resvg/resvg-js-android-arm-eabi": { |
|
| 1276 | + | "version": "2.4.1", |
|
| 1277 | + | "resolved": "https://registry.npmjs.org/@resvg/resvg-js-android-arm-eabi/-/resvg-js-android-arm-eabi-2.4.1.tgz", |
|
| 1278 | + | "integrity": "sha512-AA6f7hS0FAPpvQMhBCf6f1oD1LdlqNXKCxAAPpKh6tR11kqV0YIB9zOlIYgITM14mq2YooLFl6XIbbvmY+jwUw==", |
|
| 1279 | + | "cpu": [ |
|
| 1280 | + | "arm" |
|
| 1281 | + | ], |
|
| 1282 | + | "dev": true, |
|
| 1283 | + | "optional": true, |
|
| 1284 | + | "os": [ |
|
| 1285 | + | "android" |
|
| 1286 | + | ], |
|
| 1287 | + | "engines": { |
|
| 1288 | + | "node": ">= 10" |
|
| 1289 | + | } |
|
| 1290 | + | }, |
|
| 1291 | + | "node_modules/@resvg/resvg-js-android-arm64": { |
|
| 1292 | + | "version": "2.4.1", |
|
| 1293 | + | "resolved": "https://registry.npmjs.org/@resvg/resvg-js-android-arm64/-/resvg-js-android-arm64-2.4.1.tgz", |
|
| 1294 | + | "integrity": "sha512-/QleoRdPfsEuH9jUjilYcDtKK/BkmWcK+1LXM8L2nsnf/CI8EnFyv7ZzCj4xAIvZGAy9dTYr/5NZBcTwxG2HQg==", |
|
| 1295 | + | "cpu": [ |
|
| 1296 | + | "arm64" |
|
| 1297 | + | ], |
|
| 1298 | + | "dev": true, |
|
| 1299 | + | "optional": true, |
|
| 1300 | + | "os": [ |
|
| 1301 | + | "android" |
|
| 1302 | + | ], |
|
| 1303 | + | "engines": { |
|
| 1304 | + | "node": ">= 10" |
|
| 1305 | + | } |
|
| 1306 | + | }, |
|
| 1307 | + | "node_modules/@resvg/resvg-js-darwin-arm64": { |
|
| 1308 | + | "version": "2.4.1", |
|
| 1309 | + | "resolved": "https://registry.npmjs.org/@resvg/resvg-js-darwin-arm64/-/resvg-js-darwin-arm64-2.4.1.tgz", |
|
| 1310 | + | "integrity": "sha512-U1oMNhea+kAXgiEXgzo7EbFGCD1Edq5aSlQoe6LMly6UjHzgx2W3N5kEXCwU/CgN5FiQhZr7PlSJSlcr7mdhfg==", |
|
| 1311 | + | "cpu": [ |
|
| 1312 | + | "arm64" |
|
| 1313 | + | ], |
|
| 1314 | + | "dev": true, |
|
| 1315 | + | "optional": true, |
|
| 1316 | + | "os": [ |
|
| 1317 | + | "darwin" |
|
| 1318 | + | ], |
|
| 1319 | + | "engines": { |
|
| 1320 | + | "node": ">= 10" |
|
| 1321 | + | } |
|
| 1322 | + | }, |
|
| 1323 | + | "node_modules/@resvg/resvg-js-darwin-x64": { |
|
| 1324 | + | "version": "2.4.1", |
|
| 1325 | + | "resolved": "https://registry.npmjs.org/@resvg/resvg-js-darwin-x64/-/resvg-js-darwin-x64-2.4.1.tgz", |
|
| 1326 | + | "integrity": "sha512-avyVh6DpebBfHHtTQTZYSr6NG1Ur6TEilk1+H0n7V+g4F7x7WPOo8zL00ZhQCeRQ5H4f8WXNWIEKL8fwqcOkYw==", |
|
| 1327 | + | "cpu": [ |
|
| 1328 | + | "x64" |
|
| 1329 | + | ], |
|
| 1330 | + | "dev": true, |
|
| 1331 | + | "optional": true, |
|
| 1332 | + | "os": [ |
|
| 1333 | + | "darwin" |
|
| 1334 | + | ], |
|
| 1335 | + | "engines": { |
|
| 1336 | + | "node": ">= 10" |
|
| 1337 | + | } |
|
| 1338 | + | }, |
|
| 1339 | + | "node_modules/@resvg/resvg-js-linux-arm-gnueabihf": { |
|
| 1340 | + | "version": "2.4.1", |
|
| 1341 | + | "resolved": "https://registry.npmjs.org/@resvg/resvg-js-linux-arm-gnueabihf/-/resvg-js-linux-arm-gnueabihf-2.4.1.tgz", |
|
| 1342 | + | "integrity": "sha512-isY/mdKoBWH4VB5v621co+8l101jxxYjuTkwOLsbW+5RK9EbLciPlCB02M99ThAHzI2MYxIUjXNmNgOW8btXvw==", |
|
| 1343 | + | "cpu": [ |
|
| 1344 | + | "arm" |
|
| 1345 | + | ], |
|
| 1346 | + | "dev": true, |
|
| 1347 | + | "optional": true, |
|
| 1348 | + | "os": [ |
|
| 1349 | + | "linux" |
|
| 1350 | + | ], |
|
| 1351 | + | "engines": { |
|
| 1352 | + | "node": ">= 10" |
|
| 1353 | + | } |
|
| 1354 | + | }, |
|
| 1355 | + | "node_modules/@resvg/resvg-js-linux-arm64-gnu": { |
|
| 1356 | + | "version": "2.4.1", |
|
| 1357 | + | "resolved": "https://registry.npmjs.org/@resvg/resvg-js-linux-arm64-gnu/-/resvg-js-linux-arm64-gnu-2.4.1.tgz", |
|
| 1358 | + | "integrity": "sha512-uY5voSCrFI8TH95vIYBm5blpkOtltLxLRODyhKJhGfskOI7XkRw5/t1u0sWAGYD8rRSNX+CA+np86otKjubrNg==", |
|
| 1359 | + | "cpu": [ |
|
| 1360 | + | "arm64" |
|
| 1361 | + | ], |
|
| 1362 | + | "dev": true, |
|
| 1363 | + | "optional": true, |
|
| 1364 | + | "os": [ |
|
| 1365 | + | "linux" |
|
| 1366 | + | ], |
|
| 1367 | + | "engines": { |
|
| 1368 | + | "node": ">= 10" |
|
| 1369 | + | } |
|
| 1370 | + | }, |
|
| 1371 | + | "node_modules/@resvg/resvg-js-linux-arm64-musl": { |
|
| 1372 | + | "version": "2.4.1", |
|
| 1373 | + | "resolved": "https://registry.npmjs.org/@resvg/resvg-js-linux-arm64-musl/-/resvg-js-linux-arm64-musl-2.4.1.tgz", |
|
| 1374 | + | "integrity": "sha512-6mT0+JBCsermKMdi/O2mMk3m7SqOjwi9TKAwSngRZ/nQoL3Z0Z5zV+572ztgbWr0GODB422uD8e9R9zzz38dRQ==", |
|
| 1375 | + | "cpu": [ |
|
| 1376 | + | "arm64" |
|
| 1377 | + | ], |
|
| 1378 | + | "dev": true, |
|
| 1379 | + | "optional": true, |
|
| 1380 | + | "os": [ |
|
| 1381 | + | "linux" |
|
| 1382 | + | ], |
|
| 1383 | + | "engines": { |
|
| 1384 | + | "node": ">= 10" |
|
| 1385 | + | } |
|
| 1386 | + | }, |
|
| 1387 | + | "node_modules/@resvg/resvg-js-linux-x64-gnu": { |
|
| 1388 | + | "version": "2.4.1", |
|
| 1389 | + | "resolved": "https://registry.npmjs.org/@resvg/resvg-js-linux-x64-gnu/-/resvg-js-linux-x64-gnu-2.4.1.tgz", |
|
| 1390 | + | "integrity": "sha512-60KnrscLj6VGhkYOJEmmzPlqqfcw1keDh6U+vMcNDjPhV3B5vRSkpP/D/a8sfokyeh4VEacPSYkWGezvzS2/mg==", |
|
| 1391 | + | "cpu": [ |
|
| 1392 | + | "x64" |
|
| 1393 | + | ], |
|
| 1394 | + | "dev": true, |
|
| 1395 | + | "optional": true, |
|
| 1396 | + | "os": [ |
|
| 1397 | + | "linux" |
|
| 1398 | + | ], |
|
| 1399 | + | "engines": { |
|
| 1400 | + | "node": ">= 10" |
|
| 1401 | + | } |
|
| 1402 | + | }, |
|
| 1403 | + | "node_modules/@resvg/resvg-js-linux-x64-musl": { |
|
| 1404 | + | "version": "2.4.1", |
|
| 1405 | + | "resolved": "https://registry.npmjs.org/@resvg/resvg-js-linux-x64-musl/-/resvg-js-linux-x64-musl-2.4.1.tgz", |
|
| 1406 | + | "integrity": "sha512-0AMyZSICC1D7ge115cOZQW8Pcad6PjWuZkBFF3FJuSxC6Dgok0MQnLTs2MfMdKBlAcwO9dXsf3bv9tJZj8pATA==", |
|
| 1407 | + | "cpu": [ |
|
| 1408 | + | "x64" |
|
| 1409 | + | ], |
|
| 1410 | + | "dev": true, |
|
| 1411 | + | "optional": true, |
|
| 1412 | + | "os": [ |
|
| 1413 | + | "linux" |
|
| 1414 | + | ], |
|
| 1415 | + | "engines": { |
|
| 1416 | + | "node": ">= 10" |
|
| 1417 | + | } |
|
| 1418 | + | }, |
|
| 1419 | + | "node_modules/@resvg/resvg-js-win32-arm64-msvc": { |
|
| 1420 | + | "version": "2.4.1", |
|
| 1421 | + | "resolved": "https://registry.npmjs.org/@resvg/resvg-js-win32-arm64-msvc/-/resvg-js-win32-arm64-msvc-2.4.1.tgz", |
|
| 1422 | + | "integrity": "sha512-76XDFOFSa3d0QotmcNyChh2xHwk+JTFiEQBVxMlHpHMeq7hNrQJ1IpE1zcHSQvrckvkdfLboKRrlGB86B10Qjw==", |
|
| 1423 | + | "cpu": [ |
|
| 1424 | + | "arm64" |
|
| 1425 | + | ], |
|
| 1426 | + | "dev": true, |
|
| 1427 | + | "optional": true, |
|
| 1428 | + | "os": [ |
|
| 1429 | + | "win32" |
|
| 1430 | + | ], |
|
| 1431 | + | "engines": { |
|
| 1432 | + | "node": ">= 10" |
|
| 1433 | + | } |
|
| 1434 | + | }, |
|
| 1435 | + | "node_modules/@resvg/resvg-js-win32-ia32-msvc": { |
|
| 1436 | + | "version": "2.4.1", |
|
| 1437 | + | "resolved": "https://registry.npmjs.org/@resvg/resvg-js-win32-ia32-msvc/-/resvg-js-win32-ia32-msvc-2.4.1.tgz", |
|
| 1438 | + | "integrity": "sha512-odyVFGrEWZIzzJ89KdaFtiYWaIJh9hJRW/frcEcG3agJ464VXkN/2oEVF5ulD+5mpGlug9qJg7htzHcKxDN8sg==", |
|
| 1439 | + | "cpu": [ |
|
| 1440 | + | "ia32" |
|
| 1441 | + | ], |
|
| 1442 | + | "dev": true, |
|
| 1443 | + | "optional": true, |
|
| 1444 | + | "os": [ |
|
| 1445 | + | "win32" |
|
| 1446 | + | ], |
|
| 1447 | + | "engines": { |
|
| 1448 | + | "node": ">= 10" |
|
| 1449 | + | } |
|
| 1450 | + | }, |
|
| 1451 | + | "node_modules/@resvg/resvg-js-win32-x64-msvc": { |
|
| 1452 | + | "version": "2.4.1", |
|
| 1453 | + | "resolved": "https://registry.npmjs.org/@resvg/resvg-js-win32-x64-msvc/-/resvg-js-win32-x64-msvc-2.4.1.tgz", |
|
| 1454 | + | "integrity": "sha512-vY4kTLH2S3bP+puU5x7hlAxHv+ulFgcK6Zn3efKSr0M0KnZ9A3qeAjZteIpkowEFfUeMPNg2dvvoFRJA9zqxSw==", |
|
| 1455 | + | "cpu": [ |
|
| 1456 | + | "x64" |
|
| 1457 | + | ], |
|
| 1458 | + | "dev": true, |
|
| 1459 | + | "optional": true, |
|
| 1460 | + | "os": [ |
|
| 1461 | + | "win32" |
|
| 1462 | + | ], |
|
| 1463 | + | "engines": { |
|
| 1464 | + | "node": ">= 10" |
|
| 1465 | + | } |
|
| 1466 | + | }, |
|
| 1467 | + | "node_modules/@rollup/pluginutils": { |
|
| 1468 | + | "version": "5.0.2", |
|
| 1469 | + | "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.0.2.tgz", |
|
| 1470 | + | "integrity": "sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==", |
|
| 1471 | + | "dev": true, |
|
| 1472 | + | "dependencies": { |
|
| 1473 | + | "@types/estree": "^1.0.0", |
|
| 1474 | + | "estree-walker": "^2.0.2", |
|
| 1475 | + | "picomatch": "^2.3.1" |
|
| 1476 | + | }, |
|
| 1477 | + | "engines": { |
|
| 1478 | + | "node": ">=14.0.0" |
|
| 1479 | + | }, |
|
| 1480 | + | "peerDependencies": { |
|
| 1481 | + | "rollup": "^1.20.0||^2.0.0||^3.0.0" |
|
| 1482 | + | }, |
|
| 1483 | + | "peerDependenciesMeta": { |
|
| 1484 | + | "rollup": { |
|
| 1485 | + | "optional": true |
|
| 1486 | + | } |
|
| 1487 | + | } |
|
| 1488 | + | }, |
|
| 1489 | + | "node_modules/@rollup/pluginutils/node_modules/estree-walker": { |
|
| 1490 | + | "version": "2.0.2", |
|
| 1491 | + | "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", |
|
| 1492 | + | "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", |
|
| 1493 | + | "dev": true |
|
| 1494 | + | }, |
|
| 1495 | + | "node_modules/@shuding/opentype.js": { |
|
| 1496 | + | "version": "1.4.0-beta.0", |
|
| 1497 | + | "resolved": "https://registry.npmjs.org/@shuding/opentype.js/-/opentype.js-1.4.0-beta.0.tgz", |
|
| 1498 | + | "integrity": "sha512-3NgmNyH3l/Hv6EvsWJbsvpcpUba6R8IREQ83nH83cyakCw7uM1arZKNfHwv1Wz6jgqrF/j4x5ELvR6PnK9nTcA==", |
|
| 1499 | + | "dependencies": { |
|
| 1500 | + | "fflate": "^0.7.3", |
|
| 1501 | + | "string.prototype.codepointat": "^0.2.1" |
|
| 1502 | + | }, |
|
| 1503 | + | "bin": { |
|
| 1504 | + | "ot": "bin/ot" |
|
| 1505 | + | }, |
|
| 1506 | + | "engines": { |
|
| 1507 | + | "node": ">= 8.0.0" |
|
| 1508 | + | } |
|
| 1509 | + | }, |
|
| 1510 | + | "node_modules/@tailwindcss/aspect-ratio": { |
|
| 1511 | + | "version": "0.4.2", |
|
| 1512 | + | "resolved": "https://registry.npmjs.org/@tailwindcss/aspect-ratio/-/aspect-ratio-0.4.2.tgz", |
|
| 1513 | + | "integrity": "sha512-8QPrypskfBa7QIMuKHg2TA7BqES6vhBrDLOv8Unb6FcFyd3TjKbc6lcmb9UPQHxfl24sXoJ41ux/H7qQQvfaSQ==", |
|
| 1514 | + | "dev": true, |
|
| 1515 | + | "peerDependencies": { |
|
| 1516 | + | "tailwindcss": ">=2.0.0 || >=3.0.0 || >=3.0.0-alpha.1" |
|
| 1517 | + | } |
|
| 1518 | + | }, |
|
| 1519 | + | "node_modules/@tailwindcss/line-clamp": { |
|
| 1520 | + | "version": "0.4.2", |
|
| 1521 | + | "resolved": "https://registry.npmjs.org/@tailwindcss/line-clamp/-/line-clamp-0.4.2.tgz", |
|
| 1522 | + | "integrity": "sha512-HFzAQuqYCjyy/SX9sLGB1lroPzmcnWv1FHkIpmypte10hptf4oPUfucryMKovZh2u0uiS9U5Ty3GghWfEJGwVw==", |
|
| 1523 | + | "dev": true, |
|
| 1524 | + | "peerDependencies": { |
|
| 1525 | + | "tailwindcss": ">=2.0.0 || >=3.0.0 || >=3.0.0-alpha.1" |
|
| 1526 | + | } |
|
| 1527 | + | }, |
|
| 1528 | + | "node_modules/@tailwindcss/typography": { |
|
| 1529 | + | "version": "0.5.9", |
|
| 1530 | + | "resolved": "https://registry.npmjs.org/@tailwindcss/typography/-/typography-0.5.9.tgz", |
|
| 1531 | + | "integrity": "sha512-t8Sg3DyynFysV9f4JDOVISGsjazNb48AeIYQwcL+Bsq5uf4RYL75C1giZ43KISjeDGBaTN3Kxh7Xj/vRSMJUUg==", |
|
| 1532 | + | "dev": true, |
|
| 1533 | + | "dependencies": { |
|
| 1534 | + | "lodash.castarray": "^4.4.0", |
|
| 1535 | + | "lodash.isplainobject": "^4.0.6", |
|
| 1536 | + | "lodash.merge": "^4.6.2", |
|
| 1537 | + | "postcss-selector-parser": "6.0.10" |
|
| 1538 | + | }, |
|
| 1539 | + | "peerDependencies": { |
|
| 1540 | + | "tailwindcss": ">=3.0.0 || insiders" |
|
| 1541 | + | } |
|
| 1542 | + | }, |
|
| 1543 | + | "node_modules/@types/acorn": { |
|
| 1544 | + | "version": "4.0.6", |
|
| 1545 | + | "resolved": "https://registry.npmjs.org/@types/acorn/-/acorn-4.0.6.tgz", |
|
| 1546 | + | "integrity": "sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==", |
|
| 1547 | + | "dev": true, |
|
| 1548 | + | "dependencies": { |
|
| 1549 | + | "@types/estree": "*" |
|
| 1550 | + | } |
|
| 1551 | + | }, |
|
| 1552 | + | "node_modules/@types/babel__core": { |
|
| 1553 | + | "version": "7.20.0", |
|
| 1554 | + | "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.0.tgz", |
|
| 1555 | + | "integrity": "sha512-+n8dL/9GWblDO0iU6eZAwEIJVr5DWigtle+Q6HLOrh/pdbXOhOtqzq8VPPE2zvNJzSKY4vH/z3iT3tn0A3ypiQ==", |
|
| 1556 | + | "dependencies": { |
|
| 1557 | + | "@babel/parser": "^7.20.7", |
|
| 1558 | + | "@babel/types": "^7.20.7", |
|
| 1559 | + | "@types/babel__generator": "*", |
|
| 1560 | + | "@types/babel__template": "*", |
|
| 1561 | + | "@types/babel__traverse": "*" |
|
| 1562 | + | } |
|
| 1563 | + | }, |
|
| 1564 | + | "node_modules/@types/babel__generator": { |
|
| 1565 | + | "version": "7.6.4", |
|
| 1566 | + | "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", |
|
| 1567 | + | "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", |
|
| 1568 | + | "dependencies": { |
|
| 1569 | + | "@babel/types": "^7.0.0" |
|
| 1570 | + | } |
|
| 1571 | + | }, |
|
| 1572 | + | "node_modules/@types/babel__template": { |
|
| 1573 | + | "version": "7.4.1", |
|
| 1574 | + | "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", |
|
| 1575 | + | "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", |
|
| 1576 | + | "dependencies": { |
|
| 1577 | + | "@babel/parser": "^7.1.0", |
|
| 1578 | + | "@babel/types": "^7.0.0" |
|
| 1579 | + | } |
|
| 1580 | + | }, |
|
| 1581 | + | "node_modules/@types/babel__traverse": { |
|
| 1582 | + | "version": "7.18.3", |
|
| 1583 | + | "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.18.3.tgz", |
|
| 1584 | + | "integrity": "sha512-1kbcJ40lLB7MHsj39U4Sh1uTd2E7rLEa79kmDpI6cy+XiXsteB3POdQomoq4FxszMrO3ZYchkhYJw7A2862b3w==", |
|
| 1585 | + | "dependencies": { |
|
| 1586 | + | "@babel/types": "^7.3.0" |
|
| 1587 | + | } |
|
| 1588 | + | }, |
|
| 1589 | + | "node_modules/@types/debug": { |
|
| 1590 | + | "version": "4.1.7", |
|
| 1591 | + | "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.7.tgz", |
|
| 1592 | + | "integrity": "sha512-9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg==", |
|
| 1593 | + | "dependencies": { |
|
| 1594 | + | "@types/ms": "*" |
|
| 1595 | + | } |
|
| 1596 | + | }, |
|
| 1597 | + | "node_modules/@types/eslint": { |
|
| 1598 | + | "version": "8.21.1", |
|
| 1599 | + | "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.21.1.tgz", |
|
| 1600 | + | "integrity": "sha512-rc9K8ZpVjNcLs8Fp0dkozd5Pt2Apk1glO4Vgz8ix1u6yFByxfqo5Yavpy65o+93TAe24jr7v+eSBtFLvOQtCRQ==", |
|
| 1601 | + | "dev": true, |
|
| 1602 | + | "dependencies": { |
|
| 1603 | + | "@types/estree": "*", |
|
| 1604 | + | "@types/json-schema": "*" |
|
| 1605 | + | } |
|
| 1606 | + | }, |
|
| 1607 | + | "node_modules/@types/estree": { |
|
| 1608 | + | "version": "1.0.0", |
|
| 1609 | + | "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.0.tgz", |
|
| 1610 | + | "integrity": "sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==" |
|
| 1611 | + | }, |
|
| 1612 | + | "node_modules/@types/estree-jsx": { |
|
| 1613 | + | "version": "1.0.0", |
|
| 1614 | + | "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.0.tgz", |
|
| 1615 | + | "integrity": "sha512-3qvGd0z8F2ENTGr/GG1yViqfiKmRfrXVx5sJyHGFu3z7m5g5utCQtGp/g29JnjflhtQJBv1WDQukHiT58xPcYQ==", |
|
| 1616 | + | "dev": true, |
|
| 1617 | + | "dependencies": { |
|
| 1618 | + | "@types/estree": "*" |
|
| 1619 | + | } |
|
| 1620 | + | }, |
|
| 1621 | + | "node_modules/@types/hast": { |
|
| 1622 | + | "version": "2.3.4", |
|
| 1623 | + | "resolved": "https://registry.npmjs.org/@types/hast/-/hast-2.3.4.tgz", |
|
| 1624 | + | "integrity": "sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g==", |
|
| 1625 | + | "dependencies": { |
|
| 1626 | + | "@types/unist": "*" |
|
| 1627 | + | } |
|
| 1628 | + | }, |
|
| 1629 | + | "node_modules/@types/json-schema": { |
|
| 1630 | + | "version": "7.0.11", |
|
| 1631 | + | "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz", |
|
| 1632 | + | "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==", |
|
| 1633 | + | "dev": true |
|
| 1634 | + | }, |
|
| 1635 | + | "node_modules/@types/json5": { |
|
| 1636 | + | "version": "0.0.29", |
|
| 1637 | + | "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", |
|
| 1638 | + | "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", |
|
| 1639 | + | "dev": true |
|
| 1640 | + | }, |
|
| 1641 | + | "node_modules/@types/mdast": { |
|
| 1642 | + | "version": "3.0.10", |
|
| 1643 | + | "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.10.tgz", |
|
| 1644 | + | "integrity": "sha512-W864tg/Osz1+9f4lrGTZpCSO5/z4608eUp19tbozkq2HJK6i3z1kT0H9tlADXuYIb1YYOBByU4Jsqkk75q48qA==", |
|
| 1645 | + | "dependencies": { |
|
| 1646 | + | "@types/unist": "*" |
|
| 1647 | + | } |
|
| 1648 | + | }, |
|
| 1649 | + | "node_modules/@types/mdx": { |
|
| 1650 | + | "version": "2.0.3", |
|
| 1651 | + | "resolved": "https://registry.npmjs.org/@types/mdx/-/mdx-2.0.3.tgz", |
|
| 1652 | + | "integrity": "sha512-IgHxcT3RC8LzFLhKwP3gbMPeaK7BM9eBH46OdapPA7yvuIUJ8H6zHZV53J8hGZcTSnt95jANt+rTBNUUc22ACQ==", |
|
| 1653 | + | "dev": true |
|
| 1654 | + | }, |
|
| 1655 | + | "node_modules/@types/minimist": { |
|
| 1656 | + | "version": "1.2.2", |
|
| 1657 | + | "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.2.tgz", |
|
| 1658 | + | "integrity": "sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==", |
|
| 1659 | + | "dev": true |
|
| 1660 | + | }, |
|
| 1661 | + | "node_modules/@types/ms": { |
|
| 1662 | + | "version": "0.7.31", |
|
| 1663 | + | "resolved": "https://registry.npmjs.org/@types/ms/-/ms-0.7.31.tgz", |
|
| 1664 | + | "integrity": "sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==" |
|
| 1665 | + | }, |
|
| 1666 | + | "node_modules/@types/nlcst": { |
|
| 1667 | + | "version": "1.0.0", |
|
| 1668 | + | "resolved": "https://registry.npmjs.org/@types/nlcst/-/nlcst-1.0.0.tgz", |
|
| 1669 | + | "integrity": "sha512-3TGCfOcy8R8mMQ4CNSNOe3PG66HttvjcLzCoOpvXvDtfWOTi+uT/rxeOKm/qEwbM4SNe1O/PjdiBK2YcTjU4OQ==", |
|
| 1670 | + | "dependencies": { |
|
| 1671 | + | "@types/unist": "*" |
|
| 1672 | + | } |
|
| 1673 | + | }, |
|
| 1674 | + | "node_modules/@types/node": { |
|
| 1675 | + | "version": "18.14.1", |
|
| 1676 | + | "resolved": "https://registry.npmjs.org/@types/node/-/node-18.14.1.tgz", |
|
| 1677 | + | "integrity": "sha512-QH+37Qds3E0eDlReeboBxfHbX9omAcBCXEzswCu6jySP642jiM3cYSIkU/REqwhCUqXdonHFuBfJDiAJxMNhaQ==", |
|
| 1678 | + | "devOptional": true |
|
| 1679 | + | }, |
|
| 1680 | + | "node_modules/@types/normalize-package-data": { |
|
| 1681 | + | "version": "2.4.1", |
|
| 1682 | + | "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz", |
|
| 1683 | + | "integrity": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==", |
|
| 1684 | + | "dev": true |
|
| 1685 | + | }, |
|
| 1686 | + | "node_modules/@types/parse-json": { |
|
| 1687 | + | "version": "4.0.0", |
|
| 1688 | + | "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", |
|
| 1689 | + | "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==", |
|
| 1690 | + | "dev": true |
|
| 1691 | + | }, |
|
| 1692 | + | "node_modules/@types/parse5": { |
|
| 1693 | + | "version": "6.0.3", |
|
| 1694 | + | "resolved": "https://registry.npmjs.org/@types/parse5/-/parse5-6.0.3.tgz", |
|
| 1695 | + | "integrity": "sha512-SuT16Q1K51EAVPz1K29DJ/sXjhSQ0zjvsypYJ6tlwVsRV9jwW5Adq2ch8Dq8kDBCkYnELS7N7VNCSB5nC56t/g==" |
|
| 1696 | + | }, |
|
| 1697 | + | "node_modules/@types/prettier": { |
|
| 1698 | + | "version": "2.7.2", |
|
| 1699 | + | "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.2.tgz", |
|
| 1700 | + | "integrity": "sha512-KufADq8uQqo1pYKVIYzfKbJfBAc0sOeXqGbFaSpv8MRmC/zXgowNZmFcbngndGk922QDmOASEXUZCaY48gs4cg==", |
|
| 1701 | + | "dev": true |
|
| 1702 | + | }, |
|
| 1703 | + | "node_modules/@types/resolve": { |
|
| 1704 | + | "version": "1.20.2", |
|
| 1705 | + | "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.20.2.tgz", |
|
| 1706 | + | "integrity": "sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==" |
|
| 1707 | + | }, |
|
| 1708 | + | "node_modules/@types/sax": { |
|
| 1709 | + | "version": "1.2.4", |
|
| 1710 | + | "resolved": "https://registry.npmjs.org/@types/sax/-/sax-1.2.4.tgz", |
|
| 1711 | + | "integrity": "sha512-pSAff4IAxJjfAXUG6tFkO7dsSbTmf8CtUpfhhZ5VhkRpC4628tJhh3+V6H1E+/Gs9piSzYKT5yzHO5M4GG9jkw==", |
|
| 1712 | + | "dev": true, |
|
| 1713 | + | "dependencies": { |
|
| 1714 | + | "@types/node": "*" |
|
| 1715 | + | } |
|
| 1716 | + | }, |
|
| 1717 | + | "node_modules/@types/semver": { |
|
| 1718 | + | "version": "7.3.13", |
|
| 1719 | + | "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.13.tgz", |
|
| 1720 | + | "integrity": "sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==", |
|
| 1721 | + | "dev": true |
|
| 1722 | + | }, |
|
| 1723 | + | "node_modules/@types/sharp": { |
|
| 1724 | + | "version": "0.31.1", |
|
| 1725 | + | "resolved": "https://registry.npmjs.org/@types/sharp/-/sharp-0.31.1.tgz", |
|
| 1726 | + | "integrity": "sha512-5nWwamN9ZFHXaYEincMSuza8nNfOof8nmO+mcI+Agx1uMUk4/pQnNIcix+9rLPXzKrm1pS34+6WRDbDV0Jn7ag==", |
|
| 1727 | + | "dev": true, |
|
| 1728 | + | "dependencies": { |
|
| 1729 | + | "@types/node": "*" |
|
| 1730 | + | } |
|
| 1731 | + | }, |
|
| 1732 | + | "node_modules/@types/unist": { |
|
| 1733 | + | "version": "2.0.6", |
|
| 1734 | + | "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.6.tgz", |
|
| 1735 | + | "integrity": "sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==" |
|
| 1736 | + | }, |
|
| 1737 | + | "node_modules/@types/yargs-parser": { |
|
| 1738 | + | "version": "21.0.0", |
|
| 1739 | + | "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", |
|
| 1740 | + | "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==" |
|
| 1741 | + | }, |
|
| 1742 | + | "node_modules/@typescript-eslint/eslint-plugin": { |
|
| 1743 | + | "version": "5.53.0", |
|
| 1744 | + | "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.53.0.tgz", |
|
| 1745 | + | "integrity": "sha512-alFpFWNucPLdUOySmXCJpzr6HKC3bu7XooShWM+3w/EL6J2HIoB2PFxpLnq4JauWVk6DiVeNKzQlFEaE+X9sGw==", |
|
| 1746 | + | "dev": true, |
|
| 1747 | + | "dependencies": { |
|
| 1748 | + | "@typescript-eslint/scope-manager": "5.53.0", |
|
| 1749 | + | "@typescript-eslint/type-utils": "5.53.0", |
|
| 1750 | + | "@typescript-eslint/utils": "5.53.0", |
|
| 1751 | + | "debug": "^4.3.4", |
|
| 1752 | + | "grapheme-splitter": "^1.0.4", |
|
| 1753 | + | "ignore": "^5.2.0", |
|
| 1754 | + | "natural-compare-lite": "^1.4.0", |
|
| 1755 | + | "regexpp": "^3.2.0", |
|
| 1756 | + | "semver": "^7.3.7", |
|
| 1757 | + | "tsutils": "^3.21.0" |
|
| 1758 | + | }, |
|
| 1759 | + | "engines": { |
|
| 1760 | + | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" |
|
| 1761 | + | }, |
|
| 1762 | + | "funding": { |
|
| 1763 | + | "type": "opencollective", |
|
| 1764 | + | "url": "https://opencollective.com/typescript-eslint" |
|
| 1765 | + | }, |
|
| 1766 | + | "peerDependencies": { |
|
| 1767 | + | "@typescript-eslint/parser": "^5.0.0", |
|
| 1768 | + | "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" |
|
| 1769 | + | }, |
|
| 1770 | + | "peerDependenciesMeta": { |
|
| 1771 | + | "typescript": { |
|
| 1772 | + | "optional": true |
|
| 1773 | + | } |
|
| 1774 | + | } |
|
| 1775 | + | }, |
|
| 1776 | + | "node_modules/@typescript-eslint/parser": { |
|
| 1777 | + | "version": "5.53.0", |
|
| 1778 | + | "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.53.0.tgz", |
|
| 1779 | + | "integrity": "sha512-MKBw9i0DLYlmdOb3Oq/526+al20AJZpANdT6Ct9ffxcV8nKCHz63t/S0IhlTFNsBIHJv+GY5SFJ0XfqVeydQrQ==", |
|
| 1780 | + | "dev": true, |
|
| 1781 | + | "dependencies": { |
|
| 1782 | + | "@typescript-eslint/scope-manager": "5.53.0", |
|
| 1783 | + | "@typescript-eslint/types": "5.53.0", |
|
| 1784 | + | "@typescript-eslint/typescript-estree": "5.53.0", |
|
| 1785 | + | "debug": "^4.3.4" |
|
| 1786 | + | }, |
|
| 1787 | + | "engines": { |
|
| 1788 | + | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" |
|
| 1789 | + | }, |
|
| 1790 | + | "funding": { |
|
| 1791 | + | "type": "opencollective", |
|
| 1792 | + | "url": "https://opencollective.com/typescript-eslint" |
|
| 1793 | + | }, |
|
| 1794 | + | "peerDependencies": { |
|
| 1795 | + | "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" |
|
| 1796 | + | }, |
|
| 1797 | + | "peerDependenciesMeta": { |
|
| 1798 | + | "typescript": { |
|
| 1799 | + | "optional": true |
|
| 1800 | + | } |
|
| 1801 | + | } |
|
| 1802 | + | }, |
|
| 1803 | + | "node_modules/@typescript-eslint/scope-manager": { |
|
| 1804 | + | "version": "5.53.0", |
|
| 1805 | + | "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.53.0.tgz", |
|
| 1806 | + | "integrity": "sha512-Opy3dqNsp/9kBBeCPhkCNR7fmdSQqA+47r21hr9a14Bx0xnkElEQmhoHga+VoaoQ6uDHjDKmQPIYcUcKJifS7w==", |
|
| 1807 | + | "dev": true, |
|
| 1808 | + | "dependencies": { |
|
| 1809 | + | "@typescript-eslint/types": "5.53.0", |
|
| 1810 | + | "@typescript-eslint/visitor-keys": "5.53.0" |
|
| 1811 | + | }, |
|
| 1812 | + | "engines": { |
|
| 1813 | + | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" |
|
| 1814 | + | }, |
|
| 1815 | + | "funding": { |
|
| 1816 | + | "type": "opencollective", |
|
| 1817 | + | "url": "https://opencollective.com/typescript-eslint" |
|
| 1818 | + | } |
|
| 1819 | + | }, |
|
| 1820 | + | "node_modules/@typescript-eslint/type-utils": { |
|
| 1821 | + | "version": "5.53.0", |
|
| 1822 | + | "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.53.0.tgz", |
|
| 1823 | + | "integrity": "sha512-HO2hh0fmtqNLzTAme/KnND5uFNwbsdYhCZghK2SoxGp3Ifn2emv+hi0PBUjzzSh0dstUIFqOj3bp0AwQlK4OWw==", |
|
| 1824 | + | "dev": true, |
|
| 1825 | + | "dependencies": { |
|
| 1826 | + | "@typescript-eslint/typescript-estree": "5.53.0", |
|
| 1827 | + | "@typescript-eslint/utils": "5.53.0", |
|
| 1828 | + | "debug": "^4.3.4", |
|
| 1829 | + | "tsutils": "^3.21.0" |
|
| 1830 | + | }, |
|
| 1831 | + | "engines": { |
|
| 1832 | + | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" |
|
| 1833 | + | }, |
|
| 1834 | + | "funding": { |
|
| 1835 | + | "type": "opencollective", |
|
| 1836 | + | "url": "https://opencollective.com/typescript-eslint" |
|
| 1837 | + | }, |
|
| 1838 | + | "peerDependencies": { |
|
| 1839 | + | "eslint": "*" |
|
| 1840 | + | }, |
|
| 1841 | + | "peerDependenciesMeta": { |
|
| 1842 | + | "typescript": { |
|
| 1843 | + | "optional": true |
|
| 1844 | + | } |
|
| 1845 | + | } |
|
| 1846 | + | }, |
|
| 1847 | + | "node_modules/@typescript-eslint/types": { |
|
| 1848 | + | "version": "5.53.0", |
|
| 1849 | + | "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.53.0.tgz", |
|
| 1850 | + | "integrity": "sha512-5kcDL9ZUIP756K6+QOAfPkigJmCPHcLN7Zjdz76lQWWDdzfOhZDTj1irs6gPBKiXx5/6O3L0+AvupAut3z7D2A==", |
|
| 1851 | + | "dev": true, |
|
| 1852 | + | "engines": { |
|
| 1853 | + | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" |
|
| 1854 | + | }, |
|
| 1855 | + | "funding": { |
|
| 1856 | + | "type": "opencollective", |
|
| 1857 | + | "url": "https://opencollective.com/typescript-eslint" |
|
| 1858 | + | } |
|
| 1859 | + | }, |
|
| 1860 | + | "node_modules/@typescript-eslint/typescript-estree": { |
|
| 1861 | + | "version": "5.53.0", |
|
| 1862 | + | "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.53.0.tgz", |
|
| 1863 | + | "integrity": "sha512-eKmipH7QyScpHSkhbptBBYh9v8FxtngLquq292YTEQ1pxVs39yFBlLC1xeIZcPPz1RWGqb7YgERJRGkjw8ZV7w==", |
|
| 1864 | + | "dev": true, |
|
| 1865 | + | "dependencies": { |
|
| 1866 | + | "@typescript-eslint/types": "5.53.0", |
|
| 1867 | + | "@typescript-eslint/visitor-keys": "5.53.0", |
|
| 1868 | + | "debug": "^4.3.4", |
|
| 1869 | + | "globby": "^11.1.0", |
|
| 1870 | + | "is-glob": "^4.0.3", |
|
| 1871 | + | "semver": "^7.3.7", |
|
| 1872 | + | "tsutils": "^3.21.0" |
|
| 1873 | + | }, |
|
| 1874 | + | "engines": { |
|
| 1875 | + | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" |
|
| 1876 | + | }, |
|
| 1877 | + | "funding": { |
|
| 1878 | + | "type": "opencollective", |
|
| 1879 | + | "url": "https://opencollective.com/typescript-eslint" |
|
| 1880 | + | }, |
|
| 1881 | + | "peerDependenciesMeta": { |
|
| 1882 | + | "typescript": { |
|
| 1883 | + | "optional": true |
|
| 1884 | + | } |
|
| 1885 | + | } |
|
| 1886 | + | }, |
|
| 1887 | + | "node_modules/@typescript-eslint/utils": { |
|
| 1888 | + | "version": "5.53.0", |
|
| 1889 | + | "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.53.0.tgz", |
|
| 1890 | + | "integrity": "sha512-VUOOtPv27UNWLxFwQK/8+7kvxVC+hPHNsJjzlJyotlaHjLSIgOCKj9I0DBUjwOOA64qjBwx5afAPjksqOxMO0g==", |
|
| 1891 | + | "dev": true, |
|
| 1892 | + | "dependencies": { |
|
| 1893 | + | "@types/json-schema": "^7.0.9", |
|
| 1894 | + | "@types/semver": "^7.3.12", |
|
| 1895 | + | "@typescript-eslint/scope-manager": "5.53.0", |
|
| 1896 | + | "@typescript-eslint/types": "5.53.0", |
|
| 1897 | + | "@typescript-eslint/typescript-estree": "5.53.0", |
|
| 1898 | + | "eslint-scope": "^5.1.1", |
|
| 1899 | + | "eslint-utils": "^3.0.0", |
|
| 1900 | + | "semver": "^7.3.7" |
|
| 1901 | + | }, |
|
| 1902 | + | "engines": { |
|
| 1903 | + | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" |
|
| 1904 | + | }, |
|
| 1905 | + | "funding": { |
|
| 1906 | + | "type": "opencollective", |
|
| 1907 | + | "url": "https://opencollective.com/typescript-eslint" |
|
| 1908 | + | }, |
|
| 1909 | + | "peerDependencies": { |
|
| 1910 | + | "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" |
|
| 1911 | + | } |
|
| 1912 | + | }, |
|
| 1913 | + | "node_modules/@typescript-eslint/visitor-keys": { |
|
| 1914 | + | "version": "5.53.0", |
|
| 1915 | + | "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.53.0.tgz", |
|
| 1916 | + | "integrity": "sha512-JqNLnX3leaHFZEN0gCh81sIvgrp/2GOACZNgO4+Tkf64u51kTpAyWFOY8XHx8XuXr3N2C9zgPPHtcpMg6z1g0w==", |
|
| 1917 | + | "dev": true, |
|
| 1918 | + | "dependencies": { |
|
| 1919 | + | "@typescript-eslint/types": "5.53.0", |
|
| 1920 | + | "eslint-visitor-keys": "^3.3.0" |
|
| 1921 | + | }, |
|
| 1922 | + | "engines": { |
|
| 1923 | + | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" |
|
| 1924 | + | }, |
|
| 1925 | + | "funding": { |
|
| 1926 | + | "type": "opencollective", |
|
| 1927 | + | "url": "https://opencollective.com/typescript-eslint" |
|
| 1928 | + | } |
|
| 1929 | + | }, |
|
| 1930 | + | "node_modules/@vscode/emmet-helper": { |
|
| 1931 | + | "version": "2.8.6", |
|
| 1932 | + | "resolved": "https://registry.npmjs.org/@vscode/emmet-helper/-/emmet-helper-2.8.6.tgz", |
|
| 1933 | + | "integrity": "sha512-IIB8jbiKy37zN8bAIHx59YmnIelY78CGHtThnibD/d3tQOKRY83bYVi9blwmZVUZh6l9nfkYH3tvReaiNxY9EQ==", |
|
| 1934 | + | "dependencies": { |
|
| 1935 | + | "emmet": "^2.3.0", |
|
| 1936 | + | "jsonc-parser": "^2.3.0", |
|
| 1937 | + | "vscode-languageserver-textdocument": "^1.0.1", |
|
| 1938 | + | "vscode-languageserver-types": "^3.15.1", |
|
| 1939 | + | "vscode-uri": "^2.1.2" |
|
| 1940 | + | } |
|
| 1941 | + | }, |
|
| 1942 | + | "node_modules/@vscode/emmet-helper/node_modules/vscode-uri": { |
|
| 1943 | + | "version": "2.1.2", |
|
| 1944 | + | "resolved": "https://registry.npmjs.org/vscode-uri/-/vscode-uri-2.1.2.tgz", |
|
| 1945 | + | "integrity": "sha512-8TEXQxlldWAuIODdukIb+TR5s+9Ds40eSJrw+1iDDA9IFORPjMELarNQE3myz5XIkWWpdprmJjm1/SxMlWOC8A==" |
|
| 1946 | + | }, |
|
| 1947 | + | "node_modules/@vscode/l10n": { |
|
| 1948 | + | "version": "0.0.11", |
|
| 1949 | + | "resolved": "https://registry.npmjs.org/@vscode/l10n/-/l10n-0.0.11.tgz", |
|
| 1950 | + | "integrity": "sha512-ukOMWnCg1tCvT7WnDfsUKQOFDQGsyR5tNgRpwmqi+5/vzU3ghdDXzvIM4IOPdSb3OeSsBNvmSL8nxIVOqi2WXA==" |
|
| 1951 | + | }, |
|
| 1952 | + | "node_modules/acorn": { |
|
| 1953 | + | "version": "8.8.2", |
|
| 1954 | + | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", |
|
| 1955 | + | "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==", |
|
| 1956 | + | "bin": { |
|
| 1957 | + | "acorn": "bin/acorn" |
|
| 1958 | + | }, |
|
| 1959 | + | "engines": { |
|
| 1960 | + | "node": ">=0.4.0" |
|
| 1961 | + | } |
|
| 1962 | + | }, |
|
| 1963 | + | "node_modules/acorn-jsx": { |
|
| 1964 | + | "version": "5.3.2", |
|
| 1965 | + | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", |
|
| 1966 | + | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", |
|
| 1967 | + | "dev": true, |
|
| 1968 | + | "peerDependencies": { |
|
| 1969 | + | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" |
|
| 1970 | + | } |
|
| 1971 | + | }, |
|
| 1972 | + | "node_modules/acorn-node": { |
|
| 1973 | + | "version": "1.8.2", |
|
| 1974 | + | "resolved": "https://registry.npmjs.org/acorn-node/-/acorn-node-1.8.2.tgz", |
|
| 1975 | + | "integrity": "sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==", |
|
| 1976 | + | "dev": true, |
|
| 1977 | + | "dependencies": { |
|
| 1978 | + | "acorn": "^7.0.0", |
|
| 1979 | + | "acorn-walk": "^7.0.0", |
|
| 1980 | + | "xtend": "^4.0.2" |
|
| 1981 | + | } |
|
| 1982 | + | }, |
|
| 1983 | + | "node_modules/acorn-node/node_modules/acorn": { |
|
| 1984 | + | "version": "7.4.1", |
|
| 1985 | + | "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", |
|
| 1986 | + | "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", |
|
| 1987 | + | "dev": true, |
|
| 1988 | + | "bin": { |
|
| 1989 | + | "acorn": "bin/acorn" |
|
| 1990 | + | }, |
|
| 1991 | + | "engines": { |
|
| 1992 | + | "node": ">=0.4.0" |
|
| 1993 | + | } |
|
| 1994 | + | }, |
|
| 1995 | + | "node_modules/acorn-walk": { |
|
| 1996 | + | "version": "7.2.0", |
|
| 1997 | + | "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", |
|
| 1998 | + | "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", |
|
| 1999 | + | "dev": true, |
|
| 2000 | + | "engines": { |
|
| 2001 | + | "node": ">=0.4.0" |
|
| 2002 | + | } |
|
| 2003 | + | }, |
|
| 2004 | + | "node_modules/ajv": { |
|
| 2005 | + | "version": "6.12.6", |
|
| 2006 | + | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", |
|
| 2007 | + | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", |
|
| 2008 | + | "dev": true, |
|
| 2009 | + | "dependencies": { |
|
| 2010 | + | "fast-deep-equal": "^3.1.1", |
|
| 2011 | + | "fast-json-stable-stringify": "^2.0.0", |
|
| 2012 | + | "json-schema-traverse": "^0.4.1", |
|
| 2013 | + | "uri-js": "^4.2.2" |
|
| 2014 | + | }, |
|
| 2015 | + | "funding": { |
|
| 2016 | + | "type": "github", |
|
| 2017 | + | "url": "https://github.com/sponsors/epoberezkin" |
|
| 2018 | + | } |
|
| 2019 | + | }, |
|
| 2020 | + | "node_modules/ansi-align": { |
|
| 2021 | + | "version": "3.0.1", |
|
| 2022 | + | "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz", |
|
| 2023 | + | "integrity": "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==", |
|
| 2024 | + | "dependencies": { |
|
| 2025 | + | "string-width": "^4.1.0" |
|
| 2026 | + | } |
|
| 2027 | + | }, |
|
| 2028 | + | "node_modules/ansi-align/node_modules/ansi-regex": { |
|
| 2029 | + | "version": "5.0.1", |
|
| 2030 | + | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", |
|
| 2031 | + | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", |
|
| 2032 | + | "engines": { |
|
| 2033 | + | "node": ">=8" |
|
| 2034 | + | } |
|
| 2035 | + | }, |
|
| 2036 | + | "node_modules/ansi-align/node_modules/emoji-regex": { |
|
| 2037 | + | "version": "8.0.0", |
|
| 2038 | + | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", |
|
| 2039 | + | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" |
|
| 2040 | + | }, |
|
| 2041 | + | "node_modules/ansi-align/node_modules/string-width": { |
|
| 2042 | + | "version": "4.2.3", |
|
| 2043 | + | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", |
|
| 2044 | + | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", |
|
| 2045 | + | "dependencies": { |
|
| 2046 | + | "emoji-regex": "^8.0.0", |
|
| 2047 | + | "is-fullwidth-code-point": "^3.0.0", |
|
| 2048 | + | "strip-ansi": "^6.0.1" |
|
| 2049 | + | }, |
|
| 2050 | + | "engines": { |
|
| 2051 | + | "node": ">=8" |
|
| 2052 | + | } |
|
| 2053 | + | }, |
|
| 2054 | + | "node_modules/ansi-align/node_modules/strip-ansi": { |
|
| 2055 | + | "version": "6.0.1", |
|
| 2056 | + | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", |
|
| 2057 | + | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", |
|
| 2058 | + | "dependencies": { |
|
| 2059 | + | "ansi-regex": "^5.0.1" |
|
| 2060 | + | }, |
|
| 2061 | + | "engines": { |
|
| 2062 | + | "node": ">=8" |
|
| 2063 | + | } |
|
| 2064 | + | }, |
|
| 2065 | + | "node_modules/ansi-regex": { |
|
| 2066 | + | "version": "6.0.1", |
|
| 2067 | + | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", |
|
| 2068 | + | "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", |
|
| 2069 | + | "engines": { |
|
| 2070 | + | "node": ">=12" |
|
| 2071 | + | }, |
|
| 2072 | + | "funding": { |
|
| 2073 | + | "url": "https://github.com/chalk/ansi-regex?sponsor=1" |
|
| 2074 | + | } |
|
| 2075 | + | }, |
|
| 2076 | + | "node_modules/ansi-styles": { |
|
| 2077 | + | "version": "3.2.1", |
|
| 2078 | + | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", |
|
| 2079 | + | "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", |
|
| 2080 | + | "dependencies": { |
|
| 2081 | + | "color-convert": "^1.9.0" |
|
| 2082 | + | }, |
|
| 2083 | + | "engines": { |
|
| 2084 | + | "node": ">=4" |
|
| 2085 | + | } |
|
| 2086 | + | }, |
|
| 2087 | + | "node_modules/anymatch": { |
|
| 2088 | + | "version": "3.1.3", |
|
| 2089 | + | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", |
|
| 2090 | + | "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", |
|
| 2091 | + | "dev": true, |
|
| 2092 | + | "dependencies": { |
|
| 2093 | + | "normalize-path": "^3.0.0", |
|
| 2094 | + | "picomatch": "^2.0.4" |
|
| 2095 | + | }, |
|
| 2096 | + | "engines": { |
|
| 2097 | + | "node": ">= 8" |
|
| 2098 | + | } |
|
| 2099 | + | }, |
|
| 2100 | + | "node_modules/arg": { |
|
| 2101 | + | "version": "5.0.2", |
|
| 2102 | + | "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", |
|
| 2103 | + | "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", |
|
| 2104 | + | "dev": true |
|
| 2105 | + | }, |
|
| 2106 | + | "node_modules/argparse": { |
|
| 2107 | + | "version": "2.0.1", |
|
| 2108 | + | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", |
|
| 2109 | + | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", |
|
| 2110 | + | "dev": true |
|
| 2111 | + | }, |
|
| 2112 | + | "node_modules/aria-query": { |
|
| 2113 | + | "version": "5.1.3", |
|
| 2114 | + | "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz", |
|
| 2115 | + | "integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==", |
|
| 2116 | + | "dev": true, |
|
| 2117 | + | "dependencies": { |
|
| 2118 | + | "deep-equal": "^2.0.5" |
|
| 2119 | + | } |
|
| 2120 | + | }, |
|
| 2121 | + | "node_modules/array-includes": { |
|
| 2122 | + | "version": "3.1.6", |
|
| 2123 | + | "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz", |
|
| 2124 | + | "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==", |
|
| 2125 | + | "dev": true, |
|
| 2126 | + | "dependencies": { |
|
| 2127 | + | "call-bind": "^1.0.2", |
|
| 2128 | + | "define-properties": "^1.1.4", |
|
| 2129 | + | "es-abstract": "^1.20.4", |
|
| 2130 | + | "get-intrinsic": "^1.1.3", |
|
| 2131 | + | "is-string": "^1.0.7" |
|
| 2132 | + | }, |
|
| 2133 | + | "engines": { |
|
| 2134 | + | "node": ">= 0.4" |
|
| 2135 | + | }, |
|
| 2136 | + | "funding": { |
|
| 2137 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 2138 | + | } |
|
| 2139 | + | }, |
|
| 2140 | + | "node_modules/array-iterate": { |
|
| 2141 | + | "version": "2.0.1", |
|
| 2142 | + | "resolved": "https://registry.npmjs.org/array-iterate/-/array-iterate-2.0.1.tgz", |
|
| 2143 | + | "integrity": "sha512-I1jXZMjAgCMmxT4qxXfPXa6SthSoE8h6gkSI9BGGNv8mP8G/v0blc+qFnZu6K42vTOiuME596QaLO0TP3Lk0xg==", |
|
| 2144 | + | "funding": { |
|
| 2145 | + | "type": "github", |
|
| 2146 | + | "url": "https://github.com/sponsors/wooorm" |
|
| 2147 | + | } |
|
| 2148 | + | }, |
|
| 2149 | + | "node_modules/array-union": { |
|
| 2150 | + | "version": "2.1.0", |
|
| 2151 | + | "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", |
|
| 2152 | + | "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", |
|
| 2153 | + | "dev": true, |
|
| 2154 | + | "engines": { |
|
| 2155 | + | "node": ">=8" |
|
| 2156 | + | } |
|
| 2157 | + | }, |
|
| 2158 | + | "node_modules/array.prototype.flat": { |
|
| 2159 | + | "version": "1.3.1", |
|
| 2160 | + | "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz", |
|
| 2161 | + | "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==", |
|
| 2162 | + | "dev": true, |
|
| 2163 | + | "dependencies": { |
|
| 2164 | + | "call-bind": "^1.0.2", |
|
| 2165 | + | "define-properties": "^1.1.4", |
|
| 2166 | + | "es-abstract": "^1.20.4", |
|
| 2167 | + | "es-shim-unscopables": "^1.0.0" |
|
| 2168 | + | }, |
|
| 2169 | + | "engines": { |
|
| 2170 | + | "node": ">= 0.4" |
|
| 2171 | + | }, |
|
| 2172 | + | "funding": { |
|
| 2173 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 2174 | + | } |
|
| 2175 | + | }, |
|
| 2176 | + | "node_modules/array.prototype.flatmap": { |
|
| 2177 | + | "version": "1.3.1", |
|
| 2178 | + | "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz", |
|
| 2179 | + | "integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==", |
|
| 2180 | + | "dev": true, |
|
| 2181 | + | "dependencies": { |
|
| 2182 | + | "call-bind": "^1.0.2", |
|
| 2183 | + | "define-properties": "^1.1.4", |
|
| 2184 | + | "es-abstract": "^1.20.4", |
|
| 2185 | + | "es-shim-unscopables": "^1.0.0" |
|
| 2186 | + | }, |
|
| 2187 | + | "engines": { |
|
| 2188 | + | "node": ">= 0.4" |
|
| 2189 | + | }, |
|
| 2190 | + | "funding": { |
|
| 2191 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 2192 | + | } |
|
| 2193 | + | }, |
|
| 2194 | + | "node_modules/arrify": { |
|
| 2195 | + | "version": "1.0.1", |
|
| 2196 | + | "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", |
|
| 2197 | + | "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==", |
|
| 2198 | + | "dev": true, |
|
| 2199 | + | "engines": { |
|
| 2200 | + | "node": ">=0.10.0" |
|
| 2201 | + | } |
|
| 2202 | + | }, |
|
| 2203 | + | "node_modules/ast-types-flow": { |
|
| 2204 | + | "version": "0.0.7", |
|
| 2205 | + | "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", |
|
| 2206 | + | "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==", |
|
| 2207 | + | "dev": true |
|
| 2208 | + | }, |
|
| 2209 | + | "node_modules/astral-regex": { |
|
| 2210 | + | "version": "2.0.0", |
|
| 2211 | + | "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", |
|
| 2212 | + | "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", |
|
| 2213 | + | "dev": true, |
|
| 2214 | + | "engines": { |
|
| 2215 | + | "node": ">=8" |
|
| 2216 | + | } |
|
| 2217 | + | }, |
|
| 2218 | + | "node_modules/astring": { |
|
| 2219 | + | "version": "1.8.4", |
|
| 2220 | + | "resolved": "https://registry.npmjs.org/astring/-/astring-1.8.4.tgz", |
|
| 2221 | + | "integrity": "sha512-97a+l2LBU3Op3bBQEff79i/E4jMD2ZLFD8rHx9B6mXyB2uQwhJQYfiDqUwtfjF4QA1F2qs//N6Cw8LetMbQjcw==", |
|
| 2222 | + | "dev": true, |
|
| 2223 | + | "bin": { |
|
| 2224 | + | "astring": "bin/astring" |
|
| 2225 | + | } |
|
| 2226 | + | }, |
|
| 2227 | + | "node_modules/astro": { |
|
| 2228 | + | "version": "2.0.2", |
|
| 2229 | + | "resolved": "https://registry.npmjs.org/astro/-/astro-2.0.2.tgz", |
|
| 2230 | + | "integrity": "sha512-47N1jLWNxSri7kWfIfgcEnQJZWTvd0gXhNC3P2ZHiiurl4nOxFC5ULsW5MDDTjTzQ1S7y1RoaL9XxYm+Rury7w==", |
|
| 2231 | + | "dependencies": { |
|
| 2232 | + | "@astrojs/compiler": "^1.0.1", |
|
| 2233 | + | "@astrojs/language-server": "^0.28.3", |
|
| 2234 | + | "@astrojs/markdown-remark": "^2.0.1", |
|
| 2235 | + | "@astrojs/telemetry": "^2.0.0", |
|
| 2236 | + | "@astrojs/webapi": "^2.0.0", |
|
| 2237 | + | "@babel/core": "^7.18.2", |
|
| 2238 | + | "@babel/generator": "^7.18.2", |
|
| 2239 | + | "@babel/parser": "^7.18.4", |
|
| 2240 | + | "@babel/plugin-transform-react-jsx": "^7.17.12", |
|
| 2241 | + | "@babel/traverse": "^7.18.2", |
|
| 2242 | + | "@babel/types": "^7.18.4", |
|
| 2243 | + | "@types/babel__core": "^7.1.19", |
|
| 2244 | + | "@types/yargs-parser": "^21.0.0", |
|
| 2245 | + | "acorn": "^8.8.1", |
|
| 2246 | + | "boxen": "^6.2.1", |
|
| 2247 | + | "ci-info": "^3.3.1", |
|
| 2248 | + | "common-ancestor-path": "^1.0.1", |
|
| 2249 | + | "cookie": "^0.5.0", |
|
| 2250 | + | "debug": "^4.3.4", |
|
| 2251 | + | "deepmerge-ts": "^4.2.2", |
|
| 2252 | + | "devalue": "^4.2.0", |
|
| 2253 | + | "diff": "^5.1.0", |
|
| 2254 | + | "es-module-lexer": "^1.1.0", |
|
| 2255 | + | "estree-walker": "^3.0.1", |
|
| 2256 | + | "execa": "^6.1.0", |
|
| 2257 | + | "fast-glob": "^3.2.11", |
|
| 2258 | + | "github-slugger": "^2.0.0", |
|
| 2259 | + | "gray-matter": "^4.0.3", |
|
| 2260 | + | "html-escaper": "^3.0.3", |
|
| 2261 | + | "kleur": "^4.1.4", |
|
| 2262 | + | "magic-string": "^0.27.0", |
|
| 2263 | + | "mime": "^3.0.0", |
|
| 2264 | + | "ora": "^6.1.0", |
|
| 2265 | + | "path-to-regexp": "^6.2.1", |
|
| 2266 | + | "preferred-pm": "^3.0.3", |
|
| 2267 | + | "prompts": "^2.4.2", |
|
| 2268 | + | "rehype": "^12.0.1", |
|
| 2269 | + | "semver": "^7.3.8", |
|
| 2270 | + | "server-destroy": "^1.0.1", |
|
| 2271 | + | "shiki": "^0.11.1", |
|
| 2272 | + | "slash": "^4.0.0", |
|
| 2273 | + | "string-width": "^5.1.2", |
|
| 2274 | + | "strip-ansi": "^7.0.1", |
|
| 2275 | + | "supports-esm": "^1.0.0", |
|
| 2276 | + | "tsconfig-resolver": "^3.0.1", |
|
| 2277 | + | "typescript": "*", |
|
| 2278 | + | "unist-util-visit": "^4.1.0", |
|
| 2279 | + | "vfile": "^5.3.2", |
|
| 2280 | + | "vite": "^4.0.3", |
|
| 2281 | + | "vitefu": "^0.2.4", |
|
| 2282 | + | "yargs-parser": "^21.0.1", |
|
| 2283 | + | "zod": "^3.17.3" |
|
| 2284 | + | }, |
|
| 2285 | + | "bin": { |
|
| 2286 | + | "astro": "astro.js" |
|
| 2287 | + | }, |
|
| 2288 | + | "engines": { |
|
| 2289 | + | "node": ">=16.12.0", |
|
| 2290 | + | "npm": ">=6.14.0" |
|
| 2291 | + | } |
|
| 2292 | + | }, |
|
| 2293 | + | "node_modules/astro-eslint-parser": { |
|
| 2294 | + | "version": "0.11.0", |
|
| 2295 | + | "resolved": "https://registry.npmjs.org/astro-eslint-parser/-/astro-eslint-parser-0.11.0.tgz", |
|
| 2296 | + | "integrity": "sha512-vcz8KBQ20WNOot6qK6w7DQtz2hwg+aLLqlUa6nAnitJLqbR12GxJN/+96U3O+VI4da5Up+FMWqNoL9mywSENtA==", |
|
| 2297 | + | "dev": true, |
|
| 2298 | + | "dependencies": { |
|
| 2299 | + | "@astrojs/compiler": "^1.0.0", |
|
| 2300 | + | "@typescript-eslint/scope-manager": "^5.48.2", |
|
| 2301 | + | "@typescript-eslint/types": "^5.25.0", |
|
| 2302 | + | "astrojs-compiler-sync": "^0.3.0", |
|
| 2303 | + | "debug": "^4.3.4", |
|
| 2304 | + | "eslint-visitor-keys": "^3.0.0", |
|
| 2305 | + | "espree": "^9.0.0" |
|
| 2306 | + | }, |
|
| 2307 | + | "engines": { |
|
| 2308 | + | "node": "^14.18.0 || >=16.0.0" |
|
| 2309 | + | }, |
|
| 2310 | + | "funding": { |
|
| 2311 | + | "url": "https://github.com/sponsors/ota-meshi" |
|
| 2312 | + | } |
|
| 2313 | + | }, |
|
| 2314 | + | "node_modules/astro/node_modules/es-module-lexer": { |
|
| 2315 | + | "version": "1.1.1", |
|
| 2316 | + | "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.1.1.tgz", |
|
| 2317 | + | "integrity": "sha512-n3ruqU8Te7I5prBd6d0darM8ajFuVNhLWvgo04hN7goWSaSrxe7ENOZitac7akN0A2o+8fMomBDsNPvW/eE3CQ==" |
|
| 2318 | + | }, |
|
| 2319 | + | "node_modules/astro/node_modules/github-slugger": { |
|
| 2320 | + | "version": "2.0.0", |
|
| 2321 | + | "resolved": "https://registry.npmjs.org/github-slugger/-/github-slugger-2.0.0.tgz", |
|
| 2322 | + | "integrity": "sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==" |
|
| 2323 | + | }, |
|
| 2324 | + | "node_modules/astrojs-compiler-sync": { |
|
| 2325 | + | "version": "0.3.1", |
|
| 2326 | + | "resolved": "https://registry.npmjs.org/astrojs-compiler-sync/-/astrojs-compiler-sync-0.3.1.tgz", |
|
| 2327 | + | "integrity": "sha512-IzPuzkwdiRIZoBhCTuFhuBMWVESXgthTdwQ24QS8LvLargcWAA4E21KmZo4wimsmOG5vj4KKs9QFpy9zhXuo9Q==", |
|
| 2328 | + | "dev": true, |
|
| 2329 | + | "dependencies": { |
|
| 2330 | + | "synckit": "^0.8.0" |
|
| 2331 | + | }, |
|
| 2332 | + | "engines": { |
|
| 2333 | + | "node": "^14.18.0 || >=16.0.0" |
|
| 2334 | + | }, |
|
| 2335 | + | "funding": { |
|
| 2336 | + | "url": "https://github.com/sponsors/ota-meshi" |
|
| 2337 | + | }, |
|
| 2338 | + | "peerDependencies": { |
|
| 2339 | + | "@astrojs/compiler": ">=0.27.0" |
|
| 2340 | + | } |
|
| 2341 | + | }, |
|
| 2342 | + | "node_modules/autoprefixer": { |
|
| 2343 | + | "version": "10.4.13", |
|
| 2344 | + | "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.13.tgz", |
|
| 2345 | + | "integrity": "sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==", |
|
| 2346 | + | "dev": true, |
|
| 2347 | + | "funding": [ |
|
| 2348 | + | { |
|
| 2349 | + | "type": "opencollective", |
|
| 2350 | + | "url": "https://opencollective.com/postcss/" |
|
| 2351 | + | }, |
|
| 2352 | + | { |
|
| 2353 | + | "type": "tidelift", |
|
| 2354 | + | "url": "https://tidelift.com/funding/github/npm/autoprefixer" |
|
| 2355 | + | } |
|
| 2356 | + | ], |
|
| 2357 | + | "dependencies": { |
|
| 2358 | + | "browserslist": "^4.21.4", |
|
| 2359 | + | "caniuse-lite": "^1.0.30001426", |
|
| 2360 | + | "fraction.js": "^4.2.0", |
|
| 2361 | + | "normalize-range": "^0.1.2", |
|
| 2362 | + | "picocolors": "^1.0.0", |
|
| 2363 | + | "postcss-value-parser": "^4.2.0" |
|
| 2364 | + | }, |
|
| 2365 | + | "bin": { |
|
| 2366 | + | "autoprefixer": "bin/autoprefixer" |
|
| 2367 | + | }, |
|
| 2368 | + | "engines": { |
|
| 2369 | + | "node": "^10 || ^12 || >=14" |
|
| 2370 | + | }, |
|
| 2371 | + | "peerDependencies": { |
|
| 2372 | + | "postcss": "^8.1.0" |
|
| 2373 | + | } |
|
| 2374 | + | }, |
|
| 2375 | + | "node_modules/available-typed-arrays": { |
|
| 2376 | + | "version": "1.0.5", |
|
| 2377 | + | "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", |
|
| 2378 | + | "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", |
|
| 2379 | + | "dev": true, |
|
| 2380 | + | "engines": { |
|
| 2381 | + | "node": ">= 0.4" |
|
| 2382 | + | }, |
|
| 2383 | + | "funding": { |
|
| 2384 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 2385 | + | } |
|
| 2386 | + | }, |
|
| 2387 | + | "node_modules/axe-core": { |
|
| 2388 | + | "version": "4.6.3", |
|
| 2389 | + | "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.6.3.tgz", |
|
| 2390 | + | "integrity": "sha512-/BQzOX780JhsxDnPpH4ZiyrJAzcd8AfzFPkv+89veFSr1rcMjuq2JDCwypKaPeB6ljHp9KjXhPpjgCvQlWYuqg==", |
|
| 2391 | + | "dev": true, |
|
| 2392 | + | "engines": { |
|
| 2393 | + | "node": ">=4" |
|
| 2394 | + | } |
|
| 2395 | + | }, |
|
| 2396 | + | "node_modules/axobject-query": { |
|
| 2397 | + | "version": "3.1.1", |
|
| 2398 | + | "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.1.1.tgz", |
|
| 2399 | + | "integrity": "sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==", |
|
| 2400 | + | "dev": true, |
|
| 2401 | + | "dependencies": { |
|
| 2402 | + | "deep-equal": "^2.0.5" |
|
| 2403 | + | } |
|
| 2404 | + | }, |
|
| 2405 | + | "node_modules/bail": { |
|
| 2406 | + | "version": "2.0.2", |
|
| 2407 | + | "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz", |
|
| 2408 | + | "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==", |
|
| 2409 | + | "funding": { |
|
| 2410 | + | "type": "github", |
|
| 2411 | + | "url": "https://github.com/sponsors/wooorm" |
|
| 2412 | + | } |
|
| 2413 | + | }, |
|
| 2414 | + | "node_modules/balanced-match": { |
|
| 2415 | + | "version": "1.0.2", |
|
| 2416 | + | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", |
|
| 2417 | + | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", |
|
| 2418 | + | "dev": true |
|
| 2419 | + | }, |
|
| 2420 | + | "node_modules/base64-js": { |
|
| 2421 | + | "version": "1.5.1", |
|
| 2422 | + | "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", |
|
| 2423 | + | "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", |
|
| 2424 | + | "funding": [ |
|
| 2425 | + | { |
|
| 2426 | + | "type": "github", |
|
| 2427 | + | "url": "https://github.com/sponsors/feross" |
|
| 2428 | + | }, |
|
| 2429 | + | { |
|
| 2430 | + | "type": "patreon", |
|
| 2431 | + | "url": "https://www.patreon.com/feross" |
|
| 2432 | + | }, |
|
| 2433 | + | { |
|
| 2434 | + | "type": "consulting", |
|
| 2435 | + | "url": "https://feross.org/support" |
|
| 2436 | + | } |
|
| 2437 | + | ] |
|
| 2438 | + | }, |
|
| 2439 | + | "node_modules/binary-extensions": { |
|
| 2440 | + | "version": "2.2.0", |
|
| 2441 | + | "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", |
|
| 2442 | + | "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", |
|
| 2443 | + | "dev": true, |
|
| 2444 | + | "engines": { |
|
| 2445 | + | "node": ">=8" |
|
| 2446 | + | } |
|
| 2447 | + | }, |
|
| 2448 | + | "node_modules/bl": { |
|
| 2449 | + | "version": "5.1.0", |
|
| 2450 | + | "resolved": "https://registry.npmjs.org/bl/-/bl-5.1.0.tgz", |
|
| 2451 | + | "integrity": "sha512-tv1ZJHLfTDnXE6tMHv73YgSJaWR2AFuPwMntBe7XL/GBFHnT0CLnsHMogfk5+GzCDC5ZWarSCYaIGATZt9dNsQ==", |
|
| 2452 | + | "dependencies": { |
|
| 2453 | + | "buffer": "^6.0.3", |
|
| 2454 | + | "inherits": "^2.0.4", |
|
| 2455 | + | "readable-stream": "^3.4.0" |
|
| 2456 | + | } |
|
| 2457 | + | }, |
|
| 2458 | + | "node_modules/boxen": { |
|
| 2459 | + | "version": "6.2.1", |
|
| 2460 | + | "resolved": "https://registry.npmjs.org/boxen/-/boxen-6.2.1.tgz", |
|
| 2461 | + | "integrity": "sha512-H4PEsJXfFI/Pt8sjDWbHlQPx4zL/bvSQjcilJmaulGt5mLDorHOHpmdXAJcBcmru7PhYSp/cDMWRko4ZUMFkSw==", |
|
| 2462 | + | "dependencies": { |
|
| 2463 | + | "ansi-align": "^3.0.1", |
|
| 2464 | + | "camelcase": "^6.2.0", |
|
| 2465 | + | "chalk": "^4.1.2", |
|
| 2466 | + | "cli-boxes": "^3.0.0", |
|
| 2467 | + | "string-width": "^5.0.1", |
|
| 2468 | + | "type-fest": "^2.5.0", |
|
| 2469 | + | "widest-line": "^4.0.1", |
|
| 2470 | + | "wrap-ansi": "^8.0.1" |
|
| 2471 | + | }, |
|
| 2472 | + | "engines": { |
|
| 2473 | + | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" |
|
| 2474 | + | }, |
|
| 2475 | + | "funding": { |
|
| 2476 | + | "url": "https://github.com/sponsors/sindresorhus" |
|
| 2477 | + | } |
|
| 2478 | + | }, |
|
| 2479 | + | "node_modules/boxen/node_modules/ansi-styles": { |
|
| 2480 | + | "version": "4.3.0", |
|
| 2481 | + | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", |
|
| 2482 | + | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", |
|
| 2483 | + | "dependencies": { |
|
| 2484 | + | "color-convert": "^2.0.1" |
|
| 2485 | + | }, |
|
| 2486 | + | "engines": { |
|
| 2487 | + | "node": ">=8" |
|
| 2488 | + | }, |
|
| 2489 | + | "funding": { |
|
| 2490 | + | "url": "https://github.com/chalk/ansi-styles?sponsor=1" |
|
| 2491 | + | } |
|
| 2492 | + | }, |
|
| 2493 | + | "node_modules/boxen/node_modules/chalk": { |
|
| 2494 | + | "version": "4.1.2", |
|
| 2495 | + | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", |
|
| 2496 | + | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", |
|
| 2497 | + | "dependencies": { |
|
| 2498 | + | "ansi-styles": "^4.1.0", |
|
| 2499 | + | "supports-color": "^7.1.0" |
|
| 2500 | + | }, |
|
| 2501 | + | "engines": { |
|
| 2502 | + | "node": ">=10" |
|
| 2503 | + | }, |
|
| 2504 | + | "funding": { |
|
| 2505 | + | "url": "https://github.com/chalk/chalk?sponsor=1" |
|
| 2506 | + | } |
|
| 2507 | + | }, |
|
| 2508 | + | "node_modules/boxen/node_modules/color-convert": { |
|
| 2509 | + | "version": "2.0.1", |
|
| 2510 | + | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", |
|
| 2511 | + | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", |
|
| 2512 | + | "dependencies": { |
|
| 2513 | + | "color-name": "~1.1.4" |
|
| 2514 | + | }, |
|
| 2515 | + | "engines": { |
|
| 2516 | + | "node": ">=7.0.0" |
|
| 2517 | + | } |
|
| 2518 | + | }, |
|
| 2519 | + | "node_modules/boxen/node_modules/color-name": { |
|
| 2520 | + | "version": "1.1.4", |
|
| 2521 | + | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", |
|
| 2522 | + | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" |
|
| 2523 | + | }, |
|
| 2524 | + | "node_modules/boxen/node_modules/has-flag": { |
|
| 2525 | + | "version": "4.0.0", |
|
| 2526 | + | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", |
|
| 2527 | + | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", |
|
| 2528 | + | "engines": { |
|
| 2529 | + | "node": ">=8" |
|
| 2530 | + | } |
|
| 2531 | + | }, |
|
| 2532 | + | "node_modules/boxen/node_modules/supports-color": { |
|
| 2533 | + | "version": "7.2.0", |
|
| 2534 | + | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", |
|
| 2535 | + | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", |
|
| 2536 | + | "dependencies": { |
|
| 2537 | + | "has-flag": "^4.0.0" |
|
| 2538 | + | }, |
|
| 2539 | + | "engines": { |
|
| 2540 | + | "node": ">=8" |
|
| 2541 | + | } |
|
| 2542 | + | }, |
|
| 2543 | + | "node_modules/brace-expansion": { |
|
| 2544 | + | "version": "1.1.11", |
|
| 2545 | + | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", |
|
| 2546 | + | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", |
|
| 2547 | + | "dev": true, |
|
| 2548 | + | "dependencies": { |
|
| 2549 | + | "balanced-match": "^1.0.0", |
|
| 2550 | + | "concat-map": "0.0.1" |
|
| 2551 | + | } |
|
| 2552 | + | }, |
|
| 2553 | + | "node_modules/braces": { |
|
| 2554 | + | "version": "3.0.2", |
|
| 2555 | + | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", |
|
| 2556 | + | "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", |
|
| 2557 | + | "dependencies": { |
|
| 2558 | + | "fill-range": "^7.0.1" |
|
| 2559 | + | }, |
|
| 2560 | + | "engines": { |
|
| 2561 | + | "node": ">=8" |
|
| 2562 | + | } |
|
| 2563 | + | }, |
|
| 2564 | + | "node_modules/browserslist": { |
|
| 2565 | + | "version": "4.21.5", |
|
| 2566 | + | "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz", |
|
| 2567 | + | "integrity": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==", |
|
| 2568 | + | "funding": [ |
|
| 2569 | + | { |
|
| 2570 | + | "type": "opencollective", |
|
| 2571 | + | "url": "https://opencollective.com/browserslist" |
|
| 2572 | + | }, |
|
| 2573 | + | { |
|
| 2574 | + | "type": "tidelift", |
|
| 2575 | + | "url": "https://tidelift.com/funding/github/npm/browserslist" |
|
| 2576 | + | } |
|
| 2577 | + | ], |
|
| 2578 | + | "dependencies": { |
|
| 2579 | + | "caniuse-lite": "^1.0.30001449", |
|
| 2580 | + | "electron-to-chromium": "^1.4.284", |
|
| 2581 | + | "node-releases": "^2.0.8", |
|
| 2582 | + | "update-browserslist-db": "^1.0.10" |
|
| 2583 | + | }, |
|
| 2584 | + | "bin": { |
|
| 2585 | + | "browserslist": "cli.js" |
|
| 2586 | + | }, |
|
| 2587 | + | "engines": { |
|
| 2588 | + | "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" |
|
| 2589 | + | } |
|
| 2590 | + | }, |
|
| 2591 | + | "node_modules/buffer": { |
|
| 2592 | + | "version": "6.0.3", |
|
| 2593 | + | "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", |
|
| 2594 | + | "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", |
|
| 2595 | + | "funding": [ |
|
| 2596 | + | { |
|
| 2597 | + | "type": "github", |
|
| 2598 | + | "url": "https://github.com/sponsors/feross" |
|
| 2599 | + | }, |
|
| 2600 | + | { |
|
| 2601 | + | "type": "patreon", |
|
| 2602 | + | "url": "https://www.patreon.com/feross" |
|
| 2603 | + | }, |
|
| 2604 | + | { |
|
| 2605 | + | "type": "consulting", |
|
| 2606 | + | "url": "https://feross.org/support" |
|
| 2607 | + | } |
|
| 2608 | + | ], |
|
| 2609 | + | "dependencies": { |
|
| 2610 | + | "base64-js": "^1.3.1", |
|
| 2611 | + | "ieee754": "^1.2.1" |
|
| 2612 | + | } |
|
| 2613 | + | }, |
|
| 2614 | + | "node_modules/busboy": { |
|
| 2615 | + | "version": "1.6.0", |
|
| 2616 | + | "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", |
|
| 2617 | + | "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", |
|
| 2618 | + | "dependencies": { |
|
| 2619 | + | "streamsearch": "^1.1.0" |
|
| 2620 | + | }, |
|
| 2621 | + | "engines": { |
|
| 2622 | + | "node": ">=10.16.0" |
|
| 2623 | + | } |
|
| 2624 | + | }, |
|
| 2625 | + | "node_modules/call-bind": { |
|
| 2626 | + | "version": "1.0.2", |
|
| 2627 | + | "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", |
|
| 2628 | + | "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", |
|
| 2629 | + | "dev": true, |
|
| 2630 | + | "dependencies": { |
|
| 2631 | + | "function-bind": "^1.1.1", |
|
| 2632 | + | "get-intrinsic": "^1.0.2" |
|
| 2633 | + | }, |
|
| 2634 | + | "funding": { |
|
| 2635 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 2636 | + | } |
|
| 2637 | + | }, |
|
| 2638 | + | "node_modules/callsites": { |
|
| 2639 | + | "version": "3.1.0", |
|
| 2640 | + | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", |
|
| 2641 | + | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", |
|
| 2642 | + | "dev": true, |
|
| 2643 | + | "engines": { |
|
| 2644 | + | "node": ">=6" |
|
| 2645 | + | } |
|
| 2646 | + | }, |
|
| 2647 | + | "node_modules/camelcase": { |
|
| 2648 | + | "version": "6.3.0", |
|
| 2649 | + | "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", |
|
| 2650 | + | "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", |
|
| 2651 | + | "engines": { |
|
| 2652 | + | "node": ">=10" |
|
| 2653 | + | }, |
|
| 2654 | + | "funding": { |
|
| 2655 | + | "url": "https://github.com/sponsors/sindresorhus" |
|
| 2656 | + | } |
|
| 2657 | + | }, |
|
| 2658 | + | "node_modules/camelcase-css": { |
|
| 2659 | + | "version": "2.0.1", |
|
| 2660 | + | "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", |
|
| 2661 | + | "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", |
|
| 2662 | + | "dev": true, |
|
| 2663 | + | "engines": { |
|
| 2664 | + | "node": ">= 6" |
|
| 2665 | + | } |
|
| 2666 | + | }, |
|
| 2667 | + | "node_modules/camelcase-keys": { |
|
| 2668 | + | "version": "6.2.2", |
|
| 2669 | + | "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-6.2.2.tgz", |
|
| 2670 | + | "integrity": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==", |
|
| 2671 | + | "dev": true, |
|
| 2672 | + | "dependencies": { |
|
| 2673 | + | "camelcase": "^5.3.1", |
|
| 2674 | + | "map-obj": "^4.0.0", |
|
| 2675 | + | "quick-lru": "^4.0.1" |
|
| 2676 | + | }, |
|
| 2677 | + | "engines": { |
|
| 2678 | + | "node": ">=8" |
|
| 2679 | + | }, |
|
| 2680 | + | "funding": { |
|
| 2681 | + | "url": "https://github.com/sponsors/sindresorhus" |
|
| 2682 | + | } |
|
| 2683 | + | }, |
|
| 2684 | + | "node_modules/camelcase-keys/node_modules/camelcase": { |
|
| 2685 | + | "version": "5.3.1", |
|
| 2686 | + | "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", |
|
| 2687 | + | "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", |
|
| 2688 | + | "dev": true, |
|
| 2689 | + | "engines": { |
|
| 2690 | + | "node": ">=6" |
|
| 2691 | + | } |
|
| 2692 | + | }, |
|
| 2693 | + | "node_modules/camelize": { |
|
| 2694 | + | "version": "1.0.1", |
|
| 2695 | + | "resolved": "https://registry.npmjs.org/camelize/-/camelize-1.0.1.tgz", |
|
| 2696 | + | "integrity": "sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==", |
|
| 2697 | + | "funding": { |
|
| 2698 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 2699 | + | } |
|
| 2700 | + | }, |
|
| 2701 | + | "node_modules/caniuse-lite": { |
|
| 2702 | + | "version": "1.0.30001457", |
|
| 2703 | + | "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001457.tgz", |
|
| 2704 | + | "integrity": "sha512-SDIV6bgE1aVbK6XyxdURbUE89zY7+k1BBBaOwYwkNCglXlel/E7mELiHC64HQ+W0xSKlqWhV9Wh7iHxUjMs4fA==", |
|
| 2705 | + | "funding": [ |
|
| 2706 | + | { |
|
| 2707 | + | "type": "opencollective", |
|
| 2708 | + | "url": "https://opencollective.com/browserslist" |
|
| 2709 | + | }, |
|
| 2710 | + | { |
|
| 2711 | + | "type": "tidelift", |
|
| 2712 | + | "url": "https://tidelift.com/funding/github/npm/caniuse-lite" |
|
| 2713 | + | } |
|
| 2714 | + | ] |
|
| 2715 | + | }, |
|
| 2716 | + | "node_modules/ccount": { |
|
| 2717 | + | "version": "2.0.1", |
|
| 2718 | + | "resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz", |
|
| 2719 | + | "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==", |
|
| 2720 | + | "funding": { |
|
| 2721 | + | "type": "github", |
|
| 2722 | + | "url": "https://github.com/sponsors/wooorm" |
|
| 2723 | + | } |
|
| 2724 | + | }, |
|
| 2725 | + | "node_modules/chalk": { |
|
| 2726 | + | "version": "2.4.2", |
|
| 2727 | + | "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", |
|
| 2728 | + | "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", |
|
| 2729 | + | "dependencies": { |
|
| 2730 | + | "ansi-styles": "^3.2.1", |
|
| 2731 | + | "escape-string-regexp": "^1.0.5", |
|
| 2732 | + | "supports-color": "^5.3.0" |
|
| 2733 | + | }, |
|
| 2734 | + | "engines": { |
|
| 2735 | + | "node": ">=4" |
|
| 2736 | + | } |
|
| 2737 | + | }, |
|
| 2738 | + | "node_modules/character-entities": { |
|
| 2739 | + | "version": "2.0.2", |
|
| 2740 | + | "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz", |
|
| 2741 | + | "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==", |
|
| 2742 | + | "funding": { |
|
| 2743 | + | "type": "github", |
|
| 2744 | + | "url": "https://github.com/sponsors/wooorm" |
|
| 2745 | + | } |
|
| 2746 | + | }, |
|
| 2747 | + | "node_modules/character-entities-html4": { |
|
| 2748 | + | "version": "2.1.0", |
|
| 2749 | + | "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz", |
|
| 2750 | + | "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==", |
|
| 2751 | + | "funding": { |
|
| 2752 | + | "type": "github", |
|
| 2753 | + | "url": "https://github.com/sponsors/wooorm" |
|
| 2754 | + | } |
|
| 2755 | + | }, |
|
| 2756 | + | "node_modules/character-entities-legacy": { |
|
| 2757 | + | "version": "3.0.0", |
|
| 2758 | + | "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz", |
|
| 2759 | + | "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==", |
|
| 2760 | + | "funding": { |
|
| 2761 | + | "type": "github", |
|
| 2762 | + | "url": "https://github.com/sponsors/wooorm" |
|
| 2763 | + | } |
|
| 2764 | + | }, |
|
| 2765 | + | "node_modules/character-reference-invalid": { |
|
| 2766 | + | "version": "2.0.1", |
|
| 2767 | + | "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz", |
|
| 2768 | + | "integrity": "sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==", |
|
| 2769 | + | "dev": true, |
|
| 2770 | + | "funding": { |
|
| 2771 | + | "type": "github", |
|
| 2772 | + | "url": "https://github.com/sponsors/wooorm" |
|
| 2773 | + | } |
|
| 2774 | + | }, |
|
| 2775 | + | "node_modules/chokidar": { |
|
| 2776 | + | "version": "3.5.3", |
|
| 2777 | + | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", |
|
| 2778 | + | "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", |
|
| 2779 | + | "dev": true, |
|
| 2780 | + | "funding": [ |
|
| 2781 | + | { |
|
| 2782 | + | "type": "individual", |
|
| 2783 | + | "url": "https://paulmillr.com/funding/" |
|
| 2784 | + | } |
|
| 2785 | + | ], |
|
| 2786 | + | "dependencies": { |
|
| 2787 | + | "anymatch": "~3.1.2", |
|
| 2788 | + | "braces": "~3.0.2", |
|
| 2789 | + | "glob-parent": "~5.1.2", |
|
| 2790 | + | "is-binary-path": "~2.1.0", |
|
| 2791 | + | "is-glob": "~4.0.1", |
|
| 2792 | + | "normalize-path": "~3.0.0", |
|
| 2793 | + | "readdirp": "~3.6.0" |
|
| 2794 | + | }, |
|
| 2795 | + | "engines": { |
|
| 2796 | + | "node": ">= 8.10.0" |
|
| 2797 | + | }, |
|
| 2798 | + | "optionalDependencies": { |
|
| 2799 | + | "fsevents": "~2.3.2" |
|
| 2800 | + | } |
|
| 2801 | + | }, |
|
| 2802 | + | "node_modules/chokidar/node_modules/glob-parent": { |
|
| 2803 | + | "version": "5.1.2", |
|
| 2804 | + | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", |
|
| 2805 | + | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", |
|
| 2806 | + | "dev": true, |
|
| 2807 | + | "dependencies": { |
|
| 2808 | + | "is-glob": "^4.0.1" |
|
| 2809 | + | }, |
|
| 2810 | + | "engines": { |
|
| 2811 | + | "node": ">= 6" |
|
| 2812 | + | } |
|
| 2813 | + | }, |
|
| 2814 | + | "node_modules/chownr": { |
|
| 2815 | + | "version": "1.1.4", |
|
| 2816 | + | "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", |
|
| 2817 | + | "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==" |
|
| 2818 | + | }, |
|
| 2819 | + | "node_modules/ci-info": { |
|
| 2820 | + | "version": "3.8.0", |
|
| 2821 | + | "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz", |
|
| 2822 | + | "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==", |
|
| 2823 | + | "funding": [ |
|
| 2824 | + | { |
|
| 2825 | + | "type": "github", |
|
| 2826 | + | "url": "https://github.com/sponsors/sibiraj-s" |
|
| 2827 | + | } |
|
| 2828 | + | ], |
|
| 2829 | + | "engines": { |
|
| 2830 | + | "node": ">=8" |
|
| 2831 | + | } |
|
| 2832 | + | }, |
|
| 2833 | + | "node_modules/cli-boxes": { |
|
| 2834 | + | "version": "3.0.0", |
|
| 2835 | + | "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-3.0.0.tgz", |
|
| 2836 | + | "integrity": "sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==", |
|
| 2837 | + | "engines": { |
|
| 2838 | + | "node": ">=10" |
|
| 2839 | + | }, |
|
| 2840 | + | "funding": { |
|
| 2841 | + | "url": "https://github.com/sponsors/sindresorhus" |
|
| 2842 | + | } |
|
| 2843 | + | }, |
|
| 2844 | + | "node_modules/cli-cursor": { |
|
| 2845 | + | "version": "4.0.0", |
|
| 2846 | + | "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-4.0.0.tgz", |
|
| 2847 | + | "integrity": "sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==", |
|
| 2848 | + | "dependencies": { |
|
| 2849 | + | "restore-cursor": "^4.0.0" |
|
| 2850 | + | }, |
|
| 2851 | + | "engines": { |
|
| 2852 | + | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" |
|
| 2853 | + | }, |
|
| 2854 | + | "funding": { |
|
| 2855 | + | "url": "https://github.com/sponsors/sindresorhus" |
|
| 2856 | + | } |
|
| 2857 | + | }, |
|
| 2858 | + | "node_modules/cli-spinners": { |
|
| 2859 | + | "version": "2.7.0", |
|
| 2860 | + | "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.7.0.tgz", |
|
| 2861 | + | "integrity": "sha512-qu3pN8Y3qHNgE2AFweciB1IfMnmZ/fsNTEE+NOFjmGB2F/7rLhnhzppvpCnN4FovtP26k8lHyy9ptEbNwWFLzw==", |
|
| 2862 | + | "engines": { |
|
| 2863 | + | "node": ">=6" |
|
| 2864 | + | }, |
|
| 2865 | + | "funding": { |
|
| 2866 | + | "url": "https://github.com/sponsors/sindresorhus" |
|
| 2867 | + | } |
|
| 2868 | + | }, |
|
| 2869 | + | "node_modules/clone": { |
|
| 2870 | + | "version": "1.0.4", |
|
| 2871 | + | "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", |
|
| 2872 | + | "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", |
|
| 2873 | + | "engines": { |
|
| 2874 | + | "node": ">=0.8" |
|
| 2875 | + | } |
|
| 2876 | + | }, |
|
| 2877 | + | "node_modules/color": { |
|
| 2878 | + | "version": "4.2.3", |
|
| 2879 | + | "resolved": "https://registry.npmjs.org/color/-/color-4.2.3.tgz", |
|
| 2880 | + | "integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==", |
|
| 2881 | + | "dependencies": { |
|
| 2882 | + | "color-convert": "^2.0.1", |
|
| 2883 | + | "color-string": "^1.9.0" |
|
| 2884 | + | }, |
|
| 2885 | + | "engines": { |
|
| 2886 | + | "node": ">=12.5.0" |
|
| 2887 | + | } |
|
| 2888 | + | }, |
|
| 2889 | + | "node_modules/color-convert": { |
|
| 2890 | + | "version": "1.9.3", |
|
| 2891 | + | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", |
|
| 2892 | + | "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", |
|
| 2893 | + | "dependencies": { |
|
| 2894 | + | "color-name": "1.1.3" |
|
| 2895 | + | } |
|
| 2896 | + | }, |
|
| 2897 | + | "node_modules/color-name": { |
|
| 2898 | + | "version": "1.1.3", |
|
| 2899 | + | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", |
|
| 2900 | + | "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" |
|
| 2901 | + | }, |
|
| 2902 | + | "node_modules/color-string": { |
|
| 2903 | + | "version": "1.9.1", |
|
| 2904 | + | "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", |
|
| 2905 | + | "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", |
|
| 2906 | + | "dependencies": { |
|
| 2907 | + | "color-name": "^1.0.0", |
|
| 2908 | + | "simple-swizzle": "^0.2.2" |
|
| 2909 | + | } |
|
| 2910 | + | }, |
|
| 2911 | + | "node_modules/color/node_modules/color-convert": { |
|
| 2912 | + | "version": "2.0.1", |
|
| 2913 | + | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", |
|
| 2914 | + | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", |
|
| 2915 | + | "dependencies": { |
|
| 2916 | + | "color-name": "~1.1.4" |
|
| 2917 | + | }, |
|
| 2918 | + | "engines": { |
|
| 2919 | + | "node": ">=7.0.0" |
|
| 2920 | + | } |
|
| 2921 | + | }, |
|
| 2922 | + | "node_modules/color/node_modules/color-name": { |
|
| 2923 | + | "version": "1.1.4", |
|
| 2924 | + | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", |
|
| 2925 | + | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" |
|
| 2926 | + | }, |
|
| 2927 | + | "node_modules/colord": { |
|
| 2928 | + | "version": "2.9.3", |
|
| 2929 | + | "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", |
|
| 2930 | + | "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==", |
|
| 2931 | + | "dev": true |
|
| 2932 | + | }, |
|
| 2933 | + | "node_modules/comma-separated-tokens": { |
|
| 2934 | + | "version": "2.0.3", |
|
| 2935 | + | "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz", |
|
| 2936 | + | "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==", |
|
| 2937 | + | "funding": { |
|
| 2938 | + | "type": "github", |
|
| 2939 | + | "url": "https://github.com/sponsors/wooorm" |
|
| 2940 | + | } |
|
| 2941 | + | }, |
|
| 2942 | + | "node_modules/common-ancestor-path": { |
|
| 2943 | + | "version": "1.0.1", |
|
| 2944 | + | "resolved": "https://registry.npmjs.org/common-ancestor-path/-/common-ancestor-path-1.0.1.tgz", |
|
| 2945 | + | "integrity": "sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w==" |
|
| 2946 | + | }, |
|
| 2947 | + | "node_modules/concat-map": { |
|
| 2948 | + | "version": "0.0.1", |
|
| 2949 | + | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", |
|
| 2950 | + | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", |
|
| 2951 | + | "dev": true |
|
| 2952 | + | }, |
|
| 2953 | + | "node_modules/convert-source-map": { |
|
| 2954 | + | "version": "1.9.0", |
|
| 2955 | + | "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", |
|
| 2956 | + | "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" |
|
| 2957 | + | }, |
|
| 2958 | + | "node_modules/cookie": { |
|
| 2959 | + | "version": "0.5.0", |
|
| 2960 | + | "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", |
|
| 2961 | + | "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", |
|
| 2962 | + | "engines": { |
|
| 2963 | + | "node": ">= 0.6" |
|
| 2964 | + | } |
|
| 2965 | + | }, |
|
| 2966 | + | "node_modules/cosmiconfig": { |
|
| 2967 | + | "version": "7.1.0", |
|
| 2968 | + | "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", |
|
| 2969 | + | "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", |
|
| 2970 | + | "dev": true, |
|
| 2971 | + | "dependencies": { |
|
| 2972 | + | "@types/parse-json": "^4.0.0", |
|
| 2973 | + | "import-fresh": "^3.2.1", |
|
| 2974 | + | "parse-json": "^5.0.0", |
|
| 2975 | + | "path-type": "^4.0.0", |
|
| 2976 | + | "yaml": "^1.10.0" |
|
| 2977 | + | }, |
|
| 2978 | + | "engines": { |
|
| 2979 | + | "node": ">=10" |
|
| 2980 | + | } |
|
| 2981 | + | }, |
|
| 2982 | + | "node_modules/cosmiconfig/node_modules/yaml": { |
|
| 2983 | + | "version": "1.10.2", |
|
| 2984 | + | "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", |
|
| 2985 | + | "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", |
|
| 2986 | + | "dev": true, |
|
| 2987 | + | "engines": { |
|
| 2988 | + | "node": ">= 6" |
|
| 2989 | + | } |
|
| 2990 | + | }, |
|
| 2991 | + | "node_modules/cross-spawn": { |
|
| 2992 | + | "version": "7.0.3", |
|
| 2993 | + | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", |
|
| 2994 | + | "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", |
|
| 2995 | + | "dependencies": { |
|
| 2996 | + | "path-key": "^3.1.0", |
|
| 2997 | + | "shebang-command": "^2.0.0", |
|
| 2998 | + | "which": "^2.0.1" |
|
| 2999 | + | }, |
|
| 3000 | + | "engines": { |
|
| 3001 | + | "node": ">= 8" |
|
| 3002 | + | } |
|
| 3003 | + | }, |
|
| 3004 | + | "node_modules/css-background-parser": { |
|
| 3005 | + | "version": "0.1.0", |
|
| 3006 | + | "resolved": "https://registry.npmjs.org/css-background-parser/-/css-background-parser-0.1.0.tgz", |
|
| 3007 | + | "integrity": "sha512-2EZLisiZQ+7m4wwur/qiYJRniHX4K5Tc9w93MT3AS0WS1u5kaZ4FKXlOTBhOjc+CgEgPiGY+fX1yWD8UwpEqUA==" |
|
| 3008 | + | }, |
|
| 3009 | + | "node_modules/css-box-shadow": { |
|
| 3010 | + | "version": "1.0.0-3", |
|
| 3011 | + | "resolved": "https://registry.npmjs.org/css-box-shadow/-/css-box-shadow-1.0.0-3.tgz", |
|
| 3012 | + | "integrity": "sha512-9jaqR6e7Ohds+aWwmhe6wILJ99xYQbfmK9QQB9CcMjDbTxPZjwEmUQpU91OG05Xgm8BahT5fW+svbsQGjS/zPg==" |
|
| 3013 | + | }, |
|
| 3014 | + | "node_modules/css-color-keywords": { |
|
| 3015 | + | "version": "1.0.0", |
|
| 3016 | + | "resolved": "https://registry.npmjs.org/css-color-keywords/-/css-color-keywords-1.0.0.tgz", |
|
| 3017 | + | "integrity": "sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==", |
|
| 3018 | + | "engines": { |
|
| 3019 | + | "node": ">=4" |
|
| 3020 | + | } |
|
| 3021 | + | }, |
|
| 3022 | + | "node_modules/css-functions-list": { |
|
| 3023 | + | "version": "3.1.0", |
|
| 3024 | + | "resolved": "https://registry.npmjs.org/css-functions-list/-/css-functions-list-3.1.0.tgz", |
|
| 3025 | + | "integrity": "sha512-/9lCvYZaUbBGvYUgYGFJ4dcYiyqdhSjG7IPVluoV8A1ILjkF7ilmhp1OGUz8n+nmBcu0RNrQAzgD8B6FJbrt2w==", |
|
| 3026 | + | "dev": true, |
|
| 3027 | + | "engines": { |
|
| 3028 | + | "node": ">=12.22" |
|
| 3029 | + | } |
|
| 3030 | + | }, |
|
| 3031 | + | "node_modules/css-to-react-native": { |
|
| 3032 | + | "version": "3.2.0", |
|
| 3033 | + | "resolved": "https://registry.npmjs.org/css-to-react-native/-/css-to-react-native-3.2.0.tgz", |
|
| 3034 | + | "integrity": "sha512-e8RKaLXMOFii+02mOlqwjbD00KSEKqblnpO9e++1aXS1fPQOpS1YoqdVHBqPjHNoxeF2mimzVqawm2KCbEdtHQ==", |
|
| 3035 | + | "dependencies": { |
|
| 3036 | + | "camelize": "^1.0.0", |
|
| 3037 | + | "css-color-keywords": "^1.0.0", |
|
| 3038 | + | "postcss-value-parser": "^4.0.2" |
|
| 3039 | + | } |
|
| 3040 | + | }, |
|
| 3041 | + | "node_modules/cssesc": { |
|
| 3042 | + | "version": "3.0.0", |
|
| 3043 | + | "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", |
|
| 3044 | + | "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", |
|
| 3045 | + | "dev": true, |
|
| 3046 | + | "bin": { |
|
| 3047 | + | "cssesc": "bin/cssesc" |
|
| 3048 | + | }, |
|
| 3049 | + | "engines": { |
|
| 3050 | + | "node": ">=4" |
|
| 3051 | + | } |
|
| 3052 | + | }, |
|
| 3053 | + | "node_modules/damerau-levenshtein": { |
|
| 3054 | + | "version": "1.0.8", |
|
| 3055 | + | "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", |
|
| 3056 | + | "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==", |
|
| 3057 | + | "dev": true |
|
| 3058 | + | }, |
|
| 3059 | + | "node_modules/debug": { |
|
| 3060 | + | "version": "4.3.4", |
|
| 3061 | + | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", |
|
| 3062 | + | "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", |
|
| 3063 | + | "dependencies": { |
|
| 3064 | + | "ms": "2.1.2" |
|
| 3065 | + | }, |
|
| 3066 | + | "engines": { |
|
| 3067 | + | "node": ">=6.0" |
|
| 3068 | + | }, |
|
| 3069 | + | "peerDependenciesMeta": { |
|
| 3070 | + | "supports-color": { |
|
| 3071 | + | "optional": true |
|
| 3072 | + | } |
|
| 3073 | + | } |
|
| 3074 | + | }, |
|
| 3075 | + | "node_modules/decamelize": { |
|
| 3076 | + | "version": "1.2.0", |
|
| 3077 | + | "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", |
|
| 3078 | + | "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", |
|
| 3079 | + | "dev": true, |
|
| 3080 | + | "engines": { |
|
| 3081 | + | "node": ">=0.10.0" |
|
| 3082 | + | } |
|
| 3083 | + | }, |
|
| 3084 | + | "node_modules/decamelize-keys": { |
|
| 3085 | + | "version": "1.1.1", |
|
| 3086 | + | "resolved": "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.1.tgz", |
|
| 3087 | + | "integrity": "sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==", |
|
| 3088 | + | "dev": true, |
|
| 3089 | + | "dependencies": { |
|
| 3090 | + | "decamelize": "^1.1.0", |
|
| 3091 | + | "map-obj": "^1.0.0" |
|
| 3092 | + | }, |
|
| 3093 | + | "engines": { |
|
| 3094 | + | "node": ">=0.10.0" |
|
| 3095 | + | }, |
|
| 3096 | + | "funding": { |
|
| 3097 | + | "url": "https://github.com/sponsors/sindresorhus" |
|
| 3098 | + | } |
|
| 3099 | + | }, |
|
| 3100 | + | "node_modules/decamelize-keys/node_modules/map-obj": { |
|
| 3101 | + | "version": "1.0.1", |
|
| 3102 | + | "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", |
|
| 3103 | + | "integrity": "sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==", |
|
| 3104 | + | "dev": true, |
|
| 3105 | + | "engines": { |
|
| 3106 | + | "node": ">=0.10.0" |
|
| 3107 | + | } |
|
| 3108 | + | }, |
|
| 3109 | + | "node_modules/decode-named-character-reference": { |
|
| 3110 | + | "version": "1.0.2", |
|
| 3111 | + | "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.0.2.tgz", |
|
| 3112 | + | "integrity": "sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==", |
|
| 3113 | + | "dependencies": { |
|
| 3114 | + | "character-entities": "^2.0.0" |
|
| 3115 | + | }, |
|
| 3116 | + | "funding": { |
|
| 3117 | + | "type": "github", |
|
| 3118 | + | "url": "https://github.com/sponsors/wooorm" |
|
| 3119 | + | } |
|
| 3120 | + | }, |
|
| 3121 | + | "node_modules/decompress-response": { |
|
| 3122 | + | "version": "6.0.0", |
|
| 3123 | + | "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", |
|
| 3124 | + | "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", |
|
| 3125 | + | "dependencies": { |
|
| 3126 | + | "mimic-response": "^3.1.0" |
|
| 3127 | + | }, |
|
| 3128 | + | "engines": { |
|
| 3129 | + | "node": ">=10" |
|
| 3130 | + | }, |
|
| 3131 | + | "funding": { |
|
| 3132 | + | "url": "https://github.com/sponsors/sindresorhus" |
|
| 3133 | + | } |
|
| 3134 | + | }, |
|
| 3135 | + | "node_modules/deep-equal": { |
|
| 3136 | + | "version": "2.2.0", |
|
| 3137 | + | "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.0.tgz", |
|
| 3138 | + | "integrity": "sha512-RdpzE0Hv4lhowpIUKKMJfeH6C1pXdtT1/it80ubgWqwI3qpuxUBpC1S4hnHg+zjnuOoDkzUtUCEEkG+XG5l3Mw==", |
|
| 3139 | + | "dev": true, |
|
| 3140 | + | "dependencies": { |
|
| 3141 | + | "call-bind": "^1.0.2", |
|
| 3142 | + | "es-get-iterator": "^1.1.2", |
|
| 3143 | + | "get-intrinsic": "^1.1.3", |
|
| 3144 | + | "is-arguments": "^1.1.1", |
|
| 3145 | + | "is-array-buffer": "^3.0.1", |
|
| 3146 | + | "is-date-object": "^1.0.5", |
|
| 3147 | + | "is-regex": "^1.1.4", |
|
| 3148 | + | "is-shared-array-buffer": "^1.0.2", |
|
| 3149 | + | "isarray": "^2.0.5", |
|
| 3150 | + | "object-is": "^1.1.5", |
|
| 3151 | + | "object-keys": "^1.1.1", |
|
| 3152 | + | "object.assign": "^4.1.4", |
|
| 3153 | + | "regexp.prototype.flags": "^1.4.3", |
|
| 3154 | + | "side-channel": "^1.0.4", |
|
| 3155 | + | "which-boxed-primitive": "^1.0.2", |
|
| 3156 | + | "which-collection": "^1.0.1", |
|
| 3157 | + | "which-typed-array": "^1.1.9" |
|
| 3158 | + | }, |
|
| 3159 | + | "funding": { |
|
| 3160 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 3161 | + | } |
|
| 3162 | + | }, |
|
| 3163 | + | "node_modules/deep-extend": { |
|
| 3164 | + | "version": "0.6.0", |
|
| 3165 | + | "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", |
|
| 3166 | + | "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", |
|
| 3167 | + | "engines": { |
|
| 3168 | + | "node": ">=4.0.0" |
|
| 3169 | + | } |
|
| 3170 | + | }, |
|
| 3171 | + | "node_modules/deep-is": { |
|
| 3172 | + | "version": "0.1.4", |
|
| 3173 | + | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", |
|
| 3174 | + | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", |
|
| 3175 | + | "dev": true |
|
| 3176 | + | }, |
|
| 3177 | + | "node_modules/deepmerge": { |
|
| 3178 | + | "version": "4.3.0", |
|
| 3179 | + | "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.0.tgz", |
|
| 3180 | + | "integrity": "sha512-z2wJZXrmeHdvYJp/Ux55wIjqo81G5Bp4c+oELTW+7ar6SogWHajt5a9gO3s3IDaGSAXjDk0vlQKN3rms8ab3og==", |
|
| 3181 | + | "dev": true, |
|
| 3182 | + | "engines": { |
|
| 3183 | + | "node": ">=0.10.0" |
|
| 3184 | + | } |
|
| 3185 | + | }, |
|
| 3186 | + | "node_modules/deepmerge-ts": { |
|
| 3187 | + | "version": "4.3.0", |
|
| 3188 | + | "resolved": "https://registry.npmjs.org/deepmerge-ts/-/deepmerge-ts-4.3.0.tgz", |
|
| 3189 | + | "integrity": "sha512-if3ZYdkD2dClhnXR5reKtG98cwyaRT1NeugQoAPTTfsOpV9kqyeiBF9Qa5RHjemb3KzD5ulqygv6ED3t5j9eJw==", |
|
| 3190 | + | "engines": { |
|
| 3191 | + | "node": ">=12.4.0" |
|
| 3192 | + | } |
|
| 3193 | + | }, |
|
| 3194 | + | "node_modules/defaults": { |
|
| 3195 | + | "version": "1.0.4", |
|
| 3196 | + | "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", |
|
| 3197 | + | "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", |
|
| 3198 | + | "dependencies": { |
|
| 3199 | + | "clone": "^1.0.2" |
|
| 3200 | + | }, |
|
| 3201 | + | "funding": { |
|
| 3202 | + | "url": "https://github.com/sponsors/sindresorhus" |
|
| 3203 | + | } |
|
| 3204 | + | }, |
|
| 3205 | + | "node_modules/define-lazy-prop": { |
|
| 3206 | + | "version": "2.0.0", |
|
| 3207 | + | "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", |
|
| 3208 | + | "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", |
|
| 3209 | + | "engines": { |
|
| 3210 | + | "node": ">=8" |
|
| 3211 | + | } |
|
| 3212 | + | }, |
|
| 3213 | + | "node_modules/define-properties": { |
|
| 3214 | + | "version": "1.2.0", |
|
| 3215 | + | "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz", |
|
| 3216 | + | "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==", |
|
| 3217 | + | "dev": true, |
|
| 3218 | + | "dependencies": { |
|
| 3219 | + | "has-property-descriptors": "^1.0.0", |
|
| 3220 | + | "object-keys": "^1.1.1" |
|
| 3221 | + | }, |
|
| 3222 | + | "engines": { |
|
| 3223 | + | "node": ">= 0.4" |
|
| 3224 | + | }, |
|
| 3225 | + | "funding": { |
|
| 3226 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 3227 | + | } |
|
| 3228 | + | }, |
|
| 3229 | + | "node_modules/defined": { |
|
| 3230 | + | "version": "1.0.1", |
|
| 3231 | + | "resolved": "https://registry.npmjs.org/defined/-/defined-1.0.1.tgz", |
|
| 3232 | + | "integrity": "sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q==", |
|
| 3233 | + | "dev": true, |
|
| 3234 | + | "funding": { |
|
| 3235 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 3236 | + | } |
|
| 3237 | + | }, |
|
| 3238 | + | "node_modules/dequal": { |
|
| 3239 | + | "version": "2.0.3", |
|
| 3240 | + | "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", |
|
| 3241 | + | "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", |
|
| 3242 | + | "engines": { |
|
| 3243 | + | "node": ">=6" |
|
| 3244 | + | } |
|
| 3245 | + | }, |
|
| 3246 | + | "node_modules/detect-libc": { |
|
| 3247 | + | "version": "2.0.1", |
|
| 3248 | + | "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.1.tgz", |
|
| 3249 | + | "integrity": "sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w==", |
|
| 3250 | + | "engines": { |
|
| 3251 | + | "node": ">=8" |
|
| 3252 | + | } |
|
| 3253 | + | }, |
|
| 3254 | + | "node_modules/detective": { |
|
| 3255 | + | "version": "5.2.1", |
|
| 3256 | + | "resolved": "https://registry.npmjs.org/detective/-/detective-5.2.1.tgz", |
|
| 3257 | + | "integrity": "sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw==", |
|
| 3258 | + | "dev": true, |
|
| 3259 | + | "dependencies": { |
|
| 3260 | + | "acorn-node": "^1.8.2", |
|
| 3261 | + | "defined": "^1.0.0", |
|
| 3262 | + | "minimist": "^1.2.6" |
|
| 3263 | + | }, |
|
| 3264 | + | "bin": { |
|
| 3265 | + | "detective": "bin/detective.js" |
|
| 3266 | + | }, |
|
| 3267 | + | "engines": { |
|
| 3268 | + | "node": ">=0.8.0" |
|
| 3269 | + | } |
|
| 3270 | + | }, |
|
| 3271 | + | "node_modules/devalue": { |
|
| 3272 | + | "version": "4.3.0", |
|
| 3273 | + | "resolved": "https://registry.npmjs.org/devalue/-/devalue-4.3.0.tgz", |
|
| 3274 | + | "integrity": "sha512-n94yQo4LI3w7erwf84mhRUkUJfhLoCZiLyoOZ/QFsDbcWNZePrLwbQpvZBUG2TNxwV3VjCKPxkiiQA6pe3TrTA==" |
|
| 3275 | + | }, |
|
| 3276 | + | "node_modules/didyoumean": { |
|
| 3277 | + | "version": "1.2.2", |
|
| 3278 | + | "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", |
|
| 3279 | + | "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", |
|
| 3280 | + | "dev": true |
|
| 3281 | + | }, |
|
| 3282 | + | "node_modules/diff": { |
|
| 3283 | + | "version": "5.1.0", |
|
| 3284 | + | "resolved": "https://registry.npmjs.org/diff/-/diff-5.1.0.tgz", |
|
| 3285 | + | "integrity": "sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==", |
|
| 3286 | + | "engines": { |
|
| 3287 | + | "node": ">=0.3.1" |
|
| 3288 | + | } |
|
| 3289 | + | }, |
|
| 3290 | + | "node_modules/dir-glob": { |
|
| 3291 | + | "version": "3.0.1", |
|
| 3292 | + | "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", |
|
| 3293 | + | "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", |
|
| 3294 | + | "dev": true, |
|
| 3295 | + | "dependencies": { |
|
| 3296 | + | "path-type": "^4.0.0" |
|
| 3297 | + | }, |
|
| 3298 | + | "engines": { |
|
| 3299 | + | "node": ">=8" |
|
| 3300 | + | } |
|
| 3301 | + | }, |
|
| 3302 | + | "node_modules/dlv": { |
|
| 3303 | + | "version": "1.1.3", |
|
| 3304 | + | "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", |
|
| 3305 | + | "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==" |
|
| 3306 | + | }, |
|
| 3307 | + | "node_modules/doctrine": { |
|
| 3308 | + | "version": "3.0.0", |
|
| 3309 | + | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", |
|
| 3310 | + | "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", |
|
| 3311 | + | "dev": true, |
|
| 3312 | + | "dependencies": { |
|
| 3313 | + | "esutils": "^2.0.2" |
|
| 3314 | + | }, |
|
| 3315 | + | "engines": { |
|
| 3316 | + | "node": ">=6.0.0" |
|
| 3317 | + | } |
|
| 3318 | + | }, |
|
| 3319 | + | "node_modules/dom-serializer": { |
|
| 3320 | + | "version": "2.0.0", |
|
| 3321 | + | "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", |
|
| 3322 | + | "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", |
|
| 3323 | + | "dev": true, |
|
| 3324 | + | "dependencies": { |
|
| 3325 | + | "domelementtype": "^2.3.0", |
|
| 3326 | + | "domhandler": "^5.0.2", |
|
| 3327 | + | "entities": "^4.2.0" |
|
| 3328 | + | }, |
|
| 3329 | + | "funding": { |
|
| 3330 | + | "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" |
|
| 3331 | + | } |
|
| 3332 | + | }, |
|
| 3333 | + | "node_modules/domelementtype": { |
|
| 3334 | + | "version": "2.3.0", |
|
| 3335 | + | "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", |
|
| 3336 | + | "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", |
|
| 3337 | + | "dev": true, |
|
| 3338 | + | "funding": [ |
|
| 3339 | + | { |
|
| 3340 | + | "type": "github", |
|
| 3341 | + | "url": "https://github.com/sponsors/fb55" |
|
| 3342 | + | } |
|
| 3343 | + | ] |
|
| 3344 | + | }, |
|
| 3345 | + | "node_modules/domhandler": { |
|
| 3346 | + | "version": "5.0.3", |
|
| 3347 | + | "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", |
|
| 3348 | + | "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", |
|
| 3349 | + | "dev": true, |
|
| 3350 | + | "dependencies": { |
|
| 3351 | + | "domelementtype": "^2.3.0" |
|
| 3352 | + | }, |
|
| 3353 | + | "engines": { |
|
| 3354 | + | "node": ">= 4" |
|
| 3355 | + | }, |
|
| 3356 | + | "funding": { |
|
| 3357 | + | "url": "https://github.com/fb55/domhandler?sponsor=1" |
|
| 3358 | + | } |
|
| 3359 | + | }, |
|
| 3360 | + | "node_modules/domutils": { |
|
| 3361 | + | "version": "3.0.1", |
|
| 3362 | + | "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.0.1.tgz", |
|
| 3363 | + | "integrity": "sha512-z08c1l761iKhDFtfXO04C7kTdPBLi41zwOZl00WS8b5eiaebNpY00HKbztwBq+e3vyqWNwWF3mP9YLUeqIrF+Q==", |
|
| 3364 | + | "dev": true, |
|
| 3365 | + | "dependencies": { |
|
| 3366 | + | "dom-serializer": "^2.0.0", |
|
| 3367 | + | "domelementtype": "^2.3.0", |
|
| 3368 | + | "domhandler": "^5.0.1" |
|
| 3369 | + | }, |
|
| 3370 | + | "funding": { |
|
| 3371 | + | "url": "https://github.com/fb55/domutils?sponsor=1" |
|
| 3372 | + | } |
|
| 3373 | + | }, |
|
| 3374 | + | "node_modules/dset": { |
|
| 3375 | + | "version": "3.1.2", |
|
| 3376 | + | "resolved": "https://registry.npmjs.org/dset/-/dset-3.1.2.tgz", |
|
| 3377 | + | "integrity": "sha512-g/M9sqy3oHe477Ar4voQxWtaPIFw1jTdKZuomOjhCcBx9nHUNn0pu6NopuFFrTh/TRZIKEj+76vLWFu9BNKk+Q==", |
|
| 3378 | + | "engines": { |
|
| 3379 | + | "node": ">=4" |
|
| 3380 | + | } |
|
| 3381 | + | }, |
|
| 3382 | + | "node_modules/eastasianwidth": { |
|
| 3383 | + | "version": "0.2.0", |
|
| 3384 | + | "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", |
|
| 3385 | + | "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" |
|
| 3386 | + | }, |
|
| 3387 | + | "node_modules/electron-to-chromium": { |
|
| 3388 | + | "version": "1.4.308", |
|
| 3389 | + | "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.308.tgz", |
|
| 3390 | + | "integrity": "sha512-qyTx2aDFjEni4UnRWEME9ubd2Xc9c0zerTUl/ZinvD4QPsF0S7kJTV/Es/lPCTkNX6smyYar+z/n8Cl6pFr8yQ==" |
|
| 3391 | + | }, |
|
| 3392 | + | "node_modules/emmet": { |
|
| 3393 | + | "version": "2.3.6", |
|
| 3394 | + | "resolved": "https://registry.npmjs.org/emmet/-/emmet-2.3.6.tgz", |
|
| 3395 | + | "integrity": "sha512-pLS4PBPDdxuUAmw7Me7+TcHbykTsBKN/S9XJbUOMFQrNv9MoshzyMFK/R57JBm94/6HSL4vHnDeEmxlC82NQ4A==", |
|
| 3396 | + | "dependencies": { |
|
| 3397 | + | "@emmetio/abbreviation": "^2.2.3", |
|
| 3398 | + | "@emmetio/css-abbreviation": "^2.1.4" |
|
| 3399 | + | } |
|
| 3400 | + | }, |
|
| 3401 | + | "node_modules/emoji-regex": { |
|
| 3402 | + | "version": "9.2.2", |
|
| 3403 | + | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", |
|
| 3404 | + | "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" |
|
| 3405 | + | }, |
|
| 3406 | + | "node_modules/end-of-stream": { |
|
| 3407 | + | "version": "1.4.4", |
|
| 3408 | + | "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", |
|
| 3409 | + | "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", |
|
| 3410 | + | "dependencies": { |
|
| 3411 | + | "once": "^1.4.0" |
|
| 3412 | + | } |
|
| 3413 | + | }, |
|
| 3414 | + | "node_modules/enhanced-resolve": { |
|
| 3415 | + | "version": "5.12.0", |
|
| 3416 | + | "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz", |
|
| 3417 | + | "integrity": "sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==", |
|
| 3418 | + | "dev": true, |
|
| 3419 | + | "dependencies": { |
|
| 3420 | + | "graceful-fs": "^4.2.4", |
|
| 3421 | + | "tapable": "^2.2.0" |
|
| 3422 | + | }, |
|
| 3423 | + | "engines": { |
|
| 3424 | + | "node": ">=10.13.0" |
|
| 3425 | + | } |
|
| 3426 | + | }, |
|
| 3427 | + | "node_modules/entities": { |
|
| 3428 | + | "version": "4.4.0", |
|
| 3429 | + | "resolved": "https://registry.npmjs.org/entities/-/entities-4.4.0.tgz", |
|
| 3430 | + | "integrity": "sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA==", |
|
| 3431 | + | "dev": true, |
|
| 3432 | + | "engines": { |
|
| 3433 | + | "node": ">=0.12" |
|
| 3434 | + | }, |
|
| 3435 | + | "funding": { |
|
| 3436 | + | "url": "https://github.com/fb55/entities?sponsor=1" |
|
| 3437 | + | } |
|
| 3438 | + | }, |
|
| 3439 | + | "node_modules/error-ex": { |
|
| 3440 | + | "version": "1.3.2", |
|
| 3441 | + | "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", |
|
| 3442 | + | "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", |
|
| 3443 | + | "dev": true, |
|
| 3444 | + | "dependencies": { |
|
| 3445 | + | "is-arrayish": "^0.2.1" |
|
| 3446 | + | } |
|
| 3447 | + | }, |
|
| 3448 | + | "node_modules/error-ex/node_modules/is-arrayish": { |
|
| 3449 | + | "version": "0.2.1", |
|
| 3450 | + | "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", |
|
| 3451 | + | "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", |
|
| 3452 | + | "dev": true |
|
| 3453 | + | }, |
|
| 3454 | + | "node_modules/es-abstract": { |
|
| 3455 | + | "version": "1.21.1", |
|
| 3456 | + | "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.1.tgz", |
|
| 3457 | + | "integrity": "sha512-QudMsPOz86xYz/1dG1OuGBKOELjCh99IIWHLzy5znUB6j8xG2yMA7bfTV86VSqKF+Y/H08vQPR+9jyXpuC6hfg==", |
|
| 3458 | + | "dev": true, |
|
| 3459 | + | "dependencies": { |
|
| 3460 | + | "available-typed-arrays": "^1.0.5", |
|
| 3461 | + | "call-bind": "^1.0.2", |
|
| 3462 | + | "es-set-tostringtag": "^2.0.1", |
|
| 3463 | + | "es-to-primitive": "^1.2.1", |
|
| 3464 | + | "function-bind": "^1.1.1", |
|
| 3465 | + | "function.prototype.name": "^1.1.5", |
|
| 3466 | + | "get-intrinsic": "^1.1.3", |
|
| 3467 | + | "get-symbol-description": "^1.0.0", |
|
| 3468 | + | "globalthis": "^1.0.3", |
|
| 3469 | + | "gopd": "^1.0.1", |
|
| 3470 | + | "has": "^1.0.3", |
|
| 3471 | + | "has-property-descriptors": "^1.0.0", |
|
| 3472 | + | "has-proto": "^1.0.1", |
|
| 3473 | + | "has-symbols": "^1.0.3", |
|
| 3474 | + | "internal-slot": "^1.0.4", |
|
| 3475 | + | "is-array-buffer": "^3.0.1", |
|
| 3476 | + | "is-callable": "^1.2.7", |
|
| 3477 | + | "is-negative-zero": "^2.0.2", |
|
| 3478 | + | "is-regex": "^1.1.4", |
|
| 3479 | + | "is-shared-array-buffer": "^1.0.2", |
|
| 3480 | + | "is-string": "^1.0.7", |
|
| 3481 | + | "is-typed-array": "^1.1.10", |
|
| 3482 | + | "is-weakref": "^1.0.2", |
|
| 3483 | + | "object-inspect": "^1.12.2", |
|
| 3484 | + | "object-keys": "^1.1.1", |
|
| 3485 | + | "object.assign": "^4.1.4", |
|
| 3486 | + | "regexp.prototype.flags": "^1.4.3", |
|
| 3487 | + | "safe-regex-test": "^1.0.0", |
|
| 3488 | + | "string.prototype.trimend": "^1.0.6", |
|
| 3489 | + | "string.prototype.trimstart": "^1.0.6", |
|
| 3490 | + | "typed-array-length": "^1.0.4", |
|
| 3491 | + | "unbox-primitive": "^1.0.2", |
|
| 3492 | + | "which-typed-array": "^1.1.9" |
|
| 3493 | + | }, |
|
| 3494 | + | "engines": { |
|
| 3495 | + | "node": ">= 0.4" |
|
| 3496 | + | }, |
|
| 3497 | + | "funding": { |
|
| 3498 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 3499 | + | } |
|
| 3500 | + | }, |
|
| 3501 | + | "node_modules/es-get-iterator": { |
|
| 3502 | + | "version": "1.1.3", |
|
| 3503 | + | "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz", |
|
| 3504 | + | "integrity": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==", |
|
| 3505 | + | "dev": true, |
|
| 3506 | + | "dependencies": { |
|
| 3507 | + | "call-bind": "^1.0.2", |
|
| 3508 | + | "get-intrinsic": "^1.1.3", |
|
| 3509 | + | "has-symbols": "^1.0.3", |
|
| 3510 | + | "is-arguments": "^1.1.1", |
|
| 3511 | + | "is-map": "^2.0.2", |
|
| 3512 | + | "is-set": "^2.0.2", |
|
| 3513 | + | "is-string": "^1.0.7", |
|
| 3514 | + | "isarray": "^2.0.5", |
|
| 3515 | + | "stop-iteration-iterator": "^1.0.0" |
|
| 3516 | + | }, |
|
| 3517 | + | "funding": { |
|
| 3518 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 3519 | + | } |
|
| 3520 | + | }, |
|
| 3521 | + | "node_modules/es-module-lexer": { |
|
| 3522 | + | "version": "0.10.5", |
|
| 3523 | + | "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.10.5.tgz", |
|
| 3524 | + | "integrity": "sha512-+7IwY/kiGAacQfY+YBhKMvEmyAJnw5grTUgjG85Pe7vcUI/6b7pZjZG8nQ7+48YhzEAEqrEgD2dCz/JIK+AYvw==", |
|
| 3525 | + | "dev": true |
|
| 3526 | + | }, |
|
| 3527 | + | "node_modules/es-set-tostringtag": { |
|
| 3528 | + | "version": "2.0.1", |
|
| 3529 | + | "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", |
|
| 3530 | + | "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", |
|
| 3531 | + | "dev": true, |
|
| 3532 | + | "dependencies": { |
|
| 3533 | + | "get-intrinsic": "^1.1.3", |
|
| 3534 | + | "has": "^1.0.3", |
|
| 3535 | + | "has-tostringtag": "^1.0.0" |
|
| 3536 | + | }, |
|
| 3537 | + | "engines": { |
|
| 3538 | + | "node": ">= 0.4" |
|
| 3539 | + | } |
|
| 3540 | + | }, |
|
| 3541 | + | "node_modules/es-shim-unscopables": { |
|
| 3542 | + | "version": "1.0.0", |
|
| 3543 | + | "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", |
|
| 3544 | + | "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", |
|
| 3545 | + | "dev": true, |
|
| 3546 | + | "dependencies": { |
|
| 3547 | + | "has": "^1.0.3" |
|
| 3548 | + | } |
|
| 3549 | + | }, |
|
| 3550 | + | "node_modules/es-to-primitive": { |
|
| 3551 | + | "version": "1.2.1", |
|
| 3552 | + | "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", |
|
| 3553 | + | "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", |
|
| 3554 | + | "dev": true, |
|
| 3555 | + | "dependencies": { |
|
| 3556 | + | "is-callable": "^1.1.4", |
|
| 3557 | + | "is-date-object": "^1.0.1", |
|
| 3558 | + | "is-symbol": "^1.0.2" |
|
| 3559 | + | }, |
|
| 3560 | + | "engines": { |
|
| 3561 | + | "node": ">= 0.4" |
|
| 3562 | + | }, |
|
| 3563 | + | "funding": { |
|
| 3564 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 3565 | + | } |
|
| 3566 | + | }, |
|
| 3567 | + | "node_modules/esbuild": { |
|
| 3568 | + | "version": "0.16.17", |
|
| 3569 | + | "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.16.17.tgz", |
|
| 3570 | + | "integrity": "sha512-G8LEkV0XzDMNwXKgM0Jwu3nY3lSTwSGY6XbxM9cr9+s0T/qSV1q1JVPBGzm3dcjhCic9+emZDmMffkwgPeOeLg==", |
|
| 3571 | + | "hasInstallScript": true, |
|
| 3572 | + | "bin": { |
|
| 3573 | + | "esbuild": "bin/esbuild" |
|
| 3574 | + | }, |
|
| 3575 | + | "engines": { |
|
| 3576 | + | "node": ">=12" |
|
| 3577 | + | }, |
|
| 3578 | + | "optionalDependencies": { |
|
| 3579 | + | "@esbuild/android-arm": "0.16.17", |
|
| 3580 | + | "@esbuild/android-arm64": "0.16.17", |
|
| 3581 | + | "@esbuild/android-x64": "0.16.17", |
|
| 3582 | + | "@esbuild/darwin-arm64": "0.16.17", |
|
| 3583 | + | "@esbuild/darwin-x64": "0.16.17", |
|
| 3584 | + | "@esbuild/freebsd-arm64": "0.16.17", |
|
| 3585 | + | "@esbuild/freebsd-x64": "0.16.17", |
|
| 3586 | + | "@esbuild/linux-arm": "0.16.17", |
|
| 3587 | + | "@esbuild/linux-arm64": "0.16.17", |
|
| 3588 | + | "@esbuild/linux-ia32": "0.16.17", |
|
| 3589 | + | "@esbuild/linux-loong64": "0.16.17", |
|
| 3590 | + | "@esbuild/linux-mips64el": "0.16.17", |
|
| 3591 | + | "@esbuild/linux-ppc64": "0.16.17", |
|
| 3592 | + | "@esbuild/linux-riscv64": "0.16.17", |
|
| 3593 | + | "@esbuild/linux-s390x": "0.16.17", |
|
| 3594 | + | "@esbuild/linux-x64": "0.16.17", |
|
| 3595 | + | "@esbuild/netbsd-x64": "0.16.17", |
|
| 3596 | + | "@esbuild/openbsd-x64": "0.16.17", |
|
| 3597 | + | "@esbuild/sunos-x64": "0.16.17", |
|
| 3598 | + | "@esbuild/win32-arm64": "0.16.17", |
|
| 3599 | + | "@esbuild/win32-ia32": "0.16.17", |
|
| 3600 | + | "@esbuild/win32-x64": "0.16.17" |
|
| 3601 | + | } |
|
| 3602 | + | }, |
|
| 3603 | + | "node_modules/escalade": { |
|
| 3604 | + | "version": "3.1.1", |
|
| 3605 | + | "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", |
|
| 3606 | + | "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", |
|
| 3607 | + | "engines": { |
|
| 3608 | + | "node": ">=6" |
|
| 3609 | + | } |
|
| 3610 | + | }, |
|
| 3611 | + | "node_modules/escape-string-regexp": { |
|
| 3612 | + | "version": "1.0.5", |
|
| 3613 | + | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", |
|
| 3614 | + | "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", |
|
| 3615 | + | "engines": { |
|
| 3616 | + | "node": ">=0.8.0" |
|
| 3617 | + | } |
|
| 3618 | + | }, |
|
| 3619 | + | "node_modules/eslint": { |
|
| 3620 | + | "version": "8.34.0", |
|
| 3621 | + | "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.34.0.tgz", |
|
| 3622 | + | "integrity": "sha512-1Z8iFsucw+7kSqXNZVslXS8Ioa4u2KM7GPwuKtkTFAqZ/cHMcEaR+1+Br0wLlot49cNxIiZk5wp8EAbPcYZxTg==", |
|
| 3623 | + | "dev": true, |
|
| 3624 | + | "dependencies": { |
|
| 3625 | + | "@eslint/eslintrc": "^1.4.1", |
|
| 3626 | + | "@humanwhocodes/config-array": "^0.11.8", |
|
| 3627 | + | "@humanwhocodes/module-importer": "^1.0.1", |
|
| 3628 | + | "@nodelib/fs.walk": "^1.2.8", |
|
| 3629 | + | "ajv": "^6.10.0", |
|
| 3630 | + | "chalk": "^4.0.0", |
|
| 3631 | + | "cross-spawn": "^7.0.2", |
|
| 3632 | + | "debug": "^4.3.2", |
|
| 3633 | + | "doctrine": "^3.0.0", |
|
| 3634 | + | "escape-string-regexp": "^4.0.0", |
|
| 3635 | + | "eslint-scope": "^7.1.1", |
|
| 3636 | + | "eslint-utils": "^3.0.0", |
|
| 3637 | + | "eslint-visitor-keys": "^3.3.0", |
|
| 3638 | + | "espree": "^9.4.0", |
|
| 3639 | + | "esquery": "^1.4.0", |
|
| 3640 | + | "esutils": "^2.0.2", |
|
| 3641 | + | "fast-deep-equal": "^3.1.3", |
|
| 3642 | + | "file-entry-cache": "^6.0.1", |
|
| 3643 | + | "find-up": "^5.0.0", |
|
| 3644 | + | "glob-parent": "^6.0.2", |
|
| 3645 | + | "globals": "^13.19.0", |
|
| 3646 | + | "grapheme-splitter": "^1.0.4", |
|
| 3647 | + | "ignore": "^5.2.0", |
|
| 3648 | + | "import-fresh": "^3.0.0", |
|
| 3649 | + | "imurmurhash": "^0.1.4", |
|
| 3650 | + | "is-glob": "^4.0.0", |
|
| 3651 | + | "is-path-inside": "^3.0.3", |
|
| 3652 | + | "js-sdsl": "^4.1.4", |
|
| 3653 | + | "js-yaml": "^4.1.0", |
|
| 3654 | + | "json-stable-stringify-without-jsonify": "^1.0.1", |
|
| 3655 | + | "levn": "^0.4.1", |
|
| 3656 | + | "lodash.merge": "^4.6.2", |
|
| 3657 | + | "minimatch": "^3.1.2", |
|
| 3658 | + | "natural-compare": "^1.4.0", |
|
| 3659 | + | "optionator": "^0.9.1", |
|
| 3660 | + | "regexpp": "^3.2.0", |
|
| 3661 | + | "strip-ansi": "^6.0.1", |
|
| 3662 | + | "strip-json-comments": "^3.1.0", |
|
| 3663 | + | "text-table": "^0.2.0" |
|
| 3664 | + | }, |
|
| 3665 | + | "bin": { |
|
| 3666 | + | "eslint": "bin/eslint.js" |
|
| 3667 | + | }, |
|
| 3668 | + | "engines": { |
|
| 3669 | + | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" |
|
| 3670 | + | }, |
|
| 3671 | + | "funding": { |
|
| 3672 | + | "url": "https://opencollective.com/eslint" |
|
| 3673 | + | } |
|
| 3674 | + | }, |
|
| 3675 | + | "node_modules/eslint-config-prettier": { |
|
| 3676 | + | "version": "8.6.0", |
|
| 3677 | + | "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.6.0.tgz", |
|
| 3678 | + | "integrity": "sha512-bAF0eLpLVqP5oEVUFKpMA+NnRFICwn9X8B5jrR9FcqnYBuPbqWEjTEspPWMj5ye6czoSLDweCzSo3Ko7gGrZaA==", |
|
| 3679 | + | "dev": true, |
|
| 3680 | + | "bin": { |
|
| 3681 | + | "eslint-config-prettier": "bin/cli.js" |
|
| 3682 | + | }, |
|
| 3683 | + | "peerDependencies": { |
|
| 3684 | + | "eslint": ">=7.0.0" |
|
| 3685 | + | } |
|
| 3686 | + | }, |
|
| 3687 | + | "node_modules/eslint-import-resolver-node": { |
|
| 3688 | + | "version": "0.3.7", |
|
| 3689 | + | "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz", |
|
| 3690 | + | "integrity": "sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==", |
|
| 3691 | + | "dev": true, |
|
| 3692 | + | "dependencies": { |
|
| 3693 | + | "debug": "^3.2.7", |
|
| 3694 | + | "is-core-module": "^2.11.0", |
|
| 3695 | + | "resolve": "^1.22.1" |
|
| 3696 | + | } |
|
| 3697 | + | }, |
|
| 3698 | + | "node_modules/eslint-import-resolver-node/node_modules/debug": { |
|
| 3699 | + | "version": "3.2.7", |
|
| 3700 | + | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", |
|
| 3701 | + | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", |
|
| 3702 | + | "dev": true, |
|
| 3703 | + | "dependencies": { |
|
| 3704 | + | "ms": "^2.1.1" |
|
| 3705 | + | } |
|
| 3706 | + | }, |
|
| 3707 | + | "node_modules/eslint-import-resolver-typescript": { |
|
| 3708 | + | "version": "3.5.3", |
|
| 3709 | + | "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.5.3.tgz", |
|
| 3710 | + | "integrity": "sha512-njRcKYBc3isE42LaTcJNVANR3R99H9bAxBDMNDr2W7yq5gYPxbU3MkdhsQukxZ/Xg9C2vcyLlDsbKfRDg0QvCQ==", |
|
| 3711 | + | "dev": true, |
|
| 3712 | + | "dependencies": { |
|
| 3713 | + | "debug": "^4.3.4", |
|
| 3714 | + | "enhanced-resolve": "^5.10.0", |
|
| 3715 | + | "get-tsconfig": "^4.2.0", |
|
| 3716 | + | "globby": "^13.1.2", |
|
| 3717 | + | "is-core-module": "^2.10.0", |
|
| 3718 | + | "is-glob": "^4.0.3", |
|
| 3719 | + | "synckit": "^0.8.4" |
|
| 3720 | + | }, |
|
| 3721 | + | "engines": { |
|
| 3722 | + | "node": "^14.18.0 || >=16.0.0" |
|
| 3723 | + | }, |
|
| 3724 | + | "funding": { |
|
| 3725 | + | "url": "https://opencollective.com/unts/projects/eslint-import-resolver-ts" |
|
| 3726 | + | }, |
|
| 3727 | + | "peerDependencies": { |
|
| 3728 | + | "eslint": "*", |
|
| 3729 | + | "eslint-plugin-import": "*" |
|
| 3730 | + | } |
|
| 3731 | + | }, |
|
| 3732 | + | "node_modules/eslint-import-resolver-typescript/node_modules/globby": { |
|
| 3733 | + | "version": "13.1.3", |
|
| 3734 | + | "resolved": "https://registry.npmjs.org/globby/-/globby-13.1.3.tgz", |
|
| 3735 | + | "integrity": "sha512-8krCNHXvlCgHDpegPzleMq07yMYTO2sXKASmZmquEYWEmCx6J5UTRbp5RwMJkTJGtcQ44YpiUYUiN0b9mzy8Bw==", |
|
| 3736 | + | "dev": true, |
|
| 3737 | + | "dependencies": { |
|
| 3738 | + | "dir-glob": "^3.0.1", |
|
| 3739 | + | "fast-glob": "^3.2.11", |
|
| 3740 | + | "ignore": "^5.2.0", |
|
| 3741 | + | "merge2": "^1.4.1", |
|
| 3742 | + | "slash": "^4.0.0" |
|
| 3743 | + | }, |
|
| 3744 | + | "engines": { |
|
| 3745 | + | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" |
|
| 3746 | + | }, |
|
| 3747 | + | "funding": { |
|
| 3748 | + | "url": "https://github.com/sponsors/sindresorhus" |
|
| 3749 | + | } |
|
| 3750 | + | }, |
|
| 3751 | + | "node_modules/eslint-module-utils": { |
|
| 3752 | + | "version": "2.7.4", |
|
| 3753 | + | "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.4.tgz", |
|
| 3754 | + | "integrity": "sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==", |
|
| 3755 | + | "dev": true, |
|
| 3756 | + | "dependencies": { |
|
| 3757 | + | "debug": "^3.2.7" |
|
| 3758 | + | }, |
|
| 3759 | + | "engines": { |
|
| 3760 | + | "node": ">=4" |
|
| 3761 | + | }, |
|
| 3762 | + | "peerDependenciesMeta": { |
|
| 3763 | + | "eslint": { |
|
| 3764 | + | "optional": true |
|
| 3765 | + | } |
|
| 3766 | + | } |
|
| 3767 | + | }, |
|
| 3768 | + | "node_modules/eslint-module-utils/node_modules/debug": { |
|
| 3769 | + | "version": "3.2.7", |
|
| 3770 | + | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", |
|
| 3771 | + | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", |
|
| 3772 | + | "dev": true, |
|
| 3773 | + | "dependencies": { |
|
| 3774 | + | "ms": "^2.1.1" |
|
| 3775 | + | } |
|
| 3776 | + | }, |
|
| 3777 | + | "node_modules/eslint-plugin-astro": { |
|
| 3778 | + | "version": "0.23.0", |
|
| 3779 | + | "resolved": "https://registry.npmjs.org/eslint-plugin-astro/-/eslint-plugin-astro-0.23.0.tgz", |
|
| 3780 | + | "integrity": "sha512-KsIL1sOrz40qf/d9RP4E3sH6+p6nrIBBXB6rPuE9EWb5de+m9BWfvURuoECXfiXCmQh8UlHJUxgSWxn1bLsD8g==", |
|
| 3781 | + | "dev": true, |
|
| 3782 | + | "dependencies": { |
|
| 3783 | + | "@jridgewell/sourcemap-codec": "^1.4.14", |
|
| 3784 | + | "@typescript-eslint/types": "^5.25.0", |
|
| 3785 | + | "astro-eslint-parser": "^0.11.0", |
|
| 3786 | + | "eslint-utils": "^3.0.0", |
|
| 3787 | + | "postcss": "^8.4.14", |
|
| 3788 | + | "postcss-selector-parser": "^6.0.10" |
|
| 3789 | + | }, |
|
| 3790 | + | "engines": { |
|
| 3791 | + | "node": "^14.18.0 || >=16.0.0" |
|
| 3792 | + | }, |
|
| 3793 | + | "funding": { |
|
| 3794 | + | "url": "https://github.com/sponsors/ota-meshi" |
|
| 3795 | + | }, |
|
| 3796 | + | "peerDependencies": { |
|
| 3797 | + | "eslint": ">=7.0.0" |
|
| 3798 | + | } |
|
| 3799 | + | }, |
|
| 3800 | + | "node_modules/eslint-plugin-import": { |
|
| 3801 | + | "version": "2.27.5", |
|
| 3802 | + | "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz", |
|
| 3803 | + | "integrity": "sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==", |
|
| 3804 | + | "dev": true, |
|
| 3805 | + | "dependencies": { |
|
| 3806 | + | "array-includes": "^3.1.6", |
|
| 3807 | + | "array.prototype.flat": "^1.3.1", |
|
| 3808 | + | "array.prototype.flatmap": "^1.3.1", |
|
| 3809 | + | "debug": "^3.2.7", |
|
| 3810 | + | "doctrine": "^2.1.0", |
|
| 3811 | + | "eslint-import-resolver-node": "^0.3.7", |
|
| 3812 | + | "eslint-module-utils": "^2.7.4", |
|
| 3813 | + | "has": "^1.0.3", |
|
| 3814 | + | "is-core-module": "^2.11.0", |
|
| 3815 | + | "is-glob": "^4.0.3", |
|
| 3816 | + | "minimatch": "^3.1.2", |
|
| 3817 | + | "object.values": "^1.1.6", |
|
| 3818 | + | "resolve": "^1.22.1", |
|
| 3819 | + | "semver": "^6.3.0", |
|
| 3820 | + | "tsconfig-paths": "^3.14.1" |
|
| 3821 | + | }, |
|
| 3822 | + | "engines": { |
|
| 3823 | + | "node": ">=4" |
|
| 3824 | + | }, |
|
| 3825 | + | "peerDependencies": { |
|
| 3826 | + | "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" |
|
| 3827 | + | } |
|
| 3828 | + | }, |
|
| 3829 | + | "node_modules/eslint-plugin-import/node_modules/debug": { |
|
| 3830 | + | "version": "3.2.7", |
|
| 3831 | + | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", |
|
| 3832 | + | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", |
|
| 3833 | + | "dev": true, |
|
| 3834 | + | "dependencies": { |
|
| 3835 | + | "ms": "^2.1.1" |
|
| 3836 | + | } |
|
| 3837 | + | }, |
|
| 3838 | + | "node_modules/eslint-plugin-import/node_modules/doctrine": { |
|
| 3839 | + | "version": "2.1.0", |
|
| 3840 | + | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", |
|
| 3841 | + | "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", |
|
| 3842 | + | "dev": true, |
|
| 3843 | + | "dependencies": { |
|
| 3844 | + | "esutils": "^2.0.2" |
|
| 3845 | + | }, |
|
| 3846 | + | "engines": { |
|
| 3847 | + | "node": ">=0.10.0" |
|
| 3848 | + | } |
|
| 3849 | + | }, |
|
| 3850 | + | "node_modules/eslint-plugin-import/node_modules/semver": { |
|
| 3851 | + | "version": "6.3.0", |
|
| 3852 | + | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", |
|
| 3853 | + | "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", |
|
| 3854 | + | "dev": true, |
|
| 3855 | + | "bin": { |
|
| 3856 | + | "semver": "bin/semver.js" |
|
| 3857 | + | } |
|
| 3858 | + | }, |
|
| 3859 | + | "node_modules/eslint-plugin-jsx-a11y": { |
|
| 3860 | + | "version": "6.7.1", |
|
| 3861 | + | "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz", |
|
| 3862 | + | "integrity": "sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==", |
|
| 3863 | + | "dev": true, |
|
| 3864 | + | "dependencies": { |
|
| 3865 | + | "@babel/runtime": "^7.20.7", |
|
| 3866 | + | "aria-query": "^5.1.3", |
|
| 3867 | + | "array-includes": "^3.1.6", |
|
| 3868 | + | "array.prototype.flatmap": "^1.3.1", |
|
| 3869 | + | "ast-types-flow": "^0.0.7", |
|
| 3870 | + | "axe-core": "^4.6.2", |
|
| 3871 | + | "axobject-query": "^3.1.1", |
|
| 3872 | + | "damerau-levenshtein": "^1.0.8", |
|
| 3873 | + | "emoji-regex": "^9.2.2", |
|
| 3874 | + | "has": "^1.0.3", |
|
| 3875 | + | "jsx-ast-utils": "^3.3.3", |
|
| 3876 | + | "language-tags": "=1.0.5", |
|
| 3877 | + | "minimatch": "^3.1.2", |
|
| 3878 | + | "object.entries": "^1.1.6", |
|
| 3879 | + | "object.fromentries": "^2.0.6", |
|
| 3880 | + | "semver": "^6.3.0" |
|
| 3881 | + | }, |
|
| 3882 | + | "engines": { |
|
| 3883 | + | "node": ">=4.0" |
|
| 3884 | + | }, |
|
| 3885 | + | "peerDependencies": { |
|
| 3886 | + | "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" |
|
| 3887 | + | } |
|
| 3888 | + | }, |
|
| 3889 | + | "node_modules/eslint-plugin-jsx-a11y/node_modules/semver": { |
|
| 3890 | + | "version": "6.3.0", |
|
| 3891 | + | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", |
|
| 3892 | + | "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", |
|
| 3893 | + | "dev": true, |
|
| 3894 | + | "bin": { |
|
| 3895 | + | "semver": "bin/semver.js" |
|
| 3896 | + | } |
|
| 3897 | + | }, |
|
| 3898 | + | "node_modules/eslint-plugin-prettier": { |
|
| 3899 | + | "version": "4.2.1", |
|
| 3900 | + | "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-4.2.1.tgz", |
|
| 3901 | + | "integrity": "sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==", |
|
| 3902 | + | "dev": true, |
|
| 3903 | + | "dependencies": { |
|
| 3904 | + | "prettier-linter-helpers": "^1.0.0" |
|
| 3905 | + | }, |
|
| 3906 | + | "engines": { |
|
| 3907 | + | "node": ">=12.0.0" |
|
| 3908 | + | }, |
|
| 3909 | + | "peerDependencies": { |
|
| 3910 | + | "eslint": ">=7.28.0", |
|
| 3911 | + | "prettier": ">=2.0.0" |
|
| 3912 | + | }, |
|
| 3913 | + | "peerDependenciesMeta": { |
|
| 3914 | + | "eslint-config-prettier": { |
|
| 3915 | + | "optional": true |
|
| 3916 | + | } |
|
| 3917 | + | } |
|
| 3918 | + | }, |
|
| 3919 | + | "node_modules/eslint-scope": { |
|
| 3920 | + | "version": "5.1.1", |
|
| 3921 | + | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", |
|
| 3922 | + | "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", |
|
| 3923 | + | "dev": true, |
|
| 3924 | + | "dependencies": { |
|
| 3925 | + | "esrecurse": "^4.3.0", |
|
| 3926 | + | "estraverse": "^4.1.1" |
|
| 3927 | + | }, |
|
| 3928 | + | "engines": { |
|
| 3929 | + | "node": ">=8.0.0" |
|
| 3930 | + | } |
|
| 3931 | + | }, |
|
| 3932 | + | "node_modules/eslint-utils": { |
|
| 3933 | + | "version": "3.0.0", |
|
| 3934 | + | "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", |
|
| 3935 | + | "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", |
|
| 3936 | + | "dev": true, |
|
| 3937 | + | "dependencies": { |
|
| 3938 | + | "eslint-visitor-keys": "^2.0.0" |
|
| 3939 | + | }, |
|
| 3940 | + | "engines": { |
|
| 3941 | + | "node": "^10.0.0 || ^12.0.0 || >= 14.0.0" |
|
| 3942 | + | }, |
|
| 3943 | + | "funding": { |
|
| 3944 | + | "url": "https://github.com/sponsors/mysticatea" |
|
| 3945 | + | }, |
|
| 3946 | + | "peerDependencies": { |
|
| 3947 | + | "eslint": ">=5" |
|
| 3948 | + | } |
|
| 3949 | + | }, |
|
| 3950 | + | "node_modules/eslint-utils/node_modules/eslint-visitor-keys": { |
|
| 3951 | + | "version": "2.1.0", |
|
| 3952 | + | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", |
|
| 3953 | + | "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", |
|
| 3954 | + | "dev": true, |
|
| 3955 | + | "engines": { |
|
| 3956 | + | "node": ">=10" |
|
| 3957 | + | } |
|
| 3958 | + | }, |
|
| 3959 | + | "node_modules/eslint-visitor-keys": { |
|
| 3960 | + | "version": "3.3.0", |
|
| 3961 | + | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", |
|
| 3962 | + | "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", |
|
| 3963 | + | "dev": true, |
|
| 3964 | + | "engines": { |
|
| 3965 | + | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" |
|
| 3966 | + | } |
|
| 3967 | + | }, |
|
| 3968 | + | "node_modules/eslint/node_modules/ansi-regex": { |
|
| 3969 | + | "version": "5.0.1", |
|
| 3970 | + | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", |
|
| 3971 | + | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", |
|
| 3972 | + | "dev": true, |
|
| 3973 | + | "engines": { |
|
| 3974 | + | "node": ">=8" |
|
| 3975 | + | } |
|
| 3976 | + | }, |
|
| 3977 | + | "node_modules/eslint/node_modules/ansi-styles": { |
|
| 3978 | + | "version": "4.3.0", |
|
| 3979 | + | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", |
|
| 3980 | + | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", |
|
| 3981 | + | "dev": true, |
|
| 3982 | + | "dependencies": { |
|
| 3983 | + | "color-convert": "^2.0.1" |
|
| 3984 | + | }, |
|
| 3985 | + | "engines": { |
|
| 3986 | + | "node": ">=8" |
|
| 3987 | + | }, |
|
| 3988 | + | "funding": { |
|
| 3989 | + | "url": "https://github.com/chalk/ansi-styles?sponsor=1" |
|
| 3990 | + | } |
|
| 3991 | + | }, |
|
| 3992 | + | "node_modules/eslint/node_modules/chalk": { |
|
| 3993 | + | "version": "4.1.2", |
|
| 3994 | + | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", |
|
| 3995 | + | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", |
|
| 3996 | + | "dev": true, |
|
| 3997 | + | "dependencies": { |
|
| 3998 | + | "ansi-styles": "^4.1.0", |
|
| 3999 | + | "supports-color": "^7.1.0" |
|
| 4000 | + | }, |
|
| 4001 | + | "engines": { |
|
| 4002 | + | "node": ">=10" |
|
| 4003 | + | }, |
|
| 4004 | + | "funding": { |
|
| 4005 | + | "url": "https://github.com/chalk/chalk?sponsor=1" |
|
| 4006 | + | } |
|
| 4007 | + | }, |
|
| 4008 | + | "node_modules/eslint/node_modules/color-convert": { |
|
| 4009 | + | "version": "2.0.1", |
|
| 4010 | + | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", |
|
| 4011 | + | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", |
|
| 4012 | + | "dev": true, |
|
| 4013 | + | "dependencies": { |
|
| 4014 | + | "color-name": "~1.1.4" |
|
| 4015 | + | }, |
|
| 4016 | + | "engines": { |
|
| 4017 | + | "node": ">=7.0.0" |
|
| 4018 | + | } |
|
| 4019 | + | }, |
|
| 4020 | + | "node_modules/eslint/node_modules/color-name": { |
|
| 4021 | + | "version": "1.1.4", |
|
| 4022 | + | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", |
|
| 4023 | + | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", |
|
| 4024 | + | "dev": true |
|
| 4025 | + | }, |
|
| 4026 | + | "node_modules/eslint/node_modules/escape-string-regexp": { |
|
| 4027 | + | "version": "4.0.0", |
|
| 4028 | + | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", |
|
| 4029 | + | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", |
|
| 4030 | + | "dev": true, |
|
| 4031 | + | "engines": { |
|
| 4032 | + | "node": ">=10" |
|
| 4033 | + | }, |
|
| 4034 | + | "funding": { |
|
| 4035 | + | "url": "https://github.com/sponsors/sindresorhus" |
|
| 4036 | + | } |
|
| 4037 | + | }, |
|
| 4038 | + | "node_modules/eslint/node_modules/eslint-scope": { |
|
| 4039 | + | "version": "7.1.1", |
|
| 4040 | + | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz", |
|
| 4041 | + | "integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==", |
|
| 4042 | + | "dev": true, |
|
| 4043 | + | "dependencies": { |
|
| 4044 | + | "esrecurse": "^4.3.0", |
|
| 4045 | + | "estraverse": "^5.2.0" |
|
| 4046 | + | }, |
|
| 4047 | + | "engines": { |
|
| 4048 | + | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" |
|
| 4049 | + | } |
|
| 4050 | + | }, |
|
| 4051 | + | "node_modules/eslint/node_modules/estraverse": { |
|
| 4052 | + | "version": "5.3.0", |
|
| 4053 | + | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", |
|
| 4054 | + | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", |
|
| 4055 | + | "dev": true, |
|
| 4056 | + | "engines": { |
|
| 4057 | + | "node": ">=4.0" |
|
| 4058 | + | } |
|
| 4059 | + | }, |
|
| 4060 | + | "node_modules/eslint/node_modules/globals": { |
|
| 4061 | + | "version": "13.20.0", |
|
| 4062 | + | "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", |
|
| 4063 | + | "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", |
|
| 4064 | + | "dev": true, |
|
| 4065 | + | "dependencies": { |
|
| 4066 | + | "type-fest": "^0.20.2" |
|
| 4067 | + | }, |
|
| 4068 | + | "engines": { |
|
| 4069 | + | "node": ">=8" |
|
| 4070 | + | }, |
|
| 4071 | + | "funding": { |
|
| 4072 | + | "url": "https://github.com/sponsors/sindresorhus" |
|
| 4073 | + | } |
|
| 4074 | + | }, |
|
| 4075 | + | "node_modules/eslint/node_modules/has-flag": { |
|
| 4076 | + | "version": "4.0.0", |
|
| 4077 | + | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", |
|
| 4078 | + | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", |
|
| 4079 | + | "dev": true, |
|
| 4080 | + | "engines": { |
|
| 4081 | + | "node": ">=8" |
|
| 4082 | + | } |
|
| 4083 | + | }, |
|
| 4084 | + | "node_modules/eslint/node_modules/strip-ansi": { |
|
| 4085 | + | "version": "6.0.1", |
|
| 4086 | + | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", |
|
| 4087 | + | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", |
|
| 4088 | + | "dev": true, |
|
| 4089 | + | "dependencies": { |
|
| 4090 | + | "ansi-regex": "^5.0.1" |
|
| 4091 | + | }, |
|
| 4092 | + | "engines": { |
|
| 4093 | + | "node": ">=8" |
|
| 4094 | + | } |
|
| 4095 | + | }, |
|
| 4096 | + | "node_modules/eslint/node_modules/supports-color": { |
|
| 4097 | + | "version": "7.2.0", |
|
| 4098 | + | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", |
|
| 4099 | + | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", |
|
| 4100 | + | "dev": true, |
|
| 4101 | + | "dependencies": { |
|
| 4102 | + | "has-flag": "^4.0.0" |
|
| 4103 | + | }, |
|
| 4104 | + | "engines": { |
|
| 4105 | + | "node": ">=8" |
|
| 4106 | + | } |
|
| 4107 | + | }, |
|
| 4108 | + | "node_modules/eslint/node_modules/type-fest": { |
|
| 4109 | + | "version": "0.20.2", |
|
| 4110 | + | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", |
|
| 4111 | + | "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", |
|
| 4112 | + | "dev": true, |
|
| 4113 | + | "engines": { |
|
| 4114 | + | "node": ">=10" |
|
| 4115 | + | }, |
|
| 4116 | + | "funding": { |
|
| 4117 | + | "url": "https://github.com/sponsors/sindresorhus" |
|
| 4118 | + | } |
|
| 4119 | + | }, |
|
| 4120 | + | "node_modules/espree": { |
|
| 4121 | + | "version": "9.4.1", |
|
| 4122 | + | "resolved": "https://registry.npmjs.org/espree/-/espree-9.4.1.tgz", |
|
| 4123 | + | "integrity": "sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==", |
|
| 4124 | + | "dev": true, |
|
| 4125 | + | "dependencies": { |
|
| 4126 | + | "acorn": "^8.8.0", |
|
| 4127 | + | "acorn-jsx": "^5.3.2", |
|
| 4128 | + | "eslint-visitor-keys": "^3.3.0" |
|
| 4129 | + | }, |
|
| 4130 | + | "engines": { |
|
| 4131 | + | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" |
|
| 4132 | + | }, |
|
| 4133 | + | "funding": { |
|
| 4134 | + | "url": "https://opencollective.com/eslint" |
|
| 4135 | + | } |
|
| 4136 | + | }, |
|
| 4137 | + | "node_modules/esprima": { |
|
| 4138 | + | "version": "4.0.1", |
|
| 4139 | + | "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", |
|
| 4140 | + | "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", |
|
| 4141 | + | "bin": { |
|
| 4142 | + | "esparse": "bin/esparse.js", |
|
| 4143 | + | "esvalidate": "bin/esvalidate.js" |
|
| 4144 | + | }, |
|
| 4145 | + | "engines": { |
|
| 4146 | + | "node": ">=4" |
|
| 4147 | + | } |
|
| 4148 | + | }, |
|
| 4149 | + | "node_modules/esquery": { |
|
| 4150 | + | "version": "1.4.2", |
|
| 4151 | + | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.2.tgz", |
|
| 4152 | + | "integrity": "sha512-JVSoLdTlTDkmjFmab7H/9SL9qGSyjElT3myyKp7krqjVFQCDLmj1QFaCLRFBszBKI0XVZaiiXvuPIX3ZwHe1Ng==", |
|
| 4153 | + | "dev": true, |
|
| 4154 | + | "dependencies": { |
|
| 4155 | + | "estraverse": "^5.1.0" |
|
| 4156 | + | }, |
|
| 4157 | + | "engines": { |
|
| 4158 | + | "node": ">=0.10" |
|
| 4159 | + | } |
|
| 4160 | + | }, |
|
| 4161 | + | "node_modules/esquery/node_modules/estraverse": { |
|
| 4162 | + | "version": "5.3.0", |
|
| 4163 | + | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", |
|
| 4164 | + | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", |
|
| 4165 | + | "dev": true, |
|
| 4166 | + | "engines": { |
|
| 4167 | + | "node": ">=4.0" |
|
| 4168 | + | } |
|
| 4169 | + | }, |
|
| 4170 | + | "node_modules/esrecurse": { |
|
| 4171 | + | "version": "4.3.0", |
|
| 4172 | + | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", |
|
| 4173 | + | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", |
|
| 4174 | + | "dev": true, |
|
| 4175 | + | "dependencies": { |
|
| 4176 | + | "estraverse": "^5.2.0" |
|
| 4177 | + | }, |
|
| 4178 | + | "engines": { |
|
| 4179 | + | "node": ">=4.0" |
|
| 4180 | + | } |
|
| 4181 | + | }, |
|
| 4182 | + | "node_modules/esrecurse/node_modules/estraverse": { |
|
| 4183 | + | "version": "5.3.0", |
|
| 4184 | + | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", |
|
| 4185 | + | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", |
|
| 4186 | + | "dev": true, |
|
| 4187 | + | "engines": { |
|
| 4188 | + | "node": ">=4.0" |
|
| 4189 | + | } |
|
| 4190 | + | }, |
|
| 4191 | + | "node_modules/estraverse": { |
|
| 4192 | + | "version": "4.3.0", |
|
| 4193 | + | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", |
|
| 4194 | + | "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", |
|
| 4195 | + | "dev": true, |
|
| 4196 | + | "engines": { |
|
| 4197 | + | "node": ">=4.0" |
|
| 4198 | + | } |
|
| 4199 | + | }, |
|
| 4200 | + | "node_modules/estree-util-attach-comments": { |
|
| 4201 | + | "version": "2.1.1", |
|
| 4202 | + | "resolved": "https://registry.npmjs.org/estree-util-attach-comments/-/estree-util-attach-comments-2.1.1.tgz", |
|
| 4203 | + | "integrity": "sha512-+5Ba/xGGS6mnwFbXIuQiDPTbuTxuMCooq3arVv7gPZtYpjp+VXH/NkHAP35OOefPhNG/UGqU3vt/LTABwcHX0w==", |
|
| 4204 | + | "dev": true, |
|
| 4205 | + | "dependencies": { |
|
| 4206 | + | "@types/estree": "^1.0.0" |
|
| 4207 | + | }, |
|
| 4208 | + | "funding": { |
|
| 4209 | + | "type": "opencollective", |
|
| 4210 | + | "url": "https://opencollective.com/unified" |
|
| 4211 | + | } |
|
| 4212 | + | }, |
|
| 4213 | + | "node_modules/estree-util-build-jsx": { |
|
| 4214 | + | "version": "2.2.2", |
|
| 4215 | + | "resolved": "https://registry.npmjs.org/estree-util-build-jsx/-/estree-util-build-jsx-2.2.2.tgz", |
|
| 4216 | + | "integrity": "sha512-m56vOXcOBuaF+Igpb9OPAy7f9w9OIkb5yhjsZuaPm7HoGi4oTOQi0h2+yZ+AtKklYFZ+rPC4n0wYCJCEU1ONqg==", |
|
| 4217 | + | "dev": true, |
|
| 4218 | + | "dependencies": { |
|
| 4219 | + | "@types/estree-jsx": "^1.0.0", |
|
| 4220 | + | "estree-util-is-identifier-name": "^2.0.0", |
|
| 4221 | + | "estree-walker": "^3.0.0" |
|
| 4222 | + | }, |
|
| 4223 | + | "funding": { |
|
| 4224 | + | "type": "opencollective", |
|
| 4225 | + | "url": "https://opencollective.com/unified" |
|
| 4226 | + | } |
|
| 4227 | + | }, |
|
| 4228 | + | "node_modules/estree-util-is-identifier-name": { |
|
| 4229 | + | "version": "2.1.0", |
|
| 4230 | + | "resolved": "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-2.1.0.tgz", |
|
| 4231 | + | "integrity": "sha512-bEN9VHRyXAUOjkKVQVvArFym08BTWB0aJPppZZr0UNyAqWsLaVfAqP7hbaTJjzHifmB5ebnR8Wm7r7yGN/HonQ==", |
|
| 4232 | + | "dev": true, |
|
| 4233 | + | "funding": { |
|
| 4234 | + | "type": "opencollective", |
|
| 4235 | + | "url": "https://opencollective.com/unified" |
|
| 4236 | + | } |
|
| 4237 | + | }, |
|
| 4238 | + | "node_modules/estree-util-to-js": { |
|
| 4239 | + | "version": "1.2.0", |
|
| 4240 | + | "resolved": "https://registry.npmjs.org/estree-util-to-js/-/estree-util-to-js-1.2.0.tgz", |
|
| 4241 | + | "integrity": "sha512-IzU74r1PK5IMMGZXUVZbmiu4A1uhiPgW5hm1GjcOfr4ZzHaMPpLNJjR7HjXiIOzi25nZDrgFTobHTkV5Q6ITjA==", |
|
| 4242 | + | "dev": true, |
|
| 4243 | + | "dependencies": { |
|
| 4244 | + | "@types/estree-jsx": "^1.0.0", |
|
| 4245 | + | "astring": "^1.8.0", |
|
| 4246 | + | "source-map": "^0.7.0" |
|
| 4247 | + | }, |
|
| 4248 | + | "funding": { |
|
| 4249 | + | "type": "opencollective", |
|
| 4250 | + | "url": "https://opencollective.com/unified" |
|
| 4251 | + | } |
|
| 4252 | + | }, |
|
| 4253 | + | "node_modules/estree-util-visit": { |
|
| 4254 | + | "version": "1.2.1", |
|
| 4255 | + | "resolved": "https://registry.npmjs.org/estree-util-visit/-/estree-util-visit-1.2.1.tgz", |
|
| 4256 | + | "integrity": "sha512-xbgqcrkIVbIG+lI/gzbvd9SGTJL4zqJKBFttUl5pP27KhAjtMKbX/mQXJ7qgyXpMgVy/zvpm0xoQQaGL8OloOw==", |
|
| 4257 | + | "dev": true, |
|
| 4258 | + | "dependencies": { |
|
| 4259 | + | "@types/estree-jsx": "^1.0.0", |
|
| 4260 | + | "@types/unist": "^2.0.0" |
|
| 4261 | + | }, |
|
| 4262 | + | "funding": { |
|
| 4263 | + | "type": "opencollective", |
|
| 4264 | + | "url": "https://opencollective.com/unified" |
|
| 4265 | + | } |
|
| 4266 | + | }, |
|
| 4267 | + | "node_modules/estree-walker": { |
|
| 4268 | + | "version": "3.0.3", |
|
| 4269 | + | "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", |
|
| 4270 | + | "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", |
|
| 4271 | + | "dependencies": { |
|
| 4272 | + | "@types/estree": "^1.0.0" |
|
| 4273 | + | } |
|
| 4274 | + | }, |
|
| 4275 | + | "node_modules/esutils": { |
|
| 4276 | + | "version": "2.0.3", |
|
| 4277 | + | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", |
|
| 4278 | + | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", |
|
| 4279 | + | "dev": true, |
|
| 4280 | + | "engines": { |
|
| 4281 | + | "node": ">=0.10.0" |
|
| 4282 | + | } |
|
| 4283 | + | }, |
|
| 4284 | + | "node_modules/events": { |
|
| 4285 | + | "version": "3.3.0", |
|
| 4286 | + | "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", |
|
| 4287 | + | "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", |
|
| 4288 | + | "engines": { |
|
| 4289 | + | "node": ">=0.8.x" |
|
| 4290 | + | } |
|
| 4291 | + | }, |
|
| 4292 | + | "node_modules/execa": { |
|
| 4293 | + | "version": "6.1.0", |
|
| 4294 | + | "resolved": "https://registry.npmjs.org/execa/-/execa-6.1.0.tgz", |
|
| 4295 | + | "integrity": "sha512-QVWlX2e50heYJcCPG0iWtf8r0xjEYfz/OYLGDYH+IyjWezzPNxz63qNFOu0l4YftGWuizFVZHHs8PrLU5p2IDA==", |
|
| 4296 | + | "dependencies": { |
|
| 4297 | + | "cross-spawn": "^7.0.3", |
|
| 4298 | + | "get-stream": "^6.0.1", |
|
| 4299 | + | "human-signals": "^3.0.1", |
|
| 4300 | + | "is-stream": "^3.0.0", |
|
| 4301 | + | "merge-stream": "^2.0.0", |
|
| 4302 | + | "npm-run-path": "^5.1.0", |
|
| 4303 | + | "onetime": "^6.0.0", |
|
| 4304 | + | "signal-exit": "^3.0.7", |
|
| 4305 | + | "strip-final-newline": "^3.0.0" |
|
| 4306 | + | }, |
|
| 4307 | + | "engines": { |
|
| 4308 | + | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" |
|
| 4309 | + | }, |
|
| 4310 | + | "funding": { |
|
| 4311 | + | "url": "https://github.com/sindresorhus/execa?sponsor=1" |
|
| 4312 | + | } |
|
| 4313 | + | }, |
|
| 4314 | + | "node_modules/expand-template": { |
|
| 4315 | + | "version": "2.0.3", |
|
| 4316 | + | "resolved": "https://registry.npmjs.org/expand-template/-/expand-template-2.0.3.tgz", |
|
| 4317 | + | "integrity": "sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==", |
|
| 4318 | + | "engines": { |
|
| 4319 | + | "node": ">=6" |
|
| 4320 | + | } |
|
| 4321 | + | }, |
|
| 4322 | + | "node_modules/extend": { |
|
| 4323 | + | "version": "3.0.2", |
|
| 4324 | + | "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", |
|
| 4325 | + | "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" |
|
| 4326 | + | }, |
|
| 4327 | + | "node_modules/extend-shallow": { |
|
| 4328 | + | "version": "2.0.1", |
|
| 4329 | + | "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", |
|
| 4330 | + | "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", |
|
| 4331 | + | "dependencies": { |
|
| 4332 | + | "is-extendable": "^0.1.0" |
|
| 4333 | + | }, |
|
| 4334 | + | "engines": { |
|
| 4335 | + | "node": ">=0.10.0" |
|
| 4336 | + | } |
|
| 4337 | + | }, |
|
| 4338 | + | "node_modules/fast-deep-equal": { |
|
| 4339 | + | "version": "3.1.3", |
|
| 4340 | + | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", |
|
| 4341 | + | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", |
|
| 4342 | + | "dev": true |
|
| 4343 | + | }, |
|
| 4344 | + | "node_modules/fast-diff": { |
|
| 4345 | + | "version": "1.2.0", |
|
| 4346 | + | "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.2.0.tgz", |
|
| 4347 | + | "integrity": "sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==", |
|
| 4348 | + | "dev": true |
|
| 4349 | + | }, |
|
| 4350 | + | "node_modules/fast-glob": { |
|
| 4351 | + | "version": "3.2.12", |
|
| 4352 | + | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", |
|
| 4353 | + | "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", |
|
| 4354 | + | "dependencies": { |
|
| 4355 | + | "@nodelib/fs.stat": "^2.0.2", |
|
| 4356 | + | "@nodelib/fs.walk": "^1.2.3", |
|
| 4357 | + | "glob-parent": "^5.1.2", |
|
| 4358 | + | "merge2": "^1.3.0", |
|
| 4359 | + | "micromatch": "^4.0.4" |
|
| 4360 | + | }, |
|
| 4361 | + | "engines": { |
|
| 4362 | + | "node": ">=8.6.0" |
|
| 4363 | + | } |
|
| 4364 | + | }, |
|
| 4365 | + | "node_modules/fast-glob/node_modules/glob-parent": { |
|
| 4366 | + | "version": "5.1.2", |
|
| 4367 | + | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", |
|
| 4368 | + | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", |
|
| 4369 | + | "dependencies": { |
|
| 4370 | + | "is-glob": "^4.0.1" |
|
| 4371 | + | }, |
|
| 4372 | + | "engines": { |
|
| 4373 | + | "node": ">= 6" |
|
| 4374 | + | } |
|
| 4375 | + | }, |
|
| 4376 | + | "node_modules/fast-json-stable-stringify": { |
|
| 4377 | + | "version": "2.1.0", |
|
| 4378 | + | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", |
|
| 4379 | + | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", |
|
| 4380 | + | "dev": true |
|
| 4381 | + | }, |
|
| 4382 | + | "node_modules/fast-levenshtein": { |
|
| 4383 | + | "version": "2.0.6", |
|
| 4384 | + | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", |
|
| 4385 | + | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", |
|
| 4386 | + | "dev": true |
|
| 4387 | + | }, |
|
| 4388 | + | "node_modules/fast-xml-parser": { |
|
| 4389 | + | "version": "4.1.2", |
|
| 4390 | + | "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.1.2.tgz", |
|
| 4391 | + | "integrity": "sha512-CDYeykkle1LiA/uqQyNwYpFbyF6Axec6YapmpUP+/RHWIoR1zKjocdvNaTsxCxZzQ6v9MLXaSYm9Qq0thv0DHg==", |
|
| 4392 | + | "dependencies": { |
|
| 4393 | + | "strnum": "^1.0.5" |
|
| 4394 | + | }, |
|
| 4395 | + | "bin": { |
|
| 4396 | + | "fxparser": "src/cli/cli.js" |
|
| 4397 | + | }, |
|
| 4398 | + | "funding": { |
|
| 4399 | + | "type": "paypal", |
|
| 4400 | + | "url": "https://paypal.me/naturalintelligence" |
|
| 4401 | + | } |
|
| 4402 | + | }, |
|
| 4403 | + | "node_modules/fastest-levenshtein": { |
|
| 4404 | + | "version": "1.0.16", |
|
| 4405 | + | "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", |
|
| 4406 | + | "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", |
|
| 4407 | + | "dev": true, |
|
| 4408 | + | "engines": { |
|
| 4409 | + | "node": ">= 4.9.1" |
|
| 4410 | + | } |
|
| 4411 | + | }, |
|
| 4412 | + | "node_modules/fastq": { |
|
| 4413 | + | "version": "1.15.0", |
|
| 4414 | + | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", |
|
| 4415 | + | "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", |
|
| 4416 | + | "dependencies": { |
|
| 4417 | + | "reusify": "^1.0.4" |
|
| 4418 | + | } |
|
| 4419 | + | }, |
|
| 4420 | + | "node_modules/fault": { |
|
| 4421 | + | "version": "2.0.1", |
|
| 4422 | + | "resolved": "https://registry.npmjs.org/fault/-/fault-2.0.1.tgz", |
|
| 4423 | + | "integrity": "sha512-WtySTkS4OKev5JtpHXnib4Gxiurzh5NCGvWrFaZ34m6JehfTUhKZvn9njTfw48t6JumVQOmrKqpmGcdwxnhqBQ==", |
|
| 4424 | + | "dev": true, |
|
| 4425 | + | "dependencies": { |
|
| 4426 | + | "format": "^0.2.0" |
|
| 4427 | + | }, |
|
| 4428 | + | "funding": { |
|
| 4429 | + | "type": "github", |
|
| 4430 | + | "url": "https://github.com/sponsors/wooorm" |
|
| 4431 | + | } |
|
| 4432 | + | }, |
|
| 4433 | + | "node_modules/fflate": { |
|
| 4434 | + | "version": "0.7.4", |
|
| 4435 | + | "resolved": "https://registry.npmjs.org/fflate/-/fflate-0.7.4.tgz", |
|
| 4436 | + | "integrity": "sha512-5u2V/CDW15QM1XbbgS+0DfPxVB+jUKhWEKuuFuHncbk3tEEqzmoXL+2KyOFuKGqOnmdIy0/davWF1CkuwtibCw==" |
|
| 4437 | + | }, |
|
| 4438 | + | "node_modules/file-entry-cache": { |
|
| 4439 | + | "version": "6.0.1", |
|
| 4440 | + | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", |
|
| 4441 | + | "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", |
|
| 4442 | + | "dev": true, |
|
| 4443 | + | "dependencies": { |
|
| 4444 | + | "flat-cache": "^3.0.4" |
|
| 4445 | + | }, |
|
| 4446 | + | "engines": { |
|
| 4447 | + | "node": "^10.12.0 || >=12.0.0" |
|
| 4448 | + | } |
|
| 4449 | + | }, |
|
| 4450 | + | "node_modules/fill-range": { |
|
| 4451 | + | "version": "7.0.1", |
|
| 4452 | + | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", |
|
| 4453 | + | "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", |
|
| 4454 | + | "dependencies": { |
|
| 4455 | + | "to-regex-range": "^5.0.1" |
|
| 4456 | + | }, |
|
| 4457 | + | "engines": { |
|
| 4458 | + | "node": ">=8" |
|
| 4459 | + | } |
|
| 4460 | + | }, |
|
| 4461 | + | "node_modules/find-up": { |
|
| 4462 | + | "version": "5.0.0", |
|
| 4463 | + | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", |
|
| 4464 | + | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", |
|
| 4465 | + | "dependencies": { |
|
| 4466 | + | "locate-path": "^6.0.0", |
|
| 4467 | + | "path-exists": "^4.0.0" |
|
| 4468 | + | }, |
|
| 4469 | + | "engines": { |
|
| 4470 | + | "node": ">=10" |
|
| 4471 | + | }, |
|
| 4472 | + | "funding": { |
|
| 4473 | + | "url": "https://github.com/sponsors/sindresorhus" |
|
| 4474 | + | } |
|
| 4475 | + | }, |
|
| 4476 | + | "node_modules/find-yarn-workspace-root2": { |
|
| 4477 | + | "version": "1.2.16", |
|
| 4478 | + | "resolved": "https://registry.npmjs.org/find-yarn-workspace-root2/-/find-yarn-workspace-root2-1.2.16.tgz", |
|
| 4479 | + | "integrity": "sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==", |
|
| 4480 | + | "dependencies": { |
|
| 4481 | + | "micromatch": "^4.0.2", |
|
| 4482 | + | "pkg-dir": "^4.2.0" |
|
| 4483 | + | } |
|
| 4484 | + | }, |
|
| 4485 | + | "node_modules/flat-cache": { |
|
| 4486 | + | "version": "3.0.4", |
|
| 4487 | + | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", |
|
| 4488 | + | "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", |
|
| 4489 | + | "dev": true, |
|
| 4490 | + | "dependencies": { |
|
| 4491 | + | "flatted": "^3.1.0", |
|
| 4492 | + | "rimraf": "^3.0.2" |
|
| 4493 | + | }, |
|
| 4494 | + | "engines": { |
|
| 4495 | + | "node": "^10.12.0 || >=12.0.0" |
|
| 4496 | + | } |
|
| 4497 | + | }, |
|
| 4498 | + | "node_modules/flatted": { |
|
| 4499 | + | "version": "3.2.7", |
|
| 4500 | + | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", |
|
| 4501 | + | "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", |
|
| 4502 | + | "dev": true |
|
| 4503 | + | }, |
|
| 4504 | + | "node_modules/for-each": { |
|
| 4505 | + | "version": "0.3.3", |
|
| 4506 | + | "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", |
|
| 4507 | + | "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", |
|
| 4508 | + | "dev": true, |
|
| 4509 | + | "dependencies": { |
|
| 4510 | + | "is-callable": "^1.1.3" |
|
| 4511 | + | } |
|
| 4512 | + | }, |
|
| 4513 | + | "node_modules/format": { |
|
| 4514 | + | "version": "0.2.2", |
|
| 4515 | + | "resolved": "https://registry.npmjs.org/format/-/format-0.2.2.tgz", |
|
| 4516 | + | "integrity": "sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==", |
|
| 4517 | + | "dev": true, |
|
| 4518 | + | "engines": { |
|
| 4519 | + | "node": ">=0.4.x" |
|
| 4520 | + | } |
|
| 4521 | + | }, |
|
| 4522 | + | "node_modules/fraction.js": { |
|
| 4523 | + | "version": "4.2.0", |
|
| 4524 | + | "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz", |
|
| 4525 | + | "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==", |
|
| 4526 | + | "dev": true, |
|
| 4527 | + | "engines": { |
|
| 4528 | + | "node": "*" |
|
| 4529 | + | }, |
|
| 4530 | + | "funding": { |
|
| 4531 | + | "type": "patreon", |
|
| 4532 | + | "url": "https://www.patreon.com/infusion" |
|
| 4533 | + | } |
|
| 4534 | + | }, |
|
| 4535 | + | "node_modules/fs-constants": { |
|
| 4536 | + | "version": "1.0.0", |
|
| 4537 | + | "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", |
|
| 4538 | + | "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==" |
|
| 4539 | + | }, |
|
| 4540 | + | "node_modules/fs.realpath": { |
|
| 4541 | + | "version": "1.0.0", |
|
| 4542 | + | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", |
|
| 4543 | + | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", |
|
| 4544 | + | "dev": true |
|
| 4545 | + | }, |
|
| 4546 | + | "node_modules/fsevents": { |
|
| 4547 | + | "version": "2.3.2", |
|
| 4548 | + | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", |
|
| 4549 | + | "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", |
|
| 4550 | + | "hasInstallScript": true, |
|
| 4551 | + | "optional": true, |
|
| 4552 | + | "os": [ |
|
| 4553 | + | "darwin" |
|
| 4554 | + | ], |
|
| 4555 | + | "engines": { |
|
| 4556 | + | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" |
|
| 4557 | + | } |
|
| 4558 | + | }, |
|
| 4559 | + | "node_modules/function-bind": { |
|
| 4560 | + | "version": "1.1.1", |
|
| 4561 | + | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", |
|
| 4562 | + | "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" |
|
| 4563 | + | }, |
|
| 4564 | + | "node_modules/function.prototype.name": { |
|
| 4565 | + | "version": "1.1.5", |
|
| 4566 | + | "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", |
|
| 4567 | + | "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", |
|
| 4568 | + | "dev": true, |
|
| 4569 | + | "dependencies": { |
|
| 4570 | + | "call-bind": "^1.0.2", |
|
| 4571 | + | "define-properties": "^1.1.3", |
|
| 4572 | + | "es-abstract": "^1.19.0", |
|
| 4573 | + | "functions-have-names": "^1.2.2" |
|
| 4574 | + | }, |
|
| 4575 | + | "engines": { |
|
| 4576 | + | "node": ">= 0.4" |
|
| 4577 | + | }, |
|
| 4578 | + | "funding": { |
|
| 4579 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 4580 | + | } |
|
| 4581 | + | }, |
|
| 4582 | + | "node_modules/functions-have-names": { |
|
| 4583 | + | "version": "1.2.3", |
|
| 4584 | + | "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", |
|
| 4585 | + | "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", |
|
| 4586 | + | "dev": true, |
|
| 4587 | + | "funding": { |
|
| 4588 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 4589 | + | } |
|
| 4590 | + | }, |
|
| 4591 | + | "node_modules/gensync": { |
|
| 4592 | + | "version": "1.0.0-beta.2", |
|
| 4593 | + | "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", |
|
| 4594 | + | "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", |
|
| 4595 | + | "engines": { |
|
| 4596 | + | "node": ">=6.9.0" |
|
| 4597 | + | } |
|
| 4598 | + | }, |
|
| 4599 | + | "node_modules/get-intrinsic": { |
|
| 4600 | + | "version": "1.2.0", |
|
| 4601 | + | "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.0.tgz", |
|
| 4602 | + | "integrity": "sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==", |
|
| 4603 | + | "dev": true, |
|
| 4604 | + | "dependencies": { |
|
| 4605 | + | "function-bind": "^1.1.1", |
|
| 4606 | + | "has": "^1.0.3", |
|
| 4607 | + | "has-symbols": "^1.0.3" |
|
| 4608 | + | }, |
|
| 4609 | + | "funding": { |
|
| 4610 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 4611 | + | } |
|
| 4612 | + | }, |
|
| 4613 | + | "node_modules/get-stream": { |
|
| 4614 | + | "version": "6.0.1", |
|
| 4615 | + | "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", |
|
| 4616 | + | "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", |
|
| 4617 | + | "engines": { |
|
| 4618 | + | "node": ">=10" |
|
| 4619 | + | }, |
|
| 4620 | + | "funding": { |
|
| 4621 | + | "url": "https://github.com/sponsors/sindresorhus" |
|
| 4622 | + | } |
|
| 4623 | + | }, |
|
| 4624 | + | "node_modules/get-symbol-description": { |
|
| 4625 | + | "version": "1.0.0", |
|
| 4626 | + | "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", |
|
| 4627 | + | "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", |
|
| 4628 | + | "dev": true, |
|
| 4629 | + | "dependencies": { |
|
| 4630 | + | "call-bind": "^1.0.2", |
|
| 4631 | + | "get-intrinsic": "^1.1.1" |
|
| 4632 | + | }, |
|
| 4633 | + | "engines": { |
|
| 4634 | + | "node": ">= 0.4" |
|
| 4635 | + | }, |
|
| 4636 | + | "funding": { |
|
| 4637 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 4638 | + | } |
|
| 4639 | + | }, |
|
| 4640 | + | "node_modules/get-tsconfig": { |
|
| 4641 | + | "version": "4.4.0", |
|
| 4642 | + | "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.4.0.tgz", |
|
| 4643 | + | "integrity": "sha512-0Gdjo/9+FzsYhXCEFueo2aY1z1tpXrxWZzP7k8ul9qt1U5o8rYJwTJYmaeHdrVosYIVYkOy2iwCJ9FdpocJhPQ==", |
|
| 4644 | + | "dev": true, |
|
| 4645 | + | "funding": { |
|
| 4646 | + | "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" |
|
| 4647 | + | } |
|
| 4648 | + | }, |
|
| 4649 | + | "node_modules/github-from-package": { |
|
| 4650 | + | "version": "0.0.0", |
|
| 4651 | + | "resolved": "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz", |
|
| 4652 | + | "integrity": "sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==" |
|
| 4653 | + | }, |
|
| 4654 | + | "node_modules/github-slugger": { |
|
| 4655 | + | "version": "1.5.0", |
|
| 4656 | + | "resolved": "https://registry.npmjs.org/github-slugger/-/github-slugger-1.5.0.tgz", |
|
| 4657 | + | "integrity": "sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw==" |
|
| 4658 | + | }, |
|
| 4659 | + | "node_modules/glob": { |
|
| 4660 | + | "version": "7.2.3", |
|
| 4661 | + | "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", |
|
| 4662 | + | "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", |
|
| 4663 | + | "dev": true, |
|
| 4664 | + | "dependencies": { |
|
| 4665 | + | "fs.realpath": "^1.0.0", |
|
| 4666 | + | "inflight": "^1.0.4", |
|
| 4667 | + | "inherits": "2", |
|
| 4668 | + | "minimatch": "^3.1.1", |
|
| 4669 | + | "once": "^1.3.0", |
|
| 4670 | + | "path-is-absolute": "^1.0.0" |
|
| 4671 | + | }, |
|
| 4672 | + | "engines": { |
|
| 4673 | + | "node": "*" |
|
| 4674 | + | }, |
|
| 4675 | + | "funding": { |
|
| 4676 | + | "url": "https://github.com/sponsors/isaacs" |
|
| 4677 | + | } |
|
| 4678 | + | }, |
|
| 4679 | + | "node_modules/glob-parent": { |
|
| 4680 | + | "version": "6.0.2", |
|
| 4681 | + | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", |
|
| 4682 | + | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", |
|
| 4683 | + | "dev": true, |
|
| 4684 | + | "dependencies": { |
|
| 4685 | + | "is-glob": "^4.0.3" |
|
| 4686 | + | }, |
|
| 4687 | + | "engines": { |
|
| 4688 | + | "node": ">=10.13.0" |
|
| 4689 | + | } |
|
| 4690 | + | }, |
|
| 4691 | + | "node_modules/global-modules": { |
|
| 4692 | + | "version": "2.0.0", |
|
| 4693 | + | "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", |
|
| 4694 | + | "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", |
|
| 4695 | + | "dev": true, |
|
| 4696 | + | "dependencies": { |
|
| 4697 | + | "global-prefix": "^3.0.0" |
|
| 4698 | + | }, |
|
| 4699 | + | "engines": { |
|
| 4700 | + | "node": ">=6" |
|
| 4701 | + | } |
|
| 4702 | + | }, |
|
| 4703 | + | "node_modules/global-prefix": { |
|
| 4704 | + | "version": "3.0.0", |
|
| 4705 | + | "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", |
|
| 4706 | + | "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", |
|
| 4707 | + | "dev": true, |
|
| 4708 | + | "dependencies": { |
|
| 4709 | + | "ini": "^1.3.5", |
|
| 4710 | + | "kind-of": "^6.0.2", |
|
| 4711 | + | "which": "^1.3.1" |
|
| 4712 | + | }, |
|
| 4713 | + | "engines": { |
|
| 4714 | + | "node": ">=6" |
|
| 4715 | + | } |
|
| 4716 | + | }, |
|
| 4717 | + | "node_modules/global-prefix/node_modules/which": { |
|
| 4718 | + | "version": "1.3.1", |
|
| 4719 | + | "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", |
|
| 4720 | + | "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", |
|
| 4721 | + | "dev": true, |
|
| 4722 | + | "dependencies": { |
|
| 4723 | + | "isexe": "^2.0.0" |
|
| 4724 | + | }, |
|
| 4725 | + | "bin": { |
|
| 4726 | + | "which": "bin/which" |
|
| 4727 | + | } |
|
| 4728 | + | }, |
|
| 4729 | + | "node_modules/globals": { |
|
| 4730 | + | "version": "11.12.0", |
|
| 4731 | + | "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", |
|
| 4732 | + | "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", |
|
| 4733 | + | "engines": { |
|
| 4734 | + | "node": ">=4" |
|
| 4735 | + | } |
|
| 4736 | + | }, |
|
| 4737 | + | "node_modules/globalthis": { |
|
| 4738 | + | "version": "1.0.3", |
|
| 4739 | + | "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", |
|
| 4740 | + | "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", |
|
| 4741 | + | "dev": true, |
|
| 4742 | + | "dependencies": { |
|
| 4743 | + | "define-properties": "^1.1.3" |
|
| 4744 | + | }, |
|
| 4745 | + | "engines": { |
|
| 4746 | + | "node": ">= 0.4" |
|
| 4747 | + | }, |
|
| 4748 | + | "funding": { |
|
| 4749 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 4750 | + | } |
|
| 4751 | + | }, |
|
| 4752 | + | "node_modules/globalyzer": { |
|
| 4753 | + | "version": "0.1.0", |
|
| 4754 | + | "resolved": "https://registry.npmjs.org/globalyzer/-/globalyzer-0.1.0.tgz", |
|
| 4755 | + | "integrity": "sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==" |
|
| 4756 | + | }, |
|
| 4757 | + | "node_modules/globby": { |
|
| 4758 | + | "version": "11.1.0", |
|
| 4759 | + | "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", |
|
| 4760 | + | "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", |
|
| 4761 | + | "dev": true, |
|
| 4762 | + | "dependencies": { |
|
| 4763 | + | "array-union": "^2.1.0", |
|
| 4764 | + | "dir-glob": "^3.0.1", |
|
| 4765 | + | "fast-glob": "^3.2.9", |
|
| 4766 | + | "ignore": "^5.2.0", |
|
| 4767 | + | "merge2": "^1.4.1", |
|
| 4768 | + | "slash": "^3.0.0" |
|
| 4769 | + | }, |
|
| 4770 | + | "engines": { |
|
| 4771 | + | "node": ">=10" |
|
| 4772 | + | }, |
|
| 4773 | + | "funding": { |
|
| 4774 | + | "url": "https://github.com/sponsors/sindresorhus" |
|
| 4775 | + | } |
|
| 4776 | + | }, |
|
| 4777 | + | "node_modules/globby/node_modules/slash": { |
|
| 4778 | + | "version": "3.0.0", |
|
| 4779 | + | "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", |
|
| 4780 | + | "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", |
|
| 4781 | + | "dev": true, |
|
| 4782 | + | "engines": { |
|
| 4783 | + | "node": ">=8" |
|
| 4784 | + | } |
|
| 4785 | + | }, |
|
| 4786 | + | "node_modules/globjoin": { |
|
| 4787 | + | "version": "0.1.4", |
|
| 4788 | + | "resolved": "https://registry.npmjs.org/globjoin/-/globjoin-0.1.4.tgz", |
|
| 4789 | + | "integrity": "sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg==", |
|
| 4790 | + | "dev": true |
|
| 4791 | + | }, |
|
| 4792 | + | "node_modules/globrex": { |
|
| 4793 | + | "version": "0.1.2", |
|
| 4794 | + | "resolved": "https://registry.npmjs.org/globrex/-/globrex-0.1.2.tgz", |
|
| 4795 | + | "integrity": "sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==" |
|
| 4796 | + | }, |
|
| 4797 | + | "node_modules/gopd": { |
|
| 4798 | + | "version": "1.0.1", |
|
| 4799 | + | "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", |
|
| 4800 | + | "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", |
|
| 4801 | + | "dev": true, |
|
| 4802 | + | "dependencies": { |
|
| 4803 | + | "get-intrinsic": "^1.1.3" |
|
| 4804 | + | }, |
|
| 4805 | + | "funding": { |
|
| 4806 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 4807 | + | } |
|
| 4808 | + | }, |
|
| 4809 | + | "node_modules/graceful-fs": { |
|
| 4810 | + | "version": "4.2.10", |
|
| 4811 | + | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", |
|
| 4812 | + | "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==" |
|
| 4813 | + | }, |
|
| 4814 | + | "node_modules/grapheme-splitter": { |
|
| 4815 | + | "version": "1.0.4", |
|
| 4816 | + | "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", |
|
| 4817 | + | "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==", |
|
| 4818 | + | "dev": true |
|
| 4819 | + | }, |
|
| 4820 | + | "node_modules/gray-matter": { |
|
| 4821 | + | "version": "4.0.3", |
|
| 4822 | + | "resolved": "https://registry.npmjs.org/gray-matter/-/gray-matter-4.0.3.tgz", |
|
| 4823 | + | "integrity": "sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==", |
|
| 4824 | + | "dependencies": { |
|
| 4825 | + | "js-yaml": "^3.13.1", |
|
| 4826 | + | "kind-of": "^6.0.2", |
|
| 4827 | + | "section-matter": "^1.0.0", |
|
| 4828 | + | "strip-bom-string": "^1.0.0" |
|
| 4829 | + | }, |
|
| 4830 | + | "engines": { |
|
| 4831 | + | "node": ">=6.0" |
|
| 4832 | + | } |
|
| 4833 | + | }, |
|
| 4834 | + | "node_modules/gray-matter/node_modules/argparse": { |
|
| 4835 | + | "version": "1.0.10", |
|
| 4836 | + | "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", |
|
| 4837 | + | "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", |
|
| 4838 | + | "dependencies": { |
|
| 4839 | + | "sprintf-js": "~1.0.2" |
|
| 4840 | + | } |
|
| 4841 | + | }, |
|
| 4842 | + | "node_modules/gray-matter/node_modules/js-yaml": { |
|
| 4843 | + | "version": "3.14.1", |
|
| 4844 | + | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", |
|
| 4845 | + | "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", |
|
| 4846 | + | "dependencies": { |
|
| 4847 | + | "argparse": "^1.0.7", |
|
| 4848 | + | "esprima": "^4.0.0" |
|
| 4849 | + | }, |
|
| 4850 | + | "bin": { |
|
| 4851 | + | "js-yaml": "bin/js-yaml.js" |
|
| 4852 | + | } |
|
| 4853 | + | }, |
|
| 4854 | + | "node_modules/hard-rejection": { |
|
| 4855 | + | "version": "2.1.0", |
|
| 4856 | + | "resolved": "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz", |
|
| 4857 | + | "integrity": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==", |
|
| 4858 | + | "dev": true, |
|
| 4859 | + | "engines": { |
|
| 4860 | + | "node": ">=6" |
|
| 4861 | + | } |
|
| 4862 | + | }, |
|
| 4863 | + | "node_modules/has": { |
|
| 4864 | + | "version": "1.0.3", |
|
| 4865 | + | "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", |
|
| 4866 | + | "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", |
|
| 4867 | + | "dependencies": { |
|
| 4868 | + | "function-bind": "^1.1.1" |
|
| 4869 | + | }, |
|
| 4870 | + | "engines": { |
|
| 4871 | + | "node": ">= 0.4.0" |
|
| 4872 | + | } |
|
| 4873 | + | }, |
|
| 4874 | + | "node_modules/has-bigints": { |
|
| 4875 | + | "version": "1.0.2", |
|
| 4876 | + | "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", |
|
| 4877 | + | "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", |
|
| 4878 | + | "dev": true, |
|
| 4879 | + | "funding": { |
|
| 4880 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 4881 | + | } |
|
| 4882 | + | }, |
|
| 4883 | + | "node_modules/has-flag": { |
|
| 4884 | + | "version": "3.0.0", |
|
| 4885 | + | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", |
|
| 4886 | + | "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", |
|
| 4887 | + | "engines": { |
|
| 4888 | + | "node": ">=4" |
|
| 4889 | + | } |
|
| 4890 | + | }, |
|
| 4891 | + | "node_modules/has-package-exports": { |
|
| 4892 | + | "version": "1.3.0", |
|
| 4893 | + | "resolved": "https://registry.npmjs.org/has-package-exports/-/has-package-exports-1.3.0.tgz", |
|
| 4894 | + | "integrity": "sha512-e9OeXPQnmPhYoJ63lXC4wWe34TxEGZDZ3OQX9XRqp2VwsfLl3bQBy7VehLnd34g3ef8CmYlBLGqEMKXuz8YazQ==", |
|
| 4895 | + | "dependencies": { |
|
| 4896 | + | "@ljharb/has-package-exports-patterns": "^0.0.2" |
|
| 4897 | + | }, |
|
| 4898 | + | "funding": { |
|
| 4899 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 4900 | + | } |
|
| 4901 | + | }, |
|
| 4902 | + | "node_modules/has-property-descriptors": { |
|
| 4903 | + | "version": "1.0.0", |
|
| 4904 | + | "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", |
|
| 4905 | + | "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", |
|
| 4906 | + | "dev": true, |
|
| 4907 | + | "dependencies": { |
|
| 4908 | + | "get-intrinsic": "^1.1.1" |
|
| 4909 | + | }, |
|
| 4910 | + | "funding": { |
|
| 4911 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 4912 | + | } |
|
| 4913 | + | }, |
|
| 4914 | + | "node_modules/has-proto": { |
|
| 4915 | + | "version": "1.0.1", |
|
| 4916 | + | "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", |
|
| 4917 | + | "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", |
|
| 4918 | + | "dev": true, |
|
| 4919 | + | "engines": { |
|
| 4920 | + | "node": ">= 0.4" |
|
| 4921 | + | }, |
|
| 4922 | + | "funding": { |
|
| 4923 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 4924 | + | } |
|
| 4925 | + | }, |
|
| 4926 | + | "node_modules/has-symbols": { |
|
| 4927 | + | "version": "1.0.3", |
|
| 4928 | + | "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", |
|
| 4929 | + | "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", |
|
| 4930 | + | "dev": true, |
|
| 4931 | + | "engines": { |
|
| 4932 | + | "node": ">= 0.4" |
|
| 4933 | + | }, |
|
| 4934 | + | "funding": { |
|
| 4935 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 4936 | + | } |
|
| 4937 | + | }, |
|
| 4938 | + | "node_modules/has-tostringtag": { |
|
| 4939 | + | "version": "1.0.0", |
|
| 4940 | + | "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", |
|
| 4941 | + | "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", |
|
| 4942 | + | "dev": true, |
|
| 4943 | + | "dependencies": { |
|
| 4944 | + | "has-symbols": "^1.0.2" |
|
| 4945 | + | }, |
|
| 4946 | + | "engines": { |
|
| 4947 | + | "node": ">= 0.4" |
|
| 4948 | + | }, |
|
| 4949 | + | "funding": { |
|
| 4950 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 4951 | + | } |
|
| 4952 | + | }, |
|
| 4953 | + | "node_modules/hast-util-from-parse5": { |
|
| 4954 | + | "version": "7.1.2", |
|
| 4955 | + | "resolved": "https://registry.npmjs.org/hast-util-from-parse5/-/hast-util-from-parse5-7.1.2.tgz", |
|
| 4956 | + | "integrity": "sha512-Nz7FfPBuljzsN3tCQ4kCBKqdNhQE2l0Tn+X1ubgKBPRoiDIu1mL08Cfw4k7q71+Duyaw7DXDN+VTAp4Vh3oCOw==", |
|
| 4957 | + | "dependencies": { |
|
| 4958 | + | "@types/hast": "^2.0.0", |
|
| 4959 | + | "@types/unist": "^2.0.0", |
|
| 4960 | + | "hastscript": "^7.0.0", |
|
| 4961 | + | "property-information": "^6.0.0", |
|
| 4962 | + | "vfile": "^5.0.0", |
|
| 4963 | + | "vfile-location": "^4.0.0", |
|
| 4964 | + | "web-namespaces": "^2.0.0" |
|
| 4965 | + | }, |
|
| 4966 | + | "funding": { |
|
| 4967 | + | "type": "opencollective", |
|
| 4968 | + | "url": "https://opencollective.com/unified" |
|
| 4969 | + | } |
|
| 4970 | + | }, |
|
| 4971 | + | "node_modules/hast-util-parse-selector": { |
|
| 4972 | + | "version": "3.1.1", |
|
| 4973 | + | "resolved": "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-3.1.1.tgz", |
|
| 4974 | + | "integrity": "sha512-jdlwBjEexy1oGz0aJ2f4GKMaVKkA9jwjr4MjAAI22E5fM/TXVZHuS5OpONtdeIkRKqAaryQ2E9xNQxijoThSZA==", |
|
| 4975 | + | "dependencies": { |
|
| 4976 | + | "@types/hast": "^2.0.0" |
|
| 4977 | + | }, |
|
| 4978 | + | "funding": { |
|
| 4979 | + | "type": "opencollective", |
|
| 4980 | + | "url": "https://opencollective.com/unified" |
|
| 4981 | + | } |
|
| 4982 | + | }, |
|
| 4983 | + | "node_modules/hast-util-raw": { |
|
| 4984 | + | "version": "7.2.3", |
|
| 4985 | + | "resolved": "https://registry.npmjs.org/hast-util-raw/-/hast-util-raw-7.2.3.tgz", |
|
| 4986 | + | "integrity": "sha512-RujVQfVsOrxzPOPSzZFiwofMArbQke6DJjnFfceiEbFh7S05CbPt0cYN+A5YeD3pso0JQk6O1aHBnx9+Pm2uqg==", |
|
| 4987 | + | "dependencies": { |
|
| 4988 | + | "@types/hast": "^2.0.0", |
|
| 4989 | + | "@types/parse5": "^6.0.0", |
|
| 4990 | + | "hast-util-from-parse5": "^7.0.0", |
|
| 4991 | + | "hast-util-to-parse5": "^7.0.0", |
|
| 4992 | + | "html-void-elements": "^2.0.0", |
|
| 4993 | + | "parse5": "^6.0.0", |
|
| 4994 | + | "unist-util-position": "^4.0.0", |
|
| 4995 | + | "unist-util-visit": "^4.0.0", |
|
| 4996 | + | "vfile": "^5.0.0", |
|
| 4997 | + | "web-namespaces": "^2.0.0", |
|
| 4998 | + | "zwitch": "^2.0.0" |
|
| 4999 | + | }, |
|
| 5000 | + | "funding": { |
|
| 5001 | + | "type": "opencollective", |
|
| 5002 | + | "url": "https://opencollective.com/unified" |
|
| 5003 | + | } |
|
| 5004 | + | }, |
|
| 5005 | + | "node_modules/hast-util-to-estree": { |
|
| 5006 | + | "version": "2.3.2", |
|
| 5007 | + | "resolved": "https://registry.npmjs.org/hast-util-to-estree/-/hast-util-to-estree-2.3.2.tgz", |
|
| 5008 | + | "integrity": "sha512-YYDwATNdnvZi3Qi84iatPIl1lWpXba1MeNrNbDfJfVzEBZL8uUmtR7mt7bxKBC8kuAuvb0bkojXYZzsNHyHCLg==", |
|
| 5009 | + | "dev": true, |
|
| 5010 | + | "dependencies": { |
|
| 5011 | + | "@types/estree": "^1.0.0", |
|
| 5012 | + | "@types/estree-jsx": "^1.0.0", |
|
| 5013 | + | "@types/hast": "^2.0.0", |
|
| 5014 | + | "@types/unist": "^2.0.0", |
|
| 5015 | + | "comma-separated-tokens": "^2.0.0", |
|
| 5016 | + | "estree-util-attach-comments": "^2.0.0", |
|
| 5017 | + | "estree-util-is-identifier-name": "^2.0.0", |
|
| 5018 | + | "hast-util-whitespace": "^2.0.0", |
|
| 5019 | + | "mdast-util-mdx-expression": "^1.0.0", |
|
| 5020 | + | "mdast-util-mdxjs-esm": "^1.0.0", |
|
| 5021 | + | "property-information": "^6.0.0", |
|
| 5022 | + | "space-separated-tokens": "^2.0.0", |
|
| 5023 | + | "style-to-object": "^0.4.1", |
|
| 5024 | + | "unist-util-position": "^4.0.0", |
|
| 5025 | + | "zwitch": "^2.0.0" |
|
| 5026 | + | }, |
|
| 5027 | + | "funding": { |
|
| 5028 | + | "type": "opencollective", |
|
| 5029 | + | "url": "https://opencollective.com/unified" |
|
| 5030 | + | } |
|
| 5031 | + | }, |
|
| 5032 | + | "node_modules/hast-util-to-html": { |
|
| 5033 | + | "version": "8.0.4", |
|
| 5034 | + | "resolved": "https://registry.npmjs.org/hast-util-to-html/-/hast-util-to-html-8.0.4.tgz", |
|
| 5035 | + | "integrity": "sha512-4tpQTUOr9BMjtYyNlt0P50mH7xj0Ks2xpo8M943Vykljf99HW6EzulIoJP1N3eKOSScEHzyzi9dm7/cn0RfGwA==", |
|
| 5036 | + | "dependencies": { |
|
| 5037 | + | "@types/hast": "^2.0.0", |
|
| 5038 | + | "@types/unist": "^2.0.0", |
|
| 5039 | + | "ccount": "^2.0.0", |
|
| 5040 | + | "comma-separated-tokens": "^2.0.0", |
|
| 5041 | + | "hast-util-raw": "^7.0.0", |
|
| 5042 | + | "hast-util-whitespace": "^2.0.0", |
|
| 5043 | + | "html-void-elements": "^2.0.0", |
|
| 5044 | + | "property-information": "^6.0.0", |
|
| 5045 | + | "space-separated-tokens": "^2.0.0", |
|
| 5046 | + | "stringify-entities": "^4.0.0", |
|
| 5047 | + | "zwitch": "^2.0.4" |
|
| 5048 | + | }, |
|
| 5049 | + | "funding": { |
|
| 5050 | + | "type": "opencollective", |
|
| 5051 | + | "url": "https://opencollective.com/unified" |
|
| 5052 | + | } |
|
| 5053 | + | }, |
|
| 5054 | + | "node_modules/hast-util-to-parse5": { |
|
| 5055 | + | "version": "7.1.0", |
|
| 5056 | + | "resolved": "https://registry.npmjs.org/hast-util-to-parse5/-/hast-util-to-parse5-7.1.0.tgz", |
|
| 5057 | + | "integrity": "sha512-YNRgAJkH2Jky5ySkIqFXTQiaqcAtJyVE+D5lkN6CdtOqrnkLfGYYrEcKuHOJZlp+MwjSwuD3fZuawI+sic/RBw==", |
|
| 5058 | + | "dependencies": { |
|
| 5059 | + | "@types/hast": "^2.0.0", |
|
| 5060 | + | "comma-separated-tokens": "^2.0.0", |
|
| 5061 | + | "property-information": "^6.0.0", |
|
| 5062 | + | "space-separated-tokens": "^2.0.0", |
|
| 5063 | + | "web-namespaces": "^2.0.0", |
|
| 5064 | + | "zwitch": "^2.0.0" |
|
| 5065 | + | }, |
|
| 5066 | + | "funding": { |
|
| 5067 | + | "type": "opencollective", |
|
| 5068 | + | "url": "https://opencollective.com/unified" |
|
| 5069 | + | } |
|
| 5070 | + | }, |
|
| 5071 | + | "node_modules/hast-util-whitespace": { |
|
| 5072 | + | "version": "2.0.1", |
|
| 5073 | + | "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-2.0.1.tgz", |
|
| 5074 | + | "integrity": "sha512-nAxA0v8+vXSBDt3AnRUNjyRIQ0rD+ntpbAp4LnPkumc5M9yUbSMa4XDU9Q6etY4f1Wp4bNgvc1yjiZtsTTrSng==", |
|
| 5075 | + | "funding": { |
|
| 5076 | + | "type": "opencollective", |
|
| 5077 | + | "url": "https://opencollective.com/unified" |
|
| 5078 | + | } |
|
| 5079 | + | }, |
|
| 5080 | + | "node_modules/hastscript": { |
|
| 5081 | + | "version": "7.2.0", |
|
| 5082 | + | "resolved": "https://registry.npmjs.org/hastscript/-/hastscript-7.2.0.tgz", |
|
| 5083 | + | "integrity": "sha512-TtYPq24IldU8iKoJQqvZOuhi5CyCQRAbvDOX0x1eW6rsHSxa/1i2CCiptNTotGHJ3VoHRGmqiv6/D3q113ikkw==", |
|
| 5084 | + | "dependencies": { |
|
| 5085 | + | "@types/hast": "^2.0.0", |
|
| 5086 | + | "comma-separated-tokens": "^2.0.0", |
|
| 5087 | + | "hast-util-parse-selector": "^3.0.0", |
|
| 5088 | + | "property-information": "^6.0.0", |
|
| 5089 | + | "space-separated-tokens": "^2.0.0" |
|
| 5090 | + | }, |
|
| 5091 | + | "funding": { |
|
| 5092 | + | "type": "opencollective", |
|
| 5093 | + | "url": "https://opencollective.com/unified" |
|
| 5094 | + | } |
|
| 5095 | + | }, |
|
| 5096 | + | "node_modules/hosted-git-info": { |
|
| 5097 | + | "version": "4.1.0", |
|
| 5098 | + | "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", |
|
| 5099 | + | "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", |
|
| 5100 | + | "dev": true, |
|
| 5101 | + | "dependencies": { |
|
| 5102 | + | "lru-cache": "^6.0.0" |
|
| 5103 | + | }, |
|
| 5104 | + | "engines": { |
|
| 5105 | + | "node": ">=10" |
|
| 5106 | + | } |
|
| 5107 | + | }, |
|
| 5108 | + | "node_modules/hosted-git-info/node_modules/lru-cache": { |
|
| 5109 | + | "version": "6.0.0", |
|
| 5110 | + | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", |
|
| 5111 | + | "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", |
|
| 5112 | + | "dev": true, |
|
| 5113 | + | "dependencies": { |
|
| 5114 | + | "yallist": "^4.0.0" |
|
| 5115 | + | }, |
|
| 5116 | + | "engines": { |
|
| 5117 | + | "node": ">=10" |
|
| 5118 | + | } |
|
| 5119 | + | }, |
|
| 5120 | + | "node_modules/hosted-git-info/node_modules/yallist": { |
|
| 5121 | + | "version": "4.0.0", |
|
| 5122 | + | "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", |
|
| 5123 | + | "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", |
|
| 5124 | + | "dev": true |
|
| 5125 | + | }, |
|
| 5126 | + | "node_modules/html-escaper": { |
|
| 5127 | + | "version": "3.0.3", |
|
| 5128 | + | "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-3.0.3.tgz", |
|
| 5129 | + | "integrity": "sha512-RuMffC89BOWQoY0WKGpIhn5gX3iI54O6nRA0yC124NYVtzjmFWBIiFd8M0x+ZdX0P9R4lADg1mgP8C7PxGOWuQ==" |
|
| 5130 | + | }, |
|
| 5131 | + | "node_modules/html-tags": { |
|
| 5132 | + | "version": "3.2.0", |
|
| 5133 | + | "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.2.0.tgz", |
|
| 5134 | + | "integrity": "sha512-vy7ClnArOZwCnqZgvv+ddgHgJiAFXe3Ge9ML5/mBctVJoUoYPCdxVucOywjDARn6CVoh3dRSFdPHy2sX80L0Wg==", |
|
| 5135 | + | "dev": true, |
|
| 5136 | + | "engines": { |
|
| 5137 | + | "node": ">=8" |
|
| 5138 | + | }, |
|
| 5139 | + | "funding": { |
|
| 5140 | + | "url": "https://github.com/sponsors/sindresorhus" |
|
| 5141 | + | } |
|
| 5142 | + | }, |
|
| 5143 | + | "node_modules/html-void-elements": { |
|
| 5144 | + | "version": "2.0.1", |
|
| 5145 | + | "resolved": "https://registry.npmjs.org/html-void-elements/-/html-void-elements-2.0.1.tgz", |
|
| 5146 | + | "integrity": "sha512-0quDb7s97CfemeJAnW9wC0hw78MtW7NU3hqtCD75g2vFlDLt36llsYD7uB7SUzojLMP24N5IatXf7ylGXiGG9A==", |
|
| 5147 | + | "funding": { |
|
| 5148 | + | "type": "github", |
|
| 5149 | + | "url": "https://github.com/sponsors/wooorm" |
|
| 5150 | + | } |
|
| 5151 | + | }, |
|
| 5152 | + | "node_modules/htmlparser2": { |
|
| 5153 | + | "version": "8.0.1", |
|
| 5154 | + | "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-8.0.1.tgz", |
|
| 5155 | + | "integrity": "sha512-4lVbmc1diZC7GUJQtRQ5yBAeUCL1exyMwmForWkRLnwyzWBFxN633SALPMGYaWZvKe9j1pRZJpauvmxENSp/EA==", |
|
| 5156 | + | "dev": true, |
|
| 5157 | + | "funding": [ |
|
| 5158 | + | "https://github.com/fb55/htmlparser2?sponsor=1", |
|
| 5159 | + | { |
|
| 5160 | + | "type": "github", |
|
| 5161 | + | "url": "https://github.com/sponsors/fb55" |
|
| 5162 | + | } |
|
| 5163 | + | ], |
|
| 5164 | + | "dependencies": { |
|
| 5165 | + | "domelementtype": "^2.3.0", |
|
| 5166 | + | "domhandler": "^5.0.2", |
|
| 5167 | + | "domutils": "^3.0.1", |
|
| 5168 | + | "entities": "^4.3.0" |
|
| 5169 | + | } |
|
| 5170 | + | }, |
|
| 5171 | + | "node_modules/http-cache-semantics": { |
|
| 5172 | + | "version": "4.1.1", |
|
| 5173 | + | "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", |
|
| 5174 | + | "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==", |
|
| 5175 | + | "dev": true |
|
| 5176 | + | }, |
|
| 5177 | + | "node_modules/human-signals": { |
|
| 5178 | + | "version": "3.0.1", |
|
| 5179 | + | "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-3.0.1.tgz", |
|
| 5180 | + | "integrity": "sha512-rQLskxnM/5OCldHo+wNXbpVgDn5A17CUoKX+7Sokwaknlq7CdSnphy0W39GU8dw59XiCXmFXDg4fRuckQRKewQ==", |
|
| 5181 | + | "engines": { |
|
| 5182 | + | "node": ">=12.20.0" |
|
| 5183 | + | } |
|
| 5184 | + | }, |
|
| 5185 | + | "node_modules/ieee754": { |
|
| 5186 | + | "version": "1.2.1", |
|
| 5187 | + | "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", |
|
| 5188 | + | "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", |
|
| 5189 | + | "funding": [ |
|
| 5190 | + | { |
|
| 5191 | + | "type": "github", |
|
| 5192 | + | "url": "https://github.com/sponsors/feross" |
|
| 5193 | + | }, |
|
| 5194 | + | { |
|
| 5195 | + | "type": "patreon", |
|
| 5196 | + | "url": "https://www.patreon.com/feross" |
|
| 5197 | + | }, |
|
| 5198 | + | { |
|
| 5199 | + | "type": "consulting", |
|
| 5200 | + | "url": "https://feross.org/support" |
|
| 5201 | + | } |
|
| 5202 | + | ] |
|
| 5203 | + | }, |
|
| 5204 | + | "node_modules/ignore": { |
|
| 5205 | + | "version": "5.2.4", |
|
| 5206 | + | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", |
|
| 5207 | + | "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", |
|
| 5208 | + | "dev": true, |
|
| 5209 | + | "engines": { |
|
| 5210 | + | "node": ">= 4" |
|
| 5211 | + | } |
|
| 5212 | + | }, |
|
| 5213 | + | "node_modules/image-size": { |
|
| 5214 | + | "version": "1.0.2", |
|
| 5215 | + | "resolved": "https://registry.npmjs.org/image-size/-/image-size-1.0.2.tgz", |
|
| 5216 | + | "integrity": "sha512-xfOoWjceHntRb3qFCrh5ZFORYH8XCdYpASltMhZ/Q0KZiOwjdE/Yl2QCiWdwD+lygV5bMCvauzgu5PxBX/Yerg==", |
|
| 5217 | + | "dev": true, |
|
| 5218 | + | "dependencies": { |
|
| 5219 | + | "queue": "6.0.2" |
|
| 5220 | + | }, |
|
| 5221 | + | "bin": { |
|
| 5222 | + | "image-size": "bin/image-size.js" |
|
| 5223 | + | }, |
|
| 5224 | + | "engines": { |
|
| 5225 | + | "node": ">=14.0.0" |
|
| 5226 | + | } |
|
| 5227 | + | }, |
|
| 5228 | + | "node_modules/import-fresh": { |
|
| 5229 | + | "version": "3.3.0", |
|
| 5230 | + | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", |
|
| 5231 | + | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", |
|
| 5232 | + | "dev": true, |
|
| 5233 | + | "dependencies": { |
|
| 5234 | + | "parent-module": "^1.0.0", |
|
| 5235 | + | "resolve-from": "^4.0.0" |
|
| 5236 | + | }, |
|
| 5237 | + | "engines": { |
|
| 5238 | + | "node": ">=6" |
|
| 5239 | + | }, |
|
| 5240 | + | "funding": { |
|
| 5241 | + | "url": "https://github.com/sponsors/sindresorhus" |
|
| 5242 | + | } |
|
| 5243 | + | }, |
|
| 5244 | + | "node_modules/import-lazy": { |
|
| 5245 | + | "version": "4.0.0", |
|
| 5246 | + | "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-4.0.0.tgz", |
|
| 5247 | + | "integrity": "sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==", |
|
| 5248 | + | "dev": true, |
|
| 5249 | + | "engines": { |
|
| 5250 | + | "node": ">=8" |
|
| 5251 | + | } |
|
| 5252 | + | }, |
|
| 5253 | + | "node_modules/import-meta-resolve": { |
|
| 5254 | + | "version": "2.2.1", |
|
| 5255 | + | "resolved": "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-2.2.1.tgz", |
|
| 5256 | + | "integrity": "sha512-C6lLL7EJPY44kBvA80gq4uMsVFw5x3oSKfuMl1cuZ2RkI5+UJqQXgn+6hlUew0y4ig7Ypt4CObAAIzU53Nfpuw==", |
|
| 5257 | + | "funding": { |
|
| 5258 | + | "type": "github", |
|
| 5259 | + | "url": "https://github.com/sponsors/wooorm" |
|
| 5260 | + | } |
|
| 5261 | + | }, |
|
| 5262 | + | "node_modules/imurmurhash": { |
|
| 5263 | + | "version": "0.1.4", |
|
| 5264 | + | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", |
|
| 5265 | + | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", |
|
| 5266 | + | "dev": true, |
|
| 5267 | + | "engines": { |
|
| 5268 | + | "node": ">=0.8.19" |
|
| 5269 | + | } |
|
| 5270 | + | }, |
|
| 5271 | + | "node_modules/indent-string": { |
|
| 5272 | + | "version": "4.0.0", |
|
| 5273 | + | "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", |
|
| 5274 | + | "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", |
|
| 5275 | + | "dev": true, |
|
| 5276 | + | "engines": { |
|
| 5277 | + | "node": ">=8" |
|
| 5278 | + | } |
|
| 5279 | + | }, |
|
| 5280 | + | "node_modules/inflight": { |
|
| 5281 | + | "version": "1.0.6", |
|
| 5282 | + | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", |
|
| 5283 | + | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", |
|
| 5284 | + | "dev": true, |
|
| 5285 | + | "dependencies": { |
|
| 5286 | + | "once": "^1.3.0", |
|
| 5287 | + | "wrappy": "1" |
|
| 5288 | + | } |
|
| 5289 | + | }, |
|
| 5290 | + | "node_modules/inherits": { |
|
| 5291 | + | "version": "2.0.4", |
|
| 5292 | + | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", |
|
| 5293 | + | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" |
|
| 5294 | + | }, |
|
| 5295 | + | "node_modules/ini": { |
|
| 5296 | + | "version": "1.3.8", |
|
| 5297 | + | "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", |
|
| 5298 | + | "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" |
|
| 5299 | + | }, |
|
| 5300 | + | "node_modules/inline-style-parser": { |
|
| 5301 | + | "version": "0.1.1", |
|
| 5302 | + | "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.1.1.tgz", |
|
| 5303 | + | "integrity": "sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==", |
|
| 5304 | + | "dev": true |
|
| 5305 | + | }, |
|
| 5306 | + | "node_modules/internal-slot": { |
|
| 5307 | + | "version": "1.0.5", |
|
| 5308 | + | "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz", |
|
| 5309 | + | "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", |
|
| 5310 | + | "dev": true, |
|
| 5311 | + | "dependencies": { |
|
| 5312 | + | "get-intrinsic": "^1.2.0", |
|
| 5313 | + | "has": "^1.0.3", |
|
| 5314 | + | "side-channel": "^1.0.4" |
|
| 5315 | + | }, |
|
| 5316 | + | "engines": { |
|
| 5317 | + | "node": ">= 0.4" |
|
| 5318 | + | } |
|
| 5319 | + | }, |
|
| 5320 | + | "node_modules/is-alphabetical": { |
|
| 5321 | + | "version": "2.0.1", |
|
| 5322 | + | "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-2.0.1.tgz", |
|
| 5323 | + | "integrity": "sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==", |
|
| 5324 | + | "dev": true, |
|
| 5325 | + | "funding": { |
|
| 5326 | + | "type": "github", |
|
| 5327 | + | "url": "https://github.com/sponsors/wooorm" |
|
| 5328 | + | } |
|
| 5329 | + | }, |
|
| 5330 | + | "node_modules/is-alphanumerical": { |
|
| 5331 | + | "version": "2.0.1", |
|
| 5332 | + | "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz", |
|
| 5333 | + | "integrity": "sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==", |
|
| 5334 | + | "dev": true, |
|
| 5335 | + | "dependencies": { |
|
| 5336 | + | "is-alphabetical": "^2.0.0", |
|
| 5337 | + | "is-decimal": "^2.0.0" |
|
| 5338 | + | }, |
|
| 5339 | + | "funding": { |
|
| 5340 | + | "type": "github", |
|
| 5341 | + | "url": "https://github.com/sponsors/wooorm" |
|
| 5342 | + | } |
|
| 5343 | + | }, |
|
| 5344 | + | "node_modules/is-arguments": { |
|
| 5345 | + | "version": "1.1.1", |
|
| 5346 | + | "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", |
|
| 5347 | + | "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", |
|
| 5348 | + | "dev": true, |
|
| 5349 | + | "dependencies": { |
|
| 5350 | + | "call-bind": "^1.0.2", |
|
| 5351 | + | "has-tostringtag": "^1.0.0" |
|
| 5352 | + | }, |
|
| 5353 | + | "engines": { |
|
| 5354 | + | "node": ">= 0.4" |
|
| 5355 | + | }, |
|
| 5356 | + | "funding": { |
|
| 5357 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 5358 | + | } |
|
| 5359 | + | }, |
|
| 5360 | + | "node_modules/is-array-buffer": { |
|
| 5361 | + | "version": "3.0.1", |
|
| 5362 | + | "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.1.tgz", |
|
| 5363 | + | "integrity": "sha512-ASfLknmY8Xa2XtB4wmbz13Wu202baeA18cJBCeCy0wXUHZF0IPyVEXqKEcd+t2fNSLLL1vC6k7lxZEojNbISXQ==", |
|
| 5364 | + | "dev": true, |
|
| 5365 | + | "dependencies": { |
|
| 5366 | + | "call-bind": "^1.0.2", |
|
| 5367 | + | "get-intrinsic": "^1.1.3", |
|
| 5368 | + | "is-typed-array": "^1.1.10" |
|
| 5369 | + | }, |
|
| 5370 | + | "funding": { |
|
| 5371 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 5372 | + | } |
|
| 5373 | + | }, |
|
| 5374 | + | "node_modules/is-arrayish": { |
|
| 5375 | + | "version": "0.3.2", |
|
| 5376 | + | "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", |
|
| 5377 | + | "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" |
|
| 5378 | + | }, |
|
| 5379 | + | "node_modules/is-bigint": { |
|
| 5380 | + | "version": "1.0.4", |
|
| 5381 | + | "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", |
|
| 5382 | + | "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", |
|
| 5383 | + | "dev": true, |
|
| 5384 | + | "dependencies": { |
|
| 5385 | + | "has-bigints": "^1.0.1" |
|
| 5386 | + | }, |
|
| 5387 | + | "funding": { |
|
| 5388 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 5389 | + | } |
|
| 5390 | + | }, |
|
| 5391 | + | "node_modules/is-binary-path": { |
|
| 5392 | + | "version": "2.1.0", |
|
| 5393 | + | "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", |
|
| 5394 | + | "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", |
|
| 5395 | + | "dev": true, |
|
| 5396 | + | "dependencies": { |
|
| 5397 | + | "binary-extensions": "^2.0.0" |
|
| 5398 | + | }, |
|
| 5399 | + | "engines": { |
|
| 5400 | + | "node": ">=8" |
|
| 5401 | + | } |
|
| 5402 | + | }, |
|
| 5403 | + | "node_modules/is-boolean-object": { |
|
| 5404 | + | "version": "1.1.2", |
|
| 5405 | + | "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", |
|
| 5406 | + | "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", |
|
| 5407 | + | "dev": true, |
|
| 5408 | + | "dependencies": { |
|
| 5409 | + | "call-bind": "^1.0.2", |
|
| 5410 | + | "has-tostringtag": "^1.0.0" |
|
| 5411 | + | }, |
|
| 5412 | + | "engines": { |
|
| 5413 | + | "node": ">= 0.4" |
|
| 5414 | + | }, |
|
| 5415 | + | "funding": { |
|
| 5416 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 5417 | + | } |
|
| 5418 | + | }, |
|
| 5419 | + | "node_modules/is-buffer": { |
|
| 5420 | + | "version": "2.0.5", |
|
| 5421 | + | "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz", |
|
| 5422 | + | "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==", |
|
| 5423 | + | "funding": [ |
|
| 5424 | + | { |
|
| 5425 | + | "type": "github", |
|
| 5426 | + | "url": "https://github.com/sponsors/feross" |
|
| 5427 | + | }, |
|
| 5428 | + | { |
|
| 5429 | + | "type": "patreon", |
|
| 5430 | + | "url": "https://www.patreon.com/feross" |
|
| 5431 | + | }, |
|
| 5432 | + | { |
|
| 5433 | + | "type": "consulting", |
|
| 5434 | + | "url": "https://feross.org/support" |
|
| 5435 | + | } |
|
| 5436 | + | ], |
|
| 5437 | + | "engines": { |
|
| 5438 | + | "node": ">=4" |
|
| 5439 | + | } |
|
| 5440 | + | }, |
|
| 5441 | + | "node_modules/is-callable": { |
|
| 5442 | + | "version": "1.2.7", |
|
| 5443 | + | "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", |
|
| 5444 | + | "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", |
|
| 5445 | + | "dev": true, |
|
| 5446 | + | "engines": { |
|
| 5447 | + | "node": ">= 0.4" |
|
| 5448 | + | }, |
|
| 5449 | + | "funding": { |
|
| 5450 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 5451 | + | } |
|
| 5452 | + | }, |
|
| 5453 | + | "node_modules/is-core-module": { |
|
| 5454 | + | "version": "2.11.0", |
|
| 5455 | + | "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz", |
|
| 5456 | + | "integrity": "sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==", |
|
| 5457 | + | "dependencies": { |
|
| 5458 | + | "has": "^1.0.3" |
|
| 5459 | + | }, |
|
| 5460 | + | "funding": { |
|
| 5461 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 5462 | + | } |
|
| 5463 | + | }, |
|
| 5464 | + | "node_modules/is-date-object": { |
|
| 5465 | + | "version": "1.0.5", |
|
| 5466 | + | "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", |
|
| 5467 | + | "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", |
|
| 5468 | + | "dev": true, |
|
| 5469 | + | "dependencies": { |
|
| 5470 | + | "has-tostringtag": "^1.0.0" |
|
| 5471 | + | }, |
|
| 5472 | + | "engines": { |
|
| 5473 | + | "node": ">= 0.4" |
|
| 5474 | + | }, |
|
| 5475 | + | "funding": { |
|
| 5476 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 5477 | + | } |
|
| 5478 | + | }, |
|
| 5479 | + | "node_modules/is-decimal": { |
|
| 5480 | + | "version": "2.0.1", |
|
| 5481 | + | "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-2.0.1.tgz", |
|
| 5482 | + | "integrity": "sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==", |
|
| 5483 | + | "dev": true, |
|
| 5484 | + | "funding": { |
|
| 5485 | + | "type": "github", |
|
| 5486 | + | "url": "https://github.com/sponsors/wooorm" |
|
| 5487 | + | } |
|
| 5488 | + | }, |
|
| 5489 | + | "node_modules/is-docker": { |
|
| 5490 | + | "version": "3.0.0", |
|
| 5491 | + | "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", |
|
| 5492 | + | "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", |
|
| 5493 | + | "bin": { |
|
| 5494 | + | "is-docker": "cli.js" |
|
| 5495 | + | }, |
|
| 5496 | + | "engines": { |
|
| 5497 | + | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" |
|
| 5498 | + | }, |
|
| 5499 | + | "funding": { |
|
| 5500 | + | "url": "https://github.com/sponsors/sindresorhus" |
|
| 5501 | + | } |
|
| 5502 | + | }, |
|
| 5503 | + | "node_modules/is-extendable": { |
|
| 5504 | + | "version": "0.1.1", |
|
| 5505 | + | "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", |
|
| 5506 | + | "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", |
|
| 5507 | + | "engines": { |
|
| 5508 | + | "node": ">=0.10.0" |
|
| 5509 | + | } |
|
| 5510 | + | }, |
|
| 5511 | + | "node_modules/is-extglob": { |
|
| 5512 | + | "version": "2.1.1", |
|
| 5513 | + | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", |
|
| 5514 | + | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", |
|
| 5515 | + | "engines": { |
|
| 5516 | + | "node": ">=0.10.0" |
|
| 5517 | + | } |
|
| 5518 | + | }, |
|
| 5519 | + | "node_modules/is-fullwidth-code-point": { |
|
| 5520 | + | "version": "3.0.0", |
|
| 5521 | + | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", |
|
| 5522 | + | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", |
|
| 5523 | + | "engines": { |
|
| 5524 | + | "node": ">=8" |
|
| 5525 | + | } |
|
| 5526 | + | }, |
|
| 5527 | + | "node_modules/is-glob": { |
|
| 5528 | + | "version": "4.0.3", |
|
| 5529 | + | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", |
|
| 5530 | + | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", |
|
| 5531 | + | "dependencies": { |
|
| 5532 | + | "is-extglob": "^2.1.1" |
|
| 5533 | + | }, |
|
| 5534 | + | "engines": { |
|
| 5535 | + | "node": ">=0.10.0" |
|
| 5536 | + | } |
|
| 5537 | + | }, |
|
| 5538 | + | "node_modules/is-hexadecimal": { |
|
| 5539 | + | "version": "2.0.1", |
|
| 5540 | + | "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz", |
|
| 5541 | + | "integrity": "sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==", |
|
| 5542 | + | "dev": true, |
|
| 5543 | + | "funding": { |
|
| 5544 | + | "type": "github", |
|
| 5545 | + | "url": "https://github.com/sponsors/wooorm" |
|
| 5546 | + | } |
|
| 5547 | + | }, |
|
| 5548 | + | "node_modules/is-interactive": { |
|
| 5549 | + | "version": "2.0.0", |
|
| 5550 | + | "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-2.0.0.tgz", |
|
| 5551 | + | "integrity": "sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==", |
|
| 5552 | + | "engines": { |
|
| 5553 | + | "node": ">=12" |
|
| 5554 | + | }, |
|
| 5555 | + | "funding": { |
|
| 5556 | + | "url": "https://github.com/sponsors/sindresorhus" |
|
| 5557 | + | } |
|
| 5558 | + | }, |
|
| 5559 | + | "node_modules/is-map": { |
|
| 5560 | + | "version": "2.0.2", |
|
| 5561 | + | "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", |
|
| 5562 | + | "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", |
|
| 5563 | + | "dev": true, |
|
| 5564 | + | "funding": { |
|
| 5565 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 5566 | + | } |
|
| 5567 | + | }, |
|
| 5568 | + | "node_modules/is-negative-zero": { |
|
| 5569 | + | "version": "2.0.2", |
|
| 5570 | + | "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", |
|
| 5571 | + | "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", |
|
| 5572 | + | "dev": true, |
|
| 5573 | + | "engines": { |
|
| 5574 | + | "node": ">= 0.4" |
|
| 5575 | + | }, |
|
| 5576 | + | "funding": { |
|
| 5577 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 5578 | + | } |
|
| 5579 | + | }, |
|
| 5580 | + | "node_modules/is-number": { |
|
| 5581 | + | "version": "7.0.0", |
|
| 5582 | + | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", |
|
| 5583 | + | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", |
|
| 5584 | + | "engines": { |
|
| 5585 | + | "node": ">=0.12.0" |
|
| 5586 | + | } |
|
| 5587 | + | }, |
|
| 5588 | + | "node_modules/is-number-object": { |
|
| 5589 | + | "version": "1.0.7", |
|
| 5590 | + | "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", |
|
| 5591 | + | "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", |
|
| 5592 | + | "dev": true, |
|
| 5593 | + | "dependencies": { |
|
| 5594 | + | "has-tostringtag": "^1.0.0" |
|
| 5595 | + | }, |
|
| 5596 | + | "engines": { |
|
| 5597 | + | "node": ">= 0.4" |
|
| 5598 | + | }, |
|
| 5599 | + | "funding": { |
|
| 5600 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 5601 | + | } |
|
| 5602 | + | }, |
|
| 5603 | + | "node_modules/is-path-inside": { |
|
| 5604 | + | "version": "3.0.3", |
|
| 5605 | + | "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", |
|
| 5606 | + | "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", |
|
| 5607 | + | "dev": true, |
|
| 5608 | + | "engines": { |
|
| 5609 | + | "node": ">=8" |
|
| 5610 | + | } |
|
| 5611 | + | }, |
|
| 5612 | + | "node_modules/is-plain-obj": { |
|
| 5613 | + | "version": "1.1.0", |
|
| 5614 | + | "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", |
|
| 5615 | + | "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", |
|
| 5616 | + | "dev": true, |
|
| 5617 | + | "engines": { |
|
| 5618 | + | "node": ">=0.10.0" |
|
| 5619 | + | } |
|
| 5620 | + | }, |
|
| 5621 | + | "node_modules/is-plain-object": { |
|
| 5622 | + | "version": "5.0.0", |
|
| 5623 | + | "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", |
|
| 5624 | + | "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", |
|
| 5625 | + | "dev": true, |
|
| 5626 | + | "engines": { |
|
| 5627 | + | "node": ">=0.10.0" |
|
| 5628 | + | } |
|
| 5629 | + | }, |
|
| 5630 | + | "node_modules/is-reference": { |
|
| 5631 | + | "version": "3.0.1", |
|
| 5632 | + | "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-3.0.1.tgz", |
|
| 5633 | + | "integrity": "sha512-baJJdQLiYaJdvFbJqXrcGv3WU3QCzBlUcI5QhbesIm6/xPsvmO+2CDoi/GMOFBQEQm+PXkwOPrp9KK5ozZsp2w==", |
|
| 5634 | + | "dev": true, |
|
| 5635 | + | "dependencies": { |
|
| 5636 | + | "@types/estree": "*" |
|
| 5637 | + | } |
|
| 5638 | + | }, |
|
| 5639 | + | "node_modules/is-regex": { |
|
| 5640 | + | "version": "1.1.4", |
|
| 5641 | + | "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", |
|
| 5642 | + | "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", |
|
| 5643 | + | "dev": true, |
|
| 5644 | + | "dependencies": { |
|
| 5645 | + | "call-bind": "^1.0.2", |
|
| 5646 | + | "has-tostringtag": "^1.0.0" |
|
| 5647 | + | }, |
|
| 5648 | + | "engines": { |
|
| 5649 | + | "node": ">= 0.4" |
|
| 5650 | + | }, |
|
| 5651 | + | "funding": { |
|
| 5652 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 5653 | + | } |
|
| 5654 | + | }, |
|
| 5655 | + | "node_modules/is-set": { |
|
| 5656 | + | "version": "2.0.2", |
|
| 5657 | + | "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", |
|
| 5658 | + | "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", |
|
| 5659 | + | "dev": true, |
|
| 5660 | + | "funding": { |
|
| 5661 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 5662 | + | } |
|
| 5663 | + | }, |
|
| 5664 | + | "node_modules/is-shared-array-buffer": { |
|
| 5665 | + | "version": "1.0.2", |
|
| 5666 | + | "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", |
|
| 5667 | + | "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", |
|
| 5668 | + | "dev": true, |
|
| 5669 | + | "dependencies": { |
|
| 5670 | + | "call-bind": "^1.0.2" |
|
| 5671 | + | }, |
|
| 5672 | + | "funding": { |
|
| 5673 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 5674 | + | } |
|
| 5675 | + | }, |
|
| 5676 | + | "node_modules/is-stream": { |
|
| 5677 | + | "version": "3.0.0", |
|
| 5678 | + | "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", |
|
| 5679 | + | "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", |
|
| 5680 | + | "engines": { |
|
| 5681 | + | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" |
|
| 5682 | + | }, |
|
| 5683 | + | "funding": { |
|
| 5684 | + | "url": "https://github.com/sponsors/sindresorhus" |
|
| 5685 | + | } |
|
| 5686 | + | }, |
|
| 5687 | + | "node_modules/is-string": { |
|
| 5688 | + | "version": "1.0.7", |
|
| 5689 | + | "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", |
|
| 5690 | + | "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", |
|
| 5691 | + | "dev": true, |
|
| 5692 | + | "dependencies": { |
|
| 5693 | + | "has-tostringtag": "^1.0.0" |
|
| 5694 | + | }, |
|
| 5695 | + | "engines": { |
|
| 5696 | + | "node": ">= 0.4" |
|
| 5697 | + | }, |
|
| 5698 | + | "funding": { |
|
| 5699 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 5700 | + | } |
|
| 5701 | + | }, |
|
| 5702 | + | "node_modules/is-symbol": { |
|
| 5703 | + | "version": "1.0.4", |
|
| 5704 | + | "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", |
|
| 5705 | + | "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", |
|
| 5706 | + | "dev": true, |
|
| 5707 | + | "dependencies": { |
|
| 5708 | + | "has-symbols": "^1.0.2" |
|
| 5709 | + | }, |
|
| 5710 | + | "engines": { |
|
| 5711 | + | "node": ">= 0.4" |
|
| 5712 | + | }, |
|
| 5713 | + | "funding": { |
|
| 5714 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 5715 | + | } |
|
| 5716 | + | }, |
|
| 5717 | + | "node_modules/is-typed-array": { |
|
| 5718 | + | "version": "1.1.10", |
|
| 5719 | + | "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", |
|
| 5720 | + | "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==", |
|
| 5721 | + | "dev": true, |
|
| 5722 | + | "dependencies": { |
|
| 5723 | + | "available-typed-arrays": "^1.0.5", |
|
| 5724 | + | "call-bind": "^1.0.2", |
|
| 5725 | + | "for-each": "^0.3.3", |
|
| 5726 | + | "gopd": "^1.0.1", |
|
| 5727 | + | "has-tostringtag": "^1.0.0" |
|
| 5728 | + | }, |
|
| 5729 | + | "engines": { |
|
| 5730 | + | "node": ">= 0.4" |
|
| 5731 | + | }, |
|
| 5732 | + | "funding": { |
|
| 5733 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 5734 | + | } |
|
| 5735 | + | }, |
|
| 5736 | + | "node_modules/is-unicode-supported": { |
|
| 5737 | + | "version": "1.3.0", |
|
| 5738 | + | "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-1.3.0.tgz", |
|
| 5739 | + | "integrity": "sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==", |
|
| 5740 | + | "engines": { |
|
| 5741 | + | "node": ">=12" |
|
| 5742 | + | }, |
|
| 5743 | + | "funding": { |
|
| 5744 | + | "url": "https://github.com/sponsors/sindresorhus" |
|
| 5745 | + | } |
|
| 5746 | + | }, |
|
| 5747 | + | "node_modules/is-weakmap": { |
|
| 5748 | + | "version": "2.0.1", |
|
| 5749 | + | "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", |
|
| 5750 | + | "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", |
|
| 5751 | + | "dev": true, |
|
| 5752 | + | "funding": { |
|
| 5753 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 5754 | + | } |
|
| 5755 | + | }, |
|
| 5756 | + | "node_modules/is-weakref": { |
|
| 5757 | + | "version": "1.0.2", |
|
| 5758 | + | "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", |
|
| 5759 | + | "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", |
|
| 5760 | + | "dev": true, |
|
| 5761 | + | "dependencies": { |
|
| 5762 | + | "call-bind": "^1.0.2" |
|
| 5763 | + | }, |
|
| 5764 | + | "funding": { |
|
| 5765 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 5766 | + | } |
|
| 5767 | + | }, |
|
| 5768 | + | "node_modules/is-weakset": { |
|
| 5769 | + | "version": "2.0.2", |
|
| 5770 | + | "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", |
|
| 5771 | + | "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", |
|
| 5772 | + | "dev": true, |
|
| 5773 | + | "dependencies": { |
|
| 5774 | + | "call-bind": "^1.0.2", |
|
| 5775 | + | "get-intrinsic": "^1.1.1" |
|
| 5776 | + | }, |
|
| 5777 | + | "funding": { |
|
| 5778 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 5779 | + | } |
|
| 5780 | + | }, |
|
| 5781 | + | "node_modules/is-wsl": { |
|
| 5782 | + | "version": "2.2.0", |
|
| 5783 | + | "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", |
|
| 5784 | + | "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", |
|
| 5785 | + | "dependencies": { |
|
| 5786 | + | "is-docker": "^2.0.0" |
|
| 5787 | + | }, |
|
| 5788 | + | "engines": { |
|
| 5789 | + | "node": ">=8" |
|
| 5790 | + | } |
|
| 5791 | + | }, |
|
| 5792 | + | "node_modules/is-wsl/node_modules/is-docker": { |
|
| 5793 | + | "version": "2.2.1", |
|
| 5794 | + | "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", |
|
| 5795 | + | "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", |
|
| 5796 | + | "bin": { |
|
| 5797 | + | "is-docker": "cli.js" |
|
| 5798 | + | }, |
|
| 5799 | + | "engines": { |
|
| 5800 | + | "node": ">=8" |
|
| 5801 | + | }, |
|
| 5802 | + | "funding": { |
|
| 5803 | + | "url": "https://github.com/sponsors/sindresorhus" |
|
| 5804 | + | } |
|
| 5805 | + | }, |
|
| 5806 | + | "node_modules/isarray": { |
|
| 5807 | + | "version": "2.0.5", |
|
| 5808 | + | "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", |
|
| 5809 | + | "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", |
|
| 5810 | + | "dev": true |
|
| 5811 | + | }, |
|
| 5812 | + | "node_modules/isexe": { |
|
| 5813 | + | "version": "2.0.0", |
|
| 5814 | + | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", |
|
| 5815 | + | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" |
|
| 5816 | + | }, |
|
| 5817 | + | "node_modules/js-sdsl": { |
|
| 5818 | + | "version": "4.3.0", |
|
| 5819 | + | "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.3.0.tgz", |
|
| 5820 | + | "integrity": "sha512-mifzlm2+5nZ+lEcLJMoBK0/IH/bDg8XnJfd/Wq6IP+xoCjLZsTOnV2QpxlVbX9bMnkl5PdEjNtBJ9Cj1NjifhQ==", |
|
| 5821 | + | "dev": true, |
|
| 5822 | + | "funding": { |
|
| 5823 | + | "type": "opencollective", |
|
| 5824 | + | "url": "https://opencollective.com/js-sdsl" |
|
| 5825 | + | } |
|
| 5826 | + | }, |
|
| 5827 | + | "node_modules/js-tokens": { |
|
| 5828 | + | "version": "4.0.0", |
|
| 5829 | + | "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", |
|
| 5830 | + | "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" |
|
| 5831 | + | }, |
|
| 5832 | + | "node_modules/js-yaml": { |
|
| 5833 | + | "version": "4.1.0", |
|
| 5834 | + | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", |
|
| 5835 | + | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", |
|
| 5836 | + | "dev": true, |
|
| 5837 | + | "dependencies": { |
|
| 5838 | + | "argparse": "^2.0.1" |
|
| 5839 | + | }, |
|
| 5840 | + | "bin": { |
|
| 5841 | + | "js-yaml": "bin/js-yaml.js" |
|
| 5842 | + | } |
|
| 5843 | + | }, |
|
| 5844 | + | "node_modules/jsesc": { |
|
| 5845 | + | "version": "2.5.2", |
|
| 5846 | + | "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", |
|
| 5847 | + | "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", |
|
| 5848 | + | "bin": { |
|
| 5849 | + | "jsesc": "bin/jsesc" |
|
| 5850 | + | }, |
|
| 5851 | + | "engines": { |
|
| 5852 | + | "node": ">=4" |
|
| 5853 | + | } |
|
| 5854 | + | }, |
|
| 5855 | + | "node_modules/json-parse-even-better-errors": { |
|
| 5856 | + | "version": "2.3.1", |
|
| 5857 | + | "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", |
|
| 5858 | + | "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", |
|
| 5859 | + | "dev": true |
|
| 5860 | + | }, |
|
| 5861 | + | "node_modules/json-schema-traverse": { |
|
| 5862 | + | "version": "0.4.1", |
|
| 5863 | + | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", |
|
| 5864 | + | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", |
|
| 5865 | + | "dev": true |
|
| 5866 | + | }, |
|
| 5867 | + | "node_modules/json-stable-stringify-without-jsonify": { |
|
| 5868 | + | "version": "1.0.1", |
|
| 5869 | + | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", |
|
| 5870 | + | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", |
|
| 5871 | + | "dev": true |
|
| 5872 | + | }, |
|
| 5873 | + | "node_modules/json5": { |
|
| 5874 | + | "version": "2.2.3", |
|
| 5875 | + | "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", |
|
| 5876 | + | "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", |
|
| 5877 | + | "bin": { |
|
| 5878 | + | "json5": "lib/cli.js" |
|
| 5879 | + | }, |
|
| 5880 | + | "engines": { |
|
| 5881 | + | "node": ">=6" |
|
| 5882 | + | } |
|
| 5883 | + | }, |
|
| 5884 | + | "node_modules/jsonc-parser": { |
|
| 5885 | + | "version": "2.3.1", |
|
| 5886 | + | "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-2.3.1.tgz", |
|
| 5887 | + | "integrity": "sha512-H8jvkz1O50L3dMZCsLqiuB2tA7muqbSg1AtGEkN0leAqGjsUzDJir3Zwr02BhqdcITPg3ei3mZ+HjMocAknhhg==" |
|
| 5888 | + | }, |
|
| 5889 | + | "node_modules/jsx-ast-utils": { |
|
| 5890 | + | "version": "3.3.3", |
|
| 5891 | + | "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz", |
|
| 5892 | + | "integrity": "sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==", |
|
| 5893 | + | "dev": true, |
|
| 5894 | + | "dependencies": { |
|
| 5895 | + | "array-includes": "^3.1.5", |
|
| 5896 | + | "object.assign": "^4.1.3" |
|
| 5897 | + | }, |
|
| 5898 | + | "engines": { |
|
| 5899 | + | "node": ">=4.0" |
|
| 5900 | + | } |
|
| 5901 | + | }, |
|
| 5902 | + | "node_modules/kind-of": { |
|
| 5903 | + | "version": "6.0.3", |
|
| 5904 | + | "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", |
|
| 5905 | + | "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", |
|
| 5906 | + | "engines": { |
|
| 5907 | + | "node": ">=0.10.0" |
|
| 5908 | + | } |
|
| 5909 | + | }, |
|
| 5910 | + | "node_modules/kleur": { |
|
| 5911 | + | "version": "4.1.5", |
|
| 5912 | + | "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", |
|
| 5913 | + | "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", |
|
| 5914 | + | "engines": { |
|
| 5915 | + | "node": ">=6" |
|
| 5916 | + | } |
|
| 5917 | + | }, |
|
| 5918 | + | "node_modules/known-css-properties": { |
|
| 5919 | + | "version": "0.26.0", |
|
| 5920 | + | "resolved": "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.26.0.tgz", |
|
| 5921 | + | "integrity": "sha512-5FZRzrZzNTBruuurWpvZnvP9pum+fe0HcK8z/ooo+U+Hmp4vtbyp1/QDsqmufirXy4egGzbaH/y2uCZf+6W5Kg==", |
|
| 5922 | + | "dev": true |
|
| 5923 | + | }, |
|
| 5924 | + | "node_modules/language-subtag-registry": { |
|
| 5925 | + | "version": "0.3.22", |
|
| 5926 | + | "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", |
|
| 5927 | + | "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==", |
|
| 5928 | + | "dev": true |
|
| 5929 | + | }, |
|
| 5930 | + | "node_modules/language-tags": { |
|
| 5931 | + | "version": "1.0.5", |
|
| 5932 | + | "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz", |
|
| 5933 | + | "integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==", |
|
| 5934 | + | "dev": true, |
|
| 5935 | + | "dependencies": { |
|
| 5936 | + | "language-subtag-registry": "~0.3.2" |
|
| 5937 | + | } |
|
| 5938 | + | }, |
|
| 5939 | + | "node_modules/levn": { |
|
| 5940 | + | "version": "0.4.1", |
|
| 5941 | + | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", |
|
| 5942 | + | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", |
|
| 5943 | + | "dev": true, |
|
| 5944 | + | "dependencies": { |
|
| 5945 | + | "prelude-ls": "^1.2.1", |
|
| 5946 | + | "type-check": "~0.4.0" |
|
| 5947 | + | }, |
|
| 5948 | + | "engines": { |
|
| 5949 | + | "node": ">= 0.8.0" |
|
| 5950 | + | } |
|
| 5951 | + | }, |
|
| 5952 | + | "node_modules/lilconfig": { |
|
| 5953 | + | "version": "2.0.6", |
|
| 5954 | + | "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.6.tgz", |
|
| 5955 | + | "integrity": "sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==", |
|
| 5956 | + | "dev": true, |
|
| 5957 | + | "engines": { |
|
| 5958 | + | "node": ">=10" |
|
| 5959 | + | } |
|
| 5960 | + | }, |
|
| 5961 | + | "node_modules/lines-and-columns": { |
|
| 5962 | + | "version": "1.2.4", |
|
| 5963 | + | "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", |
|
| 5964 | + | "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", |
|
| 5965 | + | "dev": true |
|
| 5966 | + | }, |
|
| 5967 | + | "node_modules/load-yaml-file": { |
|
| 5968 | + | "version": "0.2.0", |
|
| 5969 | + | "resolved": "https://registry.npmjs.org/load-yaml-file/-/load-yaml-file-0.2.0.tgz", |
|
| 5970 | + | "integrity": "sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==", |
|
| 5971 | + | "dependencies": { |
|
| 5972 | + | "graceful-fs": "^4.1.5", |
|
| 5973 | + | "js-yaml": "^3.13.0", |
|
| 5974 | + | "pify": "^4.0.1", |
|
| 5975 | + | "strip-bom": "^3.0.0" |
|
| 5976 | + | }, |
|
| 5977 | + | "engines": { |
|
| 5978 | + | "node": ">=6" |
|
| 5979 | + | } |
|
| 5980 | + | }, |
|
| 5981 | + | "node_modules/load-yaml-file/node_modules/argparse": { |
|
| 5982 | + | "version": "1.0.10", |
|
| 5983 | + | "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", |
|
| 5984 | + | "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", |
|
| 5985 | + | "dependencies": { |
|
| 5986 | + | "sprintf-js": "~1.0.2" |
|
| 5987 | + | } |
|
| 5988 | + | }, |
|
| 5989 | + | "node_modules/load-yaml-file/node_modules/js-yaml": { |
|
| 5990 | + | "version": "3.14.1", |
|
| 5991 | + | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", |
|
| 5992 | + | "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", |
|
| 5993 | + | "dependencies": { |
|
| 5994 | + | "argparse": "^1.0.7", |
|
| 5995 | + | "esprima": "^4.0.0" |
|
| 5996 | + | }, |
|
| 5997 | + | "bin": { |
|
| 5998 | + | "js-yaml": "bin/js-yaml.js" |
|
| 5999 | + | } |
|
| 6000 | + | }, |
|
| 6001 | + | "node_modules/load-yaml-file/node_modules/pify": { |
|
| 6002 | + | "version": "4.0.1", |
|
| 6003 | + | "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", |
|
| 6004 | + | "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", |
|
| 6005 | + | "engines": { |
|
| 6006 | + | "node": ">=6" |
|
| 6007 | + | } |
|
| 6008 | + | }, |
|
| 6009 | + | "node_modules/locate-path": { |
|
| 6010 | + | "version": "6.0.0", |
|
| 6011 | + | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", |
|
| 6012 | + | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", |
|
| 6013 | + | "dependencies": { |
|
| 6014 | + | "p-locate": "^5.0.0" |
|
| 6015 | + | }, |
|
| 6016 | + | "engines": { |
|
| 6017 | + | "node": ">=10" |
|
| 6018 | + | }, |
|
| 6019 | + | "funding": { |
|
| 6020 | + | "url": "https://github.com/sponsors/sindresorhus" |
|
| 6021 | + | } |
|
| 6022 | + | }, |
|
| 6023 | + | "node_modules/lodash.castarray": { |
|
| 6024 | + | "version": "4.4.0", |
|
| 6025 | + | "resolved": "https://registry.npmjs.org/lodash.castarray/-/lodash.castarray-4.4.0.tgz", |
|
| 6026 | + | "integrity": "sha512-aVx8ztPv7/2ULbArGJ2Y42bG1mEQ5mGjpdvrbJcJFU3TbYybe+QlLS4pst9zV52ymy2in1KpFPiZnAOATxD4+Q==", |
|
| 6027 | + | "dev": true |
|
| 6028 | + | }, |
|
| 6029 | + | "node_modules/lodash.isplainobject": { |
|
| 6030 | + | "version": "4.0.6", |
|
| 6031 | + | "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", |
|
| 6032 | + | "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==", |
|
| 6033 | + | "dev": true |
|
| 6034 | + | }, |
|
| 6035 | + | "node_modules/lodash.merge": { |
|
| 6036 | + | "version": "4.6.2", |
|
| 6037 | + | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", |
|
| 6038 | + | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", |
|
| 6039 | + | "dev": true |
|
| 6040 | + | }, |
|
| 6041 | + | "node_modules/lodash.truncate": { |
|
| 6042 | + | "version": "4.4.2", |
|
| 6043 | + | "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", |
|
| 6044 | + | "integrity": "sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==", |
|
| 6045 | + | "dev": true |
|
| 6046 | + | }, |
|
| 6047 | + | "node_modules/log-symbols": { |
|
| 6048 | + | "version": "5.1.0", |
|
| 6049 | + | "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-5.1.0.tgz", |
|
| 6050 | + | "integrity": "sha512-l0x2DvrW294C9uDCoQe1VSU4gf529FkSZ6leBl4TiqZH/e+0R7hSfHQBNut2mNygDgHwvYHfFLn6Oxb3VWj2rA==", |
|
| 6051 | + | "dependencies": { |
|
| 6052 | + | "chalk": "^5.0.0", |
|
| 6053 | + | "is-unicode-supported": "^1.1.0" |
|
| 6054 | + | }, |
|
| 6055 | + | "engines": { |
|
| 6056 | + | "node": ">=12" |
|
| 6057 | + | }, |
|
| 6058 | + | "funding": { |
|
| 6059 | + | "url": "https://github.com/sponsors/sindresorhus" |
|
| 6060 | + | } |
|
| 6061 | + | }, |
|
| 6062 | + | "node_modules/log-symbols/node_modules/chalk": { |
|
| 6063 | + | "version": "5.2.0", |
|
| 6064 | + | "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.2.0.tgz", |
|
| 6065 | + | "integrity": "sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==", |
|
| 6066 | + | "engines": { |
|
| 6067 | + | "node": "^12.17.0 || ^14.13 || >=16.0.0" |
|
| 6068 | + | }, |
|
| 6069 | + | "funding": { |
|
| 6070 | + | "url": "https://github.com/chalk/chalk?sponsor=1" |
|
| 6071 | + | } |
|
| 6072 | + | }, |
|
| 6073 | + | "node_modules/longest-streak": { |
|
| 6074 | + | "version": "3.1.0", |
|
| 6075 | + | "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz", |
|
| 6076 | + | "integrity": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==", |
|
| 6077 | + | "funding": { |
|
| 6078 | + | "type": "github", |
|
| 6079 | + | "url": "https://github.com/sponsors/wooorm" |
|
| 6080 | + | } |
|
| 6081 | + | }, |
|
| 6082 | + | "node_modules/lru-cache": { |
|
| 6083 | + | "version": "5.1.1", |
|
| 6084 | + | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", |
|
| 6085 | + | "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", |
|
| 6086 | + | "dependencies": { |
|
| 6087 | + | "yallist": "^3.0.2" |
|
| 6088 | + | } |
|
| 6089 | + | }, |
|
| 6090 | + | "node_modules/magic-string": { |
|
| 6091 | + | "version": "0.27.0", |
|
| 6092 | + | "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.27.0.tgz", |
|
| 6093 | + | "integrity": "sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==", |
|
| 6094 | + | "dependencies": { |
|
| 6095 | + | "@jridgewell/sourcemap-codec": "^1.4.13" |
|
| 6096 | + | }, |
|
| 6097 | + | "engines": { |
|
| 6098 | + | "node": ">=12" |
|
| 6099 | + | } |
|
| 6100 | + | }, |
|
| 6101 | + | "node_modules/map-obj": { |
|
| 6102 | + | "version": "4.3.0", |
|
| 6103 | + | "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz", |
|
| 6104 | + | "integrity": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==", |
|
| 6105 | + | "dev": true, |
|
| 6106 | + | "engines": { |
|
| 6107 | + | "node": ">=8" |
|
| 6108 | + | }, |
|
| 6109 | + | "funding": { |
|
| 6110 | + | "url": "https://github.com/sponsors/sindresorhus" |
|
| 6111 | + | } |
|
| 6112 | + | }, |
|
| 6113 | + | "node_modules/markdown-extensions": { |
|
| 6114 | + | "version": "1.1.1", |
|
| 6115 | + | "resolved": "https://registry.npmjs.org/markdown-extensions/-/markdown-extensions-1.1.1.tgz", |
|
| 6116 | + | "integrity": "sha512-WWC0ZuMzCyDHYCasEGs4IPvLyTGftYwh6wIEOULOF0HXcqZlhwRzrK0w2VUlxWA98xnvb/jszw4ZSkJ6ADpM6Q==", |
|
| 6117 | + | "dev": true, |
|
| 6118 | + | "engines": { |
|
| 6119 | + | "node": ">=0.10.0" |
|
| 6120 | + | } |
|
| 6121 | + | }, |
|
| 6122 | + | "node_modules/markdown-table": { |
|
| 6123 | + | "version": "3.0.3", |
|
| 6124 | + | "resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-3.0.3.tgz", |
|
| 6125 | + | "integrity": "sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw==", |
|
| 6126 | + | "funding": { |
|
| 6127 | + | "type": "github", |
|
| 6128 | + | "url": "https://github.com/sponsors/wooorm" |
|
| 6129 | + | } |
|
| 6130 | + | }, |
|
| 6131 | + | "node_modules/mathml-tag-names": { |
|
| 6132 | + | "version": "2.1.3", |
|
| 6133 | + | "resolved": "https://registry.npmjs.org/mathml-tag-names/-/mathml-tag-names-2.1.3.tgz", |
|
| 6134 | + | "integrity": "sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg==", |
|
| 6135 | + | "dev": true, |
|
| 6136 | + | "funding": { |
|
| 6137 | + | "type": "github", |
|
| 6138 | + | "url": "https://github.com/sponsors/wooorm" |
|
| 6139 | + | } |
|
| 6140 | + | }, |
|
| 6141 | + | "node_modules/mdast-util-definitions": { |
|
| 6142 | + | "version": "5.1.2", |
|
| 6143 | + | "resolved": "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-5.1.2.tgz", |
|
| 6144 | + | "integrity": "sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA==", |
|
| 6145 | + | "dependencies": { |
|
| 6146 | + | "@types/mdast": "^3.0.0", |
|
| 6147 | + | "@types/unist": "^2.0.0", |
|
| 6148 | + | "unist-util-visit": "^4.0.0" |
|
| 6149 | + | }, |
|
| 6150 | + | "funding": { |
|
| 6151 | + | "type": "opencollective", |
|
| 6152 | + | "url": "https://opencollective.com/unified" |
|
| 6153 | + | } |
|
| 6154 | + | }, |
|
| 6155 | + | "node_modules/mdast-util-find-and-replace": { |
|
| 6156 | + | "version": "2.2.2", |
|
| 6157 | + | "resolved": "https://registry.npmjs.org/mdast-util-find-and-replace/-/mdast-util-find-and-replace-2.2.2.tgz", |
|
| 6158 | + | "integrity": "sha512-MTtdFRz/eMDHXzeK6W3dO7mXUlF82Gom4y0oOgvHhh/HXZAGvIQDUvQ0SuUx+j2tv44b8xTHOm8K/9OoRFnXKw==", |
|
| 6159 | + | "dependencies": { |
|
| 6160 | + | "@types/mdast": "^3.0.0", |
|
| 6161 | + | "escape-string-regexp": "^5.0.0", |
|
| 6162 | + | "unist-util-is": "^5.0.0", |
|
| 6163 | + | "unist-util-visit-parents": "^5.0.0" |
|
| 6164 | + | }, |
|
| 6165 | + | "funding": { |
|
| 6166 | + | "type": "opencollective", |
|
| 6167 | + | "url": "https://opencollective.com/unified" |
|
| 6168 | + | } |
|
| 6169 | + | }, |
|
| 6170 | + | "node_modules/mdast-util-find-and-replace/node_modules/escape-string-regexp": { |
|
| 6171 | + | "version": "5.0.0", |
|
| 6172 | + | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", |
|
| 6173 | + | "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", |
|
| 6174 | + | "engines": { |
|
| 6175 | + | "node": ">=12" |
|
| 6176 | + | }, |
|
| 6177 | + | "funding": { |
|
| 6178 | + | "url": "https://github.com/sponsors/sindresorhus" |
|
| 6179 | + | } |
|
| 6180 | + | }, |
|
| 6181 | + | "node_modules/mdast-util-from-markdown": { |
|
| 6182 | + | "version": "1.3.0", |
|
| 6183 | + | "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-1.3.0.tgz", |
|
| 6184 | + | "integrity": "sha512-HN3W1gRIuN/ZW295c7zi7g9lVBllMgZE40RxCX37wrTPWXCWtpvOZdfnuK+1WNpvZje6XuJeI3Wnb4TJEUem+g==", |
|
| 6185 | + | "dependencies": { |
|
| 6186 | + | "@types/mdast": "^3.0.0", |
|
| 6187 | + | "@types/unist": "^2.0.0", |
|
| 6188 | + | "decode-named-character-reference": "^1.0.0", |
|
| 6189 | + | "mdast-util-to-string": "^3.1.0", |
|
| 6190 | + | "micromark": "^3.0.0", |
|
| 6191 | + | "micromark-util-decode-numeric-character-reference": "^1.0.0", |
|
| 6192 | + | "micromark-util-decode-string": "^1.0.0", |
|
| 6193 | + | "micromark-util-normalize-identifier": "^1.0.0", |
|
| 6194 | + | "micromark-util-symbol": "^1.0.0", |
|
| 6195 | + | "micromark-util-types": "^1.0.0", |
|
| 6196 | + | "unist-util-stringify-position": "^3.0.0", |
|
| 6197 | + | "uvu": "^0.5.0" |
|
| 6198 | + | }, |
|
| 6199 | + | "funding": { |
|
| 6200 | + | "type": "opencollective", |
|
| 6201 | + | "url": "https://opencollective.com/unified" |
|
| 6202 | + | } |
|
| 6203 | + | }, |
|
| 6204 | + | "node_modules/mdast-util-frontmatter": { |
|
| 6205 | + | "version": "1.0.1", |
|
| 6206 | + | "resolved": "https://registry.npmjs.org/mdast-util-frontmatter/-/mdast-util-frontmatter-1.0.1.tgz", |
|
| 6207 | + | "integrity": "sha512-JjA2OjxRqAa8wEG8hloD0uTU0kdn8kbtOWpPP94NBkfAlbxn4S8gCGf/9DwFtEeGPXrDcNXdiDjVaRdUFqYokw==", |
|
| 6208 | + | "dev": true, |
|
| 6209 | + | "dependencies": { |
|
| 6210 | + | "@types/mdast": "^3.0.0", |
|
| 6211 | + | "mdast-util-to-markdown": "^1.3.0", |
|
| 6212 | + | "micromark-extension-frontmatter": "^1.0.0" |
|
| 6213 | + | }, |
|
| 6214 | + | "funding": { |
|
| 6215 | + | "type": "opencollective", |
|
| 6216 | + | "url": "https://opencollective.com/unified" |
|
| 6217 | + | } |
|
| 6218 | + | }, |
|
| 6219 | + | "node_modules/mdast-util-gfm": { |
|
| 6220 | + | "version": "2.0.2", |
|
| 6221 | + | "resolved": "https://registry.npmjs.org/mdast-util-gfm/-/mdast-util-gfm-2.0.2.tgz", |
|
| 6222 | + | "integrity": "sha512-qvZ608nBppZ4icQlhQQIAdc6S3Ffj9RGmzwUKUWuEICFnd1LVkN3EktF7ZHAgfcEdvZB5owU9tQgt99e2TlLjg==", |
|
| 6223 | + | "dependencies": { |
|
| 6224 | + | "mdast-util-from-markdown": "^1.0.0", |
|
| 6225 | + | "mdast-util-gfm-autolink-literal": "^1.0.0", |
|
| 6226 | + | "mdast-util-gfm-footnote": "^1.0.0", |
|
| 6227 | + | "mdast-util-gfm-strikethrough": "^1.0.0", |
|
| 6228 | + | "mdast-util-gfm-table": "^1.0.0", |
|
| 6229 | + | "mdast-util-gfm-task-list-item": "^1.0.0", |
|
| 6230 | + | "mdast-util-to-markdown": "^1.0.0" |
|
| 6231 | + | }, |
|
| 6232 | + | "funding": { |
|
| 6233 | + | "type": "opencollective", |
|
| 6234 | + | "url": "https://opencollective.com/unified" |
|
| 6235 | + | } |
|
| 6236 | + | }, |
|
| 6237 | + | "node_modules/mdast-util-gfm-autolink-literal": { |
|
| 6238 | + | "version": "1.0.3", |
|
| 6239 | + | "resolved": "https://registry.npmjs.org/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-1.0.3.tgz", |
|
| 6240 | + | "integrity": "sha512-My8KJ57FYEy2W2LyNom4n3E7hKTuQk/0SES0u16tjA9Z3oFkF4RrC/hPAPgjlSpezsOvI8ObcXcElo92wn5IGA==", |
|
| 6241 | + | "dependencies": { |
|
| 6242 | + | "@types/mdast": "^3.0.0", |
|
| 6243 | + | "ccount": "^2.0.0", |
|
| 6244 | + | "mdast-util-find-and-replace": "^2.0.0", |
|
| 6245 | + | "micromark-util-character": "^1.0.0" |
|
| 6246 | + | }, |
|
| 6247 | + | "funding": { |
|
| 6248 | + | "type": "opencollective", |
|
| 6249 | + | "url": "https://opencollective.com/unified" |
|
| 6250 | + | } |
|
| 6251 | + | }, |
|
| 6252 | + | "node_modules/mdast-util-gfm-footnote": { |
|
| 6253 | + | "version": "1.0.2", |
|
| 6254 | + | "resolved": "https://registry.npmjs.org/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-1.0.2.tgz", |
|
| 6255 | + | "integrity": "sha512-56D19KOGbE00uKVj3sgIykpwKL179QsVFwx/DCW0u/0+URsryacI4MAdNJl0dh+u2PSsD9FtxPFbHCzJ78qJFQ==", |
|
| 6256 | + | "dependencies": { |
|
| 6257 | + | "@types/mdast": "^3.0.0", |
|
| 6258 | + | "mdast-util-to-markdown": "^1.3.0", |
|
| 6259 | + | "micromark-util-normalize-identifier": "^1.0.0" |
|
| 6260 | + | }, |
|
| 6261 | + | "funding": { |
|
| 6262 | + | "type": "opencollective", |
|
| 6263 | + | "url": "https://opencollective.com/unified" |
|
| 6264 | + | } |
|
| 6265 | + | }, |
|
| 6266 | + | "node_modules/mdast-util-gfm-strikethrough": { |
|
| 6267 | + | "version": "1.0.3", |
|
| 6268 | + | "resolved": "https://registry.npmjs.org/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-1.0.3.tgz", |
|
| 6269 | + | "integrity": "sha512-DAPhYzTYrRcXdMjUtUjKvW9z/FNAMTdU0ORyMcbmkwYNbKocDpdk+PX1L1dQgOID/+vVs1uBQ7ElrBQfZ0cuiQ==", |
|
| 6270 | + | "dependencies": { |
|
| 6271 | + | "@types/mdast": "^3.0.0", |
|
| 6272 | + | "mdast-util-to-markdown": "^1.3.0" |
|
| 6273 | + | }, |
|
| 6274 | + | "funding": { |
|
| 6275 | + | "type": "opencollective", |
|
| 6276 | + | "url": "https://opencollective.com/unified" |
|
| 6277 | + | } |
|
| 6278 | + | }, |
|
| 6279 | + | "node_modules/mdast-util-gfm-table": { |
|
| 6280 | + | "version": "1.0.7", |
|
| 6281 | + | "resolved": "https://registry.npmjs.org/mdast-util-gfm-table/-/mdast-util-gfm-table-1.0.7.tgz", |
|
| 6282 | + | "integrity": "sha512-jjcpmNnQvrmN5Vx7y7lEc2iIOEytYv7rTvu+MeyAsSHTASGCCRA79Igg2uKssgOs1i1po8s3plW0sTu1wkkLGg==", |
|
| 6283 | + | "dependencies": { |
|
| 6284 | + | "@types/mdast": "^3.0.0", |
|
| 6285 | + | "markdown-table": "^3.0.0", |
|
| 6286 | + | "mdast-util-from-markdown": "^1.0.0", |
|
| 6287 | + | "mdast-util-to-markdown": "^1.3.0" |
|
| 6288 | + | }, |
|
| 6289 | + | "funding": { |
|
| 6290 | + | "type": "opencollective", |
|
| 6291 | + | "url": "https://opencollective.com/unified" |
|
| 6292 | + | } |
|
| 6293 | + | }, |
|
| 6294 | + | "node_modules/mdast-util-gfm-task-list-item": { |
|
| 6295 | + | "version": "1.0.2", |
|
| 6296 | + | "resolved": "https://registry.npmjs.org/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-1.0.2.tgz", |
|
| 6297 | + | "integrity": "sha512-PFTA1gzfp1B1UaiJVyhJZA1rm0+Tzn690frc/L8vNX1Jop4STZgOE6bxUhnzdVSB+vm2GU1tIsuQcA9bxTQpMQ==", |
|
| 6298 | + | "dependencies": { |
|
| 6299 | + | "@types/mdast": "^3.0.0", |
|
| 6300 | + | "mdast-util-to-markdown": "^1.3.0" |
|
| 6301 | + | }, |
|
| 6302 | + | "funding": { |
|
| 6303 | + | "type": "opencollective", |
|
| 6304 | + | "url": "https://opencollective.com/unified" |
|
| 6305 | + | } |
|
| 6306 | + | }, |
|
| 6307 | + | "node_modules/mdast-util-mdx": { |
|
| 6308 | + | "version": "2.0.1", |
|
| 6309 | + | "resolved": "https://registry.npmjs.org/mdast-util-mdx/-/mdast-util-mdx-2.0.1.tgz", |
|
| 6310 | + | "integrity": "sha512-38w5y+r8nyKlGvNjSEqWrhG0w5PmnRA+wnBvm+ulYCct7nsGYhFVb0lljS9bQav4psDAS1eGkP2LMVcZBi/aqw==", |
|
| 6311 | + | "dev": true, |
|
| 6312 | + | "dependencies": { |
|
| 6313 | + | "mdast-util-from-markdown": "^1.0.0", |
|
| 6314 | + | "mdast-util-mdx-expression": "^1.0.0", |
|
| 6315 | + | "mdast-util-mdx-jsx": "^2.0.0", |
|
| 6316 | + | "mdast-util-mdxjs-esm": "^1.0.0", |
|
| 6317 | + | "mdast-util-to-markdown": "^1.0.0" |
|
| 6318 | + | }, |
|
| 6319 | + | "funding": { |
|
| 6320 | + | "type": "opencollective", |
|
| 6321 | + | "url": "https://opencollective.com/unified" |
|
| 6322 | + | } |
|
| 6323 | + | }, |
|
| 6324 | + | "node_modules/mdast-util-mdx-expression": { |
|
| 6325 | + | "version": "1.3.2", |
|
| 6326 | + | "resolved": "https://registry.npmjs.org/mdast-util-mdx-expression/-/mdast-util-mdx-expression-1.3.2.tgz", |
|
| 6327 | + | "integrity": "sha512-xIPmR5ReJDu/DHH1OoIT1HkuybIfRGYRywC+gJtI7qHjCJp/M9jrmBEJW22O8lskDWm562BX2W8TiAwRTb0rKA==", |
|
| 6328 | + | "dev": true, |
|
| 6329 | + | "dependencies": { |
|
| 6330 | + | "@types/estree-jsx": "^1.0.0", |
|
| 6331 | + | "@types/hast": "^2.0.0", |
|
| 6332 | + | "@types/mdast": "^3.0.0", |
|
| 6333 | + | "mdast-util-from-markdown": "^1.0.0", |
|
| 6334 | + | "mdast-util-to-markdown": "^1.0.0" |
|
| 6335 | + | }, |
|
| 6336 | + | "funding": { |
|
| 6337 | + | "type": "opencollective", |
|
| 6338 | + | "url": "https://opencollective.com/unified" |
|
| 6339 | + | } |
|
| 6340 | + | }, |
|
| 6341 | + | "node_modules/mdast-util-mdx-jsx": { |
|
| 6342 | + | "version": "2.1.2", |
|
| 6343 | + | "resolved": "https://registry.npmjs.org/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-2.1.2.tgz", |
|
| 6344 | + | "integrity": "sha512-o9vBCYQK5ZLGEj3tCGISJGjvafyHRVJlZmfJzSE7xjiogSzIeph/Z4zMY65q4WGRMezQBeAwPlrdymDYYYx0tA==", |
|
| 6345 | + | "dev": true, |
|
| 6346 | + | "dependencies": { |
|
| 6347 | + | "@types/estree-jsx": "^1.0.0", |
|
| 6348 | + | "@types/hast": "^2.0.0", |
|
| 6349 | + | "@types/mdast": "^3.0.0", |
|
| 6350 | + | "@types/unist": "^2.0.0", |
|
| 6351 | + | "ccount": "^2.0.0", |
|
| 6352 | + | "mdast-util-from-markdown": "^1.1.0", |
|
| 6353 | + | "mdast-util-to-markdown": "^1.3.0", |
|
| 6354 | + | "parse-entities": "^4.0.0", |
|
| 6355 | + | "stringify-entities": "^4.0.0", |
|
| 6356 | + | "unist-util-remove-position": "^4.0.0", |
|
| 6357 | + | "unist-util-stringify-position": "^3.0.0", |
|
| 6358 | + | "vfile-message": "^3.0.0" |
|
| 6359 | + | }, |
|
| 6360 | + | "funding": { |
|
| 6361 | + | "type": "opencollective", |
|
| 6362 | + | "url": "https://opencollective.com/unified" |
|
| 6363 | + | } |
|
| 6364 | + | }, |
|
| 6365 | + | "node_modules/mdast-util-mdxjs-esm": { |
|
| 6366 | + | "version": "1.3.1", |
|
| 6367 | + | "resolved": "https://registry.npmjs.org/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-1.3.1.tgz", |
|
| 6368 | + | "integrity": "sha512-SXqglS0HrEvSdUEfoXFtcg7DRl7S2cwOXc7jkuusG472Mmjag34DUDeOJUZtl+BVnyeO1frIgVpHlNRWc2gk/w==", |
|
| 6369 | + | "dev": true, |
|
| 6370 | + | "dependencies": { |
|
| 6371 | + | "@types/estree-jsx": "^1.0.0", |
|
| 6372 | + | "@types/hast": "^2.0.0", |
|
| 6373 | + | "@types/mdast": "^3.0.0", |
|
| 6374 | + | "mdast-util-from-markdown": "^1.0.0", |
|
| 6375 | + | "mdast-util-to-markdown": "^1.0.0" |
|
| 6376 | + | }, |
|
| 6377 | + | "funding": { |
|
| 6378 | + | "type": "opencollective", |
|
| 6379 | + | "url": "https://opencollective.com/unified" |
|
| 6380 | + | } |
|
| 6381 | + | }, |
|
| 6382 | + | "node_modules/mdast-util-phrasing": { |
|
| 6383 | + | "version": "3.0.1", |
|
| 6384 | + | "resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-3.0.1.tgz", |
|
| 6385 | + | "integrity": "sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg==", |
|
| 6386 | + | "dependencies": { |
|
| 6387 | + | "@types/mdast": "^3.0.0", |
|
| 6388 | + | "unist-util-is": "^5.0.0" |
|
| 6389 | + | }, |
|
| 6390 | + | "funding": { |
|
| 6391 | + | "type": "opencollective", |
|
| 6392 | + | "url": "https://opencollective.com/unified" |
|
| 6393 | + | } |
|
| 6394 | + | }, |
|
| 6395 | + | "node_modules/mdast-util-to-hast": { |
|
| 6396 | + | "version": "12.3.0", |
|
| 6397 | + | "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-12.3.0.tgz", |
|
| 6398 | + | "integrity": "sha512-pits93r8PhnIoU4Vy9bjW39M2jJ6/tdHyja9rrot9uujkN7UTU9SDnE6WNJz/IGyQk3XHX6yNNtrBH6cQzm8Hw==", |
|
| 6399 | + | "dependencies": { |
|
| 6400 | + | "@types/hast": "^2.0.0", |
|
| 6401 | + | "@types/mdast": "^3.0.0", |
|
| 6402 | + | "mdast-util-definitions": "^5.0.0", |
|
| 6403 | + | "micromark-util-sanitize-uri": "^1.1.0", |
|
| 6404 | + | "trim-lines": "^3.0.0", |
|
| 6405 | + | "unist-util-generated": "^2.0.0", |
|
| 6406 | + | "unist-util-position": "^4.0.0", |
|
| 6407 | + | "unist-util-visit": "^4.0.0" |
|
| 6408 | + | }, |
|
| 6409 | + | "funding": { |
|
| 6410 | + | "type": "opencollective", |
|
| 6411 | + | "url": "https://opencollective.com/unified" |
|
| 6412 | + | } |
|
| 6413 | + | }, |
|
| 6414 | + | "node_modules/mdast-util-to-markdown": { |
|
| 6415 | + | "version": "1.5.0", |
|
| 6416 | + | "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-1.5.0.tgz", |
|
| 6417 | + | "integrity": "sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==", |
|
| 6418 | + | "dependencies": { |
|
| 6419 | + | "@types/mdast": "^3.0.0", |
|
| 6420 | + | "@types/unist": "^2.0.0", |
|
| 6421 | + | "longest-streak": "^3.0.0", |
|
| 6422 | + | "mdast-util-phrasing": "^3.0.0", |
|
| 6423 | + | "mdast-util-to-string": "^3.0.0", |
|
| 6424 | + | "micromark-util-decode-string": "^1.0.0", |
|
| 6425 | + | "unist-util-visit": "^4.0.0", |
|
| 6426 | + | "zwitch": "^2.0.0" |
|
| 6427 | + | }, |
|
| 6428 | + | "funding": { |
|
| 6429 | + | "type": "opencollective", |
|
| 6430 | + | "url": "https://opencollective.com/unified" |
|
| 6431 | + | } |
|
| 6432 | + | }, |
|
| 6433 | + | "node_modules/mdast-util-to-string": { |
|
| 6434 | + | "version": "3.1.1", |
|
| 6435 | + | "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-3.1.1.tgz", |
|
| 6436 | + | "integrity": "sha512-tGvhT94e+cVnQt8JWE9/b3cUQZWS732TJxXHktvP+BYo62PpYD53Ls/6cC60rW21dW+txxiM4zMdc6abASvZKA==", |
|
| 6437 | + | "dependencies": { |
|
| 6438 | + | "@types/mdast": "^3.0.0" |
|
| 6439 | + | }, |
|
| 6440 | + | "funding": { |
|
| 6441 | + | "type": "opencollective", |
|
| 6442 | + | "url": "https://opencollective.com/unified" |
|
| 6443 | + | } |
|
| 6444 | + | }, |
|
| 6445 | + | "node_modules/meow": { |
|
| 6446 | + | "version": "9.0.0", |
|
| 6447 | + | "resolved": "https://registry.npmjs.org/meow/-/meow-9.0.0.tgz", |
|
| 6448 | + | "integrity": "sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ==", |
|
| 6449 | + | "dev": true, |
|
| 6450 | + | "dependencies": { |
|
| 6451 | + | "@types/minimist": "^1.2.0", |
|
| 6452 | + | "camelcase-keys": "^6.2.2", |
|
| 6453 | + | "decamelize": "^1.2.0", |
|
| 6454 | + | "decamelize-keys": "^1.1.0", |
|
| 6455 | + | "hard-rejection": "^2.1.0", |
|
| 6456 | + | "minimist-options": "4.1.0", |
|
| 6457 | + | "normalize-package-data": "^3.0.0", |
|
| 6458 | + | "read-pkg-up": "^7.0.1", |
|
| 6459 | + | "redent": "^3.0.0", |
|
| 6460 | + | "trim-newlines": "^3.0.0", |
|
| 6461 | + | "type-fest": "^0.18.0", |
|
| 6462 | + | "yargs-parser": "^20.2.3" |
|
| 6463 | + | }, |
|
| 6464 | + | "engines": { |
|
| 6465 | + | "node": ">=10" |
|
| 6466 | + | }, |
|
| 6467 | + | "funding": { |
|
| 6468 | + | "url": "https://github.com/sponsors/sindresorhus" |
|
| 6469 | + | } |
|
| 6470 | + | }, |
|
| 6471 | + | "node_modules/meow/node_modules/type-fest": { |
|
| 6472 | + | "version": "0.18.1", |
|
| 6473 | + | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz", |
|
| 6474 | + | "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", |
|
| 6475 | + | "dev": true, |
|
| 6476 | + | "engines": { |
|
| 6477 | + | "node": ">=10" |
|
| 6478 | + | }, |
|
| 6479 | + | "funding": { |
|
| 6480 | + | "url": "https://github.com/sponsors/sindresorhus" |
|
| 6481 | + | } |
|
| 6482 | + | }, |
|
| 6483 | + | "node_modules/meow/node_modules/yargs-parser": { |
|
| 6484 | + | "version": "20.2.9", |
|
| 6485 | + | "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", |
|
| 6486 | + | "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", |
|
| 6487 | + | "dev": true, |
|
| 6488 | + | "engines": { |
|
| 6489 | + | "node": ">=10" |
|
| 6490 | + | } |
|
| 6491 | + | }, |
|
| 6492 | + | "node_modules/merge-stream": { |
|
| 6493 | + | "version": "2.0.0", |
|
| 6494 | + | "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", |
|
| 6495 | + | "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" |
|
| 6496 | + | }, |
|
| 6497 | + | "node_modules/merge2": { |
|
| 6498 | + | "version": "1.4.1", |
|
| 6499 | + | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", |
|
| 6500 | + | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", |
|
| 6501 | + | "engines": { |
|
| 6502 | + | "node": ">= 8" |
|
| 6503 | + | } |
|
| 6504 | + | }, |
|
| 6505 | + | "node_modules/micromark": { |
|
| 6506 | + | "version": "3.1.0", |
|
| 6507 | + | "resolved": "https://registry.npmjs.org/micromark/-/micromark-3.1.0.tgz", |
|
| 6508 | + | "integrity": "sha512-6Mj0yHLdUZjHnOPgr5xfWIMqMWS12zDN6iws9SLuSz76W8jTtAv24MN4/CL7gJrl5vtxGInkkqDv/JIoRsQOvA==", |
|
| 6509 | + | "funding": [ |
|
| 6510 | + | { |
|
| 6511 | + | "type": "GitHub Sponsors", |
|
| 6512 | + | "url": "https://github.com/sponsors/unifiedjs" |
|
| 6513 | + | }, |
|
| 6514 | + | { |
|
| 6515 | + | "type": "OpenCollective", |
|
| 6516 | + | "url": "https://opencollective.com/unified" |
|
| 6517 | + | } |
|
| 6518 | + | ], |
|
| 6519 | + | "dependencies": { |
|
| 6520 | + | "@types/debug": "^4.0.0", |
|
| 6521 | + | "debug": "^4.0.0", |
|
| 6522 | + | "decode-named-character-reference": "^1.0.0", |
|
| 6523 | + | "micromark-core-commonmark": "^1.0.1", |
|
| 6524 | + | "micromark-factory-space": "^1.0.0", |
|
| 6525 | + | "micromark-util-character": "^1.0.0", |
|
| 6526 | + | "micromark-util-chunked": "^1.0.0", |
|
| 6527 | + | "micromark-util-combine-extensions": "^1.0.0", |
|
| 6528 | + | "micromark-util-decode-numeric-character-reference": "^1.0.0", |
|
| 6529 | + | "micromark-util-encode": "^1.0.0", |
|
| 6530 | + | "micromark-util-normalize-identifier": "^1.0.0", |
|
| 6531 | + | "micromark-util-resolve-all": "^1.0.0", |
|
| 6532 | + | "micromark-util-sanitize-uri": "^1.0.0", |
|
| 6533 | + | "micromark-util-subtokenize": "^1.0.0", |
|
| 6534 | + | "micromark-util-symbol": "^1.0.0", |
|
| 6535 | + | "micromark-util-types": "^1.0.1", |
|
| 6536 | + | "uvu": "^0.5.0" |
|
| 6537 | + | } |
|
| 6538 | + | }, |
|
| 6539 | + | "node_modules/micromark-core-commonmark": { |
|
| 6540 | + | "version": "1.0.6", |
|
| 6541 | + | "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-1.0.6.tgz", |
|
| 6542 | + | "integrity": "sha512-K+PkJTxqjFfSNkfAhp4GB+cZPfQd6dxtTXnf+RjZOV7T4EEXnvgzOcnp+eSTmpGk9d1S9sL6/lqrgSNn/s0HZA==", |
|
| 6543 | + | "funding": [ |
|
| 6544 | + | { |
|
| 6545 | + | "type": "GitHub Sponsors", |
|
| 6546 | + | "url": "https://github.com/sponsors/unifiedjs" |
|
| 6547 | + | }, |
|
| 6548 | + | { |
|
| 6549 | + | "type": "OpenCollective", |
|
| 6550 | + | "url": "https://opencollective.com/unified" |
|
| 6551 | + | } |
|
| 6552 | + | ], |
|
| 6553 | + | "dependencies": { |
|
| 6554 | + | "decode-named-character-reference": "^1.0.0", |
|
| 6555 | + | "micromark-factory-destination": "^1.0.0", |
|
| 6556 | + | "micromark-factory-label": "^1.0.0", |
|
| 6557 | + | "micromark-factory-space": "^1.0.0", |
|
| 6558 | + | "micromark-factory-title": "^1.0.0", |
|
| 6559 | + | "micromark-factory-whitespace": "^1.0.0", |
|
| 6560 | + | "micromark-util-character": "^1.0.0", |
|
| 6561 | + | "micromark-util-chunked": "^1.0.0", |
|
| 6562 | + | "micromark-util-classify-character": "^1.0.0", |
|
| 6563 | + | "micromark-util-html-tag-name": "^1.0.0", |
|
| 6564 | + | "micromark-util-normalize-identifier": "^1.0.0", |
|
| 6565 | + | "micromark-util-resolve-all": "^1.0.0", |
|
| 6566 | + | "micromark-util-subtokenize": "^1.0.0", |
|
| 6567 | + | "micromark-util-symbol": "^1.0.0", |
|
| 6568 | + | "micromark-util-types": "^1.0.1", |
|
| 6569 | + | "uvu": "^0.5.0" |
|
| 6570 | + | } |
|
| 6571 | + | }, |
|
| 6572 | + | "node_modules/micromark-extension-frontmatter": { |
|
| 6573 | + | "version": "1.0.0", |
|
| 6574 | + | "resolved": "https://registry.npmjs.org/micromark-extension-frontmatter/-/micromark-extension-frontmatter-1.0.0.tgz", |
|
| 6575 | + | "integrity": "sha512-EXjmRnupoX6yYuUJSQhrQ9ggK0iQtQlpi6xeJzVD5xscyAI+giqco5fdymayZhJMbIFecjnE2yz85S9NzIgQpg==", |
|
| 6576 | + | "dev": true, |
|
| 6577 | + | "dependencies": { |
|
| 6578 | + | "fault": "^2.0.0", |
|
| 6579 | + | "micromark-util-character": "^1.0.0", |
|
| 6580 | + | "micromark-util-symbol": "^1.0.0" |
|
| 6581 | + | }, |
|
| 6582 | + | "funding": { |
|
| 6583 | + | "type": "opencollective", |
|
| 6584 | + | "url": "https://opencollective.com/unified" |
|
| 6585 | + | } |
|
| 6586 | + | }, |
|
| 6587 | + | "node_modules/micromark-extension-gfm": { |
|
| 6588 | + | "version": "2.0.1", |
|
| 6589 | + | "resolved": "https://registry.npmjs.org/micromark-extension-gfm/-/micromark-extension-gfm-2.0.1.tgz", |
|
| 6590 | + | "integrity": "sha512-p2sGjajLa0iYiGQdT0oelahRYtMWvLjy8J9LOCxzIQsllMCGLbsLW+Nc+N4vi02jcRJvedVJ68cjelKIO6bpDA==", |
|
| 6591 | + | "dependencies": { |
|
| 6592 | + | "micromark-extension-gfm-autolink-literal": "^1.0.0", |
|
| 6593 | + | "micromark-extension-gfm-footnote": "^1.0.0", |
|
| 6594 | + | "micromark-extension-gfm-strikethrough": "^1.0.0", |
|
| 6595 | + | "micromark-extension-gfm-table": "^1.0.0", |
|
| 6596 | + | "micromark-extension-gfm-tagfilter": "^1.0.0", |
|
| 6597 | + | "micromark-extension-gfm-task-list-item": "^1.0.0", |
|
| 6598 | + | "micromark-util-combine-extensions": "^1.0.0", |
|
| 6599 | + | "micromark-util-types": "^1.0.0" |
|
| 6600 | + | }, |
|
| 6601 | + | "funding": { |
|
| 6602 | + | "type": "opencollective", |
|
| 6603 | + | "url": "https://opencollective.com/unified" |
|
| 6604 | + | } |
|
| 6605 | + | }, |
|
| 6606 | + | "node_modules/micromark-extension-gfm-autolink-literal": { |
|
| 6607 | + | "version": "1.0.3", |
|
| 6608 | + | "resolved": "https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-1.0.3.tgz", |
|
| 6609 | + | "integrity": "sha512-i3dmvU0htawfWED8aHMMAzAVp/F0Z+0bPh3YrbTPPL1v4YAlCZpy5rBO5p0LPYiZo0zFVkoYh7vDU7yQSiCMjg==", |
|
| 6610 | + | "dependencies": { |
|
| 6611 | + | "micromark-util-character": "^1.0.0", |
|
| 6612 | + | "micromark-util-sanitize-uri": "^1.0.0", |
|
| 6613 | + | "micromark-util-symbol": "^1.0.0", |
|
| 6614 | + | "micromark-util-types": "^1.0.0", |
|
| 6615 | + | "uvu": "^0.5.0" |
|
| 6616 | + | }, |
|
| 6617 | + | "funding": { |
|
| 6618 | + | "type": "opencollective", |
|
| 6619 | + | "url": "https://opencollective.com/unified" |
|
| 6620 | + | } |
|
| 6621 | + | }, |
|
| 6622 | + | "node_modules/micromark-extension-gfm-footnote": { |
|
| 6623 | + | "version": "1.0.4", |
|
| 6624 | + | "resolved": "https://registry.npmjs.org/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-1.0.4.tgz", |
|
| 6625 | + | "integrity": "sha512-E/fmPmDqLiMUP8mLJ8NbJWJ4bTw6tS+FEQS8CcuDtZpILuOb2kjLqPEeAePF1djXROHXChM/wPJw0iS4kHCcIg==", |
|
| 6626 | + | "dependencies": { |
|
| 6627 | + | "micromark-core-commonmark": "^1.0.0", |
|
| 6628 | + | "micromark-factory-space": "^1.0.0", |
|
| 6629 | + | "micromark-util-character": "^1.0.0", |
|
| 6630 | + | "micromark-util-normalize-identifier": "^1.0.0", |
|
| 6631 | + | "micromark-util-sanitize-uri": "^1.0.0", |
|
| 6632 | + | "micromark-util-symbol": "^1.0.0", |
|
| 6633 | + | "micromark-util-types": "^1.0.0", |
|
| 6634 | + | "uvu": "^0.5.0" |
|
| 6635 | + | }, |
|
| 6636 | + | "funding": { |
|
| 6637 | + | "type": "opencollective", |
|
| 6638 | + | "url": "https://opencollective.com/unified" |
|
| 6639 | + | } |
|
| 6640 | + | }, |
|
| 6641 | + | "node_modules/micromark-extension-gfm-strikethrough": { |
|
| 6642 | + | "version": "1.0.4", |
|
| 6643 | + | "resolved": "https://registry.npmjs.org/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-1.0.4.tgz", |
|
| 6644 | + | "integrity": "sha512-/vjHU/lalmjZCT5xt7CcHVJGq8sYRm80z24qAKXzaHzem/xsDYb2yLL+NNVbYvmpLx3O7SYPuGL5pzusL9CLIQ==", |
|
| 6645 | + | "dependencies": { |
|
| 6646 | + | "micromark-util-chunked": "^1.0.0", |
|
| 6647 | + | "micromark-util-classify-character": "^1.0.0", |
|
| 6648 | + | "micromark-util-resolve-all": "^1.0.0", |
|
| 6649 | + | "micromark-util-symbol": "^1.0.0", |
|
| 6650 | + | "micromark-util-types": "^1.0.0", |
|
| 6651 | + | "uvu": "^0.5.0" |
|
| 6652 | + | }, |
|
| 6653 | + | "funding": { |
|
| 6654 | + | "type": "opencollective", |
|
| 6655 | + | "url": "https://opencollective.com/unified" |
|
| 6656 | + | } |
|
| 6657 | + | }, |
|
| 6658 | + | "node_modules/micromark-extension-gfm-table": { |
|
| 6659 | + | "version": "1.0.5", |
|
| 6660 | + | "resolved": "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-1.0.5.tgz", |
|
| 6661 | + | "integrity": "sha512-xAZ8J1X9W9K3JTJTUL7G6wSKhp2ZYHrFk5qJgY/4B33scJzE2kpfRL6oiw/veJTbt7jiM/1rngLlOKPWr1G+vg==", |
|
| 6662 | + | "dependencies": { |
|
| 6663 | + | "micromark-factory-space": "^1.0.0", |
|
| 6664 | + | "micromark-util-character": "^1.0.0", |
|
| 6665 | + | "micromark-util-symbol": "^1.0.0", |
|
| 6666 | + | "micromark-util-types": "^1.0.0", |
|
| 6667 | + | "uvu": "^0.5.0" |
|
| 6668 | + | }, |
|
| 6669 | + | "funding": { |
|
| 6670 | + | "type": "opencollective", |
|
| 6671 | + | "url": "https://opencollective.com/unified" |
|
| 6672 | + | } |
|
| 6673 | + | }, |
|
| 6674 | + | "node_modules/micromark-extension-gfm-tagfilter": { |
|
| 6675 | + | "version": "1.0.1", |
|
| 6676 | + | "resolved": "https://registry.npmjs.org/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-1.0.1.tgz", |
|
| 6677 | + | "integrity": "sha512-Ty6psLAcAjboRa/UKUbbUcwjVAv5plxmpUTy2XC/3nJFL37eHej8jrHrRzkqcpipJliuBH30DTs7+3wqNcQUVA==", |
|
| 6678 | + | "dependencies": { |
|
| 6679 | + | "micromark-util-types": "^1.0.0" |
|
| 6680 | + | }, |
|
| 6681 | + | "funding": { |
|
| 6682 | + | "type": "opencollective", |
|
| 6683 | + | "url": "https://opencollective.com/unified" |
|
| 6684 | + | } |
|
| 6685 | + | }, |
|
| 6686 | + | "node_modules/micromark-extension-gfm-task-list-item": { |
|
| 6687 | + | "version": "1.0.3", |
|
| 6688 | + | "resolved": "https://registry.npmjs.org/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-1.0.3.tgz", |
|
| 6689 | + | "integrity": "sha512-PpysK2S1Q/5VXi72IIapbi/jliaiOFzv7THH4amwXeYXLq3l1uo8/2Be0Ac1rEwK20MQEsGH2ltAZLNY2KI/0Q==", |
|
| 6690 | + | "dependencies": { |
|
| 6691 | + | "micromark-factory-space": "^1.0.0", |
|
| 6692 | + | "micromark-util-character": "^1.0.0", |
|
| 6693 | + | "micromark-util-symbol": "^1.0.0", |
|
| 6694 | + | "micromark-util-types": "^1.0.0", |
|
| 6695 | + | "uvu": "^0.5.0" |
|
| 6696 | + | }, |
|
| 6697 | + | "funding": { |
|
| 6698 | + | "type": "opencollective", |
|
| 6699 | + | "url": "https://opencollective.com/unified" |
|
| 6700 | + | } |
|
| 6701 | + | }, |
|
| 6702 | + | "node_modules/micromark-extension-mdx-expression": { |
|
| 6703 | + | "version": "1.0.4", |
|
| 6704 | + | "resolved": "https://registry.npmjs.org/micromark-extension-mdx-expression/-/micromark-extension-mdx-expression-1.0.4.tgz", |
|
| 6705 | + | "integrity": "sha512-TCgLxqW6ReQ3AJgtj1P0P+8ZThBTloLbeb7jNaqr6mCOLDpxUiBFE/9STgooMZttEwOQu5iEcCCa3ZSDhY9FGw==", |
|
| 6706 | + | "dev": true, |
|
| 6707 | + | "funding": [ |
|
| 6708 | + | { |
|
| 6709 | + | "type": "GitHub Sponsors", |
|
| 6710 | + | "url": "https://github.com/sponsors/unifiedjs" |
|
| 6711 | + | }, |
|
| 6712 | + | { |
|
| 6713 | + | "type": "OpenCollective", |
|
| 6714 | + | "url": "https://opencollective.com/unified" |
|
| 6715 | + | } |
|
| 6716 | + | ], |
|
| 6717 | + | "dependencies": { |
|
| 6718 | + | "micromark-factory-mdx-expression": "^1.0.0", |
|
| 6719 | + | "micromark-factory-space": "^1.0.0", |
|
| 6720 | + | "micromark-util-character": "^1.0.0", |
|
| 6721 | + | "micromark-util-events-to-acorn": "^1.0.0", |
|
| 6722 | + | "micromark-util-symbol": "^1.0.0", |
|
| 6723 | + | "micromark-util-types": "^1.0.0", |
|
| 6724 | + | "uvu": "^0.5.0" |
|
| 6725 | + | } |
|
| 6726 | + | }, |
|
| 6727 | + | "node_modules/micromark-extension-mdx-jsx": { |
|
| 6728 | + | "version": "1.0.3", |
|
| 6729 | + | "resolved": "https://registry.npmjs.org/micromark-extension-mdx-jsx/-/micromark-extension-mdx-jsx-1.0.3.tgz", |
|
| 6730 | + | "integrity": "sha512-VfA369RdqUISF0qGgv2FfV7gGjHDfn9+Qfiv5hEwpyr1xscRj/CiVRkU7rywGFCO7JwJ5L0e7CJz60lY52+qOA==", |
|
| 6731 | + | "dev": true, |
|
| 6732 | + | "dependencies": { |
|
| 6733 | + | "@types/acorn": "^4.0.0", |
|
| 6734 | + | "estree-util-is-identifier-name": "^2.0.0", |
|
| 6735 | + | "micromark-factory-mdx-expression": "^1.0.0", |
|
| 6736 | + | "micromark-factory-space": "^1.0.0", |
|
| 6737 | + | "micromark-util-character": "^1.0.0", |
|
| 6738 | + | "micromark-util-symbol": "^1.0.0", |
|
| 6739 | + | "micromark-util-types": "^1.0.0", |
|
| 6740 | + | "uvu": "^0.5.0", |
|
| 6741 | + | "vfile-message": "^3.0.0" |
|
| 6742 | + | }, |
|
| 6743 | + | "funding": { |
|
| 6744 | + | "type": "opencollective", |
|
| 6745 | + | "url": "https://opencollective.com/unified" |
|
| 6746 | + | } |
|
| 6747 | + | }, |
|
| 6748 | + | "node_modules/micromark-extension-mdx-md": { |
|
| 6749 | + | "version": "1.0.0", |
|
| 6750 | + | "resolved": "https://registry.npmjs.org/micromark-extension-mdx-md/-/micromark-extension-mdx-md-1.0.0.tgz", |
|
| 6751 | + | "integrity": "sha512-xaRAMoSkKdqZXDAoSgp20Azm0aRQKGOl0RrS81yGu8Hr/JhMsBmfs4wR7m9kgVUIO36cMUQjNyiyDKPrsv8gOw==", |
|
| 6752 | + | "dev": true, |
|
| 6753 | + | "dependencies": { |
|
| 6754 | + | "micromark-util-types": "^1.0.0" |
|
| 6755 | + | }, |
|
| 6756 | + | "funding": { |
|
| 6757 | + | "type": "opencollective", |
|
| 6758 | + | "url": "https://opencollective.com/unified" |
|
| 6759 | + | } |
|
| 6760 | + | }, |
|
| 6761 | + | "node_modules/micromark-extension-mdxjs": { |
|
| 6762 | + | "version": "1.0.0", |
|
| 6763 | + | "resolved": "https://registry.npmjs.org/micromark-extension-mdxjs/-/micromark-extension-mdxjs-1.0.0.tgz", |
|
| 6764 | + | "integrity": "sha512-TZZRZgeHvtgm+IhtgC2+uDMR7h8eTKF0QUX9YsgoL9+bADBpBY6SiLvWqnBlLbCEevITmTqmEuY3FoxMKVs1rQ==", |
|
| 6765 | + | "dev": true, |
|
| 6766 | + | "dependencies": { |
|
| 6767 | + | "acorn": "^8.0.0", |
|
| 6768 | + | "acorn-jsx": "^5.0.0", |
|
| 6769 | + | "micromark-extension-mdx-expression": "^1.0.0", |
|
| 6770 | + | "micromark-extension-mdx-jsx": "^1.0.0", |
|
| 6771 | + | "micromark-extension-mdx-md": "^1.0.0", |
|
| 6772 | + | "micromark-extension-mdxjs-esm": "^1.0.0", |
|
| 6773 | + | "micromark-util-combine-extensions": "^1.0.0", |
|
| 6774 | + | "micromark-util-types": "^1.0.0" |
|
| 6775 | + | }, |
|
| 6776 | + | "funding": { |
|
| 6777 | + | "type": "opencollective", |
|
| 6778 | + | "url": "https://opencollective.com/unified" |
|
| 6779 | + | } |
|
| 6780 | + | }, |
|
| 6781 | + | "node_modules/micromark-extension-mdxjs-esm": { |
|
| 6782 | + | "version": "1.0.3", |
|
| 6783 | + | "resolved": "https://registry.npmjs.org/micromark-extension-mdxjs-esm/-/micromark-extension-mdxjs-esm-1.0.3.tgz", |
|
| 6784 | + | "integrity": "sha512-2N13ol4KMoxb85rdDwTAC6uzs8lMX0zeqpcyx7FhS7PxXomOnLactu8WI8iBNXW8AVyea3KIJd/1CKnUmwrK9A==", |
|
| 6785 | + | "dev": true, |
|
| 6786 | + | "dependencies": { |
|
| 6787 | + | "micromark-core-commonmark": "^1.0.0", |
|
| 6788 | + | "micromark-util-character": "^1.0.0", |
|
| 6789 | + | "micromark-util-events-to-acorn": "^1.0.0", |
|
| 6790 | + | "micromark-util-symbol": "^1.0.0", |
|
| 6791 | + | "micromark-util-types": "^1.0.0", |
|
| 6792 | + | "unist-util-position-from-estree": "^1.1.0", |
|
| 6793 | + | "uvu": "^0.5.0", |
|
| 6794 | + | "vfile-message": "^3.0.0" |
|
| 6795 | + | }, |
|
| 6796 | + | "funding": { |
|
| 6797 | + | "type": "opencollective", |
|
| 6798 | + | "url": "https://opencollective.com/unified" |
|
| 6799 | + | } |
|
| 6800 | + | }, |
|
| 6801 | + | "node_modules/micromark-factory-destination": { |
|
| 6802 | + | "version": "1.0.0", |
|
| 6803 | + | "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-1.0.0.tgz", |
|
| 6804 | + | "integrity": "sha512-eUBA7Rs1/xtTVun9TmV3gjfPz2wEwgK5R5xcbIM5ZYAtvGF6JkyaDsj0agx8urXnO31tEO6Ug83iVH3tdedLnw==", |
|
| 6805 | + | "funding": [ |
|
| 6806 | + | { |
|
| 6807 | + | "type": "GitHub Sponsors", |
|
| 6808 | + | "url": "https://github.com/sponsors/unifiedjs" |
|
| 6809 | + | }, |
|
| 6810 | + | { |
|
| 6811 | + | "type": "OpenCollective", |
|
| 6812 | + | "url": "https://opencollective.com/unified" |
|
| 6813 | + | } |
|
| 6814 | + | ], |
|
| 6815 | + | "dependencies": { |
|
| 6816 | + | "micromark-util-character": "^1.0.0", |
|
| 6817 | + | "micromark-util-symbol": "^1.0.0", |
|
| 6818 | + | "micromark-util-types": "^1.0.0" |
|
| 6819 | + | } |
|
| 6820 | + | }, |
|
| 6821 | + | "node_modules/micromark-factory-label": { |
|
| 6822 | + | "version": "1.0.2", |
|
| 6823 | + | "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-1.0.2.tgz", |
|
| 6824 | + | "integrity": "sha512-CTIwxlOnU7dEshXDQ+dsr2n+yxpP0+fn271pu0bwDIS8uqfFcumXpj5mLn3hSC8iw2MUr6Gx8EcKng1dD7i6hg==", |
|
| 6825 | + | "funding": [ |
|
| 6826 | + | { |
|
| 6827 | + | "type": "GitHub Sponsors", |
|
| 6828 | + | "url": "https://github.com/sponsors/unifiedjs" |
|
| 6829 | + | }, |
|
| 6830 | + | { |
|
| 6831 | + | "type": "OpenCollective", |
|
| 6832 | + | "url": "https://opencollective.com/unified" |
|
| 6833 | + | } |
|
| 6834 | + | ], |
|
| 6835 | + | "dependencies": { |
|
| 6836 | + | "micromark-util-character": "^1.0.0", |
|
| 6837 | + | "micromark-util-symbol": "^1.0.0", |
|
| 6838 | + | "micromark-util-types": "^1.0.0", |
|
| 6839 | + | "uvu": "^0.5.0" |
|
| 6840 | + | } |
|
| 6841 | + | }, |
|
| 6842 | + | "node_modules/micromark-factory-mdx-expression": { |
|
| 6843 | + | "version": "1.0.7", |
|
| 6844 | + | "resolved": "https://registry.npmjs.org/micromark-factory-mdx-expression/-/micromark-factory-mdx-expression-1.0.7.tgz", |
|
| 6845 | + | "integrity": "sha512-QAdFbkQagTZ/eKb8zDGqmjvgevgJH3+aQpvvKrXWxNJp3o8/l2cAbbrBd0E04r0Gx6nssPpqWIjnbHFvZu5qsQ==", |
|
| 6846 | + | "dev": true, |
|
| 6847 | + | "funding": [ |
|
| 6848 | + | { |
|
| 6849 | + | "type": "GitHub Sponsors", |
|
| 6850 | + | "url": "https://github.com/sponsors/unifiedjs" |
|
| 6851 | + | }, |
|
| 6852 | + | { |
|
| 6853 | + | "type": "OpenCollective", |
|
| 6854 | + | "url": "https://opencollective.com/unified" |
|
| 6855 | + | } |
|
| 6856 | + | ], |
|
| 6857 | + | "dependencies": { |
|
| 6858 | + | "micromark-factory-space": "^1.0.0", |
|
| 6859 | + | "micromark-util-character": "^1.0.0", |
|
| 6860 | + | "micromark-util-events-to-acorn": "^1.0.0", |
|
| 6861 | + | "micromark-util-symbol": "^1.0.0", |
|
| 6862 | + | "micromark-util-types": "^1.0.0", |
|
| 6863 | + | "unist-util-position-from-estree": "^1.0.0", |
|
| 6864 | + | "uvu": "^0.5.0", |
|
| 6865 | + | "vfile-message": "^3.0.0" |
|
| 6866 | + | } |
|
| 6867 | + | }, |
|
| 6868 | + | "node_modules/micromark-factory-space": { |
|
| 6869 | + | "version": "1.0.0", |
|
| 6870 | + | "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-1.0.0.tgz", |
|
| 6871 | + | "integrity": "sha512-qUmqs4kj9a5yBnk3JMLyjtWYN6Mzfcx8uJfi5XAveBniDevmZasdGBba5b4QsvRcAkmvGo5ACmSUmyGiKTLZew==", |
|
| 6872 | + | "funding": [ |
|
| 6873 | + | { |
|
| 6874 | + | "type": "GitHub Sponsors", |
|
| 6875 | + | "url": "https://github.com/sponsors/unifiedjs" |
|
| 6876 | + | }, |
|
| 6877 | + | { |
|
| 6878 | + | "type": "OpenCollective", |
|
| 6879 | + | "url": "https://opencollective.com/unified" |
|
| 6880 | + | } |
|
| 6881 | + | ], |
|
| 6882 | + | "dependencies": { |
|
| 6883 | + | "micromark-util-character": "^1.0.0", |
|
| 6884 | + | "micromark-util-types": "^1.0.0" |
|
| 6885 | + | } |
|
| 6886 | + | }, |
|
| 6887 | + | "node_modules/micromark-factory-title": { |
|
| 6888 | + | "version": "1.0.2", |
|
| 6889 | + | "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-1.0.2.tgz", |
|
| 6890 | + | "integrity": "sha512-zily+Nr4yFqgMGRKLpTVsNl5L4PMu485fGFDOQJQBl2NFpjGte1e86zC0da93wf97jrc4+2G2GQudFMHn3IX+A==", |
|
| 6891 | + | "funding": [ |
|
| 6892 | + | { |
|
| 6893 | + | "type": "GitHub Sponsors", |
|
| 6894 | + | "url": "https://github.com/sponsors/unifiedjs" |
|
| 6895 | + | }, |
|
| 6896 | + | { |
|
| 6897 | + | "type": "OpenCollective", |
|
| 6898 | + | "url": "https://opencollective.com/unified" |
|
| 6899 | + | } |
|
| 6900 | + | ], |
|
| 6901 | + | "dependencies": { |
|
| 6902 | + | "micromark-factory-space": "^1.0.0", |
|
| 6903 | + | "micromark-util-character": "^1.0.0", |
|
| 6904 | + | "micromark-util-symbol": "^1.0.0", |
|
| 6905 | + | "micromark-util-types": "^1.0.0", |
|
| 6906 | + | "uvu": "^0.5.0" |
|
| 6907 | + | } |
|
| 6908 | + | }, |
|
| 6909 | + | "node_modules/micromark-factory-whitespace": { |
|
| 6910 | + | "version": "1.0.0", |
|
| 6911 | + | "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-1.0.0.tgz", |
|
| 6912 | + | "integrity": "sha512-Qx7uEyahU1lt1RnsECBiuEbfr9INjQTGa6Err+gF3g0Tx4YEviPbqqGKNv/NrBaE7dVHdn1bVZKM/n5I/Bak7A==", |
|
| 6913 | + | "funding": [ |
|
| 6914 | + | { |
|
| 6915 | + | "type": "GitHub Sponsors", |
|
| 6916 | + | "url": "https://github.com/sponsors/unifiedjs" |
|
| 6917 | + | }, |
|
| 6918 | + | { |
|
| 6919 | + | "type": "OpenCollective", |
|
| 6920 | + | "url": "https://opencollective.com/unified" |
|
| 6921 | + | } |
|
| 6922 | + | ], |
|
| 6923 | + | "dependencies": { |
|
| 6924 | + | "micromark-factory-space": "^1.0.0", |
|
| 6925 | + | "micromark-util-character": "^1.0.0", |
|
| 6926 | + | "micromark-util-symbol": "^1.0.0", |
|
| 6927 | + | "micromark-util-types": "^1.0.0" |
|
| 6928 | + | } |
|
| 6929 | + | }, |
|
| 6930 | + | "node_modules/micromark-util-character": { |
|
| 6931 | + | "version": "1.1.0", |
|
| 6932 | + | "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-1.1.0.tgz", |
|
| 6933 | + | "integrity": "sha512-agJ5B3unGNJ9rJvADMJ5ZiYjBRyDpzKAOk01Kpi1TKhlT1APx3XZk6eN7RtSz1erbWHC2L8T3xLZ81wdtGRZzg==", |
|
| 6934 | + | "funding": [ |
|
| 6935 | + | { |
|
| 6936 | + | "type": "GitHub Sponsors", |
|
| 6937 | + | "url": "https://github.com/sponsors/unifiedjs" |
|
| 6938 | + | }, |
|
| 6939 | + | { |
|
| 6940 | + | "type": "OpenCollective", |
|
| 6941 | + | "url": "https://opencollective.com/unified" |
|
| 6942 | + | } |
|
| 6943 | + | ], |
|
| 6944 | + | "dependencies": { |
|
| 6945 | + | "micromark-util-symbol": "^1.0.0", |
|
| 6946 | + | "micromark-util-types": "^1.0.0" |
|
| 6947 | + | } |
|
| 6948 | + | }, |
|
| 6949 | + | "node_modules/micromark-util-chunked": { |
|
| 6950 | + | "version": "1.0.0", |
|
| 6951 | + | "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-1.0.0.tgz", |
|
| 6952 | + | "integrity": "sha512-5e8xTis5tEZKgesfbQMKRCyzvffRRUX+lK/y+DvsMFdabAicPkkZV6gO+FEWi9RfuKKoxxPwNL+dFF0SMImc1g==", |
|
| 6953 | + | "funding": [ |
|
| 6954 | + | { |
|
| 6955 | + | "type": "GitHub Sponsors", |
|
| 6956 | + | "url": "https://github.com/sponsors/unifiedjs" |
|
| 6957 | + | }, |
|
| 6958 | + | { |
|
| 6959 | + | "type": "OpenCollective", |
|
| 6960 | + | "url": "https://opencollective.com/unified" |
|
| 6961 | + | } |
|
| 6962 | + | ], |
|
| 6963 | + | "dependencies": { |
|
| 6964 | + | "micromark-util-symbol": "^1.0.0" |
|
| 6965 | + | } |
|
| 6966 | + | }, |
|
| 6967 | + | "node_modules/micromark-util-classify-character": { |
|
| 6968 | + | "version": "1.0.0", |
|
| 6969 | + | "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-1.0.0.tgz", |
|
| 6970 | + | "integrity": "sha512-F8oW2KKrQRb3vS5ud5HIqBVkCqQi224Nm55o5wYLzY/9PwHGXC01tr3d7+TqHHz6zrKQ72Okwtvm/xQm6OVNZA==", |
|
| 6971 | + | "funding": [ |
|
| 6972 | + | { |
|
| 6973 | + | "type": "GitHub Sponsors", |
|
| 6974 | + | "url": "https://github.com/sponsors/unifiedjs" |
|
| 6975 | + | }, |
|
| 6976 | + | { |
|
| 6977 | + | "type": "OpenCollective", |
|
| 6978 | + | "url": "https://opencollective.com/unified" |
|
| 6979 | + | } |
|
| 6980 | + | ], |
|
| 6981 | + | "dependencies": { |
|
| 6982 | + | "micromark-util-character": "^1.0.0", |
|
| 6983 | + | "micromark-util-symbol": "^1.0.0", |
|
| 6984 | + | "micromark-util-types": "^1.0.0" |
|
| 6985 | + | } |
|
| 6986 | + | }, |
|
| 6987 | + | "node_modules/micromark-util-combine-extensions": { |
|
| 6988 | + | "version": "1.0.0", |
|
| 6989 | + | "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-1.0.0.tgz", |
|
| 6990 | + | "integrity": "sha512-J8H058vFBdo/6+AsjHp2NF7AJ02SZtWaVUjsayNFeAiydTxUwViQPxN0Hf8dp4FmCQi0UUFovFsEyRSUmFH3MA==", |
|
| 6991 | + | "funding": [ |
|
| 6992 | + | { |
|
| 6993 | + | "type": "GitHub Sponsors", |
|
| 6994 | + | "url": "https://github.com/sponsors/unifiedjs" |
|
| 6995 | + | }, |
|
| 6996 | + | { |
|
| 6997 | + | "type": "OpenCollective", |
|
| 6998 | + | "url": "https://opencollective.com/unified" |
|
| 6999 | + | } |
|
| 7000 | + | ], |
|
| 7001 | + | "dependencies": { |
|
| 7002 | + | "micromark-util-chunked": "^1.0.0", |
|
| 7003 | + | "micromark-util-types": "^1.0.0" |
|
| 7004 | + | } |
|
| 7005 | + | }, |
|
| 7006 | + | "node_modules/micromark-util-decode-numeric-character-reference": { |
|
| 7007 | + | "version": "1.0.0", |
|
| 7008 | + | "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-1.0.0.tgz", |
|
| 7009 | + | "integrity": "sha512-OzO9AI5VUtrTD7KSdagf4MWgHMtET17Ua1fIpXTpuhclCqD8egFWo85GxSGvxgkGS74bEahvtM0WP0HjvV0e4w==", |
|
| 7010 | + | "funding": [ |
|
| 7011 | + | { |
|
| 7012 | + | "type": "GitHub Sponsors", |
|
| 7013 | + | "url": "https://github.com/sponsors/unifiedjs" |
|
| 7014 | + | }, |
|
| 7015 | + | { |
|
| 7016 | + | "type": "OpenCollective", |
|
| 7017 | + | "url": "https://opencollective.com/unified" |
|
| 7018 | + | } |
|
| 7019 | + | ], |
|
| 7020 | + | "dependencies": { |
|
| 7021 | + | "micromark-util-symbol": "^1.0.0" |
|
| 7022 | + | } |
|
| 7023 | + | }, |
|
| 7024 | + | "node_modules/micromark-util-decode-string": { |
|
| 7025 | + | "version": "1.0.2", |
|
| 7026 | + | "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-1.0.2.tgz", |
|
| 7027 | + | "integrity": "sha512-DLT5Ho02qr6QWVNYbRZ3RYOSSWWFuH3tJexd3dgN1odEuPNxCngTCXJum7+ViRAd9BbdxCvMToPOD/IvVhzG6Q==", |
|
| 7028 | + | "funding": [ |
|
| 7029 | + | { |
|
| 7030 | + | "type": "GitHub Sponsors", |
|
| 7031 | + | "url": "https://github.com/sponsors/unifiedjs" |
|
| 7032 | + | }, |
|
| 7033 | + | { |
|
| 7034 | + | "type": "OpenCollective", |
|
| 7035 | + | "url": "https://opencollective.com/unified" |
|
| 7036 | + | } |
|
| 7037 | + | ], |
|
| 7038 | + | "dependencies": { |
|
| 7039 | + | "decode-named-character-reference": "^1.0.0", |
|
| 7040 | + | "micromark-util-character": "^1.0.0", |
|
| 7041 | + | "micromark-util-decode-numeric-character-reference": "^1.0.0", |
|
| 7042 | + | "micromark-util-symbol": "^1.0.0" |
|
| 7043 | + | } |
|
| 7044 | + | }, |
|
| 7045 | + | "node_modules/micromark-util-encode": { |
|
| 7046 | + | "version": "1.0.1", |
|
| 7047 | + | "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-1.0.1.tgz", |
|
| 7048 | + | "integrity": "sha512-U2s5YdnAYexjKDel31SVMPbfi+eF8y1U4pfiRW/Y8EFVCy/vgxk/2wWTxzcqE71LHtCuCzlBDRU2a5CQ5j+mQA==", |
|
| 7049 | + | "funding": [ |
|
| 7050 | + | { |
|
| 7051 | + | "type": "GitHub Sponsors", |
|
| 7052 | + | "url": "https://github.com/sponsors/unifiedjs" |
|
| 7053 | + | }, |
|
| 7054 | + | { |
|
| 7055 | + | "type": "OpenCollective", |
|
| 7056 | + | "url": "https://opencollective.com/unified" |
|
| 7057 | + | } |
|
| 7058 | + | ] |
|
| 7059 | + | }, |
|
| 7060 | + | "node_modules/micromark-util-events-to-acorn": { |
|
| 7061 | + | "version": "1.2.1", |
|
| 7062 | + | "resolved": "https://registry.npmjs.org/micromark-util-events-to-acorn/-/micromark-util-events-to-acorn-1.2.1.tgz", |
|
| 7063 | + | "integrity": "sha512-mkg3BaWlw6ZTkQORrKVBW4o9ICXPxLtGz51vml5mQpKFdo9vqIX68CAx5JhTOdjQyAHH7JFmm4rh8toSPQZUmg==", |
|
| 7064 | + | "dev": true, |
|
| 7065 | + | "funding": [ |
|
| 7066 | + | { |
|
| 7067 | + | "type": "GitHub Sponsors", |
|
| 7068 | + | "url": "https://github.com/sponsors/unifiedjs" |
|
| 7069 | + | }, |
|
| 7070 | + | { |
|
| 7071 | + | "type": "OpenCollective", |
|
| 7072 | + | "url": "https://opencollective.com/unified" |
|
| 7073 | + | } |
|
| 7074 | + | ], |
|
| 7075 | + | "dependencies": { |
|
| 7076 | + | "@types/acorn": "^4.0.0", |
|
| 7077 | + | "@types/estree": "^1.0.0", |
|
| 7078 | + | "estree-util-visit": "^1.0.0", |
|
| 7079 | + | "micromark-util-types": "^1.0.0", |
|
| 7080 | + | "uvu": "^0.5.0", |
|
| 7081 | + | "vfile-location": "^4.0.0", |
|
| 7082 | + | "vfile-message": "^3.0.0" |
|
| 7083 | + | } |
|
| 7084 | + | }, |
|
| 7085 | + | "node_modules/micromark-util-html-tag-name": { |
|
| 7086 | + | "version": "1.1.0", |
|
| 7087 | + | "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-1.1.0.tgz", |
|
| 7088 | + | "integrity": "sha512-BKlClMmYROy9UiV03SwNmckkjn8QHVaWkqoAqzivabvdGcwNGMMMH/5szAnywmsTBUzDsU57/mFi0sp4BQO6dA==", |
|
| 7089 | + | "funding": [ |
|
| 7090 | + | { |
|
| 7091 | + | "type": "GitHub Sponsors", |
|
| 7092 | + | "url": "https://github.com/sponsors/unifiedjs" |
|
| 7093 | + | }, |
|
| 7094 | + | { |
|
| 7095 | + | "type": "OpenCollective", |
|
| 7096 | + | "url": "https://opencollective.com/unified" |
|
| 7097 | + | } |
|
| 7098 | + | ] |
|
| 7099 | + | }, |
|
| 7100 | + | "node_modules/micromark-util-normalize-identifier": { |
|
| 7101 | + | "version": "1.0.0", |
|
| 7102 | + | "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-1.0.0.tgz", |
|
| 7103 | + | "integrity": "sha512-yg+zrL14bBTFrQ7n35CmByWUTFsgst5JhA4gJYoty4Dqzj4Z4Fr/DHekSS5aLfH9bdlfnSvKAWsAgJhIbogyBg==", |
|
| 7104 | + | "funding": [ |
|
| 7105 | + | { |
|
| 7106 | + | "type": "GitHub Sponsors", |
|
| 7107 | + | "url": "https://github.com/sponsors/unifiedjs" |
|
| 7108 | + | }, |
|
| 7109 | + | { |
|
| 7110 | + | "type": "OpenCollective", |
|
| 7111 | + | "url": "https://opencollective.com/unified" |
|
| 7112 | + | } |
|
| 7113 | + | ], |
|
| 7114 | + | "dependencies": { |
|
| 7115 | + | "micromark-util-symbol": "^1.0.0" |
|
| 7116 | + | } |
|
| 7117 | + | }, |
|
| 7118 | + | "node_modules/micromark-util-resolve-all": { |
|
| 7119 | + | "version": "1.0.0", |
|
| 7120 | + | "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-1.0.0.tgz", |
|
| 7121 | + | "integrity": "sha512-CB/AGk98u50k42kvgaMM94wzBqozSzDDaonKU7P7jwQIuH2RU0TeBqGYJz2WY1UdihhjweivStrJ2JdkdEmcfw==", |
|
| 7122 | + | "funding": [ |
|
| 7123 | + | { |
|
| 7124 | + | "type": "GitHub Sponsors", |
|
| 7125 | + | "url": "https://github.com/sponsors/unifiedjs" |
|
| 7126 | + | }, |
|
| 7127 | + | { |
|
| 7128 | + | "type": "OpenCollective", |
|
| 7129 | + | "url": "https://opencollective.com/unified" |
|
| 7130 | + | } |
|
| 7131 | + | ], |
|
| 7132 | + | "dependencies": { |
|
| 7133 | + | "micromark-util-types": "^1.0.0" |
|
| 7134 | + | } |
|
| 7135 | + | }, |
|
| 7136 | + | "node_modules/micromark-util-sanitize-uri": { |
|
| 7137 | + | "version": "1.1.0", |
|
| 7138 | + | "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-1.1.0.tgz", |
|
| 7139 | + | "integrity": "sha512-RoxtuSCX6sUNtxhbmsEFQfWzs8VN7cTctmBPvYivo98xb/kDEoTCtJQX5wyzIYEmk/lvNFTat4hL8oW0KndFpg==", |
|
| 7140 | + | "funding": [ |
|
| 7141 | + | { |
|
| 7142 | + | "type": "GitHub Sponsors", |
|
| 7143 | + | "url": "https://github.com/sponsors/unifiedjs" |
|
| 7144 | + | }, |
|
| 7145 | + | { |
|
| 7146 | + | "type": "OpenCollective", |
|
| 7147 | + | "url": "https://opencollective.com/unified" |
|
| 7148 | + | } |
|
| 7149 | + | ], |
|
| 7150 | + | "dependencies": { |
|
| 7151 | + | "micromark-util-character": "^1.0.0", |
|
| 7152 | + | "micromark-util-encode": "^1.0.0", |
|
| 7153 | + | "micromark-util-symbol": "^1.0.0" |
|
| 7154 | + | } |
|
| 7155 | + | }, |
|
| 7156 | + | "node_modules/micromark-util-subtokenize": { |
|
| 7157 | + | "version": "1.0.2", |
|
| 7158 | + | "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-1.0.2.tgz", |
|
| 7159 | + | "integrity": "sha512-d90uqCnXp/cy4G881Ub4psE57Sf8YD0pim9QdjCRNjfas2M1u6Lbt+XZK9gnHL2XFhnozZiEdCa9CNfXSfQ6xA==", |
|
| 7160 | + | "funding": [ |
|
| 7161 | + | { |
|
| 7162 | + | "type": "GitHub Sponsors", |
|
| 7163 | + | "url": "https://github.com/sponsors/unifiedjs" |
|
| 7164 | + | }, |
|
| 7165 | + | { |
|
| 7166 | + | "type": "OpenCollective", |
|
| 7167 | + | "url": "https://opencollective.com/unified" |
|
| 7168 | + | } |
|
| 7169 | + | ], |
|
| 7170 | + | "dependencies": { |
|
| 7171 | + | "micromark-util-chunked": "^1.0.0", |
|
| 7172 | + | "micromark-util-symbol": "^1.0.0", |
|
| 7173 | + | "micromark-util-types": "^1.0.0", |
|
| 7174 | + | "uvu": "^0.5.0" |
|
| 7175 | + | } |
|
| 7176 | + | }, |
|
| 7177 | + | "node_modules/micromark-util-symbol": { |
|
| 7178 | + | "version": "1.0.1", |
|
| 7179 | + | "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-1.0.1.tgz", |
|
| 7180 | + | "integrity": "sha512-oKDEMK2u5qqAptasDAwWDXq0tG9AssVwAx3E9bBF3t/shRIGsWIRG+cGafs2p/SnDSOecnt6hZPCE2o6lHfFmQ==", |
|
| 7181 | + | "funding": [ |
|
| 7182 | + | { |
|
| 7183 | + | "type": "GitHub Sponsors", |
|
| 7184 | + | "url": "https://github.com/sponsors/unifiedjs" |
|
| 7185 | + | }, |
|
| 7186 | + | { |
|
| 7187 | + | "type": "OpenCollective", |
|
| 7188 | + | "url": "https://opencollective.com/unified" |
|
| 7189 | + | } |
|
| 7190 | + | ] |
|
| 7191 | + | }, |
|
| 7192 | + | "node_modules/micromark-util-types": { |
|
| 7193 | + | "version": "1.0.2", |
|
| 7194 | + | "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-1.0.2.tgz", |
|
| 7195 | + | "integrity": "sha512-DCfg/T8fcrhrRKTPjRrw/5LLvdGV7BHySf/1LOZx7TzWZdYRjogNtyNq885z3nNallwr3QUKARjqvHqX1/7t+w==", |
|
| 7196 | + | "funding": [ |
|
| 7197 | + | { |
|
| 7198 | + | "type": "GitHub Sponsors", |
|
| 7199 | + | "url": "https://github.com/sponsors/unifiedjs" |
|
| 7200 | + | }, |
|
| 7201 | + | { |
|
| 7202 | + | "type": "OpenCollective", |
|
| 7203 | + | "url": "https://opencollective.com/unified" |
|
| 7204 | + | } |
|
| 7205 | + | ] |
|
| 7206 | + | }, |
|
| 7207 | + | "node_modules/micromatch": { |
|
| 7208 | + | "version": "4.0.5", |
|
| 7209 | + | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", |
|
| 7210 | + | "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", |
|
| 7211 | + | "dependencies": { |
|
| 7212 | + | "braces": "^3.0.2", |
|
| 7213 | + | "picomatch": "^2.3.1" |
|
| 7214 | + | }, |
|
| 7215 | + | "engines": { |
|
| 7216 | + | "node": ">=8.6" |
|
| 7217 | + | } |
|
| 7218 | + | }, |
|
| 7219 | + | "node_modules/mime": { |
|
| 7220 | + | "version": "3.0.0", |
|
| 7221 | + | "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", |
|
| 7222 | + | "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==", |
|
| 7223 | + | "bin": { |
|
| 7224 | + | "mime": "cli.js" |
|
| 7225 | + | }, |
|
| 7226 | + | "engines": { |
|
| 7227 | + | "node": ">=10.0.0" |
|
| 7228 | + | } |
|
| 7229 | + | }, |
|
| 7230 | + | "node_modules/mimic-fn": { |
|
| 7231 | + | "version": "4.0.0", |
|
| 7232 | + | "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", |
|
| 7233 | + | "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", |
|
| 7234 | + | "engines": { |
|
| 7235 | + | "node": ">=12" |
|
| 7236 | + | }, |
|
| 7237 | + | "funding": { |
|
| 7238 | + | "url": "https://github.com/sponsors/sindresorhus" |
|
| 7239 | + | } |
|
| 7240 | + | }, |
|
| 7241 | + | "node_modules/mimic-response": { |
|
| 7242 | + | "version": "3.1.0", |
|
| 7243 | + | "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", |
|
| 7244 | + | "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", |
|
| 7245 | + | "engines": { |
|
| 7246 | + | "node": ">=10" |
|
| 7247 | + | }, |
|
| 7248 | + | "funding": { |
|
| 7249 | + | "url": "https://github.com/sponsors/sindresorhus" |
|
| 7250 | + | } |
|
| 7251 | + | }, |
|
| 7252 | + | "node_modules/min-indent": { |
|
| 7253 | + | "version": "1.0.1", |
|
| 7254 | + | "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", |
|
| 7255 | + | "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", |
|
| 7256 | + | "dev": true, |
|
| 7257 | + | "engines": { |
|
| 7258 | + | "node": ">=4" |
|
| 7259 | + | } |
|
| 7260 | + | }, |
|
| 7261 | + | "node_modules/minimatch": { |
|
| 7262 | + | "version": "3.1.2", |
|
| 7263 | + | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", |
|
| 7264 | + | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", |
|
| 7265 | + | "dev": true, |
|
| 7266 | + | "dependencies": { |
|
| 7267 | + | "brace-expansion": "^1.1.7" |
|
| 7268 | + | }, |
|
| 7269 | + | "engines": { |
|
| 7270 | + | "node": "*" |
|
| 7271 | + | } |
|
| 7272 | + | }, |
|
| 7273 | + | "node_modules/minimist": { |
|
| 7274 | + | "version": "1.2.8", |
|
| 7275 | + | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", |
|
| 7276 | + | "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", |
|
| 7277 | + | "funding": { |
|
| 7278 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 7279 | + | } |
|
| 7280 | + | }, |
|
| 7281 | + | "node_modules/minimist-options": { |
|
| 7282 | + | "version": "4.1.0", |
|
| 7283 | + | "resolved": "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz", |
|
| 7284 | + | "integrity": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==", |
|
| 7285 | + | "dev": true, |
|
| 7286 | + | "dependencies": { |
|
| 7287 | + | "arrify": "^1.0.1", |
|
| 7288 | + | "is-plain-obj": "^1.1.0", |
|
| 7289 | + | "kind-of": "^6.0.3" |
|
| 7290 | + | }, |
|
| 7291 | + | "engines": { |
|
| 7292 | + | "node": ">= 6" |
|
| 7293 | + | } |
|
| 7294 | + | }, |
|
| 7295 | + | "node_modules/mkdirp-classic": { |
|
| 7296 | + | "version": "0.5.3", |
|
| 7297 | + | "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", |
|
| 7298 | + | "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==" |
|
| 7299 | + | }, |
|
| 7300 | + | "node_modules/mri": { |
|
| 7301 | + | "version": "1.2.0", |
|
| 7302 | + | "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz", |
|
| 7303 | + | "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==", |
|
| 7304 | + | "engines": { |
|
| 7305 | + | "node": ">=4" |
|
| 7306 | + | } |
|
| 7307 | + | }, |
|
| 7308 | + | "node_modules/ms": { |
|
| 7309 | + | "version": "2.1.2", |
|
| 7310 | + | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", |
|
| 7311 | + | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" |
|
| 7312 | + | }, |
|
| 7313 | + | "node_modules/nanoid": { |
|
| 7314 | + | "version": "3.3.4", |
|
| 7315 | + | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", |
|
| 7316 | + | "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==", |
|
| 7317 | + | "bin": { |
|
| 7318 | + | "nanoid": "bin/nanoid.cjs" |
|
| 7319 | + | }, |
|
| 7320 | + | "engines": { |
|
| 7321 | + | "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" |
|
| 7322 | + | } |
|
| 7323 | + | }, |
|
| 7324 | + | "node_modules/napi-build-utils": { |
|
| 7325 | + | "version": "1.0.2", |
|
| 7326 | + | "resolved": "https://registry.npmjs.org/napi-build-utils/-/napi-build-utils-1.0.2.tgz", |
|
| 7327 | + | "integrity": "sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==" |
|
| 7328 | + | }, |
|
| 7329 | + | "node_modules/natural-compare": { |
|
| 7330 | + | "version": "1.4.0", |
|
| 7331 | + | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", |
|
| 7332 | + | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", |
|
| 7333 | + | "dev": true |
|
| 7334 | + | }, |
|
| 7335 | + | "node_modules/natural-compare-lite": { |
|
| 7336 | + | "version": "1.4.0", |
|
| 7337 | + | "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", |
|
| 7338 | + | "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==", |
|
| 7339 | + | "dev": true |
|
| 7340 | + | }, |
|
| 7341 | + | "node_modules/nlcst-to-string": { |
|
| 7342 | + | "version": "3.1.1", |
|
| 7343 | + | "resolved": "https://registry.npmjs.org/nlcst-to-string/-/nlcst-to-string-3.1.1.tgz", |
|
| 7344 | + | "integrity": "sha512-63mVyqaqt0cmn2VcI2aH6kxe1rLAmSROqHMA0i4qqg1tidkfExgpb0FGMikMCn86mw5dFtBtEANfmSSK7TjNHw==", |
|
| 7345 | + | "dependencies": { |
|
| 7346 | + | "@types/nlcst": "^1.0.0" |
|
| 7347 | + | }, |
|
| 7348 | + | "funding": { |
|
| 7349 | + | "type": "opencollective", |
|
| 7350 | + | "url": "https://opencollective.com/unified" |
|
| 7351 | + | } |
|
| 7352 | + | }, |
|
| 7353 | + | "node_modules/node-abi": { |
|
| 7354 | + | "version": "3.33.0", |
|
| 7355 | + | "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.33.0.tgz", |
|
| 7356 | + | "integrity": "sha512-7GGVawqyHF4pfd0YFybhv/eM9JwTtPqx0mAanQ146O3FlSh3pA24zf9IRQTOsfTSqXTNzPSP5iagAJ94jjuVog==", |
|
| 7357 | + | "dependencies": { |
|
| 7358 | + | "semver": "^7.3.5" |
|
| 7359 | + | }, |
|
| 7360 | + | "engines": { |
|
| 7361 | + | "node": ">=10" |
|
| 7362 | + | } |
|
| 7363 | + | }, |
|
| 7364 | + | "node_modules/node-addon-api": { |
|
| 7365 | + | "version": "5.1.0", |
|
| 7366 | + | "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-5.1.0.tgz", |
|
| 7367 | + | "integrity": "sha512-eh0GgfEkpnoWDq+VY8OyvYhFEzBk6jIYbRKdIlyTiAXIVJ8PyBaKb0rp7oDtoddbdoHWhq8wwr+XZ81F1rpNdA==" |
|
| 7368 | + | }, |
|
| 7369 | + | "node_modules/node-releases": { |
|
| 7370 | + | "version": "2.0.10", |
|
| 7371 | + | "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.10.tgz", |
|
| 7372 | + | "integrity": "sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==" |
|
| 7373 | + | }, |
|
| 7374 | + | "node_modules/normalize-package-data": { |
|
| 7375 | + | "version": "3.0.3", |
|
| 7376 | + | "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", |
|
| 7377 | + | "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", |
|
| 7378 | + | "dev": true, |
|
| 7379 | + | "dependencies": { |
|
| 7380 | + | "hosted-git-info": "^4.0.1", |
|
| 7381 | + | "is-core-module": "^2.5.0", |
|
| 7382 | + | "semver": "^7.3.4", |
|
| 7383 | + | "validate-npm-package-license": "^3.0.1" |
|
| 7384 | + | }, |
|
| 7385 | + | "engines": { |
|
| 7386 | + | "node": ">=10" |
|
| 7387 | + | } |
|
| 7388 | + | }, |
|
| 7389 | + | "node_modules/normalize-path": { |
|
| 7390 | + | "version": "3.0.0", |
|
| 7391 | + | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", |
|
| 7392 | + | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", |
|
| 7393 | + | "dev": true, |
|
| 7394 | + | "engines": { |
|
| 7395 | + | "node": ">=0.10.0" |
|
| 7396 | + | } |
|
| 7397 | + | }, |
|
| 7398 | + | "node_modules/normalize-range": { |
|
| 7399 | + | "version": "0.1.2", |
|
| 7400 | + | "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", |
|
| 7401 | + | "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", |
|
| 7402 | + | "dev": true, |
|
| 7403 | + | "engines": { |
|
| 7404 | + | "node": ">=0.10.0" |
|
| 7405 | + | } |
|
| 7406 | + | }, |
|
| 7407 | + | "node_modules/npm-run-path": { |
|
| 7408 | + | "version": "5.1.0", |
|
| 7409 | + | "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", |
|
| 7410 | + | "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", |
|
| 7411 | + | "dependencies": { |
|
| 7412 | + | "path-key": "^4.0.0" |
|
| 7413 | + | }, |
|
| 7414 | + | "engines": { |
|
| 7415 | + | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" |
|
| 7416 | + | }, |
|
| 7417 | + | "funding": { |
|
| 7418 | + | "url": "https://github.com/sponsors/sindresorhus" |
|
| 7419 | + | } |
|
| 7420 | + | }, |
|
| 7421 | + | "node_modules/npm-run-path/node_modules/path-key": { |
|
| 7422 | + | "version": "4.0.0", |
|
| 7423 | + | "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", |
|
| 7424 | + | "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", |
|
| 7425 | + | "engines": { |
|
| 7426 | + | "node": ">=12" |
|
| 7427 | + | }, |
|
| 7428 | + | "funding": { |
|
| 7429 | + | "url": "https://github.com/sponsors/sindresorhus" |
|
| 7430 | + | } |
|
| 7431 | + | }, |
|
| 7432 | + | "node_modules/object-hash": { |
|
| 7433 | + | "version": "3.0.0", |
|
| 7434 | + | "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", |
|
| 7435 | + | "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", |
|
| 7436 | + | "dev": true, |
|
| 7437 | + | "engines": { |
|
| 7438 | + | "node": ">= 6" |
|
| 7439 | + | } |
|
| 7440 | + | }, |
|
| 7441 | + | "node_modules/object-inspect": { |
|
| 7442 | + | "version": "1.12.3", |
|
| 7443 | + | "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", |
|
| 7444 | + | "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", |
|
| 7445 | + | "dev": true, |
|
| 7446 | + | "funding": { |
|
| 7447 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 7448 | + | } |
|
| 7449 | + | }, |
|
| 7450 | + | "node_modules/object-is": { |
|
| 7451 | + | "version": "1.1.5", |
|
| 7452 | + | "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", |
|
| 7453 | + | "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", |
|
| 7454 | + | "dev": true, |
|
| 7455 | + | "dependencies": { |
|
| 7456 | + | "call-bind": "^1.0.2", |
|
| 7457 | + | "define-properties": "^1.1.3" |
|
| 7458 | + | }, |
|
| 7459 | + | "engines": { |
|
| 7460 | + | "node": ">= 0.4" |
|
| 7461 | + | }, |
|
| 7462 | + | "funding": { |
|
| 7463 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 7464 | + | } |
|
| 7465 | + | }, |
|
| 7466 | + | "node_modules/object-keys": { |
|
| 7467 | + | "version": "1.1.1", |
|
| 7468 | + | "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", |
|
| 7469 | + | "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", |
|
| 7470 | + | "dev": true, |
|
| 7471 | + | "engines": { |
|
| 7472 | + | "node": ">= 0.4" |
|
| 7473 | + | } |
|
| 7474 | + | }, |
|
| 7475 | + | "node_modules/object.assign": { |
|
| 7476 | + | "version": "4.1.4", |
|
| 7477 | + | "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", |
|
| 7478 | + | "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", |
|
| 7479 | + | "dev": true, |
|
| 7480 | + | "dependencies": { |
|
| 7481 | + | "call-bind": "^1.0.2", |
|
| 7482 | + | "define-properties": "^1.1.4", |
|
| 7483 | + | "has-symbols": "^1.0.3", |
|
| 7484 | + | "object-keys": "^1.1.1" |
|
| 7485 | + | }, |
|
| 7486 | + | "engines": { |
|
| 7487 | + | "node": ">= 0.4" |
|
| 7488 | + | }, |
|
| 7489 | + | "funding": { |
|
| 7490 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 7491 | + | } |
|
| 7492 | + | }, |
|
| 7493 | + | "node_modules/object.entries": { |
|
| 7494 | + | "version": "1.1.6", |
|
| 7495 | + | "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz", |
|
| 7496 | + | "integrity": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==", |
|
| 7497 | + | "dev": true, |
|
| 7498 | + | "dependencies": { |
|
| 7499 | + | "call-bind": "^1.0.2", |
|
| 7500 | + | "define-properties": "^1.1.4", |
|
| 7501 | + | "es-abstract": "^1.20.4" |
|
| 7502 | + | }, |
|
| 7503 | + | "engines": { |
|
| 7504 | + | "node": ">= 0.4" |
|
| 7505 | + | } |
|
| 7506 | + | }, |
|
| 7507 | + | "node_modules/object.fromentries": { |
|
| 7508 | + | "version": "2.0.6", |
|
| 7509 | + | "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz", |
|
| 7510 | + | "integrity": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==", |
|
| 7511 | + | "dev": true, |
|
| 7512 | + | "dependencies": { |
|
| 7513 | + | "call-bind": "^1.0.2", |
|
| 7514 | + | "define-properties": "^1.1.4", |
|
| 7515 | + | "es-abstract": "^1.20.4" |
|
| 7516 | + | }, |
|
| 7517 | + | "engines": { |
|
| 7518 | + | "node": ">= 0.4" |
|
| 7519 | + | }, |
|
| 7520 | + | "funding": { |
|
| 7521 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 7522 | + | } |
|
| 7523 | + | }, |
|
| 7524 | + | "node_modules/object.values": { |
|
| 7525 | + | "version": "1.1.6", |
|
| 7526 | + | "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz", |
|
| 7527 | + | "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==", |
|
| 7528 | + | "dev": true, |
|
| 7529 | + | "dependencies": { |
|
| 7530 | + | "call-bind": "^1.0.2", |
|
| 7531 | + | "define-properties": "^1.1.4", |
|
| 7532 | + | "es-abstract": "^1.20.4" |
|
| 7533 | + | }, |
|
| 7534 | + | "engines": { |
|
| 7535 | + | "node": ">= 0.4" |
|
| 7536 | + | }, |
|
| 7537 | + | "funding": { |
|
| 7538 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 7539 | + | } |
|
| 7540 | + | }, |
|
| 7541 | + | "node_modules/once": { |
|
| 7542 | + | "version": "1.4.0", |
|
| 7543 | + | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", |
|
| 7544 | + | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", |
|
| 7545 | + | "dependencies": { |
|
| 7546 | + | "wrappy": "1" |
|
| 7547 | + | } |
|
| 7548 | + | }, |
|
| 7549 | + | "node_modules/onetime": { |
|
| 7550 | + | "version": "6.0.0", |
|
| 7551 | + | "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", |
|
| 7552 | + | "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", |
|
| 7553 | + | "dependencies": { |
|
| 7554 | + | "mimic-fn": "^4.0.0" |
|
| 7555 | + | }, |
|
| 7556 | + | "engines": { |
|
| 7557 | + | "node": ">=12" |
|
| 7558 | + | }, |
|
| 7559 | + | "funding": { |
|
| 7560 | + | "url": "https://github.com/sponsors/sindresorhus" |
|
| 7561 | + | } |
|
| 7562 | + | }, |
|
| 7563 | + | "node_modules/open": { |
|
| 7564 | + | "version": "8.4.2", |
|
| 7565 | + | "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", |
|
| 7566 | + | "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", |
|
| 7567 | + | "dependencies": { |
|
| 7568 | + | "define-lazy-prop": "^2.0.0", |
|
| 7569 | + | "is-docker": "^2.1.1", |
|
| 7570 | + | "is-wsl": "^2.2.0" |
|
| 7571 | + | }, |
|
| 7572 | + | "engines": { |
|
| 7573 | + | "node": ">=12" |
|
| 7574 | + | }, |
|
| 7575 | + | "funding": { |
|
| 7576 | + | "url": "https://github.com/sponsors/sindresorhus" |
|
| 7577 | + | } |
|
| 7578 | + | }, |
|
| 7579 | + | "node_modules/open/node_modules/is-docker": { |
|
| 7580 | + | "version": "2.2.1", |
|
| 7581 | + | "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", |
|
| 7582 | + | "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", |
|
| 7583 | + | "bin": { |
|
| 7584 | + | "is-docker": "cli.js" |
|
| 7585 | + | }, |
|
| 7586 | + | "engines": { |
|
| 7587 | + | "node": ">=8" |
|
| 7588 | + | }, |
|
| 7589 | + | "funding": { |
|
| 7590 | + | "url": "https://github.com/sponsors/sindresorhus" |
|
| 7591 | + | } |
|
| 7592 | + | }, |
|
| 7593 | + | "node_modules/optionator": { |
|
| 7594 | + | "version": "0.9.1", |
|
| 7595 | + | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", |
|
| 7596 | + | "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", |
|
| 7597 | + | "dev": true, |
|
| 7598 | + | "dependencies": { |
|
| 7599 | + | "deep-is": "^0.1.3", |
|
| 7600 | + | "fast-levenshtein": "^2.0.6", |
|
| 7601 | + | "levn": "^0.4.1", |
|
| 7602 | + | "prelude-ls": "^1.2.1", |
|
| 7603 | + | "type-check": "^0.4.0", |
|
| 7604 | + | "word-wrap": "^1.2.3" |
|
| 7605 | + | }, |
|
| 7606 | + | "engines": { |
|
| 7607 | + | "node": ">= 0.8.0" |
|
| 7608 | + | } |
|
| 7609 | + | }, |
|
| 7610 | + | "node_modules/ora": { |
|
| 7611 | + | "version": "6.1.2", |
|
| 7612 | + | "resolved": "https://registry.npmjs.org/ora/-/ora-6.1.2.tgz", |
|
| 7613 | + | "integrity": "sha512-EJQ3NiP5Xo94wJXIzAyOtSb0QEIAUu7m8t6UZ9krbz0vAJqr92JpcK/lEXg91q6B9pEGqrykkd2EQplnifDSBw==", |
|
| 7614 | + | "dependencies": { |
|
| 7615 | + | "bl": "^5.0.0", |
|
| 7616 | + | "chalk": "^5.0.0", |
|
| 7617 | + | "cli-cursor": "^4.0.0", |
|
| 7618 | + | "cli-spinners": "^2.6.1", |
|
| 7619 | + | "is-interactive": "^2.0.0", |
|
| 7620 | + | "is-unicode-supported": "^1.1.0", |
|
| 7621 | + | "log-symbols": "^5.1.0", |
|
| 7622 | + | "strip-ansi": "^7.0.1", |
|
| 7623 | + | "wcwidth": "^1.0.1" |
|
| 7624 | + | }, |
|
| 7625 | + | "engines": { |
|
| 7626 | + | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" |
|
| 7627 | + | }, |
|
| 7628 | + | "funding": { |
|
| 7629 | + | "url": "https://github.com/sponsors/sindresorhus" |
|
| 7630 | + | } |
|
| 7631 | + | }, |
|
| 7632 | + | "node_modules/ora/node_modules/chalk": { |
|
| 7633 | + | "version": "5.2.0", |
|
| 7634 | + | "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.2.0.tgz", |
|
| 7635 | + | "integrity": "sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==", |
|
| 7636 | + | "engines": { |
|
| 7637 | + | "node": "^12.17.0 || ^14.13 || >=16.0.0" |
|
| 7638 | + | }, |
|
| 7639 | + | "funding": { |
|
| 7640 | + | "url": "https://github.com/chalk/chalk?sponsor=1" |
|
| 7641 | + | } |
|
| 7642 | + | }, |
|
| 7643 | + | "node_modules/p-limit": { |
|
| 7644 | + | "version": "3.1.0", |
|
| 7645 | + | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", |
|
| 7646 | + | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", |
|
| 7647 | + | "dependencies": { |
|
| 7648 | + | "yocto-queue": "^0.1.0" |
|
| 7649 | + | }, |
|
| 7650 | + | "engines": { |
|
| 7651 | + | "node": ">=10" |
|
| 7652 | + | }, |
|
| 7653 | + | "funding": { |
|
| 7654 | + | "url": "https://github.com/sponsors/sindresorhus" |
|
| 7655 | + | } |
|
| 7656 | + | }, |
|
| 7657 | + | "node_modules/p-locate": { |
|
| 7658 | + | "version": "5.0.0", |
|
| 7659 | + | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", |
|
| 7660 | + | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", |
|
| 7661 | + | "dependencies": { |
|
| 7662 | + | "p-limit": "^3.0.2" |
|
| 7663 | + | }, |
|
| 7664 | + | "engines": { |
|
| 7665 | + | "node": ">=10" |
|
| 7666 | + | }, |
|
| 7667 | + | "funding": { |
|
| 7668 | + | "url": "https://github.com/sponsors/sindresorhus" |
|
| 7669 | + | } |
|
| 7670 | + | }, |
|
| 7671 | + | "node_modules/p-try": { |
|
| 7672 | + | "version": "2.2.0", |
|
| 7673 | + | "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", |
|
| 7674 | + | "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", |
|
| 7675 | + | "engines": { |
|
| 7676 | + | "node": ">=6" |
|
| 7677 | + | } |
|
| 7678 | + | }, |
|
| 7679 | + | "node_modules/parent-module": { |
|
| 7680 | + | "version": "1.0.1", |
|
| 7681 | + | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", |
|
| 7682 | + | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", |
|
| 7683 | + | "dev": true, |
|
| 7684 | + | "dependencies": { |
|
| 7685 | + | "callsites": "^3.0.0" |
|
| 7686 | + | }, |
|
| 7687 | + | "engines": { |
|
| 7688 | + | "node": ">=6" |
|
| 7689 | + | } |
|
| 7690 | + | }, |
|
| 7691 | + | "node_modules/parse-entities": { |
|
| 7692 | + | "version": "4.0.1", |
|
| 7693 | + | "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-4.0.1.tgz", |
|
| 7694 | + | "integrity": "sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==", |
|
| 7695 | + | "dev": true, |
|
| 7696 | + | "dependencies": { |
|
| 7697 | + | "@types/unist": "^2.0.0", |
|
| 7698 | + | "character-entities": "^2.0.0", |
|
| 7699 | + | "character-entities-legacy": "^3.0.0", |
|
| 7700 | + | "character-reference-invalid": "^2.0.0", |
|
| 7701 | + | "decode-named-character-reference": "^1.0.0", |
|
| 7702 | + | "is-alphanumerical": "^2.0.0", |
|
| 7703 | + | "is-decimal": "^2.0.0", |
|
| 7704 | + | "is-hexadecimal": "^2.0.0" |
|
| 7705 | + | }, |
|
| 7706 | + | "funding": { |
|
| 7707 | + | "type": "github", |
|
| 7708 | + | "url": "https://github.com/sponsors/wooorm" |
|
| 7709 | + | } |
|
| 7710 | + | }, |
|
| 7711 | + | "node_modules/parse-json": { |
|
| 7712 | + | "version": "5.2.0", |
|
| 7713 | + | "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", |
|
| 7714 | + | "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", |
|
| 7715 | + | "dev": true, |
|
| 7716 | + | "dependencies": { |
|
| 7717 | + | "@babel/code-frame": "^7.0.0", |
|
| 7718 | + | "error-ex": "^1.3.1", |
|
| 7719 | + | "json-parse-even-better-errors": "^2.3.0", |
|
| 7720 | + | "lines-and-columns": "^1.1.6" |
|
| 7721 | + | }, |
|
| 7722 | + | "engines": { |
|
| 7723 | + | "node": ">=8" |
|
| 7724 | + | }, |
|
| 7725 | + | "funding": { |
|
| 7726 | + | "url": "https://github.com/sponsors/sindresorhus" |
|
| 7727 | + | } |
|
| 7728 | + | }, |
|
| 7729 | + | "node_modules/parse-latin": { |
|
| 7730 | + | "version": "5.0.1", |
|
| 7731 | + | "resolved": "https://registry.npmjs.org/parse-latin/-/parse-latin-5.0.1.tgz", |
|
| 7732 | + | "integrity": "sha512-b/K8ExXaWC9t34kKeDV8kGXBkXZ1HCSAZRYE7HR14eA1GlXX5L8iWhs8USJNhQU9q5ci413jCKF0gOyovvyRBg==", |
|
| 7733 | + | "dependencies": { |
|
| 7734 | + | "nlcst-to-string": "^3.0.0", |
|
| 7735 | + | "unist-util-modify-children": "^3.0.0", |
|
| 7736 | + | "unist-util-visit-children": "^2.0.0" |
|
| 7737 | + | }, |
|
| 7738 | + | "funding": { |
|
| 7739 | + | "type": "github", |
|
| 7740 | + | "url": "https://github.com/sponsors/wooorm" |
|
| 7741 | + | } |
|
| 7742 | + | }, |
|
| 7743 | + | "node_modules/parse5": { |
|
| 7744 | + | "version": "6.0.1", |
|
| 7745 | + | "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", |
|
| 7746 | + | "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==" |
|
| 7747 | + | }, |
|
| 7748 | + | "node_modules/path-exists": { |
|
| 7749 | + | "version": "4.0.0", |
|
| 7750 | + | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", |
|
| 7751 | + | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", |
|
| 7752 | + | "engines": { |
|
| 7753 | + | "node": ">=8" |
|
| 7754 | + | } |
|
| 7755 | + | }, |
|
| 7756 | + | "node_modules/path-is-absolute": { |
|
| 7757 | + | "version": "1.0.1", |
|
| 7758 | + | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", |
|
| 7759 | + | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", |
|
| 7760 | + | "dev": true, |
|
| 7761 | + | "engines": { |
|
| 7762 | + | "node": ">=0.10.0" |
|
| 7763 | + | } |
|
| 7764 | + | }, |
|
| 7765 | + | "node_modules/path-key": { |
|
| 7766 | + | "version": "3.1.1", |
|
| 7767 | + | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", |
|
| 7768 | + | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", |
|
| 7769 | + | "engines": { |
|
| 7770 | + | "node": ">=8" |
|
| 7771 | + | } |
|
| 7772 | + | }, |
|
| 7773 | + | "node_modules/path-parse": { |
|
| 7774 | + | "version": "1.0.7", |
|
| 7775 | + | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", |
|
| 7776 | + | "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" |
|
| 7777 | + | }, |
|
| 7778 | + | "node_modules/path-to-regexp": { |
|
| 7779 | + | "version": "6.2.1", |
|
| 7780 | + | "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.2.1.tgz", |
|
| 7781 | + | "integrity": "sha512-JLyh7xT1kizaEvcaXOQwOc2/Yhw6KZOvPf1S8401UyLk86CU79LN3vl7ztXGm/pZ+YjoyAJ4rxmHwbkBXJX+yw==" |
|
| 7782 | + | }, |
|
| 7783 | + | "node_modules/path-type": { |
|
| 7784 | + | "version": "4.0.0", |
|
| 7785 | + | "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", |
|
| 7786 | + | "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", |
|
| 7787 | + | "dev": true, |
|
| 7788 | + | "engines": { |
|
| 7789 | + | "node": ">=8" |
|
| 7790 | + | } |
|
| 7791 | + | }, |
|
| 7792 | + | "node_modules/periscopic": { |
|
| 7793 | + | "version": "3.1.0", |
|
| 7794 | + | "resolved": "https://registry.npmjs.org/periscopic/-/periscopic-3.1.0.tgz", |
|
| 7795 | + | "integrity": "sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==", |
|
| 7796 | + | "dev": true, |
|
| 7797 | + | "dependencies": { |
|
| 7798 | + | "@types/estree": "^1.0.0", |
|
| 7799 | + | "estree-walker": "^3.0.0", |
|
| 7800 | + | "is-reference": "^3.0.0" |
|
| 7801 | + | } |
|
| 7802 | + | }, |
|
| 7803 | + | "node_modules/picocolors": { |
|
| 7804 | + | "version": "1.0.0", |
|
| 7805 | + | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", |
|
| 7806 | + | "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" |
|
| 7807 | + | }, |
|
| 7808 | + | "node_modules/picomatch": { |
|
| 7809 | + | "version": "2.3.1", |
|
| 7810 | + | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", |
|
| 7811 | + | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", |
|
| 7812 | + | "engines": { |
|
| 7813 | + | "node": ">=8.6" |
|
| 7814 | + | }, |
|
| 7815 | + | "funding": { |
|
| 7816 | + | "url": "https://github.com/sponsors/jonschlinkert" |
|
| 7817 | + | } |
|
| 7818 | + | }, |
|
| 7819 | + | "node_modules/pify": { |
|
| 7820 | + | "version": "2.3.0", |
|
| 7821 | + | "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", |
|
| 7822 | + | "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", |
|
| 7823 | + | "dev": true, |
|
| 7824 | + | "engines": { |
|
| 7825 | + | "node": ">=0.10.0" |
|
| 7826 | + | } |
|
| 7827 | + | }, |
|
| 7828 | + | "node_modules/pkg-dir": { |
|
| 7829 | + | "version": "4.2.0", |
|
| 7830 | + | "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", |
|
| 7831 | + | "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", |
|
| 7832 | + | "dependencies": { |
|
| 7833 | + | "find-up": "^4.0.0" |
|
| 7834 | + | }, |
|
| 7835 | + | "engines": { |
|
| 7836 | + | "node": ">=8" |
|
| 7837 | + | } |
|
| 7838 | + | }, |
|
| 7839 | + | "node_modules/pkg-dir/node_modules/find-up": { |
|
| 7840 | + | "version": "4.1.0", |
|
| 7841 | + | "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", |
|
| 7842 | + | "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", |
|
| 7843 | + | "dependencies": { |
|
| 7844 | + | "locate-path": "^5.0.0", |
|
| 7845 | + | "path-exists": "^4.0.0" |
|
| 7846 | + | }, |
|
| 7847 | + | "engines": { |
|
| 7848 | + | "node": ">=8" |
|
| 7849 | + | } |
|
| 7850 | + | }, |
|
| 7851 | + | "node_modules/pkg-dir/node_modules/locate-path": { |
|
| 7852 | + | "version": "5.0.0", |
|
| 7853 | + | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", |
|
| 7854 | + | "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", |
|
| 7855 | + | "dependencies": { |
|
| 7856 | + | "p-locate": "^4.1.0" |
|
| 7857 | + | }, |
|
| 7858 | + | "engines": { |
|
| 7859 | + | "node": ">=8" |
|
| 7860 | + | } |
|
| 7861 | + | }, |
|
| 7862 | + | "node_modules/pkg-dir/node_modules/p-limit": { |
|
| 7863 | + | "version": "2.3.0", |
|
| 7864 | + | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", |
|
| 7865 | + | "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", |
|
| 7866 | + | "dependencies": { |
|
| 7867 | + | "p-try": "^2.0.0" |
|
| 7868 | + | }, |
|
| 7869 | + | "engines": { |
|
| 7870 | + | "node": ">=6" |
|
| 7871 | + | }, |
|
| 7872 | + | "funding": { |
|
| 7873 | + | "url": "https://github.com/sponsors/sindresorhus" |
|
| 7874 | + | } |
|
| 7875 | + | }, |
|
| 7876 | + | "node_modules/pkg-dir/node_modules/p-locate": { |
|
| 7877 | + | "version": "4.1.0", |
|
| 7878 | + | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", |
|
| 7879 | + | "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", |
|
| 7880 | + | "dependencies": { |
|
| 7881 | + | "p-limit": "^2.2.0" |
|
| 7882 | + | }, |
|
| 7883 | + | "engines": { |
|
| 7884 | + | "node": ">=8" |
|
| 7885 | + | } |
|
| 7886 | + | }, |
|
| 7887 | + | "node_modules/postcss": { |
|
| 7888 | + | "version": "8.4.21", |
|
| 7889 | + | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.21.tgz", |
|
| 7890 | + | "integrity": "sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==", |
|
| 7891 | + | "funding": [ |
|
| 7892 | + | { |
|
| 7893 | + | "type": "opencollective", |
|
| 7894 | + | "url": "https://opencollective.com/postcss/" |
|
| 7895 | + | }, |
|
| 7896 | + | { |
|
| 7897 | + | "type": "tidelift", |
|
| 7898 | + | "url": "https://tidelift.com/funding/github/npm/postcss" |
|
| 7899 | + | } |
|
| 7900 | + | ], |
|
| 7901 | + | "dependencies": { |
|
| 7902 | + | "nanoid": "^3.3.4", |
|
| 7903 | + | "picocolors": "^1.0.0", |
|
| 7904 | + | "source-map-js": "^1.0.2" |
|
| 7905 | + | }, |
|
| 7906 | + | "engines": { |
|
| 7907 | + | "node": "^10 || ^12 || >=14" |
|
| 7908 | + | } |
|
| 7909 | + | }, |
|
| 7910 | + | "node_modules/postcss-html": { |
|
| 7911 | + | "version": "1.5.0", |
|
| 7912 | + | "resolved": "https://registry.npmjs.org/postcss-html/-/postcss-html-1.5.0.tgz", |
|
| 7913 | + | "integrity": "sha512-kCMRWJRHKicpA166kc2lAVUGxDZL324bkj/pVOb6RhjB0Z5Krl7mN0AsVkBhVIRZZirY0lyQXG38HCVaoKVNoA==", |
|
| 7914 | + | "dev": true, |
|
| 7915 | + | "dependencies": { |
|
| 7916 | + | "htmlparser2": "^8.0.0", |
|
| 7917 | + | "js-tokens": "^8.0.0", |
|
| 7918 | + | "postcss": "^8.4.0", |
|
| 7919 | + | "postcss-safe-parser": "^6.0.0" |
|
| 7920 | + | }, |
|
| 7921 | + | "engines": { |
|
| 7922 | + | "node": "^12 || >=14" |
|
| 7923 | + | } |
|
| 7924 | + | }, |
|
| 7925 | + | "node_modules/postcss-html/node_modules/js-tokens": { |
|
| 7926 | + | "version": "8.0.1", |
|
| 7927 | + | "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-8.0.1.tgz", |
|
| 7928 | + | "integrity": "sha512-3AGrZT6tuMm1ZWWn9mLXh7XMfi2YtiLNPALCVxBCiUVq0LD1OQMxV/AdS/s7rLJU5o9i/jBZw/N4vXXL5dm29A==", |
|
| 7929 | + | "dev": true |
|
| 7930 | + | }, |
|
| 7931 | + | "node_modules/postcss-import": { |
|
| 7932 | + | "version": "14.1.0", |
|
| 7933 | + | "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-14.1.0.tgz", |
|
| 7934 | + | "integrity": "sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==", |
|
| 7935 | + | "dev": true, |
|
| 7936 | + | "dependencies": { |
|
| 7937 | + | "postcss-value-parser": "^4.0.0", |
|
| 7938 | + | "read-cache": "^1.0.0", |
|
| 7939 | + | "resolve": "^1.1.7" |
|
| 7940 | + | }, |
|
| 7941 | + | "engines": { |
|
| 7942 | + | "node": ">=10.0.0" |
|
| 7943 | + | }, |
|
| 7944 | + | "peerDependencies": { |
|
| 7945 | + | "postcss": "^8.0.0" |
|
| 7946 | + | } |
|
| 7947 | + | }, |
|
| 7948 | + | "node_modules/postcss-js": { |
|
| 7949 | + | "version": "4.0.1", |
|
| 7950 | + | "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", |
|
| 7951 | + | "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", |
|
| 7952 | + | "dev": true, |
|
| 7953 | + | "dependencies": { |
|
| 7954 | + | "camelcase-css": "^2.0.1" |
|
| 7955 | + | }, |
|
| 7956 | + | "engines": { |
|
| 7957 | + | "node": "^12 || ^14 || >= 16" |
|
| 7958 | + | }, |
|
| 7959 | + | "funding": { |
|
| 7960 | + | "type": "opencollective", |
|
| 7961 | + | "url": "https://opencollective.com/postcss/" |
|
| 7962 | + | }, |
|
| 7963 | + | "peerDependencies": { |
|
| 7964 | + | "postcss": "^8.4.21" |
|
| 7965 | + | } |
|
| 7966 | + | }, |
|
| 7967 | + | "node_modules/postcss-load-config": { |
|
| 7968 | + | "version": "4.0.1", |
|
| 7969 | + | "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.1.tgz", |
|
| 7970 | + | "integrity": "sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==", |
|
| 7971 | + | "dev": true, |
|
| 7972 | + | "dependencies": { |
|
| 7973 | + | "lilconfig": "^2.0.5", |
|
| 7974 | + | "yaml": "^2.1.1" |
|
| 7975 | + | }, |
|
| 7976 | + | "engines": { |
|
| 7977 | + | "node": ">= 14" |
|
| 7978 | + | }, |
|
| 7979 | + | "funding": { |
|
| 7980 | + | "type": "opencollective", |
|
| 7981 | + | "url": "https://opencollective.com/postcss/" |
|
| 7982 | + | }, |
|
| 7983 | + | "peerDependencies": { |
|
| 7984 | + | "postcss": ">=8.0.9", |
|
| 7985 | + | "ts-node": ">=9.0.0" |
|
| 7986 | + | }, |
|
| 7987 | + | "peerDependenciesMeta": { |
|
| 7988 | + | "postcss": { |
|
| 7989 | + | "optional": true |
|
| 7990 | + | }, |
|
| 7991 | + | "ts-node": { |
|
| 7992 | + | "optional": true |
|
| 7993 | + | } |
|
| 7994 | + | } |
|
| 7995 | + | }, |
|
| 7996 | + | "node_modules/postcss-media-query-parser": { |
|
| 7997 | + | "version": "0.2.3", |
|
| 7998 | + | "resolved": "https://registry.npmjs.org/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz", |
|
| 7999 | + | "integrity": "sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==", |
|
| 8000 | + | "dev": true |
|
| 8001 | + | }, |
|
| 8002 | + | "node_modules/postcss-nested": { |
|
| 8003 | + | "version": "6.0.0", |
|
| 8004 | + | "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.0.tgz", |
|
| 8005 | + | "integrity": "sha512-0DkamqrPcmkBDsLn+vQDIrtkSbNkv5AD/M322ySo9kqFkCIYklym2xEmWkwo+Y3/qZo34tzEPNUw4y7yMCdv5w==", |
|
| 8006 | + | "dev": true, |
|
| 8007 | + | "dependencies": { |
|
| 8008 | + | "postcss-selector-parser": "^6.0.10" |
|
| 8009 | + | }, |
|
| 8010 | + | "engines": { |
|
| 8011 | + | "node": ">=12.0" |
|
| 8012 | + | }, |
|
| 8013 | + | "funding": { |
|
| 8014 | + | "type": "opencollective", |
|
| 8015 | + | "url": "https://opencollective.com/postcss/" |
|
| 8016 | + | }, |
|
| 8017 | + | "peerDependencies": { |
|
| 8018 | + | "postcss": "^8.2.14" |
|
| 8019 | + | } |
|
| 8020 | + | }, |
|
| 8021 | + | "node_modules/postcss-resolve-nested-selector": { |
|
| 8022 | + | "version": "0.1.1", |
|
| 8023 | + | "resolved": "https://registry.npmjs.org/postcss-resolve-nested-selector/-/postcss-resolve-nested-selector-0.1.1.tgz", |
|
| 8024 | + | "integrity": "sha512-HvExULSwLqHLgUy1rl3ANIqCsvMS0WHss2UOsXhXnQaZ9VCc2oBvIpXrl00IUFT5ZDITME0o6oiXeiHr2SAIfw==", |
|
| 8025 | + | "dev": true |
|
| 8026 | + | }, |
|
| 8027 | + | "node_modules/postcss-safe-parser": { |
|
| 8028 | + | "version": "6.0.0", |
|
| 8029 | + | "resolved": "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-6.0.0.tgz", |
|
| 8030 | + | "integrity": "sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==", |
|
| 8031 | + | "dev": true, |
|
| 8032 | + | "engines": { |
|
| 8033 | + | "node": ">=12.0" |
|
| 8034 | + | }, |
|
| 8035 | + | "funding": { |
|
| 8036 | + | "type": "opencollective", |
|
| 8037 | + | "url": "https://opencollective.com/postcss/" |
|
| 8038 | + | }, |
|
| 8039 | + | "peerDependencies": { |
|
| 8040 | + | "postcss": "^8.3.3" |
|
| 8041 | + | } |
|
| 8042 | + | }, |
|
| 8043 | + | "node_modules/postcss-selector-parser": { |
|
| 8044 | + | "version": "6.0.10", |
|
| 8045 | + | "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz", |
|
| 8046 | + | "integrity": "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==", |
|
| 8047 | + | "dev": true, |
|
| 8048 | + | "dependencies": { |
|
| 8049 | + | "cssesc": "^3.0.0", |
|
| 8050 | + | "util-deprecate": "^1.0.2" |
|
| 8051 | + | }, |
|
| 8052 | + | "engines": { |
|
| 8053 | + | "node": ">=4" |
|
| 8054 | + | } |
|
| 8055 | + | }, |
|
| 8056 | + | "node_modules/postcss-value-parser": { |
|
| 8057 | + | "version": "4.2.0", |
|
| 8058 | + | "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", |
|
| 8059 | + | "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" |
|
| 8060 | + | }, |
|
| 8061 | + | "node_modules/prebuild-install": { |
|
| 8062 | + | "version": "7.1.1", |
|
| 8063 | + | "resolved": "https://registry.npmjs.org/prebuild-install/-/prebuild-install-7.1.1.tgz", |
|
| 8064 | + | "integrity": "sha512-jAXscXWMcCK8GgCoHOfIr0ODh5ai8mj63L2nWrjuAgXE6tDyYGnx4/8o/rCgU+B4JSyZBKbeZqzhtwtC3ovxjw==", |
|
| 8065 | + | "dependencies": { |
|
| 8066 | + | "detect-libc": "^2.0.0", |
|
| 8067 | + | "expand-template": "^2.0.3", |
|
| 8068 | + | "github-from-package": "0.0.0", |
|
| 8069 | + | "minimist": "^1.2.3", |
|
| 8070 | + | "mkdirp-classic": "^0.5.3", |
|
| 8071 | + | "napi-build-utils": "^1.0.1", |
|
| 8072 | + | "node-abi": "^3.3.0", |
|
| 8073 | + | "pump": "^3.0.0", |
|
| 8074 | + | "rc": "^1.2.7", |
|
| 8075 | + | "simple-get": "^4.0.0", |
|
| 8076 | + | "tar-fs": "^2.0.0", |
|
| 8077 | + | "tunnel-agent": "^0.6.0" |
|
| 8078 | + | }, |
|
| 8079 | + | "bin": { |
|
| 8080 | + | "prebuild-install": "bin.js" |
|
| 8081 | + | }, |
|
| 8082 | + | "engines": { |
|
| 8083 | + | "node": ">=10" |
|
| 8084 | + | } |
|
| 8085 | + | }, |
|
| 8086 | + | "node_modules/preferred-pm": { |
|
| 8087 | + | "version": "3.0.3", |
|
| 8088 | + | "resolved": "https://registry.npmjs.org/preferred-pm/-/preferred-pm-3.0.3.tgz", |
|
| 8089 | + | "integrity": "sha512-+wZgbxNES/KlJs9q40F/1sfOd/j7f1O9JaHcW5Dsn3aUUOZg3L2bjpVUcKV2jvtElYfoTuQiNeMfQJ4kwUAhCQ==", |
|
| 8090 | + | "dependencies": { |
|
| 8091 | + | "find-up": "^5.0.0", |
|
| 8092 | + | "find-yarn-workspace-root2": "1.2.16", |
|
| 8093 | + | "path-exists": "^4.0.0", |
|
| 8094 | + | "which-pm": "2.0.0" |
|
| 8095 | + | }, |
|
| 8096 | + | "engines": { |
|
| 8097 | + | "node": ">=10" |
|
| 8098 | + | } |
|
| 8099 | + | }, |
|
| 8100 | + | "node_modules/prelude-ls": { |
|
| 8101 | + | "version": "1.2.1", |
|
| 8102 | + | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", |
|
| 8103 | + | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", |
|
| 8104 | + | "dev": true, |
|
| 8105 | + | "engines": { |
|
| 8106 | + | "node": ">= 0.8.0" |
|
| 8107 | + | } |
|
| 8108 | + | }, |
|
| 8109 | + | "node_modules/prettier": { |
|
| 8110 | + | "version": "2.8.4", |
|
| 8111 | + | "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.4.tgz", |
|
| 8112 | + | "integrity": "sha512-vIS4Rlc2FNh0BySk3Wkd6xmwxB0FpOndW5fisM5H8hsZSxU2VWVB5CWIkIjWvrHjIhxk2g3bfMKM87zNTrZddw==", |
|
| 8113 | + | "bin": { |
|
| 8114 | + | "prettier": "bin-prettier.js" |
|
| 8115 | + | }, |
|
| 8116 | + | "engines": { |
|
| 8117 | + | "node": ">=10.13.0" |
|
| 8118 | + | }, |
|
| 8119 | + | "funding": { |
|
| 8120 | + | "url": "https://github.com/prettier/prettier?sponsor=1" |
|
| 8121 | + | } |
|
| 8122 | + | }, |
|
| 8123 | + | "node_modules/prettier-linter-helpers": { |
|
| 8124 | + | "version": "1.0.0", |
|
| 8125 | + | "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz", |
|
| 8126 | + | "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==", |
|
| 8127 | + | "dev": true, |
|
| 8128 | + | "dependencies": { |
|
| 8129 | + | "fast-diff": "^1.1.2" |
|
| 8130 | + | }, |
|
| 8131 | + | "engines": { |
|
| 8132 | + | "node": ">=6.0.0" |
|
| 8133 | + | } |
|
| 8134 | + | }, |
|
| 8135 | + | "node_modules/prettier-plugin-astro": { |
|
| 8136 | + | "version": "0.8.0", |
|
| 8137 | + | "resolved": "https://registry.npmjs.org/prettier-plugin-astro/-/prettier-plugin-astro-0.8.0.tgz", |
|
| 8138 | + | "integrity": "sha512-kt9wk33J7HvFGwFaHb8piwy4zbUmabC8Nu+qCw493jhe96YkpjscqGBPy4nJ9TPy9pd7+kEx1zM81rp+MIdrXg==", |
|
| 8139 | + | "dev": true, |
|
| 8140 | + | "dependencies": { |
|
| 8141 | + | "@astrojs/compiler": "^1.0.1", |
|
| 8142 | + | "prettier": "^2.8.3", |
|
| 8143 | + | "sass-formatter": "^0.7.5", |
|
| 8144 | + | "synckit": "^0.8.4" |
|
| 8145 | + | }, |
|
| 8146 | + | "engines": { |
|
| 8147 | + | "node": "^14.15.0 || >=16.0.0", |
|
| 8148 | + | "pnpm": ">=7.14.0" |
|
| 8149 | + | } |
|
| 8150 | + | }, |
|
| 8151 | + | "node_modules/prettier-plugin-tailwindcss": { |
|
| 8152 | + | "version": "0.2.3", |
|
| 8153 | + | "resolved": "https://registry.npmjs.org/prettier-plugin-tailwindcss/-/prettier-plugin-tailwindcss-0.2.3.tgz", |
|
| 8154 | + | "integrity": "sha512-s2N5Dh7Ao5KTV1mao5ZBnn8EKtUcDPJEkGViZIjI0Ij9TTI5zgTz4IHOxW33jOdjHKa8CSjM88scelUiC5TNRQ==", |
|
| 8155 | + | "dev": true, |
|
| 8156 | + | "engines": { |
|
| 8157 | + | "node": ">=12.17.0" |
|
| 8158 | + | }, |
|
| 8159 | + | "peerDependencies": { |
|
| 8160 | + | "@ianvs/prettier-plugin-sort-imports": "*", |
|
| 8161 | + | "@prettier/plugin-php": "*", |
|
| 8162 | + | "@prettier/plugin-pug": "*", |
|
| 8163 | + | "@shopify/prettier-plugin-liquid": "*", |
|
| 8164 | + | "@shufo/prettier-plugin-blade": "*", |
|
| 8165 | + | "@trivago/prettier-plugin-sort-imports": "*", |
|
| 8166 | + | "prettier": ">=2.2.0", |
|
| 8167 | + | "prettier-plugin-astro": "*", |
|
| 8168 | + | "prettier-plugin-css-order": "*", |
|
| 8169 | + | "prettier-plugin-import-sort": "*", |
|
| 8170 | + | "prettier-plugin-jsdoc": "*", |
|
| 8171 | + | "prettier-plugin-organize-attributes": "*", |
|
| 8172 | + | "prettier-plugin-organize-imports": "*", |
|
| 8173 | + | "prettier-plugin-style-order": "*", |
|
| 8174 | + | "prettier-plugin-svelte": "*", |
|
| 8175 | + | "prettier-plugin-twig-melody": "*" |
|
| 8176 | + | }, |
|
| 8177 | + | "peerDependenciesMeta": { |
|
| 8178 | + | "@ianvs/prettier-plugin-sort-imports": { |
|
| 8179 | + | "optional": true |
|
| 8180 | + | }, |
|
| 8181 | + | "@prettier/plugin-php": { |
|
| 8182 | + | "optional": true |
|
| 8183 | + | }, |
|
| 8184 | + | "@prettier/plugin-pug": { |
|
| 8185 | + | "optional": true |
|
| 8186 | + | }, |
|
| 8187 | + | "@shopify/prettier-plugin-liquid": { |
|
| 8188 | + | "optional": true |
|
| 8189 | + | }, |
|
| 8190 | + | "@shufo/prettier-plugin-blade": { |
|
| 8191 | + | "optional": true |
|
| 8192 | + | }, |
|
| 8193 | + | "@trivago/prettier-plugin-sort-imports": { |
|
| 8194 | + | "optional": true |
|
| 8195 | + | }, |
|
| 8196 | + | "prettier-plugin-astro": { |
|
| 8197 | + | "optional": true |
|
| 8198 | + | }, |
|
| 8199 | + | "prettier-plugin-css-order": { |
|
| 8200 | + | "optional": true |
|
| 8201 | + | }, |
|
| 8202 | + | "prettier-plugin-import-sort": { |
|
| 8203 | + | "optional": true |
|
| 8204 | + | }, |
|
| 8205 | + | "prettier-plugin-jsdoc": { |
|
| 8206 | + | "optional": true |
|
| 8207 | + | }, |
|
| 8208 | + | "prettier-plugin-organize-attributes": { |
|
| 8209 | + | "optional": true |
|
| 8210 | + | }, |
|
| 8211 | + | "prettier-plugin-organize-imports": { |
|
| 8212 | + | "optional": true |
|
| 8213 | + | }, |
|
| 8214 | + | "prettier-plugin-style-order": { |
|
| 8215 | + | "optional": true |
|
| 8216 | + | }, |
|
| 8217 | + | "prettier-plugin-svelte": { |
|
| 8218 | + | "optional": true |
|
| 8219 | + | }, |
|
| 8220 | + | "prettier-plugin-twig-melody": { |
|
| 8221 | + | "optional": true |
|
| 8222 | + | } |
|
| 8223 | + | } |
|
| 8224 | + | }, |
|
| 8225 | + | "node_modules/prismjs": { |
|
| 8226 | + | "version": "1.29.0", |
|
| 8227 | + | "resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.29.0.tgz", |
|
| 8228 | + | "integrity": "sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==", |
|
| 8229 | + | "engines": { |
|
| 8230 | + | "node": ">=6" |
|
| 8231 | + | } |
|
| 8232 | + | }, |
|
| 8233 | + | "node_modules/prompts": { |
|
| 8234 | + | "version": "2.4.2", |
|
| 8235 | + | "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", |
|
| 8236 | + | "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", |
|
| 8237 | + | "dependencies": { |
|
| 8238 | + | "kleur": "^3.0.3", |
|
| 8239 | + | "sisteransi": "^1.0.5" |
|
| 8240 | + | }, |
|
| 8241 | + | "engines": { |
|
| 8242 | + | "node": ">= 6" |
|
| 8243 | + | } |
|
| 8244 | + | }, |
|
| 8245 | + | "node_modules/prompts/node_modules/kleur": { |
|
| 8246 | + | "version": "3.0.3", |
|
| 8247 | + | "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", |
|
| 8248 | + | "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", |
|
| 8249 | + | "engines": { |
|
| 8250 | + | "node": ">=6" |
|
| 8251 | + | } |
|
| 8252 | + | }, |
|
| 8253 | + | "node_modules/property-information": { |
|
| 8254 | + | "version": "6.2.0", |
|
| 8255 | + | "resolved": "https://registry.npmjs.org/property-information/-/property-information-6.2.0.tgz", |
|
| 8256 | + | "integrity": "sha512-kma4U7AFCTwpqq5twzC1YVIDXSqg6qQK6JN0smOw8fgRy1OkMi0CYSzFmsy6dnqSenamAtj0CyXMUJ1Mf6oROg==", |
|
| 8257 | + | "funding": { |
|
| 8258 | + | "type": "github", |
|
| 8259 | + | "url": "https://github.com/sponsors/wooorm" |
|
| 8260 | + | } |
|
| 8261 | + | }, |
|
| 8262 | + | "node_modules/pump": { |
|
| 8263 | + | "version": "3.0.0", |
|
| 8264 | + | "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", |
|
| 8265 | + | "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", |
|
| 8266 | + | "dependencies": { |
|
| 8267 | + | "end-of-stream": "^1.1.0", |
|
| 8268 | + | "once": "^1.3.1" |
|
| 8269 | + | } |
|
| 8270 | + | }, |
|
| 8271 | + | "node_modules/punycode": { |
|
| 8272 | + | "version": "2.3.0", |
|
| 8273 | + | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", |
|
| 8274 | + | "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", |
|
| 8275 | + | "dev": true, |
|
| 8276 | + | "engines": { |
|
| 8277 | + | "node": ">=6" |
|
| 8278 | + | } |
|
| 8279 | + | }, |
|
| 8280 | + | "node_modules/queue": { |
|
| 8281 | + | "version": "6.0.2", |
|
| 8282 | + | "resolved": "https://registry.npmjs.org/queue/-/queue-6.0.2.tgz", |
|
| 8283 | + | "integrity": "sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==", |
|
| 8284 | + | "dev": true, |
|
| 8285 | + | "dependencies": { |
|
| 8286 | + | "inherits": "~2.0.3" |
|
| 8287 | + | } |
|
| 8288 | + | }, |
|
| 8289 | + | "node_modules/queue-microtask": { |
|
| 8290 | + | "version": "1.2.3", |
|
| 8291 | + | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", |
|
| 8292 | + | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", |
|
| 8293 | + | "funding": [ |
|
| 8294 | + | { |
|
| 8295 | + | "type": "github", |
|
| 8296 | + | "url": "https://github.com/sponsors/feross" |
|
| 8297 | + | }, |
|
| 8298 | + | { |
|
| 8299 | + | "type": "patreon", |
|
| 8300 | + | "url": "https://www.patreon.com/feross" |
|
| 8301 | + | }, |
|
| 8302 | + | { |
|
| 8303 | + | "type": "consulting", |
|
| 8304 | + | "url": "https://feross.org/support" |
|
| 8305 | + | } |
|
| 8306 | + | ] |
|
| 8307 | + | }, |
|
| 8308 | + | "node_modules/quick-lru": { |
|
| 8309 | + | "version": "4.0.1", |
|
| 8310 | + | "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz", |
|
| 8311 | + | "integrity": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==", |
|
| 8312 | + | "dev": true, |
|
| 8313 | + | "engines": { |
|
| 8314 | + | "node": ">=8" |
|
| 8315 | + | } |
|
| 8316 | + | }, |
|
| 8317 | + | "node_modules/rc": { |
|
| 8318 | + | "version": "1.2.8", |
|
| 8319 | + | "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", |
|
| 8320 | + | "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", |
|
| 8321 | + | "dependencies": { |
|
| 8322 | + | "deep-extend": "^0.6.0", |
|
| 8323 | + | "ini": "~1.3.0", |
|
| 8324 | + | "minimist": "^1.2.0", |
|
| 8325 | + | "strip-json-comments": "~2.0.1" |
|
| 8326 | + | }, |
|
| 8327 | + | "bin": { |
|
| 8328 | + | "rc": "cli.js" |
|
| 8329 | + | } |
|
| 8330 | + | }, |
|
| 8331 | + | "node_modules/rc/node_modules/strip-json-comments": { |
|
| 8332 | + | "version": "2.0.1", |
|
| 8333 | + | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", |
|
| 8334 | + | "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", |
|
| 8335 | + | "engines": { |
|
| 8336 | + | "node": ">=0.10.0" |
|
| 8337 | + | } |
|
| 8338 | + | }, |
|
| 8339 | + | "node_modules/read-cache": { |
|
| 8340 | + | "version": "1.0.0", |
|
| 8341 | + | "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", |
|
| 8342 | + | "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", |
|
| 8343 | + | "dev": true, |
|
| 8344 | + | "dependencies": { |
|
| 8345 | + | "pify": "^2.3.0" |
|
| 8346 | + | } |
|
| 8347 | + | }, |
|
| 8348 | + | "node_modules/read-pkg": { |
|
| 8349 | + | "version": "5.2.0", |
|
| 8350 | + | "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", |
|
| 8351 | + | "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", |
|
| 8352 | + | "dev": true, |
|
| 8353 | + | "dependencies": { |
|
| 8354 | + | "@types/normalize-package-data": "^2.4.0", |
|
| 8355 | + | "normalize-package-data": "^2.5.0", |
|
| 8356 | + | "parse-json": "^5.0.0", |
|
| 8357 | + | "type-fest": "^0.6.0" |
|
| 8358 | + | }, |
|
| 8359 | + | "engines": { |
|
| 8360 | + | "node": ">=8" |
|
| 8361 | + | } |
|
| 8362 | + | }, |
|
| 8363 | + | "node_modules/read-pkg-up": { |
|
| 8364 | + | "version": "7.0.1", |
|
| 8365 | + | "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", |
|
| 8366 | + | "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", |
|
| 8367 | + | "dev": true, |
|
| 8368 | + | "dependencies": { |
|
| 8369 | + | "find-up": "^4.1.0", |
|
| 8370 | + | "read-pkg": "^5.2.0", |
|
| 8371 | + | "type-fest": "^0.8.1" |
|
| 8372 | + | }, |
|
| 8373 | + | "engines": { |
|
| 8374 | + | "node": ">=8" |
|
| 8375 | + | }, |
|
| 8376 | + | "funding": { |
|
| 8377 | + | "url": "https://github.com/sponsors/sindresorhus" |
|
| 8378 | + | } |
|
| 8379 | + | }, |
|
| 8380 | + | "node_modules/read-pkg-up/node_modules/find-up": { |
|
| 8381 | + | "version": "4.1.0", |
|
| 8382 | + | "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", |
|
| 8383 | + | "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", |
|
| 8384 | + | "dev": true, |
|
| 8385 | + | "dependencies": { |
|
| 8386 | + | "locate-path": "^5.0.0", |
|
| 8387 | + | "path-exists": "^4.0.0" |
|
| 8388 | + | }, |
|
| 8389 | + | "engines": { |
|
| 8390 | + | "node": ">=8" |
|
| 8391 | + | } |
|
| 8392 | + | }, |
|
| 8393 | + | "node_modules/read-pkg-up/node_modules/locate-path": { |
|
| 8394 | + | "version": "5.0.0", |
|
| 8395 | + | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", |
|
| 8396 | + | "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", |
|
| 8397 | + | "dev": true, |
|
| 8398 | + | "dependencies": { |
|
| 8399 | + | "p-locate": "^4.1.0" |
|
| 8400 | + | }, |
|
| 8401 | + | "engines": { |
|
| 8402 | + | "node": ">=8" |
|
| 8403 | + | } |
|
| 8404 | + | }, |
|
| 8405 | + | "node_modules/read-pkg-up/node_modules/p-limit": { |
|
| 8406 | + | "version": "2.3.0", |
|
| 8407 | + | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", |
|
| 8408 | + | "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", |
|
| 8409 | + | "dev": true, |
|
| 8410 | + | "dependencies": { |
|
| 8411 | + | "p-try": "^2.0.0" |
|
| 8412 | + | }, |
|
| 8413 | + | "engines": { |
|
| 8414 | + | "node": ">=6" |
|
| 8415 | + | }, |
|
| 8416 | + | "funding": { |
|
| 8417 | + | "url": "https://github.com/sponsors/sindresorhus" |
|
| 8418 | + | } |
|
| 8419 | + | }, |
|
| 8420 | + | "node_modules/read-pkg-up/node_modules/p-locate": { |
|
| 8421 | + | "version": "4.1.0", |
|
| 8422 | + | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", |
|
| 8423 | + | "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", |
|
| 8424 | + | "dev": true, |
|
| 8425 | + | "dependencies": { |
|
| 8426 | + | "p-limit": "^2.2.0" |
|
| 8427 | + | }, |
|
| 8428 | + | "engines": { |
|
| 8429 | + | "node": ">=8" |
|
| 8430 | + | } |
|
| 8431 | + | }, |
|
| 8432 | + | "node_modules/read-pkg-up/node_modules/type-fest": { |
|
| 8433 | + | "version": "0.8.1", |
|
| 8434 | + | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", |
|
| 8435 | + | "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", |
|
| 8436 | + | "dev": true, |
|
| 8437 | + | "engines": { |
|
| 8438 | + | "node": ">=8" |
|
| 8439 | + | } |
|
| 8440 | + | }, |
|
| 8441 | + | "node_modules/read-pkg/node_modules/hosted-git-info": { |
|
| 8442 | + | "version": "2.8.9", |
|
| 8443 | + | "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", |
|
| 8444 | + | "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", |
|
| 8445 | + | "dev": true |
|
| 8446 | + | }, |
|
| 8447 | + | "node_modules/read-pkg/node_modules/normalize-package-data": { |
|
| 8448 | + | "version": "2.5.0", |
|
| 8449 | + | "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", |
|
| 8450 | + | "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", |
|
| 8451 | + | "dev": true, |
|
| 8452 | + | "dependencies": { |
|
| 8453 | + | "hosted-git-info": "^2.1.4", |
|
| 8454 | + | "resolve": "^1.10.0", |
|
| 8455 | + | "semver": "2 || 3 || 4 || 5", |
|
| 8456 | + | "validate-npm-package-license": "^3.0.1" |
|
| 8457 | + | } |
|
| 8458 | + | }, |
|
| 8459 | + | "node_modules/read-pkg/node_modules/semver": { |
|
| 8460 | + | "version": "5.7.1", |
|
| 8461 | + | "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", |
|
| 8462 | + | "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", |
|
| 8463 | + | "dev": true, |
|
| 8464 | + | "bin": { |
|
| 8465 | + | "semver": "bin/semver" |
|
| 8466 | + | } |
|
| 8467 | + | }, |
|
| 8468 | + | "node_modules/read-pkg/node_modules/type-fest": { |
|
| 8469 | + | "version": "0.6.0", |
|
| 8470 | + | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", |
|
| 8471 | + | "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", |
|
| 8472 | + | "dev": true, |
|
| 8473 | + | "engines": { |
|
| 8474 | + | "node": ">=8" |
|
| 8475 | + | } |
|
| 8476 | + | }, |
|
| 8477 | + | "node_modules/readable-stream": { |
|
| 8478 | + | "version": "3.6.1", |
|
| 8479 | + | "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.1.tgz", |
|
| 8480 | + | "integrity": "sha512-+rQmrWMYGA90yenhTYsLWAsLsqVC8osOw6PKE1HDYiO0gdPeKe/xDHNzIAIn4C91YQ6oenEhfYqqc1883qHbjQ==", |
|
| 8481 | + | "dependencies": { |
|
| 8482 | + | "inherits": "^2.0.3", |
|
| 8483 | + | "string_decoder": "^1.1.1", |
|
| 8484 | + | "util-deprecate": "^1.0.1" |
|
| 8485 | + | }, |
|
| 8486 | + | "engines": { |
|
| 8487 | + | "node": ">= 6" |
|
| 8488 | + | } |
|
| 8489 | + | }, |
|
| 8490 | + | "node_modules/readdirp": { |
|
| 8491 | + | "version": "3.6.0", |
|
| 8492 | + | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", |
|
| 8493 | + | "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", |
|
| 8494 | + | "dev": true, |
|
| 8495 | + | "dependencies": { |
|
| 8496 | + | "picomatch": "^2.2.1" |
|
| 8497 | + | }, |
|
| 8498 | + | "engines": { |
|
| 8499 | + | "node": ">=8.10.0" |
|
| 8500 | + | } |
|
| 8501 | + | }, |
|
| 8502 | + | "node_modules/redent": { |
|
| 8503 | + | "version": "3.0.0", |
|
| 8504 | + | "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", |
|
| 8505 | + | "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", |
|
| 8506 | + | "dev": true, |
|
| 8507 | + | "dependencies": { |
|
| 8508 | + | "indent-string": "^4.0.0", |
|
| 8509 | + | "strip-indent": "^3.0.0" |
|
| 8510 | + | }, |
|
| 8511 | + | "engines": { |
|
| 8512 | + | "node": ">=8" |
|
| 8513 | + | } |
|
| 8514 | + | }, |
|
| 8515 | + | "node_modules/regenerator-runtime": { |
|
| 8516 | + | "version": "0.13.11", |
|
| 8517 | + | "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", |
|
| 8518 | + | "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==", |
|
| 8519 | + | "dev": true |
|
| 8520 | + | }, |
|
| 8521 | + | "node_modules/regexp.prototype.flags": { |
|
| 8522 | + | "version": "1.4.3", |
|
| 8523 | + | "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz", |
|
| 8524 | + | "integrity": "sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==", |
|
| 8525 | + | "dev": true, |
|
| 8526 | + | "dependencies": { |
|
| 8527 | + | "call-bind": "^1.0.2", |
|
| 8528 | + | "define-properties": "^1.1.3", |
|
| 8529 | + | "functions-have-names": "^1.2.2" |
|
| 8530 | + | }, |
|
| 8531 | + | "engines": { |
|
| 8532 | + | "node": ">= 0.4" |
|
| 8533 | + | }, |
|
| 8534 | + | "funding": { |
|
| 8535 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 8536 | + | } |
|
| 8537 | + | }, |
|
| 8538 | + | "node_modules/regexpp": { |
|
| 8539 | + | "version": "3.2.0", |
|
| 8540 | + | "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", |
|
| 8541 | + | "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", |
|
| 8542 | + | "dev": true, |
|
| 8543 | + | "engines": { |
|
| 8544 | + | "node": ">=8" |
|
| 8545 | + | }, |
|
| 8546 | + | "funding": { |
|
| 8547 | + | "url": "https://github.com/sponsors/mysticatea" |
|
| 8548 | + | } |
|
| 8549 | + | }, |
|
| 8550 | + | "node_modules/rehype": { |
|
| 8551 | + | "version": "12.0.1", |
|
| 8552 | + | "resolved": "https://registry.npmjs.org/rehype/-/rehype-12.0.1.tgz", |
|
| 8553 | + | "integrity": "sha512-ey6kAqwLM3X6QnMDILJthGvG1m1ULROS9NT4uG9IDCuv08SFyLlreSuvOa//DgEvbXx62DS6elGVqusWhRUbgw==", |
|
| 8554 | + | "dependencies": { |
|
| 8555 | + | "@types/hast": "^2.0.0", |
|
| 8556 | + | "rehype-parse": "^8.0.0", |
|
| 8557 | + | "rehype-stringify": "^9.0.0", |
|
| 8558 | + | "unified": "^10.0.0" |
|
| 8559 | + | }, |
|
| 8560 | + | "funding": { |
|
| 8561 | + | "type": "opencollective", |
|
| 8562 | + | "url": "https://opencollective.com/unified" |
|
| 8563 | + | } |
|
| 8564 | + | }, |
|
| 8565 | + | "node_modules/rehype-parse": { |
|
| 8566 | + | "version": "8.0.4", |
|
| 8567 | + | "resolved": "https://registry.npmjs.org/rehype-parse/-/rehype-parse-8.0.4.tgz", |
|
| 8568 | + | "integrity": "sha512-MJJKONunHjoTh4kc3dsM1v3C9kGrrxvA3U8PxZlP2SjH8RNUSrb+lF7Y0KVaUDnGH2QZ5vAn7ulkiajM9ifuqg==", |
|
| 8569 | + | "dependencies": { |
|
| 8570 | + | "@types/hast": "^2.0.0", |
|
| 8571 | + | "hast-util-from-parse5": "^7.0.0", |
|
| 8572 | + | "parse5": "^6.0.0", |
|
| 8573 | + | "unified": "^10.0.0" |
|
| 8574 | + | }, |
|
| 8575 | + | "funding": { |
|
| 8576 | + | "type": "opencollective", |
|
| 8577 | + | "url": "https://opencollective.com/unified" |
|
| 8578 | + | } |
|
| 8579 | + | }, |
|
| 8580 | + | "node_modules/rehype-raw": { |
|
| 8581 | + | "version": "6.1.1", |
|
| 8582 | + | "resolved": "https://registry.npmjs.org/rehype-raw/-/rehype-raw-6.1.1.tgz", |
|
| 8583 | + | "integrity": "sha512-d6AKtisSRtDRX4aSPsJGTfnzrX2ZkHQLE5kiUuGOeEoLpbEulFF4hj0mLPbsa+7vmguDKOVVEQdHKDSwoaIDsQ==", |
|
| 8584 | + | "dependencies": { |
|
| 8585 | + | "@types/hast": "^2.0.0", |
|
| 8586 | + | "hast-util-raw": "^7.2.0", |
|
| 8587 | + | "unified": "^10.0.0" |
|
| 8588 | + | }, |
|
| 8589 | + | "funding": { |
|
| 8590 | + | "type": "opencollective", |
|
| 8591 | + | "url": "https://opencollective.com/unified" |
|
| 8592 | + | } |
|
| 8593 | + | }, |
|
| 8594 | + | "node_modules/rehype-stringify": { |
|
| 8595 | + | "version": "9.0.3", |
|
| 8596 | + | "resolved": "https://registry.npmjs.org/rehype-stringify/-/rehype-stringify-9.0.3.tgz", |
|
| 8597 | + | "integrity": "sha512-kWiZ1bgyWlgOxpqD5HnxShKAdXtb2IUljn3hQAhySeak6IOQPPt6DeGnsIh4ixm7yKJWzm8TXFuC/lPfcWHJqw==", |
|
| 8598 | + | "dependencies": { |
|
| 8599 | + | "@types/hast": "^2.0.0", |
|
| 8600 | + | "hast-util-to-html": "^8.0.0", |
|
| 8601 | + | "unified": "^10.0.0" |
|
| 8602 | + | }, |
|
| 8603 | + | "funding": { |
|
| 8604 | + | "type": "opencollective", |
|
| 8605 | + | "url": "https://opencollective.com/unified" |
|
| 8606 | + | } |
|
| 8607 | + | }, |
|
| 8608 | + | "node_modules/remark-frontmatter": { |
|
| 8609 | + | "version": "4.0.1", |
|
| 8610 | + | "resolved": "https://registry.npmjs.org/remark-frontmatter/-/remark-frontmatter-4.0.1.tgz", |
|
| 8611 | + | "integrity": "sha512-38fJrB0KnmD3E33a5jZC/5+gGAC2WKNiPw1/fdXJvijBlhA7RCsvJklrYJakS0HedninvaCYW8lQGf9C918GfA==", |
|
| 8612 | + | "dev": true, |
|
| 8613 | + | "dependencies": { |
|
| 8614 | + | "@types/mdast": "^3.0.0", |
|
| 8615 | + | "mdast-util-frontmatter": "^1.0.0", |
|
| 8616 | + | "micromark-extension-frontmatter": "^1.0.0", |
|
| 8617 | + | "unified": "^10.0.0" |
|
| 8618 | + | }, |
|
| 8619 | + | "funding": { |
|
| 8620 | + | "type": "opencollective", |
|
| 8621 | + | "url": "https://opencollective.com/unified" |
|
| 8622 | + | } |
|
| 8623 | + | }, |
|
| 8624 | + | "node_modules/remark-gfm": { |
|
| 8625 | + | "version": "3.0.1", |
|
| 8626 | + | "resolved": "https://registry.npmjs.org/remark-gfm/-/remark-gfm-3.0.1.tgz", |
|
| 8627 | + | "integrity": "sha512-lEFDoi2PICJyNrACFOfDD3JlLkuSbOa5Wd8EPt06HUdptv8Gn0bxYTdbU/XXQ3swAPkEaGxxPN9cbnMHvVu1Ig==", |
|
| 8628 | + | "dependencies": { |
|
| 8629 | + | "@types/mdast": "^3.0.0", |
|
| 8630 | + | "mdast-util-gfm": "^2.0.0", |
|
| 8631 | + | "micromark-extension-gfm": "^2.0.0", |
|
| 8632 | + | "unified": "^10.0.0" |
|
| 8633 | + | }, |
|
| 8634 | + | "funding": { |
|
| 8635 | + | "type": "opencollective", |
|
| 8636 | + | "url": "https://opencollective.com/unified" |
|
| 8637 | + | } |
|
| 8638 | + | }, |
|
| 8639 | + | "node_modules/remark-mdx": { |
|
| 8640 | + | "version": "2.3.0", |
|
| 8641 | + | "resolved": "https://registry.npmjs.org/remark-mdx/-/remark-mdx-2.3.0.tgz", |
|
| 8642 | + | "integrity": "sha512-g53hMkpM0I98MU266IzDFMrTD980gNF3BJnkyFcmN+dD873mQeD5rdMO3Y2X+x8umQfbSE0PcoEDl7ledSA+2g==", |
|
| 8643 | + | "dev": true, |
|
| 8644 | + | "dependencies": { |
|
| 8645 | + | "mdast-util-mdx": "^2.0.0", |
|
| 8646 | + | "micromark-extension-mdxjs": "^1.0.0" |
|
| 8647 | + | }, |
|
| 8648 | + | "funding": { |
|
| 8649 | + | "type": "opencollective", |
|
| 8650 | + | "url": "https://opencollective.com/unified" |
|
| 8651 | + | } |
|
| 8652 | + | }, |
|
| 8653 | + | "node_modules/remark-parse": { |
|
| 8654 | + | "version": "10.0.1", |
|
| 8655 | + | "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-10.0.1.tgz", |
|
| 8656 | + | "integrity": "sha512-1fUyHr2jLsVOkhbvPRBJ5zTKZZyD6yZzYaWCS6BPBdQ8vEMBCH+9zNCDA6tET/zHCi/jLqjCWtlJZUPk+DbnFw==", |
|
| 8657 | + | "dependencies": { |
|
| 8658 | + | "@types/mdast": "^3.0.0", |
|
| 8659 | + | "mdast-util-from-markdown": "^1.0.0", |
|
| 8660 | + | "unified": "^10.0.0" |
|
| 8661 | + | }, |
|
| 8662 | + | "funding": { |
|
| 8663 | + | "type": "opencollective", |
|
| 8664 | + | "url": "https://opencollective.com/unified" |
|
| 8665 | + | } |
|
| 8666 | + | }, |
|
| 8667 | + | "node_modules/remark-rehype": { |
|
| 8668 | + | "version": "10.1.0", |
|
| 8669 | + | "resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-10.1.0.tgz", |
|
| 8670 | + | "integrity": "sha512-EFmR5zppdBp0WQeDVZ/b66CWJipB2q2VLNFMabzDSGR66Z2fQii83G5gTBbgGEnEEA0QRussvrFHxk1HWGJskw==", |
|
| 8671 | + | "dependencies": { |
|
| 8672 | + | "@types/hast": "^2.0.0", |
|
| 8673 | + | "@types/mdast": "^3.0.0", |
|
| 8674 | + | "mdast-util-to-hast": "^12.1.0", |
|
| 8675 | + | "unified": "^10.0.0" |
|
| 8676 | + | }, |
|
| 8677 | + | "funding": { |
|
| 8678 | + | "type": "opencollective", |
|
| 8679 | + | "url": "https://opencollective.com/unified" |
|
| 8680 | + | } |
|
| 8681 | + | }, |
|
| 8682 | + | "node_modules/remark-smartypants": { |
|
| 8683 | + | "version": "2.0.0", |
|
| 8684 | + | "resolved": "https://registry.npmjs.org/remark-smartypants/-/remark-smartypants-2.0.0.tgz", |
|
| 8685 | + | "integrity": "sha512-Rc0VDmr/yhnMQIz8n2ACYXlfw/P/XZev884QU1I5u+5DgJls32o97Vc1RbK3pfumLsJomS2yy8eT4Fxj/2MDVA==", |
|
| 8686 | + | "dependencies": { |
|
| 8687 | + | "retext": "^8.1.0", |
|
| 8688 | + | "retext-smartypants": "^5.1.0", |
|
| 8689 | + | "unist-util-visit": "^4.1.0" |
|
| 8690 | + | }, |
|
| 8691 | + | "engines": { |
|
| 8692 | + | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" |
|
| 8693 | + | } |
|
| 8694 | + | }, |
|
| 8695 | + | "node_modules/require-from-string": { |
|
| 8696 | + | "version": "2.0.2", |
|
| 8697 | + | "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", |
|
| 8698 | + | "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", |
|
| 8699 | + | "dev": true, |
|
| 8700 | + | "engines": { |
|
| 8701 | + | "node": ">=0.10.0" |
|
| 8702 | + | } |
|
| 8703 | + | }, |
|
| 8704 | + | "node_modules/resolve": { |
|
| 8705 | + | "version": "1.22.1", |
|
| 8706 | + | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", |
|
| 8707 | + | "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", |
|
| 8708 | + | "dependencies": { |
|
| 8709 | + | "is-core-module": "^2.9.0", |
|
| 8710 | + | "path-parse": "^1.0.7", |
|
| 8711 | + | "supports-preserve-symlinks-flag": "^1.0.0" |
|
| 8712 | + | }, |
|
| 8713 | + | "bin": { |
|
| 8714 | + | "resolve": "bin/resolve" |
|
| 8715 | + | }, |
|
| 8716 | + | "funding": { |
|
| 8717 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 8718 | + | } |
|
| 8719 | + | }, |
|
| 8720 | + | "node_modules/resolve-from": { |
|
| 8721 | + | "version": "4.0.0", |
|
| 8722 | + | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", |
|
| 8723 | + | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", |
|
| 8724 | + | "dev": true, |
|
| 8725 | + | "engines": { |
|
| 8726 | + | "node": ">=4" |
|
| 8727 | + | } |
|
| 8728 | + | }, |
|
| 8729 | + | "node_modules/restore-cursor": { |
|
| 8730 | + | "version": "4.0.0", |
|
| 8731 | + | "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-4.0.0.tgz", |
|
| 8732 | + | "integrity": "sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==", |
|
| 8733 | + | "dependencies": { |
|
| 8734 | + | "onetime": "^5.1.0", |
|
| 8735 | + | "signal-exit": "^3.0.2" |
|
| 8736 | + | }, |
|
| 8737 | + | "engines": { |
|
| 8738 | + | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" |
|
| 8739 | + | }, |
|
| 8740 | + | "funding": { |
|
| 8741 | + | "url": "https://github.com/sponsors/sindresorhus" |
|
| 8742 | + | } |
|
| 8743 | + | }, |
|
| 8744 | + | "node_modules/restore-cursor/node_modules/mimic-fn": { |
|
| 8745 | + | "version": "2.1.0", |
|
| 8746 | + | "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", |
|
| 8747 | + | "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", |
|
| 8748 | + | "engines": { |
|
| 8749 | + | "node": ">=6" |
|
| 8750 | + | } |
|
| 8751 | + | }, |
|
| 8752 | + | "node_modules/restore-cursor/node_modules/onetime": { |
|
| 8753 | + | "version": "5.1.2", |
|
| 8754 | + | "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", |
|
| 8755 | + | "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", |
|
| 8756 | + | "dependencies": { |
|
| 8757 | + | "mimic-fn": "^2.1.0" |
|
| 8758 | + | }, |
|
| 8759 | + | "engines": { |
|
| 8760 | + | "node": ">=6" |
|
| 8761 | + | }, |
|
| 8762 | + | "funding": { |
|
| 8763 | + | "url": "https://github.com/sponsors/sindresorhus" |
|
| 8764 | + | } |
|
| 8765 | + | }, |
|
| 8766 | + | "node_modules/retext": { |
|
| 8767 | + | "version": "8.1.0", |
|
| 8768 | + | "resolved": "https://registry.npmjs.org/retext/-/retext-8.1.0.tgz", |
|
| 8769 | + | "integrity": "sha512-N9/Kq7YTn6ZpzfiGW45WfEGJqFf1IM1q8OsRa1CGzIebCJBNCANDRmOrholiDRGKo/We7ofKR4SEvcGAWEMD3Q==", |
|
| 8770 | + | "dependencies": { |
|
| 8771 | + | "@types/nlcst": "^1.0.0", |
|
| 8772 | + | "retext-latin": "^3.0.0", |
|
| 8773 | + | "retext-stringify": "^3.0.0", |
|
| 8774 | + | "unified": "^10.0.0" |
|
| 8775 | + | }, |
|
| 8776 | + | "funding": { |
|
| 8777 | + | "type": "opencollective", |
|
| 8778 | + | "url": "https://opencollective.com/unified" |
|
| 8779 | + | } |
|
| 8780 | + | }, |
|
| 8781 | + | "node_modules/retext-latin": { |
|
| 8782 | + | "version": "3.1.0", |
|
| 8783 | + | "resolved": "https://registry.npmjs.org/retext-latin/-/retext-latin-3.1.0.tgz", |
|
| 8784 | + | "integrity": "sha512-5MrD1tuebzO8ppsja5eEu+ZbBeUNCjoEarn70tkXOS7Bdsdf6tNahsv2bY0Z8VooFF6cw7/6S+d3yI/TMlMVVQ==", |
|
| 8785 | + | "dependencies": { |
|
| 8786 | + | "@types/nlcst": "^1.0.0", |
|
| 8787 | + | "parse-latin": "^5.0.0", |
|
| 8788 | + | "unherit": "^3.0.0", |
|
| 8789 | + | "unified": "^10.0.0" |
|
| 8790 | + | }, |
|
| 8791 | + | "funding": { |
|
| 8792 | + | "type": "opencollective", |
|
| 8793 | + | "url": "https://opencollective.com/unified" |
|
| 8794 | + | } |
|
| 8795 | + | }, |
|
| 8796 | + | "node_modules/retext-smartypants": { |
|
| 8797 | + | "version": "5.2.0", |
|
| 8798 | + | "resolved": "https://registry.npmjs.org/retext-smartypants/-/retext-smartypants-5.2.0.tgz", |
|
| 8799 | + | "integrity": "sha512-Do8oM+SsjrbzT2UNIKgheP0hgUQTDDQYyZaIY3kfq0pdFzoPk+ZClYJ+OERNXveog4xf1pZL4PfRxNoVL7a/jw==", |
|
| 8800 | + | "dependencies": { |
|
| 8801 | + | "@types/nlcst": "^1.0.0", |
|
| 8802 | + | "nlcst-to-string": "^3.0.0", |
|
| 8803 | + | "unified": "^10.0.0", |
|
| 8804 | + | "unist-util-visit": "^4.0.0" |
|
| 8805 | + | }, |
|
| 8806 | + | "funding": { |
|
| 8807 | + | "type": "opencollective", |
|
| 8808 | + | "url": "https://opencollective.com/unified" |
|
| 8809 | + | } |
|
| 8810 | + | }, |
|
| 8811 | + | "node_modules/retext-stringify": { |
|
| 8812 | + | "version": "3.1.0", |
|
| 8813 | + | "resolved": "https://registry.npmjs.org/retext-stringify/-/retext-stringify-3.1.0.tgz", |
|
| 8814 | + | "integrity": "sha512-767TLOaoXFXyOnjx/EggXlb37ZD2u4P1n0GJqVdpipqACsQP+20W+BNpMYrlJkq7hxffnFk+jc6mAK9qrbuB8w==", |
|
| 8815 | + | "dependencies": { |
|
| 8816 | + | "@types/nlcst": "^1.0.0", |
|
| 8817 | + | "nlcst-to-string": "^3.0.0", |
|
| 8818 | + | "unified": "^10.0.0" |
|
| 8819 | + | }, |
|
| 8820 | + | "funding": { |
|
| 8821 | + | "type": "opencollective", |
|
| 8822 | + | "url": "https://opencollective.com/unified" |
|
| 8823 | + | } |
|
| 8824 | + | }, |
|
| 8825 | + | "node_modules/reusify": { |
|
| 8826 | + | "version": "1.0.4", |
|
| 8827 | + | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", |
|
| 8828 | + | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", |
|
| 8829 | + | "engines": { |
|
| 8830 | + | "iojs": ">=1.0.0", |
|
| 8831 | + | "node": ">=0.10.0" |
|
| 8832 | + | } |
|
| 8833 | + | }, |
|
| 8834 | + | "node_modules/rimraf": { |
|
| 8835 | + | "version": "3.0.2", |
|
| 8836 | + | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", |
|
| 8837 | + | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", |
|
| 8838 | + | "dev": true, |
|
| 8839 | + | "dependencies": { |
|
| 8840 | + | "glob": "^7.1.3" |
|
| 8841 | + | }, |
|
| 8842 | + | "bin": { |
|
| 8843 | + | "rimraf": "bin.js" |
|
| 8844 | + | }, |
|
| 8845 | + | "funding": { |
|
| 8846 | + | "url": "https://github.com/sponsors/isaacs" |
|
| 8847 | + | } |
|
| 8848 | + | }, |
|
| 8849 | + | "node_modules/rollup": { |
|
| 8850 | + | "version": "3.17.2", |
|
| 8851 | + | "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.17.2.tgz", |
|
| 8852 | + | "integrity": "sha512-qMNZdlQPCkWodrAZ3qnJtvCAl4vpQ8q77uEujVCCbC/6CLB7Lcmvjq7HyiOSnf4fxTT9XgsE36oLHJBH49xjqA==", |
|
| 8853 | + | "bin": { |
|
| 8854 | + | "rollup": "dist/bin/rollup" |
|
| 8855 | + | }, |
|
| 8856 | + | "engines": { |
|
| 8857 | + | "node": ">=14.18.0", |
|
| 8858 | + | "npm": ">=8.0.0" |
|
| 8859 | + | }, |
|
| 8860 | + | "optionalDependencies": { |
|
| 8861 | + | "fsevents": "~2.3.2" |
|
| 8862 | + | } |
|
| 8863 | + | }, |
|
| 8864 | + | "node_modules/run-parallel": { |
|
| 8865 | + | "version": "1.2.0", |
|
| 8866 | + | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", |
|
| 8867 | + | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", |
|
| 8868 | + | "funding": [ |
|
| 8869 | + | { |
|
| 8870 | + | "type": "github", |
|
| 8871 | + | "url": "https://github.com/sponsors/feross" |
|
| 8872 | + | }, |
|
| 8873 | + | { |
|
| 8874 | + | "type": "patreon", |
|
| 8875 | + | "url": "https://www.patreon.com/feross" |
|
| 8876 | + | }, |
|
| 8877 | + | { |
|
| 8878 | + | "type": "consulting", |
|
| 8879 | + | "url": "https://feross.org/support" |
|
| 8880 | + | } |
|
| 8881 | + | ], |
|
| 8882 | + | "dependencies": { |
|
| 8883 | + | "queue-microtask": "^1.2.2" |
|
| 8884 | + | } |
|
| 8885 | + | }, |
|
| 8886 | + | "node_modules/s.color": { |
|
| 8887 | + | "version": "0.0.15", |
|
| 8888 | + | "resolved": "https://registry.npmjs.org/s.color/-/s.color-0.0.15.tgz", |
|
| 8889 | + | "integrity": "sha512-AUNrbEUHeKY8XsYr/DYpl+qk5+aM+DChopnWOPEzn8YKzOhv4l2zH6LzZms3tOZP3wwdOyc0RmTciyi46HLIuA==" |
|
| 8890 | + | }, |
|
| 8891 | + | "node_modules/sade": { |
|
| 8892 | + | "version": "1.8.1", |
|
| 8893 | + | "resolved": "https://registry.npmjs.org/sade/-/sade-1.8.1.tgz", |
|
| 8894 | + | "integrity": "sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==", |
|
| 8895 | + | "dependencies": { |
|
| 8896 | + | "mri": "^1.1.0" |
|
| 8897 | + | }, |
|
| 8898 | + | "engines": { |
|
| 8899 | + | "node": ">=6" |
|
| 8900 | + | } |
|
| 8901 | + | }, |
|
| 8902 | + | "node_modules/safe-buffer": { |
|
| 8903 | + | "version": "5.2.1", |
|
| 8904 | + | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", |
|
| 8905 | + | "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", |
|
| 8906 | + | "funding": [ |
|
| 8907 | + | { |
|
| 8908 | + | "type": "github", |
|
| 8909 | + | "url": "https://github.com/sponsors/feross" |
|
| 8910 | + | }, |
|
| 8911 | + | { |
|
| 8912 | + | "type": "patreon", |
|
| 8913 | + | "url": "https://www.patreon.com/feross" |
|
| 8914 | + | }, |
|
| 8915 | + | { |
|
| 8916 | + | "type": "consulting", |
|
| 8917 | + | "url": "https://feross.org/support" |
|
| 8918 | + | } |
|
| 8919 | + | ] |
|
| 8920 | + | }, |
|
| 8921 | + | "node_modules/safe-regex-test": { |
|
| 8922 | + | "version": "1.0.0", |
|
| 8923 | + | "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", |
|
| 8924 | + | "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", |
|
| 8925 | + | "dev": true, |
|
| 8926 | + | "dependencies": { |
|
| 8927 | + | "call-bind": "^1.0.2", |
|
| 8928 | + | "get-intrinsic": "^1.1.3", |
|
| 8929 | + | "is-regex": "^1.1.4" |
|
| 8930 | + | }, |
|
| 8931 | + | "funding": { |
|
| 8932 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 8933 | + | } |
|
| 8934 | + | }, |
|
| 8935 | + | "node_modules/sass-formatter": { |
|
| 8936 | + | "version": "0.7.6", |
|
| 8937 | + | "resolved": "https://registry.npmjs.org/sass-formatter/-/sass-formatter-0.7.6.tgz", |
|
| 8938 | + | "integrity": "sha512-hXdxU6PCkiV3XAiSnX+XLqz2ohHoEnVUlrd8LEVMAI80uB1+OTScIkH9n6qQwImZpTye1r1WG1rbGUteHNhoHg==", |
|
| 8939 | + | "dependencies": { |
|
| 8940 | + | "suf-log": "^2.5.3" |
|
| 8941 | + | } |
|
| 8942 | + | }, |
|
| 8943 | + | "node_modules/satori": { |
|
| 8944 | + | "version": "0.1.2", |
|
| 8945 | + | "resolved": "https://registry.npmjs.org/satori/-/satori-0.1.2.tgz", |
|
| 8946 | + | "integrity": "sha512-1P08+PyNUzJ2P0bdI9reSJw+B/Whv9nThvoX4HAiAp9lNNTHtwtN9525TuEtELml7AEEvECpeOvBqMkAxcuQeQ==", |
|
| 8947 | + | "dependencies": { |
|
| 8948 | + | "@shuding/opentype.js": "1.4.0-beta.0", |
|
| 8949 | + | "css-background-parser": "^0.1.0", |
|
| 8950 | + | "css-box-shadow": "1.0.0-3", |
|
| 8951 | + | "css-to-react-native": "^3.0.0", |
|
| 8952 | + | "emoji-regex": "^10.2.1", |
|
| 8953 | + | "postcss-value-parser": "^4.2.0", |
|
| 8954 | + | "yoga-wasm-web": "^0.3.0" |
|
| 8955 | + | }, |
|
| 8956 | + | "engines": { |
|
| 8957 | + | "node": ">=16" |
|
| 8958 | + | } |
|
| 8959 | + | }, |
|
| 8960 | + | "node_modules/satori-html": { |
|
| 8961 | + | "version": "0.3.2", |
|
| 8962 | + | "resolved": "https://registry.npmjs.org/satori-html/-/satori-html-0.3.2.tgz", |
|
| 8963 | + | "integrity": "sha512-wjTh14iqADFKDK80e51/98MplTGfxz2RmIzh0GqShlf4a67+BooLywF17TvJPD6phO0Hxm7Mf1N5LtRYvdkYRA==", |
|
| 8964 | + | "dependencies": { |
|
| 8965 | + | "ultrahtml": "^1.2.0" |
|
| 8966 | + | } |
|
| 8967 | + | }, |
|
| 8968 | + | "node_modules/satori/node_modules/emoji-regex": { |
|
| 8969 | + | "version": "10.2.1", |
|
| 8970 | + | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.2.1.tgz", |
|
| 8971 | + | "integrity": "sha512-97g6QgOk8zlDRdgq1WxwgTMgEWGVAQvB5Fdpgc1MkNy56la5SKP9GsMXKDOdqwn90/41a8yPwIGk1Y6WVbeMQA==" |
|
| 8972 | + | }, |
|
| 8973 | + | "node_modules/sax": { |
|
| 8974 | + | "version": "1.2.4", |
|
| 8975 | + | "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", |
|
| 8976 | + | "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==", |
|
| 8977 | + | "dev": true |
|
| 8978 | + | }, |
|
| 8979 | + | "node_modules/section-matter": { |
|
| 8980 | + | "version": "1.0.0", |
|
| 8981 | + | "resolved": "https://registry.npmjs.org/section-matter/-/section-matter-1.0.0.tgz", |
|
| 8982 | + | "integrity": "sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==", |
|
| 8983 | + | "dependencies": { |
|
| 8984 | + | "extend-shallow": "^2.0.1", |
|
| 8985 | + | "kind-of": "^6.0.0" |
|
| 8986 | + | }, |
|
| 8987 | + | "engines": { |
|
| 8988 | + | "node": ">=4" |
|
| 8989 | + | } |
|
| 8990 | + | }, |
|
| 8991 | + | "node_modules/semver": { |
|
| 8992 | + | "version": "7.3.8", |
|
| 8993 | + | "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", |
|
| 8994 | + | "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", |
|
| 8995 | + | "dependencies": { |
|
| 8996 | + | "lru-cache": "^6.0.0" |
|
| 8997 | + | }, |
|
| 8998 | + | "bin": { |
|
| 8999 | + | "semver": "bin/semver.js" |
|
| 9000 | + | }, |
|
| 9001 | + | "engines": { |
|
| 9002 | + | "node": ">=10" |
|
| 9003 | + | } |
|
| 9004 | + | }, |
|
| 9005 | + | "node_modules/semver/node_modules/lru-cache": { |
|
| 9006 | + | "version": "6.0.0", |
|
| 9007 | + | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", |
|
| 9008 | + | "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", |
|
| 9009 | + | "dependencies": { |
|
| 9010 | + | "yallist": "^4.0.0" |
|
| 9011 | + | }, |
|
| 9012 | + | "engines": { |
|
| 9013 | + | "node": ">=10" |
|
| 9014 | + | } |
|
| 9015 | + | }, |
|
| 9016 | + | "node_modules/semver/node_modules/yallist": { |
|
| 9017 | + | "version": "4.0.0", |
|
| 9018 | + | "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", |
|
| 9019 | + | "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" |
|
| 9020 | + | }, |
|
| 9021 | + | "node_modules/server-destroy": { |
|
| 9022 | + | "version": "1.0.1", |
|
| 9023 | + | "resolved": "https://registry.npmjs.org/server-destroy/-/server-destroy-1.0.1.tgz", |
|
| 9024 | + | "integrity": "sha512-rb+9B5YBIEzYcD6x2VKidaa+cqYBJQKnU4oe4E3ANwRRN56yk/ua1YCJT1n21NTS8w6CcOclAKNP3PhdCXKYtQ==" |
|
| 9025 | + | }, |
|
| 9026 | + | "node_modules/sharp": { |
|
| 9027 | + | "version": "0.31.3", |
|
| 9028 | + | "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.31.3.tgz", |
|
| 9029 | + | "integrity": "sha512-XcR4+FCLBFKw1bdB+GEhnUNXNXvnt0tDo4WsBsraKymuo/IAuPuCBVAL2wIkUw2r/dwFW5Q5+g66Kwl2dgDFVg==", |
|
| 9030 | + | "hasInstallScript": true, |
|
| 9031 | + | "dependencies": { |
|
| 9032 | + | "color": "^4.2.3", |
|
| 9033 | + | "detect-libc": "^2.0.1", |
|
| 9034 | + | "node-addon-api": "^5.0.0", |
|
| 9035 | + | "prebuild-install": "^7.1.1", |
|
| 9036 | + | "semver": "^7.3.8", |
|
| 9037 | + | "simple-get": "^4.0.1", |
|
| 9038 | + | "tar-fs": "^2.1.1", |
|
| 9039 | + | "tunnel-agent": "^0.6.0" |
|
| 9040 | + | }, |
|
| 9041 | + | "engines": { |
|
| 9042 | + | "node": ">=14.15.0" |
|
| 9043 | + | }, |
|
| 9044 | + | "funding": { |
|
| 9045 | + | "url": "https://opencollective.com/libvips" |
|
| 9046 | + | } |
|
| 9047 | + | }, |
|
| 9048 | + | "node_modules/shebang-command": { |
|
| 9049 | + | "version": "2.0.0", |
|
| 9050 | + | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", |
|
| 9051 | + | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", |
|
| 9052 | + | "dependencies": { |
|
| 9053 | + | "shebang-regex": "^3.0.0" |
|
| 9054 | + | }, |
|
| 9055 | + | "engines": { |
|
| 9056 | + | "node": ">=8" |
|
| 9057 | + | } |
|
| 9058 | + | }, |
|
| 9059 | + | "node_modules/shebang-regex": { |
|
| 9060 | + | "version": "3.0.0", |
|
| 9061 | + | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", |
|
| 9062 | + | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", |
|
| 9063 | + | "engines": { |
|
| 9064 | + | "node": ">=8" |
|
| 9065 | + | } |
|
| 9066 | + | }, |
|
| 9067 | + | "node_modules/shiki": { |
|
| 9068 | + | "version": "0.11.1", |
|
| 9069 | + | "resolved": "https://registry.npmjs.org/shiki/-/shiki-0.11.1.tgz", |
|
| 9070 | + | "integrity": "sha512-EugY9VASFuDqOexOgXR18ZV+TbFrQHeCpEYaXamO+SZlsnT/2LxuLBX25GGtIrwaEVFXUAbUQ601SWE2rMwWHA==", |
|
| 9071 | + | "dependencies": { |
|
| 9072 | + | "jsonc-parser": "^3.0.0", |
|
| 9073 | + | "vscode-oniguruma": "^1.6.1", |
|
| 9074 | + | "vscode-textmate": "^6.0.0" |
|
| 9075 | + | } |
|
| 9076 | + | }, |
|
| 9077 | + | "node_modules/shiki/node_modules/jsonc-parser": { |
|
| 9078 | + | "version": "3.2.0", |
|
| 9079 | + | "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", |
|
| 9080 | + | "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==" |
|
| 9081 | + | }, |
|
| 9082 | + | "node_modules/side-channel": { |
|
| 9083 | + | "version": "1.0.4", |
|
| 9084 | + | "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", |
|
| 9085 | + | "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", |
|
| 9086 | + | "dev": true, |
|
| 9087 | + | "dependencies": { |
|
| 9088 | + | "call-bind": "^1.0.0", |
|
| 9089 | + | "get-intrinsic": "^1.0.2", |
|
| 9090 | + | "object-inspect": "^1.9.0" |
|
| 9091 | + | }, |
|
| 9092 | + | "funding": { |
|
| 9093 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 9094 | + | } |
|
| 9095 | + | }, |
|
| 9096 | + | "node_modules/signal-exit": { |
|
| 9097 | + | "version": "3.0.7", |
|
| 9098 | + | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", |
|
| 9099 | + | "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" |
|
| 9100 | + | }, |
|
| 9101 | + | "node_modules/simple-concat": { |
|
| 9102 | + | "version": "1.0.1", |
|
| 9103 | + | "resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz", |
|
| 9104 | + | "integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==", |
|
| 9105 | + | "funding": [ |
|
| 9106 | + | { |
|
| 9107 | + | "type": "github", |
|
| 9108 | + | "url": "https://github.com/sponsors/feross" |
|
| 9109 | + | }, |
|
| 9110 | + | { |
|
| 9111 | + | "type": "patreon", |
|
| 9112 | + | "url": "https://www.patreon.com/feross" |
|
| 9113 | + | }, |
|
| 9114 | + | { |
|
| 9115 | + | "type": "consulting", |
|
| 9116 | + | "url": "https://feross.org/support" |
|
| 9117 | + | } |
|
| 9118 | + | ] |
|
| 9119 | + | }, |
|
| 9120 | + | "node_modules/simple-get": { |
|
| 9121 | + | "version": "4.0.1", |
|
| 9122 | + | "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-4.0.1.tgz", |
|
| 9123 | + | "integrity": "sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==", |
|
| 9124 | + | "funding": [ |
|
| 9125 | + | { |
|
| 9126 | + | "type": "github", |
|
| 9127 | + | "url": "https://github.com/sponsors/feross" |
|
| 9128 | + | }, |
|
| 9129 | + | { |
|
| 9130 | + | "type": "patreon", |
|
| 9131 | + | "url": "https://www.patreon.com/feross" |
|
| 9132 | + | }, |
|
| 9133 | + | { |
|
| 9134 | + | "type": "consulting", |
|
| 9135 | + | "url": "https://feross.org/support" |
|
| 9136 | + | } |
|
| 9137 | + | ], |
|
| 9138 | + | "dependencies": { |
|
| 9139 | + | "decompress-response": "^6.0.0", |
|
| 9140 | + | "once": "^1.3.1", |
|
| 9141 | + | "simple-concat": "^1.0.0" |
|
| 9142 | + | } |
|
| 9143 | + | }, |
|
| 9144 | + | "node_modules/simple-swizzle": { |
|
| 9145 | + | "version": "0.2.2", |
|
| 9146 | + | "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", |
|
| 9147 | + | "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==", |
|
| 9148 | + | "dependencies": { |
|
| 9149 | + | "is-arrayish": "^0.3.1" |
|
| 9150 | + | } |
|
| 9151 | + | }, |
|
| 9152 | + | "node_modules/sisteransi": { |
|
| 9153 | + | "version": "1.0.5", |
|
| 9154 | + | "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", |
|
| 9155 | + | "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" |
|
| 9156 | + | }, |
|
| 9157 | + | "node_modules/sitemap": { |
|
| 9158 | + | "version": "7.1.1", |
|
| 9159 | + | "resolved": "https://registry.npmjs.org/sitemap/-/sitemap-7.1.1.tgz", |
|
| 9160 | + | "integrity": "sha512-mK3aFtjz4VdJN0igpIJrinf3EO8U8mxOPsTBzSsy06UtjZQJ3YY3o3Xa7zSc5nMqcMrRwlChHZ18Kxg0caiPBg==", |
|
| 9161 | + | "dev": true, |
|
| 9162 | + | "dependencies": { |
|
| 9163 | + | "@types/node": "^17.0.5", |
|
| 9164 | + | "@types/sax": "^1.2.1", |
|
| 9165 | + | "arg": "^5.0.0", |
|
| 9166 | + | "sax": "^1.2.4" |
|
| 9167 | + | }, |
|
| 9168 | + | "bin": { |
|
| 9169 | + | "sitemap": "dist/cli.js" |
|
| 9170 | + | }, |
|
| 9171 | + | "engines": { |
|
| 9172 | + | "node": ">=12.0.0", |
|
| 9173 | + | "npm": ">=5.6.0" |
|
| 9174 | + | } |
|
| 9175 | + | }, |
|
| 9176 | + | "node_modules/sitemap/node_modules/@types/node": { |
|
| 9177 | + | "version": "17.0.45", |
|
| 9178 | + | "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.45.tgz", |
|
| 9179 | + | "integrity": "sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==", |
|
| 9180 | + | "dev": true |
|
| 9181 | + | }, |
|
| 9182 | + | "node_modules/slash": { |
|
| 9183 | + | "version": "4.0.0", |
|
| 9184 | + | "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", |
|
| 9185 | + | "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", |
|
| 9186 | + | "engines": { |
|
| 9187 | + | "node": ">=12" |
|
| 9188 | + | }, |
|
| 9189 | + | "funding": { |
|
| 9190 | + | "url": "https://github.com/sponsors/sindresorhus" |
|
| 9191 | + | } |
|
| 9192 | + | }, |
|
| 9193 | + | "node_modules/slice-ansi": { |
|
| 9194 | + | "version": "4.0.0", |
|
| 9195 | + | "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", |
|
| 9196 | + | "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", |
|
| 9197 | + | "dev": true, |
|
| 9198 | + | "dependencies": { |
|
| 9199 | + | "ansi-styles": "^4.0.0", |
|
| 9200 | + | "astral-regex": "^2.0.0", |
|
| 9201 | + | "is-fullwidth-code-point": "^3.0.0" |
|
| 9202 | + | }, |
|
| 9203 | + | "engines": { |
|
| 9204 | + | "node": ">=10" |
|
| 9205 | + | }, |
|
| 9206 | + | "funding": { |
|
| 9207 | + | "url": "https://github.com/chalk/slice-ansi?sponsor=1" |
|
| 9208 | + | } |
|
| 9209 | + | }, |
|
| 9210 | + | "node_modules/slice-ansi/node_modules/ansi-styles": { |
|
| 9211 | + | "version": "4.3.0", |
|
| 9212 | + | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", |
|
| 9213 | + | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", |
|
| 9214 | + | "dev": true, |
|
| 9215 | + | "dependencies": { |
|
| 9216 | + | "color-convert": "^2.0.1" |
|
| 9217 | + | }, |
|
| 9218 | + | "engines": { |
|
| 9219 | + | "node": ">=8" |
|
| 9220 | + | }, |
|
| 9221 | + | "funding": { |
|
| 9222 | + | "url": "https://github.com/chalk/ansi-styles?sponsor=1" |
|
| 9223 | + | } |
|
| 9224 | + | }, |
|
| 9225 | + | "node_modules/slice-ansi/node_modules/color-convert": { |
|
| 9226 | + | "version": "2.0.1", |
|
| 9227 | + | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", |
|
| 9228 | + | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", |
|
| 9229 | + | "dev": true, |
|
| 9230 | + | "dependencies": { |
|
| 9231 | + | "color-name": "~1.1.4" |
|
| 9232 | + | }, |
|
| 9233 | + | "engines": { |
|
| 9234 | + | "node": ">=7.0.0" |
|
| 9235 | + | } |
|
| 9236 | + | }, |
|
| 9237 | + | "node_modules/slice-ansi/node_modules/color-name": { |
|
| 9238 | + | "version": "1.1.4", |
|
| 9239 | + | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", |
|
| 9240 | + | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", |
|
| 9241 | + | "dev": true |
|
| 9242 | + | }, |
|
| 9243 | + | "node_modules/source-map": { |
|
| 9244 | + | "version": "0.7.4", |
|
| 9245 | + | "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", |
|
| 9246 | + | "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", |
|
| 9247 | + | "engines": { |
|
| 9248 | + | "node": ">= 8" |
|
| 9249 | + | } |
|
| 9250 | + | }, |
|
| 9251 | + | "node_modules/source-map-js": { |
|
| 9252 | + | "version": "1.0.2", |
|
| 9253 | + | "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", |
|
| 9254 | + | "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", |
|
| 9255 | + | "engines": { |
|
| 9256 | + | "node": ">=0.10.0" |
|
| 9257 | + | } |
|
| 9258 | + | }, |
|
| 9259 | + | "node_modules/space-separated-tokens": { |
|
| 9260 | + | "version": "2.0.2", |
|
| 9261 | + | "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz", |
|
| 9262 | + | "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==", |
|
| 9263 | + | "funding": { |
|
| 9264 | + | "type": "github", |
|
| 9265 | + | "url": "https://github.com/sponsors/wooorm" |
|
| 9266 | + | } |
|
| 9267 | + | }, |
|
| 9268 | + | "node_modules/spdx-correct": { |
|
| 9269 | + | "version": "3.1.1", |
|
| 9270 | + | "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz", |
|
| 9271 | + | "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==", |
|
| 9272 | + | "dev": true, |
|
| 9273 | + | "dependencies": { |
|
| 9274 | + | "spdx-expression-parse": "^3.0.0", |
|
| 9275 | + | "spdx-license-ids": "^3.0.0" |
|
| 9276 | + | } |
|
| 9277 | + | }, |
|
| 9278 | + | "node_modules/spdx-exceptions": { |
|
| 9279 | + | "version": "2.3.0", |
|
| 9280 | + | "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", |
|
| 9281 | + | "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", |
|
| 9282 | + | "dev": true |
|
| 9283 | + | }, |
|
| 9284 | + | "node_modules/spdx-expression-parse": { |
|
| 9285 | + | "version": "3.0.1", |
|
| 9286 | + | "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", |
|
| 9287 | + | "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", |
|
| 9288 | + | "dev": true, |
|
| 9289 | + | "dependencies": { |
|
| 9290 | + | "spdx-exceptions": "^2.1.0", |
|
| 9291 | + | "spdx-license-ids": "^3.0.0" |
|
| 9292 | + | } |
|
| 9293 | + | }, |
|
| 9294 | + | "node_modules/spdx-license-ids": { |
|
| 9295 | + | "version": "3.0.12", |
|
| 9296 | + | "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.12.tgz", |
|
| 9297 | + | "integrity": "sha512-rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA==", |
|
| 9298 | + | "dev": true |
|
| 9299 | + | }, |
|
| 9300 | + | "node_modules/sprintf-js": { |
|
| 9301 | + | "version": "1.0.3", |
|
| 9302 | + | "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", |
|
| 9303 | + | "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" |
|
| 9304 | + | }, |
|
| 9305 | + | "node_modules/stop-iteration-iterator": { |
|
| 9306 | + | "version": "1.0.0", |
|
| 9307 | + | "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz", |
|
| 9308 | + | "integrity": "sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==", |
|
| 9309 | + | "dev": true, |
|
| 9310 | + | "dependencies": { |
|
| 9311 | + | "internal-slot": "^1.0.4" |
|
| 9312 | + | }, |
|
| 9313 | + | "engines": { |
|
| 9314 | + | "node": ">= 0.4" |
|
| 9315 | + | } |
|
| 9316 | + | }, |
|
| 9317 | + | "node_modules/streamsearch": { |
|
| 9318 | + | "version": "1.1.0", |
|
| 9319 | + | "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", |
|
| 9320 | + | "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", |
|
| 9321 | + | "engines": { |
|
| 9322 | + | "node": ">=10.0.0" |
|
| 9323 | + | } |
|
| 9324 | + | }, |
|
| 9325 | + | "node_modules/string_decoder": { |
|
| 9326 | + | "version": "1.3.0", |
|
| 9327 | + | "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", |
|
| 9328 | + | "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", |
|
| 9329 | + | "dependencies": { |
|
| 9330 | + | "safe-buffer": "~5.2.0" |
|
| 9331 | + | } |
|
| 9332 | + | }, |
|
| 9333 | + | "node_modules/string-width": { |
|
| 9334 | + | "version": "5.1.2", |
|
| 9335 | + | "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", |
|
| 9336 | + | "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", |
|
| 9337 | + | "dependencies": { |
|
| 9338 | + | "eastasianwidth": "^0.2.0", |
|
| 9339 | + | "emoji-regex": "^9.2.2", |
|
| 9340 | + | "strip-ansi": "^7.0.1" |
|
| 9341 | + | }, |
|
| 9342 | + | "engines": { |
|
| 9343 | + | "node": ">=12" |
|
| 9344 | + | }, |
|
| 9345 | + | "funding": { |
|
| 9346 | + | "url": "https://github.com/sponsors/sindresorhus" |
|
| 9347 | + | } |
|
| 9348 | + | }, |
|
| 9349 | + | "node_modules/string.prototype.codepointat": { |
|
| 9350 | + | "version": "0.2.1", |
|
| 9351 | + | "resolved": "https://registry.npmjs.org/string.prototype.codepointat/-/string.prototype.codepointat-0.2.1.tgz", |
|
| 9352 | + | "integrity": "sha512-2cBVCj6I4IOvEnjgO/hWqXjqBGsY+zwPmHl12Srk9IXSZ56Jwwmy+66XO5Iut/oQVR7t5ihYdLB0GMa4alEUcg==" |
|
| 9353 | + | }, |
|
| 9354 | + | "node_modules/string.prototype.trimend": { |
|
| 9355 | + | "version": "1.0.6", |
|
| 9356 | + | "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz", |
|
| 9357 | + | "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==", |
|
| 9358 | + | "dev": true, |
|
| 9359 | + | "dependencies": { |
|
| 9360 | + | "call-bind": "^1.0.2", |
|
| 9361 | + | "define-properties": "^1.1.4", |
|
| 9362 | + | "es-abstract": "^1.20.4" |
|
| 9363 | + | }, |
|
| 9364 | + | "funding": { |
|
| 9365 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 9366 | + | } |
|
| 9367 | + | }, |
|
| 9368 | + | "node_modules/string.prototype.trimstart": { |
|
| 9369 | + | "version": "1.0.6", |
|
| 9370 | + | "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz", |
|
| 9371 | + | "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==", |
|
| 9372 | + | "dev": true, |
|
| 9373 | + | "dependencies": { |
|
| 9374 | + | "call-bind": "^1.0.2", |
|
| 9375 | + | "define-properties": "^1.1.4", |
|
| 9376 | + | "es-abstract": "^1.20.4" |
|
| 9377 | + | }, |
|
| 9378 | + | "funding": { |
|
| 9379 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 9380 | + | } |
|
| 9381 | + | }, |
|
| 9382 | + | "node_modules/stringify-entities": { |
|
| 9383 | + | "version": "4.0.3", |
|
| 9384 | + | "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.3.tgz", |
|
| 9385 | + | "integrity": "sha512-BP9nNHMhhfcMbiuQKCqMjhDP5yBCAxsPu4pHFFzJ6Alo9dZgY4VLDPutXqIjpRiMoKdp7Av85Gr73Q5uH9k7+g==", |
|
| 9386 | + | "dependencies": { |
|
| 9387 | + | "character-entities-html4": "^2.0.0", |
|
| 9388 | + | "character-entities-legacy": "^3.0.0" |
|
| 9389 | + | }, |
|
| 9390 | + | "funding": { |
|
| 9391 | + | "type": "github", |
|
| 9392 | + | "url": "https://github.com/sponsors/wooorm" |
|
| 9393 | + | } |
|
| 9394 | + | }, |
|
| 9395 | + | "node_modules/strip-ansi": { |
|
| 9396 | + | "version": "7.0.1", |
|
| 9397 | + | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz", |
|
| 9398 | + | "integrity": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==", |
|
| 9399 | + | "dependencies": { |
|
| 9400 | + | "ansi-regex": "^6.0.1" |
|
| 9401 | + | }, |
|
| 9402 | + | "engines": { |
|
| 9403 | + | "node": ">=12" |
|
| 9404 | + | }, |
|
| 9405 | + | "funding": { |
|
| 9406 | + | "url": "https://github.com/chalk/strip-ansi?sponsor=1" |
|
| 9407 | + | } |
|
| 9408 | + | }, |
|
| 9409 | + | "node_modules/strip-bom": { |
|
| 9410 | + | "version": "3.0.0", |
|
| 9411 | + | "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", |
|
| 9412 | + | "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", |
|
| 9413 | + | "engines": { |
|
| 9414 | + | "node": ">=4" |
|
| 9415 | + | } |
|
| 9416 | + | }, |
|
| 9417 | + | "node_modules/strip-bom-string": { |
|
| 9418 | + | "version": "1.0.0", |
|
| 9419 | + | "resolved": "https://registry.npmjs.org/strip-bom-string/-/strip-bom-string-1.0.0.tgz", |
|
| 9420 | + | "integrity": "sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==", |
|
| 9421 | + | "engines": { |
|
| 9422 | + | "node": ">=0.10.0" |
|
| 9423 | + | } |
|
| 9424 | + | }, |
|
| 9425 | + | "node_modules/strip-final-newline": { |
|
| 9426 | + | "version": "3.0.0", |
|
| 9427 | + | "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", |
|
| 9428 | + | "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", |
|
| 9429 | + | "engines": { |
|
| 9430 | + | "node": ">=12" |
|
| 9431 | + | }, |
|
| 9432 | + | "funding": { |
|
| 9433 | + | "url": "https://github.com/sponsors/sindresorhus" |
|
| 9434 | + | } |
|
| 9435 | + | }, |
|
| 9436 | + | "node_modules/strip-indent": { |
|
| 9437 | + | "version": "3.0.0", |
|
| 9438 | + | "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", |
|
| 9439 | + | "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", |
|
| 9440 | + | "dev": true, |
|
| 9441 | + | "dependencies": { |
|
| 9442 | + | "min-indent": "^1.0.0" |
|
| 9443 | + | }, |
|
| 9444 | + | "engines": { |
|
| 9445 | + | "node": ">=8" |
|
| 9446 | + | } |
|
| 9447 | + | }, |
|
| 9448 | + | "node_modules/strip-json-comments": { |
|
| 9449 | + | "version": "3.1.1", |
|
| 9450 | + | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", |
|
| 9451 | + | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", |
|
| 9452 | + | "dev": true, |
|
| 9453 | + | "engines": { |
|
| 9454 | + | "node": ">=8" |
|
| 9455 | + | }, |
|
| 9456 | + | "funding": { |
|
| 9457 | + | "url": "https://github.com/sponsors/sindresorhus" |
|
| 9458 | + | } |
|
| 9459 | + | }, |
|
| 9460 | + | "node_modules/strnum": { |
|
| 9461 | + | "version": "1.0.5", |
|
| 9462 | + | "resolved": "https://registry.npmjs.org/strnum/-/strnum-1.0.5.tgz", |
|
| 9463 | + | "integrity": "sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==" |
|
| 9464 | + | }, |
|
| 9465 | + | "node_modules/style-search": { |
|
| 9466 | + | "version": "0.1.0", |
|
| 9467 | + | "resolved": "https://registry.npmjs.org/style-search/-/style-search-0.1.0.tgz", |
|
| 9468 | + | "integrity": "sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg==", |
|
| 9469 | + | "dev": true |
|
| 9470 | + | }, |
|
| 9471 | + | "node_modules/style-to-object": { |
|
| 9472 | + | "version": "0.4.1", |
|
| 9473 | + | "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-0.4.1.tgz", |
|
| 9474 | + | "integrity": "sha512-HFpbb5gr2ypci7Qw+IOhnP2zOU7e77b+rzM+wTzXzfi1PrtBCX0E7Pk4wL4iTLnhzZ+JgEGAhX81ebTg/aYjQw==", |
|
| 9475 | + | "dev": true, |
|
| 9476 | + | "dependencies": { |
|
| 9477 | + | "inline-style-parser": "0.1.1" |
|
| 9478 | + | } |
|
| 9479 | + | }, |
|
| 9480 | + | "node_modules/stylelint": { |
|
| 9481 | + | "version": "14.16.1", |
|
| 9482 | + | "resolved": "https://registry.npmjs.org/stylelint/-/stylelint-14.16.1.tgz", |
|
| 9483 | + | "integrity": "sha512-ErlzR/T3hhbV+a925/gbfc3f3Fep9/bnspMiJPorfGEmcBbXdS+oo6LrVtoUZ/w9fqD6o6k7PtUlCOsCRdjX/A==", |
|
| 9484 | + | "dev": true, |
|
| 9485 | + | "dependencies": { |
|
| 9486 | + | "@csstools/selector-specificity": "^2.0.2", |
|
| 9487 | + | "balanced-match": "^2.0.0", |
|
| 9488 | + | "colord": "^2.9.3", |
|
| 9489 | + | "cosmiconfig": "^7.1.0", |
|
| 9490 | + | "css-functions-list": "^3.1.0", |
|
| 9491 | + | "debug": "^4.3.4", |
|
| 9492 | + | "fast-glob": "^3.2.12", |
|
| 9493 | + | "fastest-levenshtein": "^1.0.16", |
|
| 9494 | + | "file-entry-cache": "^6.0.1", |
|
| 9495 | + | "global-modules": "^2.0.0", |
|
| 9496 | + | "globby": "^11.1.0", |
|
| 9497 | + | "globjoin": "^0.1.4", |
|
| 9498 | + | "html-tags": "^3.2.0", |
|
| 9499 | + | "ignore": "^5.2.1", |
|
| 9500 | + | "import-lazy": "^4.0.0", |
|
| 9501 | + | "imurmurhash": "^0.1.4", |
|
| 9502 | + | "is-plain-object": "^5.0.0", |
|
| 9503 | + | "known-css-properties": "^0.26.0", |
|
| 9504 | + | "mathml-tag-names": "^2.1.3", |
|
| 9505 | + | "meow": "^9.0.0", |
|
| 9506 | + | "micromatch": "^4.0.5", |
|
| 9507 | + | "normalize-path": "^3.0.0", |
|
| 9508 | + | "picocolors": "^1.0.0", |
|
| 9509 | + | "postcss": "^8.4.19", |
|
| 9510 | + | "postcss-media-query-parser": "^0.2.3", |
|
| 9511 | + | "postcss-resolve-nested-selector": "^0.1.1", |
|
| 9512 | + | "postcss-safe-parser": "^6.0.0", |
|
| 9513 | + | "postcss-selector-parser": "^6.0.11", |
|
| 9514 | + | "postcss-value-parser": "^4.2.0", |
|
| 9515 | + | "resolve-from": "^5.0.0", |
|
| 9516 | + | "string-width": "^4.2.3", |
|
| 9517 | + | "strip-ansi": "^6.0.1", |
|
| 9518 | + | "style-search": "^0.1.0", |
|
| 9519 | + | "supports-hyperlinks": "^2.3.0", |
|
| 9520 | + | "svg-tags": "^1.0.0", |
|
| 9521 | + | "table": "^6.8.1", |
|
| 9522 | + | "v8-compile-cache": "^2.3.0", |
|
| 9523 | + | "write-file-atomic": "^4.0.2" |
|
| 9524 | + | }, |
|
| 9525 | + | "bin": { |
|
| 9526 | + | "stylelint": "bin/stylelint.js" |
|
| 9527 | + | }, |
|
| 9528 | + | "engines": { |
|
| 9529 | + | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" |
|
| 9530 | + | }, |
|
| 9531 | + | "funding": { |
|
| 9532 | + | "type": "opencollective", |
|
| 9533 | + | "url": "https://opencollective.com/stylelint" |
|
| 9534 | + | } |
|
| 9535 | + | }, |
|
| 9536 | + | "node_modules/stylelint-config-prettier": { |
|
| 9537 | + | "version": "9.0.5", |
|
| 9538 | + | "resolved": "https://registry.npmjs.org/stylelint-config-prettier/-/stylelint-config-prettier-9.0.5.tgz", |
|
| 9539 | + | "integrity": "sha512-U44lELgLZhbAD/xy/vncZ2Pq8sh2TnpiPvo38Ifg9+zeioR+LAkHu0i6YORIOxFafZoVg0xqQwex6e6F25S5XA==", |
|
| 9540 | + | "dev": true, |
|
| 9541 | + | "bin": { |
|
| 9542 | + | "stylelint-config-prettier": "bin/check.js", |
|
| 9543 | + | "stylelint-config-prettier-check": "bin/check.js" |
|
| 9544 | + | }, |
|
| 9545 | + | "engines": { |
|
| 9546 | + | "node": ">= 12" |
|
| 9547 | + | }, |
|
| 9548 | + | "peerDependencies": { |
|
| 9549 | + | "stylelint": ">= 11.x < 15" |
|
| 9550 | + | } |
|
| 9551 | + | }, |
|
| 9552 | + | "node_modules/stylelint-config-recommended": { |
|
| 9553 | + | "version": "9.0.0", |
|
| 9554 | + | "resolved": "https://registry.npmjs.org/stylelint-config-recommended/-/stylelint-config-recommended-9.0.0.tgz", |
|
| 9555 | + | "integrity": "sha512-9YQSrJq4NvvRuTbzDsWX3rrFOzOlYBmZP+o513BJN/yfEmGSr0AxdvrWs0P/ilSpVV/wisamAHu5XSk8Rcf4CQ==", |
|
| 9556 | + | "dev": true, |
|
| 9557 | + | "peerDependencies": { |
|
| 9558 | + | "stylelint": "^14.10.0" |
|
| 9559 | + | } |
|
| 9560 | + | }, |
|
| 9561 | + | "node_modules/stylelint-config-standard": { |
|
| 9562 | + | "version": "29.0.0", |
|
| 9563 | + | "resolved": "https://registry.npmjs.org/stylelint-config-standard/-/stylelint-config-standard-29.0.0.tgz", |
|
| 9564 | + | "integrity": "sha512-uy8tZLbfq6ZrXy4JKu3W+7lYLgRQBxYTUUB88vPgQ+ZzAxdrvcaSUW9hOMNLYBnwH+9Kkj19M2DHdZ4gKwI7tg==", |
|
| 9565 | + | "dev": true, |
|
| 9566 | + | "dependencies": { |
|
| 9567 | + | "stylelint-config-recommended": "^9.0.0" |
|
| 9568 | + | }, |
|
| 9569 | + | "peerDependencies": { |
|
| 9570 | + | "stylelint": "^14.14.0" |
|
| 9571 | + | } |
|
| 9572 | + | }, |
|
| 9573 | + | "node_modules/stylelint/node_modules/ansi-regex": { |
|
| 9574 | + | "version": "5.0.1", |
|
| 9575 | + | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", |
|
| 9576 | + | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", |
|
| 9577 | + | "dev": true, |
|
| 9578 | + | "engines": { |
|
| 9579 | + | "node": ">=8" |
|
| 9580 | + | } |
|
| 9581 | + | }, |
|
| 9582 | + | "node_modules/stylelint/node_modules/balanced-match": { |
|
| 9583 | + | "version": "2.0.0", |
|
| 9584 | + | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-2.0.0.tgz", |
|
| 9585 | + | "integrity": "sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==", |
|
| 9586 | + | "dev": true |
|
| 9587 | + | }, |
|
| 9588 | + | "node_modules/stylelint/node_modules/emoji-regex": { |
|
| 9589 | + | "version": "8.0.0", |
|
| 9590 | + | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", |
|
| 9591 | + | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", |
|
| 9592 | + | "dev": true |
|
| 9593 | + | }, |
|
| 9594 | + | "node_modules/stylelint/node_modules/postcss-selector-parser": { |
|
| 9595 | + | "version": "6.0.11", |
|
| 9596 | + | "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.11.tgz", |
|
| 9597 | + | "integrity": "sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==", |
|
| 9598 | + | "dev": true, |
|
| 9599 | + | "dependencies": { |
|
| 9600 | + | "cssesc": "^3.0.0", |
|
| 9601 | + | "util-deprecate": "^1.0.2" |
|
| 9602 | + | }, |
|
| 9603 | + | "engines": { |
|
| 9604 | + | "node": ">=4" |
|
| 9605 | + | } |
|
| 9606 | + | }, |
|
| 9607 | + | "node_modules/stylelint/node_modules/resolve-from": { |
|
| 9608 | + | "version": "5.0.0", |
|
| 9609 | + | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", |
|
| 9610 | + | "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", |
|
| 9611 | + | "dev": true, |
|
| 9612 | + | "engines": { |
|
| 9613 | + | "node": ">=8" |
|
| 9614 | + | } |
|
| 9615 | + | }, |
|
| 9616 | + | "node_modules/stylelint/node_modules/string-width": { |
|
| 9617 | + | "version": "4.2.3", |
|
| 9618 | + | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", |
|
| 9619 | + | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", |
|
| 9620 | + | "dev": true, |
|
| 9621 | + | "dependencies": { |
|
| 9622 | + | "emoji-regex": "^8.0.0", |
|
| 9623 | + | "is-fullwidth-code-point": "^3.0.0", |
|
| 9624 | + | "strip-ansi": "^6.0.1" |
|
| 9625 | + | }, |
|
| 9626 | + | "engines": { |
|
| 9627 | + | "node": ">=8" |
|
| 9628 | + | } |
|
| 9629 | + | }, |
|
| 9630 | + | "node_modules/stylelint/node_modules/strip-ansi": { |
|
| 9631 | + | "version": "6.0.1", |
|
| 9632 | + | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", |
|
| 9633 | + | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", |
|
| 9634 | + | "dev": true, |
|
| 9635 | + | "dependencies": { |
|
| 9636 | + | "ansi-regex": "^5.0.1" |
|
| 9637 | + | }, |
|
| 9638 | + | "engines": { |
|
| 9639 | + | "node": ">=8" |
|
| 9640 | + | } |
|
| 9641 | + | }, |
|
| 9642 | + | "node_modules/suf-log": { |
|
| 9643 | + | "version": "2.5.3", |
|
| 9644 | + | "resolved": "https://registry.npmjs.org/suf-log/-/suf-log-2.5.3.tgz", |
|
| 9645 | + | "integrity": "sha512-KvC8OPjzdNOe+xQ4XWJV2whQA0aM1kGVczMQ8+dStAO6KfEB140JEVQ9dE76ONZ0/Ylf67ni4tILPJB41U0eow==", |
|
| 9646 | + | "dependencies": { |
|
| 9647 | + | "s.color": "0.0.15" |
|
| 9648 | + | } |
|
| 9649 | + | }, |
|
| 9650 | + | "node_modules/supports-color": { |
|
| 9651 | + | "version": "5.5.0", |
|
| 9652 | + | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", |
|
| 9653 | + | "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", |
|
| 9654 | + | "dependencies": { |
|
| 9655 | + | "has-flag": "^3.0.0" |
|
| 9656 | + | }, |
|
| 9657 | + | "engines": { |
|
| 9658 | + | "node": ">=4" |
|
| 9659 | + | } |
|
| 9660 | + | }, |
|
| 9661 | + | "node_modules/supports-esm": { |
|
| 9662 | + | "version": "1.0.0", |
|
| 9663 | + | "resolved": "https://registry.npmjs.org/supports-esm/-/supports-esm-1.0.0.tgz", |
|
| 9664 | + | "integrity": "sha512-96Am8CDqUaC0I2+C/swJ0yEvM8ZnGn4unoers/LSdE4umhX7mELzqyLzx3HnZAluq5PXIsGMKqa7NkqaeHMPcg==", |
|
| 9665 | + | "dependencies": { |
|
| 9666 | + | "has-package-exports": "^1.1.0" |
|
| 9667 | + | } |
|
| 9668 | + | }, |
|
| 9669 | + | "node_modules/supports-hyperlinks": { |
|
| 9670 | + | "version": "2.3.0", |
|
| 9671 | + | "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz", |
|
| 9672 | + | "integrity": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==", |
|
| 9673 | + | "dev": true, |
|
| 9674 | + | "dependencies": { |
|
| 9675 | + | "has-flag": "^4.0.0", |
|
| 9676 | + | "supports-color": "^7.0.0" |
|
| 9677 | + | }, |
|
| 9678 | + | "engines": { |
|
| 9679 | + | "node": ">=8" |
|
| 9680 | + | } |
|
| 9681 | + | }, |
|
| 9682 | + | "node_modules/supports-hyperlinks/node_modules/has-flag": { |
|
| 9683 | + | "version": "4.0.0", |
|
| 9684 | + | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", |
|
| 9685 | + | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", |
|
| 9686 | + | "dev": true, |
|
| 9687 | + | "engines": { |
|
| 9688 | + | "node": ">=8" |
|
| 9689 | + | } |
|
| 9690 | + | }, |
|
| 9691 | + | "node_modules/supports-hyperlinks/node_modules/supports-color": { |
|
| 9692 | + | "version": "7.2.0", |
|
| 9693 | + | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", |
|
| 9694 | + | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", |
|
| 9695 | + | "dev": true, |
|
| 9696 | + | "dependencies": { |
|
| 9697 | + | "has-flag": "^4.0.0" |
|
| 9698 | + | }, |
|
| 9699 | + | "engines": { |
|
| 9700 | + | "node": ">=8" |
|
| 9701 | + | } |
|
| 9702 | + | }, |
|
| 9703 | + | "node_modules/supports-preserve-symlinks-flag": { |
|
| 9704 | + | "version": "1.0.0", |
|
| 9705 | + | "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", |
|
| 9706 | + | "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", |
|
| 9707 | + | "engines": { |
|
| 9708 | + | "node": ">= 0.4" |
|
| 9709 | + | }, |
|
| 9710 | + | "funding": { |
|
| 9711 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 9712 | + | } |
|
| 9713 | + | }, |
|
| 9714 | + | "node_modules/svg-tags": { |
|
| 9715 | + | "version": "1.0.0", |
|
| 9716 | + | "resolved": "https://registry.npmjs.org/svg-tags/-/svg-tags-1.0.0.tgz", |
|
| 9717 | + | "integrity": "sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==", |
|
| 9718 | + | "dev": true |
|
| 9719 | + | }, |
|
| 9720 | + | "node_modules/synckit": { |
|
| 9721 | + | "version": "0.8.5", |
|
| 9722 | + | "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.8.5.tgz", |
|
| 9723 | + | "integrity": "sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==", |
|
| 9724 | + | "dependencies": { |
|
| 9725 | + | "@pkgr/utils": "^2.3.1", |
|
| 9726 | + | "tslib": "^2.5.0" |
|
| 9727 | + | }, |
|
| 9728 | + | "engines": { |
|
| 9729 | + | "node": "^14.18.0 || >=16.0.0" |
|
| 9730 | + | }, |
|
| 9731 | + | "funding": { |
|
| 9732 | + | "url": "https://opencollective.com/unts" |
|
| 9733 | + | } |
|
| 9734 | + | }, |
|
| 9735 | + | "node_modules/table": { |
|
| 9736 | + | "version": "6.8.1", |
|
| 9737 | + | "resolved": "https://registry.npmjs.org/table/-/table-6.8.1.tgz", |
|
| 9738 | + | "integrity": "sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==", |
|
| 9739 | + | "dev": true, |
|
| 9740 | + | "dependencies": { |
|
| 9741 | + | "ajv": "^8.0.1", |
|
| 9742 | + | "lodash.truncate": "^4.4.2", |
|
| 9743 | + | "slice-ansi": "^4.0.0", |
|
| 9744 | + | "string-width": "^4.2.3", |
|
| 9745 | + | "strip-ansi": "^6.0.1" |
|
| 9746 | + | }, |
|
| 9747 | + | "engines": { |
|
| 9748 | + | "node": ">=10.0.0" |
|
| 9749 | + | } |
|
| 9750 | + | }, |
|
| 9751 | + | "node_modules/table/node_modules/ajv": { |
|
| 9752 | + | "version": "8.12.0", |
|
| 9753 | + | "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", |
|
| 9754 | + | "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", |
|
| 9755 | + | "dev": true, |
|
| 9756 | + | "dependencies": { |
|
| 9757 | + | "fast-deep-equal": "^3.1.1", |
|
| 9758 | + | "json-schema-traverse": "^1.0.0", |
|
| 9759 | + | "require-from-string": "^2.0.2", |
|
| 9760 | + | "uri-js": "^4.2.2" |
|
| 9761 | + | }, |
|
| 9762 | + | "funding": { |
|
| 9763 | + | "type": "github", |
|
| 9764 | + | "url": "https://github.com/sponsors/epoberezkin" |
|
| 9765 | + | } |
|
| 9766 | + | }, |
|
| 9767 | + | "node_modules/table/node_modules/ansi-regex": { |
|
| 9768 | + | "version": "5.0.1", |
|
| 9769 | + | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", |
|
| 9770 | + | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", |
|
| 9771 | + | "dev": true, |
|
| 9772 | + | "engines": { |
|
| 9773 | + | "node": ">=8" |
|
| 9774 | + | } |
|
| 9775 | + | }, |
|
| 9776 | + | "node_modules/table/node_modules/emoji-regex": { |
|
| 9777 | + | "version": "8.0.0", |
|
| 9778 | + | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", |
|
| 9779 | + | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", |
|
| 9780 | + | "dev": true |
|
| 9781 | + | }, |
|
| 9782 | + | "node_modules/table/node_modules/json-schema-traverse": { |
|
| 9783 | + | "version": "1.0.0", |
|
| 9784 | + | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", |
|
| 9785 | + | "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", |
|
| 9786 | + | "dev": true |
|
| 9787 | + | }, |
|
| 9788 | + | "node_modules/table/node_modules/string-width": { |
|
| 9789 | + | "version": "4.2.3", |
|
| 9790 | + | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", |
|
| 9791 | + | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", |
|
| 9792 | + | "dev": true, |
|
| 9793 | + | "dependencies": { |
|
| 9794 | + | "emoji-regex": "^8.0.0", |
|
| 9795 | + | "is-fullwidth-code-point": "^3.0.0", |
|
| 9796 | + | "strip-ansi": "^6.0.1" |
|
| 9797 | + | }, |
|
| 9798 | + | "engines": { |
|
| 9799 | + | "node": ">=8" |
|
| 9800 | + | } |
|
| 9801 | + | }, |
|
| 9802 | + | "node_modules/table/node_modules/strip-ansi": { |
|
| 9803 | + | "version": "6.0.1", |
|
| 9804 | + | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", |
|
| 9805 | + | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", |
|
| 9806 | + | "dev": true, |
|
| 9807 | + | "dependencies": { |
|
| 9808 | + | "ansi-regex": "^5.0.1" |
|
| 9809 | + | }, |
|
| 9810 | + | "engines": { |
|
| 9811 | + | "node": ">=8" |
|
| 9812 | + | } |
|
| 9813 | + | }, |
|
| 9814 | + | "node_modules/tailwindcss": { |
|
| 9815 | + | "version": "3.2.7", |
|
| 9816 | + | "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.2.7.tgz", |
|
| 9817 | + | "integrity": "sha512-B6DLqJzc21x7wntlH/GsZwEXTBttVSl1FtCzC8WP4oBc/NKef7kaax5jeihkkCEWc831/5NDJ9gRNDK6NEioQQ==", |
|
| 9818 | + | "dev": true, |
|
| 9819 | + | "dependencies": { |
|
| 9820 | + | "arg": "^5.0.2", |
|
| 9821 | + | "chokidar": "^3.5.3", |
|
| 9822 | + | "color-name": "^1.1.4", |
|
| 9823 | + | "detective": "^5.2.1", |
|
| 9824 | + | "didyoumean": "^1.2.2", |
|
| 9825 | + | "dlv": "^1.1.3", |
|
| 9826 | + | "fast-glob": "^3.2.12", |
|
| 9827 | + | "glob-parent": "^6.0.2", |
|
| 9828 | + | "is-glob": "^4.0.3", |
|
| 9829 | + | "lilconfig": "^2.0.6", |
|
| 9830 | + | "micromatch": "^4.0.5", |
|
| 9831 | + | "normalize-path": "^3.0.0", |
|
| 9832 | + | "object-hash": "^3.0.0", |
|
| 9833 | + | "picocolors": "^1.0.0", |
|
| 9834 | + | "postcss": "^8.0.9", |
|
| 9835 | + | "postcss-import": "^14.1.0", |
|
| 9836 | + | "postcss-js": "^4.0.0", |
|
| 9837 | + | "postcss-load-config": "^3.1.4", |
|
| 9838 | + | "postcss-nested": "6.0.0", |
|
| 9839 | + | "postcss-selector-parser": "^6.0.11", |
|
| 9840 | + | "postcss-value-parser": "^4.2.0", |
|
| 9841 | + | "quick-lru": "^5.1.1", |
|
| 9842 | + | "resolve": "^1.22.1" |
|
| 9843 | + | }, |
|
| 9844 | + | "bin": { |
|
| 9845 | + | "tailwind": "lib/cli.js", |
|
| 9846 | + | "tailwindcss": "lib/cli.js" |
|
| 9847 | + | }, |
|
| 9848 | + | "engines": { |
|
| 9849 | + | "node": ">=12.13.0" |
|
| 9850 | + | }, |
|
| 9851 | + | "peerDependencies": { |
|
| 9852 | + | "postcss": "^8.0.9" |
|
| 9853 | + | } |
|
| 9854 | + | }, |
|
| 9855 | + | "node_modules/tailwindcss/node_modules/color-name": { |
|
| 9856 | + | "version": "1.1.4", |
|
| 9857 | + | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", |
|
| 9858 | + | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", |
|
| 9859 | + | "dev": true |
|
| 9860 | + | }, |
|
| 9861 | + | "node_modules/tailwindcss/node_modules/postcss-load-config": { |
|
| 9862 | + | "version": "3.1.4", |
|
| 9863 | + | "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.4.tgz", |
|
| 9864 | + | "integrity": "sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==", |
|
| 9865 | + | "dev": true, |
|
| 9866 | + | "dependencies": { |
|
| 9867 | + | "lilconfig": "^2.0.5", |
|
| 9868 | + | "yaml": "^1.10.2" |
|
| 9869 | + | }, |
|
| 9870 | + | "engines": { |
|
| 9871 | + | "node": ">= 10" |
|
| 9872 | + | }, |
|
| 9873 | + | "funding": { |
|
| 9874 | + | "type": "opencollective", |
|
| 9875 | + | "url": "https://opencollective.com/postcss/" |
|
| 9876 | + | }, |
|
| 9877 | + | "peerDependencies": { |
|
| 9878 | + | "postcss": ">=8.0.9", |
|
| 9879 | + | "ts-node": ">=9.0.0" |
|
| 9880 | + | }, |
|
| 9881 | + | "peerDependenciesMeta": { |
|
| 9882 | + | "postcss": { |
|
| 9883 | + | "optional": true |
|
| 9884 | + | }, |
|
| 9885 | + | "ts-node": { |
|
| 9886 | + | "optional": true |
|
| 9887 | + | } |
|
| 9888 | + | } |
|
| 9889 | + | }, |
|
| 9890 | + | "node_modules/tailwindcss/node_modules/postcss-selector-parser": { |
|
| 9891 | + | "version": "6.0.11", |
|
| 9892 | + | "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.11.tgz", |
|
| 9893 | + | "integrity": "sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==", |
|
| 9894 | + | "dev": true, |
|
| 9895 | + | "dependencies": { |
|
| 9896 | + | "cssesc": "^3.0.0", |
|
| 9897 | + | "util-deprecate": "^1.0.2" |
|
| 9898 | + | }, |
|
| 9899 | + | "engines": { |
|
| 9900 | + | "node": ">=4" |
|
| 9901 | + | } |
|
| 9902 | + | }, |
|
| 9903 | + | "node_modules/tailwindcss/node_modules/quick-lru": { |
|
| 9904 | + | "version": "5.1.1", |
|
| 9905 | + | "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", |
|
| 9906 | + | "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", |
|
| 9907 | + | "dev": true, |
|
| 9908 | + | "engines": { |
|
| 9909 | + | "node": ">=10" |
|
| 9910 | + | }, |
|
| 9911 | + | "funding": { |
|
| 9912 | + | "url": "https://github.com/sponsors/sindresorhus" |
|
| 9913 | + | } |
|
| 9914 | + | }, |
|
| 9915 | + | "node_modules/tailwindcss/node_modules/yaml": { |
|
| 9916 | + | "version": "1.10.2", |
|
| 9917 | + | "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", |
|
| 9918 | + | "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", |
|
| 9919 | + | "dev": true, |
|
| 9920 | + | "engines": { |
|
| 9921 | + | "node": ">= 6" |
|
| 9922 | + | } |
|
| 9923 | + | }, |
|
| 9924 | + | "node_modules/tapable": { |
|
| 9925 | + | "version": "2.2.1", |
|
| 9926 | + | "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", |
|
| 9927 | + | "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", |
|
| 9928 | + | "dev": true, |
|
| 9929 | + | "engines": { |
|
| 9930 | + | "node": ">=6" |
|
| 9931 | + | } |
|
| 9932 | + | }, |
|
| 9933 | + | "node_modules/tar-fs": { |
|
| 9934 | + | "version": "2.1.1", |
|
| 9935 | + | "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", |
|
| 9936 | + | "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==", |
|
| 9937 | + | "dependencies": { |
|
| 9938 | + | "chownr": "^1.1.1", |
|
| 9939 | + | "mkdirp-classic": "^0.5.2", |
|
| 9940 | + | "pump": "^3.0.0", |
|
| 9941 | + | "tar-stream": "^2.1.4" |
|
| 9942 | + | } |
|
| 9943 | + | }, |
|
| 9944 | + | "node_modules/tar-stream": { |
|
| 9945 | + | "version": "2.2.0", |
|
| 9946 | + | "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", |
|
| 9947 | + | "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", |
|
| 9948 | + | "dependencies": { |
|
| 9949 | + | "bl": "^4.0.3", |
|
| 9950 | + | "end-of-stream": "^1.4.1", |
|
| 9951 | + | "fs-constants": "^1.0.0", |
|
| 9952 | + | "inherits": "^2.0.3", |
|
| 9953 | + | "readable-stream": "^3.1.1" |
|
| 9954 | + | }, |
|
| 9955 | + | "engines": { |
|
| 9956 | + | "node": ">=6" |
|
| 9957 | + | } |
|
| 9958 | + | }, |
|
| 9959 | + | "node_modules/tar-stream/node_modules/bl": { |
|
| 9960 | + | "version": "4.1.0", |
|
| 9961 | + | "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", |
|
| 9962 | + | "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", |
|
| 9963 | + | "dependencies": { |
|
| 9964 | + | "buffer": "^5.5.0", |
|
| 9965 | + | "inherits": "^2.0.4", |
|
| 9966 | + | "readable-stream": "^3.4.0" |
|
| 9967 | + | } |
|
| 9968 | + | }, |
|
| 9969 | + | "node_modules/tar-stream/node_modules/buffer": { |
|
| 9970 | + | "version": "5.7.1", |
|
| 9971 | + | "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", |
|
| 9972 | + | "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", |
|
| 9973 | + | "funding": [ |
|
| 9974 | + | { |
|
| 9975 | + | "type": "github", |
|
| 9976 | + | "url": "https://github.com/sponsors/feross" |
|
| 9977 | + | }, |
|
| 9978 | + | { |
|
| 9979 | + | "type": "patreon", |
|
| 9980 | + | "url": "https://www.patreon.com/feross" |
|
| 9981 | + | }, |
|
| 9982 | + | { |
|
| 9983 | + | "type": "consulting", |
|
| 9984 | + | "url": "https://feross.org/support" |
|
| 9985 | + | } |
|
| 9986 | + | ], |
|
| 9987 | + | "dependencies": { |
|
| 9988 | + | "base64-js": "^1.3.1", |
|
| 9989 | + | "ieee754": "^1.1.13" |
|
| 9990 | + | } |
|
| 9991 | + | }, |
|
| 9992 | + | "node_modules/text-table": { |
|
| 9993 | + | "version": "0.2.0", |
|
| 9994 | + | "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", |
|
| 9995 | + | "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", |
|
| 9996 | + | "dev": true |
|
| 9997 | + | }, |
|
| 9998 | + | "node_modules/throttles": { |
|
| 9999 | + | "version": "1.0.1", |
|
| 10000 | + | "resolved": "https://registry.npmjs.org/throttles/-/throttles-1.0.1.tgz", |
|
| 10001 | + | "integrity": "sha512-fab7Xg+zELr9KOv4fkaBoe/b3L0GMGLd0IBSCn16GoE/Qx6/OfCr1eGNyEcDU2pUA79qQfZ8kPQWlRuok4YwTw==", |
|
| 10002 | + | "engines": { |
|
| 10003 | + | "node": ">=6" |
|
| 10004 | + | } |
|
| 10005 | + | }, |
|
| 10006 | + | "node_modules/tiny-glob": { |
|
| 10007 | + | "version": "0.2.9", |
|
| 10008 | + | "resolved": "https://registry.npmjs.org/tiny-glob/-/tiny-glob-0.2.9.tgz", |
|
| 10009 | + | "integrity": "sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==", |
|
| 10010 | + | "dependencies": { |
|
| 10011 | + | "globalyzer": "0.1.0", |
|
| 10012 | + | "globrex": "^0.1.2" |
|
| 10013 | + | } |
|
| 10014 | + | }, |
|
| 10015 | + | "node_modules/to-fast-properties": { |
|
| 10016 | + | "version": "2.0.0", |
|
| 10017 | + | "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", |
|
| 10018 | + | "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", |
|
| 10019 | + | "engines": { |
|
| 10020 | + | "node": ">=4" |
|
| 10021 | + | } |
|
| 10022 | + | }, |
|
| 10023 | + | "node_modules/to-regex-range": { |
|
| 10024 | + | "version": "5.0.1", |
|
| 10025 | + | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", |
|
| 10026 | + | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", |
|
| 10027 | + | "dependencies": { |
|
| 10028 | + | "is-number": "^7.0.0" |
|
| 10029 | + | }, |
|
| 10030 | + | "engines": { |
|
| 10031 | + | "node": ">=8.0" |
|
| 10032 | + | } |
|
| 10033 | + | }, |
|
| 10034 | + | "node_modules/trim-lines": { |
|
| 10035 | + | "version": "3.0.1", |
|
| 10036 | + | "resolved": "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz", |
|
| 10037 | + | "integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==", |
|
| 10038 | + | "funding": { |
|
| 10039 | + | "type": "github", |
|
| 10040 | + | "url": "https://github.com/sponsors/wooorm" |
|
| 10041 | + | } |
|
| 10042 | + | }, |
|
| 10043 | + | "node_modules/trim-newlines": { |
|
| 10044 | + | "version": "3.0.1", |
|
| 10045 | + | "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz", |
|
| 10046 | + | "integrity": "sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==", |
|
| 10047 | + | "dev": true, |
|
| 10048 | + | "engines": { |
|
| 10049 | + | "node": ">=8" |
|
| 10050 | + | } |
|
| 10051 | + | }, |
|
| 10052 | + | "node_modules/trough": { |
|
| 10053 | + | "version": "2.1.0", |
|
| 10054 | + | "resolved": "https://registry.npmjs.org/trough/-/trough-2.1.0.tgz", |
|
| 10055 | + | "integrity": "sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g==", |
|
| 10056 | + | "funding": { |
|
| 10057 | + | "type": "github", |
|
| 10058 | + | "url": "https://github.com/sponsors/wooorm" |
|
| 10059 | + | } |
|
| 10060 | + | }, |
|
| 10061 | + | "node_modules/tsconfig-paths": { |
|
| 10062 | + | "version": "3.14.1", |
|
| 10063 | + | "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz", |
|
| 10064 | + | "integrity": "sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==", |
|
| 10065 | + | "dev": true, |
|
| 10066 | + | "dependencies": { |
|
| 10067 | + | "@types/json5": "^0.0.29", |
|
| 10068 | + | "json5": "^1.0.1", |
|
| 10069 | + | "minimist": "^1.2.6", |
|
| 10070 | + | "strip-bom": "^3.0.0" |
|
| 10071 | + | } |
|
| 10072 | + | }, |
|
| 10073 | + | "node_modules/tsconfig-paths/node_modules/json5": { |
|
| 10074 | + | "version": "1.0.2", |
|
| 10075 | + | "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", |
|
| 10076 | + | "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", |
|
| 10077 | + | "dev": true, |
|
| 10078 | + | "dependencies": { |
|
| 10079 | + | "minimist": "^1.2.0" |
|
| 10080 | + | }, |
|
| 10081 | + | "bin": { |
|
| 10082 | + | "json5": "lib/cli.js" |
|
| 10083 | + | } |
|
| 10084 | + | }, |
|
| 10085 | + | "node_modules/tsconfig-resolver": { |
|
| 10086 | + | "version": "3.0.1", |
|
| 10087 | + | "resolved": "https://registry.npmjs.org/tsconfig-resolver/-/tsconfig-resolver-3.0.1.tgz", |
|
| 10088 | + | "integrity": "sha512-ZHqlstlQF449v8glscGRXzL6l2dZvASPCdXJRWG4gHEZlUVx2Jtmr+a2zeVG4LCsKhDXKRj5R3h0C/98UcVAQg==", |
|
| 10089 | + | "dependencies": { |
|
| 10090 | + | "@types/json5": "^0.0.30", |
|
| 10091 | + | "@types/resolve": "^1.17.0", |
|
| 10092 | + | "json5": "^2.1.3", |
|
| 10093 | + | "resolve": "^1.17.0", |
|
| 10094 | + | "strip-bom": "^4.0.0", |
|
| 10095 | + | "type-fest": "^0.13.1" |
|
| 10096 | + | }, |
|
| 10097 | + | "funding": { |
|
| 10098 | + | "url": "https://github.com/sponsors/ifiokjr" |
|
| 10099 | + | } |
|
| 10100 | + | }, |
|
| 10101 | + | "node_modules/tsconfig-resolver/node_modules/@types/json5": { |
|
| 10102 | + | "version": "0.0.30", |
|
| 10103 | + | "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.30.tgz", |
|
| 10104 | + | "integrity": "sha512-sqm9g7mHlPY/43fcSNrCYfOeX9zkTTK+euO5E6+CVijSMm5tTjkVdwdqRkY3ljjIAf8679vps5jKUoJBCLsMDA==" |
|
| 10105 | + | }, |
|
| 10106 | + | "node_modules/tsconfig-resolver/node_modules/strip-bom": { |
|
| 10107 | + | "version": "4.0.0", |
|
| 10108 | + | "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", |
|
| 10109 | + | "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", |
|
| 10110 | + | "engines": { |
|
| 10111 | + | "node": ">=8" |
|
| 10112 | + | } |
|
| 10113 | + | }, |
|
| 10114 | + | "node_modules/tsconfig-resolver/node_modules/type-fest": { |
|
| 10115 | + | "version": "0.13.1", |
|
| 10116 | + | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.13.1.tgz", |
|
| 10117 | + | "integrity": "sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==", |
|
| 10118 | + | "engines": { |
|
| 10119 | + | "node": ">=10" |
|
| 10120 | + | }, |
|
| 10121 | + | "funding": { |
|
| 10122 | + | "url": "https://github.com/sponsors/sindresorhus" |
|
| 10123 | + | } |
|
| 10124 | + | }, |
|
| 10125 | + | "node_modules/tslib": { |
|
| 10126 | + | "version": "2.5.0", |
|
| 10127 | + | "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", |
|
| 10128 | + | "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" |
|
| 10129 | + | }, |
|
| 10130 | + | "node_modules/tsutils": { |
|
| 10131 | + | "version": "3.21.0", |
|
| 10132 | + | "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", |
|
| 10133 | + | "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", |
|
| 10134 | + | "dev": true, |
|
| 10135 | + | "dependencies": { |
|
| 10136 | + | "tslib": "^1.8.1" |
|
| 10137 | + | }, |
|
| 10138 | + | "engines": { |
|
| 10139 | + | "node": ">= 6" |
|
| 10140 | + | }, |
|
| 10141 | + | "peerDependencies": { |
|
| 10142 | + | "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" |
|
| 10143 | + | } |
|
| 10144 | + | }, |
|
| 10145 | + | "node_modules/tsutils/node_modules/tslib": { |
|
| 10146 | + | "version": "1.14.1", |
|
| 10147 | + | "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", |
|
| 10148 | + | "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", |
|
| 10149 | + | "dev": true |
|
| 10150 | + | }, |
|
| 10151 | + | "node_modules/tunnel-agent": { |
|
| 10152 | + | "version": "0.6.0", |
|
| 10153 | + | "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", |
|
| 10154 | + | "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", |
|
| 10155 | + | "dependencies": { |
|
| 10156 | + | "safe-buffer": "^5.0.1" |
|
| 10157 | + | }, |
|
| 10158 | + | "engines": { |
|
| 10159 | + | "node": "*" |
|
| 10160 | + | } |
|
| 10161 | + | }, |
|
| 10162 | + | "node_modules/type-check": { |
|
| 10163 | + | "version": "0.4.0", |
|
| 10164 | + | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", |
|
| 10165 | + | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", |
|
| 10166 | + | "dev": true, |
|
| 10167 | + | "dependencies": { |
|
| 10168 | + | "prelude-ls": "^1.2.1" |
|
| 10169 | + | }, |
|
| 10170 | + | "engines": { |
|
| 10171 | + | "node": ">= 0.8.0" |
|
| 10172 | + | } |
|
| 10173 | + | }, |
|
| 10174 | + | "node_modules/type-fest": { |
|
| 10175 | + | "version": "2.19.0", |
|
| 10176 | + | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", |
|
| 10177 | + | "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", |
|
| 10178 | + | "engines": { |
|
| 10179 | + | "node": ">=12.20" |
|
| 10180 | + | }, |
|
| 10181 | + | "funding": { |
|
| 10182 | + | "url": "https://github.com/sponsors/sindresorhus" |
|
| 10183 | + | } |
|
| 10184 | + | }, |
|
| 10185 | + | "node_modules/typed-array-length": { |
|
| 10186 | + | "version": "1.0.4", |
|
| 10187 | + | "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", |
|
| 10188 | + | "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", |
|
| 10189 | + | "dev": true, |
|
| 10190 | + | "dependencies": { |
|
| 10191 | + | "call-bind": "^1.0.2", |
|
| 10192 | + | "for-each": "^0.3.3", |
|
| 10193 | + | "is-typed-array": "^1.1.9" |
|
| 10194 | + | }, |
|
| 10195 | + | "funding": { |
|
| 10196 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 10197 | + | } |
|
| 10198 | + | }, |
|
| 10199 | + | "node_modules/typescript": { |
|
| 10200 | + | "version": "4.9.5", |
|
| 10201 | + | "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", |
|
| 10202 | + | "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", |
|
| 10203 | + | "bin": { |
|
| 10204 | + | "tsc": "bin/tsc", |
|
| 10205 | + | "tsserver": "bin/tsserver" |
|
| 10206 | + | }, |
|
| 10207 | + | "engines": { |
|
| 10208 | + | "node": ">=4.2.0" |
|
| 10209 | + | } |
|
| 10210 | + | }, |
|
| 10211 | + | "node_modules/ultrahtml": { |
|
| 10212 | + | "version": "1.2.0", |
|
| 10213 | + | "resolved": "https://registry.npmjs.org/ultrahtml/-/ultrahtml-1.2.0.tgz", |
|
| 10214 | + | "integrity": "sha512-vxZM2yNvajRmCj/SknRYGNXk2tqiy6kRNvZjJLaleG3zJbSh/aNkOqD1/CVzypw8tyHyhpzYuwQgMMhUB4ZVNQ==" |
|
| 10215 | + | }, |
|
| 10216 | + | "node_modules/unbox-primitive": { |
|
| 10217 | + | "version": "1.0.2", |
|
| 10218 | + | "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", |
|
| 10219 | + | "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", |
|
| 10220 | + | "dev": true, |
|
| 10221 | + | "dependencies": { |
|
| 10222 | + | "call-bind": "^1.0.2", |
|
| 10223 | + | "has-bigints": "^1.0.2", |
|
| 10224 | + | "has-symbols": "^1.0.3", |
|
| 10225 | + | "which-boxed-primitive": "^1.0.2" |
|
| 10226 | + | }, |
|
| 10227 | + | "funding": { |
|
| 10228 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 10229 | + | } |
|
| 10230 | + | }, |
|
| 10231 | + | "node_modules/undici": { |
|
| 10232 | + | "version": "5.20.0", |
|
| 10233 | + | "resolved": "https://registry.npmjs.org/undici/-/undici-5.20.0.tgz", |
|
| 10234 | + | "integrity": "sha512-J3j60dYzuo6Eevbawwp1sdg16k5Tf768bxYK4TUJRH7cBM4kFCbf3mOnM/0E3vQYXvpxITbbWmBafaDbxLDz3g==", |
|
| 10235 | + | "dependencies": { |
|
| 10236 | + | "busboy": "^1.6.0" |
|
| 10237 | + | }, |
|
| 10238 | + | "engines": { |
|
| 10239 | + | "node": ">=12.18" |
|
| 10240 | + | } |
|
| 10241 | + | }, |
|
| 10242 | + | "node_modules/unherit": { |
|
| 10243 | + | "version": "3.0.1", |
|
| 10244 | + | "resolved": "https://registry.npmjs.org/unherit/-/unherit-3.0.1.tgz", |
|
| 10245 | + | "integrity": "sha512-akOOQ/Yln8a2sgcLj4U0Jmx0R5jpIg2IUyRrWOzmEbjBtGzBdHtSeFKgoEcoH4KYIG/Pb8GQ/BwtYm0GCq1Sqg==", |
|
| 10246 | + | "funding": { |
|
| 10247 | + | "type": "github", |
|
| 10248 | + | "url": "https://github.com/sponsors/wooorm" |
|
| 10249 | + | } |
|
| 10250 | + | }, |
|
| 10251 | + | "node_modules/unified": { |
|
| 10252 | + | "version": "10.1.2", |
|
| 10253 | + | "resolved": "https://registry.npmjs.org/unified/-/unified-10.1.2.tgz", |
|
| 10254 | + | "integrity": "sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==", |
|
| 10255 | + | "dependencies": { |
|
| 10256 | + | "@types/unist": "^2.0.0", |
|
| 10257 | + | "bail": "^2.0.0", |
|
| 10258 | + | "extend": "^3.0.0", |
|
| 10259 | + | "is-buffer": "^2.0.0", |
|
| 10260 | + | "is-plain-obj": "^4.0.0", |
|
| 10261 | + | "trough": "^2.0.0", |
|
| 10262 | + | "vfile": "^5.0.0" |
|
| 10263 | + | }, |
|
| 10264 | + | "funding": { |
|
| 10265 | + | "type": "opencollective", |
|
| 10266 | + | "url": "https://opencollective.com/unified" |
|
| 10267 | + | } |
|
| 10268 | + | }, |
|
| 10269 | + | "node_modules/unified/node_modules/is-plain-obj": { |
|
| 10270 | + | "version": "4.1.0", |
|
| 10271 | + | "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", |
|
| 10272 | + | "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", |
|
| 10273 | + | "engines": { |
|
| 10274 | + | "node": ">=12" |
|
| 10275 | + | }, |
|
| 10276 | + | "funding": { |
|
| 10277 | + | "url": "https://github.com/sponsors/sindresorhus" |
|
| 10278 | + | } |
|
| 10279 | + | }, |
|
| 10280 | + | "node_modules/unist-util-generated": { |
|
| 10281 | + | "version": "2.0.1", |
|
| 10282 | + | "resolved": "https://registry.npmjs.org/unist-util-generated/-/unist-util-generated-2.0.1.tgz", |
|
| 10283 | + | "integrity": "sha512-qF72kLmPxAw0oN2fwpWIqbXAVyEqUzDHMsbtPvOudIlUzXYFIeQIuxXQCRCFh22B7cixvU0MG7m3MW8FTq/S+A==", |
|
| 10284 | + | "funding": { |
|
| 10285 | + | "type": "opencollective", |
|
| 10286 | + | "url": "https://opencollective.com/unified" |
|
| 10287 | + | } |
|
| 10288 | + | }, |
|
| 10289 | + | "node_modules/unist-util-is": { |
|
| 10290 | + | "version": "5.2.0", |
|
| 10291 | + | "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.2.0.tgz", |
|
| 10292 | + | "integrity": "sha512-Glt17jWwZeyqrFqOK0pF1Ded5U3yzJnFr8CG1GMjCWTp9zDo2p+cmD6pWbZU8AgM5WU3IzRv6+rBwhzsGh6hBQ==", |
|
| 10293 | + | "funding": { |
|
| 10294 | + | "type": "opencollective", |
|
| 10295 | + | "url": "https://opencollective.com/unified" |
|
| 10296 | + | } |
|
| 10297 | + | }, |
|
| 10298 | + | "node_modules/unist-util-modify-children": { |
|
| 10299 | + | "version": "3.1.1", |
|
| 10300 | + | "resolved": "https://registry.npmjs.org/unist-util-modify-children/-/unist-util-modify-children-3.1.1.tgz", |
|
| 10301 | + | "integrity": "sha512-yXi4Lm+TG5VG+qvokP6tpnk+r1EPwyYL04JWDxLvgvPV40jANh7nm3udk65OOWquvbMDe+PL9+LmkxDpTv/7BA==", |
|
| 10302 | + | "dependencies": { |
|
| 10303 | + | "@types/unist": "^2.0.0", |
|
| 10304 | + | "array-iterate": "^2.0.0" |
|
| 10305 | + | }, |
|
| 10306 | + | "funding": { |
|
| 10307 | + | "type": "opencollective", |
|
| 10308 | + | "url": "https://opencollective.com/unified" |
|
| 10309 | + | } |
|
| 10310 | + | }, |
|
| 10311 | + | "node_modules/unist-util-position": { |
|
| 10312 | + | "version": "4.0.4", |
|
| 10313 | + | "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-4.0.4.tgz", |
|
| 10314 | + | "integrity": "sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==", |
|
| 10315 | + | "dependencies": { |
|
| 10316 | + | "@types/unist": "^2.0.0" |
|
| 10317 | + | }, |
|
| 10318 | + | "funding": { |
|
| 10319 | + | "type": "opencollective", |
|
| 10320 | + | "url": "https://opencollective.com/unified" |
|
| 10321 | + | } |
|
| 10322 | + | }, |
|
| 10323 | + | "node_modules/unist-util-position-from-estree": { |
|
| 10324 | + | "version": "1.1.2", |
|
| 10325 | + | "resolved": "https://registry.npmjs.org/unist-util-position-from-estree/-/unist-util-position-from-estree-1.1.2.tgz", |
|
| 10326 | + | "integrity": "sha512-poZa0eXpS+/XpoQwGwl79UUdea4ol2ZuCYguVaJS4qzIOMDzbqz8a3erUCOmubSZkaOuGamb3tX790iwOIROww==", |
|
| 10327 | + | "dev": true, |
|
| 10328 | + | "dependencies": { |
|
| 10329 | + | "@types/unist": "^2.0.0" |
|
| 10330 | + | }, |
|
| 10331 | + | "funding": { |
|
| 10332 | + | "type": "opencollective", |
|
| 10333 | + | "url": "https://opencollective.com/unified" |
|
| 10334 | + | } |
|
| 10335 | + | }, |
|
| 10336 | + | "node_modules/unist-util-remove-position": { |
|
| 10337 | + | "version": "4.0.2", |
|
| 10338 | + | "resolved": "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-4.0.2.tgz", |
|
| 10339 | + | "integrity": "sha512-TkBb0HABNmxzAcfLf4qsIbFbaPDvMO6wa3b3j4VcEzFVaw1LBKwnW4/sRJ/atSLSzoIg41JWEdnE7N6DIhGDGQ==", |
|
| 10340 | + | "dev": true, |
|
| 10341 | + | "dependencies": { |
|
| 10342 | + | "@types/unist": "^2.0.0", |
|
| 10343 | + | "unist-util-visit": "^4.0.0" |
|
| 10344 | + | }, |
|
| 10345 | + | "funding": { |
|
| 10346 | + | "type": "opencollective", |
|
| 10347 | + | "url": "https://opencollective.com/unified" |
|
| 10348 | + | } |
|
| 10349 | + | }, |
|
| 10350 | + | "node_modules/unist-util-stringify-position": { |
|
| 10351 | + | "version": "3.0.3", |
|
| 10352 | + | "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz", |
|
| 10353 | + | "integrity": "sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==", |
|
| 10354 | + | "dependencies": { |
|
| 10355 | + | "@types/unist": "^2.0.0" |
|
| 10356 | + | }, |
|
| 10357 | + | "funding": { |
|
| 10358 | + | "type": "opencollective", |
|
| 10359 | + | "url": "https://opencollective.com/unified" |
|
| 10360 | + | } |
|
| 10361 | + | }, |
|
| 10362 | + | "node_modules/unist-util-visit": { |
|
| 10363 | + | "version": "4.1.2", |
|
| 10364 | + | "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.2.tgz", |
|
| 10365 | + | "integrity": "sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==", |
|
| 10366 | + | "dependencies": { |
|
| 10367 | + | "@types/unist": "^2.0.0", |
|
| 10368 | + | "unist-util-is": "^5.0.0", |
|
| 10369 | + | "unist-util-visit-parents": "^5.1.1" |
|
| 10370 | + | }, |
|
| 10371 | + | "funding": { |
|
| 10372 | + | "type": "opencollective", |
|
| 10373 | + | "url": "https://opencollective.com/unified" |
|
| 10374 | + | } |
|
| 10375 | + | }, |
|
| 10376 | + | "node_modules/unist-util-visit-children": { |
|
| 10377 | + | "version": "2.0.2", |
|
| 10378 | + | "resolved": "https://registry.npmjs.org/unist-util-visit-children/-/unist-util-visit-children-2.0.2.tgz", |
|
| 10379 | + | "integrity": "sha512-+LWpMFqyUwLGpsQxpumsQ9o9DG2VGLFrpz+rpVXYIEdPy57GSy5HioC0g3bg/8WP9oCLlapQtklOzQ8uLS496Q==", |
|
| 10380 | + | "dependencies": { |
|
| 10381 | + | "@types/unist": "^2.0.0" |
|
| 10382 | + | }, |
|
| 10383 | + | "funding": { |
|
| 10384 | + | "type": "opencollective", |
|
| 10385 | + | "url": "https://opencollective.com/unified" |
|
| 10386 | + | } |
|
| 10387 | + | }, |
|
| 10388 | + | "node_modules/unist-util-visit-parents": { |
|
| 10389 | + | "version": "5.1.3", |
|
| 10390 | + | "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.3.tgz", |
|
| 10391 | + | "integrity": "sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==", |
|
| 10392 | + | "dependencies": { |
|
| 10393 | + | "@types/unist": "^2.0.0", |
|
| 10394 | + | "unist-util-is": "^5.0.0" |
|
| 10395 | + | }, |
|
| 10396 | + | "funding": { |
|
| 10397 | + | "type": "opencollective", |
|
| 10398 | + | "url": "https://opencollective.com/unified" |
|
| 10399 | + | } |
|
| 10400 | + | }, |
|
| 10401 | + | "node_modules/update-browserslist-db": { |
|
| 10402 | + | "version": "1.0.10", |
|
| 10403 | + | "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz", |
|
| 10404 | + | "integrity": "sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==", |
|
| 10405 | + | "funding": [ |
|
| 10406 | + | { |
|
| 10407 | + | "type": "opencollective", |
|
| 10408 | + | "url": "https://opencollective.com/browserslist" |
|
| 10409 | + | }, |
|
| 10410 | + | { |
|
| 10411 | + | "type": "tidelift", |
|
| 10412 | + | "url": "https://tidelift.com/funding/github/npm/browserslist" |
|
| 10413 | + | } |
|
| 10414 | + | ], |
|
| 10415 | + | "dependencies": { |
|
| 10416 | + | "escalade": "^3.1.1", |
|
| 10417 | + | "picocolors": "^1.0.0" |
|
| 10418 | + | }, |
|
| 10419 | + | "bin": { |
|
| 10420 | + | "browserslist-lint": "cli.js" |
|
| 10421 | + | }, |
|
| 10422 | + | "peerDependencies": { |
|
| 10423 | + | "browserslist": ">= 4.21.0" |
|
| 10424 | + | } |
|
| 10425 | + | }, |
|
| 10426 | + | "node_modules/uri-js": { |
|
| 10427 | + | "version": "4.4.1", |
|
| 10428 | + | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", |
|
| 10429 | + | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", |
|
| 10430 | + | "dev": true, |
|
| 10431 | + | "dependencies": { |
|
| 10432 | + | "punycode": "^2.1.0" |
|
| 10433 | + | } |
|
| 10434 | + | }, |
|
| 10435 | + | "node_modules/util-deprecate": { |
|
| 10436 | + | "version": "1.0.2", |
|
| 10437 | + | "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", |
|
| 10438 | + | "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" |
|
| 10439 | + | }, |
|
| 10440 | + | "node_modules/uvu": { |
|
| 10441 | + | "version": "0.5.6", |
|
| 10442 | + | "resolved": "https://registry.npmjs.org/uvu/-/uvu-0.5.6.tgz", |
|
| 10443 | + | "integrity": "sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==", |
|
| 10444 | + | "dependencies": { |
|
| 10445 | + | "dequal": "^2.0.0", |
|
| 10446 | + | "diff": "^5.0.0", |
|
| 10447 | + | "kleur": "^4.0.3", |
|
| 10448 | + | "sade": "^1.7.3" |
|
| 10449 | + | }, |
|
| 10450 | + | "bin": { |
|
| 10451 | + | "uvu": "bin.js" |
|
| 10452 | + | }, |
|
| 10453 | + | "engines": { |
|
| 10454 | + | "node": ">=8" |
|
| 10455 | + | } |
|
| 10456 | + | }, |
|
| 10457 | + | "node_modules/v8-compile-cache": { |
|
| 10458 | + | "version": "2.3.0", |
|
| 10459 | + | "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", |
|
| 10460 | + | "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", |
|
| 10461 | + | "dev": true |
|
| 10462 | + | }, |
|
| 10463 | + | "node_modules/validate-npm-package-license": { |
|
| 10464 | + | "version": "3.0.4", |
|
| 10465 | + | "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", |
|
| 10466 | + | "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", |
|
| 10467 | + | "dev": true, |
|
| 10468 | + | "dependencies": { |
|
| 10469 | + | "spdx-correct": "^3.0.0", |
|
| 10470 | + | "spdx-expression-parse": "^3.0.0" |
|
| 10471 | + | } |
|
| 10472 | + | }, |
|
| 10473 | + | "node_modules/vfile": { |
|
| 10474 | + | "version": "5.3.7", |
|
| 10475 | + | "resolved": "https://registry.npmjs.org/vfile/-/vfile-5.3.7.tgz", |
|
| 10476 | + | "integrity": "sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==", |
|
| 10477 | + | "dependencies": { |
|
| 10478 | + | "@types/unist": "^2.0.0", |
|
| 10479 | + | "is-buffer": "^2.0.0", |
|
| 10480 | + | "unist-util-stringify-position": "^3.0.0", |
|
| 10481 | + | "vfile-message": "^3.0.0" |
|
| 10482 | + | }, |
|
| 10483 | + | "funding": { |
|
| 10484 | + | "type": "opencollective", |
|
| 10485 | + | "url": "https://opencollective.com/unified" |
|
| 10486 | + | } |
|
| 10487 | + | }, |
|
| 10488 | + | "node_modules/vfile-location": { |
|
| 10489 | + | "version": "4.1.0", |
|
| 10490 | + | "resolved": "https://registry.npmjs.org/vfile-location/-/vfile-location-4.1.0.tgz", |
|
| 10491 | + | "integrity": "sha512-YF23YMyASIIJXpktBa4vIGLJ5Gs88UB/XePgqPmTa7cDA+JeO3yclbpheQYCHjVHBn/yePzrXuygIL+xbvRYHw==", |
|
| 10492 | + | "dependencies": { |
|
| 10493 | + | "@types/unist": "^2.0.0", |
|
| 10494 | + | "vfile": "^5.0.0" |
|
| 10495 | + | }, |
|
| 10496 | + | "funding": { |
|
| 10497 | + | "type": "opencollective", |
|
| 10498 | + | "url": "https://opencollective.com/unified" |
|
| 10499 | + | } |
|
| 10500 | + | }, |
|
| 10501 | + | "node_modules/vfile-message": { |
|
| 10502 | + | "version": "3.1.4", |
|
| 10503 | + | "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-3.1.4.tgz", |
|
| 10504 | + | "integrity": "sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==", |
|
| 10505 | + | "dependencies": { |
|
| 10506 | + | "@types/unist": "^2.0.0", |
|
| 10507 | + | "unist-util-stringify-position": "^3.0.0" |
|
| 10508 | + | }, |
|
| 10509 | + | "funding": { |
|
| 10510 | + | "type": "opencollective", |
|
| 10511 | + | "url": "https://opencollective.com/unified" |
|
| 10512 | + | } |
|
| 10513 | + | }, |
|
| 10514 | + | "node_modules/vite": { |
|
| 10515 | + | "version": "4.1.4", |
|
| 10516 | + | "resolved": "https://registry.npmjs.org/vite/-/vite-4.1.4.tgz", |
|
| 10517 | + | "integrity": "sha512-3knk/HsbSTKEin43zHu7jTwYWv81f8kgAL99G5NWBcA1LKvtvcVAC4JjBH1arBunO9kQka+1oGbrMKOjk4ZrBg==", |
|
| 10518 | + | "dependencies": { |
|
| 10519 | + | "esbuild": "^0.16.14", |
|
| 10520 | + | "postcss": "^8.4.21", |
|
| 10521 | + | "resolve": "^1.22.1", |
|
| 10522 | + | "rollup": "^3.10.0" |
|
| 10523 | + | }, |
|
| 10524 | + | "bin": { |
|
| 10525 | + | "vite": "bin/vite.js" |
|
| 10526 | + | }, |
|
| 10527 | + | "engines": { |
|
| 10528 | + | "node": "^14.18.0 || >=16.0.0" |
|
| 10529 | + | }, |
|
| 10530 | + | "optionalDependencies": { |
|
| 10531 | + | "fsevents": "~2.3.2" |
|
| 10532 | + | }, |
|
| 10533 | + | "peerDependencies": { |
|
| 10534 | + | "@types/node": ">= 14", |
|
| 10535 | + | "less": "*", |
|
| 10536 | + | "sass": "*", |
|
| 10537 | + | "stylus": "*", |
|
| 10538 | + | "sugarss": "*", |
|
| 10539 | + | "terser": "^5.4.0" |
|
| 10540 | + | }, |
|
| 10541 | + | "peerDependenciesMeta": { |
|
| 10542 | + | "@types/node": { |
|
| 10543 | + | "optional": true |
|
| 10544 | + | }, |
|
| 10545 | + | "less": { |
|
| 10546 | + | "optional": true |
|
| 10547 | + | }, |
|
| 10548 | + | "sass": { |
|
| 10549 | + | "optional": true |
|
| 10550 | + | }, |
|
| 10551 | + | "stylus": { |
|
| 10552 | + | "optional": true |
|
| 10553 | + | }, |
|
| 10554 | + | "sugarss": { |
|
| 10555 | + | "optional": true |
|
| 10556 | + | }, |
|
| 10557 | + | "terser": { |
|
| 10558 | + | "optional": true |
|
| 10559 | + | } |
|
| 10560 | + | } |
|
| 10561 | + | }, |
|
| 10562 | + | "node_modules/vitefu": { |
|
| 10563 | + | "version": "0.2.4", |
|
| 10564 | + | "resolved": "https://registry.npmjs.org/vitefu/-/vitefu-0.2.4.tgz", |
|
| 10565 | + | "integrity": "sha512-fanAXjSaf9xXtOOeno8wZXIhgia+CZury481LsDaV++lSvcU2R9Ch2bPh3PYFyoHW+w9LqAeYRISVQjUIew14g==", |
|
| 10566 | + | "peerDependencies": { |
|
| 10567 | + | "vite": "^3.0.0 || ^4.0.0" |
|
| 10568 | + | }, |
|
| 10569 | + | "peerDependenciesMeta": { |
|
| 10570 | + | "vite": { |
|
| 10571 | + | "optional": true |
|
| 10572 | + | } |
|
| 10573 | + | } |
|
| 10574 | + | }, |
|
| 10575 | + | "node_modules/vscode-css-languageservice": { |
|
| 10576 | + | "version": "6.2.4", |
|
| 10577 | + | "resolved": "https://registry.npmjs.org/vscode-css-languageservice/-/vscode-css-languageservice-6.2.4.tgz", |
|
| 10578 | + | "integrity": "sha512-9UG0s3Ss8rbaaPZL1AkGzdjrGY8F+P+Ne9snsrvD9gxltDGhsn8C2dQpqQewHrMW37OvlqJoI8sUU2AWDb+qNw==", |
|
| 10579 | + | "dependencies": { |
|
| 10580 | + | "@vscode/l10n": "^0.0.11", |
|
| 10581 | + | "vscode-languageserver-textdocument": "^1.0.8", |
|
| 10582 | + | "vscode-languageserver-types": "^3.17.3", |
|
| 10583 | + | "vscode-uri": "^3.0.7" |
|
| 10584 | + | } |
|
| 10585 | + | }, |
|
| 10586 | + | "node_modules/vscode-html-languageservice": { |
|
| 10587 | + | "version": "5.0.4", |
|
| 10588 | + | "resolved": "https://registry.npmjs.org/vscode-html-languageservice/-/vscode-html-languageservice-5.0.4.tgz", |
|
| 10589 | + | "integrity": "sha512-tvrySfpglu4B2rQgWGVO/IL+skvU7kBkQotRlxA7ocSyRXOZUd6GA13XHkxo8LPe07KWjeoBlN1aVGqdfTK4xA==", |
|
| 10590 | + | "dependencies": { |
|
| 10591 | + | "@vscode/l10n": "^0.0.11", |
|
| 10592 | + | "vscode-languageserver-textdocument": "^1.0.8", |
|
| 10593 | + | "vscode-languageserver-types": "^3.17.2", |
|
| 10594 | + | "vscode-uri": "^3.0.7" |
|
| 10595 | + | } |
|
| 10596 | + | }, |
|
| 10597 | + | "node_modules/vscode-jsonrpc": { |
|
| 10598 | + | "version": "8.1.0", |
|
| 10599 | + | "resolved": "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-8.1.0.tgz", |
|
| 10600 | + | "integrity": "sha512-6TDy/abTQk+zDGYazgbIPc+4JoXdwC8NHU9Pbn4UJP1fehUyZmM4RHp5IthX7A6L5KS30PRui+j+tbbMMMafdw==", |
|
| 10601 | + | "engines": { |
|
| 10602 | + | "node": ">=14.0.0" |
|
| 10603 | + | } |
|
| 10604 | + | }, |
|
| 10605 | + | "node_modules/vscode-languageserver": { |
|
| 10606 | + | "version": "8.1.0", |
|
| 10607 | + | "resolved": "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-8.1.0.tgz", |
|
| 10608 | + | "integrity": "sha512-eUt8f1z2N2IEUDBsKaNapkz7jl5QpskN2Y0G01T/ItMxBxw1fJwvtySGB9QMecatne8jFIWJGWI61dWjyTLQsw==", |
|
| 10609 | + | "dependencies": { |
|
| 10610 | + | "vscode-languageserver-protocol": "3.17.3" |
|
| 10611 | + | }, |
|
| 10612 | + | "bin": { |
|
| 10613 | + | "installServerIntoExtension": "bin/installServerIntoExtension" |
|
| 10614 | + | } |
|
| 10615 | + | }, |
|
| 10616 | + | "node_modules/vscode-languageserver-protocol": { |
|
| 10617 | + | "version": "3.17.3", |
|
| 10618 | + | "resolved": "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.17.3.tgz", |
|
| 10619 | + | "integrity": "sha512-924/h0AqsMtA5yK22GgMtCYiMdCOtWTSGgUOkgEDX+wk2b0x4sAfLiO4NxBxqbiVtz7K7/1/RgVrVI0NClZwqA==", |
|
| 10620 | + | "dependencies": { |
|
| 10621 | + | "vscode-jsonrpc": "8.1.0", |
|
| 10622 | + | "vscode-languageserver-types": "3.17.3" |
|
| 10623 | + | } |
|
| 10624 | + | }, |
|
| 10625 | + | "node_modules/vscode-languageserver-textdocument": { |
|
| 10626 | + | "version": "1.0.8", |
|
| 10627 | + | "resolved": "https://registry.npmjs.org/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.8.tgz", |
|
| 10628 | + | "integrity": "sha512-1bonkGqQs5/fxGT5UchTgjGVnfysL0O8v1AYMBjqTbWQTFn721zaPGDYFkOKtfDgFiSgXM3KwaG3FMGfW4Ed9Q==" |
|
| 10629 | + | }, |
|
| 10630 | + | "node_modules/vscode-languageserver-types": { |
|
| 10631 | + | "version": "3.17.3", |
|
| 10632 | + | "resolved": "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.17.3.tgz", |
|
| 10633 | + | "integrity": "sha512-SYU4z1dL0PyIMd4Vj8YOqFvHu7Hz/enbWtpfnVbJHU4Nd1YNYx8u0ennumc6h48GQNeOLxmwySmnADouT/AuZA==" |
|
| 10634 | + | }, |
|
| 10635 | + | "node_modules/vscode-oniguruma": { |
|
| 10636 | + | "version": "1.7.0", |
|
| 10637 | + | "resolved": "https://registry.npmjs.org/vscode-oniguruma/-/vscode-oniguruma-1.7.0.tgz", |
|
| 10638 | + | "integrity": "sha512-L9WMGRfrjOhgHSdOYgCt/yRMsXzLDJSL7BPrOZt73gU0iWO4mpqzqQzOz5srxqTvMBaR0XZTSrVWo4j55Rc6cA==" |
|
| 10639 | + | }, |
|
| 10640 | + | "node_modules/vscode-textmate": { |
|
| 10641 | + | "version": "6.0.0", |
|
| 10642 | + | "resolved": "https://registry.npmjs.org/vscode-textmate/-/vscode-textmate-6.0.0.tgz", |
|
| 10643 | + | "integrity": "sha512-gu73tuZfJgu+mvCSy4UZwd2JXykjK9zAZsfmDeut5dx/1a7FeTk0XwJsSuqQn+cuMCGVbIBfl+s53X4T19DnzQ==" |
|
| 10644 | + | }, |
|
| 10645 | + | "node_modules/vscode-uri": { |
|
| 10646 | + | "version": "3.0.7", |
|
| 10647 | + | "resolved": "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.0.7.tgz", |
|
| 10648 | + | "integrity": "sha512-eOpPHogvorZRobNqJGhapa0JdwaxpjVvyBp0QIUMRMSf8ZAlqOdEquKuRmw9Qwu0qXtJIWqFtMkmvJjUZmMjVA==" |
|
| 10649 | + | }, |
|
| 10650 | + | "node_modules/wcwidth": { |
|
| 10651 | + | "version": "1.0.1", |
|
| 10652 | + | "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", |
|
| 10653 | + | "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", |
|
| 10654 | + | "dependencies": { |
|
| 10655 | + | "defaults": "^1.0.3" |
|
| 10656 | + | } |
|
| 10657 | + | }, |
|
| 10658 | + | "node_modules/web-namespaces": { |
|
| 10659 | + | "version": "2.0.1", |
|
| 10660 | + | "resolved": "https://registry.npmjs.org/web-namespaces/-/web-namespaces-2.0.1.tgz", |
|
| 10661 | + | "integrity": "sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==", |
|
| 10662 | + | "funding": { |
|
| 10663 | + | "type": "github", |
|
| 10664 | + | "url": "https://github.com/sponsors/wooorm" |
|
| 10665 | + | } |
|
| 10666 | + | }, |
|
| 10667 | + | "node_modules/which": { |
|
| 10668 | + | "version": "2.0.2", |
|
| 10669 | + | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", |
|
| 10670 | + | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", |
|
| 10671 | + | "dependencies": { |
|
| 10672 | + | "isexe": "^2.0.0" |
|
| 10673 | + | }, |
|
| 10674 | + | "bin": { |
|
| 10675 | + | "node-which": "bin/node-which" |
|
| 10676 | + | }, |
|
| 10677 | + | "engines": { |
|
| 10678 | + | "node": ">= 8" |
|
| 10679 | + | } |
|
| 10680 | + | }, |
|
| 10681 | + | "node_modules/which-boxed-primitive": { |
|
| 10682 | + | "version": "1.0.2", |
|
| 10683 | + | "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", |
|
| 10684 | + | "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", |
|
| 10685 | + | "dev": true, |
|
| 10686 | + | "dependencies": { |
|
| 10687 | + | "is-bigint": "^1.0.1", |
|
| 10688 | + | "is-boolean-object": "^1.1.0", |
|
| 10689 | + | "is-number-object": "^1.0.4", |
|
| 10690 | + | "is-string": "^1.0.5", |
|
| 10691 | + | "is-symbol": "^1.0.3" |
|
| 10692 | + | }, |
|
| 10693 | + | "funding": { |
|
| 10694 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 10695 | + | } |
|
| 10696 | + | }, |
|
| 10697 | + | "node_modules/which-collection": { |
|
| 10698 | + | "version": "1.0.1", |
|
| 10699 | + | "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", |
|
| 10700 | + | "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", |
|
| 10701 | + | "dev": true, |
|
| 10702 | + | "dependencies": { |
|
| 10703 | + | "is-map": "^2.0.1", |
|
| 10704 | + | "is-set": "^2.0.1", |
|
| 10705 | + | "is-weakmap": "^2.0.1", |
|
| 10706 | + | "is-weakset": "^2.0.1" |
|
| 10707 | + | }, |
|
| 10708 | + | "funding": { |
|
| 10709 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 10710 | + | } |
|
| 10711 | + | }, |
|
| 10712 | + | "node_modules/which-pm": { |
|
| 10713 | + | "version": "2.0.0", |
|
| 10714 | + | "resolved": "https://registry.npmjs.org/which-pm/-/which-pm-2.0.0.tgz", |
|
| 10715 | + | "integrity": "sha512-Lhs9Pmyph0p5n5Z3mVnN0yWcbQYUAD7rbQUiMsQxOJ3T57k7RFe35SUwWMf7dsbDZks1uOmw4AecB/JMDj3v/w==", |
|
| 10716 | + | "dependencies": { |
|
| 10717 | + | "load-yaml-file": "^0.2.0", |
|
| 10718 | + | "path-exists": "^4.0.0" |
|
| 10719 | + | }, |
|
| 10720 | + | "engines": { |
|
| 10721 | + | "node": ">=8.15" |
|
| 10722 | + | } |
|
| 10723 | + | }, |
|
| 10724 | + | "node_modules/which-pm-runs": { |
|
| 10725 | + | "version": "1.1.0", |
|
| 10726 | + | "resolved": "https://registry.npmjs.org/which-pm-runs/-/which-pm-runs-1.1.0.tgz", |
|
| 10727 | + | "integrity": "sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==", |
|
| 10728 | + | "engines": { |
|
| 10729 | + | "node": ">=4" |
|
| 10730 | + | } |
|
| 10731 | + | }, |
|
| 10732 | + | "node_modules/which-typed-array": { |
|
| 10733 | + | "version": "1.1.9", |
|
| 10734 | + | "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz", |
|
| 10735 | + | "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==", |
|
| 10736 | + | "dev": true, |
|
| 10737 | + | "dependencies": { |
|
| 10738 | + | "available-typed-arrays": "^1.0.5", |
|
| 10739 | + | "call-bind": "^1.0.2", |
|
| 10740 | + | "for-each": "^0.3.3", |
|
| 10741 | + | "gopd": "^1.0.1", |
|
| 10742 | + | "has-tostringtag": "^1.0.0", |
|
| 10743 | + | "is-typed-array": "^1.1.10" |
|
| 10744 | + | }, |
|
| 10745 | + | "engines": { |
|
| 10746 | + | "node": ">= 0.4" |
|
| 10747 | + | }, |
|
| 10748 | + | "funding": { |
|
| 10749 | + | "url": "https://github.com/sponsors/ljharb" |
|
| 10750 | + | } |
|
| 10751 | + | }, |
|
| 10752 | + | "node_modules/widest-line": { |
|
| 10753 | + | "version": "4.0.1", |
|
| 10754 | + | "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-4.0.1.tgz", |
|
| 10755 | + | "integrity": "sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig==", |
|
| 10756 | + | "dependencies": { |
|
| 10757 | + | "string-width": "^5.0.1" |
|
| 10758 | + | }, |
|
| 10759 | + | "engines": { |
|
| 10760 | + | "node": ">=12" |
|
| 10761 | + | }, |
|
| 10762 | + | "funding": { |
|
| 10763 | + | "url": "https://github.com/sponsors/sindresorhus" |
|
| 10764 | + | } |
|
| 10765 | + | }, |
|
| 10766 | + | "node_modules/word-wrap": { |
|
| 10767 | + | "version": "1.2.3", |
|
| 10768 | + | "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", |
|
| 10769 | + | "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", |
|
| 10770 | + | "dev": true, |
|
| 10771 | + | "engines": { |
|
| 10772 | + | "node": ">=0.10.0" |
|
| 10773 | + | } |
|
| 10774 | + | }, |
|
| 10775 | + | "node_modules/wrap-ansi": { |
|
| 10776 | + | "version": "8.1.0", |
|
| 10777 | + | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", |
|
| 10778 | + | "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", |
|
| 10779 | + | "dependencies": { |
|
| 10780 | + | "ansi-styles": "^6.1.0", |
|
| 10781 | + | "string-width": "^5.0.1", |
|
| 10782 | + | "strip-ansi": "^7.0.1" |
|
| 10783 | + | }, |
|
| 10784 | + | "engines": { |
|
| 10785 | + | "node": ">=12" |
|
| 10786 | + | }, |
|
| 10787 | + | "funding": { |
|
| 10788 | + | "url": "https://github.com/chalk/wrap-ansi?sponsor=1" |
|
| 10789 | + | } |
|
| 10790 | + | }, |
|
| 10791 | + | "node_modules/wrap-ansi/node_modules/ansi-styles": { |
|
| 10792 | + | "version": "6.2.1", |
|
| 10793 | + | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", |
|
| 10794 | + | "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", |
|
| 10795 | + | "engines": { |
|
| 10796 | + | "node": ">=12" |
|
| 10797 | + | }, |
|
| 10798 | + | "funding": { |
|
| 10799 | + | "url": "https://github.com/chalk/ansi-styles?sponsor=1" |
|
| 10800 | + | } |
|
| 10801 | + | }, |
|
| 10802 | + | "node_modules/wrappy": { |
|
| 10803 | + | "version": "1.0.2", |
|
| 10804 | + | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", |
|
| 10805 | + | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" |
|
| 10806 | + | }, |
|
| 10807 | + | "node_modules/write-file-atomic": { |
|
| 10808 | + | "version": "4.0.2", |
|
| 10809 | + | "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", |
|
| 10810 | + | "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", |
|
| 10811 | + | "dev": true, |
|
| 10812 | + | "dependencies": { |
|
| 10813 | + | "imurmurhash": "^0.1.4", |
|
| 10814 | + | "signal-exit": "^3.0.7" |
|
| 10815 | + | }, |
|
| 10816 | + | "engines": { |
|
| 10817 | + | "node": "^12.13.0 || ^14.15.0 || >=16.0.0" |
|
| 10818 | + | } |
|
| 10819 | + | }, |
|
| 10820 | + | "node_modules/xtend": { |
|
| 10821 | + | "version": "4.0.2", |
|
| 10822 | + | "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", |
|
| 10823 | + | "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", |
|
| 10824 | + | "dev": true, |
|
| 10825 | + | "engines": { |
|
| 10826 | + | "node": ">=0.4" |
|
| 10827 | + | } |
|
| 10828 | + | }, |
|
| 10829 | + | "node_modules/yallist": { |
|
| 10830 | + | "version": "3.1.1", |
|
| 10831 | + | "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", |
|
| 10832 | + | "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" |
|
| 10833 | + | }, |
|
| 10834 | + | "node_modules/yaml": { |
|
| 10835 | + | "version": "2.2.1", |
|
| 10836 | + | "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.2.1.tgz", |
|
| 10837 | + | "integrity": "sha512-e0WHiYql7+9wr4cWMx3TVQrNwejKaEe7/rHNmQmqRjazfOP5W8PB6Jpebb5o6fIapbz9o9+2ipcaTM2ZwDI6lw==", |
|
| 10838 | + | "dev": true, |
|
| 10839 | + | "engines": { |
|
| 10840 | + | "node": ">= 14" |
|
| 10841 | + | } |
|
| 10842 | + | }, |
|
| 10843 | + | "node_modules/yargs-parser": { |
|
| 10844 | + | "version": "21.1.1", |
|
| 10845 | + | "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", |
|
| 10846 | + | "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", |
|
| 10847 | + | "engines": { |
|
| 10848 | + | "node": ">=12" |
|
| 10849 | + | } |
|
| 10850 | + | }, |
|
| 10851 | + | "node_modules/yocto-queue": { |
|
| 10852 | + | "version": "0.1.0", |
|
| 10853 | + | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", |
|
| 10854 | + | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", |
|
| 10855 | + | "engines": { |
|
| 10856 | + | "node": ">=10" |
|
| 10857 | + | }, |
|
| 10858 | + | "funding": { |
|
| 10859 | + | "url": "https://github.com/sponsors/sindresorhus" |
|
| 10860 | + | } |
|
| 10861 | + | }, |
|
| 10862 | + | "node_modules/yoga-wasm-web": { |
|
| 10863 | + | "version": "0.3.1", |
|
| 10864 | + | "resolved": "https://registry.npmjs.org/yoga-wasm-web/-/yoga-wasm-web-0.3.1.tgz", |
|
| 10865 | + | "integrity": "sha512-J74OxJtRb5GLW/GH+ibYpb0/0zixk9qp0EOIuKKkavk0w0cMHIQ76YPkca4cRBUW+d+r+GFSM9Q3a+HXQd4b8g==" |
|
| 10866 | + | }, |
|
| 10867 | + | "node_modules/zod": { |
|
| 10868 | + | "version": "3.20.6", |
|
| 10869 | + | "resolved": "https://registry.npmjs.org/zod/-/zod-3.20.6.tgz", |
|
| 10870 | + | "integrity": "sha512-oyu0m54SGCtzh6EClBVqDDlAYRz4jrVtKwQ7ZnsEmMI9HnzuZFj8QFwAY1M5uniIYACdGvv0PBWPF2kO0aNofA==", |
|
| 10871 | + | "funding": { |
|
| 10872 | + | "url": "https://github.com/sponsors/colinhacks" |
|
| 10873 | + | } |
|
| 10874 | + | }, |
|
| 10875 | + | "node_modules/zwitch": { |
|
| 10876 | + | "version": "2.0.4", |
|
| 10877 | + | "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz", |
|
| 10878 | + | "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==", |
|
| 10879 | + | "funding": { |
|
| 10880 | + | "type": "github", |
|
| 10881 | + | "url": "https://github.com/sponsors/wooorm" |
|
| 10882 | + | } |
|
| 10883 | + | } |
|
| 10884 | + | } |
|
| 10885 | + | } |
| 1 | + | { |
|
| 2 | + | "name": "astro-cactus", |
|
| 3 | + | "version": "2.1.0", |
|
| 4 | + | "private": false, |
|
| 5 | + | "scripts": { |
|
| 6 | + | "dev": "astro dev", |
|
| 7 | + | "start": "astro dev", |
|
| 8 | + | "sync": "astro sync", |
|
| 9 | + | "build": "astro build", |
|
| 10 | + | "preview": "astro preview", |
|
| 11 | + | "format": "prettier -w ./src ./src/**/*.astro" |
|
| 12 | + | }, |
|
| 13 | + | "devDependencies": { |
|
| 14 | + | "@astrojs/image": "0.13.0", |
|
| 15 | + | "@astrojs/mdx": "^0.15.1", |
|
| 16 | + | "@astrojs/sitemap": "^1.0.0", |
|
| 17 | + | "@astrojs/tailwind": "3.0.0", |
|
| 18 | + | "@resvg/resvg-js": "^2.2.0", |
|
| 19 | + | "@tailwindcss/aspect-ratio": "^0.4.2", |
|
| 20 | + | "@tailwindcss/line-clamp": "^0.4.2", |
|
| 21 | + | "@tailwindcss/typography": "^0.5.8", |
|
| 22 | + | "@types/eslint": "^8.4.10", |
|
| 23 | + | "@types/prettier": "^2.7.2", |
|
| 24 | + | "@types/sharp": "^0.31.1", |
|
| 25 | + | "@typescript-eslint/eslint-plugin": "^5.48.0", |
|
| 26 | + | "@typescript-eslint/parser": "^5.48.0", |
|
| 27 | + | "astro-eslint-parser": "^0.11.0", |
|
| 28 | + | "autoprefixer": "^10.4.13", |
|
| 29 | + | "eslint": "^8.32.0", |
|
| 30 | + | "eslint-config-prettier": "^8.6.0", |
|
| 31 | + | "eslint-import-resolver-typescript": "^3.5.2", |
|
| 32 | + | "eslint-plugin-astro": "^0.23.0", |
|
| 33 | + | "eslint-plugin-import": "^2.26.0", |
|
| 34 | + | "eslint-plugin-jsx-a11y": "^6.7.1", |
|
| 35 | + | "eslint-plugin-prettier": "^4.2.1", |
|
| 36 | + | "postcss": "^8.4.21", |
|
| 37 | + | "postcss-html": "^1.5.0", |
|
| 38 | + | "prettier": "^2.8.3", |
|
| 39 | + | "prettier-plugin-astro": "0.8.0", |
|
| 40 | + | "prettier-plugin-tailwindcss": "^0.2.2", |
|
| 41 | + | "stylelint": "^14.16.1", |
|
| 42 | + | "stylelint-config-prettier": "^9.0.4", |
|
| 43 | + | "stylelint-config-standard": "^29.0.0", |
|
| 44 | + | "tailwindcss": "^3.2.4", |
|
| 45 | + | "typescript": "^4.9.4" |
|
| 46 | + | }, |
|
| 47 | + | "dependencies": { |
|
| 48 | + | "@astrojs/prefetch": "^0.1.1", |
|
| 49 | + | "@astrojs/rss": "^2.0.0", |
|
| 50 | + | "astro": "2.0.2", |
|
| 51 | + | "satori": "0.1.2", |
|
| 52 | + | "satori-html": "^0.3.2", |
|
| 53 | + | "sharp": "^0.31.3" |
|
| 54 | + | } |
|
| 55 | + | } |
| 1 | + | lockfileVersion: 5.4 |
|
| 2 | + | ||
| 3 | + | specifiers: |
|
| 4 | + | '@astrojs/image': 0.13.0 |
|
| 5 | + | '@astrojs/mdx': ^0.15.1 |
|
| 6 | + | '@astrojs/prefetch': ^0.1.1 |
|
| 7 | + | '@astrojs/rss': ^2.0.0 |
|
| 8 | + | '@astrojs/sitemap': ^1.0.0 |
|
| 9 | + | '@astrojs/tailwind': 3.0.0 |
|
| 10 | + | '@resvg/resvg-js': ^2.2.0 |
|
| 11 | + | '@tailwindcss/aspect-ratio': ^0.4.2 |
|
| 12 | + | '@tailwindcss/line-clamp': ^0.4.2 |
|
| 13 | + | '@tailwindcss/typography': ^0.5.8 |
|
| 14 | + | '@types/eslint': ^8.4.10 |
|
| 15 | + | '@types/prettier': ^2.7.2 |
|
| 16 | + | '@types/sharp': ^0.31.1 |
|
| 17 | + | '@typescript-eslint/eslint-plugin': ^5.48.0 |
|
| 18 | + | '@typescript-eslint/parser': ^5.48.0 |
|
| 19 | + | astro: 2.0.2 |
|
| 20 | + | astro-eslint-parser: ^0.11.0 |
|
| 21 | + | autoprefixer: ^10.4.13 |
|
| 22 | + | eslint: ^8.32.0 |
|
| 23 | + | eslint-config-prettier: ^8.6.0 |
|
| 24 | + | eslint-import-resolver-typescript: ^3.5.2 |
|
| 25 | + | eslint-plugin-astro: ^0.23.0 |
|
| 26 | + | eslint-plugin-import: ^2.26.0 |
|
| 27 | + | eslint-plugin-jsx-a11y: ^6.7.1 |
|
| 28 | + | eslint-plugin-prettier: ^4.2.1 |
|
| 29 | + | postcss: ^8.4.21 |
|
| 30 | + | postcss-html: ^1.5.0 |
|
| 31 | + | prettier: ^2.8.3 |
|
| 32 | + | prettier-plugin-astro: 0.8.0 |
|
| 33 | + | prettier-plugin-tailwindcss: ^0.2.2 |
|
| 34 | + | satori: 0.1.2 |
|
| 35 | + | satori-html: ^0.3.2 |
|
| 36 | + | sharp: ^0.31.3 |
|
| 37 | + | stylelint: ^14.16.1 |
|
| 38 | + | stylelint-config-prettier: ^9.0.4 |
|
| 39 | + | stylelint-config-standard: ^29.0.0 |
|
| 40 | + | tailwindcss: ^3.2.4 |
|
| 41 | + | typescript: ^4.9.4 |
|
| 42 | + | ||
| 43 | + | dependencies: |
|
| 44 | + | '@astrojs/prefetch': 0.1.1 |
|
| 45 | + | '@astrojs/rss': 2.1.0 |
|
| 46 | + | astro: 2.0.2 |
|
| 47 | + | satori: 0.1.2 |
|
| 48 | + | satori-html: 0.3.2 |
|
| 49 | + | sharp: 0.31.3 |
|
| 50 | + | ||
| 51 | + | devDependencies: |
|
| 52 | + | '@astrojs/image': 0.13.0_astro@2.0.2+sharp@0.31.3 |
|
| 53 | + | '@astrojs/mdx': 0.15.1_astro@2.0.2 |
|
| 54 | + | '@astrojs/sitemap': 1.0.0 |
|
| 55 | + | '@astrojs/tailwind': 3.0.0_uhsc6pehih5huiqhsy5i7sy5um |
|
| 56 | + | '@resvg/resvg-js': 2.2.0 |
|
| 57 | + | '@tailwindcss/aspect-ratio': 0.4.2_tailwindcss@3.2.4 |
|
| 58 | + | '@tailwindcss/line-clamp': 0.4.2_tailwindcss@3.2.4 |
|
| 59 | + | '@tailwindcss/typography': 0.5.9_tailwindcss@3.2.4 |
|
| 60 | + | '@types/eslint': 8.4.10 |
|
| 61 | + | '@types/prettier': 2.7.2 |
|
| 62 | + | '@types/sharp': 0.31.1 |
|
| 63 | + | '@typescript-eslint/eslint-plugin': 5.49.0_iu322prlnwsygkcra5kbpy22si |
|
| 64 | + | '@typescript-eslint/parser': 5.49.0_7uibuqfxkfaozanbtbziikiqje |
|
| 65 | + | astro-eslint-parser: 0.11.0 |
|
| 66 | + | autoprefixer: 10.4.13_postcss@8.4.21 |
|
| 67 | + | eslint: 8.32.0 |
|
| 68 | + | eslint-config-prettier: 8.6.0_eslint@8.32.0 |
|
| 69 | + | eslint-import-resolver-typescript: 3.5.3_ps7hf4l2dvbuxvtusmrfhmzsba |
|
| 70 | + | eslint-plugin-astro: 0.23.0_eslint@8.32.0 |
|
| 71 | + | eslint-plugin-import: 2.27.5_tto3jvfrcbe7ndbi56p7uxhaki |
|
| 72 | + | eslint-plugin-jsx-a11y: 6.7.1_eslint@8.32.0 |
|
| 73 | + | eslint-plugin-prettier: 4.2.1_cn4lalcyadplruoxa5mhp7j3dq |
|
| 74 | + | postcss: 8.4.21 |
|
| 75 | + | postcss-html: 1.5.0 |
|
| 76 | + | prettier: 2.8.3 |
|
| 77 | + | prettier-plugin-astro: 0.8.0 |
|
| 78 | + | prettier-plugin-tailwindcss: 0.2.2_s2resyd53c3nawyksvkzb3naxm |
|
| 79 | + | stylelint: 14.16.1 |
|
| 80 | + | stylelint-config-prettier: 9.0.4_stylelint@14.16.1 |
|
| 81 | + | stylelint-config-standard: 29.0.0_stylelint@14.16.1 |
|
| 82 | + | tailwindcss: 3.2.4_postcss@8.4.21 |
|
| 83 | + | typescript: 4.9.4 |
|
| 84 | + | ||
| 85 | + | packages: |
|
| 86 | + | ||
| 87 | + | /@altano/tiny-async-pool/1.0.2: |
|
| 88 | + | resolution: {integrity: sha512-qQzaI0TBUPdpjZ3qo5b2ziQY9MSNpbziH2ZrE5lvtUZL+kn9GwVuVJwoOubaoNkeDB+rqEefnpu1k+oMpOCYiw==} |
|
| 89 | + | dev: true |
|
| 90 | + | ||
| 91 | + | /@ampproject/remapping/2.2.0: |
|
| 92 | + | resolution: {integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==} |
|
| 93 | + | engines: {node: '>=6.0.0'} |
|
| 94 | + | dependencies: |
|
| 95 | + | '@jridgewell/gen-mapping': 0.1.1 |
|
| 96 | + | '@jridgewell/trace-mapping': 0.3.17 |
|
| 97 | + | ||
| 98 | + | /@astrojs/compiler/0.31.4: |
|
| 99 | + | resolution: {integrity: sha512-6bBFeDTtPOn4jZaiD3p0f05MEGQL9pw2Zbfj546oFETNmjJFWO3nzHz6/m+P53calknCvyVzZ5YhoBLIvzn5iw==} |
|
| 100 | + | ||
| 101 | + | /@astrojs/compiler/1.0.1: |
|
| 102 | + | resolution: {integrity: sha512-77aacobLKcL98NmhK3OBS5EHIrX9gs1ckB/vGSIdkVZuB7u51V4jh05I6W0tSvG7/86tALv6QtHTRZ8rLhFTbQ==} |
|
| 103 | + | ||
| 104 | + | /@astrojs/image/0.13.0_astro@2.0.2+sharp@0.31.3: |
|
| 105 | + | resolution: {integrity: sha512-18IlEsb/mau4ji9sR7+JVPFJHtgIk7Qh/Ol+Hh/JNcPn/oMrjP6FMU3VrNHPy5Ltvw1DyzkDV4wu+jYKU/V0Hw==} |
|
| 106 | + | peerDependencies: |
|
| 107 | + | astro: ^2.0.0 |
|
| 108 | + | sharp: '>=0.31.0' |
|
| 109 | + | peerDependenciesMeta: |
|
| 110 | + | sharp: |
|
| 111 | + | optional: true |
|
| 112 | + | dependencies: |
|
| 113 | + | '@altano/tiny-async-pool': 1.0.2 |
|
| 114 | + | astro: 2.0.2 |
|
| 115 | + | http-cache-semantics: 4.1.1 |
|
| 116 | + | image-size: 1.0.2 |
|
| 117 | + | kleur: 4.1.5 |
|
| 118 | + | magic-string: 0.27.0 |
|
| 119 | + | mime: 3.0.0 |
|
| 120 | + | sharp: 0.31.3 |
|
| 121 | + | slash: 4.0.0 |
|
| 122 | + | dev: true |
|
| 123 | + | ||
| 124 | + | /@astrojs/language-server/0.28.3: |
|
| 125 | + | resolution: {integrity: sha512-fPovAX/X46eE2w03jNRMpQ7W9m2mAvNt4Ay65lD9wl1Z5vIQYxlg7Enp9qP225muTr4jSVB5QiLumFJmZMAaVA==} |
|
| 126 | + | hasBin: true |
|
| 127 | + | dependencies: |
|
| 128 | + | '@vscode/emmet-helper': 2.8.6 |
|
| 129 | + | events: 3.3.0 |
|
| 130 | + | prettier: 2.8.3 |
|
| 131 | + | prettier-plugin-astro: 0.7.2 |
|
| 132 | + | source-map: 0.7.4 |
|
| 133 | + | vscode-css-languageservice: 6.2.3 |
|
| 134 | + | vscode-html-languageservice: 5.0.4 |
|
| 135 | + | vscode-languageserver: 8.0.2 |
|
| 136 | + | vscode-languageserver-protocol: 3.17.2 |
|
| 137 | + | vscode-languageserver-textdocument: 1.0.8 |
|
| 138 | + | vscode-languageserver-types: 3.17.2 |
|
| 139 | + | vscode-uri: 3.0.7 |
|
| 140 | + | ||
| 141 | + | /@astrojs/markdown-remark/2.0.1_astro@2.0.2: |
|
| 142 | + | resolution: {integrity: sha512-xQF1rXGJN18m+zZucwRRtmNehuhPMMhZhi6HWKrtpEAKnHSPk8lqf1GXgKH7/Sypglu8ivdECZ+EGs6kOYVasQ==} |
|
| 143 | + | peerDependencies: |
|
| 144 | + | astro: ^2.0.2 |
|
| 145 | + | dependencies: |
|
| 146 | + | '@astrojs/prism': 2.0.0 |
|
| 147 | + | astro: 2.0.2 |
|
| 148 | + | github-slugger: 1.5.0 |
|
| 149 | + | import-meta-resolve: 2.2.1 |
|
| 150 | + | rehype-raw: 6.1.1 |
|
| 151 | + | rehype-stringify: 9.0.3 |
|
| 152 | + | remark-gfm: 3.0.1 |
|
| 153 | + | remark-parse: 10.0.1 |
|
| 154 | + | remark-rehype: 10.1.0 |
|
| 155 | + | remark-smartypants: 2.0.0 |
|
| 156 | + | shiki: 0.11.1 |
|
| 157 | + | unified: 10.1.2 |
|
| 158 | + | unist-util-visit: 4.1.2 |
|
| 159 | + | vfile: 5.3.6 |
|
| 160 | + | transitivePeerDependencies: |
|
| 161 | + | - supports-color |
|
| 162 | + | ||
| 163 | + | /@astrojs/mdx/0.15.1_astro@2.0.2: |
|
| 164 | + | resolution: {integrity: sha512-RzrJ2vq+XnAtqvhRdIeONYBINFEWetXnfAqiB2V4s/FB/jd+8y9fSOtBtGpWCGpRZfidtMYPIiQ/damz0yJxVA==} |
|
| 165 | + | engines: {node: '>=16.12.0'} |
|
| 166 | + | dependencies: |
|
| 167 | + | '@astrojs/markdown-remark': 2.0.1_astro@2.0.2 |
|
| 168 | + | '@astrojs/prism': 2.0.0 |
|
| 169 | + | '@mdx-js/mdx': 2.2.1 |
|
| 170 | + | '@mdx-js/rollup': 2.2.1 |
|
| 171 | + | acorn: 8.8.2 |
|
| 172 | + | es-module-lexer: 0.10.5 |
|
| 173 | + | estree-util-visit: 1.2.1 |
|
| 174 | + | github-slugger: 1.5.0 |
|
| 175 | + | gray-matter: 4.0.3 |
|
| 176 | + | kleur: 4.1.5 |
|
| 177 | + | rehype-raw: 6.1.1 |
|
| 178 | + | remark-frontmatter: 4.0.1 |
|
| 179 | + | remark-gfm: 3.0.1 |
|
| 180 | + | remark-smartypants: 2.0.0 |
|
| 181 | + | shiki: 0.11.1 |
|
| 182 | + | unist-util-visit: 4.1.2 |
|
| 183 | + | vfile: 5.3.6 |
|
| 184 | + | transitivePeerDependencies: |
|
| 185 | + | - astro |
|
| 186 | + | - rollup |
|
| 187 | + | - supports-color |
|
| 188 | + | dev: true |
|
| 189 | + | ||
| 190 | + | /@astrojs/prefetch/0.1.1: |
|
| 191 | + | resolution: {integrity: sha512-+XZcjivPHTo9thQshDWKnnORHJ1dE6odIzhmKHac2ptwla092eohkiJw7Y31+PYmuJkc3Jp+3AawuCvfqCnQ2Q==} |
|
| 192 | + | dependencies: |
|
| 193 | + | throttles: 1.0.1 |
|
| 194 | + | dev: false |
|
| 195 | + | ||
| 196 | + | /@astrojs/prism/2.0.0: |
|
| 197 | + | resolution: {integrity: sha512-YgeoeEPqsxaEpg0rwe/bUq3653LqSQnMjrLlpYwrbQQMQQqz6Y5yXN+RX3SfLJ6ppNb4+Fu2+Z49EXjk48Ihjw==} |
|
| 198 | + | engines: {node: '>=16.12.0'} |
|
| 199 | + | dependencies: |
|
| 200 | + | prismjs: 1.29.0 |
|
| 201 | + | ||
| 202 | + | /@astrojs/rss/2.1.0: |
|
| 203 | + | resolution: {integrity: sha512-PrqtIDDAyu4MyIvhBZEQhftui5fqyO9JPvOe4QnVDhErMIYWXd0pVPpqdnE0SKZ5xykMkphYPAQdWDr7VeCzBg==} |
|
| 204 | + | dependencies: |
|
| 205 | + | fast-xml-parser: 4.0.15 |
|
| 206 | + | kleur: 4.1.5 |
|
| 207 | + | dev: false |
|
| 208 | + | ||
| 209 | + | /@astrojs/sitemap/1.0.0: |
|
| 210 | + | resolution: {integrity: sha512-42GxuF5FP7RaKXZrwGLBLOX3hPv+Wl7ExJC43O0J5e34ojJkLeKf7QfwN1UwrJlqH0Ywi0Fm4/xGe482G09+wg==} |
|
| 211 | + | dependencies: |
|
| 212 | + | sitemap: 7.1.1 |
|
| 213 | + | zod: 3.20.2 |
|
| 214 | + | dev: true |
|
| 215 | + | ||
| 216 | + | /@astrojs/tailwind/3.0.0_uhsc6pehih5huiqhsy5i7sy5um: |
|
| 217 | + | resolution: {integrity: sha512-Ul0LzTIW+QD/qXUaTDSDoe/uNOPSAX6Ce7yTMzl7v+9OlZ4vlgkj1CUq/WkhlKnJ2+SnJvLArEj6yYs/M2V8nA==} |
|
| 218 | + | peerDependencies: |
|
| 219 | + | astro: ^2.0.0 |
|
| 220 | + | tailwindcss: ^3.0.24 |
|
| 221 | + | dependencies: |
|
| 222 | + | '@proload/core': 0.3.3 |
|
| 223 | + | astro: 2.0.2 |
|
| 224 | + | autoprefixer: 10.4.13_postcss@8.4.21 |
|
| 225 | + | postcss: 8.4.21 |
|
| 226 | + | postcss-load-config: 4.0.1_postcss@8.4.21 |
|
| 227 | + | tailwindcss: 3.2.4_postcss@8.4.21 |
|
| 228 | + | transitivePeerDependencies: |
|
| 229 | + | - ts-node |
|
| 230 | + | dev: true |
|
| 231 | + | ||
| 232 | + | /@astrojs/telemetry/2.0.0: |
|
| 233 | + | resolution: {integrity: sha512-RnWojVMIsql3GGWDP5pNWmhmBQVkCpxGNZ8yPr2cbmUqsUYGSvErhqfkLfro9j2/STi5UDmSpNgjPkQmXpgnKw==} |
|
| 234 | + | engines: {node: '>=16.12.0'} |
|
| 235 | + | dependencies: |
|
| 236 | + | ci-info: 3.7.1 |
|
| 237 | + | debug: 4.3.4 |
|
| 238 | + | dlv: 1.1.3 |
|
| 239 | + | dset: 3.1.2 |
|
| 240 | + | is-docker: 3.0.0 |
|
| 241 | + | is-wsl: 2.2.0 |
|
| 242 | + | undici: 5.16.0 |
|
| 243 | + | which-pm-runs: 1.1.0 |
|
| 244 | + | transitivePeerDependencies: |
|
| 245 | + | - supports-color |
|
| 246 | + | ||
| 247 | + | /@astrojs/webapi/2.0.0: |
|
| 248 | + | resolution: {integrity: sha512-gziwy+XvY+/B9mq/eurgJMZ4iFnkcqg1wb0tA8BsVfiUPwl7yQKAFrBxrs2rWfKMXyWlVaTFc8rAYcB5VXQEuw==} |
|
| 249 | + | dependencies: |
|
| 250 | + | undici: 5.16.0 |
|
| 251 | + | ||
| 252 | + | /@babel/code-frame/7.18.6: |
|
| 253 | + | resolution: {integrity: sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==} |
|
| 254 | + | engines: {node: '>=6.9.0'} |
|
| 255 | + | dependencies: |
|
| 256 | + | '@babel/highlight': 7.18.6 |
|
| 257 | + | ||
| 258 | + | /@babel/compat-data/7.20.14: |
|
| 259 | + | resolution: {integrity: sha512-0YpKHD6ImkWMEINCyDAD0HLLUH/lPCefG8ld9it8DJB2wnApraKuhgYTvTY1z7UFIfBTGy5LwncZ+5HWWGbhFw==} |
|
| 260 | + | engines: {node: '>=6.9.0'} |
|
| 261 | + | ||
| 262 | + | /@babel/core/7.20.12: |
|
| 263 | + | resolution: {integrity: sha512-XsMfHovsUYHFMdrIHkZphTN/2Hzzi78R08NuHfDBehym2VsPDL6Zn/JAD/JQdnRvbSsbQc4mVaU1m6JgtTEElg==} |
|
| 264 | + | engines: {node: '>=6.9.0'} |
|
| 265 | + | dependencies: |
|
| 266 | + | '@ampproject/remapping': 2.2.0 |
|
| 267 | + | '@babel/code-frame': 7.18.6 |
|
| 268 | + | '@babel/generator': 7.20.14 |
|
| 269 | + | '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12 |
|
| 270 | + | '@babel/helper-module-transforms': 7.20.11 |
|
| 271 | + | '@babel/helpers': 7.20.13 |
|
| 272 | + | '@babel/parser': 7.20.13 |
|
| 273 | + | '@babel/template': 7.20.7 |
|
| 274 | + | '@babel/traverse': 7.20.13 |
|
| 275 | + | '@babel/types': 7.20.7 |
|
| 276 | + | convert-source-map: 1.9.0 |
|
| 277 | + | debug: 4.3.4 |
|
| 278 | + | gensync: 1.0.0-beta.2 |
|
| 279 | + | json5: 2.2.3 |
|
| 280 | + | semver: 6.3.0 |
|
| 281 | + | transitivePeerDependencies: |
|
| 282 | + | - supports-color |
|
| 283 | + | ||
| 284 | + | /@babel/generator/7.20.14: |
|
| 285 | + | resolution: {integrity: sha512-AEmuXHdcD3A52HHXxaTmYlb8q/xMEhoRP67B3T4Oq7lbmSoqroMZzjnGj3+i1io3pdnF8iBYVu4Ilj+c4hBxYg==} |
|
| 286 | + | engines: {node: '>=6.9.0'} |
|
| 287 | + | dependencies: |
|
| 288 | + | '@babel/types': 7.20.7 |
|
| 289 | + | '@jridgewell/gen-mapping': 0.3.2 |
|
| 290 | + | jsesc: 2.5.2 |
|
| 291 | + | ||
| 292 | + | /@babel/helper-annotate-as-pure/7.18.6: |
|
| 293 | + | resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==} |
|
| 294 | + | engines: {node: '>=6.9.0'} |
|
| 295 | + | dependencies: |
|
| 296 | + | '@babel/types': 7.20.7 |
|
| 297 | + | ||
| 298 | + | /@babel/helper-compilation-targets/7.20.7_@babel+core@7.20.12: |
|
| 299 | + | resolution: {integrity: sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==} |
|
| 300 | + | engines: {node: '>=6.9.0'} |
|
| 301 | + | peerDependencies: |
|
| 302 | + | '@babel/core': ^7.0.0 |
|
| 303 | + | dependencies: |
|
| 304 | + | '@babel/compat-data': 7.20.14 |
|
| 305 | + | '@babel/core': 7.20.12 |
|
| 306 | + | '@babel/helper-validator-option': 7.18.6 |
|
| 307 | + | browserslist: 4.21.4 |
|
| 308 | + | lru-cache: 5.1.1 |
|
| 309 | + | semver: 6.3.0 |
|
| 310 | + | ||
| 311 | + | /@babel/helper-environment-visitor/7.18.9: |
|
| 312 | + | resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==} |
|
| 313 | + | engines: {node: '>=6.9.0'} |
|
| 314 | + | ||
| 315 | + | /@babel/helper-function-name/7.19.0: |
|
| 316 | + | resolution: {integrity: sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==} |
|
| 317 | + | engines: {node: '>=6.9.0'} |
|
| 318 | + | dependencies: |
|
| 319 | + | '@babel/template': 7.20.7 |
|
| 320 | + | '@babel/types': 7.20.7 |
|
| 321 | + | ||
| 322 | + | /@babel/helper-hoist-variables/7.18.6: |
|
| 323 | + | resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==} |
|
| 324 | + | engines: {node: '>=6.9.0'} |
|
| 325 | + | dependencies: |
|
| 326 | + | '@babel/types': 7.20.7 |
|
| 327 | + | ||
| 328 | + | /@babel/helper-module-imports/7.18.6: |
|
| 329 | + | resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==} |
|
| 330 | + | engines: {node: '>=6.9.0'} |
|
| 331 | + | dependencies: |
|
| 332 | + | '@babel/types': 7.20.7 |
|
| 333 | + | ||
| 334 | + | /@babel/helper-module-transforms/7.20.11: |
|
| 335 | + | resolution: {integrity: sha512-uRy78kN4psmji1s2QtbtcCSaj/LILFDp0f/ymhpQH5QY3nljUZCaNWz9X1dEj/8MBdBEFECs7yRhKn8i7NjZgg==} |
|
| 336 | + | engines: {node: '>=6.9.0'} |
|
| 337 | + | dependencies: |
|
| 338 | + | '@babel/helper-environment-visitor': 7.18.9 |
|
| 339 | + | '@babel/helper-module-imports': 7.18.6 |
|
| 340 | + | '@babel/helper-simple-access': 7.20.2 |
|
| 341 | + | '@babel/helper-split-export-declaration': 7.18.6 |
|
| 342 | + | '@babel/helper-validator-identifier': 7.19.1 |
|
| 343 | + | '@babel/template': 7.20.7 |
|
| 344 | + | '@babel/traverse': 7.20.13 |
|
| 345 | + | '@babel/types': 7.20.7 |
|
| 346 | + | transitivePeerDependencies: |
|
| 347 | + | - supports-color |
|
| 348 | + | ||
| 349 | + | /@babel/helper-plugin-utils/7.20.2: |
|
| 350 | + | resolution: {integrity: sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==} |
|
| 351 | + | engines: {node: '>=6.9.0'} |
|
| 352 | + | ||
| 353 | + | /@babel/helper-simple-access/7.20.2: |
|
| 354 | + | resolution: {integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==} |
|
| 355 | + | engines: {node: '>=6.9.0'} |
|
| 356 | + | dependencies: |
|
| 357 | + | '@babel/types': 7.20.7 |
|
| 358 | + | ||
| 359 | + | /@babel/helper-split-export-declaration/7.18.6: |
|
| 360 | + | resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==} |
|
| 361 | + | engines: {node: '>=6.9.0'} |
|
| 362 | + | dependencies: |
|
| 363 | + | '@babel/types': 7.20.7 |
|
| 364 | + | ||
| 365 | + | /@babel/helper-string-parser/7.19.4: |
|
| 366 | + | resolution: {integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==} |
|
| 367 | + | engines: {node: '>=6.9.0'} |
|
| 368 | + | ||
| 369 | + | /@babel/helper-validator-identifier/7.19.1: |
|
| 370 | + | resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==} |
|
| 371 | + | engines: {node: '>=6.9.0'} |
|
| 372 | + | ||
| 373 | + | /@babel/helper-validator-option/7.18.6: |
|
| 374 | + | resolution: {integrity: sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==} |
|
| 375 | + | engines: {node: '>=6.9.0'} |
|
| 376 | + | ||
| 377 | + | /@babel/helpers/7.20.13: |
|
| 378 | + | resolution: {integrity: sha512-nzJ0DWCL3gB5RCXbUO3KIMMsBY2Eqbx8mBpKGE/02PgyRQFcPQLbkQ1vyy596mZLaP+dAfD+R4ckASzNVmW3jg==} |
|
| 379 | + | engines: {node: '>=6.9.0'} |
|
| 380 | + | dependencies: |
|
| 381 | + | '@babel/template': 7.20.7 |
|
| 382 | + | '@babel/traverse': 7.20.13 |
|
| 383 | + | '@babel/types': 7.20.7 |
|
| 384 | + | transitivePeerDependencies: |
|
| 385 | + | - supports-color |
|
| 386 | + | ||
| 387 | + | /@babel/highlight/7.18.6: |
|
| 388 | + | resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==} |
|
| 389 | + | engines: {node: '>=6.9.0'} |
|
| 390 | + | dependencies: |
|
| 391 | + | '@babel/helper-validator-identifier': 7.19.1 |
|
| 392 | + | chalk: 2.4.2 |
|
| 393 | + | js-tokens: 4.0.0 |
|
| 394 | + | ||
| 395 | + | /@babel/parser/7.20.13: |
|
| 396 | + | resolution: {integrity: sha512-gFDLKMfpiXCsjt4za2JA9oTMn70CeseCehb11kRZgvd7+F67Hih3OHOK24cRrWECJ/ljfPGac6ygXAs/C8kIvw==} |
|
| 397 | + | engines: {node: '>=6.0.0'} |
|
| 398 | + | hasBin: true |
|
| 399 | + | dependencies: |
|
| 400 | + | '@babel/types': 7.20.7 |
|
| 401 | + | ||
| 402 | + | /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.20.12: |
|
| 403 | + | resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==} |
|
| 404 | + | engines: {node: '>=6.9.0'} |
|
| 405 | + | peerDependencies: |
|
| 406 | + | '@babel/core': ^7.0.0-0 |
|
| 407 | + | dependencies: |
|
| 408 | + | '@babel/core': 7.20.12 |
|
| 409 | + | '@babel/helper-plugin-utils': 7.20.2 |
|
| 410 | + | ||
| 411 | + | /@babel/plugin-transform-react-jsx/7.20.13_@babel+core@7.20.12: |
|
| 412 | + | resolution: {integrity: sha512-MmTZx/bkUrfJhhYAYt3Urjm+h8DQGrPrnKQ94jLo7NLuOU+T89a7IByhKmrb8SKhrIYIQ0FN0CHMbnFRen4qNw==} |
|
| 413 | + | engines: {node: '>=6.9.0'} |
|
| 414 | + | peerDependencies: |
|
| 415 | + | '@babel/core': ^7.0.0-0 |
|
| 416 | + | dependencies: |
|
| 417 | + | '@babel/core': 7.20.12 |
|
| 418 | + | '@babel/helper-annotate-as-pure': 7.18.6 |
|
| 419 | + | '@babel/helper-module-imports': 7.18.6 |
|
| 420 | + | '@babel/helper-plugin-utils': 7.20.2 |
|
| 421 | + | '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.20.12 |
|
| 422 | + | '@babel/types': 7.20.7 |
|
| 423 | + | ||
| 424 | + | /@babel/runtime/7.20.13: |
|
| 425 | + | resolution: {integrity: sha512-gt3PKXs0DBoL9xCvOIIZ2NEqAGZqHjAnmVbfQtB620V0uReIQutpel14KcneZuer7UioY8ALKZ7iocavvzTNFA==} |
|
| 426 | + | engines: {node: '>=6.9.0'} |
|
| 427 | + | dependencies: |
|
| 428 | + | regenerator-runtime: 0.13.11 |
|
| 429 | + | dev: true |
|
| 430 | + | ||
| 431 | + | /@babel/template/7.20.7: |
|
| 432 | + | resolution: {integrity: sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==} |
|
| 433 | + | engines: {node: '>=6.9.0'} |
|
| 434 | + | dependencies: |
|
| 435 | + | '@babel/code-frame': 7.18.6 |
|
| 436 | + | '@babel/parser': 7.20.13 |
|
| 437 | + | '@babel/types': 7.20.7 |
|
| 438 | + | ||
| 439 | + | /@babel/traverse/7.20.13: |
|
| 440 | + | resolution: {integrity: sha512-kMJXfF0T6DIS9E8cgdLCSAL+cuCK+YEZHWiLK0SXpTo8YRj5lpJu3CDNKiIBCne4m9hhTIqUg6SYTAI39tAiVQ==} |
|
| 441 | + | engines: {node: '>=6.9.0'} |
|
| 442 | + | dependencies: |
|
| 443 | + | '@babel/code-frame': 7.18.6 |
|
| 444 | + | '@babel/generator': 7.20.14 |
|
| 445 | + | '@babel/helper-environment-visitor': 7.18.9 |
|
| 446 | + | '@babel/helper-function-name': 7.19.0 |
|
| 447 | + | '@babel/helper-hoist-variables': 7.18.6 |
|
| 448 | + | '@babel/helper-split-export-declaration': 7.18.6 |
|
| 449 | + | '@babel/parser': 7.20.13 |
|
| 450 | + | '@babel/types': 7.20.7 |
|
| 451 | + | debug: 4.3.4 |
|
| 452 | + | globals: 11.12.0 |
|
| 453 | + | transitivePeerDependencies: |
|
| 454 | + | - supports-color |
|
| 455 | + | ||
| 456 | + | /@babel/types/7.20.7: |
|
| 457 | + | resolution: {integrity: sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg==} |
|
| 458 | + | engines: {node: '>=6.9.0'} |
|
| 459 | + | dependencies: |
|
| 460 | + | '@babel/helper-string-parser': 7.19.4 |
|
| 461 | + | '@babel/helper-validator-identifier': 7.19.1 |
|
| 462 | + | to-fast-properties: 2.0.0 |
|
| 463 | + | ||
| 464 | + | /@csstools/selector-specificity/2.1.1_wajs5nedgkikc5pcuwett7legi: |
|
| 465 | + | resolution: {integrity: sha512-jwx+WCqszn53YHOfvFMJJRd/B2GqkCBt+1MJSG6o5/s8+ytHMvDZXsJgUEWLk12UnLd7HYKac4BYU5i/Ron1Cw==} |
|
| 466 | + | engines: {node: ^14 || ^16 || >=18} |
|
| 467 | + | peerDependencies: |
|
| 468 | + | postcss: ^8.4 |
|
| 469 | + | postcss-selector-parser: ^6.0.10 |
|
| 470 | + | dependencies: |
|
| 471 | + | postcss: 8.4.21 |
|
| 472 | + | postcss-selector-parser: 6.0.11 |
|
| 473 | + | dev: true |
|
| 474 | + | ||
| 475 | + | /@emmetio/abbreviation/2.2.3: |
|
| 476 | + | resolution: {integrity: sha512-87pltuCPt99aL+y9xS6GPZ+Wmmyhll2WXH73gG/xpGcQ84DRnptBsI2r0BeIQ0EB/SQTOe2ANPqFqj3Rj5FOGA==} |
|
| 477 | + | dependencies: |
|
| 478 | + | '@emmetio/scanner': 1.0.0 |
|
| 479 | + | ||
| 480 | + | /@emmetio/css-abbreviation/2.1.4: |
|
| 481 | + | resolution: {integrity: sha512-qk9L60Y+uRtM5CPbB0y+QNl/1XKE09mSO+AhhSauIfr2YOx/ta3NJw2d8RtCFxgzHeRqFRr8jgyzThbu+MZ4Uw==} |
|
| 482 | + | dependencies: |
|
| 483 | + | '@emmetio/scanner': 1.0.0 |
|
| 484 | + | ||
| 485 | + | /@emmetio/scanner/1.0.0: |
|
| 486 | + | resolution: {integrity: sha512-8HqW8EVqjnCmWXVpqAOZf+EGESdkR27odcMMMGefgKXtar00SoYNSryGv//TELI4T3QFsECo78p+0lmalk/CFA==} |
|
| 487 | + | ||
| 488 | + | /@esbuild/android-arm/0.16.17: |
|
| 489 | + | resolution: {integrity: sha512-N9x1CMXVhtWEAMS7pNNONyA14f71VPQN9Cnavj1XQh6T7bskqiLLrSca4O0Vr8Wdcga943eThxnVp3JLnBMYtw==} |
|
| 490 | + | engines: {node: '>=12'} |
|
| 491 | + | cpu: [arm] |
|
| 492 | + | os: [android] |
|
| 493 | + | requiresBuild: true |
|
| 494 | + | optional: true |
|
| 495 | + | ||
| 496 | + | /@esbuild/android-arm64/0.16.17: |
|
| 497 | + | resolution: {integrity: sha512-MIGl6p5sc3RDTLLkYL1MyL8BMRN4tLMRCn+yRJJmEDvYZ2M7tmAf80hx1kbNEUX2KJ50RRtxZ4JHLvCfuB6kBg==} |
|
| 498 | + | engines: {node: '>=12'} |
|
| 499 | + | cpu: [arm64] |
|
| 500 | + | os: [android] |
|
| 501 | + | requiresBuild: true |
|
| 502 | + | optional: true |
|
| 503 | + | ||
| 504 | + | /@esbuild/android-x64/0.16.17: |
|
| 505 | + | resolution: {integrity: sha512-a3kTv3m0Ghh4z1DaFEuEDfz3OLONKuFvI4Xqczqx4BqLyuFaFkuaG4j2MtA6fuWEFeC5x9IvqnX7drmRq/fyAQ==} |
|
| 506 | + | engines: {node: '>=12'} |
|
| 507 | + | cpu: [x64] |
|
| 508 | + | os: [android] |
|
| 509 | + | requiresBuild: true |
|
| 510 | + | optional: true |
|
| 511 | + | ||
| 512 | + | /@esbuild/darwin-arm64/0.16.17: |
|
| 513 | + | resolution: {integrity: sha512-/2agbUEfmxWHi9ARTX6OQ/KgXnOWfsNlTeLcoV7HSuSTv63E4DqtAc+2XqGw1KHxKMHGZgbVCZge7HXWX9Vn+w==} |
|
| 514 | + | engines: {node: '>=12'} |
|
| 515 | + | cpu: [arm64] |
|
| 516 | + | os: [darwin] |
|
| 517 | + | requiresBuild: true |
|
| 518 | + | optional: true |
|
| 519 | + | ||
| 520 | + | /@esbuild/darwin-x64/0.16.17: |
|
| 521 | + | resolution: {integrity: sha512-2By45OBHulkd9Svy5IOCZt376Aa2oOkiE9QWUK9fe6Tb+WDr8hXL3dpqi+DeLiMed8tVXspzsTAvd0jUl96wmg==} |
|
| 522 | + | engines: {node: '>=12'} |
|
| 523 | + | cpu: [x64] |
|
| 524 | + | os: [darwin] |
|
| 525 | + | requiresBuild: true |
|
| 526 | + | optional: true |
|
| 527 | + | ||
| 528 | + | /@esbuild/freebsd-arm64/0.16.17: |
|
| 529 | + | resolution: {integrity: sha512-mt+cxZe1tVx489VTb4mBAOo2aKSnJ33L9fr25JXpqQqzbUIw/yzIzi+NHwAXK2qYV1lEFp4OoVeThGjUbmWmdw==} |
|
| 530 | + | engines: {node: '>=12'} |
|
| 531 | + | cpu: [arm64] |
|
| 532 | + | os: [freebsd] |
|
| 533 | + | requiresBuild: true |
|
| 534 | + | optional: true |
|
| 535 | + | ||
| 536 | + | /@esbuild/freebsd-x64/0.16.17: |
|
| 537 | + | resolution: {integrity: sha512-8ScTdNJl5idAKjH8zGAsN7RuWcyHG3BAvMNpKOBaqqR7EbUhhVHOqXRdL7oZvz8WNHL2pr5+eIT5c65kA6NHug==} |
|
| 538 | + | engines: {node: '>=12'} |
|
| 539 | + | cpu: [x64] |
|
| 540 | + | os: [freebsd] |
|
| 541 | + | requiresBuild: true |
|
| 542 | + | optional: true |
|
| 543 | + | ||
| 544 | + | /@esbuild/linux-arm/0.16.17: |
|
| 545 | + | resolution: {integrity: sha512-iihzrWbD4gIT7j3caMzKb/RsFFHCwqqbrbH9SqUSRrdXkXaygSZCZg1FybsZz57Ju7N/SHEgPyaR0LZ8Zbe9gQ==} |
|
| 546 | + | engines: {node: '>=12'} |
|
| 547 | + | cpu: [arm] |
|
| 548 | + | os: [linux] |
|
| 549 | + | requiresBuild: true |
|
| 550 | + | optional: true |
|
| 551 | + | ||
| 552 | + | /@esbuild/linux-arm64/0.16.17: |
|
| 553 | + | resolution: {integrity: sha512-7S8gJnSlqKGVJunnMCrXHU9Q8Q/tQIxk/xL8BqAP64wchPCTzuM6W3Ra8cIa1HIflAvDnNOt2jaL17vaW+1V0g==} |
|
| 554 | + | engines: {node: '>=12'} |
|
| 555 | + | cpu: [arm64] |
|
| 556 | + | os: [linux] |
|
| 557 | + | requiresBuild: true |
|
| 558 | + | optional: true |
|
| 559 | + | ||
| 560 | + | /@esbuild/linux-ia32/0.16.17: |
|
| 561 | + | resolution: {integrity: sha512-kiX69+wcPAdgl3Lonh1VI7MBr16nktEvOfViszBSxygRQqSpzv7BffMKRPMFwzeJGPxcio0pdD3kYQGpqQ2SSg==} |
|
| 562 | + | engines: {node: '>=12'} |
|
| 563 | + | cpu: [ia32] |
|
| 564 | + | os: [linux] |
|
| 565 | + | requiresBuild: true |
|
| 566 | + | optional: true |
|
| 567 | + | ||
| 568 | + | /@esbuild/linux-loong64/0.16.17: |
|
| 569 | + | resolution: {integrity: sha512-dTzNnQwembNDhd654cA4QhbS9uDdXC3TKqMJjgOWsC0yNCbpzfWoXdZvp0mY7HU6nzk5E0zpRGGx3qoQg8T2DQ==} |
|
| 570 | + | engines: {node: '>=12'} |
|
| 571 | + | cpu: [loong64] |
|
| 572 | + | os: [linux] |
|
| 573 | + | requiresBuild: true |
|
| 574 | + | optional: true |
|
| 575 | + | ||
| 576 | + | /@esbuild/linux-mips64el/0.16.17: |
|
| 577 | + | resolution: {integrity: sha512-ezbDkp2nDl0PfIUn0CsQ30kxfcLTlcx4Foz2kYv8qdC6ia2oX5Q3E/8m6lq84Dj/6b0FrkgD582fJMIfHhJfSw==} |
|
| 578 | + | engines: {node: '>=12'} |
|
| 579 | + | cpu: [mips64el] |
|
| 580 | + | os: [linux] |
|
| 581 | + | requiresBuild: true |
|
| 582 | + | optional: true |
|
| 583 | + | ||
| 584 | + | /@esbuild/linux-ppc64/0.16.17: |
|
| 585 | + | resolution: {integrity: sha512-dzS678gYD1lJsW73zrFhDApLVdM3cUF2MvAa1D8K8KtcSKdLBPP4zZSLy6LFZ0jYqQdQ29bjAHJDgz0rVbLB3g==} |
|
| 586 | + | engines: {node: '>=12'} |
|
| 587 | + | cpu: [ppc64] |
|
| 588 | + | os: [linux] |
|
| 589 | + | requiresBuild: true |
|
| 590 | + | optional: true |
|
| 591 | + | ||
| 592 | + | /@esbuild/linux-riscv64/0.16.17: |
|
| 593 | + | resolution: {integrity: sha512-ylNlVsxuFjZK8DQtNUwiMskh6nT0vI7kYl/4fZgV1llP5d6+HIeL/vmmm3jpuoo8+NuXjQVZxmKuhDApK0/cKw==} |
|
| 594 | + | engines: {node: '>=12'} |
|
| 595 | + | cpu: [riscv64] |
|
| 596 | + | os: [linux] |
|
| 597 | + | requiresBuild: true |
|
| 598 | + | optional: true |
|
| 599 | + | ||
| 600 | + | /@esbuild/linux-s390x/0.16.17: |
|
| 601 | + | resolution: {integrity: sha512-gzy7nUTO4UA4oZ2wAMXPNBGTzZFP7mss3aKR2hH+/4UUkCOyqmjXiKpzGrY2TlEUhbbejzXVKKGazYcQTZWA/w==} |
|
| 602 | + | engines: {node: '>=12'} |
|
| 603 | + | cpu: [s390x] |
|
| 604 | + | os: [linux] |
|
| 605 | + | requiresBuild: true |
|
| 606 | + | optional: true |
|
| 607 | + | ||
| 608 | + | /@esbuild/linux-x64/0.16.17: |
|
| 609 | + | resolution: {integrity: sha512-mdPjPxfnmoqhgpiEArqi4egmBAMYvaObgn4poorpUaqmvzzbvqbowRllQ+ZgzGVMGKaPkqUmPDOOFQRUFDmeUw==} |
|
| 610 | + | engines: {node: '>=12'} |
|
| 611 | + | cpu: [x64] |
|
| 612 | + | os: [linux] |
|
| 613 | + | requiresBuild: true |
|
| 614 | + | optional: true |
|
| 615 | + | ||
| 616 | + | /@esbuild/netbsd-x64/0.16.17: |
|
| 617 | + | resolution: {integrity: sha512-/PzmzD/zyAeTUsduZa32bn0ORug+Jd1EGGAUJvqfeixoEISYpGnAezN6lnJoskauoai0Jrs+XSyvDhppCPoKOA==} |
|
| 618 | + | engines: {node: '>=12'} |
|
| 619 | + | cpu: [x64] |
|
| 620 | + | os: [netbsd] |
|
| 621 | + | requiresBuild: true |
|
| 622 | + | optional: true |
|
| 623 | + | ||
| 624 | + | /@esbuild/openbsd-x64/0.16.17: |
|
| 625 | + | resolution: {integrity: sha512-2yaWJhvxGEz2RiftSk0UObqJa/b+rIAjnODJgv2GbGGpRwAfpgzyrg1WLK8rqA24mfZa9GvpjLcBBg8JHkoodg==} |
|
| 626 | + | engines: {node: '>=12'} |
|
| 627 | + | cpu: [x64] |
|
| 628 | + | os: [openbsd] |
|
| 629 | + | requiresBuild: true |
|
| 630 | + | optional: true |
|
| 631 | + | ||
| 632 | + | /@esbuild/sunos-x64/0.16.17: |
|
| 633 | + | resolution: {integrity: sha512-xtVUiev38tN0R3g8VhRfN7Zl42YCJvyBhRKw1RJjwE1d2emWTVToPLNEQj/5Qxc6lVFATDiy6LjVHYhIPrLxzw==} |
|
| 634 | + | engines: {node: '>=12'} |
|
| 635 | + | cpu: [x64] |
|
| 636 | + | os: [sunos] |
|
| 637 | + | requiresBuild: true |
|
| 638 | + | optional: true |
|
| 639 | + | ||
| 640 | + | /@esbuild/win32-arm64/0.16.17: |
|
| 641 | + | resolution: {integrity: sha512-ga8+JqBDHY4b6fQAmOgtJJue36scANy4l/rL97W+0wYmijhxKetzZdKOJI7olaBaMhWt8Pac2McJdZLxXWUEQw==} |
|
| 642 | + | engines: {node: '>=12'} |
|
| 643 | + | cpu: [arm64] |
|
| 644 | + | os: [win32] |
|
| 645 | + | requiresBuild: true |
|
| 646 | + | optional: true |
|
| 647 | + | ||
| 648 | + | /@esbuild/win32-ia32/0.16.17: |
|
| 649 | + | resolution: {integrity: sha512-WnsKaf46uSSF/sZhwnqE4L/F89AYNMiD4YtEcYekBt9Q7nj0DiId2XH2Ng2PHM54qi5oPrQ8luuzGszqi/veig==} |
|
| 650 | + | engines: {node: '>=12'} |
|
| 651 | + | cpu: [ia32] |
|
| 652 | + | os: [win32] |
|
| 653 | + | requiresBuild: true |
|
| 654 | + | optional: true |
|
| 655 | + | ||
| 656 | + | /@esbuild/win32-x64/0.16.17: |
|
| 657 | + | resolution: {integrity: sha512-y+EHuSchhL7FjHgvQL/0fnnFmO4T1bhvWANX6gcnqTjtnKWbTvUMCpGnv2+t+31d7RzyEAYAd4u2fnIhHL6N/Q==} |
|
| 658 | + | engines: {node: '>=12'} |
|
| 659 | + | cpu: [x64] |
|
| 660 | + | os: [win32] |
|
| 661 | + | requiresBuild: true |
|
| 662 | + | optional: true |
|
| 663 | + | ||
| 664 | + | /@eslint/eslintrc/1.4.1: |
|
| 665 | + | resolution: {integrity: sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==} |
|
| 666 | + | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} |
|
| 667 | + | dependencies: |
|
| 668 | + | ajv: 6.12.6 |
|
| 669 | + | debug: 4.3.4 |
|
| 670 | + | espree: 9.4.1 |
|
| 671 | + | globals: 13.19.0 |
|
| 672 | + | ignore: 5.2.4 |
|
| 673 | + | import-fresh: 3.3.0 |
|
| 674 | + | js-yaml: 4.1.0 |
|
| 675 | + | minimatch: 3.1.2 |
|
| 676 | + | strip-json-comments: 3.1.1 |
|
| 677 | + | transitivePeerDependencies: |
|
| 678 | + | - supports-color |
|
| 679 | + | dev: true |
|
| 680 | + | ||
| 681 | + | /@humanwhocodes/config-array/0.11.8: |
|
| 682 | + | resolution: {integrity: sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==} |
|
| 683 | + | engines: {node: '>=10.10.0'} |
|
| 684 | + | dependencies: |
|
| 685 | + | '@humanwhocodes/object-schema': 1.2.1 |
|
| 686 | + | debug: 4.3.4 |
|
| 687 | + | minimatch: 3.1.2 |
|
| 688 | + | transitivePeerDependencies: |
|
| 689 | + | - supports-color |
|
| 690 | + | dev: true |
|
| 691 | + | ||
| 692 | + | /@humanwhocodes/module-importer/1.0.1: |
|
| 693 | + | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} |
|
| 694 | + | engines: {node: '>=12.22'} |
|
| 695 | + | dev: true |
|
| 696 | + | ||
| 697 | + | /@humanwhocodes/object-schema/1.2.1: |
|
| 698 | + | resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} |
|
| 699 | + | dev: true |
|
| 700 | + | ||
| 701 | + | /@jridgewell/gen-mapping/0.1.1: |
|
| 702 | + | resolution: {integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==} |
|
| 703 | + | engines: {node: '>=6.0.0'} |
|
| 704 | + | dependencies: |
|
| 705 | + | '@jridgewell/set-array': 1.1.2 |
|
| 706 | + | '@jridgewell/sourcemap-codec': 1.4.14 |
|
| 707 | + | ||
| 708 | + | /@jridgewell/gen-mapping/0.3.2: |
|
| 709 | + | resolution: {integrity: sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==} |
|
| 710 | + | engines: {node: '>=6.0.0'} |
|
| 711 | + | dependencies: |
|
| 712 | + | '@jridgewell/set-array': 1.1.2 |
|
| 713 | + | '@jridgewell/sourcemap-codec': 1.4.14 |
|
| 714 | + | '@jridgewell/trace-mapping': 0.3.17 |
|
| 715 | + | ||
| 716 | + | /@jridgewell/resolve-uri/3.1.0: |
|
| 717 | + | resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==} |
|
| 718 | + | engines: {node: '>=6.0.0'} |
|
| 719 | + | ||
| 720 | + | /@jridgewell/set-array/1.1.2: |
|
| 721 | + | resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} |
|
| 722 | + | engines: {node: '>=6.0.0'} |
|
| 723 | + | ||
| 724 | + | /@jridgewell/sourcemap-codec/1.4.14: |
|
| 725 | + | resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==} |
|
| 726 | + | ||
| 727 | + | /@jridgewell/trace-mapping/0.3.17: |
|
| 728 | + | resolution: {integrity: sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==} |
|
| 729 | + | dependencies: |
|
| 730 | + | '@jridgewell/resolve-uri': 3.1.0 |
|
| 731 | + | '@jridgewell/sourcemap-codec': 1.4.14 |
|
| 732 | + | ||
| 733 | + | /@ljharb/has-package-exports-patterns/0.0.2: |
|
| 734 | + | resolution: {integrity: sha512-4/RWEeXDO6bocPONheFe6gX/oQdP/bEpv0oL4HqjPP5DCenBSt0mHgahppY49N0CpsaqffdwPq+TlX9CYOq2Dw==} |
|
| 735 | + | ||
| 736 | + | /@mdx-js/mdx/2.2.1: |
|
| 737 | + | resolution: {integrity: sha512-hZ3ex7exYLJn6FfReq8yTvA6TE53uW9UHJQM9IlSauOuS55J9y8RtA7W+dzp6Yrzr00/U1sd7q+Wf61q6SfiTQ==} |
|
| 738 | + | dependencies: |
|
| 739 | + | '@types/estree-jsx': 1.0.0 |
|
| 740 | + | '@types/mdx': 2.0.3 |
|
| 741 | + | estree-util-build-jsx: 2.2.2 |
|
| 742 | + | estree-util-is-identifier-name: 2.1.0 |
|
| 743 | + | estree-util-to-js: 1.1.1 |
|
| 744 | + | estree-walker: 3.0.3 |
|
| 745 | + | hast-util-to-estree: 2.2.1 |
|
| 746 | + | markdown-extensions: 1.1.1 |
|
| 747 | + | periscopic: 3.1.0 |
|
| 748 | + | remark-mdx: 2.2.1 |
|
| 749 | + | remark-parse: 10.0.1 |
|
| 750 | + | remark-rehype: 10.1.0 |
|
| 751 | + | unified: 10.1.2 |
|
| 752 | + | unist-util-position-from-estree: 1.1.2 |
|
| 753 | + | unist-util-stringify-position: 3.0.3 |
|
| 754 | + | unist-util-visit: 4.1.2 |
|
| 755 | + | vfile: 5.3.6 |
|
| 756 | + | transitivePeerDependencies: |
|
| 757 | + | - supports-color |
|
| 758 | + | dev: true |
|
| 759 | + | ||
| 760 | + | /@mdx-js/rollup/2.2.1: |
|
| 761 | + | resolution: {integrity: sha512-wpGeK9iO7gPEIyC/ZTiggLY/MkEWDj5IWSsjlpkefgjb5RbmUukXU6/D2rHA+VAopxigS3NlaIL2ctpYBi4fmg==} |
|
| 762 | + | peerDependencies: |
|
| 763 | + | rollup: '>=2' |
|
| 764 | + | dependencies: |
|
| 765 | + | '@mdx-js/mdx': 2.2.1 |
|
| 766 | + | '@rollup/pluginutils': 5.0.2 |
|
| 767 | + | source-map: 0.7.4 |
|
| 768 | + | vfile: 5.3.6 |
|
| 769 | + | transitivePeerDependencies: |
|
| 770 | + | - supports-color |
|
| 771 | + | dev: true |
|
| 772 | + | ||
| 773 | + | /@nodelib/fs.scandir/2.1.5: |
|
| 774 | + | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} |
|
| 775 | + | engines: {node: '>= 8'} |
|
| 776 | + | dependencies: |
|
| 777 | + | '@nodelib/fs.stat': 2.0.5 |
|
| 778 | + | run-parallel: 1.2.0 |
|
| 779 | + | ||
| 780 | + | /@nodelib/fs.stat/2.0.5: |
|
| 781 | + | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} |
|
| 782 | + | engines: {node: '>= 8'} |
|
| 783 | + | ||
| 784 | + | /@nodelib/fs.walk/1.2.8: |
|
| 785 | + | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} |
|
| 786 | + | engines: {node: '>= 8'} |
|
| 787 | + | dependencies: |
|
| 788 | + | '@nodelib/fs.scandir': 2.1.5 |
|
| 789 | + | fastq: 1.15.0 |
|
| 790 | + | ||
| 791 | + | /@pkgr/utils/2.3.1: |
|
| 792 | + | resolution: {integrity: sha512-wfzX8kc1PMyUILA+1Z/EqoE4UCXGy0iRGMhPwdfae1+f0OXlLqCk+By+aMzgJBzR9AzS4CDizioG6Ss1gvAFJw==} |
|
| 793 | + | engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} |
|
| 794 | + | dependencies: |
|
| 795 | + | cross-spawn: 7.0.3 |
|
| 796 | + | is-glob: 4.0.3 |
|
| 797 | + | open: 8.4.0 |
|
| 798 | + | picocolors: 1.0.0 |
|
| 799 | + | tiny-glob: 0.2.9 |
|
| 800 | + | tslib: 2.5.0 |
|
| 801 | + | ||
| 802 | + | /@proload/core/0.3.3: |
|
| 803 | + | resolution: {integrity: sha512-7dAFWsIK84C90AMl24+N/ProHKm4iw0akcnoKjRvbfHifJZBLhaDsDus1QJmhG12lXj4e/uB/8mB/0aduCW+NQ==} |
|
| 804 | + | dependencies: |
|
| 805 | + | deepmerge: 4.2.2 |
|
| 806 | + | escalade: 3.1.1 |
|
| 807 | + | dev: true |
|
| 808 | + | ||
| 809 | + | /@resvg/resvg-js-android-arm-eabi/2.2.0: |
|
| 810 | + | resolution: {integrity: sha512-w3lAI6R5cfxGM5oxX6XhEFob4mJkkyfKm0veUQJOg65J4dznwcaJ54lGuQPfjAPhcHxSk/w+7BvFLjbbjV09qw==} |
|
| 811 | + | engines: {node: '>= 10'} |
|
| 812 | + | cpu: [arm] |
|
| 813 | + | os: [android] |
|
| 814 | + | requiresBuild: true |
|
| 815 | + | dev: true |
|
| 816 | + | optional: true |
|
| 817 | + | ||
| 818 | + | /@resvg/resvg-js-android-arm64/2.2.0: |
|
| 819 | + | resolution: {integrity: sha512-rzo0IqUErz1GzPthmU3wB25Vvdyr6KGI+J2WqALgSqmFxJ/sDygT2/6tirb4Lp1IjbvLhzO3uA6SP/sMwcWNfw==} |
|
| 820 | + | engines: {node: '>= 10'} |
|
| 821 | + | cpu: [arm64] |
|
| 822 | + | os: [android] |
|
| 823 | + | requiresBuild: true |
|
| 824 | + | dev: true |
|
| 825 | + | optional: true |
|
| 826 | + | ||
| 827 | + | /@resvg/resvg-js-darwin-arm64/2.2.0: |
|
| 828 | + | resolution: {integrity: sha512-MHJBjUh+xlZeMXcHqGiBO5d5CcgNAd0pXXaOmQtcamfBN5oc9SCJP3z137BEN5RhE6bgz6Wl88Sv1Jh3Wn0nlA==} |
|
| 829 | + | engines: {node: '>= 10'} |
|
| 830 | + | cpu: [arm64] |
|
| 831 | + | os: [darwin] |
|
| 832 | + | requiresBuild: true |
|
| 833 | + | dev: true |
|
| 834 | + | optional: true |
|
| 835 | + | ||
| 836 | + | /@resvg/resvg-js-darwin-x64/2.2.0: |
|
| 837 | + | resolution: {integrity: sha512-y6uaW/lWgvqpoeTA2hrgPlvNS7kbduBpUfYCpmk7KzOEMBzUUssOHT+DgqlQ7SZOi01mL6DHeDpAjvzM7K4Ocw==} |
|
| 838 | + | engines: {node: '>= 10'} |
|
| 839 | + | cpu: [x64] |
|
| 840 | + | os: [darwin] |
|
| 841 | + | requiresBuild: true |
|
| 842 | + | dev: true |
|
| 843 | + | optional: true |
|
| 844 | + | ||
| 845 | + | /@resvg/resvg-js-linux-arm-gnueabihf/2.2.0: |
|
| 846 | + | resolution: {integrity: sha512-G32NqLnuYilT3z5oD5AKXZvpD/ZPRzP1t2T0dvqQC6kBE6c5ckhdCbyT0gnnarcvMoXP+J/xh7kadEp3V8wFDg==} |
|
| 847 | + | engines: {node: '>= 10'} |
|
| 848 | + | cpu: [arm] |
|
| 849 | + | os: [linux] |
|
| 850 | + | requiresBuild: true |
|
| 851 | + | dev: true |
|
| 852 | + | optional: true |
|
| 853 | + | ||
| 854 | + | /@resvg/resvg-js-linux-arm64-gnu/2.2.0: |
|
| 855 | + | resolution: {integrity: sha512-R0KJCCyjFcTDFT+nAVlP/CYUMIEjxSkSJsEED9QesulCxMY/aoO52p91FgQrGjecORkASNXovlqS3HsNYbCTOg==} |
|
| 856 | + | engines: {node: '>= 10'} |
|
| 857 | + | cpu: [arm64] |
|
| 858 | + | os: [linux] |
|
| 859 | + | requiresBuild: true |
|
| 860 | + | dev: true |
|
| 861 | + | optional: true |
|
| 862 | + | ||
| 863 | + | /@resvg/resvg-js-linux-arm64-musl/2.2.0: |
|
| 864 | + | resolution: {integrity: sha512-Ir83lcBsuB6YVkAVPW4AAOzYo/F9kjlx2HA/O3vCjy/Rn5u5Xf2fGANfJxfCHUCtDMcqmM4hjdF2fOzqS9fusw==} |
|
| 865 | + | engines: {node: '>= 10'} |
|
| 866 | + | cpu: [arm64] |
|
| 867 | + | os: [linux] |
|
| 868 | + | requiresBuild: true |
|
| 869 | + | dev: true |
|
| 870 | + | optional: true |
|
| 871 | + | ||
| 872 | + | /@resvg/resvg-js-linux-x64-gnu/2.2.0: |
|
| 873 | + | resolution: {integrity: sha512-pH1GdShtIDF3fmQZM9NTEEdZPkNKQ+XUJb7r1jaD8gusdXeD2ejWWi/uvlsugaoMoG0tUmMZi78eVm4IjlY+gw==} |
|
| 874 | + | engines: {node: '>= 10'} |
|
| 875 | + | cpu: [x64] |
|
| 876 | + | os: [linux] |
|
| 877 | + | requiresBuild: true |
|
| 878 | + | dev: true |
|
| 879 | + | optional: true |
|
| 880 | + | ||
| 881 | + | /@resvg/resvg-js-linux-x64-musl/2.2.0: |
|
| 882 | + | resolution: {integrity: sha512-7n2d4gfcyLb06RE/7aMGwiiMiqeCf/Ze/fBhKs9F2L60GX6rpgDC2PGJmWBiXIwz48PifvxmBiqD9XCUH5YGoA==} |
|
| 883 | + | engines: {node: '>= 10'} |
|
| 884 | + | cpu: [x64] |
|
| 885 | + | os: [linux] |
|
| 886 | + | requiresBuild: true |
|
| 887 | + | dev: true |
|
| 888 | + | optional: true |
|
| 889 | + | ||
| 890 | + | /@resvg/resvg-js-win32-arm64-msvc/2.2.0: |
|
| 891 | + | resolution: {integrity: sha512-rJWhnui1+P9lakfx92zhm+HInZUU1NdvkL/G5KrFcRI8HH0rfdNHokfKknvuko4e7iUSia7kTsbuKDNe4fErtQ==} |
|
| 892 | + | engines: {node: '>= 10'} |
|
| 893 | + | cpu: [arm64] |
|
| 894 | + | os: [win32] |
|
| 895 | + | requiresBuild: true |
|
| 896 | + | dev: true |
|
| 897 | + | optional: true |
|
| 898 | + | ||
| 899 | + | /@resvg/resvg-js-win32-ia32-msvc/2.2.0: |
|
| 900 | + | resolution: {integrity: sha512-GlckTgsrlF9PQlWcXs1EySeGaT8TAkrSGhVZPRvSv46DUpZlhyVVvKMjsvpbDfqWltFkJTEgkTJ6uravnJrEMA==} |
|
| 901 | + | engines: {node: '>= 10'} |
|
| 902 | + | cpu: [ia32] |
|
| 903 | + | os: [win32] |
|
| 904 | + | requiresBuild: true |
|
| 905 | + | dev: true |
|
| 906 | + | optional: true |
|
| 907 | + | ||
| 908 | + | /@resvg/resvg-js-win32-x64-msvc/2.2.0: |
|
| 909 | + | resolution: {integrity: sha512-4coA6J+MfrpbMaPynSLmmiq3DutmvNmCcNFyjnhhnytQW7+8zbrkVZGra7fty3364LY3unZGxS878WRa/AU7tw==} |
|
| 910 | + | engines: {node: '>= 10'} |
|
| 911 | + | cpu: [x64] |
|
| 912 | + | os: [win32] |
|
| 913 | + | requiresBuild: true |
|
| 914 | + | dev: true |
|
| 915 | + | optional: true |
|
| 916 | + | ||
| 917 | + | /@resvg/resvg-js/2.2.0: |
|
| 918 | + | resolution: {integrity: sha512-Btc6Bht2Y8jBlS1RqVYsPWQaL1WgeGZd/TasmQpCsh0s5Ax1Kw0zyr6DCpvlNYG6b3mNnmJ5ib44A5MIQZmrEQ==} |
|
| 919 | + | engines: {node: '>= 10'} |
|
| 920 | + | optionalDependencies: |
|
| 921 | + | '@resvg/resvg-js-android-arm-eabi': 2.2.0 |
|
| 922 | + | '@resvg/resvg-js-android-arm64': 2.2.0 |
|
| 923 | + | '@resvg/resvg-js-darwin-arm64': 2.2.0 |
|
| 924 | + | '@resvg/resvg-js-darwin-x64': 2.2.0 |
|
| 925 | + | '@resvg/resvg-js-linux-arm-gnueabihf': 2.2.0 |
|
| 926 | + | '@resvg/resvg-js-linux-arm64-gnu': 2.2.0 |
|
| 927 | + | '@resvg/resvg-js-linux-arm64-musl': 2.2.0 |
|
| 928 | + | '@resvg/resvg-js-linux-x64-gnu': 2.2.0 |
|
| 929 | + | '@resvg/resvg-js-linux-x64-musl': 2.2.0 |
|
| 930 | + | '@resvg/resvg-js-win32-arm64-msvc': 2.2.0 |
|
| 931 | + | '@resvg/resvg-js-win32-ia32-msvc': 2.2.0 |
|
| 932 | + | '@resvg/resvg-js-win32-x64-msvc': 2.2.0 |
|
| 933 | + | dev: true |
|
| 934 | + | ||
| 935 | + | /@rollup/pluginutils/5.0.2: |
|
| 936 | + | resolution: {integrity: sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==} |
|
| 937 | + | engines: {node: '>=14.0.0'} |
|
| 938 | + | peerDependencies: |
|
| 939 | + | rollup: ^1.20.0||^2.0.0||^3.0.0 |
|
| 940 | + | peerDependenciesMeta: |
|
| 941 | + | rollup: |
|
| 942 | + | optional: true |
|
| 943 | + | dependencies: |
|
| 944 | + | '@types/estree': 1.0.0 |
|
| 945 | + | estree-walker: 2.0.2 |
|
| 946 | + | picomatch: 2.3.1 |
|
| 947 | + | dev: true |
|
| 948 | + | ||
| 949 | + | /@shuding/opentype.js/1.4.0-beta.0: |
|
| 950 | + | resolution: {integrity: sha512-3NgmNyH3l/Hv6EvsWJbsvpcpUba6R8IREQ83nH83cyakCw7uM1arZKNfHwv1Wz6jgqrF/j4x5ELvR6PnK9nTcA==} |
|
| 951 | + | engines: {node: '>= 8.0.0'} |
|
| 952 | + | hasBin: true |
|
| 953 | + | dependencies: |
|
| 954 | + | fflate: 0.7.4 |
|
| 955 | + | string.prototype.codepointat: 0.2.1 |
|
| 956 | + | dev: false |
|
| 957 | + | ||
| 958 | + | /@tailwindcss/aspect-ratio/0.4.2_tailwindcss@3.2.4: |
|
| 959 | + | resolution: {integrity: sha512-8QPrypskfBa7QIMuKHg2TA7BqES6vhBrDLOv8Unb6FcFyd3TjKbc6lcmb9UPQHxfl24sXoJ41ux/H7qQQvfaSQ==} |
|
| 960 | + | peerDependencies: |
|
| 961 | + | tailwindcss: '>=2.0.0 || >=3.0.0 || >=3.0.0-alpha.1' |
|
| 962 | + | dependencies: |
|
| 963 | + | tailwindcss: 3.2.4_postcss@8.4.21 |
|
| 964 | + | dev: true |
|
| 965 | + | ||
| 966 | + | /@tailwindcss/line-clamp/0.4.2_tailwindcss@3.2.4: |
|
| 967 | + | resolution: {integrity: sha512-HFzAQuqYCjyy/SX9sLGB1lroPzmcnWv1FHkIpmypte10hptf4oPUfucryMKovZh2u0uiS9U5Ty3GghWfEJGwVw==} |
|
| 968 | + | peerDependencies: |
|
| 969 | + | tailwindcss: '>=2.0.0 || >=3.0.0 || >=3.0.0-alpha.1' |
|
| 970 | + | dependencies: |
|
| 971 | + | tailwindcss: 3.2.4_postcss@8.4.21 |
|
| 972 | + | dev: true |
|
| 973 | + | ||
| 974 | + | /@tailwindcss/typography/0.5.9_tailwindcss@3.2.4: |
|
| 975 | + | resolution: {integrity: sha512-t8Sg3DyynFysV9f4JDOVISGsjazNb48AeIYQwcL+Bsq5uf4RYL75C1giZ43KISjeDGBaTN3Kxh7Xj/vRSMJUUg==} |
|
| 976 | + | peerDependencies: |
|
| 977 | + | tailwindcss: '>=3.0.0 || insiders' |
|
| 978 | + | dependencies: |
|
| 979 | + | lodash.castarray: 4.4.0 |
|
| 980 | + | lodash.isplainobject: 4.0.6 |
|
| 981 | + | lodash.merge: 4.6.2 |
|
| 982 | + | postcss-selector-parser: 6.0.10 |
|
| 983 | + | tailwindcss: 3.2.4_postcss@8.4.21 |
|
| 984 | + | dev: true |
|
| 985 | + | ||
| 986 | + | /@types/acorn/4.0.6: |
|
| 987 | + | resolution: {integrity: sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==} |
|
| 988 | + | dependencies: |
|
| 989 | + | '@types/estree': 1.0.0 |
|
| 990 | + | dev: true |
|
| 991 | + | ||
| 992 | + | /@types/babel__core/7.20.0: |
|
| 993 | + | resolution: {integrity: sha512-+n8dL/9GWblDO0iU6eZAwEIJVr5DWigtle+Q6HLOrh/pdbXOhOtqzq8VPPE2zvNJzSKY4vH/z3iT3tn0A3ypiQ==} |
|
| 994 | + | dependencies: |
|
| 995 | + | '@babel/parser': 7.20.13 |
|
| 996 | + | '@babel/types': 7.20.7 |
|
| 997 | + | '@types/babel__generator': 7.6.4 |
|
| 998 | + | '@types/babel__template': 7.4.1 |
|
| 999 | + | '@types/babel__traverse': 7.18.3 |
|
| 1000 | + | ||
| 1001 | + | /@types/babel__generator/7.6.4: |
|
| 1002 | + | resolution: {integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==} |
|
| 1003 | + | dependencies: |
|
| 1004 | + | '@babel/types': 7.20.7 |
|
| 1005 | + | ||
| 1006 | + | /@types/babel__template/7.4.1: |
|
| 1007 | + | resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==} |
|
| 1008 | + | dependencies: |
|
| 1009 | + | '@babel/parser': 7.20.13 |
|
| 1010 | + | '@babel/types': 7.20.7 |
|
| 1011 | + | ||
| 1012 | + | /@types/babel__traverse/7.18.3: |
|
| 1013 | + | resolution: {integrity: sha512-1kbcJ40lLB7MHsj39U4Sh1uTd2E7rLEa79kmDpI6cy+XiXsteB3POdQomoq4FxszMrO3ZYchkhYJw7A2862b3w==} |
|
| 1014 | + | dependencies: |
|
| 1015 | + | '@babel/types': 7.20.7 |
|
| 1016 | + | ||
| 1017 | + | /@types/debug/4.1.7: |
|
| 1018 | + | resolution: {integrity: sha512-9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg==} |
|
| 1019 | + | dependencies: |
|
| 1020 | + | '@types/ms': 0.7.31 |
|
| 1021 | + | ||
| 1022 | + | /@types/eslint/8.4.10: |
|
| 1023 | + | resolution: {integrity: sha512-Sl/HOqN8NKPmhWo2VBEPm0nvHnu2LL3v9vKo8MEq0EtbJ4eVzGPl41VNPvn5E1i5poMk4/XD8UriLHpJvEP/Nw==} |
|
| 1024 | + | dependencies: |
|
| 1025 | + | '@types/estree': 1.0.0 |
|
| 1026 | + | '@types/json-schema': 7.0.11 |
|
| 1027 | + | dev: true |
|
| 1028 | + | ||
| 1029 | + | /@types/estree-jsx/1.0.0: |
|
| 1030 | + | resolution: {integrity: sha512-3qvGd0z8F2ENTGr/GG1yViqfiKmRfrXVx5sJyHGFu3z7m5g5utCQtGp/g29JnjflhtQJBv1WDQukHiT58xPcYQ==} |
|
| 1031 | + | dependencies: |
|
| 1032 | + | '@types/estree': 1.0.0 |
|
| 1033 | + | dev: true |
|
| 1034 | + | ||
| 1035 | + | /@types/estree/1.0.0: |
|
| 1036 | + | resolution: {integrity: sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==} |
|
| 1037 | + | ||
| 1038 | + | /@types/hast/2.3.4: |
|
| 1039 | + | resolution: {integrity: sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g==} |
|
| 1040 | + | dependencies: |
|
| 1041 | + | '@types/unist': 2.0.6 |
|
| 1042 | + | ||
| 1043 | + | /@types/json-schema/7.0.11: |
|
| 1044 | + | resolution: {integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==} |
|
| 1045 | + | dev: true |
|
| 1046 | + | ||
| 1047 | + | /@types/json5/0.0.29: |
|
| 1048 | + | resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} |
|
| 1049 | + | dev: true |
|
| 1050 | + | ||
| 1051 | + | /@types/json5/0.0.30: |
|
| 1052 | + | resolution: {integrity: sha512-sqm9g7mHlPY/43fcSNrCYfOeX9zkTTK+euO5E6+CVijSMm5tTjkVdwdqRkY3ljjIAf8679vps5jKUoJBCLsMDA==} |
|
| 1053 | + | ||
| 1054 | + | /@types/mdast/3.0.10: |
|
| 1055 | + | resolution: {integrity: sha512-W864tg/Osz1+9f4lrGTZpCSO5/z4608eUp19tbozkq2HJK6i3z1kT0H9tlADXuYIb1YYOBByU4Jsqkk75q48qA==} |
|
| 1056 | + | dependencies: |
|
| 1057 | + | '@types/unist': 2.0.6 |
|
| 1058 | + | ||
| 1059 | + | /@types/mdx/2.0.3: |
|
| 1060 | + | resolution: {integrity: sha512-IgHxcT3RC8LzFLhKwP3gbMPeaK7BM9eBH46OdapPA7yvuIUJ8H6zHZV53J8hGZcTSnt95jANt+rTBNUUc22ACQ==} |
|
| 1061 | + | dev: true |
|
| 1062 | + | ||
| 1063 | + | /@types/minimist/1.2.2: |
|
| 1064 | + | resolution: {integrity: sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==} |
|
| 1065 | + | dev: true |
|
| 1066 | + | ||
| 1067 | + | /@types/ms/0.7.31: |
|
| 1068 | + | resolution: {integrity: sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==} |
|
| 1069 | + | ||
| 1070 | + | /@types/nlcst/1.0.0: |
|
| 1071 | + | resolution: {integrity: sha512-3TGCfOcy8R8mMQ4CNSNOe3PG66HttvjcLzCoOpvXvDtfWOTi+uT/rxeOKm/qEwbM4SNe1O/PjdiBK2YcTjU4OQ==} |
|
| 1072 | + | dependencies: |
|
| 1073 | + | '@types/unist': 2.0.6 |
|
| 1074 | + | ||
| 1075 | + | /@types/node/17.0.45: |
|
| 1076 | + | resolution: {integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==} |
|
| 1077 | + | dev: true |
|
| 1078 | + | ||
| 1079 | + | /@types/node/18.11.18: |
|
| 1080 | + | resolution: {integrity: sha512-DHQpWGjyQKSHj3ebjFI/wRKcqQcdR+MoFBygntYOZytCqNfkd2ZC4ARDJ2DQqhjH5p85Nnd3jhUJIXrszFX/JA==} |
|
| 1081 | + | dev: true |
|
| 1082 | + | ||
| 1083 | + | /@types/normalize-package-data/2.4.1: |
|
| 1084 | + | resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==} |
|
| 1085 | + | dev: true |
|
| 1086 | + | ||
| 1087 | + | /@types/parse-json/4.0.0: |
|
| 1088 | + | resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==} |
|
| 1089 | + | dev: true |
|
| 1090 | + | ||
| 1091 | + | /@types/parse5/6.0.3: |
|
| 1092 | + | resolution: {integrity: sha512-SuT16Q1K51EAVPz1K29DJ/sXjhSQ0zjvsypYJ6tlwVsRV9jwW5Adq2ch8Dq8kDBCkYnELS7N7VNCSB5nC56t/g==} |
|
| 1093 | + | ||
| 1094 | + | /@types/prettier/2.7.2: |
|
| 1095 | + | resolution: {integrity: sha512-KufADq8uQqo1pYKVIYzfKbJfBAc0sOeXqGbFaSpv8MRmC/zXgowNZmFcbngndGk922QDmOASEXUZCaY48gs4cg==} |
|
| 1096 | + | dev: true |
|
| 1097 | + | ||
| 1098 | + | /@types/resolve/1.20.2: |
|
| 1099 | + | resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} |
|
| 1100 | + | ||
| 1101 | + | /@types/sax/1.2.4: |
|
| 1102 | + | resolution: {integrity: sha512-pSAff4IAxJjfAXUG6tFkO7dsSbTmf8CtUpfhhZ5VhkRpC4628tJhh3+V6H1E+/Gs9piSzYKT5yzHO5M4GG9jkw==} |
|
| 1103 | + | dependencies: |
|
| 1104 | + | '@types/node': 17.0.45 |
|
| 1105 | + | dev: true |
|
| 1106 | + | ||
| 1107 | + | /@types/semver/7.3.13: |
|
| 1108 | + | resolution: {integrity: sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==} |
|
| 1109 | + | dev: true |
|
| 1110 | + | ||
| 1111 | + | /@types/sharp/0.31.1: |
|
| 1112 | + | resolution: {integrity: sha512-5nWwamN9ZFHXaYEincMSuza8nNfOof8nmO+mcI+Agx1uMUk4/pQnNIcix+9rLPXzKrm1pS34+6WRDbDV0Jn7ag==} |
|
| 1113 | + | dependencies: |
|
| 1114 | + | '@types/node': 18.11.18 |
|
| 1115 | + | dev: true |
|
| 1116 | + | ||
| 1117 | + | /@types/unist/2.0.6: |
|
| 1118 | + | resolution: {integrity: sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==} |
|
| 1119 | + | ||
| 1120 | + | /@types/yargs-parser/21.0.0: |
|
| 1121 | + | resolution: {integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==} |
|
| 1122 | + | ||
| 1123 | + | /@typescript-eslint/eslint-plugin/5.49.0_iu322prlnwsygkcra5kbpy22si: |
|
| 1124 | + | resolution: {integrity: sha512-IhxabIpcf++TBaBa1h7jtOWyon80SXPRLDq0dVz5SLFC/eW6tofkw/O7Ar3lkx5z5U6wzbKDrl2larprp5kk5Q==} |
|
| 1125 | + | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} |
|
| 1126 | + | peerDependencies: |
|
| 1127 | + | '@typescript-eslint/parser': ^5.0.0 |
|
| 1128 | + | eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 |
|
| 1129 | + | typescript: '*' |
|
| 1130 | + | peerDependenciesMeta: |
|
| 1131 | + | typescript: |
|
| 1132 | + | optional: true |
|
| 1133 | + | dependencies: |
|
| 1134 | + | '@typescript-eslint/parser': 5.49.0_7uibuqfxkfaozanbtbziikiqje |
|
| 1135 | + | '@typescript-eslint/scope-manager': 5.49.0 |
|
| 1136 | + | '@typescript-eslint/type-utils': 5.49.0_7uibuqfxkfaozanbtbziikiqje |
|
| 1137 | + | '@typescript-eslint/utils': 5.49.0_7uibuqfxkfaozanbtbziikiqje |
|
| 1138 | + | debug: 4.3.4 |
|
| 1139 | + | eslint: 8.32.0 |
|
| 1140 | + | ignore: 5.2.4 |
|
| 1141 | + | natural-compare-lite: 1.4.0 |
|
| 1142 | + | regexpp: 3.2.0 |
|
| 1143 | + | semver: 7.3.8 |
|
| 1144 | + | tsutils: 3.21.0_typescript@4.9.4 |
|
| 1145 | + | typescript: 4.9.4 |
|
| 1146 | + | transitivePeerDependencies: |
|
| 1147 | + | - supports-color |
|
| 1148 | + | dev: true |
|
| 1149 | + | ||
| 1150 | + | /@typescript-eslint/parser/5.49.0_7uibuqfxkfaozanbtbziikiqje: |
|
| 1151 | + | resolution: {integrity: sha512-veDlZN9mUhGqU31Qiv2qEp+XrJj5fgZpJ8PW30sHU+j/8/e5ruAhLaVDAeznS7A7i4ucb/s8IozpDtt9NqCkZg==} |
|
| 1152 | + | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} |
|
| 1153 | + | peerDependencies: |
|
| 1154 | + | eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 |
|
| 1155 | + | typescript: '*' |
|
| 1156 | + | peerDependenciesMeta: |
|
| 1157 | + | typescript: |
|
| 1158 | + | optional: true |
|
| 1159 | + | dependencies: |
|
| 1160 | + | '@typescript-eslint/scope-manager': 5.49.0 |
|
| 1161 | + | '@typescript-eslint/types': 5.49.0 |
|
| 1162 | + | '@typescript-eslint/typescript-estree': 5.49.0_typescript@4.9.4 |
|
| 1163 | + | debug: 4.3.4 |
|
| 1164 | + | eslint: 8.32.0 |
|
| 1165 | + | typescript: 4.9.4 |
|
| 1166 | + | transitivePeerDependencies: |
|
| 1167 | + | - supports-color |
|
| 1168 | + | dev: true |
|
| 1169 | + | ||
| 1170 | + | /@typescript-eslint/scope-manager/5.49.0: |
|
| 1171 | + | resolution: {integrity: sha512-clpROBOiMIzpbWNxCe1xDK14uPZh35u4QaZO1GddilEzoCLAEz4szb51rBpdgurs5k2YzPtJeTEN3qVbG+LRUQ==} |
|
| 1172 | + | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} |
|
| 1173 | + | dependencies: |
|
| 1174 | + | '@typescript-eslint/types': 5.49.0 |
|
| 1175 | + | '@typescript-eslint/visitor-keys': 5.49.0 |
|
| 1176 | + | dev: true |
|
| 1177 | + | ||
| 1178 | + | /@typescript-eslint/type-utils/5.49.0_7uibuqfxkfaozanbtbziikiqje: |
|
| 1179 | + | resolution: {integrity: sha512-eUgLTYq0tR0FGU5g1YHm4rt5H/+V2IPVkP0cBmbhRyEmyGe4XvJ2YJ6sYTmONfjmdMqyMLad7SB8GvblbeESZA==} |
|
| 1180 | + | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} |
|
| 1181 | + | peerDependencies: |
|
| 1182 | + | eslint: '*' |
|
| 1183 | + | typescript: '*' |
|
| 1184 | + | peerDependenciesMeta: |
|
| 1185 | + | typescript: |
|
| 1186 | + | optional: true |
|
| 1187 | + | dependencies: |
|
| 1188 | + | '@typescript-eslint/typescript-estree': 5.49.0_typescript@4.9.4 |
|
| 1189 | + | '@typescript-eslint/utils': 5.49.0_7uibuqfxkfaozanbtbziikiqje |
|
| 1190 | + | debug: 4.3.4 |
|
| 1191 | + | eslint: 8.32.0 |
|
| 1192 | + | tsutils: 3.21.0_typescript@4.9.4 |
|
| 1193 | + | typescript: 4.9.4 |
|
| 1194 | + | transitivePeerDependencies: |
|
| 1195 | + | - supports-color |
|
| 1196 | + | dev: true |
|
| 1197 | + | ||
| 1198 | + | /@typescript-eslint/types/5.49.0: |
|
| 1199 | + | resolution: {integrity: sha512-7If46kusG+sSnEpu0yOz2xFv5nRz158nzEXnJFCGVEHWnuzolXKwrH5Bsf9zsNlOQkyZuk0BZKKoJQI+1JPBBg==} |
|
| 1200 | + | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} |
|
| 1201 | + | dev: true |
|
| 1202 | + | ||
| 1203 | + | /@typescript-eslint/typescript-estree/5.49.0_typescript@4.9.4: |
|
| 1204 | + | resolution: {integrity: sha512-PBdx+V7deZT/3GjNYPVQv1Nc0U46dAHbIuOG8AZ3on3vuEKiPDwFE/lG1snN2eUB9IhF7EyF7K1hmTcLztNIsA==} |
|
| 1205 | + | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} |
|
| 1206 | + | peerDependencies: |
|
| 1207 | + | typescript: '*' |
|
| 1208 | + | peerDependenciesMeta: |
|
| 1209 | + | typescript: |
|
| 1210 | + | optional: true |
|
| 1211 | + | dependencies: |
|
| 1212 | + | '@typescript-eslint/types': 5.49.0 |
|
| 1213 | + | '@typescript-eslint/visitor-keys': 5.49.0 |
|
| 1214 | + | debug: 4.3.4 |
|
| 1215 | + | globby: 11.1.0 |
|
| 1216 | + | is-glob: 4.0.3 |
|
| 1217 | + | semver: 7.3.8 |
|
| 1218 | + | tsutils: 3.21.0_typescript@4.9.4 |
|
| 1219 | + | typescript: 4.9.4 |
|
| 1220 | + | transitivePeerDependencies: |
|
| 1221 | + | - supports-color |
|
| 1222 | + | dev: true |
|
| 1223 | + | ||
| 1224 | + | /@typescript-eslint/utils/5.49.0_7uibuqfxkfaozanbtbziikiqje: |
|
| 1225 | + | resolution: {integrity: sha512-cPJue/4Si25FViIb74sHCLtM4nTSBXtLx1d3/QT6mirQ/c65bV8arBEebBJJizfq8W2YyMoPI/WWPFWitmNqnQ==} |
|
| 1226 | + | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} |
|
| 1227 | + | peerDependencies: |
|
| 1228 | + | eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 |
|
| 1229 | + | dependencies: |
|
| 1230 | + | '@types/json-schema': 7.0.11 |
|
| 1231 | + | '@types/semver': 7.3.13 |
|
| 1232 | + | '@typescript-eslint/scope-manager': 5.49.0 |
|
| 1233 | + | '@typescript-eslint/types': 5.49.0 |
|
| 1234 | + | '@typescript-eslint/typescript-estree': 5.49.0_typescript@4.9.4 |
|
| 1235 | + | eslint: 8.32.0 |
|
| 1236 | + | eslint-scope: 5.1.1 |
|
| 1237 | + | eslint-utils: 3.0.0_eslint@8.32.0 |
|
| 1238 | + | semver: 7.3.8 |
|
| 1239 | + | transitivePeerDependencies: |
|
| 1240 | + | - supports-color |
|
| 1241 | + | - typescript |
|
| 1242 | + | dev: true |
|
| 1243 | + | ||
| 1244 | + | /@typescript-eslint/visitor-keys/5.49.0: |
|
| 1245 | + | resolution: {integrity: sha512-v9jBMjpNWyn8B6k/Mjt6VbUS4J1GvUlR4x3Y+ibnP1z7y7V4n0WRz+50DY6+Myj0UaXVSuUlHohO+eZ8IJEnkg==} |
|
| 1246 | + | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} |
|
| 1247 | + | dependencies: |
|
| 1248 | + | '@typescript-eslint/types': 5.49.0 |
|
| 1249 | + | eslint-visitor-keys: 3.3.0 |
|
| 1250 | + | dev: true |
|
| 1251 | + | ||
| 1252 | + | /@vscode/emmet-helper/2.8.6: |
|
| 1253 | + | resolution: {integrity: sha512-IIB8jbiKy37zN8bAIHx59YmnIelY78CGHtThnibD/d3tQOKRY83bYVi9blwmZVUZh6l9nfkYH3tvReaiNxY9EQ==} |
|
| 1254 | + | dependencies: |
|
| 1255 | + | emmet: 2.3.6 |
|
| 1256 | + | jsonc-parser: 2.3.1 |
|
| 1257 | + | vscode-languageserver-textdocument: 1.0.8 |
|
| 1258 | + | vscode-languageserver-types: 3.17.2 |
|
| 1259 | + | vscode-uri: 2.1.2 |
|
| 1260 | + | ||
| 1261 | + | /@vscode/l10n/0.0.11: |
|
| 1262 | + | resolution: {integrity: sha512-ukOMWnCg1tCvT7WnDfsUKQOFDQGsyR5tNgRpwmqi+5/vzU3ghdDXzvIM4IOPdSb3OeSsBNvmSL8nxIVOqi2WXA==} |
|
| 1263 | + | ||
| 1264 | + | /acorn-jsx/5.3.2_acorn@8.8.2: |
|
| 1265 | + | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} |
|
| 1266 | + | peerDependencies: |
|
| 1267 | + | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 |
|
| 1268 | + | dependencies: |
|
| 1269 | + | acorn: 8.8.2 |
|
| 1270 | + | dev: true |
|
| 1271 | + | ||
| 1272 | + | /acorn-node/1.8.2: |
|
| 1273 | + | resolution: {integrity: sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==} |
|
| 1274 | + | dependencies: |
|
| 1275 | + | acorn: 7.4.1 |
|
| 1276 | + | acorn-walk: 7.2.0 |
|
| 1277 | + | xtend: 4.0.2 |
|
| 1278 | + | dev: true |
|
| 1279 | + | ||
| 1280 | + | /acorn-walk/7.2.0: |
|
| 1281 | + | resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==} |
|
| 1282 | + | engines: {node: '>=0.4.0'} |
|
| 1283 | + | dev: true |
|
| 1284 | + | ||
| 1285 | + | /acorn/7.4.1: |
|
| 1286 | + | resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} |
|
| 1287 | + | engines: {node: '>=0.4.0'} |
|
| 1288 | + | hasBin: true |
|
| 1289 | + | dev: true |
|
| 1290 | + | ||
| 1291 | + | /acorn/8.8.2: |
|
| 1292 | + | resolution: {integrity: sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==} |
|
| 1293 | + | engines: {node: '>=0.4.0'} |
|
| 1294 | + | hasBin: true |
|
| 1295 | + | ||
| 1296 | + | /ajv/6.12.6: |
|
| 1297 | + | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} |
|
| 1298 | + | dependencies: |
|
| 1299 | + | fast-deep-equal: 3.1.3 |
|
| 1300 | + | fast-json-stable-stringify: 2.1.0 |
|
| 1301 | + | json-schema-traverse: 0.4.1 |
|
| 1302 | + | uri-js: 4.4.1 |
|
| 1303 | + | dev: true |
|
| 1304 | + | ||
| 1305 | + | /ajv/8.12.0: |
|
| 1306 | + | resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==} |
|
| 1307 | + | dependencies: |
|
| 1308 | + | fast-deep-equal: 3.1.3 |
|
| 1309 | + | json-schema-traverse: 1.0.0 |
|
| 1310 | + | require-from-string: 2.0.2 |
|
| 1311 | + | uri-js: 4.4.1 |
|
| 1312 | + | dev: true |
|
| 1313 | + | ||
| 1314 | + | /ansi-align/3.0.1: |
|
| 1315 | + | resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==} |
|
| 1316 | + | dependencies: |
|
| 1317 | + | string-width: 4.2.3 |
|
| 1318 | + | ||
| 1319 | + | /ansi-regex/5.0.1: |
|
| 1320 | + | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} |
|
| 1321 | + | engines: {node: '>=8'} |
|
| 1322 | + | ||
| 1323 | + | /ansi-regex/6.0.1: |
|
| 1324 | + | resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} |
|
| 1325 | + | engines: {node: '>=12'} |
|
| 1326 | + | ||
| 1327 | + | /ansi-styles/3.2.1: |
|
| 1328 | + | resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} |
|
| 1329 | + | engines: {node: '>=4'} |
|
| 1330 | + | dependencies: |
|
| 1331 | + | color-convert: 1.9.3 |
|
| 1332 | + | ||
| 1333 | + | /ansi-styles/4.3.0: |
|
| 1334 | + | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} |
|
| 1335 | + | engines: {node: '>=8'} |
|
| 1336 | + | dependencies: |
|
| 1337 | + | color-convert: 2.0.1 |
|
| 1338 | + | ||
| 1339 | + | /ansi-styles/6.2.1: |
|
| 1340 | + | resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} |
|
| 1341 | + | engines: {node: '>=12'} |
|
| 1342 | + | ||
| 1343 | + | /anymatch/3.1.3: |
|
| 1344 | + | resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} |
|
| 1345 | + | engines: {node: '>= 8'} |
|
| 1346 | + | dependencies: |
|
| 1347 | + | normalize-path: 3.0.0 |
|
| 1348 | + | picomatch: 2.3.1 |
|
| 1349 | + | dev: true |
|
| 1350 | + | ||
| 1351 | + | /arg/5.0.2: |
|
| 1352 | + | resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==} |
|
| 1353 | + | dev: true |
|
| 1354 | + | ||
| 1355 | + | /argparse/1.0.10: |
|
| 1356 | + | resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} |
|
| 1357 | + | dependencies: |
|
| 1358 | + | sprintf-js: 1.0.3 |
|
| 1359 | + | ||
| 1360 | + | /argparse/2.0.1: |
|
| 1361 | + | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} |
|
| 1362 | + | dev: true |
|
| 1363 | + | ||
| 1364 | + | /aria-query/5.1.3: |
|
| 1365 | + | resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==} |
|
| 1366 | + | dependencies: |
|
| 1367 | + | deep-equal: 2.2.0 |
|
| 1368 | + | dev: true |
|
| 1369 | + | ||
| 1370 | + | /array-includes/3.1.6: |
|
| 1371 | + | resolution: {integrity: sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==} |
|
| 1372 | + | engines: {node: '>= 0.4'} |
|
| 1373 | + | dependencies: |
|
| 1374 | + | call-bind: 1.0.2 |
|
| 1375 | + | define-properties: 1.1.4 |
|
| 1376 | + | es-abstract: 1.21.1 |
|
| 1377 | + | get-intrinsic: 1.2.0 |
|
| 1378 | + | is-string: 1.0.7 |
|
| 1379 | + | dev: true |
|
| 1380 | + | ||
| 1381 | + | /array-iterate/2.0.1: |
|
| 1382 | + | resolution: {integrity: sha512-I1jXZMjAgCMmxT4qxXfPXa6SthSoE8h6gkSI9BGGNv8mP8G/v0blc+qFnZu6K42vTOiuME596QaLO0TP3Lk0xg==} |
|
| 1383 | + | ||
| 1384 | + | /array-union/2.1.0: |
|
| 1385 | + | resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} |
|
| 1386 | + | engines: {node: '>=8'} |
|
| 1387 | + | dev: true |
|
| 1388 | + | ||
| 1389 | + | /array.prototype.flat/1.3.1: |
|
| 1390 | + | resolution: {integrity: sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==} |
|
| 1391 | + | engines: {node: '>= 0.4'} |
|
| 1392 | + | dependencies: |
|
| 1393 | + | call-bind: 1.0.2 |
|
| 1394 | + | define-properties: 1.1.4 |
|
| 1395 | + | es-abstract: 1.21.1 |
|
| 1396 | + | es-shim-unscopables: 1.0.0 |
|
| 1397 | + | dev: true |
|
| 1398 | + | ||
| 1399 | + | /array.prototype.flatmap/1.3.1: |
|
| 1400 | + | resolution: {integrity: sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==} |
|
| 1401 | + | engines: {node: '>= 0.4'} |
|
| 1402 | + | dependencies: |
|
| 1403 | + | call-bind: 1.0.2 |
|
| 1404 | + | define-properties: 1.1.4 |
|
| 1405 | + | es-abstract: 1.21.1 |
|
| 1406 | + | es-shim-unscopables: 1.0.0 |
|
| 1407 | + | dev: true |
|
| 1408 | + | ||
| 1409 | + | /arrify/1.0.1: |
|
| 1410 | + | resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} |
|
| 1411 | + | engines: {node: '>=0.10.0'} |
|
| 1412 | + | dev: true |
|
| 1413 | + | ||
| 1414 | + | /ast-types-flow/0.0.7: |
|
| 1415 | + | resolution: {integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==} |
|
| 1416 | + | dev: true |
|
| 1417 | + | ||
| 1418 | + | /astral-regex/2.0.0: |
|
| 1419 | + | resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} |
|
| 1420 | + | engines: {node: '>=8'} |
|
| 1421 | + | dev: true |
|
| 1422 | + | ||
| 1423 | + | /astring/1.8.4: |
|
| 1424 | + | resolution: {integrity: sha512-97a+l2LBU3Op3bBQEff79i/E4jMD2ZLFD8rHx9B6mXyB2uQwhJQYfiDqUwtfjF4QA1F2qs//N6Cw8LetMbQjcw==} |
|
| 1425 | + | hasBin: true |
|
| 1426 | + | dev: true |
|
| 1427 | + | ||
| 1428 | + | /astro-eslint-parser/0.11.0: |
|
| 1429 | + | resolution: {integrity: sha512-vcz8KBQ20WNOot6qK6w7DQtz2hwg+aLLqlUa6nAnitJLqbR12GxJN/+96U3O+VI4da5Up+FMWqNoL9mywSENtA==} |
|
| 1430 | + | engines: {node: ^14.18.0 || >=16.0.0} |
|
| 1431 | + | dependencies: |
|
| 1432 | + | '@astrojs/compiler': 1.0.1 |
|
| 1433 | + | '@typescript-eslint/scope-manager': 5.49.0 |
|
| 1434 | + | '@typescript-eslint/types': 5.49.0 |
|
| 1435 | + | astrojs-compiler-sync: 0.3.1_@astrojs+compiler@1.0.1 |
|
| 1436 | + | debug: 4.3.4 |
|
| 1437 | + | eslint-visitor-keys: 3.3.0 |
|
| 1438 | + | espree: 9.4.1 |
|
| 1439 | + | transitivePeerDependencies: |
|
| 1440 | + | - supports-color |
|
| 1441 | + | dev: true |
|
| 1442 | + | ||
| 1443 | + | /astro/2.0.2: |
|
| 1444 | + | resolution: {integrity: sha512-47N1jLWNxSri7kWfIfgcEnQJZWTvd0gXhNC3P2ZHiiurl4nOxFC5ULsW5MDDTjTzQ1S7y1RoaL9XxYm+Rury7w==} |
|
| 1445 | + | engines: {node: '>=16.12.0', npm: '>=6.14.0'} |
|
| 1446 | + | hasBin: true |
|
| 1447 | + | dependencies: |
|
| 1448 | + | '@astrojs/compiler': 1.0.1 |
|
| 1449 | + | '@astrojs/language-server': 0.28.3 |
|
| 1450 | + | '@astrojs/markdown-remark': 2.0.1_astro@2.0.2 |
|
| 1451 | + | '@astrojs/telemetry': 2.0.0 |
|
| 1452 | + | '@astrojs/webapi': 2.0.0 |
|
| 1453 | + | '@babel/core': 7.20.12 |
|
| 1454 | + | '@babel/generator': 7.20.14 |
|
| 1455 | + | '@babel/parser': 7.20.13 |
|
| 1456 | + | '@babel/plugin-transform-react-jsx': 7.20.13_@babel+core@7.20.12 |
|
| 1457 | + | '@babel/traverse': 7.20.13 |
|
| 1458 | + | '@babel/types': 7.20.7 |
|
| 1459 | + | '@types/babel__core': 7.20.0 |
|
| 1460 | + | '@types/yargs-parser': 21.0.0 |
|
| 1461 | + | acorn: 8.8.2 |
|
| 1462 | + | boxen: 6.2.1 |
|
| 1463 | + | ci-info: 3.7.1 |
|
| 1464 | + | common-ancestor-path: 1.0.1 |
|
| 1465 | + | cookie: 0.5.0 |
|
| 1466 | + | debug: 4.3.4 |
|
| 1467 | + | deepmerge-ts: 4.2.2 |
|
| 1468 | + | devalue: 4.2.2 |
|
| 1469 | + | diff: 5.1.0 |
|
| 1470 | + | es-module-lexer: 1.1.0 |
|
| 1471 | + | estree-walker: 3.0.3 |
|
| 1472 | + | execa: 6.1.0 |
|
| 1473 | + | fast-glob: 3.2.12 |
|
| 1474 | + | github-slugger: 2.0.0 |
|
| 1475 | + | gray-matter: 4.0.3 |
|
| 1476 | + | html-escaper: 3.0.3 |
|
| 1477 | + | kleur: 4.1.5 |
|
| 1478 | + | magic-string: 0.27.0 |
|
| 1479 | + | mime: 3.0.0 |
|
| 1480 | + | ora: 6.1.2 |
|
| 1481 | + | path-to-regexp: 6.2.1 |
|
| 1482 | + | preferred-pm: 3.0.3 |
|
| 1483 | + | prompts: 2.4.2 |
|
| 1484 | + | rehype: 12.0.1 |
|
| 1485 | + | semver: 7.3.8 |
|
| 1486 | + | server-destroy: 1.0.1 |
|
| 1487 | + | shiki: 0.11.1 |
|
| 1488 | + | slash: 4.0.0 |
|
| 1489 | + | string-width: 5.1.2 |
|
| 1490 | + | strip-ansi: 7.0.1 |
|
| 1491 | + | supports-esm: 1.0.0 |
|
| 1492 | + | tsconfig-resolver: 3.0.1 |
|
| 1493 | + | typescript: 4.9.4 |
|
| 1494 | + | unist-util-visit: 4.1.2 |
|
| 1495 | + | vfile: 5.3.6 |
|
| 1496 | + | vite: 4.0.4 |
|
| 1497 | + | vitefu: 0.2.4_vite@4.0.4 |
|
| 1498 | + | yargs-parser: 21.1.1 |
|
| 1499 | + | zod: 3.20.2 |
|
| 1500 | + | transitivePeerDependencies: |
|
| 1501 | + | - '@types/node' |
|
| 1502 | + | - less |
|
| 1503 | + | - sass |
|
| 1504 | + | - stylus |
|
| 1505 | + | - sugarss |
|
| 1506 | + | - supports-color |
|
| 1507 | + | - terser |
|
| 1508 | + | ||
| 1509 | + | /astrojs-compiler-sync/0.3.1_@astrojs+compiler@1.0.1: |
|
| 1510 | + | resolution: {integrity: sha512-IzPuzkwdiRIZoBhCTuFhuBMWVESXgthTdwQ24QS8LvLargcWAA4E21KmZo4wimsmOG5vj4KKs9QFpy9zhXuo9Q==} |
|
| 1511 | + | engines: {node: ^14.18.0 || >=16.0.0} |
|
| 1512 | + | peerDependencies: |
|
| 1513 | + | '@astrojs/compiler': '>=0.27.0' |
|
| 1514 | + | dependencies: |
|
| 1515 | + | '@astrojs/compiler': 1.0.1 |
|
| 1516 | + | synckit: 0.8.5 |
|
| 1517 | + | dev: true |
|
| 1518 | + | ||
| 1519 | + | /autoprefixer/10.4.13_postcss@8.4.21: |
|
| 1520 | + | resolution: {integrity: sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==} |
|
| 1521 | + | engines: {node: ^10 || ^12 || >=14} |
|
| 1522 | + | hasBin: true |
|
| 1523 | + | peerDependencies: |
|
| 1524 | + | postcss: ^8.1.0 |
|
| 1525 | + | dependencies: |
|
| 1526 | + | browserslist: 4.21.4 |
|
| 1527 | + | caniuse-lite: 1.0.30001449 |
|
| 1528 | + | fraction.js: 4.2.0 |
|
| 1529 | + | normalize-range: 0.1.2 |
|
| 1530 | + | picocolors: 1.0.0 |
|
| 1531 | + | postcss: 8.4.21 |
|
| 1532 | + | postcss-value-parser: 4.2.0 |
|
| 1533 | + | dev: true |
|
| 1534 | + | ||
| 1535 | + | /available-typed-arrays/1.0.5: |
|
| 1536 | + | resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==} |
|
| 1537 | + | engines: {node: '>= 0.4'} |
|
| 1538 | + | dev: true |
|
| 1539 | + | ||
| 1540 | + | /axe-core/4.6.3: |
|
| 1541 | + | resolution: {integrity: sha512-/BQzOX780JhsxDnPpH4ZiyrJAzcd8AfzFPkv+89veFSr1rcMjuq2JDCwypKaPeB6ljHp9KjXhPpjgCvQlWYuqg==} |
|
| 1542 | + | engines: {node: '>=4'} |
|
| 1543 | + | dev: true |
|
| 1544 | + | ||
| 1545 | + | /axobject-query/3.1.1: |
|
| 1546 | + | resolution: {integrity: sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==} |
|
| 1547 | + | dependencies: |
|
| 1548 | + | deep-equal: 2.2.0 |
|
| 1549 | + | dev: true |
|
| 1550 | + | ||
| 1551 | + | /bail/2.0.2: |
|
| 1552 | + | resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==} |
|
| 1553 | + | ||
| 1554 | + | /balanced-match/1.0.2: |
|
| 1555 | + | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} |
|
| 1556 | + | dev: true |
|
| 1557 | + | ||
| 1558 | + | /balanced-match/2.0.0: |
|
| 1559 | + | resolution: {integrity: sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==} |
|
| 1560 | + | dev: true |
|
| 1561 | + | ||
| 1562 | + | /base64-js/1.5.1: |
|
| 1563 | + | resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} |
|
| 1564 | + | ||
| 1565 | + | /binary-extensions/2.2.0: |
|
| 1566 | + | resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} |
|
| 1567 | + | engines: {node: '>=8'} |
|
| 1568 | + | dev: true |
|
| 1569 | + | ||
| 1570 | + | /bl/4.1.0: |
|
| 1571 | + | resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} |
|
| 1572 | + | dependencies: |
|
| 1573 | + | buffer: 5.7.1 |
|
| 1574 | + | inherits: 2.0.4 |
|
| 1575 | + | readable-stream: 3.6.0 |
|
| 1576 | + | ||
| 1577 | + | /bl/5.1.0: |
|
| 1578 | + | resolution: {integrity: sha512-tv1ZJHLfTDnXE6tMHv73YgSJaWR2AFuPwMntBe7XL/GBFHnT0CLnsHMogfk5+GzCDC5ZWarSCYaIGATZt9dNsQ==} |
|
| 1579 | + | dependencies: |
|
| 1580 | + | buffer: 6.0.3 |
|
| 1581 | + | inherits: 2.0.4 |
|
| 1582 | + | readable-stream: 3.6.0 |
|
| 1583 | + | ||
| 1584 | + | /boxen/6.2.1: |
|
| 1585 | + | resolution: {integrity: sha512-H4PEsJXfFI/Pt8sjDWbHlQPx4zL/bvSQjcilJmaulGt5mLDorHOHpmdXAJcBcmru7PhYSp/cDMWRko4ZUMFkSw==} |
|
| 1586 | + | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} |
|
| 1587 | + | dependencies: |
|
| 1588 | + | ansi-align: 3.0.1 |
|
| 1589 | + | camelcase: 6.3.0 |
|
| 1590 | + | chalk: 4.1.2 |
|
| 1591 | + | cli-boxes: 3.0.0 |
|
| 1592 | + | string-width: 5.1.2 |
|
| 1593 | + | type-fest: 2.19.0 |
|
| 1594 | + | widest-line: 4.0.1 |
|
| 1595 | + | wrap-ansi: 8.1.0 |
|
| 1596 | + | ||
| 1597 | + | /brace-expansion/1.1.11: |
|
| 1598 | + | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} |
|
| 1599 | + | dependencies: |
|
| 1600 | + | balanced-match: 1.0.2 |
|
| 1601 | + | concat-map: 0.0.1 |
|
| 1602 | + | dev: true |
|
| 1603 | + | ||
| 1604 | + | /braces/3.0.2: |
|
| 1605 | + | resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} |
|
| 1606 | + | engines: {node: '>=8'} |
|
| 1607 | + | dependencies: |
|
| 1608 | + | fill-range: 7.0.1 |
|
| 1609 | + | ||
| 1610 | + | /browserslist/4.21.4: |
|
| 1611 | + | resolution: {integrity: sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==} |
|
| 1612 | + | engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} |
|
| 1613 | + | hasBin: true |
|
| 1614 | + | dependencies: |
|
| 1615 | + | caniuse-lite: 1.0.30001449 |
|
| 1616 | + | electron-to-chromium: 1.4.284 |
|
| 1617 | + | node-releases: 2.0.8 |
|
| 1618 | + | update-browserslist-db: 1.0.10_browserslist@4.21.4 |
|
| 1619 | + | ||
| 1620 | + | /buffer/5.7.1: |
|
| 1621 | + | resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} |
|
| 1622 | + | dependencies: |
|
| 1623 | + | base64-js: 1.5.1 |
|
| 1624 | + | ieee754: 1.2.1 |
|
| 1625 | + | ||
| 1626 | + | /buffer/6.0.3: |
|
| 1627 | + | resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==} |
|
| 1628 | + | dependencies: |
|
| 1629 | + | base64-js: 1.5.1 |
|
| 1630 | + | ieee754: 1.2.1 |
|
| 1631 | + | ||
| 1632 | + | /busboy/1.6.0: |
|
| 1633 | + | resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==} |
|
| 1634 | + | engines: {node: '>=10.16.0'} |
|
| 1635 | + | dependencies: |
|
| 1636 | + | streamsearch: 1.1.0 |
|
| 1637 | + | ||
| 1638 | + | /call-bind/1.0.2: |
|
| 1639 | + | resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==} |
|
| 1640 | + | dependencies: |
|
| 1641 | + | function-bind: 1.1.1 |
|
| 1642 | + | get-intrinsic: 1.2.0 |
|
| 1643 | + | dev: true |
|
| 1644 | + | ||
| 1645 | + | /callsites/3.1.0: |
|
| 1646 | + | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} |
|
| 1647 | + | engines: {node: '>=6'} |
|
| 1648 | + | dev: true |
|
| 1649 | + | ||
| 1650 | + | /camelcase-css/2.0.1: |
|
| 1651 | + | resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} |
|
| 1652 | + | engines: {node: '>= 6'} |
|
| 1653 | + | dev: true |
|
| 1654 | + | ||
| 1655 | + | /camelcase-keys/6.2.2: |
|
| 1656 | + | resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==} |
|
| 1657 | + | engines: {node: '>=8'} |
|
| 1658 | + | dependencies: |
|
| 1659 | + | camelcase: 5.3.1 |
|
| 1660 | + | map-obj: 4.3.0 |
|
| 1661 | + | quick-lru: 4.0.1 |
|
| 1662 | + | dev: true |
|
| 1663 | + | ||
| 1664 | + | /camelcase/5.3.1: |
|
| 1665 | + | resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} |
|
| 1666 | + | engines: {node: '>=6'} |
|
| 1667 | + | dev: true |
|
| 1668 | + | ||
| 1669 | + | /camelcase/6.3.0: |
|
| 1670 | + | resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} |
|
| 1671 | + | engines: {node: '>=10'} |
|
| 1672 | + | ||
| 1673 | + | /camelize/1.0.1: |
|
| 1674 | + | resolution: {integrity: sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==} |
|
| 1675 | + | dev: false |
|
| 1676 | + | ||
| 1677 | + | /caniuse-lite/1.0.30001449: |
|
| 1678 | + | resolution: {integrity: sha512-CPB+UL9XMT/Av+pJxCKGhdx+yg1hzplvFJQlJ2n68PyQGMz9L/E2zCyLdOL8uasbouTUgnPl+y0tccI/se+BEw==} |
|
| 1679 | + | ||
| 1680 | + | /ccount/2.0.1: |
|
| 1681 | + | resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} |
|
| 1682 | + | ||
| 1683 | + | /chalk/2.4.2: |
|
| 1684 | + | resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} |
|
| 1685 | + | engines: {node: '>=4'} |
|
| 1686 | + | dependencies: |
|
| 1687 | + | ansi-styles: 3.2.1 |
|
| 1688 | + | escape-string-regexp: 1.0.5 |
|
| 1689 | + | supports-color: 5.5.0 |
|
| 1690 | + | ||
| 1691 | + | /chalk/4.1.2: |
|
| 1692 | + | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} |
|
| 1693 | + | engines: {node: '>=10'} |
|
| 1694 | + | dependencies: |
|
| 1695 | + | ansi-styles: 4.3.0 |
|
| 1696 | + | supports-color: 7.2.0 |
|
| 1697 | + | ||
| 1698 | + | /chalk/5.2.0: |
|
| 1699 | + | resolution: {integrity: sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==} |
|
| 1700 | + | engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} |
|
| 1701 | + | ||
| 1702 | + | /character-entities-html4/2.1.0: |
|
| 1703 | + | resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==} |
|
| 1704 | + | ||
| 1705 | + | /character-entities-legacy/3.0.0: |
|
| 1706 | + | resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==} |
|
| 1707 | + | ||
| 1708 | + | /character-entities/2.0.2: |
|
| 1709 | + | resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==} |
|
| 1710 | + | ||
| 1711 | + | /character-reference-invalid/2.0.1: |
|
| 1712 | + | resolution: {integrity: sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==} |
|
| 1713 | + | dev: true |
|
| 1714 | + | ||
| 1715 | + | /chokidar/3.5.3: |
|
| 1716 | + | resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} |
|
| 1717 | + | engines: {node: '>= 8.10.0'} |
|
| 1718 | + | dependencies: |
|
| 1719 | + | anymatch: 3.1.3 |
|
| 1720 | + | braces: 3.0.2 |
|
| 1721 | + | glob-parent: 5.1.2 |
|
| 1722 | + | is-binary-path: 2.1.0 |
|
| 1723 | + | is-glob: 4.0.3 |
|
| 1724 | + | normalize-path: 3.0.0 |
|
| 1725 | + | readdirp: 3.6.0 |
|
| 1726 | + | optionalDependencies: |
|
| 1727 | + | fsevents: 2.3.2 |
|
| 1728 | + | dev: true |
|
| 1729 | + | ||
| 1730 | + | /chownr/1.1.4: |
|
| 1731 | + | resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==} |
|
| 1732 | + | ||
| 1733 | + | /ci-info/3.7.1: |
|
| 1734 | + | resolution: {integrity: sha512-4jYS4MOAaCIStSRwiuxc4B8MYhIe676yO1sYGzARnjXkWpmzZMMYxY6zu8WYWDhSuth5zhrQ1rhNSibyyvv4/w==} |
|
| 1735 | + | engines: {node: '>=8'} |
|
| 1736 | + | ||
| 1737 | + | /cli-boxes/3.0.0: |
|
| 1738 | + | resolution: {integrity: sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==} |
|
| 1739 | + | engines: {node: '>=10'} |
|
| 1740 | + | ||
| 1741 | + | /cli-cursor/4.0.0: |
|
| 1742 | + | resolution: {integrity: sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==} |
|
| 1743 | + | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} |
|
| 1744 | + | dependencies: |
|
| 1745 | + | restore-cursor: 4.0.0 |
|
| 1746 | + | ||
| 1747 | + | /cli-spinners/2.7.0: |
|
| 1748 | + | resolution: {integrity: sha512-qu3pN8Y3qHNgE2AFweciB1IfMnmZ/fsNTEE+NOFjmGB2F/7rLhnhzppvpCnN4FovtP26k8lHyy9ptEbNwWFLzw==} |
|
| 1749 | + | engines: {node: '>=6'} |
|
| 1750 | + | ||
| 1751 | + | /clone/1.0.4: |
|
| 1752 | + | resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} |
|
| 1753 | + | engines: {node: '>=0.8'} |
|
| 1754 | + | ||
| 1755 | + | /color-convert/1.9.3: |
|
| 1756 | + | resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} |
|
| 1757 | + | dependencies: |
|
| 1758 | + | color-name: 1.1.3 |
|
| 1759 | + | ||
| 1760 | + | /color-convert/2.0.1: |
|
| 1761 | + | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} |
|
| 1762 | + | engines: {node: '>=7.0.0'} |
|
| 1763 | + | dependencies: |
|
| 1764 | + | color-name: 1.1.4 |
|
| 1765 | + | ||
| 1766 | + | /color-name/1.1.3: |
|
| 1767 | + | resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} |
|
| 1768 | + | ||
| 1769 | + | /color-name/1.1.4: |
|
| 1770 | + | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} |
|
| 1771 | + | ||
| 1772 | + | /color-string/1.9.1: |
|
| 1773 | + | resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==} |
|
| 1774 | + | dependencies: |
|
| 1775 | + | color-name: 1.1.4 |
|
| 1776 | + | simple-swizzle: 0.2.2 |
|
| 1777 | + | ||
| 1778 | + | /color/4.2.3: |
|
| 1779 | + | resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==} |
|
| 1780 | + | engines: {node: '>=12.5.0'} |
|
| 1781 | + | dependencies: |
|
| 1782 | + | color-convert: 2.0.1 |
|
| 1783 | + | color-string: 1.9.1 |
|
| 1784 | + | ||
| 1785 | + | /colord/2.9.3: |
|
| 1786 | + | resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==} |
|
| 1787 | + | dev: true |
|
| 1788 | + | ||
| 1789 | + | /comma-separated-tokens/2.0.3: |
|
| 1790 | + | resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==} |
|
| 1791 | + | ||
| 1792 | + | /common-ancestor-path/1.0.1: |
|
| 1793 | + | resolution: {integrity: sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w==} |
|
| 1794 | + | ||
| 1795 | + | /concat-map/0.0.1: |
|
| 1796 | + | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} |
|
| 1797 | + | dev: true |
|
| 1798 | + | ||
| 1799 | + | /convert-source-map/1.9.0: |
|
| 1800 | + | resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==} |
|
| 1801 | + | ||
| 1802 | + | /cookie/0.5.0: |
|
| 1803 | + | resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==} |
|
| 1804 | + | engines: {node: '>= 0.6'} |
|
| 1805 | + | ||
| 1806 | + | /cosmiconfig/7.1.0: |
|
| 1807 | + | resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==} |
|
| 1808 | + | engines: {node: '>=10'} |
|
| 1809 | + | dependencies: |
|
| 1810 | + | '@types/parse-json': 4.0.0 |
|
| 1811 | + | import-fresh: 3.3.0 |
|
| 1812 | + | parse-json: 5.2.0 |
|
| 1813 | + | path-type: 4.0.0 |
|
| 1814 | + | yaml: 1.10.2 |
|
| 1815 | + | dev: true |
|
| 1816 | + | ||
| 1817 | + | /cross-spawn/7.0.3: |
|
| 1818 | + | resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} |
|
| 1819 | + | engines: {node: '>= 8'} |
|
| 1820 | + | dependencies: |
|
| 1821 | + | path-key: 3.1.1 |
|
| 1822 | + | shebang-command: 2.0.0 |
|
| 1823 | + | which: 2.0.2 |
|
| 1824 | + | ||
| 1825 | + | /css-background-parser/0.1.0: |
|
| 1826 | + | resolution: {integrity: sha512-2EZLisiZQ+7m4wwur/qiYJRniHX4K5Tc9w93MT3AS0WS1u5kaZ4FKXlOTBhOjc+CgEgPiGY+fX1yWD8UwpEqUA==} |
|
| 1827 | + | dev: false |
|
| 1828 | + | ||
| 1829 | + | /css-box-shadow/1.0.0-3: |
|
| 1830 | + | resolution: {integrity: sha512-9jaqR6e7Ohds+aWwmhe6wILJ99xYQbfmK9QQB9CcMjDbTxPZjwEmUQpU91OG05Xgm8BahT5fW+svbsQGjS/zPg==} |
|
| 1831 | + | dev: false |
|
| 1832 | + | ||
| 1833 | + | /css-color-keywords/1.0.0: |
|
| 1834 | + | resolution: {integrity: sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==} |
|
| 1835 | + | engines: {node: '>=4'} |
|
| 1836 | + | dev: false |
|
| 1837 | + | ||
| 1838 | + | /css-functions-list/3.1.0: |
|
| 1839 | + | resolution: {integrity: sha512-/9lCvYZaUbBGvYUgYGFJ4dcYiyqdhSjG7IPVluoV8A1ILjkF7ilmhp1OGUz8n+nmBcu0RNrQAzgD8B6FJbrt2w==} |
|
| 1840 | + | engines: {node: '>=12.22'} |
|
| 1841 | + | dev: true |
|
| 1842 | + | ||
| 1843 | + | /css-to-react-native/3.1.0: |
|
| 1844 | + | resolution: {integrity: sha512-AryfkFA29b4I3vG7N4kxFboq15DxwSXzhXM37XNEjwJMgjYIc8BcqfiprpAqX0zadI5PMByEIwAMzXxk5Vcc4g==} |
|
| 1845 | + | dependencies: |
|
| 1846 | + | camelize: 1.0.1 |
|
| 1847 | + | css-color-keywords: 1.0.0 |
|
| 1848 | + | postcss-value-parser: 4.2.0 |
|
| 1849 | + | dev: false |
|
| 1850 | + | ||
| 1851 | + | /cssesc/3.0.0: |
|
| 1852 | + | resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} |
|
| 1853 | + | engines: {node: '>=4'} |
|
| 1854 | + | hasBin: true |
|
| 1855 | + | dev: true |
|
| 1856 | + | ||
| 1857 | + | /damerau-levenshtein/1.0.8: |
|
| 1858 | + | resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} |
|
| 1859 | + | dev: true |
|
| 1860 | + | ||
| 1861 | + | /debug/3.2.7: |
|
| 1862 | + | resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} |
|
| 1863 | + | peerDependencies: |
|
| 1864 | + | supports-color: '*' |
|
| 1865 | + | peerDependenciesMeta: |
|
| 1866 | + | supports-color: |
|
| 1867 | + | optional: true |
|
| 1868 | + | dependencies: |
|
| 1869 | + | ms: 2.1.3 |
|
| 1870 | + | dev: true |
|
| 1871 | + | ||
| 1872 | + | /debug/4.3.4: |
|
| 1873 | + | resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} |
|
| 1874 | + | engines: {node: '>=6.0'} |
|
| 1875 | + | peerDependencies: |
|
| 1876 | + | supports-color: '*' |
|
| 1877 | + | peerDependenciesMeta: |
|
| 1878 | + | supports-color: |
|
| 1879 | + | optional: true |
|
| 1880 | + | dependencies: |
|
| 1881 | + | ms: 2.1.2 |
|
| 1882 | + | ||
| 1883 | + | /decamelize-keys/1.1.1: |
|
| 1884 | + | resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==} |
|
| 1885 | + | engines: {node: '>=0.10.0'} |
|
| 1886 | + | dependencies: |
|
| 1887 | + | decamelize: 1.2.0 |
|
| 1888 | + | map-obj: 1.0.1 |
|
| 1889 | + | dev: true |
|
| 1890 | + | ||
| 1891 | + | /decamelize/1.2.0: |
|
| 1892 | + | resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} |
|
| 1893 | + | engines: {node: '>=0.10.0'} |
|
| 1894 | + | dev: true |
|
| 1895 | + | ||
| 1896 | + | /decode-named-character-reference/1.0.2: |
|
| 1897 | + | resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==} |
|
| 1898 | + | dependencies: |
|
| 1899 | + | character-entities: 2.0.2 |
|
| 1900 | + | ||
| 1901 | + | /decompress-response/6.0.0: |
|
| 1902 | + | resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==} |
|
| 1903 | + | engines: {node: '>=10'} |
|
| 1904 | + | dependencies: |
|
| 1905 | + | mimic-response: 3.1.0 |
|
| 1906 | + | ||
| 1907 | + | /deep-equal/2.2.0: |
|
| 1908 | + | resolution: {integrity: sha512-RdpzE0Hv4lhowpIUKKMJfeH6C1pXdtT1/it80ubgWqwI3qpuxUBpC1S4hnHg+zjnuOoDkzUtUCEEkG+XG5l3Mw==} |
|
| 1909 | + | dependencies: |
|
| 1910 | + | call-bind: 1.0.2 |
|
| 1911 | + | es-get-iterator: 1.1.3 |
|
| 1912 | + | get-intrinsic: 1.2.0 |
|
| 1913 | + | is-arguments: 1.1.1 |
|
| 1914 | + | is-array-buffer: 3.0.1 |
|
| 1915 | + | is-date-object: 1.0.5 |
|
| 1916 | + | is-regex: 1.1.4 |
|
| 1917 | + | is-shared-array-buffer: 1.0.2 |
|
| 1918 | + | isarray: 2.0.5 |
|
| 1919 | + | object-is: 1.1.5 |
|
| 1920 | + | object-keys: 1.1.1 |
|
| 1921 | + | object.assign: 4.1.4 |
|
| 1922 | + | regexp.prototype.flags: 1.4.3 |
|
| 1923 | + | side-channel: 1.0.4 |
|
| 1924 | + | which-boxed-primitive: 1.0.2 |
|
| 1925 | + | which-collection: 1.0.1 |
|
| 1926 | + | which-typed-array: 1.1.9 |
|
| 1927 | + | dev: true |
|
| 1928 | + | ||
| 1929 | + | /deep-extend/0.6.0: |
|
| 1930 | + | resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} |
|
| 1931 | + | engines: {node: '>=4.0.0'} |
|
| 1932 | + | ||
| 1933 | + | /deep-is/0.1.4: |
|
| 1934 | + | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} |
|
| 1935 | + | dev: true |
|
| 1936 | + | ||
| 1937 | + | /deepmerge-ts/4.2.2: |
|
| 1938 | + | resolution: {integrity: sha512-Ka3Kb21tiWjvQvS9U+1Dx+aqFAHsdTnMdYptLTmC2VAmDFMugWMY1e15aTODstipmCun8iNuqeSfcx6rsUUk0Q==} |
|
| 1939 | + | engines: {node: '>=12.4.0'} |
|
| 1940 | + | ||
| 1941 | + | /deepmerge/4.2.2: |
|
| 1942 | + | resolution: {integrity: sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==} |
|
| 1943 | + | engines: {node: '>=0.10.0'} |
|
| 1944 | + | dev: true |
|
| 1945 | + | ||
| 1946 | + | /defaults/1.0.4: |
|
| 1947 | + | resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} |
|
| 1948 | + | dependencies: |
|
| 1949 | + | clone: 1.0.4 |
|
| 1950 | + | ||
| 1951 | + | /define-lazy-prop/2.0.0: |
|
| 1952 | + | resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} |
|
| 1953 | + | engines: {node: '>=8'} |
|
| 1954 | + | ||
| 1955 | + | /define-properties/1.1.4: |
|
| 1956 | + | resolution: {integrity: sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==} |
|
| 1957 | + | engines: {node: '>= 0.4'} |
|
| 1958 | + | dependencies: |
|
| 1959 | + | has-property-descriptors: 1.0.0 |
|
| 1960 | + | object-keys: 1.1.1 |
|
| 1961 | + | dev: true |
|
| 1962 | + | ||
| 1963 | + | /defined/1.0.1: |
|
| 1964 | + | resolution: {integrity: sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q==} |
|
| 1965 | + | dev: true |
|
| 1966 | + | ||
| 1967 | + | /dequal/2.0.3: |
|
| 1968 | + | resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} |
|
| 1969 | + | engines: {node: '>=6'} |
|
| 1970 | + | ||
| 1971 | + | /detect-libc/2.0.1: |
|
| 1972 | + | resolution: {integrity: sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w==} |
|
| 1973 | + | engines: {node: '>=8'} |
|
| 1974 | + | ||
| 1975 | + | /detective/5.2.1: |
|
| 1976 | + | resolution: {integrity: sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw==} |
|
| 1977 | + | engines: {node: '>=0.8.0'} |
|
| 1978 | + | hasBin: true |
|
| 1979 | + | dependencies: |
|
| 1980 | + | acorn-node: 1.8.2 |
|
| 1981 | + | defined: 1.0.1 |
|
| 1982 | + | minimist: 1.2.7 |
|
| 1983 | + | dev: true |
|
| 1984 | + | ||
| 1985 | + | /devalue/4.2.2: |
|
| 1986 | + | resolution: {integrity: sha512-Pkwd8qrI9O20VJ14fBNHu+on99toTNZFbgWRpZbC0zbDXpnE2WHYcrC1fHhMsF/3Ee+2yaW7vEujAT7fCYgqrA==} |
|
| 1987 | + | ||
| 1988 | + | /didyoumean/1.2.2: |
|
| 1989 | + | resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==} |
|
| 1990 | + | dev: true |
|
| 1991 | + | ||
| 1992 | + | /diff/5.1.0: |
|
| 1993 | + | resolution: {integrity: sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==} |
|
| 1994 | + | engines: {node: '>=0.3.1'} |
|
| 1995 | + | ||
| 1996 | + | /dir-glob/3.0.1: |
|
| 1997 | + | resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} |
|
| 1998 | + | engines: {node: '>=8'} |
|
| 1999 | + | dependencies: |
|
| 2000 | + | path-type: 4.0.0 |
|
| 2001 | + | dev: true |
|
| 2002 | + | ||
| 2003 | + | /dlv/1.1.3: |
|
| 2004 | + | resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} |
|
| 2005 | + | ||
| 2006 | + | /doctrine/2.1.0: |
|
| 2007 | + | resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} |
|
| 2008 | + | engines: {node: '>=0.10.0'} |
|
| 2009 | + | dependencies: |
|
| 2010 | + | esutils: 2.0.3 |
|
| 2011 | + | dev: true |
|
| 2012 | + | ||
| 2013 | + | /doctrine/3.0.0: |
|
| 2014 | + | resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} |
|
| 2015 | + | engines: {node: '>=6.0.0'} |
|
| 2016 | + | dependencies: |
|
| 2017 | + | esutils: 2.0.3 |
|
| 2018 | + | dev: true |
|
| 2019 | + | ||
| 2020 | + | /dom-serializer/2.0.0: |
|
| 2021 | + | resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==} |
|
| 2022 | + | dependencies: |
|
| 2023 | + | domelementtype: 2.3.0 |
|
| 2024 | + | domhandler: 5.0.3 |
|
| 2025 | + | entities: 4.4.0 |
|
| 2026 | + | dev: true |
|
| 2027 | + | ||
| 2028 | + | /domelementtype/2.3.0: |
|
| 2029 | + | resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} |
|
| 2030 | + | dev: true |
|
| 2031 | + | ||
| 2032 | + | /domhandler/5.0.3: |
|
| 2033 | + | resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==} |
|
| 2034 | + | engines: {node: '>= 4'} |
|
| 2035 | + | dependencies: |
|
| 2036 | + | domelementtype: 2.3.0 |
|
| 2037 | + | dev: true |
|
| 2038 | + | ||
| 2039 | + | /domutils/3.0.1: |
|
| 2040 | + | resolution: {integrity: sha512-z08c1l761iKhDFtfXO04C7kTdPBLi41zwOZl00WS8b5eiaebNpY00HKbztwBq+e3vyqWNwWF3mP9YLUeqIrF+Q==} |
|
| 2041 | + | dependencies: |
|
| 2042 | + | dom-serializer: 2.0.0 |
|
| 2043 | + | domelementtype: 2.3.0 |
|
| 2044 | + | domhandler: 5.0.3 |
|
| 2045 | + | dev: true |
|
| 2046 | + | ||
| 2047 | + | /dset/3.1.2: |
|
| 2048 | + | resolution: {integrity: sha512-g/M9sqy3oHe477Ar4voQxWtaPIFw1jTdKZuomOjhCcBx9nHUNn0pu6NopuFFrTh/TRZIKEj+76vLWFu9BNKk+Q==} |
|
| 2049 | + | engines: {node: '>=4'} |
|
| 2050 | + | ||
| 2051 | + | /eastasianwidth/0.2.0: |
|
| 2052 | + | resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} |
|
| 2053 | + | ||
| 2054 | + | /electron-to-chromium/1.4.284: |
|
| 2055 | + | resolution: {integrity: sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==} |
|
| 2056 | + | ||
| 2057 | + | /emmet/2.3.6: |
|
| 2058 | + | resolution: {integrity: sha512-pLS4PBPDdxuUAmw7Me7+TcHbykTsBKN/S9XJbUOMFQrNv9MoshzyMFK/R57JBm94/6HSL4vHnDeEmxlC82NQ4A==} |
|
| 2059 | + | dependencies: |
|
| 2060 | + | '@emmetio/abbreviation': 2.2.3 |
|
| 2061 | + | '@emmetio/css-abbreviation': 2.1.4 |
|
| 2062 | + | ||
| 2063 | + | /emoji-regex/10.2.1: |
|
| 2064 | + | resolution: {integrity: sha512-97g6QgOk8zlDRdgq1WxwgTMgEWGVAQvB5Fdpgc1MkNy56la5SKP9GsMXKDOdqwn90/41a8yPwIGk1Y6WVbeMQA==} |
|
| 2065 | + | dev: false |
|
| 2066 | + | ||
| 2067 | + | /emoji-regex/8.0.0: |
|
| 2068 | + | resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} |
|
| 2069 | + | ||
| 2070 | + | /emoji-regex/9.2.2: |
|
| 2071 | + | resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} |
|
| 2072 | + | ||
| 2073 | + | /end-of-stream/1.4.4: |
|
| 2074 | + | resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} |
|
| 2075 | + | dependencies: |
|
| 2076 | + | once: 1.4.0 |
|
| 2077 | + | ||
| 2078 | + | /enhanced-resolve/5.12.0: |
|
| 2079 | + | resolution: {integrity: sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==} |
|
| 2080 | + | engines: {node: '>=10.13.0'} |
|
| 2081 | + | dependencies: |
|
| 2082 | + | graceful-fs: 4.2.10 |
|
| 2083 | + | tapable: 2.2.1 |
|
| 2084 | + | dev: true |
|
| 2085 | + | ||
| 2086 | + | /entities/4.4.0: |
|
| 2087 | + | resolution: {integrity: sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA==} |
|
| 2088 | + | engines: {node: '>=0.12'} |
|
| 2089 | + | dev: true |
|
| 2090 | + | ||
| 2091 | + | /error-ex/1.3.2: |
|
| 2092 | + | resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} |
|
| 2093 | + | dependencies: |
|
| 2094 | + | is-arrayish: 0.2.1 |
|
| 2095 | + | dev: true |
|
| 2096 | + | ||
| 2097 | + | /es-abstract/1.21.1: |
|
| 2098 | + | resolution: {integrity: sha512-QudMsPOz86xYz/1dG1OuGBKOELjCh99IIWHLzy5znUB6j8xG2yMA7bfTV86VSqKF+Y/H08vQPR+9jyXpuC6hfg==} |
|
| 2099 | + | engines: {node: '>= 0.4'} |
|
| 2100 | + | dependencies: |
|
| 2101 | + | available-typed-arrays: 1.0.5 |
|
| 2102 | + | call-bind: 1.0.2 |
|
| 2103 | + | es-set-tostringtag: 2.0.1 |
|
| 2104 | + | es-to-primitive: 1.2.1 |
|
| 2105 | + | function-bind: 1.1.1 |
|
| 2106 | + | function.prototype.name: 1.1.5 |
|
| 2107 | + | get-intrinsic: 1.2.0 |
|
| 2108 | + | get-symbol-description: 1.0.0 |
|
| 2109 | + | globalthis: 1.0.3 |
|
| 2110 | + | gopd: 1.0.1 |
|
| 2111 | + | has: 1.0.3 |
|
| 2112 | + | has-property-descriptors: 1.0.0 |
|
| 2113 | + | has-proto: 1.0.1 |
|
| 2114 | + | has-symbols: 1.0.3 |
|
| 2115 | + | internal-slot: 1.0.4 |
|
| 2116 | + | is-array-buffer: 3.0.1 |
|
| 2117 | + | is-callable: 1.2.7 |
|
| 2118 | + | is-negative-zero: 2.0.2 |
|
| 2119 | + | is-regex: 1.1.4 |
|
| 2120 | + | is-shared-array-buffer: 1.0.2 |
|
| 2121 | + | is-string: 1.0.7 |
|
| 2122 | + | is-typed-array: 1.1.10 |
|
| 2123 | + | is-weakref: 1.0.2 |
|
| 2124 | + | object-inspect: 1.12.3 |
|
| 2125 | + | object-keys: 1.1.1 |
|
| 2126 | + | object.assign: 4.1.4 |
|
| 2127 | + | regexp.prototype.flags: 1.4.3 |
|
| 2128 | + | safe-regex-test: 1.0.0 |
|
| 2129 | + | string.prototype.trimend: 1.0.6 |
|
| 2130 | + | string.prototype.trimstart: 1.0.6 |
|
| 2131 | + | typed-array-length: 1.0.4 |
|
| 2132 | + | unbox-primitive: 1.0.2 |
|
| 2133 | + | which-typed-array: 1.1.9 |
|
| 2134 | + | dev: true |
|
| 2135 | + | ||
| 2136 | + | /es-get-iterator/1.1.3: |
|
| 2137 | + | resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==} |
|
| 2138 | + | dependencies: |
|
| 2139 | + | call-bind: 1.0.2 |
|
| 2140 | + | get-intrinsic: 1.2.0 |
|
| 2141 | + | has-symbols: 1.0.3 |
|
| 2142 | + | is-arguments: 1.1.1 |
|
| 2143 | + | is-map: 2.0.2 |
|
| 2144 | + | is-set: 2.0.2 |
|
| 2145 | + | is-string: 1.0.7 |
|
| 2146 | + | isarray: 2.0.5 |
|
| 2147 | + | stop-iteration-iterator: 1.0.0 |
|
| 2148 | + | dev: true |
|
| 2149 | + | ||
| 2150 | + | /es-module-lexer/0.10.5: |
|
| 2151 | + | resolution: {integrity: sha512-+7IwY/kiGAacQfY+YBhKMvEmyAJnw5grTUgjG85Pe7vcUI/6b7pZjZG8nQ7+48YhzEAEqrEgD2dCz/JIK+AYvw==} |
|
| 2152 | + | dev: true |
|
| 2153 | + | ||
| 2154 | + | /es-module-lexer/1.1.0: |
|
| 2155 | + | resolution: {integrity: sha512-fJg+1tiyEeS8figV+fPcPpm8WqJEflG3yPU0NOm5xMvrNkuiy7HzX/Ljng4Y0hAoiw4/3hQTCFYw+ub8+a2pRA==} |
|
| 2156 | + | ||
| 2157 | + | /es-set-tostringtag/2.0.1: |
|
| 2158 | + | resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==} |
|
| 2159 | + | engines: {node: '>= 0.4'} |
|
| 2160 | + | dependencies: |
|
| 2161 | + | get-intrinsic: 1.2.0 |
|
| 2162 | + | has: 1.0.3 |
|
| 2163 | + | has-tostringtag: 1.0.0 |
|
| 2164 | + | dev: true |
|
| 2165 | + | ||
| 2166 | + | /es-shim-unscopables/1.0.0: |
|
| 2167 | + | resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==} |
|
| 2168 | + | dependencies: |
|
| 2169 | + | has: 1.0.3 |
|
| 2170 | + | dev: true |
|
| 2171 | + | ||
| 2172 | + | /es-to-primitive/1.2.1: |
|
| 2173 | + | resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} |
|
| 2174 | + | engines: {node: '>= 0.4'} |
|
| 2175 | + | dependencies: |
|
| 2176 | + | is-callable: 1.2.7 |
|
| 2177 | + | is-date-object: 1.0.5 |
|
| 2178 | + | is-symbol: 1.0.4 |
|
| 2179 | + | dev: true |
|
| 2180 | + | ||
| 2181 | + | /esbuild/0.16.17: |
|
| 2182 | + | resolution: {integrity: sha512-G8LEkV0XzDMNwXKgM0Jwu3nY3lSTwSGY6XbxM9cr9+s0T/qSV1q1JVPBGzm3dcjhCic9+emZDmMffkwgPeOeLg==} |
|
| 2183 | + | engines: {node: '>=12'} |
|
| 2184 | + | hasBin: true |
|
| 2185 | + | requiresBuild: true |
|
| 2186 | + | optionalDependencies: |
|
| 2187 | + | '@esbuild/android-arm': 0.16.17 |
|
| 2188 | + | '@esbuild/android-arm64': 0.16.17 |
|
| 2189 | + | '@esbuild/android-x64': 0.16.17 |
|
| 2190 | + | '@esbuild/darwin-arm64': 0.16.17 |
|
| 2191 | + | '@esbuild/darwin-x64': 0.16.17 |
|
| 2192 | + | '@esbuild/freebsd-arm64': 0.16.17 |
|
| 2193 | + | '@esbuild/freebsd-x64': 0.16.17 |
|
| 2194 | + | '@esbuild/linux-arm': 0.16.17 |
|
| 2195 | + | '@esbuild/linux-arm64': 0.16.17 |
|
| 2196 | + | '@esbuild/linux-ia32': 0.16.17 |
|
| 2197 | + | '@esbuild/linux-loong64': 0.16.17 |
|
| 2198 | + | '@esbuild/linux-mips64el': 0.16.17 |
|
| 2199 | + | '@esbuild/linux-ppc64': 0.16.17 |
|
| 2200 | + | '@esbuild/linux-riscv64': 0.16.17 |
|
| 2201 | + | '@esbuild/linux-s390x': 0.16.17 |
|
| 2202 | + | '@esbuild/linux-x64': 0.16.17 |
|
| 2203 | + | '@esbuild/netbsd-x64': 0.16.17 |
|
| 2204 | + | '@esbuild/openbsd-x64': 0.16.17 |
|
| 2205 | + | '@esbuild/sunos-x64': 0.16.17 |
|
| 2206 | + | '@esbuild/win32-arm64': 0.16.17 |
|
| 2207 | + | '@esbuild/win32-ia32': 0.16.17 |
|
| 2208 | + | '@esbuild/win32-x64': 0.16.17 |
|
| 2209 | + | ||
| 2210 | + | /escalade/3.1.1: |
|
| 2211 | + | resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} |
|
| 2212 | + | engines: {node: '>=6'} |
|
| 2213 | + | ||
| 2214 | + | /escape-string-regexp/1.0.5: |
|
| 2215 | + | resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} |
|
| 2216 | + | engines: {node: '>=0.8.0'} |
|
| 2217 | + | ||
| 2218 | + | /escape-string-regexp/4.0.0: |
|
| 2219 | + | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} |
|
| 2220 | + | engines: {node: '>=10'} |
|
| 2221 | + | dev: true |
|
| 2222 | + | ||
| 2223 | + | /escape-string-regexp/5.0.0: |
|
| 2224 | + | resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} |
|
| 2225 | + | engines: {node: '>=12'} |
|
| 2226 | + | ||
| 2227 | + | /eslint-config-prettier/8.6.0_eslint@8.32.0: |
|
| 2228 | + | resolution: {integrity: sha512-bAF0eLpLVqP5oEVUFKpMA+NnRFICwn9X8B5jrR9FcqnYBuPbqWEjTEspPWMj5ye6czoSLDweCzSo3Ko7gGrZaA==} |
|
| 2229 | + | hasBin: true |
|
| 2230 | + | peerDependencies: |
|
| 2231 | + | eslint: '>=7.0.0' |
|
| 2232 | + | dependencies: |
|
| 2233 | + | eslint: 8.32.0 |
|
| 2234 | + | dev: true |
|
| 2235 | + | ||
| 2236 | + | /eslint-import-resolver-node/0.3.7: |
|
| 2237 | + | resolution: {integrity: sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==} |
|
| 2238 | + | dependencies: |
|
| 2239 | + | debug: 3.2.7 |
|
| 2240 | + | is-core-module: 2.11.0 |
|
| 2241 | + | resolve: 1.22.1 |
|
| 2242 | + | transitivePeerDependencies: |
|
| 2243 | + | - supports-color |
|
| 2244 | + | dev: true |
|
| 2245 | + | ||
| 2246 | + | /eslint-import-resolver-typescript/3.5.3_ps7hf4l2dvbuxvtusmrfhmzsba: |
|
| 2247 | + | resolution: {integrity: sha512-njRcKYBc3isE42LaTcJNVANR3R99H9bAxBDMNDr2W7yq5gYPxbU3MkdhsQukxZ/Xg9C2vcyLlDsbKfRDg0QvCQ==} |
|
| 2248 | + | engines: {node: ^14.18.0 || >=16.0.0} |
|
| 2249 | + | peerDependencies: |
|
| 2250 | + | eslint: '*' |
|
| 2251 | + | eslint-plugin-import: '*' |
|
| 2252 | + | dependencies: |
|
| 2253 | + | debug: 4.3.4 |
|
| 2254 | + | enhanced-resolve: 5.12.0 |
|
| 2255 | + | eslint: 8.32.0 |
|
| 2256 | + | eslint-plugin-import: 2.27.5_tto3jvfrcbe7ndbi56p7uxhaki |
|
| 2257 | + | get-tsconfig: 4.3.0 |
|
| 2258 | + | globby: 13.1.3 |
|
| 2259 | + | is-core-module: 2.11.0 |
|
| 2260 | + | is-glob: 4.0.3 |
|
| 2261 | + | synckit: 0.8.5 |
|
| 2262 | + | transitivePeerDependencies: |
|
| 2263 | + | - supports-color |
|
| 2264 | + | dev: true |
|
| 2265 | + | ||
| 2266 | + | /eslint-module-utils/2.7.4_xoxtsypck35xtelm3fn5dkquvy: |
|
| 2267 | + | resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==} |
|
| 2268 | + | engines: {node: '>=4'} |
|
| 2269 | + | peerDependencies: |
|
| 2270 | + | '@typescript-eslint/parser': '*' |
|
| 2271 | + | eslint: '*' |
|
| 2272 | + | eslint-import-resolver-node: '*' |
|
| 2273 | + | eslint-import-resolver-typescript: '*' |
|
| 2274 | + | eslint-import-resolver-webpack: '*' |
|
| 2275 | + | peerDependenciesMeta: |
|
| 2276 | + | '@typescript-eslint/parser': |
|
| 2277 | + | optional: true |
|
| 2278 | + | eslint: |
|
| 2279 | + | optional: true |
|
| 2280 | + | eslint-import-resolver-node: |
|
| 2281 | + | optional: true |
|
| 2282 | + | eslint-import-resolver-typescript: |
|
| 2283 | + | optional: true |
|
| 2284 | + | eslint-import-resolver-webpack: |
|
| 2285 | + | optional: true |
|
| 2286 | + | dependencies: |
|
| 2287 | + | '@typescript-eslint/parser': 5.49.0_7uibuqfxkfaozanbtbziikiqje |
|
| 2288 | + | debug: 3.2.7 |
|
| 2289 | + | eslint: 8.32.0 |
|
| 2290 | + | eslint-import-resolver-node: 0.3.7 |
|
| 2291 | + | eslint-import-resolver-typescript: 3.5.3_ps7hf4l2dvbuxvtusmrfhmzsba |
|
| 2292 | + | transitivePeerDependencies: |
|
| 2293 | + | - supports-color |
|
| 2294 | + | dev: true |
|
| 2295 | + | ||
| 2296 | + | /eslint-plugin-astro/0.23.0_eslint@8.32.0: |
|
| 2297 | + | resolution: {integrity: sha512-KsIL1sOrz40qf/d9RP4E3sH6+p6nrIBBXB6rPuE9EWb5de+m9BWfvURuoECXfiXCmQh8UlHJUxgSWxn1bLsD8g==} |
|
| 2298 | + | engines: {node: ^14.18.0 || >=16.0.0} |
|
| 2299 | + | peerDependencies: |
|
| 2300 | + | eslint: '>=7.0.0' |
|
| 2301 | + | dependencies: |
|
| 2302 | + | '@jridgewell/sourcemap-codec': 1.4.14 |
|
| 2303 | + | '@typescript-eslint/types': 5.49.0 |
|
| 2304 | + | astro-eslint-parser: 0.11.0 |
|
| 2305 | + | eslint: 8.32.0 |
|
| 2306 | + | eslint-utils: 3.0.0_eslint@8.32.0 |
|
| 2307 | + | postcss: 8.4.21 |
|
| 2308 | + | postcss-selector-parser: 6.0.11 |
|
| 2309 | + | transitivePeerDependencies: |
|
| 2310 | + | - supports-color |
|
| 2311 | + | dev: true |
|
| 2312 | + | ||
| 2313 | + | /eslint-plugin-import/2.27.5_tto3jvfrcbe7ndbi56p7uxhaki: |
|
| 2314 | + | resolution: {integrity: sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==} |
|
| 2315 | + | engines: {node: '>=4'} |
|
| 2316 | + | peerDependencies: |
|
| 2317 | + | '@typescript-eslint/parser': '*' |
|
| 2318 | + | eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 |
|
| 2319 | + | peerDependenciesMeta: |
|
| 2320 | + | '@typescript-eslint/parser': |
|
| 2321 | + | optional: true |
|
| 2322 | + | dependencies: |
|
| 2323 | + | '@typescript-eslint/parser': 5.49.0_7uibuqfxkfaozanbtbziikiqje |
|
| 2324 | + | array-includes: 3.1.6 |
|
| 2325 | + | array.prototype.flat: 1.3.1 |
|
| 2326 | + | array.prototype.flatmap: 1.3.1 |
|
| 2327 | + | debug: 3.2.7 |
|
| 2328 | + | doctrine: 2.1.0 |
|
| 2329 | + | eslint: 8.32.0 |
|
| 2330 | + | eslint-import-resolver-node: 0.3.7 |
|
| 2331 | + | eslint-module-utils: 2.7.4_xoxtsypck35xtelm3fn5dkquvy |
|
| 2332 | + | has: 1.0.3 |
|
| 2333 | + | is-core-module: 2.11.0 |
|
| 2334 | + | is-glob: 4.0.3 |
|
| 2335 | + | minimatch: 3.1.2 |
|
| 2336 | + | object.values: 1.1.6 |
|
| 2337 | + | resolve: 1.22.1 |
|
| 2338 | + | semver: 6.3.0 |
|
| 2339 | + | tsconfig-paths: 3.14.1 |
|
| 2340 | + | transitivePeerDependencies: |
|
| 2341 | + | - eslint-import-resolver-typescript |
|
| 2342 | + | - eslint-import-resolver-webpack |
|
| 2343 | + | - supports-color |
|
| 2344 | + | dev: true |
|
| 2345 | + | ||
| 2346 | + | /eslint-plugin-jsx-a11y/6.7.1_eslint@8.32.0: |
|
| 2347 | + | resolution: {integrity: sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==} |
|
| 2348 | + | engines: {node: '>=4.0'} |
|
| 2349 | + | peerDependencies: |
|
| 2350 | + | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 |
|
| 2351 | + | dependencies: |
|
| 2352 | + | '@babel/runtime': 7.20.13 |
|
| 2353 | + | aria-query: 5.1.3 |
|
| 2354 | + | array-includes: 3.1.6 |
|
| 2355 | + | array.prototype.flatmap: 1.3.1 |
|
| 2356 | + | ast-types-flow: 0.0.7 |
|
| 2357 | + | axe-core: 4.6.3 |
|
| 2358 | + | axobject-query: 3.1.1 |
|
| 2359 | + | damerau-levenshtein: 1.0.8 |
|
| 2360 | + | emoji-regex: 9.2.2 |
|
| 2361 | + | eslint: 8.32.0 |
|
| 2362 | + | has: 1.0.3 |
|
| 2363 | + | jsx-ast-utils: 3.3.3 |
|
| 2364 | + | language-tags: 1.0.5 |
|
| 2365 | + | minimatch: 3.1.2 |
|
| 2366 | + | object.entries: 1.1.6 |
|
| 2367 | + | object.fromentries: 2.0.6 |
|
| 2368 | + | semver: 6.3.0 |
|
| 2369 | + | dev: true |
|
| 2370 | + | ||
| 2371 | + | /eslint-plugin-prettier/4.2.1_cn4lalcyadplruoxa5mhp7j3dq: |
|
| 2372 | + | resolution: {integrity: sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==} |
|
| 2373 | + | engines: {node: '>=12.0.0'} |
|
| 2374 | + | peerDependencies: |
|
| 2375 | + | eslint: '>=7.28.0' |
|
| 2376 | + | eslint-config-prettier: '*' |
|
| 2377 | + | prettier: '>=2.0.0' |
|
| 2378 | + | peerDependenciesMeta: |
|
| 2379 | + | eslint-config-prettier: |
|
| 2380 | + | optional: true |
|
| 2381 | + | dependencies: |
|
| 2382 | + | eslint: 8.32.0 |
|
| 2383 | + | eslint-config-prettier: 8.6.0_eslint@8.32.0 |
|
| 2384 | + | prettier: 2.8.3 |
|
| 2385 | + | prettier-linter-helpers: 1.0.0 |
|
| 2386 | + | dev: true |
|
| 2387 | + | ||
| 2388 | + | /eslint-scope/5.1.1: |
|
| 2389 | + | resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} |
|
| 2390 | + | engines: {node: '>=8.0.0'} |
|
| 2391 | + | dependencies: |
|
| 2392 | + | esrecurse: 4.3.0 |
|
| 2393 | + | estraverse: 4.3.0 |
|
| 2394 | + | dev: true |
|
| 2395 | + | ||
| 2396 | + | /eslint-scope/7.1.1: |
|
| 2397 | + | resolution: {integrity: sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==} |
|
| 2398 | + | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} |
|
| 2399 | + | dependencies: |
|
| 2400 | + | esrecurse: 4.3.0 |
|
| 2401 | + | estraverse: 5.3.0 |
|
| 2402 | + | dev: true |
|
| 2403 | + | ||
| 2404 | + | /eslint-utils/3.0.0_eslint@8.32.0: |
|
| 2405 | + | resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} |
|
| 2406 | + | engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} |
|
| 2407 | + | peerDependencies: |
|
| 2408 | + | eslint: '>=5' |
|
| 2409 | + | dependencies: |
|
| 2410 | + | eslint: 8.32.0 |
|
| 2411 | + | eslint-visitor-keys: 2.1.0 |
|
| 2412 | + | dev: true |
|
| 2413 | + | ||
| 2414 | + | /eslint-visitor-keys/2.1.0: |
|
| 2415 | + | resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} |
|
| 2416 | + | engines: {node: '>=10'} |
|
| 2417 | + | dev: true |
|
| 2418 | + | ||
| 2419 | + | /eslint-visitor-keys/3.3.0: |
|
| 2420 | + | resolution: {integrity: sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==} |
|
| 2421 | + | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} |
|
| 2422 | + | dev: true |
|
| 2423 | + | ||
| 2424 | + | /eslint/8.32.0: |
|
| 2425 | + | resolution: {integrity: sha512-nETVXpnthqKPFyuY2FNjz/bEd6nbosRgKbkgS/y1C7LJop96gYHWpiguLecMHQ2XCPxn77DS0P+68WzG6vkZSQ==} |
|
| 2426 | + | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} |
|
| 2427 | + | hasBin: true |
|
| 2428 | + | dependencies: |
|
| 2429 | + | '@eslint/eslintrc': 1.4.1 |
|
| 2430 | + | '@humanwhocodes/config-array': 0.11.8 |
|
| 2431 | + | '@humanwhocodes/module-importer': 1.0.1 |
|
| 2432 | + | '@nodelib/fs.walk': 1.2.8 |
|
| 2433 | + | ajv: 6.12.6 |
|
| 2434 | + | chalk: 4.1.2 |
|
| 2435 | + | cross-spawn: 7.0.3 |
|
| 2436 | + | debug: 4.3.4 |
|
| 2437 | + | doctrine: 3.0.0 |
|
| 2438 | + | escape-string-regexp: 4.0.0 |
|
| 2439 | + | eslint-scope: 7.1.1 |
|
| 2440 | + | eslint-utils: 3.0.0_eslint@8.32.0 |
|
| 2441 | + | eslint-visitor-keys: 3.3.0 |
|
| 2442 | + | espree: 9.4.1 |
|
| 2443 | + | esquery: 1.4.0 |
|
| 2444 | + | esutils: 2.0.3 |
|
| 2445 | + | fast-deep-equal: 3.1.3 |
|
| 2446 | + | file-entry-cache: 6.0.1 |
|
| 2447 | + | find-up: 5.0.0 |
|
| 2448 | + | glob-parent: 6.0.2 |
|
| 2449 | + | globals: 13.19.0 |
|
| 2450 | + | grapheme-splitter: 1.0.4 |
|
| 2451 | + | ignore: 5.2.4 |
|
| 2452 | + | import-fresh: 3.3.0 |
|
| 2453 | + | imurmurhash: 0.1.4 |
|
| 2454 | + | is-glob: 4.0.3 |
|
| 2455 | + | is-path-inside: 3.0.3 |
|
| 2456 | + | js-sdsl: 4.3.0 |
|
| 2457 | + | js-yaml: 4.1.0 |
|
| 2458 | + | json-stable-stringify-without-jsonify: 1.0.1 |
|
| 2459 | + | levn: 0.4.1 |
|
| 2460 | + | lodash.merge: 4.6.2 |
|
| 2461 | + | minimatch: 3.1.2 |
|
| 2462 | + | natural-compare: 1.4.0 |
|
| 2463 | + | optionator: 0.9.1 |
|
| 2464 | + | regexpp: 3.2.0 |
|
| 2465 | + | strip-ansi: 6.0.1 |
|
| 2466 | + | strip-json-comments: 3.1.1 |
|
| 2467 | + | text-table: 0.2.0 |
|
| 2468 | + | transitivePeerDependencies: |
|
| 2469 | + | - supports-color |
|
| 2470 | + | dev: true |
|
| 2471 | + | ||
| 2472 | + | /espree/9.4.1: |
|
| 2473 | + | resolution: {integrity: sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==} |
|
| 2474 | + | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} |
|
| 2475 | + | dependencies: |
|
| 2476 | + | acorn: 8.8.2 |
|
| 2477 | + | acorn-jsx: 5.3.2_acorn@8.8.2 |
|
| 2478 | + | eslint-visitor-keys: 3.3.0 |
|
| 2479 | + | dev: true |
|
| 2480 | + | ||
| 2481 | + | /esprima/4.0.1: |
|
| 2482 | + | resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} |
|
| 2483 | + | engines: {node: '>=4'} |
|
| 2484 | + | hasBin: true |
|
| 2485 | + | ||
| 2486 | + | /esquery/1.4.0: |
|
| 2487 | + | resolution: {integrity: sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==} |
|
| 2488 | + | engines: {node: '>=0.10'} |
|
| 2489 | + | dependencies: |
|
| 2490 | + | estraverse: 5.3.0 |
|
| 2491 | + | dev: true |
|
| 2492 | + | ||
| 2493 | + | /esrecurse/4.3.0: |
|
| 2494 | + | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} |
|
| 2495 | + | engines: {node: '>=4.0'} |
|
| 2496 | + | dependencies: |
|
| 2497 | + | estraverse: 5.3.0 |
|
| 2498 | + | dev: true |
|
| 2499 | + | ||
| 2500 | + | /estraverse/4.3.0: |
|
| 2501 | + | resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} |
|
| 2502 | + | engines: {node: '>=4.0'} |
|
| 2503 | + | dev: true |
|
| 2504 | + | ||
| 2505 | + | /estraverse/5.3.0: |
|
| 2506 | + | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} |
|
| 2507 | + | engines: {node: '>=4.0'} |
|
| 2508 | + | dev: true |
|
| 2509 | + | ||
| 2510 | + | /estree-util-attach-comments/2.1.1: |
|
| 2511 | + | resolution: {integrity: sha512-+5Ba/xGGS6mnwFbXIuQiDPTbuTxuMCooq3arVv7gPZtYpjp+VXH/NkHAP35OOefPhNG/UGqU3vt/LTABwcHX0w==} |
|
| 2512 | + | dependencies: |
|
| 2513 | + | '@types/estree': 1.0.0 |
|
| 2514 | + | dev: true |
|
| 2515 | + | ||
| 2516 | + | /estree-util-build-jsx/2.2.2: |
|
| 2517 | + | resolution: {integrity: sha512-m56vOXcOBuaF+Igpb9OPAy7f9w9OIkb5yhjsZuaPm7HoGi4oTOQi0h2+yZ+AtKklYFZ+rPC4n0wYCJCEU1ONqg==} |
|
| 2518 | + | dependencies: |
|
| 2519 | + | '@types/estree-jsx': 1.0.0 |
|
| 2520 | + | estree-util-is-identifier-name: 2.1.0 |
|
| 2521 | + | estree-walker: 3.0.3 |
|
| 2522 | + | dev: true |
|
| 2523 | + | ||
| 2524 | + | /estree-util-is-identifier-name/2.1.0: |
|
| 2525 | + | resolution: {integrity: sha512-bEN9VHRyXAUOjkKVQVvArFym08BTWB0aJPppZZr0UNyAqWsLaVfAqP7hbaTJjzHifmB5ebnR8Wm7r7yGN/HonQ==} |
|
| 2526 | + | dev: true |
|
| 2527 | + | ||
| 2528 | + | /estree-util-to-js/1.1.1: |
|
| 2529 | + | resolution: {integrity: sha512-tW/ADSJON4o+T8rSmSX1ZXdat4n6bVOu0iTUFY9ZFF2dD/1/Hug8Lc/HYuJRA4Mop9zDZHQMo1m4lIxxJHkTjQ==} |
|
| 2530 | + | dependencies: |
|
| 2531 | + | '@types/estree-jsx': 1.0.0 |
|
| 2532 | + | astring: 1.8.4 |
|
| 2533 | + | source-map: 0.7.4 |
|
| 2534 | + | dev: true |
|
| 2535 | + | ||
| 2536 | + | /estree-util-visit/1.2.1: |
|
| 2537 | + | resolution: {integrity: sha512-xbgqcrkIVbIG+lI/gzbvd9SGTJL4zqJKBFttUl5pP27KhAjtMKbX/mQXJ7qgyXpMgVy/zvpm0xoQQaGL8OloOw==} |
|
| 2538 | + | dependencies: |
|
| 2539 | + | '@types/estree-jsx': 1.0.0 |
|
| 2540 | + | '@types/unist': 2.0.6 |
|
| 2541 | + | dev: true |
|
| 2542 | + | ||
| 2543 | + | /estree-walker/2.0.2: |
|
| 2544 | + | resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} |
|
| 2545 | + | dev: true |
|
| 2546 | + | ||
| 2547 | + | /estree-walker/3.0.3: |
|
| 2548 | + | resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} |
|
| 2549 | + | dependencies: |
|
| 2550 | + | '@types/estree': 1.0.0 |
|
| 2551 | + | ||
| 2552 | + | /esutils/2.0.3: |
|
| 2553 | + | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} |
|
| 2554 | + | engines: {node: '>=0.10.0'} |
|
| 2555 | + | dev: true |
|
| 2556 | + | ||
| 2557 | + | /events/3.3.0: |
|
| 2558 | + | resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} |
|
| 2559 | + | engines: {node: '>=0.8.x'} |
|
| 2560 | + | ||
| 2561 | + | /execa/6.1.0: |
|
| 2562 | + | resolution: {integrity: sha512-QVWlX2e50heYJcCPG0iWtf8r0xjEYfz/OYLGDYH+IyjWezzPNxz63qNFOu0l4YftGWuizFVZHHs8PrLU5p2IDA==} |
|
| 2563 | + | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} |
|
| 2564 | + | dependencies: |
|
| 2565 | + | cross-spawn: 7.0.3 |
|
| 2566 | + | get-stream: 6.0.1 |
|
| 2567 | + | human-signals: 3.0.1 |
|
| 2568 | + | is-stream: 3.0.0 |
|
| 2569 | + | merge-stream: 2.0.0 |
|
| 2570 | + | npm-run-path: 5.1.0 |
|
| 2571 | + | onetime: 6.0.0 |
|
| 2572 | + | signal-exit: 3.0.7 |
|
| 2573 | + | strip-final-newline: 3.0.0 |
|
| 2574 | + | ||
| 2575 | + | /expand-template/2.0.3: |
|
| 2576 | + | resolution: {integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==} |
|
| 2577 | + | engines: {node: '>=6'} |
|
| 2578 | + | ||
| 2579 | + | /extend-shallow/2.0.1: |
|
| 2580 | + | resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==} |
|
| 2581 | + | engines: {node: '>=0.10.0'} |
|
| 2582 | + | dependencies: |
|
| 2583 | + | is-extendable: 0.1.1 |
|
| 2584 | + | ||
| 2585 | + | /extend/3.0.2: |
|
| 2586 | + | resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} |
|
| 2587 | + | ||
| 2588 | + | /fast-deep-equal/3.1.3: |
|
| 2589 | + | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} |
|
| 2590 | + | dev: true |
|
| 2591 | + | ||
| 2592 | + | /fast-diff/1.2.0: |
|
| 2593 | + | resolution: {integrity: sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==} |
|
| 2594 | + | dev: true |
|
| 2595 | + | ||
| 2596 | + | /fast-glob/3.2.12: |
|
| 2597 | + | resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==} |
|
| 2598 | + | engines: {node: '>=8.6.0'} |
|
| 2599 | + | dependencies: |
|
| 2600 | + | '@nodelib/fs.stat': 2.0.5 |
|
| 2601 | + | '@nodelib/fs.walk': 1.2.8 |
|
| 2602 | + | glob-parent: 5.1.2 |
|
| 2603 | + | merge2: 1.4.1 |
|
| 2604 | + | micromatch: 4.0.5 |
|
| 2605 | + | ||
| 2606 | + | /fast-json-stable-stringify/2.1.0: |
|
| 2607 | + | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} |
|
| 2608 | + | dev: true |
|
| 2609 | + | ||
| 2610 | + | /fast-levenshtein/2.0.6: |
|
| 2611 | + | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} |
|
| 2612 | + | dev: true |
|
| 2613 | + | ||
| 2614 | + | /fast-xml-parser/4.0.15: |
|
| 2615 | + | resolution: {integrity: sha512-bF4/E33/K/EZDHV23IJpSK2SU7rZTaSkDH5G85nXX8SKlQ9qBpWQhyPpm2nlTBewDJgtpd6+1x4TNpKmocmthQ==} |
|
| 2616 | + | hasBin: true |
|
| 2617 | + | dependencies: |
|
| 2618 | + | strnum: 1.0.5 |
|
| 2619 | + | dev: false |
|
| 2620 | + | ||
| 2621 | + | /fastest-levenshtein/1.0.16: |
|
| 2622 | + | resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==} |
|
| 2623 | + | engines: {node: '>= 4.9.1'} |
|
| 2624 | + | dev: true |
|
| 2625 | + | ||
| 2626 | + | /fastq/1.15.0: |
|
| 2627 | + | resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==} |
|
| 2628 | + | dependencies: |
|
| 2629 | + | reusify: 1.0.4 |
|
| 2630 | + | ||
| 2631 | + | /fault/2.0.1: |
|
| 2632 | + | resolution: {integrity: sha512-WtySTkS4OKev5JtpHXnib4Gxiurzh5NCGvWrFaZ34m6JehfTUhKZvn9njTfw48t6JumVQOmrKqpmGcdwxnhqBQ==} |
|
| 2633 | + | dependencies: |
|
| 2634 | + | format: 0.2.2 |
|
| 2635 | + | dev: true |
|
| 2636 | + | ||
| 2637 | + | /fflate/0.7.4: |
|
| 2638 | + | resolution: {integrity: sha512-5u2V/CDW15QM1XbbgS+0DfPxVB+jUKhWEKuuFuHncbk3tEEqzmoXL+2KyOFuKGqOnmdIy0/davWF1CkuwtibCw==} |
|
| 2639 | + | dev: false |
|
| 2640 | + | ||
| 2641 | + | /file-entry-cache/6.0.1: |
|
| 2642 | + | resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} |
|
| 2643 | + | engines: {node: ^10.12.0 || >=12.0.0} |
|
| 2644 | + | dependencies: |
|
| 2645 | + | flat-cache: 3.0.4 |
|
| 2646 | + | dev: true |
|
| 2647 | + | ||
| 2648 | + | /fill-range/7.0.1: |
|
| 2649 | + | resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} |
|
| 2650 | + | engines: {node: '>=8'} |
|
| 2651 | + | dependencies: |
|
| 2652 | + | to-regex-range: 5.0.1 |
|
| 2653 | + | ||
| 2654 | + | /find-up/4.1.0: |
|
| 2655 | + | resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} |
|
| 2656 | + | engines: {node: '>=8'} |
|
| 2657 | + | dependencies: |
|
| 2658 | + | locate-path: 5.0.0 |
|
| 2659 | + | path-exists: 4.0.0 |
|
| 2660 | + | ||
| 2661 | + | /find-up/5.0.0: |
|
| 2662 | + | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} |
|
| 2663 | + | engines: {node: '>=10'} |
|
| 2664 | + | dependencies: |
|
| 2665 | + | locate-path: 6.0.0 |
|
| 2666 | + | path-exists: 4.0.0 |
|
| 2667 | + | ||
| 2668 | + | /find-yarn-workspace-root2/1.2.16: |
|
| 2669 | + | resolution: {integrity: sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==} |
|
| 2670 | + | dependencies: |
|
| 2671 | + | micromatch: 4.0.5 |
|
| 2672 | + | pkg-dir: 4.2.0 |
|
| 2673 | + | ||
| 2674 | + | /flat-cache/3.0.4: |
|
| 2675 | + | resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==} |
|
| 2676 | + | engines: {node: ^10.12.0 || >=12.0.0} |
|
| 2677 | + | dependencies: |
|
| 2678 | + | flatted: 3.2.7 |
|
| 2679 | + | rimraf: 3.0.2 |
|
| 2680 | + | dev: true |
|
| 2681 | + | ||
| 2682 | + | /flatted/3.2.7: |
|
| 2683 | + | resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==} |
|
| 2684 | + | dev: true |
|
| 2685 | + | ||
| 2686 | + | /for-each/0.3.3: |
|
| 2687 | + | resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} |
|
| 2688 | + | dependencies: |
|
| 2689 | + | is-callable: 1.2.7 |
|
| 2690 | + | dev: true |
|
| 2691 | + | ||
| 2692 | + | /format/0.2.2: |
|
| 2693 | + | resolution: {integrity: sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==} |
|
| 2694 | + | engines: {node: '>=0.4.x'} |
|
| 2695 | + | dev: true |
|
| 2696 | + | ||
| 2697 | + | /fraction.js/4.2.0: |
|
| 2698 | + | resolution: {integrity: sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==} |
|
| 2699 | + | dev: true |
|
| 2700 | + | ||
| 2701 | + | /fs-constants/1.0.0: |
|
| 2702 | + | resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} |
|
| 2703 | + | ||
| 2704 | + | /fs.realpath/1.0.0: |
|
| 2705 | + | resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} |
|
| 2706 | + | dev: true |
|
| 2707 | + | ||
| 2708 | + | /fsevents/2.3.2: |
|
| 2709 | + | resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} |
|
| 2710 | + | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} |
|
| 2711 | + | os: [darwin] |
|
| 2712 | + | requiresBuild: true |
|
| 2713 | + | optional: true |
|
| 2714 | + | ||
| 2715 | + | /function-bind/1.1.1: |
|
| 2716 | + | resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} |
|
| 2717 | + | ||
| 2718 | + | /function.prototype.name/1.1.5: |
|
| 2719 | + | resolution: {integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==} |
|
| 2720 | + | engines: {node: '>= 0.4'} |
|
| 2721 | + | dependencies: |
|
| 2722 | + | call-bind: 1.0.2 |
|
| 2723 | + | define-properties: 1.1.4 |
|
| 2724 | + | es-abstract: 1.21.1 |
|
| 2725 | + | functions-have-names: 1.2.3 |
|
| 2726 | + | dev: true |
|
| 2727 | + | ||
| 2728 | + | /functions-have-names/1.2.3: |
|
| 2729 | + | resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} |
|
| 2730 | + | dev: true |
|
| 2731 | + | ||
| 2732 | + | /gensync/1.0.0-beta.2: |
|
| 2733 | + | resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} |
|
| 2734 | + | engines: {node: '>=6.9.0'} |
|
| 2735 | + | ||
| 2736 | + | /get-intrinsic/1.2.0: |
|
| 2737 | + | resolution: {integrity: sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==} |
|
| 2738 | + | dependencies: |
|
| 2739 | + | function-bind: 1.1.1 |
|
| 2740 | + | has: 1.0.3 |
|
| 2741 | + | has-symbols: 1.0.3 |
|
| 2742 | + | dev: true |
|
| 2743 | + | ||
| 2744 | + | /get-stream/6.0.1: |
|
| 2745 | + | resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} |
|
| 2746 | + | engines: {node: '>=10'} |
|
| 2747 | + | ||
| 2748 | + | /get-symbol-description/1.0.0: |
|
| 2749 | + | resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} |
|
| 2750 | + | engines: {node: '>= 0.4'} |
|
| 2751 | + | dependencies: |
|
| 2752 | + | call-bind: 1.0.2 |
|
| 2753 | + | get-intrinsic: 1.2.0 |
|
| 2754 | + | dev: true |
|
| 2755 | + | ||
| 2756 | + | /get-tsconfig/4.3.0: |
|
| 2757 | + | resolution: {integrity: sha512-YCcF28IqSay3fqpIu5y3Krg/utCBHBeoflkZyHj/QcqI2nrLPC3ZegS9CmIo+hJb8K7aiGsuUl7PwWVjNG2HQQ==} |
|
| 2758 | + | dev: true |
|
| 2759 | + | ||
| 2760 | + | /github-from-package/0.0.0: |
|
| 2761 | + | resolution: {integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==} |
|
| 2762 | + | ||
| 2763 | + | /github-slugger/1.5.0: |
|
| 2764 | + | resolution: {integrity: sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw==} |
|
| 2765 | + | ||
| 2766 | + | /github-slugger/2.0.0: |
|
| 2767 | + | resolution: {integrity: sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==} |
|
| 2768 | + | ||
| 2769 | + | /glob-parent/5.1.2: |
|
| 2770 | + | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} |
|
| 2771 | + | engines: {node: '>= 6'} |
|
| 2772 | + | dependencies: |
|
| 2773 | + | is-glob: 4.0.3 |
|
| 2774 | + | ||
| 2775 | + | /glob-parent/6.0.2: |
|
| 2776 | + | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} |
|
| 2777 | + | engines: {node: '>=10.13.0'} |
|
| 2778 | + | dependencies: |
|
| 2779 | + | is-glob: 4.0.3 |
|
| 2780 | + | dev: true |
|
| 2781 | + | ||
| 2782 | + | /glob/7.2.3: |
|
| 2783 | + | resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} |
|
| 2784 | + | dependencies: |
|
| 2785 | + | fs.realpath: 1.0.0 |
|
| 2786 | + | inflight: 1.0.6 |
|
| 2787 | + | inherits: 2.0.4 |
|
| 2788 | + | minimatch: 3.1.2 |
|
| 2789 | + | once: 1.4.0 |
|
| 2790 | + | path-is-absolute: 1.0.1 |
|
| 2791 | + | dev: true |
|
| 2792 | + | ||
| 2793 | + | /global-modules/2.0.0: |
|
| 2794 | + | resolution: {integrity: sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==} |
|
| 2795 | + | engines: {node: '>=6'} |
|
| 2796 | + | dependencies: |
|
| 2797 | + | global-prefix: 3.0.0 |
|
| 2798 | + | dev: true |
|
| 2799 | + | ||
| 2800 | + | /global-prefix/3.0.0: |
|
| 2801 | + | resolution: {integrity: sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==} |
|
| 2802 | + | engines: {node: '>=6'} |
|
| 2803 | + | dependencies: |
|
| 2804 | + | ini: 1.3.8 |
|
| 2805 | + | kind-of: 6.0.3 |
|
| 2806 | + | which: 1.3.1 |
|
| 2807 | + | dev: true |
|
| 2808 | + | ||
| 2809 | + | /globals/11.12.0: |
|
| 2810 | + | resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} |
|
| 2811 | + | engines: {node: '>=4'} |
|
| 2812 | + | ||
| 2813 | + | /globals/13.19.0: |
|
| 2814 | + | resolution: {integrity: sha512-dkQ957uSRWHw7CFXLUtUHQI3g3aWApYhfNR2O6jn/907riyTYKVBmxYVROkBcY614FSSeSJh7Xm7SrUWCxvJMQ==} |
|
| 2815 | + | engines: {node: '>=8'} |
|
| 2816 | + | dependencies: |
|
| 2817 | + | type-fest: 0.20.2 |
|
| 2818 | + | dev: true |
|
| 2819 | + | ||
| 2820 | + | /globalthis/1.0.3: |
|
| 2821 | + | resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} |
|
| 2822 | + | engines: {node: '>= 0.4'} |
|
| 2823 | + | dependencies: |
|
| 2824 | + | define-properties: 1.1.4 |
|
| 2825 | + | dev: true |
|
| 2826 | + | ||
| 2827 | + | /globalyzer/0.1.0: |
|
| 2828 | + | resolution: {integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==} |
|
| 2829 | + | ||
| 2830 | + | /globby/11.1.0: |
|
| 2831 | + | resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} |
|
| 2832 | + | engines: {node: '>=10'} |
|
| 2833 | + | dependencies: |
|
| 2834 | + | array-union: 2.1.0 |
|
| 2835 | + | dir-glob: 3.0.1 |
|
| 2836 | + | fast-glob: 3.2.12 |
|
| 2837 | + | ignore: 5.2.4 |
|
| 2838 | + | merge2: 1.4.1 |
|
| 2839 | + | slash: 3.0.0 |
|
| 2840 | + | dev: true |
|
| 2841 | + | ||
| 2842 | + | /globby/13.1.3: |
|
| 2843 | + | resolution: {integrity: sha512-8krCNHXvlCgHDpegPzleMq07yMYTO2sXKASmZmquEYWEmCx6J5UTRbp5RwMJkTJGtcQ44YpiUYUiN0b9mzy8Bw==} |
|
| 2844 | + | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} |
|
| 2845 | + | dependencies: |
|
| 2846 | + | dir-glob: 3.0.1 |
|
| 2847 | + | fast-glob: 3.2.12 |
|
| 2848 | + | ignore: 5.2.4 |
|
| 2849 | + | merge2: 1.4.1 |
|
| 2850 | + | slash: 4.0.0 |
|
| 2851 | + | dev: true |
|
| 2852 | + | ||
| 2853 | + | /globjoin/0.1.4: |
|
| 2854 | + | resolution: {integrity: sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg==} |
|
| 2855 | + | dev: true |
|
| 2856 | + | ||
| 2857 | + | /globrex/0.1.2: |
|
| 2858 | + | resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==} |
|
| 2859 | + | ||
| 2860 | + | /gopd/1.0.1: |
|
| 2861 | + | resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} |
|
| 2862 | + | dependencies: |
|
| 2863 | + | get-intrinsic: 1.2.0 |
|
| 2864 | + | dev: true |
|
| 2865 | + | ||
| 2866 | + | /graceful-fs/4.2.10: |
|
| 2867 | + | resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==} |
|
| 2868 | + | ||
| 2869 | + | /grapheme-splitter/1.0.4: |
|
| 2870 | + | resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==} |
|
| 2871 | + | dev: true |
|
| 2872 | + | ||
| 2873 | + | /gray-matter/4.0.3: |
|
| 2874 | + | resolution: {integrity: sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==} |
|
| 2875 | + | engines: {node: '>=6.0'} |
|
| 2876 | + | dependencies: |
|
| 2877 | + | js-yaml: 3.14.1 |
|
| 2878 | + | kind-of: 6.0.3 |
|
| 2879 | + | section-matter: 1.0.0 |
|
| 2880 | + | strip-bom-string: 1.0.0 |
|
| 2881 | + | ||
| 2882 | + | /hard-rejection/2.1.0: |
|
| 2883 | + | resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==} |
|
| 2884 | + | engines: {node: '>=6'} |
|
| 2885 | + | dev: true |
|
| 2886 | + | ||
| 2887 | + | /has-bigints/1.0.2: |
|
| 2888 | + | resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} |
|
| 2889 | + | dev: true |
|
| 2890 | + | ||
| 2891 | + | /has-flag/3.0.0: |
|
| 2892 | + | resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} |
|
| 2893 | + | engines: {node: '>=4'} |
|
| 2894 | + | ||
| 2895 | + | /has-flag/4.0.0: |
|
| 2896 | + | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} |
|
| 2897 | + | engines: {node: '>=8'} |
|
| 2898 | + | ||
| 2899 | + | /has-package-exports/1.3.0: |
|
| 2900 | + | resolution: {integrity: sha512-e9OeXPQnmPhYoJ63lXC4wWe34TxEGZDZ3OQX9XRqp2VwsfLl3bQBy7VehLnd34g3ef8CmYlBLGqEMKXuz8YazQ==} |
|
| 2901 | + | dependencies: |
|
| 2902 | + | '@ljharb/has-package-exports-patterns': 0.0.2 |
|
| 2903 | + | ||
| 2904 | + | /has-property-descriptors/1.0.0: |
|
| 2905 | + | resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==} |
|
| 2906 | + | dependencies: |
|
| 2907 | + | get-intrinsic: 1.2.0 |
|
| 2908 | + | dev: true |
|
| 2909 | + | ||
| 2910 | + | /has-proto/1.0.1: |
|
| 2911 | + | resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==} |
|
| 2912 | + | engines: {node: '>= 0.4'} |
|
| 2913 | + | dev: true |
|
| 2914 | + | ||
| 2915 | + | /has-symbols/1.0.3: |
|
| 2916 | + | resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} |
|
| 2917 | + | engines: {node: '>= 0.4'} |
|
| 2918 | + | dev: true |
|
| 2919 | + | ||
| 2920 | + | /has-tostringtag/1.0.0: |
|
| 2921 | + | resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==} |
|
| 2922 | + | engines: {node: '>= 0.4'} |
|
| 2923 | + | dependencies: |
|
| 2924 | + | has-symbols: 1.0.3 |
|
| 2925 | + | dev: true |
|
| 2926 | + | ||
| 2927 | + | /has/1.0.3: |
|
| 2928 | + | resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==} |
|
| 2929 | + | engines: {node: '>= 0.4.0'} |
|
| 2930 | + | dependencies: |
|
| 2931 | + | function-bind: 1.1.1 |
|
| 2932 | + | ||
| 2933 | + | /hast-util-from-parse5/7.1.1: |
|
| 2934 | + | resolution: {integrity: sha512-R6PoNcUs89ZxLJmMWsVbwSWuz95/9OriyQZ3e2ybwqGsRXzhA6gv49rgGmQvLbZuSNDv9fCg7vV7gXUsvtUFaA==} |
|
| 2935 | + | dependencies: |
|
| 2936 | + | '@types/hast': 2.3.4 |
|
| 2937 | + | '@types/unist': 2.0.6 |
|
| 2938 | + | hastscript: 7.2.0 |
|
| 2939 | + | property-information: 6.2.0 |
|
| 2940 | + | vfile: 5.3.6 |
|
| 2941 | + | vfile-location: 4.0.1 |
|
| 2942 | + | web-namespaces: 2.0.1 |
|
| 2943 | + | ||
| 2944 | + | /hast-util-parse-selector/3.1.1: |
|
| 2945 | + | resolution: {integrity: sha512-jdlwBjEexy1oGz0aJ2f4GKMaVKkA9jwjr4MjAAI22E5fM/TXVZHuS5OpONtdeIkRKqAaryQ2E9xNQxijoThSZA==} |
|
| 2946 | + | dependencies: |
|
| 2947 | + | '@types/hast': 2.3.4 |
|
| 2948 | + | ||
| 2949 | + | /hast-util-raw/7.2.3: |
|
| 2950 | + | resolution: {integrity: sha512-RujVQfVsOrxzPOPSzZFiwofMArbQke6DJjnFfceiEbFh7S05CbPt0cYN+A5YeD3pso0JQk6O1aHBnx9+Pm2uqg==} |
|
| 2951 | + | dependencies: |
|
| 2952 | + | '@types/hast': 2.3.4 |
|
| 2953 | + | '@types/parse5': 6.0.3 |
|
| 2954 | + | hast-util-from-parse5: 7.1.1 |
|
| 2955 | + | hast-util-to-parse5: 7.1.0 |
|
| 2956 | + | html-void-elements: 2.0.1 |
|
| 2957 | + | parse5: 6.0.1 |
|
| 2958 | + | unist-util-position: 4.0.4 |
|
| 2959 | + | unist-util-visit: 4.1.2 |
|
| 2960 | + | vfile: 5.3.6 |
|
| 2961 | + | web-namespaces: 2.0.1 |
|
| 2962 | + | zwitch: 2.0.4 |
|
| 2963 | + | ||
| 2964 | + | /hast-util-to-estree/2.2.1: |
|
| 2965 | + | resolution: {integrity: sha512-kiGD9WIW3gRKK8Gao3n1f+ahUeTMeJUJILnIT2QNrPigDNdH7rJxzhEbh81UajGeAdAHFecT1a+fLVOCTq9B4Q==} |
|
| 2966 | + | dependencies: |
|
| 2967 | + | '@types/estree': 1.0.0 |
|
| 2968 | + | '@types/estree-jsx': 1.0.0 |
|
| 2969 | + | '@types/hast': 2.3.4 |
|
| 2970 | + | '@types/unist': 2.0.6 |
|
| 2971 | + | comma-separated-tokens: 2.0.3 |
|
| 2972 | + | estree-util-attach-comments: 2.1.1 |
|
| 2973 | + | estree-util-is-identifier-name: 2.1.0 |
|
| 2974 | + | hast-util-whitespace: 2.0.1 |
|
| 2975 | + | mdast-util-mdx-expression: 1.3.1 |
|
| 2976 | + | mdast-util-mdxjs-esm: 1.3.0 |
|
| 2977 | + | property-information: 6.2.0 |
|
| 2978 | + | space-separated-tokens: 2.0.2 |
|
| 2979 | + | style-to-object: 0.4.1 |
|
| 2980 | + | unist-util-position: 4.0.4 |
|
| 2981 | + | zwitch: 2.0.4 |
|
| 2982 | + | transitivePeerDependencies: |
|
| 2983 | + | - supports-color |
|
| 2984 | + | dev: true |
|
| 2985 | + | ||
| 2986 | + | /hast-util-to-html/8.0.4: |
|
| 2987 | + | resolution: {integrity: sha512-4tpQTUOr9BMjtYyNlt0P50mH7xj0Ks2xpo8M943Vykljf99HW6EzulIoJP1N3eKOSScEHzyzi9dm7/cn0RfGwA==} |
|
| 2988 | + | dependencies: |
|
| 2989 | + | '@types/hast': 2.3.4 |
|
| 2990 | + | '@types/unist': 2.0.6 |
|
| 2991 | + | ccount: 2.0.1 |
|
| 2992 | + | comma-separated-tokens: 2.0.3 |
|
| 2993 | + | hast-util-raw: 7.2.3 |
|
| 2994 | + | hast-util-whitespace: 2.0.1 |
|
| 2995 | + | html-void-elements: 2.0.1 |
|
| 2996 | + | property-information: 6.2.0 |
|
| 2997 | + | space-separated-tokens: 2.0.2 |
|
| 2998 | + | stringify-entities: 4.0.3 |
|
| 2999 | + | zwitch: 2.0.4 |
|
| 3000 | + | ||
| 3001 | + | /hast-util-to-parse5/7.1.0: |
|
| 3002 | + | resolution: {integrity: sha512-YNRgAJkH2Jky5ySkIqFXTQiaqcAtJyVE+D5lkN6CdtOqrnkLfGYYrEcKuHOJZlp+MwjSwuD3fZuawI+sic/RBw==} |
|
| 3003 | + | dependencies: |
|
| 3004 | + | '@types/hast': 2.3.4 |
|
| 3005 | + | comma-separated-tokens: 2.0.3 |
|
| 3006 | + | property-information: 6.2.0 |
|
| 3007 | + | space-separated-tokens: 2.0.2 |
|
| 3008 | + | web-namespaces: 2.0.1 |
|
| 3009 | + | zwitch: 2.0.4 |
|
| 3010 | + | ||
| 3011 | + | /hast-util-whitespace/2.0.1: |
|
| 3012 | + | resolution: {integrity: sha512-nAxA0v8+vXSBDt3AnRUNjyRIQ0rD+ntpbAp4LnPkumc5M9yUbSMa4XDU9Q6etY4f1Wp4bNgvc1yjiZtsTTrSng==} |
|
| 3013 | + | ||
| 3014 | + | /hastscript/7.2.0: |
|
| 3015 | + | resolution: {integrity: sha512-TtYPq24IldU8iKoJQqvZOuhi5CyCQRAbvDOX0x1eW6rsHSxa/1i2CCiptNTotGHJ3VoHRGmqiv6/D3q113ikkw==} |
|
| 3016 | + | dependencies: |
|
| 3017 | + | '@types/hast': 2.3.4 |
|
| 3018 | + | comma-separated-tokens: 2.0.3 |
|
| 3019 | + | hast-util-parse-selector: 3.1.1 |
|
| 3020 | + | property-information: 6.2.0 |
|
| 3021 | + | space-separated-tokens: 2.0.2 |
|
| 3022 | + | ||
| 3023 | + | /hosted-git-info/2.8.9: |
|
| 3024 | + | resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} |
|
| 3025 | + | dev: true |
|
| 3026 | + | ||
| 3027 | + | /hosted-git-info/4.1.0: |
|
| 3028 | + | resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==} |
|
| 3029 | + | engines: {node: '>=10'} |
|
| 3030 | + | dependencies: |
|
| 3031 | + | lru-cache: 6.0.0 |
|
| 3032 | + | dev: true |
|
| 3033 | + | ||
| 3034 | + | /html-escaper/3.0.3: |
|
| 3035 | + | resolution: {integrity: sha512-RuMffC89BOWQoY0WKGpIhn5gX3iI54O6nRA0yC124NYVtzjmFWBIiFd8M0x+ZdX0P9R4lADg1mgP8C7PxGOWuQ==} |
|
| 3036 | + | ||
| 3037 | + | /html-tags/3.2.0: |
|
| 3038 | + | resolution: {integrity: sha512-vy7ClnArOZwCnqZgvv+ddgHgJiAFXe3Ge9ML5/mBctVJoUoYPCdxVucOywjDARn6CVoh3dRSFdPHy2sX80L0Wg==} |
|
| 3039 | + | engines: {node: '>=8'} |
|
| 3040 | + | dev: true |
|
| 3041 | + | ||
| 3042 | + | /html-void-elements/2.0.1: |
|
| 3043 | + | resolution: {integrity: sha512-0quDb7s97CfemeJAnW9wC0hw78MtW7NU3hqtCD75g2vFlDLt36llsYD7uB7SUzojLMP24N5IatXf7ylGXiGG9A==} |
|
| 3044 | + | ||
| 3045 | + | /htmlparser2/8.0.1: |
|
| 3046 | + | resolution: {integrity: sha512-4lVbmc1diZC7GUJQtRQ5yBAeUCL1exyMwmForWkRLnwyzWBFxN633SALPMGYaWZvKe9j1pRZJpauvmxENSp/EA==} |
|
| 3047 | + | dependencies: |
|
| 3048 | + | domelementtype: 2.3.0 |
|
| 3049 | + | domhandler: 5.0.3 |
|
| 3050 | + | domutils: 3.0.1 |
|
| 3051 | + | entities: 4.4.0 |
|
| 3052 | + | dev: true |
|
| 3053 | + | ||
| 3054 | + | /http-cache-semantics/4.1.1: |
|
| 3055 | + | resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==} |
|
| 3056 | + | dev: true |
|
| 3057 | + | ||
| 3058 | + | /human-signals/3.0.1: |
|
| 3059 | + | resolution: {integrity: sha512-rQLskxnM/5OCldHo+wNXbpVgDn5A17CUoKX+7Sokwaknlq7CdSnphy0W39GU8dw59XiCXmFXDg4fRuckQRKewQ==} |
|
| 3060 | + | engines: {node: '>=12.20.0'} |
|
| 3061 | + | ||
| 3062 | + | /ieee754/1.2.1: |
|
| 3063 | + | resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} |
|
| 3064 | + | ||
| 3065 | + | /ignore/5.2.4: |
|
| 3066 | + | resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==} |
|
| 3067 | + | engines: {node: '>= 4'} |
|
| 3068 | + | dev: true |
|
| 3069 | + | ||
| 3070 | + | /image-size/1.0.2: |
|
| 3071 | + | resolution: {integrity: sha512-xfOoWjceHntRb3qFCrh5ZFORYH8XCdYpASltMhZ/Q0KZiOwjdE/Yl2QCiWdwD+lygV5bMCvauzgu5PxBX/Yerg==} |
|
| 3072 | + | engines: {node: '>=14.0.0'} |
|
| 3073 | + | hasBin: true |
|
| 3074 | + | dependencies: |
|
| 3075 | + | queue: 6.0.2 |
|
| 3076 | + | dev: true |
|
| 3077 | + | ||
| 3078 | + | /import-fresh/3.3.0: |
|
| 3079 | + | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} |
|
| 3080 | + | engines: {node: '>=6'} |
|
| 3081 | + | dependencies: |
|
| 3082 | + | parent-module: 1.0.1 |
|
| 3083 | + | resolve-from: 4.0.0 |
|
| 3084 | + | dev: true |
|
| 3085 | + | ||
| 3086 | + | /import-lazy/4.0.0: |
|
| 3087 | + | resolution: {integrity: sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==} |
|
| 3088 | + | engines: {node: '>=8'} |
|
| 3089 | + | dev: true |
|
| 3090 | + | ||
| 3091 | + | /import-meta-resolve/2.2.1: |
|
| 3092 | + | resolution: {integrity: sha512-C6lLL7EJPY44kBvA80gq4uMsVFw5x3oSKfuMl1cuZ2RkI5+UJqQXgn+6hlUew0y4ig7Ypt4CObAAIzU53Nfpuw==} |
|
| 3093 | + | ||
| 3094 | + | /imurmurhash/0.1.4: |
|
| 3095 | + | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} |
|
| 3096 | + | engines: {node: '>=0.8.19'} |
|
| 3097 | + | dev: true |
|
| 3098 | + | ||
| 3099 | + | /indent-string/4.0.0: |
|
| 3100 | + | resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} |
|
| 3101 | + | engines: {node: '>=8'} |
|
| 3102 | + | dev: true |
|
| 3103 | + | ||
| 3104 | + | /inflight/1.0.6: |
|
| 3105 | + | resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} |
|
| 3106 | + | dependencies: |
|
| 3107 | + | once: 1.4.0 |
|
| 3108 | + | wrappy: 1.0.2 |
|
| 3109 | + | dev: true |
|
| 3110 | + | ||
| 3111 | + | /inherits/2.0.4: |
|
| 3112 | + | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} |
|
| 3113 | + | ||
| 3114 | + | /ini/1.3.8: |
|
| 3115 | + | resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} |
|
| 3116 | + | ||
| 3117 | + | /inline-style-parser/0.1.1: |
|
| 3118 | + | resolution: {integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==} |
|
| 3119 | + | dev: true |
|
| 3120 | + | ||
| 3121 | + | /internal-slot/1.0.4: |
|
| 3122 | + | resolution: {integrity: sha512-tA8URYccNzMo94s5MQZgH8NB/XTa6HsOo0MLfXTKKEnHVVdegzaQoFZ7Jp44bdvLvY2waT5dc+j5ICEswhi7UQ==} |
|
| 3123 | + | engines: {node: '>= 0.4'} |
|
| 3124 | + | dependencies: |
|
| 3125 | + | get-intrinsic: 1.2.0 |
|
| 3126 | + | has: 1.0.3 |
|
| 3127 | + | side-channel: 1.0.4 |
|
| 3128 | + | dev: true |
|
| 3129 | + | ||
| 3130 | + | /is-alphabetical/2.0.1: |
|
| 3131 | + | resolution: {integrity: sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==} |
|
| 3132 | + | dev: true |
|
| 3133 | + | ||
| 3134 | + | /is-alphanumerical/2.0.1: |
|
| 3135 | + | resolution: {integrity: sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==} |
|
| 3136 | + | dependencies: |
|
| 3137 | + | is-alphabetical: 2.0.1 |
|
| 3138 | + | is-decimal: 2.0.1 |
|
| 3139 | + | dev: true |
|
| 3140 | + | ||
| 3141 | + | /is-arguments/1.1.1: |
|
| 3142 | + | resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==} |
|
| 3143 | + | engines: {node: '>= 0.4'} |
|
| 3144 | + | dependencies: |
|
| 3145 | + | call-bind: 1.0.2 |
|
| 3146 | + | has-tostringtag: 1.0.0 |
|
| 3147 | + | dev: true |
|
| 3148 | + | ||
| 3149 | + | /is-array-buffer/3.0.1: |
|
| 3150 | + | resolution: {integrity: sha512-ASfLknmY8Xa2XtB4wmbz13Wu202baeA18cJBCeCy0wXUHZF0IPyVEXqKEcd+t2fNSLLL1vC6k7lxZEojNbISXQ==} |
|
| 3151 | + | dependencies: |
|
| 3152 | + | call-bind: 1.0.2 |
|
| 3153 | + | get-intrinsic: 1.2.0 |
|
| 3154 | + | is-typed-array: 1.1.10 |
|
| 3155 | + | dev: true |
|
| 3156 | + | ||
| 3157 | + | /is-arrayish/0.2.1: |
|
| 3158 | + | resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} |
|
| 3159 | + | dev: true |
|
| 3160 | + | ||
| 3161 | + | /is-arrayish/0.3.2: |
|
| 3162 | + | resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==} |
|
| 3163 | + | ||
| 3164 | + | /is-bigint/1.0.4: |
|
| 3165 | + | resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} |
|
| 3166 | + | dependencies: |
|
| 3167 | + | has-bigints: 1.0.2 |
|
| 3168 | + | dev: true |
|
| 3169 | + | ||
| 3170 | + | /is-binary-path/2.1.0: |
|
| 3171 | + | resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} |
|
| 3172 | + | engines: {node: '>=8'} |
|
| 3173 | + | dependencies: |
|
| 3174 | + | binary-extensions: 2.2.0 |
|
| 3175 | + | dev: true |
|
| 3176 | + | ||
| 3177 | + | /is-boolean-object/1.1.2: |
|
| 3178 | + | resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} |
|
| 3179 | + | engines: {node: '>= 0.4'} |
|
| 3180 | + | dependencies: |
|
| 3181 | + | call-bind: 1.0.2 |
|
| 3182 | + | has-tostringtag: 1.0.0 |
|
| 3183 | + | dev: true |
|
| 3184 | + | ||
| 3185 | + | /is-buffer/2.0.5: |
|
| 3186 | + | resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==} |
|
| 3187 | + | engines: {node: '>=4'} |
|
| 3188 | + | ||
| 3189 | + | /is-callable/1.2.7: |
|
| 3190 | + | resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} |
|
| 3191 | + | engines: {node: '>= 0.4'} |
|
| 3192 | + | dev: true |
|
| 3193 | + | ||
| 3194 | + | /is-core-module/2.11.0: |
|
| 3195 | + | resolution: {integrity: sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==} |
|
| 3196 | + | dependencies: |
|
| 3197 | + | has: 1.0.3 |
|
| 3198 | + | ||
| 3199 | + | /is-date-object/1.0.5: |
|
| 3200 | + | resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} |
|
| 3201 | + | engines: {node: '>= 0.4'} |
|
| 3202 | + | dependencies: |
|
| 3203 | + | has-tostringtag: 1.0.0 |
|
| 3204 | + | dev: true |
|
| 3205 | + | ||
| 3206 | + | /is-decimal/2.0.1: |
|
| 3207 | + | resolution: {integrity: sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==} |
|
| 3208 | + | dev: true |
|
| 3209 | + | ||
| 3210 | + | /is-docker/2.2.1: |
|
| 3211 | + | resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} |
|
| 3212 | + | engines: {node: '>=8'} |
|
| 3213 | + | hasBin: true |
|
| 3214 | + | ||
| 3215 | + | /is-docker/3.0.0: |
|
| 3216 | + | resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==} |
|
| 3217 | + | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} |
|
| 3218 | + | hasBin: true |
|
| 3219 | + | ||
| 3220 | + | /is-extendable/0.1.1: |
|
| 3221 | + | resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==} |
|
| 3222 | + | engines: {node: '>=0.10.0'} |
|
| 3223 | + | ||
| 3224 | + | /is-extglob/2.1.1: |
|
| 3225 | + | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} |
|
| 3226 | + | engines: {node: '>=0.10.0'} |
|
| 3227 | + | ||
| 3228 | + | /is-fullwidth-code-point/3.0.0: |
|
| 3229 | + | resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} |
|
| 3230 | + | engines: {node: '>=8'} |
|
| 3231 | + | ||
| 3232 | + | /is-glob/4.0.3: |
|
| 3233 | + | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} |
|
| 3234 | + | engines: {node: '>=0.10.0'} |
|
| 3235 | + | dependencies: |
|
| 3236 | + | is-extglob: 2.1.1 |
|
| 3237 | + | ||
| 3238 | + | /is-hexadecimal/2.0.1: |
|
| 3239 | + | resolution: {integrity: sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==} |
|
| 3240 | + | dev: true |
|
| 3241 | + | ||
| 3242 | + | /is-interactive/2.0.0: |
|
| 3243 | + | resolution: {integrity: sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==} |
|
| 3244 | + | engines: {node: '>=12'} |
|
| 3245 | + | ||
| 3246 | + | /is-map/2.0.2: |
|
| 3247 | + | resolution: {integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==} |
|
| 3248 | + | dev: true |
|
| 3249 | + | ||
| 3250 | + | /is-negative-zero/2.0.2: |
|
| 3251 | + | resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==} |
|
| 3252 | + | engines: {node: '>= 0.4'} |
|
| 3253 | + | dev: true |
|
| 3254 | + | ||
| 3255 | + | /is-number-object/1.0.7: |
|
| 3256 | + | resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} |
|
| 3257 | + | engines: {node: '>= 0.4'} |
|
| 3258 | + | dependencies: |
|
| 3259 | + | has-tostringtag: 1.0.0 |
|
| 3260 | + | dev: true |
|
| 3261 | + | ||
| 3262 | + | /is-number/7.0.0: |
|
| 3263 | + | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} |
|
| 3264 | + | engines: {node: '>=0.12.0'} |
|
| 3265 | + | ||
| 3266 | + | /is-path-inside/3.0.3: |
|
| 3267 | + | resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} |
|
| 3268 | + | engines: {node: '>=8'} |
|
| 3269 | + | dev: true |
|
| 3270 | + | ||
| 3271 | + | /is-plain-obj/1.1.0: |
|
| 3272 | + | resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==} |
|
| 3273 | + | engines: {node: '>=0.10.0'} |
|
| 3274 | + | dev: true |
|
| 3275 | + | ||
| 3276 | + | /is-plain-obj/4.1.0: |
|
| 3277 | + | resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==} |
|
| 3278 | + | engines: {node: '>=12'} |
|
| 3279 | + | ||
| 3280 | + | /is-plain-object/5.0.0: |
|
| 3281 | + | resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==} |
|
| 3282 | + | engines: {node: '>=0.10.0'} |
|
| 3283 | + | dev: true |
|
| 3284 | + | ||
| 3285 | + | /is-reference/3.0.1: |
|
| 3286 | + | resolution: {integrity: sha512-baJJdQLiYaJdvFbJqXrcGv3WU3QCzBlUcI5QhbesIm6/xPsvmO+2CDoi/GMOFBQEQm+PXkwOPrp9KK5ozZsp2w==} |
|
| 3287 | + | dependencies: |
|
| 3288 | + | '@types/estree': 1.0.0 |
|
| 3289 | + | dev: true |
|
| 3290 | + | ||
| 3291 | + | /is-regex/1.1.4: |
|
| 3292 | + | resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} |
|
| 3293 | + | engines: {node: '>= 0.4'} |
|
| 3294 | + | dependencies: |
|
| 3295 | + | call-bind: 1.0.2 |
|
| 3296 | + | has-tostringtag: 1.0.0 |
|
| 3297 | + | dev: true |
|
| 3298 | + | ||
| 3299 | + | /is-set/2.0.2: |
|
| 3300 | + | resolution: {integrity: sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==} |
|
| 3301 | + | dev: true |
|
| 3302 | + | ||
| 3303 | + | /is-shared-array-buffer/1.0.2: |
|
| 3304 | + | resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==} |
|
| 3305 | + | dependencies: |
|
| 3306 | + | call-bind: 1.0.2 |
|
| 3307 | + | dev: true |
|
| 3308 | + | ||
| 3309 | + | /is-stream/3.0.0: |
|
| 3310 | + | resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} |
|
| 3311 | + | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} |
|
| 3312 | + | ||
| 3313 | + | /is-string/1.0.7: |
|
| 3314 | + | resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} |
|
| 3315 | + | engines: {node: '>= 0.4'} |
|
| 3316 | + | dependencies: |
|
| 3317 | + | has-tostringtag: 1.0.0 |
|
| 3318 | + | dev: true |
|
| 3319 | + | ||
| 3320 | + | /is-symbol/1.0.4: |
|
| 3321 | + | resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} |
|
| 3322 | + | engines: {node: '>= 0.4'} |
|
| 3323 | + | dependencies: |
|
| 3324 | + | has-symbols: 1.0.3 |
|
| 3325 | + | dev: true |
|
| 3326 | + | ||
| 3327 | + | /is-typed-array/1.1.10: |
|
| 3328 | + | resolution: {integrity: sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==} |
|
| 3329 | + | engines: {node: '>= 0.4'} |
|
| 3330 | + | dependencies: |
|
| 3331 | + | available-typed-arrays: 1.0.5 |
|
| 3332 | + | call-bind: 1.0.2 |
|
| 3333 | + | for-each: 0.3.3 |
|
| 3334 | + | gopd: 1.0.1 |
|
| 3335 | + | has-tostringtag: 1.0.0 |
|
| 3336 | + | dev: true |
|
| 3337 | + | ||
| 3338 | + | /is-unicode-supported/1.3.0: |
|
| 3339 | + | resolution: {integrity: sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==} |
|
| 3340 | + | engines: {node: '>=12'} |
|
| 3341 | + | ||
| 3342 | + | /is-weakmap/2.0.1: |
|
| 3343 | + | resolution: {integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==} |
|
| 3344 | + | dev: true |
|
| 3345 | + | ||
| 3346 | + | /is-weakref/1.0.2: |
|
| 3347 | + | resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} |
|
| 3348 | + | dependencies: |
|
| 3349 | + | call-bind: 1.0.2 |
|
| 3350 | + | dev: true |
|
| 3351 | + | ||
| 3352 | + | /is-weakset/2.0.2: |
|
| 3353 | + | resolution: {integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==} |
|
| 3354 | + | dependencies: |
|
| 3355 | + | call-bind: 1.0.2 |
|
| 3356 | + | get-intrinsic: 1.2.0 |
|
| 3357 | + | dev: true |
|
| 3358 | + | ||
| 3359 | + | /is-wsl/2.2.0: |
|
| 3360 | + | resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} |
|
| 3361 | + | engines: {node: '>=8'} |
|
| 3362 | + | dependencies: |
|
| 3363 | + | is-docker: 2.2.1 |
|
| 3364 | + | ||
| 3365 | + | /isarray/2.0.5: |
|
| 3366 | + | resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} |
|
| 3367 | + | dev: true |
|
| 3368 | + | ||
| 3369 | + | /isexe/2.0.0: |
|
| 3370 | + | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} |
|
| 3371 | + | ||
| 3372 | + | /js-sdsl/4.3.0: |
|
| 3373 | + | resolution: {integrity: sha512-mifzlm2+5nZ+lEcLJMoBK0/IH/bDg8XnJfd/Wq6IP+xoCjLZsTOnV2QpxlVbX9bMnkl5PdEjNtBJ9Cj1NjifhQ==} |
|
| 3374 | + | dev: true |
|
| 3375 | + | ||
| 3376 | + | /js-tokens/4.0.0: |
|
| 3377 | + | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} |
|
| 3378 | + | ||
| 3379 | + | /js-tokens/8.0.1: |
|
| 3380 | + | resolution: {integrity: sha512-3AGrZT6tuMm1ZWWn9mLXh7XMfi2YtiLNPALCVxBCiUVq0LD1OQMxV/AdS/s7rLJU5o9i/jBZw/N4vXXL5dm29A==} |
|
| 3381 | + | dev: true |
|
| 3382 | + | ||
| 3383 | + | /js-yaml/3.14.1: |
|
| 3384 | + | resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} |
|
| 3385 | + | hasBin: true |
|
| 3386 | + | dependencies: |
|
| 3387 | + | argparse: 1.0.10 |
|
| 3388 | + | esprima: 4.0.1 |
|
| 3389 | + | ||
| 3390 | + | /js-yaml/4.1.0: |
|
| 3391 | + | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} |
|
| 3392 | + | hasBin: true |
|
| 3393 | + | dependencies: |
|
| 3394 | + | argparse: 2.0.1 |
|
| 3395 | + | dev: true |
|
| 3396 | + | ||
| 3397 | + | /jsesc/2.5.2: |
|
| 3398 | + | resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} |
|
| 3399 | + | engines: {node: '>=4'} |
|
| 3400 | + | hasBin: true |
|
| 3401 | + | ||
| 3402 | + | /json-parse-even-better-errors/2.3.1: |
|
| 3403 | + | resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} |
|
| 3404 | + | dev: true |
|
| 3405 | + | ||
| 3406 | + | /json-schema-traverse/0.4.1: |
|
| 3407 | + | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} |
|
| 3408 | + | dev: true |
|
| 3409 | + | ||
| 3410 | + | /json-schema-traverse/1.0.0: |
|
| 3411 | + | resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} |
|
| 3412 | + | dev: true |
|
| 3413 | + | ||
| 3414 | + | /json-stable-stringify-without-jsonify/1.0.1: |
|
| 3415 | + | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} |
|
| 3416 | + | dev: true |
|
| 3417 | + | ||
| 3418 | + | /json5/1.0.2: |
|
| 3419 | + | resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} |
|
| 3420 | + | hasBin: true |
|
| 3421 | + | dependencies: |
|
| 3422 | + | minimist: 1.2.7 |
|
| 3423 | + | dev: true |
|
| 3424 | + | ||
| 3425 | + | /json5/2.2.3: |
|
| 3426 | + | resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} |
|
| 3427 | + | engines: {node: '>=6'} |
|
| 3428 | + | hasBin: true |
|
| 3429 | + | ||
| 3430 | + | /jsonc-parser/2.3.1: |
|
| 3431 | + | resolution: {integrity: sha512-H8jvkz1O50L3dMZCsLqiuB2tA7muqbSg1AtGEkN0leAqGjsUzDJir3Zwr02BhqdcITPg3ei3mZ+HjMocAknhhg==} |
|
| 3432 | + | ||
| 3433 | + | /jsonc-parser/3.2.0: |
|
| 3434 | + | resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==} |
|
| 3435 | + | ||
| 3436 | + | /jsx-ast-utils/3.3.3: |
|
| 3437 | + | resolution: {integrity: sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==} |
|
| 3438 | + | engines: {node: '>=4.0'} |
|
| 3439 | + | dependencies: |
|
| 3440 | + | array-includes: 3.1.6 |
|
| 3441 | + | object.assign: 4.1.4 |
|
| 3442 | + | dev: true |
|
| 3443 | + | ||
| 3444 | + | /kind-of/6.0.3: |
|
| 3445 | + | resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} |
|
| 3446 | + | engines: {node: '>=0.10.0'} |
|
| 3447 | + | ||
| 3448 | + | /kleur/3.0.3: |
|
| 3449 | + | resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} |
|
| 3450 | + | engines: {node: '>=6'} |
|
| 3451 | + | ||
| 3452 | + | /kleur/4.1.5: |
|
| 3453 | + | resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} |
|
| 3454 | + | engines: {node: '>=6'} |
|
| 3455 | + | ||
| 3456 | + | /known-css-properties/0.26.0: |
|
| 3457 | + | resolution: {integrity: sha512-5FZRzrZzNTBruuurWpvZnvP9pum+fe0HcK8z/ooo+U+Hmp4vtbyp1/QDsqmufirXy4egGzbaH/y2uCZf+6W5Kg==} |
|
| 3458 | + | dev: true |
|
| 3459 | + | ||
| 3460 | + | /language-subtag-registry/0.3.22: |
|
| 3461 | + | resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==} |
|
| 3462 | + | dev: true |
|
| 3463 | + | ||
| 3464 | + | /language-tags/1.0.5: |
|
| 3465 | + | resolution: {integrity: sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==} |
|
| 3466 | + | dependencies: |
|
| 3467 | + | language-subtag-registry: 0.3.22 |
|
| 3468 | + | dev: true |
|
| 3469 | + | ||
| 3470 | + | /levn/0.4.1: |
|
| 3471 | + | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} |
|
| 3472 | + | engines: {node: '>= 0.8.0'} |
|
| 3473 | + | dependencies: |
|
| 3474 | + | prelude-ls: 1.2.1 |
|
| 3475 | + | type-check: 0.4.0 |
|
| 3476 | + | dev: true |
|
| 3477 | + | ||
| 3478 | + | /lilconfig/2.0.6: |
|
| 3479 | + | resolution: {integrity: sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==} |
|
| 3480 | + | engines: {node: '>=10'} |
|
| 3481 | + | dev: true |
|
| 3482 | + | ||
| 3483 | + | /lines-and-columns/1.2.4: |
|
| 3484 | + | resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} |
|
| 3485 | + | dev: true |
|
| 3486 | + | ||
| 3487 | + | /load-yaml-file/0.2.0: |
|
| 3488 | + | resolution: {integrity: sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==} |
|
| 3489 | + | engines: {node: '>=6'} |
|
| 3490 | + | dependencies: |
|
| 3491 | + | graceful-fs: 4.2.10 |
|
| 3492 | + | js-yaml: 3.14.1 |
|
| 3493 | + | pify: 4.0.1 |
|
| 3494 | + | strip-bom: 3.0.0 |
|
| 3495 | + | ||
| 3496 | + | /locate-path/5.0.0: |
|
| 3497 | + | resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} |
|
| 3498 | + | engines: {node: '>=8'} |
|
| 3499 | + | dependencies: |
|
| 3500 | + | p-locate: 4.1.0 |
|
| 3501 | + | ||
| 3502 | + | /locate-path/6.0.0: |
|
| 3503 | + | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} |
|
| 3504 | + | engines: {node: '>=10'} |
|
| 3505 | + | dependencies: |
|
| 3506 | + | p-locate: 5.0.0 |
|
| 3507 | + | ||
| 3508 | + | /lodash.castarray/4.4.0: |
|
| 3509 | + | resolution: {integrity: sha512-aVx8ztPv7/2ULbArGJ2Y42bG1mEQ5mGjpdvrbJcJFU3TbYybe+QlLS4pst9zV52ymy2in1KpFPiZnAOATxD4+Q==} |
|
| 3510 | + | dev: true |
|
| 3511 | + | ||
| 3512 | + | /lodash.isplainobject/4.0.6: |
|
| 3513 | + | resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==} |
|
| 3514 | + | dev: true |
|
| 3515 | + | ||
| 3516 | + | /lodash.merge/4.6.2: |
|
| 3517 | + | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} |
|
| 3518 | + | dev: true |
|
| 3519 | + | ||
| 3520 | + | /lodash.truncate/4.4.2: |
|
| 3521 | + | resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==} |
|
| 3522 | + | dev: true |
|
| 3523 | + | ||
| 3524 | + | /log-symbols/5.1.0: |
|
| 3525 | + | resolution: {integrity: sha512-l0x2DvrW294C9uDCoQe1VSU4gf529FkSZ6leBl4TiqZH/e+0R7hSfHQBNut2mNygDgHwvYHfFLn6Oxb3VWj2rA==} |
|
| 3526 | + | engines: {node: '>=12'} |
|
| 3527 | + | dependencies: |
|
| 3528 | + | chalk: 5.2.0 |
|
| 3529 | + | is-unicode-supported: 1.3.0 |
|
| 3530 | + | ||
| 3531 | + | /longest-streak/3.1.0: |
|
| 3532 | + | resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==} |
|
| 3533 | + | ||
| 3534 | + | /lru-cache/5.1.1: |
|
| 3535 | + | resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} |
|
| 3536 | + | dependencies: |
|
| 3537 | + | yallist: 3.1.1 |
|
| 3538 | + | ||
| 3539 | + | /lru-cache/6.0.0: |
|
| 3540 | + | resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} |
|
| 3541 | + | engines: {node: '>=10'} |
|
| 3542 | + | dependencies: |
|
| 3543 | + | yallist: 4.0.0 |
|
| 3544 | + | ||
| 3545 | + | /magic-string/0.27.0: |
|
| 3546 | + | resolution: {integrity: sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==} |
|
| 3547 | + | engines: {node: '>=12'} |
|
| 3548 | + | dependencies: |
|
| 3549 | + | '@jridgewell/sourcemap-codec': 1.4.14 |
|
| 3550 | + | ||
| 3551 | + | /map-obj/1.0.1: |
|
| 3552 | + | resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==} |
|
| 3553 | + | engines: {node: '>=0.10.0'} |
|
| 3554 | + | dev: true |
|
| 3555 | + | ||
| 3556 | + | /map-obj/4.3.0: |
|
| 3557 | + | resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==} |
|
| 3558 | + | engines: {node: '>=8'} |
|
| 3559 | + | dev: true |
|
| 3560 | + | ||
| 3561 | + | /markdown-extensions/1.1.1: |
|
| 3562 | + | resolution: {integrity: sha512-WWC0ZuMzCyDHYCasEGs4IPvLyTGftYwh6wIEOULOF0HXcqZlhwRzrK0w2VUlxWA98xnvb/jszw4ZSkJ6ADpM6Q==} |
|
| 3563 | + | engines: {node: '>=0.10.0'} |
|
| 3564 | + | dev: true |
|
| 3565 | + | ||
| 3566 | + | /markdown-table/3.0.3: |
|
| 3567 | + | resolution: {integrity: sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw==} |
|
| 3568 | + | ||
| 3569 | + | /mathml-tag-names/2.1.3: |
|
| 3570 | + | resolution: {integrity: sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg==} |
|
| 3571 | + | dev: true |
|
| 3572 | + | ||
| 3573 | + | /mdast-util-definitions/5.1.2: |
|
| 3574 | + | resolution: {integrity: sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA==} |
|
| 3575 | + | dependencies: |
|
| 3576 | + | '@types/mdast': 3.0.10 |
|
| 3577 | + | '@types/unist': 2.0.6 |
|
| 3578 | + | unist-util-visit: 4.1.2 |
|
| 3579 | + | ||
| 3580 | + | /mdast-util-find-and-replace/2.2.2: |
|
| 3581 | + | resolution: {integrity: sha512-MTtdFRz/eMDHXzeK6W3dO7mXUlF82Gom4y0oOgvHhh/HXZAGvIQDUvQ0SuUx+j2tv44b8xTHOm8K/9OoRFnXKw==} |
|
| 3582 | + | dependencies: |
|
| 3583 | + | '@types/mdast': 3.0.10 |
|
| 3584 | + | escape-string-regexp: 5.0.0 |
|
| 3585 | + | unist-util-is: 5.2.0 |
|
| 3586 | + | unist-util-visit-parents: 5.1.3 |
|
| 3587 | + | ||
| 3588 | + | /mdast-util-from-markdown/1.3.0: |
|
| 3589 | + | resolution: {integrity: sha512-HN3W1gRIuN/ZW295c7zi7g9lVBllMgZE40RxCX37wrTPWXCWtpvOZdfnuK+1WNpvZje6XuJeI3Wnb4TJEUem+g==} |
|
| 3590 | + | dependencies: |
|
| 3591 | + | '@types/mdast': 3.0.10 |
|
| 3592 | + | '@types/unist': 2.0.6 |
|
| 3593 | + | decode-named-character-reference: 1.0.2 |
|
| 3594 | + | mdast-util-to-string: 3.1.1 |
|
| 3595 | + | micromark: 3.1.0 |
|
| 3596 | + | micromark-util-decode-numeric-character-reference: 1.0.0 |
|
| 3597 | + | micromark-util-decode-string: 1.0.2 |
|
| 3598 | + | micromark-util-normalize-identifier: 1.0.0 |
|
| 3599 | + | micromark-util-symbol: 1.0.1 |
|
| 3600 | + | micromark-util-types: 1.0.2 |
|
| 3601 | + | unist-util-stringify-position: 3.0.3 |
|
| 3602 | + | uvu: 0.5.6 |
|
| 3603 | + | transitivePeerDependencies: |
|
| 3604 | + | - supports-color |
|
| 3605 | + | ||
| 3606 | + | /mdast-util-frontmatter/1.0.1: |
|
| 3607 | + | resolution: {integrity: sha512-JjA2OjxRqAa8wEG8hloD0uTU0kdn8kbtOWpPP94NBkfAlbxn4S8gCGf/9DwFtEeGPXrDcNXdiDjVaRdUFqYokw==} |
|
| 3608 | + | dependencies: |
|
| 3609 | + | '@types/mdast': 3.0.10 |
|
| 3610 | + | mdast-util-to-markdown: 1.5.0 |
|
| 3611 | + | micromark-extension-frontmatter: 1.0.0 |
|
| 3612 | + | dev: true |
|
| 3613 | + | ||
| 3614 | + | /mdast-util-gfm-autolink-literal/1.0.2: |
|
| 3615 | + | resolution: {integrity: sha512-FzopkOd4xTTBeGXhXSBU0OCDDh5lUj2rd+HQqG92Ld+jL4lpUfgX2AT2OHAVP9aEeDKp7G92fuooSZcYJA3cRg==} |
|
| 3616 | + | dependencies: |
|
| 3617 | + | '@types/mdast': 3.0.10 |
|
| 3618 | + | ccount: 2.0.1 |
|
| 3619 | + | mdast-util-find-and-replace: 2.2.2 |
|
| 3620 | + | micromark-util-character: 1.1.0 |
|
| 3621 | + | ||
| 3622 | + | /mdast-util-gfm-footnote/1.0.1: |
|
| 3623 | + | resolution: {integrity: sha512-p+PrYlkw9DeCRkTVw1duWqPRHX6Ywh2BNKJQcZbCwAuP/59B0Lk9kakuAd7KbQprVO4GzdW8eS5++A9PUSqIyw==} |
|
| 3624 | + | dependencies: |
|
| 3625 | + | '@types/mdast': 3.0.10 |
|
| 3626 | + | mdast-util-to-markdown: 1.5.0 |
|
| 3627 | + | micromark-util-normalize-identifier: 1.0.0 |
|
| 3628 | + | ||
| 3629 | + | /mdast-util-gfm-strikethrough/1.0.2: |
|
| 3630 | + | resolution: {integrity: sha512-T/4DVHXcujH6jx1yqpcAYYwd+z5lAYMw4Ls6yhTfbMMtCt0PHY4gEfhW9+lKsLBtyhUGKRIzcUA2FATVqnvPDA==} |
|
| 3631 | + | dependencies: |
|
| 3632 | + | '@types/mdast': 3.0.10 |
|
| 3633 | + | mdast-util-to-markdown: 1.5.0 |
|
| 3634 | + | ||
| 3635 | + | /mdast-util-gfm-table/1.0.6: |
|
| 3636 | + | resolution: {integrity: sha512-uHR+fqFq3IvB3Rd4+kzXW8dmpxUhvgCQZep6KdjsLK4O6meK5dYZEayLtIxNus1XO3gfjfcIFe8a7L0HZRGgag==} |
|
| 3637 | + | dependencies: |
|
| 3638 | + | '@types/mdast': 3.0.10 |
|
| 3639 | + | markdown-table: 3.0.3 |
|
| 3640 | + | mdast-util-from-markdown: 1.3.0 |
|
| 3641 | + | mdast-util-to-markdown: 1.5.0 |
|
| 3642 | + | transitivePeerDependencies: |
|
| 3643 | + | - supports-color |
|
| 3644 | + | ||
| 3645 | + | /mdast-util-gfm-task-list-item/1.0.1: |
|
| 3646 | + | resolution: {integrity: sha512-KZ4KLmPdABXOsfnM6JHUIjxEvcx2ulk656Z/4Balw071/5qgnhz+H1uGtf2zIGnrnvDC8xR4Fj9uKbjAFGNIeA==} |
|
| 3647 | + | dependencies: |
|
| 3648 | + | '@types/mdast': 3.0.10 |
|
| 3649 | + | mdast-util-to-markdown: 1.5.0 |
|
| 3650 | + | ||
| 3651 | + | /mdast-util-gfm/2.0.1: |
|
| 3652 | + | resolution: {integrity: sha512-42yHBbfWIFisaAfV1eixlabbsa6q7vHeSPY+cg+BBjX51M8xhgMacqH9g6TftB/9+YkcI0ooV4ncfrJslzm/RQ==} |
|
| 3653 | + | dependencies: |
|
| 3654 | + | mdast-util-from-markdown: 1.3.0 |
|
| 3655 | + | mdast-util-gfm-autolink-literal: 1.0.2 |
|
| 3656 | + | mdast-util-gfm-footnote: 1.0.1 |
|
| 3657 | + | mdast-util-gfm-strikethrough: 1.0.2 |
|
| 3658 | + | mdast-util-gfm-table: 1.0.6 |
|
| 3659 | + | mdast-util-gfm-task-list-item: 1.0.1 |
|
| 3660 | + | mdast-util-to-markdown: 1.5.0 |
|
| 3661 | + | transitivePeerDependencies: |
|
| 3662 | + | - supports-color |
|
| 3663 | + | ||
| 3664 | + | /mdast-util-mdx-expression/1.3.1: |
|
| 3665 | + | resolution: {integrity: sha512-TTb6cKyTA1RD+1su1iStZ5PAv3rFfOUKcoU5EstUpv/IZo63uDX03R8+jXjMEhcobXnNOiG6/ccekvVl4eV1zQ==} |
|
| 3666 | + | dependencies: |
|
| 3667 | + | '@types/estree-jsx': 1.0.0 |
|
| 3668 | + | '@types/hast': 2.3.4 |
|
| 3669 | + | '@types/mdast': 3.0.10 |
|
| 3670 | + | mdast-util-from-markdown: 1.3.0 |
|
| 3671 | + | mdast-util-to-markdown: 1.5.0 |
|
| 3672 | + | transitivePeerDependencies: |
|
| 3673 | + | - supports-color |
|
| 3674 | + | dev: true |
|
| 3675 | + | ||
| 3676 | + | /mdast-util-mdx-jsx/2.1.0: |
|
| 3677 | + | resolution: {integrity: sha512-KzgzfWMhdteDkrY4mQtyvTU5bc/W4ppxhe9SzelO6QUUiwLAM+Et2Dnjjprik74a336kHdo0zKm7Tp+n6FFeRg==} |
|
| 3678 | + | dependencies: |
|
| 3679 | + | '@types/estree-jsx': 1.0.0 |
|
| 3680 | + | '@types/hast': 2.3.4 |
|
| 3681 | + | '@types/mdast': 3.0.10 |
|
| 3682 | + | ccount: 2.0.1 |
|
| 3683 | + | mdast-util-to-markdown: 1.5.0 |
|
| 3684 | + | parse-entities: 4.0.0 |
|
| 3685 | + | stringify-entities: 4.0.3 |
|
| 3686 | + | unist-util-remove-position: 4.0.2 |
|
| 3687 | + | unist-util-stringify-position: 3.0.3 |
|
| 3688 | + | vfile-message: 3.1.3 |
|
| 3689 | + | dev: true |
|
| 3690 | + | ||
| 3691 | + | /mdast-util-mdx/2.0.0: |
|
| 3692 | + | resolution: {integrity: sha512-M09lW0CcBT1VrJUaF/PYxemxxHa7SLDHdSn94Q9FhxjCQfuW7nMAWKWimTmA3OyDMSTH981NN1csW1X+HPSluw==} |
|
| 3693 | + | dependencies: |
|
| 3694 | + | mdast-util-mdx-expression: 1.3.1 |
|
| 3695 | + | mdast-util-mdx-jsx: 2.1.0 |
|
| 3696 | + | mdast-util-mdxjs-esm: 1.3.0 |
|
| 3697 | + | transitivePeerDependencies: |
|
| 3698 | + | - supports-color |
|
| 3699 | + | dev: true |
|
| 3700 | + | ||
| 3701 | + | /mdast-util-mdxjs-esm/1.3.0: |
|
| 3702 | + | resolution: {integrity: sha512-7N5ihsOkAEGjFotIX9p/YPdl4TqUoMxL4ajNz7PbT89BqsdWJuBC9rvgt6wpbwTZqWWR0jKWqQbwsOWDBUZv4g==} |
|
| 3703 | + | dependencies: |
|
| 3704 | + | '@types/estree-jsx': 1.0.0 |
|
| 3705 | + | '@types/hast': 2.3.4 |
|
| 3706 | + | '@types/mdast': 3.0.10 |
|
| 3707 | + | mdast-util-from-markdown: 1.3.0 |
|
| 3708 | + | mdast-util-to-markdown: 1.5.0 |
|
| 3709 | + | transitivePeerDependencies: |
|
| 3710 | + | - supports-color |
|
| 3711 | + | dev: true |
|
| 3712 | + | ||
| 3713 | + | /mdast-util-phrasing/3.0.1: |
|
| 3714 | + | resolution: {integrity: sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg==} |
|
| 3715 | + | dependencies: |
|
| 3716 | + | '@types/mdast': 3.0.10 |
|
| 3717 | + | unist-util-is: 5.2.0 |
|
| 3718 | + | ||
| 3719 | + | /mdast-util-to-hast/12.2.6: |
|
| 3720 | + | resolution: {integrity: sha512-Kfo1JNUsi6r6CI7ZOJ6yt/IEKMjMK4nNjQ8C+yc8YBbIlDSp9dmj0zY90ryiu6Vy4CVGv0zi1H4ZoIaYVV8cwA==} |
|
| 3721 | + | dependencies: |
|
| 3722 | + | '@types/hast': 2.3.4 |
|
| 3723 | + | '@types/mdast': 3.0.10 |
|
| 3724 | + | mdast-util-definitions: 5.1.2 |
|
| 3725 | + | micromark-util-sanitize-uri: 1.1.0 |
|
| 3726 | + | trim-lines: 3.0.1 |
|
| 3727 | + | unist-builder: 3.0.1 |
|
| 3728 | + | unist-util-generated: 2.0.1 |
|
| 3729 | + | unist-util-position: 4.0.4 |
|
| 3730 | + | unist-util-visit: 4.1.2 |
|
| 3731 | + | ||
| 3732 | + | /mdast-util-to-markdown/1.5.0: |
|
| 3733 | + | resolution: {integrity: sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==} |
|
| 3734 | + | dependencies: |
|
| 3735 | + | '@types/mdast': 3.0.10 |
|
| 3736 | + | '@types/unist': 2.0.6 |
|
| 3737 | + | longest-streak: 3.1.0 |
|
| 3738 | + | mdast-util-phrasing: 3.0.1 |
|
| 3739 | + | mdast-util-to-string: 3.1.1 |
|
| 3740 | + | micromark-util-decode-string: 1.0.2 |
|
| 3741 | + | unist-util-visit: 4.1.2 |
|
| 3742 | + | zwitch: 2.0.4 |
|
| 3743 | + | ||
| 3744 | + | /mdast-util-to-string/3.1.1: |
|
| 3745 | + | resolution: {integrity: sha512-tGvhT94e+cVnQt8JWE9/b3cUQZWS732TJxXHktvP+BYo62PpYD53Ls/6cC60rW21dW+txxiM4zMdc6abASvZKA==} |
|
| 3746 | + | dependencies: |
|
| 3747 | + | '@types/mdast': 3.0.10 |
|
| 3748 | + | ||
| 3749 | + | /meow/9.0.0: |
|
| 3750 | + | resolution: {integrity: sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ==} |
|
| 3751 | + | engines: {node: '>=10'} |
|
| 3752 | + | dependencies: |
|
| 3753 | + | '@types/minimist': 1.2.2 |
|
| 3754 | + | camelcase-keys: 6.2.2 |
|
| 3755 | + | decamelize: 1.2.0 |
|
| 3756 | + | decamelize-keys: 1.1.1 |
|
| 3757 | + | hard-rejection: 2.1.0 |
|
| 3758 | + | minimist-options: 4.1.0 |
|
| 3759 | + | normalize-package-data: 3.0.3 |
|
| 3760 | + | read-pkg-up: 7.0.1 |
|
| 3761 | + | redent: 3.0.0 |
|
| 3762 | + | trim-newlines: 3.0.1 |
|
| 3763 | + | type-fest: 0.18.1 |
|
| 3764 | + | yargs-parser: 20.2.9 |
|
| 3765 | + | dev: true |
|
| 3766 | + | ||
| 3767 | + | /merge-stream/2.0.0: |
|
| 3768 | + | resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} |
|
| 3769 | + | ||
| 3770 | + | /merge2/1.4.1: |
|
| 3771 | + | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} |
|
| 3772 | + | engines: {node: '>= 8'} |
|
| 3773 | + | ||
| 3774 | + | /micromark-core-commonmark/1.0.6: |
|
| 3775 | + | resolution: {integrity: sha512-K+PkJTxqjFfSNkfAhp4GB+cZPfQd6dxtTXnf+RjZOV7T4EEXnvgzOcnp+eSTmpGk9d1S9sL6/lqrgSNn/s0HZA==} |
|
| 3776 | + | dependencies: |
|
| 3777 | + | decode-named-character-reference: 1.0.2 |
|
| 3778 | + | micromark-factory-destination: 1.0.0 |
|
| 3779 | + | micromark-factory-label: 1.0.2 |
|
| 3780 | + | micromark-factory-space: 1.0.0 |
|
| 3781 | + | micromark-factory-title: 1.0.2 |
|
| 3782 | + | micromark-factory-whitespace: 1.0.0 |
|
| 3783 | + | micromark-util-character: 1.1.0 |
|
| 3784 | + | micromark-util-chunked: 1.0.0 |
|
| 3785 | + | micromark-util-classify-character: 1.0.0 |
|
| 3786 | + | micromark-util-html-tag-name: 1.1.0 |
|
| 3787 | + | micromark-util-normalize-identifier: 1.0.0 |
|
| 3788 | + | micromark-util-resolve-all: 1.0.0 |
|
| 3789 | + | micromark-util-subtokenize: 1.0.2 |
|
| 3790 | + | micromark-util-symbol: 1.0.1 |
|
| 3791 | + | micromark-util-types: 1.0.2 |
|
| 3792 | + | uvu: 0.5.6 |
|
| 3793 | + | ||
| 3794 | + | /micromark-extension-frontmatter/1.0.0: |
|
| 3795 | + | resolution: {integrity: sha512-EXjmRnupoX6yYuUJSQhrQ9ggK0iQtQlpi6xeJzVD5xscyAI+giqco5fdymayZhJMbIFecjnE2yz85S9NzIgQpg==} |
|
| 3796 | + | dependencies: |
|
| 3797 | + | fault: 2.0.1 |
|
| 3798 | + | micromark-util-character: 1.1.0 |
|
| 3799 | + | micromark-util-symbol: 1.0.1 |
|
| 3800 | + | dev: true |
|
| 3801 | + | ||
| 3802 | + | /micromark-extension-gfm-autolink-literal/1.0.3: |
|
| 3803 | + | resolution: {integrity: sha512-i3dmvU0htawfWED8aHMMAzAVp/F0Z+0bPh3YrbTPPL1v4YAlCZpy5rBO5p0LPYiZo0zFVkoYh7vDU7yQSiCMjg==} |
|
| 3804 | + | dependencies: |
|
| 3805 | + | micromark-util-character: 1.1.0 |
|
| 3806 | + | micromark-util-sanitize-uri: 1.1.0 |
|
| 3807 | + | micromark-util-symbol: 1.0.1 |
|
| 3808 | + | micromark-util-types: 1.0.2 |
|
| 3809 | + | uvu: 0.5.6 |
|
| 3810 | + | ||
| 3811 | + | /micromark-extension-gfm-footnote/1.0.4: |
|
| 3812 | + | resolution: {integrity: sha512-E/fmPmDqLiMUP8mLJ8NbJWJ4bTw6tS+FEQS8CcuDtZpILuOb2kjLqPEeAePF1djXROHXChM/wPJw0iS4kHCcIg==} |
|
| 3813 | + | dependencies: |
|
| 3814 | + | micromark-core-commonmark: 1.0.6 |
|
| 3815 | + | micromark-factory-space: 1.0.0 |
|
| 3816 | + | micromark-util-character: 1.1.0 |
|
| 3817 | + | micromark-util-normalize-identifier: 1.0.0 |
|
| 3818 | + | micromark-util-sanitize-uri: 1.1.0 |
|
| 3819 | + | micromark-util-symbol: 1.0.1 |
|
| 3820 | + | micromark-util-types: 1.0.2 |
|
| 3821 | + | uvu: 0.5.6 |
|
| 3822 | + | ||
| 3823 | + | /micromark-extension-gfm-strikethrough/1.0.4: |
|
| 3824 | + | resolution: {integrity: sha512-/vjHU/lalmjZCT5xt7CcHVJGq8sYRm80z24qAKXzaHzem/xsDYb2yLL+NNVbYvmpLx3O7SYPuGL5pzusL9CLIQ==} |
|
| 3825 | + | dependencies: |
|
| 3826 | + | micromark-util-chunked: 1.0.0 |
|
| 3827 | + | micromark-util-classify-character: 1.0.0 |
|
| 3828 | + | micromark-util-resolve-all: 1.0.0 |
|
| 3829 | + | micromark-util-symbol: 1.0.1 |
|
| 3830 | + | micromark-util-types: 1.0.2 |
|
| 3831 | + | uvu: 0.5.6 |
|
| 3832 | + | ||
| 3833 | + | /micromark-extension-gfm-table/1.0.5: |
|
| 3834 | + | resolution: {integrity: sha512-xAZ8J1X9W9K3JTJTUL7G6wSKhp2ZYHrFk5qJgY/4B33scJzE2kpfRL6oiw/veJTbt7jiM/1rngLlOKPWr1G+vg==} |
|
| 3835 | + | dependencies: |
|
| 3836 | + | micromark-factory-space: 1.0.0 |
|
| 3837 | + | micromark-util-character: 1.1.0 |
|
| 3838 | + | micromark-util-symbol: 1.0.1 |
|
| 3839 | + | micromark-util-types: 1.0.2 |
|
| 3840 | + | uvu: 0.5.6 |
|
| 3841 | + | ||
| 3842 | + | /micromark-extension-gfm-tagfilter/1.0.1: |
|
| 3843 | + | resolution: {integrity: sha512-Ty6psLAcAjboRa/UKUbbUcwjVAv5plxmpUTy2XC/3nJFL37eHej8jrHrRzkqcpipJliuBH30DTs7+3wqNcQUVA==} |
|
| 3844 | + | dependencies: |
|
| 3845 | + | micromark-util-types: 1.0.2 |
|
| 3846 | + | ||
| 3847 | + | /micromark-extension-gfm-task-list-item/1.0.3: |
|
| 3848 | + | resolution: {integrity: sha512-PpysK2S1Q/5VXi72IIapbi/jliaiOFzv7THH4amwXeYXLq3l1uo8/2Be0Ac1rEwK20MQEsGH2ltAZLNY2KI/0Q==} |
|
| 3849 | + | dependencies: |
|
| 3850 | + | micromark-factory-space: 1.0.0 |
|
| 3851 | + | micromark-util-character: 1.1.0 |
|
| 3852 | + | micromark-util-symbol: 1.0.1 |
|
| 3853 | + | micromark-util-types: 1.0.2 |
|
| 3854 | + | uvu: 0.5.6 |
|
| 3855 | + | ||
| 3856 | + | /micromark-extension-gfm/2.0.1: |
|
| 3857 | + | resolution: {integrity: sha512-p2sGjajLa0iYiGQdT0oelahRYtMWvLjy8J9LOCxzIQsllMCGLbsLW+Nc+N4vi02jcRJvedVJ68cjelKIO6bpDA==} |
|
| 3858 | + | dependencies: |
|
| 3859 | + | micromark-extension-gfm-autolink-literal: 1.0.3 |
|
| 3860 | + | micromark-extension-gfm-footnote: 1.0.4 |
|
| 3861 | + | micromark-extension-gfm-strikethrough: 1.0.4 |
|
| 3862 | + | micromark-extension-gfm-table: 1.0.5 |
|
| 3863 | + | micromark-extension-gfm-tagfilter: 1.0.1 |
|
| 3864 | + | micromark-extension-gfm-task-list-item: 1.0.3 |
|
| 3865 | + | micromark-util-combine-extensions: 1.0.0 |
|
| 3866 | + | micromark-util-types: 1.0.2 |
|
| 3867 | + | ||
| 3868 | + | /micromark-extension-mdx-expression/1.0.4: |
|
| 3869 | + | resolution: {integrity: sha512-TCgLxqW6ReQ3AJgtj1P0P+8ZThBTloLbeb7jNaqr6mCOLDpxUiBFE/9STgooMZttEwOQu5iEcCCa3ZSDhY9FGw==} |
|
| 3870 | + | dependencies: |
|
| 3871 | + | micromark-factory-mdx-expression: 1.0.7 |
|
| 3872 | + | micromark-factory-space: 1.0.0 |
|
| 3873 | + | micromark-util-character: 1.1.0 |
|
| 3874 | + | micromark-util-events-to-acorn: 1.2.1 |
|
| 3875 | + | micromark-util-symbol: 1.0.1 |
|
| 3876 | + | micromark-util-types: 1.0.2 |
|
| 3877 | + | uvu: 0.5.6 |
|
| 3878 | + | dev: true |
|
| 3879 | + | ||
| 3880 | + | /micromark-extension-mdx-jsx/1.0.3: |
|
| 3881 | + | resolution: {integrity: sha512-VfA369RdqUISF0qGgv2FfV7gGjHDfn9+Qfiv5hEwpyr1xscRj/CiVRkU7rywGFCO7JwJ5L0e7CJz60lY52+qOA==} |
|
| 3882 | + | dependencies: |
|
| 3883 | + | '@types/acorn': 4.0.6 |
|
| 3884 | + | estree-util-is-identifier-name: 2.1.0 |
|
| 3885 | + | micromark-factory-mdx-expression: 1.0.7 |
|
| 3886 | + | micromark-factory-space: 1.0.0 |
|
| 3887 | + | micromark-util-character: 1.1.0 |
|
| 3888 | + | micromark-util-symbol: 1.0.1 |
|
| 3889 | + | micromark-util-types: 1.0.2 |
|
| 3890 | + | uvu: 0.5.6 |
|
| 3891 | + | vfile-message: 3.1.3 |
|
| 3892 | + | dev: true |
|
| 3893 | + | ||
| 3894 | + | /micromark-extension-mdx-md/1.0.0: |
|
| 3895 | + | resolution: {integrity: sha512-xaRAMoSkKdqZXDAoSgp20Azm0aRQKGOl0RrS81yGu8Hr/JhMsBmfs4wR7m9kgVUIO36cMUQjNyiyDKPrsv8gOw==} |
|
| 3896 | + | dependencies: |
|
| 3897 | + | micromark-util-types: 1.0.2 |
|
| 3898 | + | dev: true |
|
| 3899 | + | ||
| 3900 | + | /micromark-extension-mdxjs-esm/1.0.3: |
|
| 3901 | + | resolution: {integrity: sha512-2N13ol4KMoxb85rdDwTAC6uzs8lMX0zeqpcyx7FhS7PxXomOnLactu8WI8iBNXW8AVyea3KIJd/1CKnUmwrK9A==} |
|
| 3902 | + | dependencies: |
|
| 3903 | + | micromark-core-commonmark: 1.0.6 |
|
| 3904 | + | micromark-util-character: 1.1.0 |
|
| 3905 | + | micromark-util-events-to-acorn: 1.2.1 |
|
| 3906 | + | micromark-util-symbol: 1.0.1 |
|
| 3907 | + | micromark-util-types: 1.0.2 |
|
| 3908 | + | unist-util-position-from-estree: 1.1.2 |
|
| 3909 | + | uvu: 0.5.6 |
|
| 3910 | + | vfile-message: 3.1.3 |
|
| 3911 | + | dev: true |
|
| 3912 | + | ||
| 3913 | + | /micromark-extension-mdxjs/1.0.0: |
|
| 3914 | + | resolution: {integrity: sha512-TZZRZgeHvtgm+IhtgC2+uDMR7h8eTKF0QUX9YsgoL9+bADBpBY6SiLvWqnBlLbCEevITmTqmEuY3FoxMKVs1rQ==} |
|
| 3915 | + | dependencies: |
|
| 3916 | + | acorn: 8.8.2 |
|
| 3917 | + | acorn-jsx: 5.3.2_acorn@8.8.2 |
|
| 3918 | + | micromark-extension-mdx-expression: 1.0.4 |
|
| 3919 | + | micromark-extension-mdx-jsx: 1.0.3 |
|
| 3920 | + | micromark-extension-mdx-md: 1.0.0 |
|
| 3921 | + | micromark-extension-mdxjs-esm: 1.0.3 |
|
| 3922 | + | micromark-util-combine-extensions: 1.0.0 |
|
| 3923 | + | micromark-util-types: 1.0.2 |
|
| 3924 | + | dev: true |
|
| 3925 | + | ||
| 3926 | + | /micromark-factory-destination/1.0.0: |
|
| 3927 | + | resolution: {integrity: sha512-eUBA7Rs1/xtTVun9TmV3gjfPz2wEwgK5R5xcbIM5ZYAtvGF6JkyaDsj0agx8urXnO31tEO6Ug83iVH3tdedLnw==} |
|
| 3928 | + | dependencies: |
|
| 3929 | + | micromark-util-character: 1.1.0 |
|
| 3930 | + | micromark-util-symbol: 1.0.1 |
|
| 3931 | + | micromark-util-types: 1.0.2 |
|
| 3932 | + | ||
| 3933 | + | /micromark-factory-label/1.0.2: |
|
| 3934 | + | resolution: {integrity: sha512-CTIwxlOnU7dEshXDQ+dsr2n+yxpP0+fn271pu0bwDIS8uqfFcumXpj5mLn3hSC8iw2MUr6Gx8EcKng1dD7i6hg==} |
|
| 3935 | + | dependencies: |
|
| 3936 | + | micromark-util-character: 1.1.0 |
|
| 3937 | + | micromark-util-symbol: 1.0.1 |
|
| 3938 | + | micromark-util-types: 1.0.2 |
|
| 3939 | + | uvu: 0.5.6 |
|
| 3940 | + | ||
| 3941 | + | /micromark-factory-mdx-expression/1.0.7: |
|
| 3942 | + | resolution: {integrity: sha512-QAdFbkQagTZ/eKb8zDGqmjvgevgJH3+aQpvvKrXWxNJp3o8/l2cAbbrBd0E04r0Gx6nssPpqWIjnbHFvZu5qsQ==} |
|
| 3943 | + | dependencies: |
|
| 3944 | + | micromark-factory-space: 1.0.0 |
|
| 3945 | + | micromark-util-character: 1.1.0 |
|
| 3946 | + | micromark-util-events-to-acorn: 1.2.1 |
|
| 3947 | + | micromark-util-symbol: 1.0.1 |
|
| 3948 | + | micromark-util-types: 1.0.2 |
|
| 3949 | + | unist-util-position-from-estree: 1.1.2 |
|
| 3950 | + | uvu: 0.5.6 |
|
| 3951 | + | vfile-message: 3.1.3 |
|
| 3952 | + | dev: true |
|
| 3953 | + | ||
| 3954 | + | /micromark-factory-space/1.0.0: |
|
| 3955 | + | resolution: {integrity: sha512-qUmqs4kj9a5yBnk3JMLyjtWYN6Mzfcx8uJfi5XAveBniDevmZasdGBba5b4QsvRcAkmvGo5ACmSUmyGiKTLZew==} |
|
| 3956 | + | dependencies: |
|
| 3957 | + | micromark-util-character: 1.1.0 |
|
| 3958 | + | micromark-util-types: 1.0.2 |
|
| 3959 | + | ||
| 3960 | + | /micromark-factory-title/1.0.2: |
|
| 3961 | + | resolution: {integrity: sha512-zily+Nr4yFqgMGRKLpTVsNl5L4PMu485fGFDOQJQBl2NFpjGte1e86zC0da93wf97jrc4+2G2GQudFMHn3IX+A==} |
|
| 3962 | + | dependencies: |
|
| 3963 | + | micromark-factory-space: 1.0.0 |
|
| 3964 | + | micromark-util-character: 1.1.0 |
|
| 3965 | + | micromark-util-symbol: 1.0.1 |
|
| 3966 | + | micromark-util-types: 1.0.2 |
|
| 3967 | + | uvu: 0.5.6 |
|
| 3968 | + | ||
| 3969 | + | /micromark-factory-whitespace/1.0.0: |
|
| 3970 | + | resolution: {integrity: sha512-Qx7uEyahU1lt1RnsECBiuEbfr9INjQTGa6Err+gF3g0Tx4YEviPbqqGKNv/NrBaE7dVHdn1bVZKM/n5I/Bak7A==} |
|
| 3971 | + | dependencies: |
|
| 3972 | + | micromark-factory-space: 1.0.0 |
|
| 3973 | + | micromark-util-character: 1.1.0 |
|
| 3974 | + | micromark-util-symbol: 1.0.1 |
|
| 3975 | + | micromark-util-types: 1.0.2 |
|
| 3976 | + | ||
| 3977 | + | /micromark-util-character/1.1.0: |
|
| 3978 | + | resolution: {integrity: sha512-agJ5B3unGNJ9rJvADMJ5ZiYjBRyDpzKAOk01Kpi1TKhlT1APx3XZk6eN7RtSz1erbWHC2L8T3xLZ81wdtGRZzg==} |
|
| 3979 | + | dependencies: |
|
| 3980 | + | micromark-util-symbol: 1.0.1 |
|
| 3981 | + | micromark-util-types: 1.0.2 |
|
| 3982 | + | ||
| 3983 | + | /micromark-util-chunked/1.0.0: |
|
| 3984 | + | resolution: {integrity: sha512-5e8xTis5tEZKgesfbQMKRCyzvffRRUX+lK/y+DvsMFdabAicPkkZV6gO+FEWi9RfuKKoxxPwNL+dFF0SMImc1g==} |
|
| 3985 | + | dependencies: |
|
| 3986 | + | micromark-util-symbol: 1.0.1 |
|
| 3987 | + | ||
| 3988 | + | /micromark-util-classify-character/1.0.0: |
|
| 3989 | + | resolution: {integrity: sha512-F8oW2KKrQRb3vS5ud5HIqBVkCqQi224Nm55o5wYLzY/9PwHGXC01tr3d7+TqHHz6zrKQ72Okwtvm/xQm6OVNZA==} |
|
| 3990 | + | dependencies: |
|
| 3991 | + | micromark-util-character: 1.1.0 |
|
| 3992 | + | micromark-util-symbol: 1.0.1 |
|
| 3993 | + | micromark-util-types: 1.0.2 |
|
| 3994 | + | ||
| 3995 | + | /micromark-util-combine-extensions/1.0.0: |
|
| 3996 | + | resolution: {integrity: sha512-J8H058vFBdo/6+AsjHp2NF7AJ02SZtWaVUjsayNFeAiydTxUwViQPxN0Hf8dp4FmCQi0UUFovFsEyRSUmFH3MA==} |
|
| 3997 | + | dependencies: |
|
| 3998 | + | micromark-util-chunked: 1.0.0 |
|
| 3999 | + | micromark-util-types: 1.0.2 |
|
| 4000 | + | ||
| 4001 | + | /micromark-util-decode-numeric-character-reference/1.0.0: |
|
| 4002 | + | resolution: {integrity: sha512-OzO9AI5VUtrTD7KSdagf4MWgHMtET17Ua1fIpXTpuhclCqD8egFWo85GxSGvxgkGS74bEahvtM0WP0HjvV0e4w==} |
|
| 4003 | + | dependencies: |
|
| 4004 | + | micromark-util-symbol: 1.0.1 |
|
| 4005 | + | ||
| 4006 | + | /micromark-util-decode-string/1.0.2: |
|
| 4007 | + | resolution: {integrity: sha512-DLT5Ho02qr6QWVNYbRZ3RYOSSWWFuH3tJexd3dgN1odEuPNxCngTCXJum7+ViRAd9BbdxCvMToPOD/IvVhzG6Q==} |
|
| 4008 | + | dependencies: |
|
| 4009 | + | decode-named-character-reference: 1.0.2 |
|
| 4010 | + | micromark-util-character: 1.1.0 |
|
| 4011 | + | micromark-util-decode-numeric-character-reference: 1.0.0 |
|
| 4012 | + | micromark-util-symbol: 1.0.1 |
|
| 4013 | + | ||
| 4014 | + | /micromark-util-encode/1.0.1: |
|
| 4015 | + | resolution: {integrity: sha512-U2s5YdnAYexjKDel31SVMPbfi+eF8y1U4pfiRW/Y8EFVCy/vgxk/2wWTxzcqE71LHtCuCzlBDRU2a5CQ5j+mQA==} |
|
| 4016 | + | ||
| 4017 | + | /micromark-util-events-to-acorn/1.2.1: |
|
| 4018 | + | resolution: {integrity: sha512-mkg3BaWlw6ZTkQORrKVBW4o9ICXPxLtGz51vml5mQpKFdo9vqIX68CAx5JhTOdjQyAHH7JFmm4rh8toSPQZUmg==} |
|
| 4019 | + | dependencies: |
|
| 4020 | + | '@types/acorn': 4.0.6 |
|
| 4021 | + | '@types/estree': 1.0.0 |
|
| 4022 | + | estree-util-visit: 1.2.1 |
|
| 4023 | + | micromark-util-types: 1.0.2 |
|
| 4024 | + | uvu: 0.5.6 |
|
| 4025 | + | vfile-location: 4.0.1 |
|
| 4026 | + | vfile-message: 3.1.3 |
|
| 4027 | + | dev: true |
|
| 4028 | + | ||
| 4029 | + | /micromark-util-html-tag-name/1.1.0: |
|
| 4030 | + | resolution: {integrity: sha512-BKlClMmYROy9UiV03SwNmckkjn8QHVaWkqoAqzivabvdGcwNGMMMH/5szAnywmsTBUzDsU57/mFi0sp4BQO6dA==} |
|
| 4031 | + | ||
| 4032 | + | /micromark-util-normalize-identifier/1.0.0: |
|
| 4033 | + | resolution: {integrity: sha512-yg+zrL14bBTFrQ7n35CmByWUTFsgst5JhA4gJYoty4Dqzj4Z4Fr/DHekSS5aLfH9bdlfnSvKAWsAgJhIbogyBg==} |
|
| 4034 | + | dependencies: |
|
| 4035 | + | micromark-util-symbol: 1.0.1 |
|
| 4036 | + | ||
| 4037 | + | /micromark-util-resolve-all/1.0.0: |
|
| 4038 | + | resolution: {integrity: sha512-CB/AGk98u50k42kvgaMM94wzBqozSzDDaonKU7P7jwQIuH2RU0TeBqGYJz2WY1UdihhjweivStrJ2JdkdEmcfw==} |
|
| 4039 | + | dependencies: |
|
| 4040 | + | micromark-util-types: 1.0.2 |
|
| 4041 | + | ||
| 4042 | + | /micromark-util-sanitize-uri/1.1.0: |
|
| 4043 | + | resolution: {integrity: sha512-RoxtuSCX6sUNtxhbmsEFQfWzs8VN7cTctmBPvYivo98xb/kDEoTCtJQX5wyzIYEmk/lvNFTat4hL8oW0KndFpg==} |
|
| 4044 | + | dependencies: |
|
| 4045 | + | micromark-util-character: 1.1.0 |
|
| 4046 | + | micromark-util-encode: 1.0.1 |
|
| 4047 | + | micromark-util-symbol: 1.0.1 |
|
| 4048 | + | ||
| 4049 | + | /micromark-util-subtokenize/1.0.2: |
|
| 4050 | + | resolution: {integrity: sha512-d90uqCnXp/cy4G881Ub4psE57Sf8YD0pim9QdjCRNjfas2M1u6Lbt+XZK9gnHL2XFhnozZiEdCa9CNfXSfQ6xA==} |
|
| 4051 | + | dependencies: |
|
| 4052 | + | micromark-util-chunked: 1.0.0 |
|
| 4053 | + | micromark-util-symbol: 1.0.1 |
|
| 4054 | + | micromark-util-types: 1.0.2 |
|
| 4055 | + | uvu: 0.5.6 |
|
| 4056 | + | ||
| 4057 | + | /micromark-util-symbol/1.0.1: |
|
| 4058 | + | resolution: {integrity: sha512-oKDEMK2u5qqAptasDAwWDXq0tG9AssVwAx3E9bBF3t/shRIGsWIRG+cGafs2p/SnDSOecnt6hZPCE2o6lHfFmQ==} |
|
| 4059 | + | ||
| 4060 | + | /micromark-util-types/1.0.2: |
|
| 4061 | + | resolution: {integrity: sha512-DCfg/T8fcrhrRKTPjRrw/5LLvdGV7BHySf/1LOZx7TzWZdYRjogNtyNq885z3nNallwr3QUKARjqvHqX1/7t+w==} |
|
| 4062 | + | ||
| 4063 | + | /micromark/3.1.0: |
|
| 4064 | + | resolution: {integrity: sha512-6Mj0yHLdUZjHnOPgr5xfWIMqMWS12zDN6iws9SLuSz76W8jTtAv24MN4/CL7gJrl5vtxGInkkqDv/JIoRsQOvA==} |
|
| 4065 | + | dependencies: |
|
| 4066 | + | '@types/debug': 4.1.7 |
|
| 4067 | + | debug: 4.3.4 |
|
| 4068 | + | decode-named-character-reference: 1.0.2 |
|
| 4069 | + | micromark-core-commonmark: 1.0.6 |
|
| 4070 | + | micromark-factory-space: 1.0.0 |
|
| 4071 | + | micromark-util-character: 1.1.0 |
|
| 4072 | + | micromark-util-chunked: 1.0.0 |
|
| 4073 | + | micromark-util-combine-extensions: 1.0.0 |
|
| 4074 | + | micromark-util-decode-numeric-character-reference: 1.0.0 |
|
| 4075 | + | micromark-util-encode: 1.0.1 |
|
| 4076 | + | micromark-util-normalize-identifier: 1.0.0 |
|
| 4077 | + | micromark-util-resolve-all: 1.0.0 |
|
| 4078 | + | micromark-util-sanitize-uri: 1.1.0 |
|
| 4079 | + | micromark-util-subtokenize: 1.0.2 |
|
| 4080 | + | micromark-util-symbol: 1.0.1 |
|
| 4081 | + | micromark-util-types: 1.0.2 |
|
| 4082 | + | uvu: 0.5.6 |
|
| 4083 | + | transitivePeerDependencies: |
|
| 4084 | + | - supports-color |
|
| 4085 | + | ||
| 4086 | + | /micromatch/4.0.5: |
|
| 4087 | + | resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} |
|
| 4088 | + | engines: {node: '>=8.6'} |
|
| 4089 | + | dependencies: |
|
| 4090 | + | braces: 3.0.2 |
|
| 4091 | + | picomatch: 2.3.1 |
|
| 4092 | + | ||
| 4093 | + | /mime/3.0.0: |
|
| 4094 | + | resolution: {integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==} |
|
| 4095 | + | engines: {node: '>=10.0.0'} |
|
| 4096 | + | hasBin: true |
|
| 4097 | + | ||
| 4098 | + | /mimic-fn/2.1.0: |
|
| 4099 | + | resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} |
|
| 4100 | + | engines: {node: '>=6'} |
|
| 4101 | + | ||
| 4102 | + | /mimic-fn/4.0.0: |
|
| 4103 | + | resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} |
|
| 4104 | + | engines: {node: '>=12'} |
|
| 4105 | + | ||
| 4106 | + | /mimic-response/3.1.0: |
|
| 4107 | + | resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==} |
|
| 4108 | + | engines: {node: '>=10'} |
|
| 4109 | + | ||
| 4110 | + | /min-indent/1.0.1: |
|
| 4111 | + | resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} |
|
| 4112 | + | engines: {node: '>=4'} |
|
| 4113 | + | dev: true |
|
| 4114 | + | ||
| 4115 | + | /minimatch/3.1.2: |
|
| 4116 | + | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} |
|
| 4117 | + | dependencies: |
|
| 4118 | + | brace-expansion: 1.1.11 |
|
| 4119 | + | dev: true |
|
| 4120 | + | ||
| 4121 | + | /minimist-options/4.1.0: |
|
| 4122 | + | resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==} |
|
| 4123 | + | engines: {node: '>= 6'} |
|
| 4124 | + | dependencies: |
|
| 4125 | + | arrify: 1.0.1 |
|
| 4126 | + | is-plain-obj: 1.1.0 |
|
| 4127 | + | kind-of: 6.0.3 |
|
| 4128 | + | dev: true |
|
| 4129 | + | ||
| 4130 | + | /minimist/1.2.7: |
|
| 4131 | + | resolution: {integrity: sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==} |
|
| 4132 | + | ||
| 4133 | + | /mkdirp-classic/0.5.3: |
|
| 4134 | + | resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==} |
|
| 4135 | + | ||
| 4136 | + | /mri/1.2.0: |
|
| 4137 | + | resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} |
|
| 4138 | + | engines: {node: '>=4'} |
|
| 4139 | + | ||
| 4140 | + | /ms/2.1.2: |
|
| 4141 | + | resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} |
|
| 4142 | + | ||
| 4143 | + | /ms/2.1.3: |
|
| 4144 | + | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} |
|
| 4145 | + | dev: true |
|
| 4146 | + | ||
| 4147 | + | /nanoid/3.3.4: |
|
| 4148 | + | resolution: {integrity: sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==} |
|
| 4149 | + | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} |
|
| 4150 | + | hasBin: true |
|
| 4151 | + | ||
| 4152 | + | /napi-build-utils/1.0.2: |
|
| 4153 | + | resolution: {integrity: sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==} |
|
| 4154 | + | ||
| 4155 | + | /natural-compare-lite/1.4.0: |
|
| 4156 | + | resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==} |
|
| 4157 | + | dev: true |
|
| 4158 | + | ||
| 4159 | + | /natural-compare/1.4.0: |
|
| 4160 | + | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} |
|
| 4161 | + | dev: true |
|
| 4162 | + | ||
| 4163 | + | /nlcst-to-string/3.1.1: |
|
| 4164 | + | resolution: {integrity: sha512-63mVyqaqt0cmn2VcI2aH6kxe1rLAmSROqHMA0i4qqg1tidkfExgpb0FGMikMCn86mw5dFtBtEANfmSSK7TjNHw==} |
|
| 4165 | + | dependencies: |
|
| 4166 | + | '@types/nlcst': 1.0.0 |
|
| 4167 | + | ||
| 4168 | + | /node-abi/3.31.0: |
|
| 4169 | + | resolution: {integrity: sha512-eSKV6s+APenqVh8ubJyiu/YhZgxQpGP66ntzUb3lY1xB9ukSRaGnx0AIxI+IM+1+IVYC1oWobgG5L3Lt9ARykQ==} |
|
| 4170 | + | engines: {node: '>=10'} |
|
| 4171 | + | dependencies: |
|
| 4172 | + | semver: 7.3.8 |
|
| 4173 | + | ||
| 4174 | + | /node-addon-api/5.1.0: |
|
| 4175 | + | resolution: {integrity: sha512-eh0GgfEkpnoWDq+VY8OyvYhFEzBk6jIYbRKdIlyTiAXIVJ8PyBaKb0rp7oDtoddbdoHWhq8wwr+XZ81F1rpNdA==} |
|
| 4176 | + | ||
| 4177 | + | /node-releases/2.0.8: |
|
| 4178 | + | resolution: {integrity: sha512-dFSmB8fFHEH/s81Xi+Y/15DQY6VHW81nXRj86EMSL3lmuTmK1e+aT4wrFCkTbm+gSwkw4KpX+rT/pMM2c1mF+A==} |
|
| 4179 | + | ||
| 4180 | + | /normalize-package-data/2.5.0: |
|
| 4181 | + | resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} |
|
| 4182 | + | dependencies: |
|
| 4183 | + | hosted-git-info: 2.8.9 |
|
| 4184 | + | resolve: 1.22.1 |
|
| 4185 | + | semver: 5.7.1 |
|
| 4186 | + | validate-npm-package-license: 3.0.4 |
|
| 4187 | + | dev: true |
|
| 4188 | + | ||
| 4189 | + | /normalize-package-data/3.0.3: |
|
| 4190 | + | resolution: {integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==} |
|
| 4191 | + | engines: {node: '>=10'} |
|
| 4192 | + | dependencies: |
|
| 4193 | + | hosted-git-info: 4.1.0 |
|
| 4194 | + | is-core-module: 2.11.0 |
|
| 4195 | + | semver: 7.3.8 |
|
| 4196 | + | validate-npm-package-license: 3.0.4 |
|
| 4197 | + | dev: true |
|
| 4198 | + | ||
| 4199 | + | /normalize-path/3.0.0: |
|
| 4200 | + | resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} |
|
| 4201 | + | engines: {node: '>=0.10.0'} |
|
| 4202 | + | dev: true |
|
| 4203 | + | ||
| 4204 | + | /normalize-range/0.1.2: |
|
| 4205 | + | resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} |
|
| 4206 | + | engines: {node: '>=0.10.0'} |
|
| 4207 | + | dev: true |
|
| 4208 | + | ||
| 4209 | + | /npm-run-path/5.1.0: |
|
| 4210 | + | resolution: {integrity: sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==} |
|
| 4211 | + | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} |
|
| 4212 | + | dependencies: |
|
| 4213 | + | path-key: 4.0.0 |
|
| 4214 | + | ||
| 4215 | + | /object-hash/3.0.0: |
|
| 4216 | + | resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==} |
|
| 4217 | + | engines: {node: '>= 6'} |
|
| 4218 | + | dev: true |
|
| 4219 | + | ||
| 4220 | + | /object-inspect/1.12.3: |
|
| 4221 | + | resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==} |
|
| 4222 | + | dev: true |
|
| 4223 | + | ||
| 4224 | + | /object-is/1.1.5: |
|
| 4225 | + | resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==} |
|
| 4226 | + | engines: {node: '>= 0.4'} |
|
| 4227 | + | dependencies: |
|
| 4228 | + | call-bind: 1.0.2 |
|
| 4229 | + | define-properties: 1.1.4 |
|
| 4230 | + | dev: true |
|
| 4231 | + | ||
| 4232 | + | /object-keys/1.1.1: |
|
| 4233 | + | resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} |
|
| 4234 | + | engines: {node: '>= 0.4'} |
|
| 4235 | + | dev: true |
|
| 4236 | + | ||
| 4237 | + | /object.assign/4.1.4: |
|
| 4238 | + | resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==} |
|
| 4239 | + | engines: {node: '>= 0.4'} |
|
| 4240 | + | dependencies: |
|
| 4241 | + | call-bind: 1.0.2 |
|
| 4242 | + | define-properties: 1.1.4 |
|
| 4243 | + | has-symbols: 1.0.3 |
|
| 4244 | + | object-keys: 1.1.1 |
|
| 4245 | + | dev: true |
|
| 4246 | + | ||
| 4247 | + | /object.entries/1.1.6: |
|
| 4248 | + | resolution: {integrity: sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==} |
|
| 4249 | + | engines: {node: '>= 0.4'} |
|
| 4250 | + | dependencies: |
|
| 4251 | + | call-bind: 1.0.2 |
|
| 4252 | + | define-properties: 1.1.4 |
|
| 4253 | + | es-abstract: 1.21.1 |
|
| 4254 | + | dev: true |
|
| 4255 | + | ||
| 4256 | + | /object.fromentries/2.0.6: |
|
| 4257 | + | resolution: {integrity: sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==} |
|
| 4258 | + | engines: {node: '>= 0.4'} |
|
| 4259 | + | dependencies: |
|
| 4260 | + | call-bind: 1.0.2 |
|
| 4261 | + | define-properties: 1.1.4 |
|
| 4262 | + | es-abstract: 1.21.1 |
|
| 4263 | + | dev: true |
|
| 4264 | + | ||
| 4265 | + | /object.values/1.1.6: |
|
| 4266 | + | resolution: {integrity: sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==} |
|
| 4267 | + | engines: {node: '>= 0.4'} |
|
| 4268 | + | dependencies: |
|
| 4269 | + | call-bind: 1.0.2 |
|
| 4270 | + | define-properties: 1.1.4 |
|
| 4271 | + | es-abstract: 1.21.1 |
|
| 4272 | + | dev: true |
|
| 4273 | + | ||
| 4274 | + | /once/1.4.0: |
|
| 4275 | + | resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} |
|
| 4276 | + | dependencies: |
|
| 4277 | + | wrappy: 1.0.2 |
|
| 4278 | + | ||
| 4279 | + | /onetime/5.1.2: |
|
| 4280 | + | resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} |
|
| 4281 | + | engines: {node: '>=6'} |
|
| 4282 | + | dependencies: |
|
| 4283 | + | mimic-fn: 2.1.0 |
|
| 4284 | + | ||
| 4285 | + | /onetime/6.0.0: |
|
| 4286 | + | resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} |
|
| 4287 | + | engines: {node: '>=12'} |
|
| 4288 | + | dependencies: |
|
| 4289 | + | mimic-fn: 4.0.0 |
|
| 4290 | + | ||
| 4291 | + | /open/8.4.0: |
|
| 4292 | + | resolution: {integrity: sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==} |
|
| 4293 | + | engines: {node: '>=12'} |
|
| 4294 | + | dependencies: |
|
| 4295 | + | define-lazy-prop: 2.0.0 |
|
| 4296 | + | is-docker: 2.2.1 |
|
| 4297 | + | is-wsl: 2.2.0 |
|
| 4298 | + | ||
| 4299 | + | /optionator/0.9.1: |
|
| 4300 | + | resolution: {integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==} |
|
| 4301 | + | engines: {node: '>= 0.8.0'} |
|
| 4302 | + | dependencies: |
|
| 4303 | + | deep-is: 0.1.4 |
|
| 4304 | + | fast-levenshtein: 2.0.6 |
|
| 4305 | + | levn: 0.4.1 |
|
| 4306 | + | prelude-ls: 1.2.1 |
|
| 4307 | + | type-check: 0.4.0 |
|
| 4308 | + | word-wrap: 1.2.3 |
|
| 4309 | + | dev: true |
|
| 4310 | + | ||
| 4311 | + | /ora/6.1.2: |
|
| 4312 | + | resolution: {integrity: sha512-EJQ3NiP5Xo94wJXIzAyOtSb0QEIAUu7m8t6UZ9krbz0vAJqr92JpcK/lEXg91q6B9pEGqrykkd2EQplnifDSBw==} |
|
| 4313 | + | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} |
|
| 4314 | + | dependencies: |
|
| 4315 | + | bl: 5.1.0 |
|
| 4316 | + | chalk: 5.2.0 |
|
| 4317 | + | cli-cursor: 4.0.0 |
|
| 4318 | + | cli-spinners: 2.7.0 |
|
| 4319 | + | is-interactive: 2.0.0 |
|
| 4320 | + | is-unicode-supported: 1.3.0 |
|
| 4321 | + | log-symbols: 5.1.0 |
|
| 4322 | + | strip-ansi: 7.0.1 |
|
| 4323 | + | wcwidth: 1.0.1 |
|
| 4324 | + | ||
| 4325 | + | /p-limit/2.3.0: |
|
| 4326 | + | resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} |
|
| 4327 | + | engines: {node: '>=6'} |
|
| 4328 | + | dependencies: |
|
| 4329 | + | p-try: 2.2.0 |
|
| 4330 | + | ||
| 4331 | + | /p-limit/3.1.0: |
|
| 4332 | + | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} |
|
| 4333 | + | engines: {node: '>=10'} |
|
| 4334 | + | dependencies: |
|
| 4335 | + | yocto-queue: 0.1.0 |
|
| 4336 | + | ||
| 4337 | + | /p-locate/4.1.0: |
|
| 4338 | + | resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} |
|
| 4339 | + | engines: {node: '>=8'} |
|
| 4340 | + | dependencies: |
|
| 4341 | + | p-limit: 2.3.0 |
|
| 4342 | + | ||
| 4343 | + | /p-locate/5.0.0: |
|
| 4344 | + | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} |
|
| 4345 | + | engines: {node: '>=10'} |
|
| 4346 | + | dependencies: |
|
| 4347 | + | p-limit: 3.1.0 |
|
| 4348 | + | ||
| 4349 | + | /p-try/2.2.0: |
|
| 4350 | + | resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} |
|
| 4351 | + | engines: {node: '>=6'} |
|
| 4352 | + | ||
| 4353 | + | /parent-module/1.0.1: |
|
| 4354 | + | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} |
|
| 4355 | + | engines: {node: '>=6'} |
|
| 4356 | + | dependencies: |
|
| 4357 | + | callsites: 3.1.0 |
|
| 4358 | + | dev: true |
|
| 4359 | + | ||
| 4360 | + | /parse-entities/4.0.0: |
|
| 4361 | + | resolution: {integrity: sha512-5nk9Fn03x3rEhGaX1FU6IDwG/k+GxLXlFAkgrbM1asuAFl3BhdQWvASaIsmwWypRNcZKHPYnIuOSfIWEyEQnPQ==} |
|
| 4362 | + | dependencies: |
|
| 4363 | + | '@types/unist': 2.0.6 |
|
| 4364 | + | character-entities: 2.0.2 |
|
| 4365 | + | character-entities-legacy: 3.0.0 |
|
| 4366 | + | character-reference-invalid: 2.0.1 |
|
| 4367 | + | decode-named-character-reference: 1.0.2 |
|
| 4368 | + | is-alphanumerical: 2.0.1 |
|
| 4369 | + | is-decimal: 2.0.1 |
|
| 4370 | + | is-hexadecimal: 2.0.1 |
|
| 4371 | + | dev: true |
|
| 4372 | + | ||
| 4373 | + | /parse-json/5.2.0: |
|
| 4374 | + | resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} |
|
| 4375 | + | engines: {node: '>=8'} |
|
| 4376 | + | dependencies: |
|
| 4377 | + | '@babel/code-frame': 7.18.6 |
|
| 4378 | + | error-ex: 1.3.2 |
|
| 4379 | + | json-parse-even-better-errors: 2.3.1 |
|
| 4380 | + | lines-and-columns: 1.2.4 |
|
| 4381 | + | dev: true |
|
| 4382 | + | ||
| 4383 | + | /parse-latin/5.0.1: |
|
| 4384 | + | resolution: {integrity: sha512-b/K8ExXaWC9t34kKeDV8kGXBkXZ1HCSAZRYE7HR14eA1GlXX5L8iWhs8USJNhQU9q5ci413jCKF0gOyovvyRBg==} |
|
| 4385 | + | dependencies: |
|
| 4386 | + | nlcst-to-string: 3.1.1 |
|
| 4387 | + | unist-util-modify-children: 3.1.1 |
|
| 4388 | + | unist-util-visit-children: 2.0.2 |
|
| 4389 | + | ||
| 4390 | + | /parse5/6.0.1: |
|
| 4391 | + | resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==} |
|
| 4392 | + | ||
| 4393 | + | /path-exists/4.0.0: |
|
| 4394 | + | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} |
|
| 4395 | + | engines: {node: '>=8'} |
|
| 4396 | + | ||
| 4397 | + | /path-is-absolute/1.0.1: |
|
| 4398 | + | resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} |
|
| 4399 | + | engines: {node: '>=0.10.0'} |
|
| 4400 | + | dev: true |
|
| 4401 | + | ||
| 4402 | + | /path-key/3.1.1: |
|
| 4403 | + | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} |
|
| 4404 | + | engines: {node: '>=8'} |
|
| 4405 | + | ||
| 4406 | + | /path-key/4.0.0: |
|
| 4407 | + | resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==} |
|
| 4408 | + | engines: {node: '>=12'} |
|
| 4409 | + | ||
| 4410 | + | /path-parse/1.0.7: |
|
| 4411 | + | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} |
|
| 4412 | + | ||
| 4413 | + | /path-to-regexp/6.2.1: |
|
| 4414 | + | resolution: {integrity: sha512-JLyh7xT1kizaEvcaXOQwOc2/Yhw6KZOvPf1S8401UyLk86CU79LN3vl7ztXGm/pZ+YjoyAJ4rxmHwbkBXJX+yw==} |
|
| 4415 | + | ||
| 4416 | + | /path-type/4.0.0: |
|
| 4417 | + | resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} |
|
| 4418 | + | engines: {node: '>=8'} |
|
| 4419 | + | dev: true |
|
| 4420 | + | ||
| 4421 | + | /periscopic/3.1.0: |
|
| 4422 | + | resolution: {integrity: sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==} |
|
| 4423 | + | dependencies: |
|
| 4424 | + | '@types/estree': 1.0.0 |
|
| 4425 | + | estree-walker: 3.0.3 |
|
| 4426 | + | is-reference: 3.0.1 |
|
| 4427 | + | dev: true |
|
| 4428 | + | ||
| 4429 | + | /picocolors/1.0.0: |
|
| 4430 | + | resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} |
|
| 4431 | + | ||
| 4432 | + | /picomatch/2.3.1: |
|
| 4433 | + | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} |
|
| 4434 | + | engines: {node: '>=8.6'} |
|
| 4435 | + | ||
| 4436 | + | /pify/2.3.0: |
|
| 4437 | + | resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} |
|
| 4438 | + | engines: {node: '>=0.10.0'} |
|
| 4439 | + | dev: true |
|
| 4440 | + | ||
| 4441 | + | /pify/4.0.1: |
|
| 4442 | + | resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} |
|
| 4443 | + | engines: {node: '>=6'} |
|
| 4444 | + | ||
| 4445 | + | /pkg-dir/4.2.0: |
|
| 4446 | + | resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} |
|
| 4447 | + | engines: {node: '>=8'} |
|
| 4448 | + | dependencies: |
|
| 4449 | + | find-up: 4.1.0 |
|
| 4450 | + | ||
| 4451 | + | /postcss-html/1.5.0: |
|
| 4452 | + | resolution: {integrity: sha512-kCMRWJRHKicpA166kc2lAVUGxDZL324bkj/pVOb6RhjB0Z5Krl7mN0AsVkBhVIRZZirY0lyQXG38HCVaoKVNoA==} |
|
| 4453 | + | engines: {node: ^12 || >=14} |
|
| 4454 | + | dependencies: |
|
| 4455 | + | htmlparser2: 8.0.1 |
|
| 4456 | + | js-tokens: 8.0.1 |
|
| 4457 | + | postcss: 8.4.21 |
|
| 4458 | + | postcss-safe-parser: 6.0.0_postcss@8.4.21 |
|
| 4459 | + | dev: true |
|
| 4460 | + | ||
| 4461 | + | /postcss-import/14.1.0_postcss@8.4.21: |
|
| 4462 | + | resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==} |
|
| 4463 | + | engines: {node: '>=10.0.0'} |
|
| 4464 | + | peerDependencies: |
|
| 4465 | + | postcss: ^8.0.0 |
|
| 4466 | + | dependencies: |
|
| 4467 | + | postcss: 8.4.21 |
|
| 4468 | + | postcss-value-parser: 4.2.0 |
|
| 4469 | + | read-cache: 1.0.0 |
|
| 4470 | + | resolve: 1.22.1 |
|
| 4471 | + | dev: true |
|
| 4472 | + | ||
| 4473 | + | /postcss-js/4.0.0_postcss@8.4.21: |
|
| 4474 | + | resolution: {integrity: sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ==} |
|
| 4475 | + | engines: {node: ^12 || ^14 || >= 16} |
|
| 4476 | + | peerDependencies: |
|
| 4477 | + | postcss: ^8.3.3 |
|
| 4478 | + | dependencies: |
|
| 4479 | + | camelcase-css: 2.0.1 |
|
| 4480 | + | postcss: 8.4.21 |
|
| 4481 | + | dev: true |
|
| 4482 | + | ||
| 4483 | + | /postcss-load-config/3.1.4_postcss@8.4.21: |
|
| 4484 | + | resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==} |
|
| 4485 | + | engines: {node: '>= 10'} |
|
| 4486 | + | peerDependencies: |
|
| 4487 | + | postcss: '>=8.0.9' |
|
| 4488 | + | ts-node: '>=9.0.0' |
|
| 4489 | + | peerDependenciesMeta: |
|
| 4490 | + | postcss: |
|
| 4491 | + | optional: true |
|
| 4492 | + | ts-node: |
|
| 4493 | + | optional: true |
|
| 4494 | + | dependencies: |
|
| 4495 | + | lilconfig: 2.0.6 |
|
| 4496 | + | postcss: 8.4.21 |
|
| 4497 | + | yaml: 1.10.2 |
|
| 4498 | + | dev: true |
|
| 4499 | + | ||
| 4500 | + | /postcss-load-config/4.0.1_postcss@8.4.21: |
|
| 4501 | + | resolution: {integrity: sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==} |
|
| 4502 | + | engines: {node: '>= 14'} |
|
| 4503 | + | peerDependencies: |
|
| 4504 | + | postcss: '>=8.0.9' |
|
| 4505 | + | ts-node: '>=9.0.0' |
|
| 4506 | + | peerDependenciesMeta: |
|
| 4507 | + | postcss: |
|
| 4508 | + | optional: true |
|
| 4509 | + | ts-node: |
|
| 4510 | + | optional: true |
|
| 4511 | + | dependencies: |
|
| 4512 | + | lilconfig: 2.0.6 |
|
| 4513 | + | postcss: 8.4.21 |
|
| 4514 | + | yaml: 2.2.1 |
|
| 4515 | + | dev: true |
|
| 4516 | + | ||
| 4517 | + | /postcss-media-query-parser/0.2.3: |
|
| 4518 | + | resolution: {integrity: sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==} |
|
| 4519 | + | dev: true |
|
| 4520 | + | ||
| 4521 | + | /postcss-nested/6.0.0_postcss@8.4.21: |
|
| 4522 | + | resolution: {integrity: sha512-0DkamqrPcmkBDsLn+vQDIrtkSbNkv5AD/M322ySo9kqFkCIYklym2xEmWkwo+Y3/qZo34tzEPNUw4y7yMCdv5w==} |
|
| 4523 | + | engines: {node: '>=12.0'} |
|
| 4524 | + | peerDependencies: |
|
| 4525 | + | postcss: ^8.2.14 |
|
| 4526 | + | dependencies: |
|
| 4527 | + | postcss: 8.4.21 |
|
| 4528 | + | postcss-selector-parser: 6.0.11 |
|
| 4529 | + | dev: true |
|
| 4530 | + | ||
| 4531 | + | /postcss-resolve-nested-selector/0.1.1: |
|
| 4532 | + | resolution: {integrity: sha512-HvExULSwLqHLgUy1rl3ANIqCsvMS0WHss2UOsXhXnQaZ9VCc2oBvIpXrl00IUFT5ZDITME0o6oiXeiHr2SAIfw==} |
|
| 4533 | + | dev: true |
|
| 4534 | + | ||
| 4535 | + | /postcss-safe-parser/6.0.0_postcss@8.4.21: |
|
| 4536 | + | resolution: {integrity: sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==} |
|
| 4537 | + | engines: {node: '>=12.0'} |
|
| 4538 | + | peerDependencies: |
|
| 4539 | + | postcss: ^8.3.3 |
|
| 4540 | + | dependencies: |
|
| 4541 | + | postcss: 8.4.21 |
|
| 4542 | + | dev: true |
|
| 4543 | + | ||
| 4544 | + | /postcss-selector-parser/6.0.10: |
|
| 4545 | + | resolution: {integrity: sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==} |
|
| 4546 | + | engines: {node: '>=4'} |
|
| 4547 | + | dependencies: |
|
| 4548 | + | cssesc: 3.0.0 |
|
| 4549 | + | util-deprecate: 1.0.2 |
|
| 4550 | + | dev: true |
|
| 4551 | + | ||
| 4552 | + | /postcss-selector-parser/6.0.11: |
|
| 4553 | + | resolution: {integrity: sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==} |
|
| 4554 | + | engines: {node: '>=4'} |
|
| 4555 | + | dependencies: |
|
| 4556 | + | cssesc: 3.0.0 |
|
| 4557 | + | util-deprecate: 1.0.2 |
|
| 4558 | + | dev: true |
|
| 4559 | + | ||
| 4560 | + | /postcss-value-parser/4.2.0: |
|
| 4561 | + | resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} |
|
| 4562 | + | ||
| 4563 | + | /postcss/8.4.21: |
|
| 4564 | + | resolution: {integrity: sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==} |
|
| 4565 | + | engines: {node: ^10 || ^12 || >=14} |
|
| 4566 | + | dependencies: |
|
| 4567 | + | nanoid: 3.3.4 |
|
| 4568 | + | picocolors: 1.0.0 |
|
| 4569 | + | source-map-js: 1.0.2 |
|
| 4570 | + | ||
| 4571 | + | /prebuild-install/7.1.1: |
|
| 4572 | + | resolution: {integrity: sha512-jAXscXWMcCK8GgCoHOfIr0ODh5ai8mj63L2nWrjuAgXE6tDyYGnx4/8o/rCgU+B4JSyZBKbeZqzhtwtC3ovxjw==} |
|
| 4573 | + | engines: {node: '>=10'} |
|
| 4574 | + | hasBin: true |
|
| 4575 | + | dependencies: |
|
| 4576 | + | detect-libc: 2.0.1 |
|
| 4577 | + | expand-template: 2.0.3 |
|
| 4578 | + | github-from-package: 0.0.0 |
|
| 4579 | + | minimist: 1.2.7 |
|
| 4580 | + | mkdirp-classic: 0.5.3 |
|
| 4581 | + | napi-build-utils: 1.0.2 |
|
| 4582 | + | node-abi: 3.31.0 |
|
| 4583 | + | pump: 3.0.0 |
|
| 4584 | + | rc: 1.2.8 |
|
| 4585 | + | simple-get: 4.0.1 |
|
| 4586 | + | tar-fs: 2.1.1 |
|
| 4587 | + | tunnel-agent: 0.6.0 |
|
| 4588 | + | ||
| 4589 | + | /preferred-pm/3.0.3: |
|
| 4590 | + | resolution: {integrity: sha512-+wZgbxNES/KlJs9q40F/1sfOd/j7f1O9JaHcW5Dsn3aUUOZg3L2bjpVUcKV2jvtElYfoTuQiNeMfQJ4kwUAhCQ==} |
|
| 4591 | + | engines: {node: '>=10'} |
|
| 4592 | + | dependencies: |
|
| 4593 | + | find-up: 5.0.0 |
|
| 4594 | + | find-yarn-workspace-root2: 1.2.16 |
|
| 4595 | + | path-exists: 4.0.0 |
|
| 4596 | + | which-pm: 2.0.0 |
|
| 4597 | + | ||
| 4598 | + | /prelude-ls/1.2.1: |
|
| 4599 | + | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} |
|
| 4600 | + | engines: {node: '>= 0.8.0'} |
|
| 4601 | + | dev: true |
|
| 4602 | + | ||
| 4603 | + | /prettier-linter-helpers/1.0.0: |
|
| 4604 | + | resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==} |
|
| 4605 | + | engines: {node: '>=6.0.0'} |
|
| 4606 | + | dependencies: |
|
| 4607 | + | fast-diff: 1.2.0 |
|
| 4608 | + | dev: true |
|
| 4609 | + | ||
| 4610 | + | /prettier-plugin-astro/0.7.2: |
|
| 4611 | + | resolution: {integrity: sha512-mmifnkG160BtC727gqoimoxnZT/dwr8ASxpoGGl6EHevhfblSOeu+pwH1LAm5Qu1MynizktztFujHHaijLCkww==} |
|
| 4612 | + | engines: {node: ^14.15.0 || >=16.0.0, pnpm: '>=7.14.0'} |
|
| 4613 | + | dependencies: |
|
| 4614 | + | '@astrojs/compiler': 0.31.4 |
|
| 4615 | + | prettier: 2.8.3 |
|
| 4616 | + | sass-formatter: 0.7.5 |
|
| 4617 | + | synckit: 0.8.5 |
|
| 4618 | + | ||
| 4619 | + | /prettier-plugin-astro/0.8.0: |
|
| 4620 | + | resolution: {integrity: sha512-kt9wk33J7HvFGwFaHb8piwy4zbUmabC8Nu+qCw493jhe96YkpjscqGBPy4nJ9TPy9pd7+kEx1zM81rp+MIdrXg==} |
|
| 4621 | + | engines: {node: ^14.15.0 || >=16.0.0, pnpm: '>=7.14.0'} |
|
| 4622 | + | dependencies: |
|
| 4623 | + | '@astrojs/compiler': 1.0.1 |
|
| 4624 | + | prettier: 2.8.3 |
|
| 4625 | + | sass-formatter: 0.7.5 |
|
| 4626 | + | synckit: 0.8.5 |
|
| 4627 | + | dev: true |
|
| 4628 | + | ||
| 4629 | + | /prettier-plugin-tailwindcss/0.2.2_s2resyd53c3nawyksvkzb3naxm: |
|
| 4630 | + | resolution: {integrity: sha512-5RjUbWRe305pUpc48MosoIp6uxZvZxrM6GyOgsbGLTce+ehePKNm7ziW2dLG2air9aXbGuXlHVSQQw4Lbosq3w==} |
|
| 4631 | + | engines: {node: '>=12.17.0'} |
|
| 4632 | + | peerDependencies: |
|
| 4633 | + | '@prettier/plugin-php': '*' |
|
| 4634 | + | '@prettier/plugin-pug': '*' |
|
| 4635 | + | '@shopify/prettier-plugin-liquid': '*' |
|
| 4636 | + | '@shufo/prettier-plugin-blade': '*' |
|
| 4637 | + | '@trivago/prettier-plugin-sort-imports': '*' |
|
| 4638 | + | prettier: '>=2.2.0' |
|
| 4639 | + | prettier-plugin-astro: '*' |
|
| 4640 | + | prettier-plugin-css-order: '*' |
|
| 4641 | + | prettier-plugin-import-sort: '*' |
|
| 4642 | + | prettier-plugin-jsdoc: '*' |
|
| 4643 | + | prettier-plugin-organize-attributes: '*' |
|
| 4644 | + | prettier-plugin-organize-imports: '*' |
|
| 4645 | + | prettier-plugin-style-order: '*' |
|
| 4646 | + | prettier-plugin-svelte: '*' |
|
| 4647 | + | prettier-plugin-twig-melody: '*' |
|
| 4648 | + | peerDependenciesMeta: |
|
| 4649 | + | '@prettier/plugin-php': |
|
| 4650 | + | optional: true |
|
| 4651 | + | '@prettier/plugin-pug': |
|
| 4652 | + | optional: true |
|
| 4653 | + | '@shopify/prettier-plugin-liquid': |
|
| 4654 | + | optional: true |
|
| 4655 | + | '@shufo/prettier-plugin-blade': |
|
| 4656 | + | optional: true |
|
| 4657 | + | '@trivago/prettier-plugin-sort-imports': |
|
| 4658 | + | optional: true |
|
| 4659 | + | prettier-plugin-astro: |
|
| 4660 | + | optional: true |
|
| 4661 | + | prettier-plugin-css-order: |
|
| 4662 | + | optional: true |
|
| 4663 | + | prettier-plugin-import-sort: |
|
| 4664 | + | optional: true |
|
| 4665 | + | prettier-plugin-jsdoc: |
|
| 4666 | + | optional: true |
|
| 4667 | + | prettier-plugin-organize-attributes: |
|
| 4668 | + | optional: true |
|
| 4669 | + | prettier-plugin-organize-imports: |
|
| 4670 | + | optional: true |
|
| 4671 | + | prettier-plugin-style-order: |
|
| 4672 | + | optional: true |
|
| 4673 | + | prettier-plugin-svelte: |
|
| 4674 | + | optional: true |
|
| 4675 | + | prettier-plugin-twig-melody: |
|
| 4676 | + | optional: true |
|
| 4677 | + | dependencies: |
|
| 4678 | + | prettier: 2.8.3 |
|
| 4679 | + | prettier-plugin-astro: 0.8.0 |
|
| 4680 | + | dev: true |
|
| 4681 | + | ||
| 4682 | + | /prettier/2.8.3: |
|
| 4683 | + | resolution: {integrity: sha512-tJ/oJ4amDihPoufT5sM0Z1SKEuKay8LfVAMlbbhnnkvt6BUserZylqo2PN+p9KeljLr0OHa2rXHU1T8reeoTrw==} |
|
| 4684 | + | engines: {node: '>=10.13.0'} |
|
| 4685 | + | hasBin: true |
|
| 4686 | + | ||
| 4687 | + | /prismjs/1.29.0: |
|
| 4688 | + | resolution: {integrity: sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==} |
|
| 4689 | + | engines: {node: '>=6'} |
|
| 4690 | + | ||
| 4691 | + | /prompts/2.4.2: |
|
| 4692 | + | resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} |
|
| 4693 | + | engines: {node: '>= 6'} |
|
| 4694 | + | dependencies: |
|
| 4695 | + | kleur: 3.0.3 |
|
| 4696 | + | sisteransi: 1.0.5 |
|
| 4697 | + | ||
| 4698 | + | /property-information/6.2.0: |
|
| 4699 | + | resolution: {integrity: sha512-kma4U7AFCTwpqq5twzC1YVIDXSqg6qQK6JN0smOw8fgRy1OkMi0CYSzFmsy6dnqSenamAtj0CyXMUJ1Mf6oROg==} |
|
| 4700 | + | ||
| 4701 | + | /pump/3.0.0: |
|
| 4702 | + | resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==} |
|
| 4703 | + | dependencies: |
|
| 4704 | + | end-of-stream: 1.4.4 |
|
| 4705 | + | once: 1.4.0 |
|
| 4706 | + | ||
| 4707 | + | /punycode/2.3.0: |
|
| 4708 | + | resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==} |
|
| 4709 | + | engines: {node: '>=6'} |
|
| 4710 | + | dev: true |
|
| 4711 | + | ||
| 4712 | + | /queue-microtask/1.2.3: |
|
| 4713 | + | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} |
|
| 4714 | + | ||
| 4715 | + | /queue/6.0.2: |
|
| 4716 | + | resolution: {integrity: sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==} |
|
| 4717 | + | dependencies: |
|
| 4718 | + | inherits: 2.0.4 |
|
| 4719 | + | dev: true |
|
| 4720 | + | ||
| 4721 | + | /quick-lru/4.0.1: |
|
| 4722 | + | resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==} |
|
| 4723 | + | engines: {node: '>=8'} |
|
| 4724 | + | dev: true |
|
| 4725 | + | ||
| 4726 | + | /quick-lru/5.1.1: |
|
| 4727 | + | resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==} |
|
| 4728 | + | engines: {node: '>=10'} |
|
| 4729 | + | dev: true |
|
| 4730 | + | ||
| 4731 | + | /rc/1.2.8: |
|
| 4732 | + | resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} |
|
| 4733 | + | hasBin: true |
|
| 4734 | + | dependencies: |
|
| 4735 | + | deep-extend: 0.6.0 |
|
| 4736 | + | ini: 1.3.8 |
|
| 4737 | + | minimist: 1.2.7 |
|
| 4738 | + | strip-json-comments: 2.0.1 |
|
| 4739 | + | ||
| 4740 | + | /read-cache/1.0.0: |
|
| 4741 | + | resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} |
|
| 4742 | + | dependencies: |
|
| 4743 | + | pify: 2.3.0 |
|
| 4744 | + | dev: true |
|
| 4745 | + | ||
| 4746 | + | /read-pkg-up/7.0.1: |
|
| 4747 | + | resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} |
|
| 4748 | + | engines: {node: '>=8'} |
|
| 4749 | + | dependencies: |
|
| 4750 | + | find-up: 4.1.0 |
|
| 4751 | + | read-pkg: 5.2.0 |
|
| 4752 | + | type-fest: 0.8.1 |
|
| 4753 | + | dev: true |
|
| 4754 | + | ||
| 4755 | + | /read-pkg/5.2.0: |
|
| 4756 | + | resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} |
|
| 4757 | + | engines: {node: '>=8'} |
|
| 4758 | + | dependencies: |
|
| 4759 | + | '@types/normalize-package-data': 2.4.1 |
|
| 4760 | + | normalize-package-data: 2.5.0 |
|
| 4761 | + | parse-json: 5.2.0 |
|
| 4762 | + | type-fest: 0.6.0 |
|
| 4763 | + | dev: true |
|
| 4764 | + | ||
| 4765 | + | /readable-stream/3.6.0: |
|
| 4766 | + | resolution: {integrity: sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==} |
|
| 4767 | + | engines: {node: '>= 6'} |
|
| 4768 | + | dependencies: |
|
| 4769 | + | inherits: 2.0.4 |
|
| 4770 | + | string_decoder: 1.3.0 |
|
| 4771 | + | util-deprecate: 1.0.2 |
|
| 4772 | + | ||
| 4773 | + | /readdirp/3.6.0: |
|
| 4774 | + | resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} |
|
| 4775 | + | engines: {node: '>=8.10.0'} |
|
| 4776 | + | dependencies: |
|
| 4777 | + | picomatch: 2.3.1 |
|
| 4778 | + | dev: true |
|
| 4779 | + | ||
| 4780 | + | /redent/3.0.0: |
|
| 4781 | + | resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} |
|
| 4782 | + | engines: {node: '>=8'} |
|
| 4783 | + | dependencies: |
|
| 4784 | + | indent-string: 4.0.0 |
|
| 4785 | + | strip-indent: 3.0.0 |
|
| 4786 | + | dev: true |
|
| 4787 | + | ||
| 4788 | + | /regenerator-runtime/0.13.11: |
|
| 4789 | + | resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==} |
|
| 4790 | + | dev: true |
|
| 4791 | + | ||
| 4792 | + | /regexp.prototype.flags/1.4.3: |
|
| 4793 | + | resolution: {integrity: sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==} |
|
| 4794 | + | engines: {node: '>= 0.4'} |
|
| 4795 | + | dependencies: |
|
| 4796 | + | call-bind: 1.0.2 |
|
| 4797 | + | define-properties: 1.1.4 |
|
| 4798 | + | functions-have-names: 1.2.3 |
|
| 4799 | + | dev: true |
|
| 4800 | + | ||
| 4801 | + | /regexpp/3.2.0: |
|
| 4802 | + | resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} |
|
| 4803 | + | engines: {node: '>=8'} |
|
| 4804 | + | dev: true |
|
| 4805 | + | ||
| 4806 | + | /rehype-parse/8.0.4: |
|
| 4807 | + | resolution: {integrity: sha512-MJJKONunHjoTh4kc3dsM1v3C9kGrrxvA3U8PxZlP2SjH8RNUSrb+lF7Y0KVaUDnGH2QZ5vAn7ulkiajM9ifuqg==} |
|
| 4808 | + | dependencies: |
|
| 4809 | + | '@types/hast': 2.3.4 |
|
| 4810 | + | hast-util-from-parse5: 7.1.1 |
|
| 4811 | + | parse5: 6.0.1 |
|
| 4812 | + | unified: 10.1.2 |
|
| 4813 | + | ||
| 4814 | + | /rehype-raw/6.1.1: |
|
| 4815 | + | resolution: {integrity: sha512-d6AKtisSRtDRX4aSPsJGTfnzrX2ZkHQLE5kiUuGOeEoLpbEulFF4hj0mLPbsa+7vmguDKOVVEQdHKDSwoaIDsQ==} |
|
| 4816 | + | dependencies: |
|
| 4817 | + | '@types/hast': 2.3.4 |
|
| 4818 | + | hast-util-raw: 7.2.3 |
|
| 4819 | + | unified: 10.1.2 |
|
| 4820 | + | ||
| 4821 | + | /rehype-stringify/9.0.3: |
|
| 4822 | + | resolution: {integrity: sha512-kWiZ1bgyWlgOxpqD5HnxShKAdXtb2IUljn3hQAhySeak6IOQPPt6DeGnsIh4ixm7yKJWzm8TXFuC/lPfcWHJqw==} |
|
| 4823 | + | dependencies: |
|
| 4824 | + | '@types/hast': 2.3.4 |
|
| 4825 | + | hast-util-to-html: 8.0.4 |
|
| 4826 | + | unified: 10.1.2 |
|
| 4827 | + | ||
| 4828 | + | /rehype/12.0.1: |
|
| 4829 | + | resolution: {integrity: sha512-ey6kAqwLM3X6QnMDILJthGvG1m1ULROS9NT4uG9IDCuv08SFyLlreSuvOa//DgEvbXx62DS6elGVqusWhRUbgw==} |
|
| 4830 | + | dependencies: |
|
| 4831 | + | '@types/hast': 2.3.4 |
|
| 4832 | + | rehype-parse: 8.0.4 |
|
| 4833 | + | rehype-stringify: 9.0.3 |
|
| 4834 | + | unified: 10.1.2 |
|
| 4835 | + | ||
| 4836 | + | /remark-frontmatter/4.0.1: |
|
| 4837 | + | resolution: {integrity: sha512-38fJrB0KnmD3E33a5jZC/5+gGAC2WKNiPw1/fdXJvijBlhA7RCsvJklrYJakS0HedninvaCYW8lQGf9C918GfA==} |
|
| 4838 | + | dependencies: |
|
| 4839 | + | '@types/mdast': 3.0.10 |
|
| 4840 | + | mdast-util-frontmatter: 1.0.1 |
|
| 4841 | + | micromark-extension-frontmatter: 1.0.0 |
|
| 4842 | + | unified: 10.1.2 |
|
| 4843 | + | dev: true |
|
| 4844 | + | ||
| 4845 | + | /remark-gfm/3.0.1: |
|
| 4846 | + | resolution: {integrity: sha512-lEFDoi2PICJyNrACFOfDD3JlLkuSbOa5Wd8EPt06HUdptv8Gn0bxYTdbU/XXQ3swAPkEaGxxPN9cbnMHvVu1Ig==} |
|
| 4847 | + | dependencies: |
|
| 4848 | + | '@types/mdast': 3.0.10 |
|
| 4849 | + | mdast-util-gfm: 2.0.1 |
|
| 4850 | + | micromark-extension-gfm: 2.0.1 |
|
| 4851 | + | unified: 10.1.2 |
|
| 4852 | + | transitivePeerDependencies: |
|
| 4853 | + | - supports-color |
|
| 4854 | + | ||
| 4855 | + | /remark-mdx/2.2.1: |
|
| 4856 | + | resolution: {integrity: sha512-R9wcN+/THRXTKyRBp6Npo/mcbGA2iT3N4G8qUqLA5pOEg7kBidHv8K2hHidCMYZ6DXmwK18umu0K4cicgA2PPQ==} |
|
| 4857 | + | dependencies: |
|
| 4858 | + | mdast-util-mdx: 2.0.0 |
|
| 4859 | + | micromark-extension-mdxjs: 1.0.0 |
|
| 4860 | + | transitivePeerDependencies: |
|
| 4861 | + | - supports-color |
|
| 4862 | + | dev: true |
|
| 4863 | + | ||
| 4864 | + | /remark-parse/10.0.1: |
|
| 4865 | + | resolution: {integrity: sha512-1fUyHr2jLsVOkhbvPRBJ5zTKZZyD6yZzYaWCS6BPBdQ8vEMBCH+9zNCDA6tET/zHCi/jLqjCWtlJZUPk+DbnFw==} |
|
| 4866 | + | dependencies: |
|
| 4867 | + | '@types/mdast': 3.0.10 |
|
| 4868 | + | mdast-util-from-markdown: 1.3.0 |
|
| 4869 | + | unified: 10.1.2 |
|
| 4870 | + | transitivePeerDependencies: |
|
| 4871 | + | - supports-color |
|
| 4872 | + | ||
| 4873 | + | /remark-rehype/10.1.0: |
|
| 4874 | + | resolution: {integrity: sha512-EFmR5zppdBp0WQeDVZ/b66CWJipB2q2VLNFMabzDSGR66Z2fQii83G5gTBbgGEnEEA0QRussvrFHxk1HWGJskw==} |
|
| 4875 | + | dependencies: |
|
| 4876 | + | '@types/hast': 2.3.4 |
|
| 4877 | + | '@types/mdast': 3.0.10 |
|
| 4878 | + | mdast-util-to-hast: 12.2.6 |
|
| 4879 | + | unified: 10.1.2 |
|
| 4880 | + | ||
| 4881 | + | /remark-smartypants/2.0.0: |
|
| 4882 | + | resolution: {integrity: sha512-Rc0VDmr/yhnMQIz8n2ACYXlfw/P/XZev884QU1I5u+5DgJls32o97Vc1RbK3pfumLsJomS2yy8eT4Fxj/2MDVA==} |
|
| 4883 | + | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} |
|
| 4884 | + | dependencies: |
|
| 4885 | + | retext: 8.1.0 |
|
| 4886 | + | retext-smartypants: 5.2.0 |
|
| 4887 | + | unist-util-visit: 4.1.2 |
|
| 4888 | + | ||
| 4889 | + | /require-from-string/2.0.2: |
|
| 4890 | + | resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} |
|
| 4891 | + | engines: {node: '>=0.10.0'} |
|
| 4892 | + | dev: true |
|
| 4893 | + | ||
| 4894 | + | /resolve-from/4.0.0: |
|
| 4895 | + | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} |
|
| 4896 | + | engines: {node: '>=4'} |
|
| 4897 | + | dev: true |
|
| 4898 | + | ||
| 4899 | + | /resolve-from/5.0.0: |
|
| 4900 | + | resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} |
|
| 4901 | + | engines: {node: '>=8'} |
|
| 4902 | + | dev: true |
|
| 4903 | + | ||
| 4904 | + | /resolve/1.22.1: |
|
| 4905 | + | resolution: {integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==} |
|
| 4906 | + | hasBin: true |
|
| 4907 | + | dependencies: |
|
| 4908 | + | is-core-module: 2.11.0 |
|
| 4909 | + | path-parse: 1.0.7 |
|
| 4910 | + | supports-preserve-symlinks-flag: 1.0.0 |
|
| 4911 | + | ||
| 4912 | + | /restore-cursor/4.0.0: |
|
| 4913 | + | resolution: {integrity: sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==} |
|
| 4914 | + | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} |
|
| 4915 | + | dependencies: |
|
| 4916 | + | onetime: 5.1.2 |
|
| 4917 | + | signal-exit: 3.0.7 |
|
| 4918 | + | ||
| 4919 | + | /retext-latin/3.1.0: |
|
| 4920 | + | resolution: {integrity: sha512-5MrD1tuebzO8ppsja5eEu+ZbBeUNCjoEarn70tkXOS7Bdsdf6tNahsv2bY0Z8VooFF6cw7/6S+d3yI/TMlMVVQ==} |
|
| 4921 | + | dependencies: |
|
| 4922 | + | '@types/nlcst': 1.0.0 |
|
| 4923 | + | parse-latin: 5.0.1 |
|
| 4924 | + | unherit: 3.0.1 |
|
| 4925 | + | unified: 10.1.2 |
|
| 4926 | + | ||
| 4927 | + | /retext-smartypants/5.2.0: |
|
| 4928 | + | resolution: {integrity: sha512-Do8oM+SsjrbzT2UNIKgheP0hgUQTDDQYyZaIY3kfq0pdFzoPk+ZClYJ+OERNXveog4xf1pZL4PfRxNoVL7a/jw==} |
|
| 4929 | + | dependencies: |
|
| 4930 | + | '@types/nlcst': 1.0.0 |
|
| 4931 | + | nlcst-to-string: 3.1.1 |
|
| 4932 | + | unified: 10.1.2 |
|
| 4933 | + | unist-util-visit: 4.1.2 |
|
| 4934 | + | ||
| 4935 | + | /retext-stringify/3.1.0: |
|
| 4936 | + | resolution: {integrity: sha512-767TLOaoXFXyOnjx/EggXlb37ZD2u4P1n0GJqVdpipqACsQP+20W+BNpMYrlJkq7hxffnFk+jc6mAK9qrbuB8w==} |
|
| 4937 | + | dependencies: |
|
| 4938 | + | '@types/nlcst': 1.0.0 |
|
| 4939 | + | nlcst-to-string: 3.1.1 |
|
| 4940 | + | unified: 10.1.2 |
|
| 4941 | + | ||
| 4942 | + | /retext/8.1.0: |
|
| 4943 | + | resolution: {integrity: sha512-N9/Kq7YTn6ZpzfiGW45WfEGJqFf1IM1q8OsRa1CGzIebCJBNCANDRmOrholiDRGKo/We7ofKR4SEvcGAWEMD3Q==} |
|
| 4944 | + | dependencies: |
|
| 4945 | + | '@types/nlcst': 1.0.0 |
|
| 4946 | + | retext-latin: 3.1.0 |
|
| 4947 | + | retext-stringify: 3.1.0 |
|
| 4948 | + | unified: 10.1.2 |
|
| 4949 | + | ||
| 4950 | + | /reusify/1.0.4: |
|
| 4951 | + | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} |
|
| 4952 | + | engines: {iojs: '>=1.0.0', node: '>=0.10.0'} |
|
| 4953 | + | ||
| 4954 | + | /rimraf/3.0.2: |
|
| 4955 | + | resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} |
|
| 4956 | + | hasBin: true |
|
| 4957 | + | dependencies: |
|
| 4958 | + | glob: 7.2.3 |
|
| 4959 | + | dev: true |
|
| 4960 | + | ||
| 4961 | + | /rollup/3.12.0: |
|
| 4962 | + | resolution: {integrity: sha512-4MZ8kA2HNYahIjz63rzrMMRvDqQDeS9LoriJvMuV0V6zIGysP36e9t4yObUfwdT9h/szXoHQideICftcdZklWg==} |
|
| 4963 | + | engines: {node: '>=14.18.0', npm: '>=8.0.0'} |
|
| 4964 | + | hasBin: true |
|
| 4965 | + | optionalDependencies: |
|
| 4966 | + | fsevents: 2.3.2 |
|
| 4967 | + | ||
| 4968 | + | /run-parallel/1.2.0: |
|
| 4969 | + | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} |
|
| 4970 | + | dependencies: |
|
| 4971 | + | queue-microtask: 1.2.3 |
|
| 4972 | + | ||
| 4973 | + | /s.color/0.0.15: |
|
| 4974 | + | resolution: {integrity: sha512-AUNrbEUHeKY8XsYr/DYpl+qk5+aM+DChopnWOPEzn8YKzOhv4l2zH6LzZms3tOZP3wwdOyc0RmTciyi46HLIuA==} |
|
| 4975 | + | ||
| 4976 | + | /sade/1.8.1: |
|
| 4977 | + | resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==} |
|
| 4978 | + | engines: {node: '>=6'} |
|
| 4979 | + | dependencies: |
|
| 4980 | + | mri: 1.2.0 |
|
| 4981 | + | ||
| 4982 | + | /safe-buffer/5.2.1: |
|
| 4983 | + | resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} |
|
| 4984 | + | ||
| 4985 | + | /safe-regex-test/1.0.0: |
|
| 4986 | + | resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==} |
|
| 4987 | + | dependencies: |
|
| 4988 | + | call-bind: 1.0.2 |
|
| 4989 | + | get-intrinsic: 1.2.0 |
|
| 4990 | + | is-regex: 1.1.4 |
|
| 4991 | + | dev: true |
|
| 4992 | + | ||
| 4993 | + | /sass-formatter/0.7.5: |
|
| 4994 | + | resolution: {integrity: sha512-NKFP8ddjhUYi6A/iD1cEtzkEs91U61kzqe3lY9SVNuvX7LGc88xnEN0mmsWL7Ol//YTi2GL/ol7b9XZ2+hgXuA==} |
|
| 4995 | + | dependencies: |
|
| 4996 | + | suf-log: 2.5.3 |
|
| 4997 | + | ||
| 4998 | + | /satori-html/0.3.2: |
|
| 4999 | + | resolution: {integrity: sha512-wjTh14iqADFKDK80e51/98MplTGfxz2RmIzh0GqShlf4a67+BooLywF17TvJPD6phO0Hxm7Mf1N5LtRYvdkYRA==} |
|
| 5000 | + | dependencies: |
|
| 5001 | + | ultrahtml: 1.2.0 |
|
| 5002 | + | dev: false |
|
| 5003 | + | ||
| 5004 | + | /satori/0.1.2: |
|
| 5005 | + | resolution: {integrity: sha512-1P08+PyNUzJ2P0bdI9reSJw+B/Whv9nThvoX4HAiAp9lNNTHtwtN9525TuEtELml7AEEvECpeOvBqMkAxcuQeQ==} |
|
| 5006 | + | engines: {node: '>=16'} |
|
| 5007 | + | dependencies: |
|
| 5008 | + | '@shuding/opentype.js': 1.4.0-beta.0 |
|
| 5009 | + | css-background-parser: 0.1.0 |
|
| 5010 | + | css-box-shadow: 1.0.0-3 |
|
| 5011 | + | css-to-react-native: 3.1.0 |
|
| 5012 | + | emoji-regex: 10.2.1 |
|
| 5013 | + | postcss-value-parser: 4.2.0 |
|
| 5014 | + | yoga-wasm-web: 0.3.0 |
|
| 5015 | + | dev: false |
|
| 5016 | + | ||
| 5017 | + | /sax/1.2.4: |
|
| 5018 | + | resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==} |
|
| 5019 | + | dev: true |
|
| 5020 | + | ||
| 5021 | + | /section-matter/1.0.0: |
|
| 5022 | + | resolution: {integrity: sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==} |
|
| 5023 | + | engines: {node: '>=4'} |
|
| 5024 | + | dependencies: |
|
| 5025 | + | extend-shallow: 2.0.1 |
|
| 5026 | + | kind-of: 6.0.3 |
|
| 5027 | + | ||
| 5028 | + | /semver/5.7.1: |
|
| 5029 | + | resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==} |
|
| 5030 | + | hasBin: true |
|
| 5031 | + | dev: true |
|
| 5032 | + | ||
| 5033 | + | /semver/6.3.0: |
|
| 5034 | + | resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==} |
|
| 5035 | + | hasBin: true |
|
| 5036 | + | ||
| 5037 | + | /semver/7.3.8: |
|
| 5038 | + | resolution: {integrity: sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==} |
|
| 5039 | + | engines: {node: '>=10'} |
|
| 5040 | + | hasBin: true |
|
| 5041 | + | dependencies: |
|
| 5042 | + | lru-cache: 6.0.0 |
|
| 5043 | + | ||
| 5044 | + | /server-destroy/1.0.1: |
|
| 5045 | + | resolution: {integrity: sha512-rb+9B5YBIEzYcD6x2VKidaa+cqYBJQKnU4oe4E3ANwRRN56yk/ua1YCJT1n21NTS8w6CcOclAKNP3PhdCXKYtQ==} |
|
| 5046 | + | ||
| 5047 | + | /sharp/0.31.3: |
|
| 5048 | + | resolution: {integrity: sha512-XcR4+FCLBFKw1bdB+GEhnUNXNXvnt0tDo4WsBsraKymuo/IAuPuCBVAL2wIkUw2r/dwFW5Q5+g66Kwl2dgDFVg==} |
|
| 5049 | + | engines: {node: '>=14.15.0'} |
|
| 5050 | + | requiresBuild: true |
|
| 5051 | + | dependencies: |
|
| 5052 | + | color: 4.2.3 |
|
| 5053 | + | detect-libc: 2.0.1 |
|
| 5054 | + | node-addon-api: 5.1.0 |
|
| 5055 | + | prebuild-install: 7.1.1 |
|
| 5056 | + | semver: 7.3.8 |
|
| 5057 | + | simple-get: 4.0.1 |
|
| 5058 | + | tar-fs: 2.1.1 |
|
| 5059 | + | tunnel-agent: 0.6.0 |
|
| 5060 | + | ||
| 5061 | + | /shebang-command/2.0.0: |
|
| 5062 | + | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} |
|
| 5063 | + | engines: {node: '>=8'} |
|
| 5064 | + | dependencies: |
|
| 5065 | + | shebang-regex: 3.0.0 |
|
| 5066 | + | ||
| 5067 | + | /shebang-regex/3.0.0: |
|
| 5068 | + | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} |
|
| 5069 | + | engines: {node: '>=8'} |
|
| 5070 | + | ||
| 5071 | + | /shiki/0.11.1: |
|
| 5072 | + | resolution: {integrity: sha512-EugY9VASFuDqOexOgXR18ZV+TbFrQHeCpEYaXamO+SZlsnT/2LxuLBX25GGtIrwaEVFXUAbUQ601SWE2rMwWHA==} |
|
| 5073 | + | dependencies: |
|
| 5074 | + | jsonc-parser: 3.2.0 |
|
| 5075 | + | vscode-oniguruma: 1.7.0 |
|
| 5076 | + | vscode-textmate: 6.0.0 |
|
| 5077 | + | ||
| 5078 | + | /side-channel/1.0.4: |
|
| 5079 | + | resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} |
|
| 5080 | + | dependencies: |
|
| 5081 | + | call-bind: 1.0.2 |
|
| 5082 | + | get-intrinsic: 1.2.0 |
|
| 5083 | + | object-inspect: 1.12.3 |
|
| 5084 | + | dev: true |
|
| 5085 | + | ||
| 5086 | + | /signal-exit/3.0.7: |
|
| 5087 | + | resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} |
|
| 5088 | + | ||
| 5089 | + | /simple-concat/1.0.1: |
|
| 5090 | + | resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==} |
|
| 5091 | + | ||
| 5092 | + | /simple-get/4.0.1: |
|
| 5093 | + | resolution: {integrity: sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==} |
|
| 5094 | + | dependencies: |
|
| 5095 | + | decompress-response: 6.0.0 |
|
| 5096 | + | once: 1.4.0 |
|
| 5097 | + | simple-concat: 1.0.1 |
|
| 5098 | + | ||
| 5099 | + | /simple-swizzle/0.2.2: |
|
| 5100 | + | resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==} |
|
| 5101 | + | dependencies: |
|
| 5102 | + | is-arrayish: 0.3.2 |
|
| 5103 | + | ||
| 5104 | + | /sisteransi/1.0.5: |
|
| 5105 | + | resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} |
|
| 5106 | + | ||
| 5107 | + | /sitemap/7.1.1: |
|
| 5108 | + | resolution: {integrity: sha512-mK3aFtjz4VdJN0igpIJrinf3EO8U8mxOPsTBzSsy06UtjZQJ3YY3o3Xa7zSc5nMqcMrRwlChHZ18Kxg0caiPBg==} |
|
| 5109 | + | engines: {node: '>=12.0.0', npm: '>=5.6.0'} |
|
| 5110 | + | hasBin: true |
|
| 5111 | + | dependencies: |
|
| 5112 | + | '@types/node': 17.0.45 |
|
| 5113 | + | '@types/sax': 1.2.4 |
|
| 5114 | + | arg: 5.0.2 |
|
| 5115 | + | sax: 1.2.4 |
|
| 5116 | + | dev: true |
|
| 5117 | + | ||
| 5118 | + | /slash/3.0.0: |
|
| 5119 | + | resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} |
|
| 5120 | + | engines: {node: '>=8'} |
|
| 5121 | + | dev: true |
|
| 5122 | + | ||
| 5123 | + | /slash/4.0.0: |
|
| 5124 | + | resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==} |
|
| 5125 | + | engines: {node: '>=12'} |
|
| 5126 | + | ||
| 5127 | + | /slice-ansi/4.0.0: |
|
| 5128 | + | resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==} |
|
| 5129 | + | engines: {node: '>=10'} |
|
| 5130 | + | dependencies: |
|
| 5131 | + | ansi-styles: 4.3.0 |
|
| 5132 | + | astral-regex: 2.0.0 |
|
| 5133 | + | is-fullwidth-code-point: 3.0.0 |
|
| 5134 | + | dev: true |
|
| 5135 | + | ||
| 5136 | + | /source-map-js/1.0.2: |
|
| 5137 | + | resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} |
|
| 5138 | + | engines: {node: '>=0.10.0'} |
|
| 5139 | + | ||
| 5140 | + | /source-map/0.7.4: |
|
| 5141 | + | resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==} |
|
| 5142 | + | engines: {node: '>= 8'} |
|
| 5143 | + | ||
| 5144 | + | /space-separated-tokens/2.0.2: |
|
| 5145 | + | resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==} |
|
| 5146 | + | ||
| 5147 | + | /spdx-correct/3.1.1: |
|
| 5148 | + | resolution: {integrity: sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==} |
|
| 5149 | + | dependencies: |
|
| 5150 | + | spdx-expression-parse: 3.0.1 |
|
| 5151 | + | spdx-license-ids: 3.0.12 |
|
| 5152 | + | dev: true |
|
| 5153 | + | ||
| 5154 | + | /spdx-exceptions/2.3.0: |
|
| 5155 | + | resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==} |
|
| 5156 | + | dev: true |
|
| 5157 | + | ||
| 5158 | + | /spdx-expression-parse/3.0.1: |
|
| 5159 | + | resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} |
|
| 5160 | + | dependencies: |
|
| 5161 | + | spdx-exceptions: 2.3.0 |
|
| 5162 | + | spdx-license-ids: 3.0.12 |
|
| 5163 | + | dev: true |
|
| 5164 | + | ||
| 5165 | + | /spdx-license-ids/3.0.12: |
|
| 5166 | + | resolution: {integrity: sha512-rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA==} |
|
| 5167 | + | dev: true |
|
| 5168 | + | ||
| 5169 | + | /sprintf-js/1.0.3: |
|
| 5170 | + | resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} |
|
| 5171 | + | ||
| 5172 | + | /stop-iteration-iterator/1.0.0: |
|
| 5173 | + | resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==} |
|
| 5174 | + | engines: {node: '>= 0.4'} |
|
| 5175 | + | dependencies: |
|
| 5176 | + | internal-slot: 1.0.4 |
|
| 5177 | + | dev: true |
|
| 5178 | + | ||
| 5179 | + | /streamsearch/1.1.0: |
|
| 5180 | + | resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==} |
|
| 5181 | + | engines: {node: '>=10.0.0'} |
|
| 5182 | + | ||
| 5183 | + | /string-width/4.2.3: |
|
| 5184 | + | resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} |
|
| 5185 | + | engines: {node: '>=8'} |
|
| 5186 | + | dependencies: |
|
| 5187 | + | emoji-regex: 8.0.0 |
|
| 5188 | + | is-fullwidth-code-point: 3.0.0 |
|
| 5189 | + | strip-ansi: 6.0.1 |
|
| 5190 | + | ||
| 5191 | + | /string-width/5.1.2: |
|
| 5192 | + | resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} |
|
| 5193 | + | engines: {node: '>=12'} |
|
| 5194 | + | dependencies: |
|
| 5195 | + | eastasianwidth: 0.2.0 |
|
| 5196 | + | emoji-regex: 9.2.2 |
|
| 5197 | + | strip-ansi: 7.0.1 |
|
| 5198 | + | ||
| 5199 | + | /string.prototype.codepointat/0.2.1: |
|
| 5200 | + | resolution: {integrity: sha512-2cBVCj6I4IOvEnjgO/hWqXjqBGsY+zwPmHl12Srk9IXSZ56Jwwmy+66XO5Iut/oQVR7t5ihYdLB0GMa4alEUcg==} |
|
| 5201 | + | dev: false |
|
| 5202 | + | ||
| 5203 | + | /string.prototype.trimend/1.0.6: |
|
| 5204 | + | resolution: {integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==} |
|
| 5205 | + | dependencies: |
|
| 5206 | + | call-bind: 1.0.2 |
|
| 5207 | + | define-properties: 1.1.4 |
|
| 5208 | + | es-abstract: 1.21.1 |
|
| 5209 | + | dev: true |
|
| 5210 | + | ||
| 5211 | + | /string.prototype.trimstart/1.0.6: |
|
| 5212 | + | resolution: {integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==} |
|
| 5213 | + | dependencies: |
|
| 5214 | + | call-bind: 1.0.2 |
|
| 5215 | + | define-properties: 1.1.4 |
|
| 5216 | + | es-abstract: 1.21.1 |
|
| 5217 | + | dev: true |
|
| 5218 | + | ||
| 5219 | + | /string_decoder/1.3.0: |
|
| 5220 | + | resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} |
|
| 5221 | + | dependencies: |
|
| 5222 | + | safe-buffer: 5.2.1 |
|
| 5223 | + | ||
| 5224 | + | /stringify-entities/4.0.3: |
|
| 5225 | + | resolution: {integrity: sha512-BP9nNHMhhfcMbiuQKCqMjhDP5yBCAxsPu4pHFFzJ6Alo9dZgY4VLDPutXqIjpRiMoKdp7Av85Gr73Q5uH9k7+g==} |
|
| 5226 | + | dependencies: |
|
| 5227 | + | character-entities-html4: 2.1.0 |
|
| 5228 | + | character-entities-legacy: 3.0.0 |
|
| 5229 | + | ||
| 5230 | + | /strip-ansi/6.0.1: |
|
| 5231 | + | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} |
|
| 5232 | + | engines: {node: '>=8'} |
|
| 5233 | + | dependencies: |
|
| 5234 | + | ansi-regex: 5.0.1 |
|
| 5235 | + | ||
| 5236 | + | /strip-ansi/7.0.1: |
|
| 5237 | + | resolution: {integrity: sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==} |
|
| 5238 | + | engines: {node: '>=12'} |
|
| 5239 | + | dependencies: |
|
| 5240 | + | ansi-regex: 6.0.1 |
|
| 5241 | + | ||
| 5242 | + | /strip-bom-string/1.0.0: |
|
| 5243 | + | resolution: {integrity: sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==} |
|
| 5244 | + | engines: {node: '>=0.10.0'} |
|
| 5245 | + | ||
| 5246 | + | /strip-bom/3.0.0: |
|
| 5247 | + | resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} |
|
| 5248 | + | engines: {node: '>=4'} |
|
| 5249 | + | ||
| 5250 | + | /strip-bom/4.0.0: |
|
| 5251 | + | resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==} |
|
| 5252 | + | engines: {node: '>=8'} |
|
| 5253 | + | ||
| 5254 | + | /strip-final-newline/3.0.0: |
|
| 5255 | + | resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==} |
|
| 5256 | + | engines: {node: '>=12'} |
|
| 5257 | + | ||
| 5258 | + | /strip-indent/3.0.0: |
|
| 5259 | + | resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} |
|
| 5260 | + | engines: {node: '>=8'} |
|
| 5261 | + | dependencies: |
|
| 5262 | + | min-indent: 1.0.1 |
|
| 5263 | + | dev: true |
|
| 5264 | + | ||
| 5265 | + | /strip-json-comments/2.0.1: |
|
| 5266 | + | resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==} |
|
| 5267 | + | engines: {node: '>=0.10.0'} |
|
| 5268 | + | ||
| 5269 | + | /strip-json-comments/3.1.1: |
|
| 5270 | + | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} |
|
| 5271 | + | engines: {node: '>=8'} |
|
| 5272 | + | dev: true |
|
| 5273 | + | ||
| 5274 | + | /strnum/1.0.5: |
|
| 5275 | + | resolution: {integrity: sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==} |
|
| 5276 | + | dev: false |
|
| 5277 | + | ||
| 5278 | + | /style-search/0.1.0: |
|
| 5279 | + | resolution: {integrity: sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg==} |
|
| 5280 | + | dev: true |
|
| 5281 | + | ||
| 5282 | + | /style-to-object/0.4.1: |
|
| 5283 | + | resolution: {integrity: sha512-HFpbb5gr2ypci7Qw+IOhnP2zOU7e77b+rzM+wTzXzfi1PrtBCX0E7Pk4wL4iTLnhzZ+JgEGAhX81ebTg/aYjQw==} |
|
| 5284 | + | dependencies: |
|
| 5285 | + | inline-style-parser: 0.1.1 |
|
| 5286 | + | dev: true |
|
| 5287 | + | ||
| 5288 | + | /stylelint-config-prettier/9.0.4_stylelint@14.16.1: |
|
| 5289 | + | resolution: {integrity: sha512-38nIGTGpFOiK5LjJ8Ma1yUgpKENxoKSOhbDNSemY7Ep0VsJoXIW9Iq/2hSt699oB9tReynfWicTAoIHiq8Rvbg==} |
|
| 5290 | + | engines: {node: '>= 12'} |
|
| 5291 | + | hasBin: true |
|
| 5292 | + | peerDependencies: |
|
| 5293 | + | stylelint: '>=11.0.0' |
|
| 5294 | + | dependencies: |
|
| 5295 | + | stylelint: 14.16.1 |
|
| 5296 | + | dev: true |
|
| 5297 | + | ||
| 5298 | + | /stylelint-config-recommended/9.0.0_stylelint@14.16.1: |
|
| 5299 | + | resolution: {integrity: sha512-9YQSrJq4NvvRuTbzDsWX3rrFOzOlYBmZP+o513BJN/yfEmGSr0AxdvrWs0P/ilSpVV/wisamAHu5XSk8Rcf4CQ==} |
|
| 5300 | + | peerDependencies: |
|
| 5301 | + | stylelint: ^14.10.0 |
|
| 5302 | + | dependencies: |
|
| 5303 | + | stylelint: 14.16.1 |
|
| 5304 | + | dev: true |
|
| 5305 | + | ||
| 5306 | + | /stylelint-config-standard/29.0.0_stylelint@14.16.1: |
|
| 5307 | + | resolution: {integrity: sha512-uy8tZLbfq6ZrXy4JKu3W+7lYLgRQBxYTUUB88vPgQ+ZzAxdrvcaSUW9hOMNLYBnwH+9Kkj19M2DHdZ4gKwI7tg==} |
|
| 5308 | + | peerDependencies: |
|
| 5309 | + | stylelint: ^14.14.0 |
|
| 5310 | + | dependencies: |
|
| 5311 | + | stylelint: 14.16.1 |
|
| 5312 | + | stylelint-config-recommended: 9.0.0_stylelint@14.16.1 |
|
| 5313 | + | dev: true |
|
| 5314 | + | ||
| 5315 | + | /stylelint/14.16.1: |
|
| 5316 | + | resolution: {integrity: sha512-ErlzR/T3hhbV+a925/gbfc3f3Fep9/bnspMiJPorfGEmcBbXdS+oo6LrVtoUZ/w9fqD6o6k7PtUlCOsCRdjX/A==} |
|
| 5317 | + | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} |
|
| 5318 | + | hasBin: true |
|
| 5319 | + | dependencies: |
|
| 5320 | + | '@csstools/selector-specificity': 2.1.1_wajs5nedgkikc5pcuwett7legi |
|
| 5321 | + | balanced-match: 2.0.0 |
|
| 5322 | + | colord: 2.9.3 |
|
| 5323 | + | cosmiconfig: 7.1.0 |
|
| 5324 | + | css-functions-list: 3.1.0 |
|
| 5325 | + | debug: 4.3.4 |
|
| 5326 | + | fast-glob: 3.2.12 |
|
| 5327 | + | fastest-levenshtein: 1.0.16 |
|
| 5328 | + | file-entry-cache: 6.0.1 |
|
| 5329 | + | global-modules: 2.0.0 |
|
| 5330 | + | globby: 11.1.0 |
|
| 5331 | + | globjoin: 0.1.4 |
|
| 5332 | + | html-tags: 3.2.0 |
|
| 5333 | + | ignore: 5.2.4 |
|
| 5334 | + | import-lazy: 4.0.0 |
|
| 5335 | + | imurmurhash: 0.1.4 |
|
| 5336 | + | is-plain-object: 5.0.0 |
|
| 5337 | + | known-css-properties: 0.26.0 |
|
| 5338 | + | mathml-tag-names: 2.1.3 |
|
| 5339 | + | meow: 9.0.0 |
|
| 5340 | + | micromatch: 4.0.5 |
|
| 5341 | + | normalize-path: 3.0.0 |
|
| 5342 | + | picocolors: 1.0.0 |
|
| 5343 | + | postcss: 8.4.21 |
|
| 5344 | + | postcss-media-query-parser: 0.2.3 |
|
| 5345 | + | postcss-resolve-nested-selector: 0.1.1 |
|
| 5346 | + | postcss-safe-parser: 6.0.0_postcss@8.4.21 |
|
| 5347 | + | postcss-selector-parser: 6.0.11 |
|
| 5348 | + | postcss-value-parser: 4.2.0 |
|
| 5349 | + | resolve-from: 5.0.0 |
|
| 5350 | + | string-width: 4.2.3 |
|
| 5351 | + | strip-ansi: 6.0.1 |
|
| 5352 | + | style-search: 0.1.0 |
|
| 5353 | + | supports-hyperlinks: 2.3.0 |
|
| 5354 | + | svg-tags: 1.0.0 |
|
| 5355 | + | table: 6.8.1 |
|
| 5356 | + | v8-compile-cache: 2.3.0 |
|
| 5357 | + | write-file-atomic: 4.0.2 |
|
| 5358 | + | transitivePeerDependencies: |
|
| 5359 | + | - supports-color |
|
| 5360 | + | dev: true |
|
| 5361 | + | ||
| 5362 | + | /suf-log/2.5.3: |
|
| 5363 | + | resolution: {integrity: sha512-KvC8OPjzdNOe+xQ4XWJV2whQA0aM1kGVczMQ8+dStAO6KfEB140JEVQ9dE76ONZ0/Ylf67ni4tILPJB41U0eow==} |
|
| 5364 | + | dependencies: |
|
| 5365 | + | s.color: 0.0.15 |
|
| 5366 | + | ||
| 5367 | + | /supports-color/5.5.0: |
|
| 5368 | + | resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} |
|
| 5369 | + | engines: {node: '>=4'} |
|
| 5370 | + | dependencies: |
|
| 5371 | + | has-flag: 3.0.0 |
|
| 5372 | + | ||
| 5373 | + | /supports-color/7.2.0: |
|
| 5374 | + | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} |
|
| 5375 | + | engines: {node: '>=8'} |
|
| 5376 | + | dependencies: |
|
| 5377 | + | has-flag: 4.0.0 |
|
| 5378 | + | ||
| 5379 | + | /supports-esm/1.0.0: |
|
| 5380 | + | resolution: {integrity: sha512-96Am8CDqUaC0I2+C/swJ0yEvM8ZnGn4unoers/LSdE4umhX7mELzqyLzx3HnZAluq5PXIsGMKqa7NkqaeHMPcg==} |
|
| 5381 | + | dependencies: |
|
| 5382 | + | has-package-exports: 1.3.0 |
|
| 5383 | + | ||
| 5384 | + | /supports-hyperlinks/2.3.0: |
|
| 5385 | + | resolution: {integrity: sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==} |
|
| 5386 | + | engines: {node: '>=8'} |
|
| 5387 | + | dependencies: |
|
| 5388 | + | has-flag: 4.0.0 |
|
| 5389 | + | supports-color: 7.2.0 |
|
| 5390 | + | dev: true |
|
| 5391 | + | ||
| 5392 | + | /supports-preserve-symlinks-flag/1.0.0: |
|
| 5393 | + | resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} |
|
| 5394 | + | engines: {node: '>= 0.4'} |
|
| 5395 | + | ||
| 5396 | + | /svg-tags/1.0.0: |
|
| 5397 | + | resolution: {integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==} |
|
| 5398 | + | dev: true |
|
| 5399 | + | ||
| 5400 | + | /synckit/0.8.5: |
|
| 5401 | + | resolution: {integrity: sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==} |
|
| 5402 | + | engines: {node: ^14.18.0 || >=16.0.0} |
|
| 5403 | + | dependencies: |
|
| 5404 | + | '@pkgr/utils': 2.3.1 |
|
| 5405 | + | tslib: 2.5.0 |
|
| 5406 | + | ||
| 5407 | + | /table/6.8.1: |
|
| 5408 | + | resolution: {integrity: sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==} |
|
| 5409 | + | engines: {node: '>=10.0.0'} |
|
| 5410 | + | dependencies: |
|
| 5411 | + | ajv: 8.12.0 |
|
| 5412 | + | lodash.truncate: 4.4.2 |
|
| 5413 | + | slice-ansi: 4.0.0 |
|
| 5414 | + | string-width: 4.2.3 |
|
| 5415 | + | strip-ansi: 6.0.1 |
|
| 5416 | + | dev: true |
|
| 5417 | + | ||
| 5418 | + | /tailwindcss/3.2.4_postcss@8.4.21: |
|
| 5419 | + | resolution: {integrity: sha512-AhwtHCKMtR71JgeYDaswmZXhPcW9iuI9Sp2LvZPo9upDZ7231ZJ7eA9RaURbhpXGVlrjX4cFNlB4ieTetEb7hQ==} |
|
| 5420 | + | engines: {node: '>=12.13.0'} |
|
| 5421 | + | hasBin: true |
|
| 5422 | + | peerDependencies: |
|
| 5423 | + | postcss: ^8.0.9 |
|
| 5424 | + | dependencies: |
|
| 5425 | + | arg: 5.0.2 |
|
| 5426 | + | chokidar: 3.5.3 |
|
| 5427 | + | color-name: 1.1.4 |
|
| 5428 | + | detective: 5.2.1 |
|
| 5429 | + | didyoumean: 1.2.2 |
|
| 5430 | + | dlv: 1.1.3 |
|
| 5431 | + | fast-glob: 3.2.12 |
|
| 5432 | + | glob-parent: 6.0.2 |
|
| 5433 | + | is-glob: 4.0.3 |
|
| 5434 | + | lilconfig: 2.0.6 |
|
| 5435 | + | micromatch: 4.0.5 |
|
| 5436 | + | normalize-path: 3.0.0 |
|
| 5437 | + | object-hash: 3.0.0 |
|
| 5438 | + | picocolors: 1.0.0 |
|
| 5439 | + | postcss: 8.4.21 |
|
| 5440 | + | postcss-import: 14.1.0_postcss@8.4.21 |
|
| 5441 | + | postcss-js: 4.0.0_postcss@8.4.21 |
|
| 5442 | + | postcss-load-config: 3.1.4_postcss@8.4.21 |
|
| 5443 | + | postcss-nested: 6.0.0_postcss@8.4.21 |
|
| 5444 | + | postcss-selector-parser: 6.0.11 |
|
| 5445 | + | postcss-value-parser: 4.2.0 |
|
| 5446 | + | quick-lru: 5.1.1 |
|
| 5447 | + | resolve: 1.22.1 |
|
| 5448 | + | transitivePeerDependencies: |
|
| 5449 | + | - ts-node |
|
| 5450 | + | dev: true |
|
| 5451 | + | ||
| 5452 | + | /tapable/2.2.1: |
|
| 5453 | + | resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} |
|
| 5454 | + | engines: {node: '>=6'} |
|
| 5455 | + | dev: true |
|
| 5456 | + | ||
| 5457 | + | /tar-fs/2.1.1: |
|
| 5458 | + | resolution: {integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==} |
|
| 5459 | + | dependencies: |
|
| 5460 | + | chownr: 1.1.4 |
|
| 5461 | + | mkdirp-classic: 0.5.3 |
|
| 5462 | + | pump: 3.0.0 |
|
| 5463 | + | tar-stream: 2.2.0 |
|
| 5464 | + | ||
| 5465 | + | /tar-stream/2.2.0: |
|
| 5466 | + | resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==} |
|
| 5467 | + | engines: {node: '>=6'} |
|
| 5468 | + | dependencies: |
|
| 5469 | + | bl: 4.1.0 |
|
| 5470 | + | end-of-stream: 1.4.4 |
|
| 5471 | + | fs-constants: 1.0.0 |
|
| 5472 | + | inherits: 2.0.4 |
|
| 5473 | + | readable-stream: 3.6.0 |
|
| 5474 | + | ||
| 5475 | + | /text-table/0.2.0: |
|
| 5476 | + | resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} |
|
| 5477 | + | dev: true |
|
| 5478 | + | ||
| 5479 | + | /throttles/1.0.1: |
|
| 5480 | + | resolution: {integrity: sha512-fab7Xg+zELr9KOv4fkaBoe/b3L0GMGLd0IBSCn16GoE/Qx6/OfCr1eGNyEcDU2pUA79qQfZ8kPQWlRuok4YwTw==} |
|
| 5481 | + | engines: {node: '>=6'} |
|
| 5482 | + | dev: false |
|
| 5483 | + | ||
| 5484 | + | /tiny-glob/0.2.9: |
|
| 5485 | + | resolution: {integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==} |
|
| 5486 | + | dependencies: |
|
| 5487 | + | globalyzer: 0.1.0 |
|
| 5488 | + | globrex: 0.1.2 |
|
| 5489 | + | ||
| 5490 | + | /to-fast-properties/2.0.0: |
|
| 5491 | + | resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} |
|
| 5492 | + | engines: {node: '>=4'} |
|
| 5493 | + | ||
| 5494 | + | /to-regex-range/5.0.1: |
|
| 5495 | + | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} |
|
| 5496 | + | engines: {node: '>=8.0'} |
|
| 5497 | + | dependencies: |
|
| 5498 | + | is-number: 7.0.0 |
|
| 5499 | + | ||
| 5500 | + | /trim-lines/3.0.1: |
|
| 5501 | + | resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==} |
|
| 5502 | + | ||
| 5503 | + | /trim-newlines/3.0.1: |
|
| 5504 | + | resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==} |
|
| 5505 | + | engines: {node: '>=8'} |
|
| 5506 | + | dev: true |
|
| 5507 | + | ||
| 5508 | + | /trough/2.1.0: |
|
| 5509 | + | resolution: {integrity: sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g==} |
|
| 5510 | + | ||
| 5511 | + | /tsconfig-paths/3.14.1: |
|
| 5512 | + | resolution: {integrity: sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==} |
|
| 5513 | + | dependencies: |
|
| 5514 | + | '@types/json5': 0.0.29 |
|
| 5515 | + | json5: 1.0.2 |
|
| 5516 | + | minimist: 1.2.7 |
|
| 5517 | + | strip-bom: 3.0.0 |
|
| 5518 | + | dev: true |
|
| 5519 | + | ||
| 5520 | + | /tsconfig-resolver/3.0.1: |
|
| 5521 | + | resolution: {integrity: sha512-ZHqlstlQF449v8glscGRXzL6l2dZvASPCdXJRWG4gHEZlUVx2Jtmr+a2zeVG4LCsKhDXKRj5R3h0C/98UcVAQg==} |
|
| 5522 | + | dependencies: |
|
| 5523 | + | '@types/json5': 0.0.30 |
|
| 5524 | + | '@types/resolve': 1.20.2 |
|
| 5525 | + | json5: 2.2.3 |
|
| 5526 | + | resolve: 1.22.1 |
|
| 5527 | + | strip-bom: 4.0.0 |
|
| 5528 | + | type-fest: 0.13.1 |
|
| 5529 | + | ||
| 5530 | + | /tslib/1.14.1: |
|
| 5531 | + | resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} |
|
| 5532 | + | dev: true |
|
| 5533 | + | ||
| 5534 | + | /tslib/2.5.0: |
|
| 5535 | + | resolution: {integrity: sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==} |
|
| 5536 | + | ||
| 5537 | + | /tsutils/3.21.0_typescript@4.9.4: |
|
| 5538 | + | resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} |
|
| 5539 | + | engines: {node: '>= 6'} |
|
| 5540 | + | peerDependencies: |
|
| 5541 | + | typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' |
|
| 5542 | + | dependencies: |
|
| 5543 | + | tslib: 1.14.1 |
|
| 5544 | + | typescript: 4.9.4 |
|
| 5545 | + | dev: true |
|
| 5546 | + | ||
| 5547 | + | /tunnel-agent/0.6.0: |
|
| 5548 | + | resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==} |
|
| 5549 | + | dependencies: |
|
| 5550 | + | safe-buffer: 5.2.1 |
|
| 5551 | + | ||
| 5552 | + | /type-check/0.4.0: |
|
| 5553 | + | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} |
|
| 5554 | + | engines: {node: '>= 0.8.0'} |
|
| 5555 | + | dependencies: |
|
| 5556 | + | prelude-ls: 1.2.1 |
|
| 5557 | + | dev: true |
|
| 5558 | + | ||
| 5559 | + | /type-fest/0.13.1: |
|
| 5560 | + | resolution: {integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==} |
|
| 5561 | + | engines: {node: '>=10'} |
|
| 5562 | + | ||
| 5563 | + | /type-fest/0.18.1: |
|
| 5564 | + | resolution: {integrity: sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==} |
|
| 5565 | + | engines: {node: '>=10'} |
|
| 5566 | + | dev: true |
|
| 5567 | + | ||
| 5568 | + | /type-fest/0.20.2: |
|
| 5569 | + | resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} |
|
| 5570 | + | engines: {node: '>=10'} |
|
| 5571 | + | dev: true |
|
| 5572 | + | ||
| 5573 | + | /type-fest/0.6.0: |
|
| 5574 | + | resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} |
|
| 5575 | + | engines: {node: '>=8'} |
|
| 5576 | + | dev: true |
|
| 5577 | + | ||
| 5578 | + | /type-fest/0.8.1: |
|
| 5579 | + | resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} |
|
| 5580 | + | engines: {node: '>=8'} |
|
| 5581 | + | dev: true |
|
| 5582 | + | ||
| 5583 | + | /type-fest/2.19.0: |
|
| 5584 | + | resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==} |
|
| 5585 | + | engines: {node: '>=12.20'} |
|
| 5586 | + | ||
| 5587 | + | /typed-array-length/1.0.4: |
|
| 5588 | + | resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==} |
|
| 5589 | + | dependencies: |
|
| 5590 | + | call-bind: 1.0.2 |
|
| 5591 | + | for-each: 0.3.3 |
|
| 5592 | + | is-typed-array: 1.1.10 |
|
| 5593 | + | dev: true |
|
| 5594 | + | ||
| 5595 | + | /typescript/4.9.4: |
|
| 5596 | + | resolution: {integrity: sha512-Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg==} |
|
| 5597 | + | engines: {node: '>=4.2.0'} |
|
| 5598 | + | hasBin: true |
|
| 5599 | + | ||
| 5600 | + | /ultrahtml/1.2.0: |
|
| 5601 | + | resolution: {integrity: sha512-vxZM2yNvajRmCj/SknRYGNXk2tqiy6kRNvZjJLaleG3zJbSh/aNkOqD1/CVzypw8tyHyhpzYuwQgMMhUB4ZVNQ==} |
|
| 5602 | + | dev: false |
|
| 5603 | + | ||
| 5604 | + | /unbox-primitive/1.0.2: |
|
| 5605 | + | resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} |
|
| 5606 | + | dependencies: |
|
| 5607 | + | call-bind: 1.0.2 |
|
| 5608 | + | has-bigints: 1.0.2 |
|
| 5609 | + | has-symbols: 1.0.3 |
|
| 5610 | + | which-boxed-primitive: 1.0.2 |
|
| 5611 | + | dev: true |
|
| 5612 | + | ||
| 5613 | + | /undici/5.16.0: |
|
| 5614 | + | resolution: {integrity: sha512-KWBOXNv6VX+oJQhchXieUznEmnJMqgXMbs0xxH2t8q/FUAWSJvOSr/rMaZKnX5RIVq7JDn0JbP4BOnKG2SGXLQ==} |
|
| 5615 | + | engines: {node: '>=12.18'} |
|
| 5616 | + | dependencies: |
|
| 5617 | + | busboy: 1.6.0 |
|
| 5618 | + | ||
| 5619 | + | /unherit/3.0.1: |
|
| 5620 | + | resolution: {integrity: sha512-akOOQ/Yln8a2sgcLj4U0Jmx0R5jpIg2IUyRrWOzmEbjBtGzBdHtSeFKgoEcoH4KYIG/Pb8GQ/BwtYm0GCq1Sqg==} |
|
| 5621 | + | ||
| 5622 | + | /unified/10.1.2: |
|
| 5623 | + | resolution: {integrity: sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==} |
|
| 5624 | + | dependencies: |
|
| 5625 | + | '@types/unist': 2.0.6 |
|
| 5626 | + | bail: 2.0.2 |
|
| 5627 | + | extend: 3.0.2 |
|
| 5628 | + | is-buffer: 2.0.5 |
|
| 5629 | + | is-plain-obj: 4.1.0 |
|
| 5630 | + | trough: 2.1.0 |
|
| 5631 | + | vfile: 5.3.6 |
|
| 5632 | + | ||
| 5633 | + | /unist-builder/3.0.1: |
|
| 5634 | + | resolution: {integrity: sha512-gnpOw7DIpCA0vpr6NqdPvTWnlPTApCTRzr+38E6hCWx3rz/cjo83SsKIlS1Z+L5ttScQ2AwutNnb8+tAvpb6qQ==} |
|
| 5635 | + | dependencies: |
|
| 5636 | + | '@types/unist': 2.0.6 |
|
| 5637 | + | ||
| 5638 | + | /unist-util-generated/2.0.1: |
|
| 5639 | + | resolution: {integrity: sha512-qF72kLmPxAw0oN2fwpWIqbXAVyEqUzDHMsbtPvOudIlUzXYFIeQIuxXQCRCFh22B7cixvU0MG7m3MW8FTq/S+A==} |
|
| 5640 | + | ||
| 5641 | + | /unist-util-is/5.2.0: |
|
| 5642 | + | resolution: {integrity: sha512-Glt17jWwZeyqrFqOK0pF1Ded5U3yzJnFr8CG1GMjCWTp9zDo2p+cmD6pWbZU8AgM5WU3IzRv6+rBwhzsGh6hBQ==} |
|
| 5643 | + | ||
| 5644 | + | /unist-util-modify-children/3.1.1: |
|
| 5645 | + | resolution: {integrity: sha512-yXi4Lm+TG5VG+qvokP6tpnk+r1EPwyYL04JWDxLvgvPV40jANh7nm3udk65OOWquvbMDe+PL9+LmkxDpTv/7BA==} |
|
| 5646 | + | dependencies: |
|
| 5647 | + | '@types/unist': 2.0.6 |
|
| 5648 | + | array-iterate: 2.0.1 |
|
| 5649 | + | ||
| 5650 | + | /unist-util-position-from-estree/1.1.2: |
|
| 5651 | + | resolution: {integrity: sha512-poZa0eXpS+/XpoQwGwl79UUdea4ol2ZuCYguVaJS4qzIOMDzbqz8a3erUCOmubSZkaOuGamb3tX790iwOIROww==} |
|
| 5652 | + | dependencies: |
|
| 5653 | + | '@types/unist': 2.0.6 |
|
| 5654 | + | dev: true |
|
| 5655 | + | ||
| 5656 | + | /unist-util-position/4.0.4: |
|
| 5657 | + | resolution: {integrity: sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==} |
|
| 5658 | + | dependencies: |
|
| 5659 | + | '@types/unist': 2.0.6 |
|
| 5660 | + | ||
| 5661 | + | /unist-util-remove-position/4.0.2: |
|
| 5662 | + | resolution: {integrity: sha512-TkBb0HABNmxzAcfLf4qsIbFbaPDvMO6wa3b3j4VcEzFVaw1LBKwnW4/sRJ/atSLSzoIg41JWEdnE7N6DIhGDGQ==} |
|
| 5663 | + | dependencies: |
|
| 5664 | + | '@types/unist': 2.0.6 |
|
| 5665 | + | unist-util-visit: 4.1.2 |
|
| 5666 | + | dev: true |
|
| 5667 | + | ||
| 5668 | + | /unist-util-stringify-position/3.0.3: |
|
| 5669 | + | resolution: {integrity: sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==} |
|
| 5670 | + | dependencies: |
|
| 5671 | + | '@types/unist': 2.0.6 |
|
| 5672 | + | ||
| 5673 | + | /unist-util-visit-children/2.0.2: |
|
| 5674 | + | resolution: {integrity: sha512-+LWpMFqyUwLGpsQxpumsQ9o9DG2VGLFrpz+rpVXYIEdPy57GSy5HioC0g3bg/8WP9oCLlapQtklOzQ8uLS496Q==} |
|
| 5675 | + | dependencies: |
|
| 5676 | + | '@types/unist': 2.0.6 |
|
| 5677 | + | ||
| 5678 | + | /unist-util-visit-parents/5.1.3: |
|
| 5679 | + | resolution: {integrity: sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==} |
|
| 5680 | + | dependencies: |
|
| 5681 | + | '@types/unist': 2.0.6 |
|
| 5682 | + | unist-util-is: 5.2.0 |
|
| 5683 | + | ||
| 5684 | + | /unist-util-visit/4.1.2: |
|
| 5685 | + | resolution: {integrity: sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==} |
|
| 5686 | + | dependencies: |
|
| 5687 | + | '@types/unist': 2.0.6 |
|
| 5688 | + | unist-util-is: 5.2.0 |
|
| 5689 | + | unist-util-visit-parents: 5.1.3 |
|
| 5690 | + | ||
| 5691 | + | /update-browserslist-db/1.0.10_browserslist@4.21.4: |
|
| 5692 | + | resolution: {integrity: sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==} |
|
| 5693 | + | hasBin: true |
|
| 5694 | + | peerDependencies: |
|
| 5695 | + | browserslist: '>= 4.21.0' |
|
| 5696 | + | dependencies: |
|
| 5697 | + | browserslist: 4.21.4 |
|
| 5698 | + | escalade: 3.1.1 |
|
| 5699 | + | picocolors: 1.0.0 |
|
| 5700 | + | ||
| 5701 | + | /uri-js/4.4.1: |
|
| 5702 | + | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} |
|
| 5703 | + | dependencies: |
|
| 5704 | + | punycode: 2.3.0 |
|
| 5705 | + | dev: true |
|
| 5706 | + | ||
| 5707 | + | /util-deprecate/1.0.2: |
|
| 5708 | + | resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} |
|
| 5709 | + | ||
| 5710 | + | /uvu/0.5.6: |
|
| 5711 | + | resolution: {integrity: sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==} |
|
| 5712 | + | engines: {node: '>=8'} |
|
| 5713 | + | hasBin: true |
|
| 5714 | + | dependencies: |
|
| 5715 | + | dequal: 2.0.3 |
|
| 5716 | + | diff: 5.1.0 |
|
| 5717 | + | kleur: 4.1.5 |
|
| 5718 | + | sade: 1.8.1 |
|
| 5719 | + | ||
| 5720 | + | /v8-compile-cache/2.3.0: |
|
| 5721 | + | resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==} |
|
| 5722 | + | dev: true |
|
| 5723 | + | ||
| 5724 | + | /validate-npm-package-license/3.0.4: |
|
| 5725 | + | resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} |
|
| 5726 | + | dependencies: |
|
| 5727 | + | spdx-correct: 3.1.1 |
|
| 5728 | + | spdx-expression-parse: 3.0.1 |
|
| 5729 | + | dev: true |
|
| 5730 | + | ||
| 5731 | + | /vfile-location/4.0.1: |
|
| 5732 | + | resolution: {integrity: sha512-JDxPlTbZrZCQXogGheBHjbRWjESSPEak770XwWPfw5mTc1v1nWGLB/apzZxsx8a0SJVfF8HK8ql8RD308vXRUw==} |
|
| 5733 | + | dependencies: |
|
| 5734 | + | '@types/unist': 2.0.6 |
|
| 5735 | + | vfile: 5.3.6 |
|
| 5736 | + | ||
| 5737 | + | /vfile-message/3.1.3: |
|
| 5738 | + | resolution: {integrity: sha512-0yaU+rj2gKAyEk12ffdSbBfjnnj+b1zqTBv3OQCTn8yEB02bsPizwdBPrLJjHnK+cU9EMMcUnNv938XcZIkmdA==} |
|
| 5739 | + | dependencies: |
|
| 5740 | + | '@types/unist': 2.0.6 |
|
| 5741 | + | unist-util-stringify-position: 3.0.3 |
|
| 5742 | + | ||
| 5743 | + | /vfile/5.3.6: |
|
| 5744 | + | resolution: {integrity: sha512-ADBsmerdGBs2WYckrLBEmuETSPyTD4TuLxTrw0DvjirxW1ra4ZwkbzG8ndsv3Q57smvHxo677MHaQrY9yxH8cA==} |
|
| 5745 | + | dependencies: |
|
| 5746 | + | '@types/unist': 2.0.6 |
|
| 5747 | + | is-buffer: 2.0.5 |
|
| 5748 | + | unist-util-stringify-position: 3.0.3 |
|
| 5749 | + | vfile-message: 3.1.3 |
|
| 5750 | + | ||
| 5751 | + | /vite/4.0.4: |
|
| 5752 | + | resolution: {integrity: sha512-xevPU7M8FU0i/80DMR+YhgrzR5KS2ORy1B4xcX/cXLsvnUWvfHuqMmVU6N0YiJ4JWGRJJsLCgjEzKjG9/GKoSw==} |
|
| 5753 | + | engines: {node: ^14.18.0 || >=16.0.0} |
|
| 5754 | + | hasBin: true |
|
| 5755 | + | peerDependencies: |
|
| 5756 | + | '@types/node': '>= 14' |
|
| 5757 | + | less: '*' |
|
| 5758 | + | sass: '*' |
|
| 5759 | + | stylus: '*' |
|
| 5760 | + | sugarss: '*' |
|
| 5761 | + | terser: ^5.4.0 |
|
| 5762 | + | peerDependenciesMeta: |
|
| 5763 | + | '@types/node': |
|
| 5764 | + | optional: true |
|
| 5765 | + | less: |
|
| 5766 | + | optional: true |
|
| 5767 | + | sass: |
|
| 5768 | + | optional: true |
|
| 5769 | + | stylus: |
|
| 5770 | + | optional: true |
|
| 5771 | + | sugarss: |
|
| 5772 | + | optional: true |
|
| 5773 | + | terser: |
|
| 5774 | + | optional: true |
|
| 5775 | + | dependencies: |
|
| 5776 | + | esbuild: 0.16.17 |
|
| 5777 | + | postcss: 8.4.21 |
|
| 5778 | + | resolve: 1.22.1 |
|
| 5779 | + | rollup: 3.12.0 |
|
| 5780 | + | optionalDependencies: |
|
| 5781 | + | fsevents: 2.3.2 |
|
| 5782 | + | ||
| 5783 | + | /vitefu/0.2.4_vite@4.0.4: |
|
| 5784 | + | resolution: {integrity: sha512-fanAXjSaf9xXtOOeno8wZXIhgia+CZury481LsDaV++lSvcU2R9Ch2bPh3PYFyoHW+w9LqAeYRISVQjUIew14g==} |
|
| 5785 | + | peerDependencies: |
|
| 5786 | + | vite: ^3.0.0 || ^4.0.0 |
|
| 5787 | + | peerDependenciesMeta: |
|
| 5788 | + | vite: |
|
| 5789 | + | optional: true |
|
| 5790 | + | dependencies: |
|
| 5791 | + | vite: 4.0.4 |
|
| 5792 | + | ||
| 5793 | + | /vscode-css-languageservice/6.2.3: |
|
| 5794 | + | resolution: {integrity: sha512-EAyhyIVHpEaf+GjtI+tVe7SekdoANfG0aubnspsQwak3Qkimn/97FpAufNyXk636ngW05pjNKAR9zyTCzo6avQ==} |
|
| 5795 | + | dependencies: |
|
| 5796 | + | '@vscode/l10n': 0.0.11 |
|
| 5797 | + | vscode-languageserver-textdocument: 1.0.8 |
|
| 5798 | + | vscode-languageserver-types: 3.17.2 |
|
| 5799 | + | vscode-uri: 3.0.7 |
|
| 5800 | + | ||
| 5801 | + | /vscode-html-languageservice/5.0.4: |
|
| 5802 | + | resolution: {integrity: sha512-tvrySfpglu4B2rQgWGVO/IL+skvU7kBkQotRlxA7ocSyRXOZUd6GA13XHkxo8LPe07KWjeoBlN1aVGqdfTK4xA==} |
|
| 5803 | + | dependencies: |
|
| 5804 | + | '@vscode/l10n': 0.0.11 |
|
| 5805 | + | vscode-languageserver-textdocument: 1.0.8 |
|
| 5806 | + | vscode-languageserver-types: 3.17.2 |
|
| 5807 | + | vscode-uri: 3.0.7 |
|
| 5808 | + | ||
| 5809 | + | /vscode-jsonrpc/8.0.2: |
|
| 5810 | + | resolution: {integrity: sha512-RY7HwI/ydoC1Wwg4gJ3y6LpU9FJRZAUnTYMXthqhFXXu77ErDd/xkREpGuk4MyYkk4a+XDWAMqe0S3KkelYQEQ==} |
|
| 5811 | + | engines: {node: '>=14.0.0'} |
|
| 5812 | + | ||
| 5813 | + | /vscode-languageserver-protocol/3.17.2: |
|
| 5814 | + | resolution: {integrity: sha512-8kYisQ3z/SQ2kyjlNeQxbkkTNmVFoQCqkmGrzLH6A9ecPlgTbp3wDTnUNqaUxYr4vlAcloxx8zwy7G5WdguYNg==} |
|
| 5815 | + | dependencies: |
|
| 5816 | + | vscode-jsonrpc: 8.0.2 |
|
| 5817 | + | vscode-languageserver-types: 3.17.2 |
|
| 5818 | + | ||
| 5819 | + | /vscode-languageserver-textdocument/1.0.8: |
|
| 5820 | + | resolution: {integrity: sha512-1bonkGqQs5/fxGT5UchTgjGVnfysL0O8v1AYMBjqTbWQTFn721zaPGDYFkOKtfDgFiSgXM3KwaG3FMGfW4Ed9Q==} |
|
| 5821 | + | ||
| 5822 | + | /vscode-languageserver-types/3.17.2: |
|
| 5823 | + | resolution: {integrity: sha512-zHhCWatviizPIq9B7Vh9uvrH6x3sK8itC84HkamnBWoDFJtzBf7SWlpLCZUit72b3os45h6RWQNC9xHRDF8dRA==} |
|
| 5824 | + | ||
| 5825 | + | /vscode-languageserver/8.0.2: |
|
| 5826 | + | resolution: {integrity: sha512-bpEt2ggPxKzsAOZlXmCJ50bV7VrxwCS5BI4+egUmure/oI/t4OlFzi/YNtVvY24A2UDOZAgwFGgnZPwqSJubkA==} |
|
| 5827 | + | hasBin: true |
|
| 5828 | + | dependencies: |
|
| 5829 | + | vscode-languageserver-protocol: 3.17.2 |
|
| 5830 | + | ||
| 5831 | + | /vscode-oniguruma/1.7.0: |
|
| 5832 | + | resolution: {integrity: sha512-L9WMGRfrjOhgHSdOYgCt/yRMsXzLDJSL7BPrOZt73gU0iWO4mpqzqQzOz5srxqTvMBaR0XZTSrVWo4j55Rc6cA==} |
|
| 5833 | + | ||
| 5834 | + | /vscode-textmate/6.0.0: |
|
| 5835 | + | resolution: {integrity: sha512-gu73tuZfJgu+mvCSy4UZwd2JXykjK9zAZsfmDeut5dx/1a7FeTk0XwJsSuqQn+cuMCGVbIBfl+s53X4T19DnzQ==} |
|
| 5836 | + | ||
| 5837 | + | /vscode-uri/2.1.2: |
|
| 5838 | + | resolution: {integrity: sha512-8TEXQxlldWAuIODdukIb+TR5s+9Ds40eSJrw+1iDDA9IFORPjMELarNQE3myz5XIkWWpdprmJjm1/SxMlWOC8A==} |
|
| 5839 | + | ||
| 5840 | + | /vscode-uri/3.0.7: |
|
| 5841 | + | resolution: {integrity: sha512-eOpPHogvorZRobNqJGhapa0JdwaxpjVvyBp0QIUMRMSf8ZAlqOdEquKuRmw9Qwu0qXtJIWqFtMkmvJjUZmMjVA==} |
|
| 5842 | + | ||
| 5843 | + | /wcwidth/1.0.1: |
|
| 5844 | + | resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} |
|
| 5845 | + | dependencies: |
|
| 5846 | + | defaults: 1.0.4 |
|
| 5847 | + | ||
| 5848 | + | /web-namespaces/2.0.1: |
|
| 5849 | + | resolution: {integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==} |
|
| 5850 | + | ||
| 5851 | + | /which-boxed-primitive/1.0.2: |
|
| 5852 | + | resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} |
|
| 5853 | + | dependencies: |
|
| 5854 | + | is-bigint: 1.0.4 |
|
| 5855 | + | is-boolean-object: 1.1.2 |
|
| 5856 | + | is-number-object: 1.0.7 |
|
| 5857 | + | is-string: 1.0.7 |
|
| 5858 | + | is-symbol: 1.0.4 |
|
| 5859 | + | dev: true |
|
| 5860 | + | ||
| 5861 | + | /which-collection/1.0.1: |
|
| 5862 | + | resolution: {integrity: sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==} |
|
| 5863 | + | dependencies: |
|
| 5864 | + | is-map: 2.0.2 |
|
| 5865 | + | is-set: 2.0.2 |
|
| 5866 | + | is-weakmap: 2.0.1 |
|
| 5867 | + | is-weakset: 2.0.2 |
|
| 5868 | + | dev: true |
|
| 5869 | + | ||
| 5870 | + | /which-pm-runs/1.1.0: |
|
| 5871 | + | resolution: {integrity: sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==} |
|
| 5872 | + | engines: {node: '>=4'} |
|
| 5873 | + | ||
| 5874 | + | /which-pm/2.0.0: |
|
| 5875 | + | resolution: {integrity: sha512-Lhs9Pmyph0p5n5Z3mVnN0yWcbQYUAD7rbQUiMsQxOJ3T57k7RFe35SUwWMf7dsbDZks1uOmw4AecB/JMDj3v/w==} |
|
| 5876 | + | engines: {node: '>=8.15'} |
|
| 5877 | + | dependencies: |
|
| 5878 | + | load-yaml-file: 0.2.0 |
|
| 5879 | + | path-exists: 4.0.0 |
|
| 5880 | + | ||
| 5881 | + | /which-typed-array/1.1.9: |
|
| 5882 | + | resolution: {integrity: sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==} |
|
| 5883 | + | engines: {node: '>= 0.4'} |
|
| 5884 | + | dependencies: |
|
| 5885 | + | available-typed-arrays: 1.0.5 |
|
| 5886 | + | call-bind: 1.0.2 |
|
| 5887 | + | for-each: 0.3.3 |
|
| 5888 | + | gopd: 1.0.1 |
|
| 5889 | + | has-tostringtag: 1.0.0 |
|
| 5890 | + | is-typed-array: 1.1.10 |
|
| 5891 | + | dev: true |
|
| 5892 | + | ||
| 5893 | + | /which/1.3.1: |
|
| 5894 | + | resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} |
|
| 5895 | + | hasBin: true |
|
| 5896 | + | dependencies: |
|
| 5897 | + | isexe: 2.0.0 |
|
| 5898 | + | dev: true |
|
| 5899 | + | ||
| 5900 | + | /which/2.0.2: |
|
| 5901 | + | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} |
|
| 5902 | + | engines: {node: '>= 8'} |
|
| 5903 | + | hasBin: true |
|
| 5904 | + | dependencies: |
|
| 5905 | + | isexe: 2.0.0 |
|
| 5906 | + | ||
| 5907 | + | /widest-line/4.0.1: |
|
| 5908 | + | resolution: {integrity: sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig==} |
|
| 5909 | + | engines: {node: '>=12'} |
|
| 5910 | + | dependencies: |
|
| 5911 | + | string-width: 5.1.2 |
|
| 5912 | + | ||
| 5913 | + | /word-wrap/1.2.3: |
|
| 5914 | + | resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==} |
|
| 5915 | + | engines: {node: '>=0.10.0'} |
|
| 5916 | + | dev: true |
|
| 5917 | + | ||
| 5918 | + | /wrap-ansi/8.1.0: |
|
| 5919 | + | resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} |
|
| 5920 | + | engines: {node: '>=12'} |
|
| 5921 | + | dependencies: |
|
| 5922 | + | ansi-styles: 6.2.1 |
|
| 5923 | + | string-width: 5.1.2 |
|
| 5924 | + | strip-ansi: 7.0.1 |
|
| 5925 | + | ||
| 5926 | + | /wrappy/1.0.2: |
|
| 5927 | + | resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} |
|
| 5928 | + | ||
| 5929 | + | /write-file-atomic/4.0.2: |
|
| 5930 | + | resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==} |
|
| 5931 | + | engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} |
|
| 5932 | + | dependencies: |
|
| 5933 | + | imurmurhash: 0.1.4 |
|
| 5934 | + | signal-exit: 3.0.7 |
|
| 5935 | + | dev: true |
|
| 5936 | + | ||
| 5937 | + | /xtend/4.0.2: |
|
| 5938 | + | resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} |
|
| 5939 | + | engines: {node: '>=0.4'} |
|
| 5940 | + | dev: true |
|
| 5941 | + | ||
| 5942 | + | /yallist/3.1.1: |
|
| 5943 | + | resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} |
|
| 5944 | + | ||
| 5945 | + | /yallist/4.0.0: |
|
| 5946 | + | resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} |
|
| 5947 | + | ||
| 5948 | + | /yaml/1.10.2: |
|
| 5949 | + | resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} |
|
| 5950 | + | engines: {node: '>= 6'} |
|
| 5951 | + | dev: true |
|
| 5952 | + | ||
| 5953 | + | /yaml/2.2.1: |
|
| 5954 | + | resolution: {integrity: sha512-e0WHiYql7+9wr4cWMx3TVQrNwejKaEe7/rHNmQmqRjazfOP5W8PB6Jpebb5o6fIapbz9o9+2ipcaTM2ZwDI6lw==} |
|
| 5955 | + | engines: {node: '>= 14'} |
|
| 5956 | + | dev: true |
|
| 5957 | + | ||
| 5958 | + | /yargs-parser/20.2.9: |
|
| 5959 | + | resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==} |
|
| 5960 | + | engines: {node: '>=10'} |
|
| 5961 | + | dev: true |
|
| 5962 | + | ||
| 5963 | + | /yargs-parser/21.1.1: |
|
| 5964 | + | resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} |
|
| 5965 | + | engines: {node: '>=12'} |
|
| 5966 | + | ||
| 5967 | + | /yocto-queue/0.1.0: |
|
| 5968 | + | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} |
|
| 5969 | + | engines: {node: '>=10'} |
|
| 5970 | + | ||
| 5971 | + | /yoga-wasm-web/0.3.0: |
|
| 5972 | + | resolution: {integrity: sha512-rD3L4jyMlO1m+RWU60lNwZQK5zmzglCV5fI1gTRikmpv3YzmNIZQbjyfE6cMNb9Xaly/C1SwemYGbsiOekMvnQ==} |
|
| 5973 | + | dev: false |
|
| 5974 | + | ||
| 5975 | + | /zod/3.20.2: |
|
| 5976 | + | resolution: {integrity: sha512-1MzNQdAvO+54H+EaK5YpyEy0T+Ejo/7YLHS93G3RnYWh5gaotGHwGeN/ZO687qEDU2y4CdStQYXVHIgrUl5UVQ==} |
|
| 5977 | + | ||
| 5978 | + | /zwitch/2.0.4: |
|
| 5979 | + | resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} |
| 1 | + | module.exports = { |
|
| 2 | + | plugins: { |
|
| 3 | + | "tailwindcss/nesting": {}, |
|
| 4 | + | tailwindcss: {}, |
|
| 5 | + | autoprefixer: {}, |
|
| 6 | + | }, |
|
| 7 | + | }; |
Binary file — no preview.
Binary file — no preview.
Binary file — no preview.
Binary file — no preview.
| 1 | + | <svg width="500" height="500" viewBox="0 0 500 500" fill="none" xmlns="http://www.w3.org/2000/svg"> |
|
| 2 | + | <path d="M20.1465 448.094H479L350.926 226.37L311.281 258.273L275.108 232.751L249.573 258.273L215.528 232.751L193.185 258.273L151.291 221.053L20.1465 448.094Z" fill="#88C0D0"/> |
|
| 3 | + | <path d="M249.573 50.9053L151.291 221.053L193.185 258.273L215.528 232.751L249.573 258.273L275.108 232.751L311.281 258.273L350.926 226.37L249.573 50.9053Z" fill="#EDEFF3"/> |
|
| 4 | + | <path d="M151.291 221.053L20.1465 448.094H479L350.926 226.37M151.291 221.053L249.573 50.9053L350.926 226.37M151.291 221.053L193.185 258.273L215.528 232.751L249.573 258.273L275.108 232.751L311.281 258.273L350.926 226.37" stroke="black" stroke-width="7"/> |
|
| 5 | + | <line x1="265.341" y1="167.541" x2="294.587" y2="218.169" stroke="black" stroke-width="5"/> |
|
| 6 | + | </svg> |
| 1 | + | { |
|
| 2 | + | "name": "Astro Theme Cactus Demo", |
|
| 3 | + | "short_name": "Astro_Cactus", |
|
| 4 | + | "description": "Starter blog site for Astro", |
|
| 5 | + | "icons": [ |
|
| 6 | + | { |
|
| 7 | + | "src": "/192x192.png", |
|
| 8 | + | "sizes": "192x192", |
|
| 9 | + | "type": "image/png" |
|
| 10 | + | }, |
|
| 11 | + | { |
|
| 12 | + | "src": "/512x512.png", |
|
| 13 | + | "sizes": "512x512", |
|
| 14 | + | "type": "image/png" |
|
| 15 | + | } |
|
| 16 | + | ], |
|
| 17 | + | "start_url": "/", |
|
| 18 | + | "background_color": "#1d1f21", |
|
| 19 | + | "theme_color": "#2bbc8a", |
|
| 20 | + | "display": "standalone" |
|
| 21 | + | } |
| 1 | + | User-agent: * |
|
| 2 | + | Allow: / |
|
| 3 | + | ||
| 4 | + | Sitemap: https://www.astro-theme-cactus.netlify.app/sitemap-index.xml |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | import type { SiteMeta } from "@/data/siteMeta"; |
|
| 3 | + | import siteConfig from "@/site-config"; |
|
| 4 | + | import "../styles/global.css"; |
|
| 5 | + | ||
| 6 | + | type Props = SiteMeta; |
|
| 7 | + | ||
| 8 | + | const { title, description, ogImage, articleDate } = Astro.props; |
|
| 9 | + | ||
| 10 | + | const titleSeparator = "•"; |
|
| 11 | + | const siteTitle = `${title} ${titleSeparator} ${siteConfig.title}`; |
|
| 12 | + | const canonicalURL = new URL(Astro.url.pathname, Astro.site); |
|
| 13 | + | const socialImageURL = new URL(ogImage ? ogImage : "/social-card.png", Astro.url).href; |
|
| 14 | + | --- |
|
| 15 | + | ||
| 16 | + | <meta charset="utf-8" /> |
|
| 17 | + | <meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no" /> |
|
| 18 | + | <meta http-equiv="X-UA-Compatible" content="IE=edge" /> |
|
| 19 | + | ||
| 20 | + | <!-- Icons / Favicon --> |
|
| 21 | + | <link rel="icon" href="/favicon.ico" sizes="any" /> |
|
| 22 | + | <link rel="icon" href="/icon.svg" type="image/svg+xml" /> |
|
| 23 | + | <link rel="apple-touch-icon" href="/apple-touch-icon.png" /> |
|
| 24 | + | <link rel="manifest" href="/manifest.webmanifest" /> |
|
| 25 | + | <link rel="canonical" href={canonicalURL} /> |
|
| 26 | + | ||
| 27 | + | <!-- Primary Meta Tags --> |
|
| 28 | + | <title>{siteTitle}</title> |
|
| 29 | + | <meta name="title" content={siteTitle} /> |
|
| 30 | + | <meta name="description" content={description} /> |
|
| 31 | + | <meta name="author" content={siteConfig.author} /> |
|
| 32 | + | ||
| 33 | + | <!-- Theme Colour --> |
|
| 34 | + | <meta name="theme-color" content={siteConfig.themeColorLight} /> |
|
| 35 | + | ||
| 36 | + | <!-- Open Graph / Facebook --> |
|
| 37 | + | <meta property="og:type" content={articleDate ? "article" : "website"} /> |
|
| 38 | + | <meta property="og:title" content={title} /> |
|
| 39 | + | <meta property="og:description" content={description} /> |
|
| 40 | + | <meta property="og:url" content={canonicalURL} /> |
|
| 41 | + | <meta property="og:site_name" content={siteConfig.title} /> |
|
| 42 | + | <meta property="og:locale" content={siteConfig.ogLocale} /> |
|
| 43 | + | <meta property="og:image" content={socialImageURL} /> |
|
| 44 | + | <meta property="og:image:width" content="1200" /> |
|
| 45 | + | <meta property="og:image:height" content="630" /> |
|
| 46 | + | { |
|
| 47 | + | articleDate && ( |
|
| 48 | + | <> |
|
| 49 | + | <meta property="article:author" content={siteConfig.author} /> |
|
| 50 | + | <meta property="article:published_time" content={articleDate} /> |
|
| 51 | + | </> |
|
| 52 | + | ) |
|
| 53 | + | } |
|
| 54 | + | ||
| 55 | + | <!-- Twitter --> |
|
| 56 | + | <meta property="twitter:card" content="summary_large_image" /> |
|
| 57 | + | <meta property="twitter:url" content={canonicalURL} /> |
|
| 58 | + | <meta property="twitter:title" content={title} /> |
|
| 59 | + | <meta property="twitter:description" content={description} /> |
|
| 60 | + | <meta property="twitter:image" content={socialImageURL} /> |
|
| 61 | + | ||
| 62 | + | <!-- RSS auto-discovery --> |
|
| 63 | + | <link rel="alternate" type="application/rss+xml" title={siteConfig.title} href="/rss.xml" /> |
| 1 | + | --- |
|
| 2 | + | import type { PaginationLink } from "@/data/shared"; |
|
| 3 | + | ||
| 4 | + | interface Props { |
|
| 5 | + | prevUrl?: PaginationLink; |
|
| 6 | + | nextUrl?: PaginationLink; |
|
| 7 | + | } |
|
| 8 | + | ||
| 9 | + | const { prevUrl, nextUrl } = Astro.props; |
|
| 10 | + | --- |
|
| 11 | + | ||
| 12 | + | { |
|
| 13 | + | (prevUrl || nextUrl) && ( |
|
| 14 | + | <nav class="flex items-center gap-x-4"> |
|
| 15 | + | {prevUrl && ( |
|
| 16 | + | <a class="mr-auto py-2 sm:hover:text-accent" href={prevUrl.url} rel="prefetch"> |
|
| 17 | + | {prevUrl.srLabel && <span class="sr-only">{prevUrl.srLabel}</span>} |
|
| 18 | + | {prevUrl.text ? prevUrl.text : "Previous"} |
|
| 19 | + | </a> |
|
| 20 | + | )} |
|
| 21 | + | {nextUrl && ( |
|
| 22 | + | <a class="ml-auto py-2 sm:hover:text-accent" href={nextUrl.url} rel="prefetch"> |
|
| 23 | + | {nextUrl.srLabel && <span class="sr-only">{nextUrl.srLabel}</span>} |
|
| 24 | + | {nextUrl.text ? nextUrl.text : "Next"} |
|
| 25 | + | </a> |
|
| 26 | + | )} |
|
| 27 | + | </nav> |
|
| 28 | + | ) |
|
| 29 | + | } |
| 1 | + | <a href="#main" class="sr-only focus:not-sr-only focus:fixed focus:top-1.5 focus:left-1" |
|
| 2 | + | >skip to content |
|
| 3 | + | </a> |
| 1 | + | --- |
|
| 2 | + | import { SOCIAL_LINKS } from "@/data/constants"; |
|
| 3 | + | ||
| 4 | + | // *** SVG icons from https://tablericons.com/ *** |
|
| 5 | + | --- |
|
| 6 | + | ||
| 7 | + | <div class="flex flex-wrap items-center gap-x-4 sm:items-center"> |
|
| 8 | + | <p>Find me on</p> |
|
| 9 | + | <ul class="flex flex-1 items-center gap-x-4 sm:flex-initial"> |
|
| 10 | + | <li> |
|
| 11 | + | <a |
|
| 12 | + | class="inline-block p-2 sm:hover:text-link" |
|
| 13 | + | href={SOCIAL_LINKS.github} |
|
| 14 | + | target="_blank" |
|
| 15 | + | rel="noopener noreferrer" |
|
| 16 | + | > |
|
| 17 | + | <svg |
|
| 18 | + | class="h-6 w-6" |
|
| 19 | + | aria-hidden="true" |
|
| 20 | + | focusable="false" |
|
| 21 | + | xmlns="http://www.w3.org/2000/svg" |
|
| 22 | + | viewBox="0 0 24 24" |
|
| 23 | + | stroke-width="1.5" |
|
| 24 | + | stroke="currentColor" |
|
| 25 | + | fill="none" |
|
| 26 | + | stroke-linecap="round" |
|
| 27 | + | stroke-linejoin="round" |
|
| 28 | + | > |
|
| 29 | + | <path stroke="none" d="M0 0h24v24H0z" fill="none"></path> |
|
| 30 | + | <path |
|
| 31 | + | d="M9 19c-4.3 1.4 -4.3 -2.5 -6 -3m12 5v-3.5c0 -1 .1 -1.4 -.5 -2c2.8 -.3 5.5 -1.4 5.5 -6a4.6 4.6 0 0 0 -1.3 -3.2a4.2 4.2 0 0 0 -.1 -3.2s-1.1 -.3 -3.5 1.3a12.3 12.3 0 0 0 -6.2 0c-2.4 -1.6 -3.5 -1.3 -3.5 -1.3a4.2 4.2 0 0 0 -.1 3.2a4.6 4.6 0 0 0 -1.3 3.2c0 4.6 2.7 5.7 5.5 6c-.6 .6 -.6 1.2 -.5 2v3.5" |
|
| 32 | + | > |
|
| 33 | + | </path> |
|
| 34 | + | </svg> |
|
| 35 | + | <span class="sr-only">Github</span> |
|
| 36 | + | </a> |
|
| 37 | + | </li> |
|
| 38 | + | <li> |
|
| 39 | + | <a |
|
| 40 | + | class="inline-block p-2 sm:hover:text-link" |
|
| 41 | + | href={SOCIAL_LINKS.twitter} |
|
| 42 | + | target="_blank" |
|
| 43 | + | rel="noopener noreferrer" |
|
| 44 | + | > |
|
| 45 | + | <svg |
|
| 46 | + | class="h-6 w-6" |
|
| 47 | + | aria-hidden="true" |
|
| 48 | + | focusable="false" |
|
| 49 | + | xmlns="http://www.w3.org/2000/svg" |
|
| 50 | + | viewBox="0 0 24 24" |
|
| 51 | + | stroke-width="1.5" |
|
| 52 | + | stroke="currentColor" |
|
| 53 | + | fill="none" |
|
| 54 | + | stroke-linecap="round" |
|
| 55 | + | stroke-linejoin="round" |
|
| 56 | + | > |
|
| 57 | + | <path stroke="none" d="M0 0h24v24H0z" fill="none"></path> |
|
| 58 | + | <path |
|
| 59 | + | d="M22 4.01c-1 .49 -1.98 .689 -3 .99c-1.121 -1.265 -2.783 -1.335 -4.38 -.737s-2.643 2.06 -2.62 3.737v1c-3.245 .083 -6.135 -1.395 -8 -4c0 0 -4.182 7.433 4 11c-1.872 1.247 -3.739 2.088 -6 2c3.308 1.803 6.913 2.423 10.034 1.517c3.58 -1.04 6.522 -3.723 7.651 -7.742a13.84 13.84 0 0 0 .497 -3.753c-.002 -.249 1.51 -2.772 1.818 -4.013z" |
|
| 60 | + | > |
|
| 61 | + | </path> |
|
| 62 | + | </svg> |
|
| 63 | + | <span class="sr-only">Twitter</span> |
|
| 64 | + | </a> |
|
| 65 | + | </li> |
|
| 66 | + | <li> |
|
| 67 | + | <a class="inline-block p-2 sm:hover:text-link" href={`mailto:${SOCIAL_LINKS.email}`}> |
|
| 68 | + | <svg |
|
| 69 | + | class="h-6 w-6" |
|
| 70 | + | aria-hidden="true" |
|
| 71 | + | focusable="false" |
|
| 72 | + | xmlns="http://www.w3.org/2000/svg" |
|
| 73 | + | viewBox="0 0 24 24" |
|
| 74 | + | stroke-width="1.5" |
|
| 75 | + | stroke="currentColor" |
|
| 76 | + | fill="none" |
|
| 77 | + | stroke-linecap="round" |
|
| 78 | + | stroke-linejoin="round" |
|
| 79 | + | > |
|
| 80 | + | <path stroke="none" d="M0 0h24v24H0z" fill="none"></path> |
|
| 81 | + | <rect x="3" y="5" width="18" height="14" rx="2"></rect> |
|
| 82 | + | <polyline points="3 7 12 13 21 7"></polyline> |
|
| 83 | + | </svg> |
|
| 84 | + | <span class="sr-only">Email</span> |
|
| 85 | + | </a> |
|
| 86 | + | </li> |
|
| 87 | + | </ul> |
|
| 88 | + | </div> |
| 1 | + | <script> |
|
| 2 | + | class ThemeToggle extends HTMLElement { |
|
| 3 | + | constructor() { |
|
| 4 | + | super(); |
|
| 5 | + | const button = this.querySelector("button") as HTMLButtonElement; |
|
| 6 | + | ||
| 7 | + | function setTheme(dark: boolean) { |
|
| 8 | + | // This could/should be a CustomEvent() |
|
| 9 | + | document.documentElement.classList.toggle("dark", dark); |
|
| 10 | + | // set the aria-pressed attribute, dark mode === aria-pressed=true |
|
| 11 | + | button.setAttribute("aria-pressed", String(dark)); |
|
| 12 | + | } |
|
| 13 | + | ||
| 14 | + | // button clicked, toggle dark mode |
|
| 15 | + | button.addEventListener("click", () => setTheme(!this.isDark())); |
|
| 16 | + | ||
| 17 | + | // Initalise button state |
|
| 18 | + | setTheme(this.isDark()); |
|
| 19 | + | } |
|
| 20 | + | ||
| 21 | + | // returns if the root element contains the dark class |
|
| 22 | + | isDark() { |
|
| 23 | + | return document.documentElement.classList.contains("dark"); |
|
| 24 | + | } |
|
| 25 | + | } |
|
| 26 | + | ||
| 27 | + | customElements.define("theme-toggle", ThemeToggle); |
|
| 28 | + | </script> |
|
| 29 | + | ||
| 30 | + | <theme-toggle class="ml-auto"> |
|
| 31 | + | <button |
|
| 32 | + | type="button" |
|
| 33 | + | id="toggle-theme" |
|
| 34 | + | class="group relative h-9 w-9 rounded-md bg-zinc-200 p-2 ring-zinc-400 transition-all hover:ring-2 dark:bg-zinc-700" |
|
| 35 | + | aria-label="Toggle Dark Mode" |
|
| 36 | + | > |
|
| 37 | + | <svg |
|
| 38 | + | id="sun-svg" |
|
| 39 | + | class="absolute top-1/2 left-1/2 h-7 w-7 -translate-x-1/2 -translate-y-1/2 scale-0 opacity-0 transition-all group-aria-pressed:scale-100 group-aria-pressed:opacity-100" |
|
| 40 | + | aria-hidden="true" |
|
| 41 | + | focusable="false" |
|
| 42 | + | stroke-width="1.5" |
|
| 43 | + | viewBox="0 0 24 24" |
|
| 44 | + | fill="none" |
|
| 45 | + | xmlns="http://www.w3.org/2000/svg" |
|
| 46 | + | > |
|
| 47 | + | <path |
|
| 48 | + | d="M12 18C15.3137 18 18 15.3137 18 12C18 8.68629 15.3137 6 12 6C8.68629 6 6 8.68629 6 12C6 15.3137 8.68629 18 12 18Z" |
|
| 49 | + | stroke="currentColor" |
|
| 50 | + | stroke-linecap="round" |
|
| 51 | + | stroke-linejoin="round"></path> |
|
| 52 | + | <path d="M22 12L23 12" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" |
|
| 53 | + | ></path> |
|
| 54 | + | <path d="M12 2V1" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path> |
|
| 55 | + | <path d="M12 23V22" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" |
|
| 56 | + | ></path> |
|
| 57 | + | <path d="M20 20L19 19" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" |
|
| 58 | + | ></path> |
|
| 59 | + | <path d="M20 4L19 5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" |
|
| 60 | + | ></path> |
|
| 61 | + | <path d="M4 20L5 19" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" |
|
| 62 | + | ></path> |
|
| 63 | + | <path d="M4 4L5 5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" |
|
| 64 | + | ></path> |
|
| 65 | + | <path d="M1 12L2 12" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" |
|
| 66 | + | ></path> |
|
| 67 | + | </svg> |
|
| 68 | + | <svg |
|
| 69 | + | id="moon-svg" |
|
| 70 | + | class="absolute top-1/2 left-1/2 h-7 w-7 -translate-x-1/2 -translate-y-1/2 scale-0 opacity-0 transition-all group-aria-[pressed=false]:scale-100 group-aria-[pressed=false]:opacity-100" |
|
| 71 | + | aria-hidden="true" |
|
| 72 | + | focusable="false" |
|
| 73 | + | stroke-width="1.5" |
|
| 74 | + | viewBox="0 0 24 24" |
|
| 75 | + | fill="none" |
|
| 76 | + | xmlns="http://www.w3.org/2000/svg" |
|
| 77 | + | > |
|
| 78 | + | <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="1.5"></circle> |
|
| 79 | + | <path |
|
| 80 | + | d="M7.63262 3.06689C8.98567 3.35733 9.99999 4.56025 9.99999 6.00007C9.99999 7.65693 8.65685 9.00007 6.99999 9.00007C5.4512 9.00007 4.17653 7.82641 4.01685 6.31997" |
|
| 81 | + | stroke="currentColor" |
|
| 82 | + | stroke-width="1.5"></path> |
|
| 83 | + | <path |
|
| 84 | + | d="M22 13.0505C21.3647 12.4022 20.4793 12 19.5 12C17.567 12 16 13.567 16 15.5C16 17.2632 17.3039 18.7219 19 18.9646" |
|
| 85 | + | stroke="currentColor" |
|
| 86 | + | stroke-width="1.5"></path> |
|
| 87 | + | <path |
|
| 88 | + | d="M14.5 8.51L14.51 8.49889" |
|
| 89 | + | stroke="currentColor" |
|
| 90 | + | stroke-linecap="round" |
|
| 91 | + | stroke-linejoin="round"></path> |
|
| 92 | + | <path |
|
| 93 | + | d="M10 17C11.1046 17 12 16.1046 12 15C12 13.8954 11.1046 13 10 13C8.89543 13 8 13.8954 8 15C8 16.1046 8.89543 17 10 17Z" |
|
| 94 | + | stroke="currentColor" |
|
| 95 | + | stroke-linecap="round" |
|
| 96 | + | stroke-linejoin="round"></path> |
|
| 97 | + | </svg> |
|
| 98 | + | </button> |
|
| 99 | + | </theme-toggle> |
| 1 | + | --- |
|
| 2 | + | import { getFormattedDate } from "@/utils"; |
|
| 3 | + | import type { CollectionEntry } from "astro:content"; |
|
| 4 | + | ||
| 5 | + | interface Props { |
|
| 6 | + | content: CollectionEntry<"post">; |
|
| 7 | + | } |
|
| 8 | + | ||
| 9 | + | const { content } = Astro.props; |
|
| 10 | + | ||
| 11 | + | const datetime = content.data.publishDate.toISOString(); |
|
| 12 | + | const postDate = getFormattedDate(content.data.publishDate); |
|
| 13 | + | --- |
|
| 14 | + | ||
| 15 | + | <h1 class="title mb-3 sm:mb-1">{content.data.title}</h1> |
|
| 16 | + | <time datetime={datetime}>{postDate}</time> |
|
| 17 | + | { |
|
| 18 | + | !!content.data.tags?.length && ( |
|
| 19 | + | <div class="mt-1 sm:mt-0 sm:inline sm:before:content-['|']"> |
|
| 20 | + | <svg |
|
| 21 | + | aria-hidden="true" |
|
| 22 | + | focusable="false" |
|
| 23 | + | xmlns="http://www.w3.org/2000/svg" |
|
| 24 | + | class="inline-block h-6 w-6" |
|
| 25 | + | viewBox="0 0 24 24" |
|
| 26 | + | stroke-width="1.5" |
|
| 27 | + | stroke="currentColor" |
|
| 28 | + | fill="none" |
|
| 29 | + | stroke-linecap="round" |
|
| 30 | + | stroke-linejoin="round" |
|
| 31 | + | > |
|
| 32 | + | <path stroke="none" d="M0 0h24v24H0z" fill="none" /> |
|
| 33 | + | <path d="M7.859 6h-2.834a2.025 2.025 0 0 0 -2.025 2.025v2.834c0 .537 .213 1.052 .593 1.432l6.116 6.116a2.025 2.025 0 0 0 2.864 0l2.834 -2.834a2.025 2.025 0 0 0 0 -2.864l-6.117 -6.116a2.025 2.025 0 0 0 -1.431 -.593z" /> |
|
| 34 | + | <path d="M17.573 18.407l2.834 -2.834a2.025 2.025 0 0 0 0 -2.864l-7.117 -7.116" /> |
|
| 35 | + | <path d="M6 9h-.01" /> |
|
| 36 | + | </svg> |
|
| 37 | + | {content.data.tags.map((tag, i) => ( |
|
| 38 | + | <> |
|
| 39 | + | <a |
|
| 40 | + | class="cactus-link inline-block before:content-['#']" |
|
| 41 | + | aria-label={`View more blogs with the tag ${tag}`} |
|
| 42 | + | href={`/tags/${tag}`} |
|
| 43 | + | >{tag}</a> |
|
| 44 | + | {i < content.data.tags.length - 1 && ", "} |
|
| 45 | + | </> |
|
| 46 | + | ))} |
|
| 47 | + | </div> |
|
| 48 | + | ) |
|
| 49 | + | } |
|
| 50 | + | <p class="mt-8">{content.data.description}</p> |
| 1 | + | --- |
|
| 2 | + | import type { CollectionEntry } from "astro:content"; |
|
| 3 | + | import type { IElement } from "@/data/shared"; |
|
| 4 | + | import { getFormattedDate } from "@/utils"; |
|
| 5 | + | ||
| 6 | + | interface Props extends IElement { |
|
| 7 | + | post: CollectionEntry<"post">; |
|
| 8 | + | withDesc?: boolean; |
|
| 9 | + | } |
|
| 10 | + | ||
| 11 | + | const { post, as: Element = "div", withDesc = false } = Astro.props; |
|
| 12 | + | const date = new Date(post.data.publishDate); |
|
| 13 | + | const datetime = date.toISOString(); |
|
| 14 | + | const postDate = getFormattedDate(date, { month: "short" }); |
|
| 15 | + | --- |
|
| 16 | + | ||
| 17 | + | <time datetime={datetime} class="min-w-[120px] text-gray-500">{postDate}</time> |
|
| 18 | + | <Element> |
|
| 19 | + | <a href={`/posts/${post.slug}`} class="cactus-link" rel="prefetch"> |
|
| 20 | + | {post.data.title} |
|
| 21 | + | </a> |
|
| 22 | + | </Element> |
|
| 23 | + | {withDesc && <q class="mt-2 block italic line-clamp-3">{post.data.description}</q>} |
| 1 | + | --- |
|
| 2 | + | import { MENU_LINKS } from "@/data/constants"; |
|
| 3 | + | ||
| 4 | + | const year = new Date().getFullYear(); |
|
| 5 | + | --- |
|
| 6 | + | ||
| 7 | + | <footer |
|
| 8 | + | class="mt-auto flex w-full flex-col items-center justify-center gap-y-2 pt-20 pb-4 text-center align-top text-gray-500 sm:flex-row sm:justify-between sm:text-xs" |
|
| 9 | + | > |
|
| 10 | + | <div class="mr-0 sm:mr-4"> |
|
| 11 | + | Copyright © {year} |
|
| 12 | + | <span aria-label="rocket emoji">🚀</span> |
|
| 13 | + | Astro Cactus |
|
| 14 | + | </div> |
|
| 15 | + | <nav |
|
| 16 | + | aria-label="More on this site" |
|
| 17 | + | class="flex gap-x-2 sm:gap-x-0 sm:divide-x sm:divide-gray-500" |
|
| 18 | + | > |
|
| 19 | + | { |
|
| 20 | + | MENU_LINKS.map((link) => ( |
|
| 21 | + | <a |
|
| 22 | + | href={link.path} |
|
| 23 | + | class="sm:hover:text-textColor px-4 py-2 sm:py-0 sm:px-2 sm:hover:underline" |
|
| 24 | + | > |
|
| 25 | + | {link.title} |
|
| 26 | + | </a> |
|
| 27 | + | )) |
|
| 28 | + | } |
|
| 29 | + | </nav> |
|
| 30 | + | </footer> |
| 1 | + | --- |
|
| 2 | + | import ThemeToggle from "../ThemeToggle.astro"; |
|
| 3 | + | import { MENU_LINKS } from "@/data/constants"; |
|
| 4 | + | ||
| 5 | + | const url = new URL(Astro.request.url); |
|
| 6 | + | --- |
|
| 7 | + | ||
| 8 | + | <script> |
|
| 9 | + | import { toggleClass } from "@/utils"; |
|
| 10 | + | ||
| 11 | + | document.addEventListener("DOMContentLoaded", () => { |
|
| 12 | + | const header = document.getElementById("main-header") as HTMLElement; |
|
| 13 | + | const toggleMenuButton = document.getElementById("toggle-navigation-menu") as HTMLButtonElement; |
|
| 14 | + | let menuOpen = false; |
|
| 15 | + | ||
| 16 | + | toggleMenuButton.addEventListener("click", () => { |
|
| 17 | + | toggleClass(header, "menu-open"); |
|
| 18 | + | menuOpen = !menuOpen; |
|
| 19 | + | toggleMenuButton.setAttribute("aria-expanded", menuOpen.toString()); |
|
| 20 | + | }); |
|
| 21 | + | }); |
|
| 22 | + | </script> |
|
| 23 | + | ||
| 24 | + | <header id="main-header" class="group relative mb-28 flex items-center sm:pl-[4.5rem]"> |
|
| 25 | + | <div class="flex sm:flex-col"> |
|
| 26 | + | <a |
|
| 27 | + | href="/" |
|
| 28 | + | class="inline-flex items-center grayscale hover:filter-none sm:relative sm:inline-block" |
|
| 29 | + | aria-current={url.pathname === "/" ? "page" : false} |
|
| 30 | + | > |
|
| 31 | + | <svg |
|
| 32 | + | class="mr-3 h-10 w-6 sm:absolute sm:left-[-4.5rem] sm:mr-0 sm:h-20 sm:w-12" |
|
| 33 | + | aria-hidden="true" |
|
| 34 | + | focusable="false" |
|
| 35 | + | fill="none" |
|
| 36 | + | xmlns="http://www.w3.org/2000/svg" |
|
| 37 | + | viewBox="0 0 400 400" |
|
| 38 | + | > |
|
| 39 | + | <title>Logo</title> |
|
| 40 | + | <svg |
|
| 41 | + | width="387" |
|
| 42 | + | height="334" |
|
| 43 | + | viewBox="0 0 387 334" |
|
| 44 | + | fill="none" |
|
| 45 | + | xmlns="http://www.w3.org/2000/svg" |
|
| 46 | + | > |
|
| 47 | + | <path |
|
| 48 | + | d="M6.80859 330H379.955L275.803 149.691L243.564 175.635L214.147 154.88L193.382 175.635L165.695 154.88L147.526 175.635L113.457 145.367L6.80859 330Z" |
|
| 49 | + | fill="#88C0D0"></path> |
|
| 50 | + | <path |
|
| 51 | + | d="M193.382 7L113.457 145.367L147.526 175.635L165.695 154.88L193.382 175.635L214.147 154.88L243.564 175.635L275.803 149.691L193.382 7Z" |
|
| 52 | + | fill="#EDEFF3"></path> |
|
| 53 | + | <path |
|
| 54 | + | d="M113.457 145.367L6.80859 330H379.955L275.803 149.691M113.457 145.367L193.382 7L275.803 149.691M113.457 145.367L147.526 175.635L165.695 154.88L193.382 175.635L214.147 154.88L243.564 175.635L275.803 149.691" |
|
| 55 | + | stroke="black" |
|
| 56 | + | stroke-width="7"></path> |
|
| 57 | + | <line x1="206.608" y1="101.617" x2="230.392" y2="142.787" stroke="black" stroke-width="5" |
|
| 58 | + | ></line> |
|
| 59 | + | </svg> |
|
| 60 | + | </svg> |
|
| 61 | + | <span class="text-xl font-bold sm:text-2xl">Steve Simkins</span> |
|
| 62 | + | </a> |
|
| 63 | + | <nav |
|
| 64 | + | id="navigation-menu" |
|
| 65 | + | class="absolute -inset-x-4 top-14 hidden flex-col items-end gap-y-4 rounded-md bg-[color:var(--theme-menu-bg)] py-4 text-accent shadow backdrop-blur group-[.menu-open]:z-50 group-[.menu-open]:flex sm:static sm:z-auto sm:mt-1 sm:-ml-4 sm:flex sm:flex-row sm:items-center sm:divide-x sm:divide-dashed sm:divide-accent sm:rounded-none sm:bg-transparent sm:py-0 sm:shadow-none sm:backdrop-blur-none" |
|
| 66 | + | aria-label="Main menu" |
|
| 67 | + | > |
|
| 68 | + | { |
|
| 69 | + | MENU_LINKS.map((link) => ( |
|
| 70 | + | <a |
|
| 71 | + | href={link.path} |
|
| 72 | + | class="py-4 px-4 sm:py-0 sm:hover:underline" |
|
| 73 | + | aria-current={url.pathname === link.path ? "page" : false} |
|
| 74 | + | rel="prefetch" |
|
| 75 | + | > |
|
| 76 | + | {link.title} |
|
| 77 | + | </a> |
|
| 78 | + | )) |
|
| 79 | + | } |
|
| 80 | + | </nav> |
|
| 81 | + | </div> |
|
| 82 | + | <ThemeToggle /> |
|
| 83 | + | <button |
|
| 84 | + | id="toggle-navigation-menu" |
|
| 85 | + | class="group relative ml-8 h-7 w-7 sm:invisible sm:hidden" |
|
| 86 | + | type="button" |
|
| 87 | + | aria-label="Open main menu" |
|
| 88 | + | aria-expanded="false" |
|
| 89 | + | aria-haspopup="menu" |
|
| 90 | + | > |
|
| 91 | + | <svg |
|
| 92 | + | id="line-svg" |
|
| 93 | + | class="absolute top-1/2 left-1/2 h-full w-full -translate-x-1/2 -translate-y-1/2 transition-all group-aria-expanded:scale-0 group-aria-expanded:opacity-0" |
|
| 94 | + | aria-hidden="true" |
|
| 95 | + | focusable="false" |
|
| 96 | + | xmlns="http://www.w3.org/2000/svg" |
|
| 97 | + | fill="none" |
|
| 98 | + | viewBox="0 0 24 24" |
|
| 99 | + | stroke-width="1.5" |
|
| 100 | + | stroke="currentColor" |
|
| 101 | + | > |
|
| 102 | + | <path stroke-linecap="round" stroke-linejoin="round" d="M3.75 9h16.5m-16.5 6.75h16.5"></path> |
|
| 103 | + | </svg> |
|
| 104 | + | <svg |
|
| 105 | + | id="cross-svg" |
|
| 106 | + | class="absolute top-1/2 left-1/2 h-full w-full -translate-x-1/2 -translate-y-1/2 scale-0 text-accent opacity-0 transition-all group-aria-expanded:scale-100 group-aria-expanded:opacity-100" |
|
| 107 | + | class="text-accent" |
|
| 108 | + | aria-hidden="true" |
|
| 109 | + | focusable="false" |
|
| 110 | + | xmlns="http://www.w3.org/2000/svg" |
|
| 111 | + | fill="none" |
|
| 112 | + | viewBox="0 0 24 24" |
|
| 113 | + | stroke-width="1.5" |
|
| 114 | + | stroke="currentColor" |
|
| 115 | + | > |
|
| 116 | + | <path stroke-linecap="round" stroke-linejoin="round" d="M6 18L18 6M6 6l12 12"></path> |
|
| 117 | + | </svg> |
|
| 118 | + | </button> |
|
| 119 | + | </header> |
| 1 | + | import { z, defineCollection } from "astro:content"; |
|
| 2 | + | ||
| 3 | + | function removeDupsAndLowerCase(array: string[]) { |
|
| 4 | + | if (!array.length) return array; |
|
| 5 | + | const lowercaseItems = array.map((str) => str.toLowerCase()); |
|
| 6 | + | const distinctItems = new Set(lowercaseItems); |
|
| 7 | + | return Array.from(distinctItems); |
|
| 8 | + | } |
|
| 9 | + | ||
| 10 | + | const post = defineCollection({ |
|
| 11 | + | schema: z.object({ |
|
| 12 | + | title: z.string().max(60), |
|
| 13 | + | description: z.string().min(50).max(160), |
|
| 14 | + | publishDate: z.string().transform((str) => new Date(str)), |
|
| 15 | + | tags: z.array(z.string()).default([]).transform(removeDupsAndLowerCase), |
|
| 16 | + | ogImage: z.string().optional(), |
|
| 17 | + | }), |
|
| 18 | + | }); |
|
| 19 | + | ||
| 20 | + | export const collections = { post }; |
| 1 | + | --- |
|
| 2 | + | title: "Testing testing 123!" |
|
| 3 | + | publishDate: "13 May 2022" |
|
| 4 | + | description: "Hello world!!! This is an example blog post showcasing some of the cool stuff Astro Cactus theme can do." |
|
| 5 | + | tags: ["example", "blog", "cool"] |
|
| 6 | + | --- |
|
| 7 | + | ||
| 8 | + | import { Image } from "@astrojs/image/components"; |
|
| 9 | + | ||
| 10 | + | ## Hello World |
|
| 11 | + | ||
| 12 | + | Following is an example blog post written in an mdx file. You can find me @ src/content/post/hello-world.mdx. Here you can add/update/delete details and watch the changes live when running in develop mode. |
|
| 13 | + | ||
| 14 | + | <Image |
|
| 15 | + | src="https://picsum.photos/id/1025/550/460" |
|
| 16 | + | alt="A covered up pug in the woods" |
|
| 17 | + | width={550} |
|
| 18 | + | height={460} |
|
| 19 | + | /> |
|
| 20 | + | ||
| 21 | + | ## Using some markdown elements |
|
| 22 | + | ||
| 23 | + | Here we have a simple js code block. |
|
| 24 | + | ||
| 25 | + | ```js |
|
| 26 | + | let string = "JavaScript syntax highlighting"; |
|
| 27 | + | ``` |
|
| 28 | + | ||
| 29 | + | This is styled by Shiki, set via the [config](https://docs.astro.build/en/guides/markdown-content/#syntax-highlighting) for Astro. |
|
| 30 | + | ||
| 31 | + | You can choose your own theme from this [library](https://github.com/shikijs/shiki/blob/main/docs/themes.md#all-themes), which is currently set to Dracula, in the file `astro.config.mjs`. |
|
| 32 | + | ||
| 33 | + | Here is a horizontal rule. |
|
| 34 | + | ||
| 35 | + | --- |
|
| 36 | + | ||
| 37 | + | Here is a list: |
|
| 38 | + | ||
| 39 | + | - Item number 1 |
|
| 40 | + | - Item number 2 |
|
| 41 | + | - Item number 3 |
|
| 42 | + | ||
| 43 | + | And an ordered list: |
|
| 44 | + | ||
| 45 | + | 1. James Madison |
|
| 46 | + | 2. James Monroe |
|
| 47 | + | 3. John Quincy Adams |
|
| 48 | + | ||
| 49 | + | Here is a table: |
|
| 50 | + | ||
| 51 | + | | Item | Price | # In stock | |
|
| 52 | + | | ------------ | :---: | ---------: | |
|
| 53 | + | | Juicy Apples | 1.99 | 739 | |
|
| 54 | + | | Bananas | 1.89 | 6 | |
|
| 55 | + | ||
| 56 | + | ## Tailwind CSS Prose styling |
|
| 57 | + | ||
| 58 | + | > I'm a simple blockquote. |
|
| 59 | + | > I'm styled by Tailwind CSS prose plugin |
| 1 | + | --- |
|
| 2 | + | title: "Lorem ipsum dolor sit, amet consectetur adipisicing elit. Id" |
|
| 3 | + | description: "This post is purely for testing if the css is correct for the title on the page" |
|
| 4 | + | publishDate: "01 Feb 2023" |
|
| 5 | + | tags: ["test"] |
|
| 6 | + | --- |
|
| 7 | + | ||
| 8 | + | ## Testing the title tag |
| 1 | + | --- |
|
| 2 | + | title: "A post of Markdown elements" |
|
| 3 | + | description: "This post is for testing and listing a number of different markdown elements" |
|
| 4 | + | publishDate: "22 Feb 2023" |
|
| 5 | + | tags: ["test", "markdown"] |
|
| 6 | + | --- |
|
| 7 | + | ||
| 8 | + | ## This is a H2 Heading |
|
| 9 | + | ||
| 10 | + | ### This is a H3 Heading |
|
| 11 | + | ||
| 12 | + | #### This is a H4 Heading |
|
| 13 | + | ||
| 14 | + | ##### This is a H5 Heading |
|
| 15 | + | ||
| 16 | + | ###### This is a H6 Heading |
|
| 17 | + | ||
| 18 | + | ## Horizontal Rules |
|
| 19 | + | ||
| 20 | + | --- |
|
| 21 | + | ||
| 22 | + | --- |
|
| 23 | + | ||
| 24 | + | --- |
|
| 25 | + | ||
| 26 | + | ## Emphasis |
|
| 27 | + | ||
| 28 | + | **This is bold text** |
|
| 29 | + | ||
| 30 | + | _This is italic text_ |
|
| 31 | + | ||
| 32 | + | ~~Strikethrough~~ |
|
| 33 | + | ||
| 34 | + | ## Blockquotes |
|
| 35 | + | ||
| 36 | + | > Blockquotes can also be nested... |
|
| 37 | + | > |
|
| 38 | + | > > ...by using additional greater-than signs right next to each other... |
|
| 39 | + | > > |
|
| 40 | + | > > > ...or with spaces between arrows. |
|
| 41 | + | ||
| 42 | + | ## Lists |
|
| 43 | + | ||
| 44 | + | Unordered |
|
| 45 | + | ||
| 46 | + | - Create a list by starting a line with `+`, `-`, or `*` |
|
| 47 | + | - Sub-lists are made by indenting 2 spaces: |
|
| 48 | + | - Marker character change forces new list start: |
|
| 49 | + | - Ac tristique libero volutpat at |
|
| 50 | + | - Facilisis in pretium nisl aliquet |
|
| 51 | + | - Nulla volutpat aliquam velit |
|
| 52 | + | - Very easy! |
|
| 53 | + | ||
| 54 | + | Ordered |
|
| 55 | + | ||
| 56 | + | 1. Lorem ipsum dolor sit amet |
|
| 57 | + | 2. Consectetur adipiscing elit |
|
| 58 | + | 3. Integer molestie lorem at massa |
|
| 59 | + | ||
| 60 | + | 4. You can use sequential numbers... |
|
| 61 | + | 5. ...or keep all the numbers as `1.` |
|
| 62 | + | ||
| 63 | + | Start numbering with offset: |
|
| 64 | + | ||
| 65 | + | 57. foo |
|
| 66 | + | 1. bar |
|
| 67 | + | ||
| 68 | + | ## Code |
|
| 69 | + | ||
| 70 | + | Inline `code` |
|
| 71 | + | ||
| 72 | + | Indented code |
|
| 73 | + | ||
| 74 | + | // Some comments |
|
| 75 | + | line 1 of code |
|
| 76 | + | line 2 of code |
|
| 77 | + | line 3 of code |
|
| 78 | + | ||
| 79 | + | Block code "fences" |
|
| 80 | + | ||
| 81 | + | ``` |
|
| 82 | + | Sample text here... |
|
| 83 | + | ``` |
|
| 84 | + | ||
| 85 | + | Syntax highlighting |
|
| 86 | + | ||
| 87 | + | ```js |
|
| 88 | + | var foo = function (bar) { |
|
| 89 | + | return bar++; |
|
| 90 | + | }; |
|
| 91 | + | ||
| 92 | + | console.log(foo(5)); |
|
| 93 | + | ``` |
|
| 94 | + | ||
| 95 | + | ## Tables |
|
| 96 | + | ||
| 97 | + | | Option | Description | |
|
| 98 | + | | ------ | ------------------------------------------------------------------------- | |
|
| 99 | + | | data | path to data files to supply the data that will be passed into templates. | |
|
| 100 | + | | engine | engine to be used for processing templates. Handlebars is the default. | |
|
| 101 | + | | ext | extension to be used for dest files. | |
|
| 102 | + | ||
| 103 | + | Right aligned columns |
|
| 104 | + | ||
| 105 | + | | Option | Description | |
|
| 106 | + | | -----: | ------------------------------------------------------------------------: | |
|
| 107 | + | | data | path to data files to supply the data that will be passed into templates. | |
|
| 108 | + | | engine | engine to be used for processing templates. Handlebars is the default. | |
|
| 109 | + | | ext | extension to be used for dest files. | |
|
| 110 | + | ||
| 111 | + | ## Links |
|
| 112 | + | ||
| 113 | + | [Content from markdown-it](https://markdown-it.github.io/) |
|
| 114 | + | ||
| 115 | + | ## Quotes |
|
| 116 | + | ||
| 117 | + | "Double quotes" and 'single quotes' |
| 1 | + | --- |
|
| 2 | + | title: "This post doeesn't have any content" |
|
| 3 | + | description: "This post is purely for testing the table of content, which should not be rendered" |
|
| 4 | + | publishDate: "22 Feb 2023" |
|
| 5 | + | tags: ["test", "toc"] |
|
| 6 | + | --- |
| 1 | + | --- |
|
| 2 | + | title: "My Second Post" |
|
| 3 | + | publishDate: "12 June 2022" |
|
| 4 | + | description: "Another example post for Astro Cactus, this time written in a plain markdown file" |
|
| 5 | + | tags: ["example", "blog"] |
|
| 6 | + | --- |
|
| 7 | + | ||
| 8 | + | ## This is a post made with Markdown |
|
| 9 | + | ||
| 10 | + | ```js |
|
| 11 | + | // Example JavaScript |
|
| 12 | + | function returnSeven() { |
|
| 13 | + | return 7; |
|
| 14 | + | } |
|
| 15 | + | ``` |
| 1 | + | --- |
|
| 2 | + | title: "Example Social Image" |
|
| 3 | + | publishDate: "27 January 2023" |
|
| 4 | + | description: "An example post for Astro Cactus, detailing how to add a custom social image card in the frontmatter" |
|
| 5 | + | tags: ["example", "blog", "image"] |
|
| 6 | + | ogImage: "/social-card.png" |
|
| 7 | + | --- |
|
| 8 | + | ||
| 9 | + | ## Adding your own social image card to a post |
|
| 10 | + | ||
| 11 | + | This post is an example of how to add a custom social image, also known as an OG image, to a blog post. |
|
| 12 | + | By adding the optional ogImage property to the frontmatter of a post, [satori](https://github.com/vercel/satori) won't generate an image for this page. |
| 1 | + | --- |
|
| 2 | + | title: "Unique tags validation" |
|
| 3 | + | publishDate: "30 January 2023" |
|
| 4 | + | description: "This post is used for validating if duplicate tags are removed, regardless of the string case" |
|
| 5 | + | tags: ["blog", "blog", "Blog", "test", "bloG", "Test", "BLOG"] |
|
| 6 | + | --- |
|
| 7 | + | ||
| 8 | + | ## This post is to test zod transform |
|
| 9 | + | ||
| 10 | + | If you open the file `src/content/post/unique-tags.md`, the tags array has a number of duplicate blog strings of various cases. |
|
| 11 | + | ||
| 12 | + | These are removed as part of the removeDupsAndLowercase function found in `src/content/config.ts`. |
| 1 | + | export const MENU_LINKS = [ |
|
| 2 | + | { |
|
| 3 | + | title: "Home", |
|
| 4 | + | path: "/", |
|
| 5 | + | }, |
|
| 6 | + | { |
|
| 7 | + | title: "About", |
|
| 8 | + | path: "/about", |
|
| 9 | + | }, |
|
| 10 | + | { |
|
| 11 | + | title: "Blog", |
|
| 12 | + | path: "/posts", |
|
| 13 | + | }, |
|
| 14 | + | ]; |
|
| 15 | + | ||
| 16 | + | // ! Remember to add your own socials |
|
| 17 | + | export const SOCIAL_LINKS = { |
|
| 18 | + | github: "https://github.com/stevedsimkins", |
|
| 19 | + | twitter: "https://twitter.com/stevedsimkins", |
|
| 20 | + | email: "stevedsimkins@gmail.com", |
|
| 21 | + | }; |
| 1 | + | interface IElement { |
|
| 2 | + | readonly as?: keyof HTMLElementTagNameMap; |
|
| 3 | + | } |
|
| 4 | + | ||
| 5 | + | interface PaginationLink { |
|
| 6 | + | url: string; |
|
| 7 | + | text?: string; |
|
| 8 | + | srLabel?: string; |
|
| 9 | + | } |
|
| 10 | + | ||
| 11 | + | export type { IElement, PaginationLink }; |
| 1 | + | type SiteMeta = { |
|
| 2 | + | title: string; |
|
| 3 | + | description?: string; |
|
| 4 | + | ogImage?: string | undefined; |
|
| 5 | + | articleDate?: string | undefined; |
|
| 6 | + | }; |
|
| 7 | + | ||
| 8 | + | export type { SiteMeta }; |
| 1 | + | /// <reference path="../.astro/types.d.ts" /> |
|
| 2 | + | /// <reference types="@astrojs/image/client" /> |
| 1 | + | --- |
|
| 2 | + | import type { SiteMeta } from "@/data/siteMeta"; |
|
| 3 | + | import BaseHead from "@/components/BaseHead"; |
|
| 4 | + | import Header from "@/components/layout/Header"; |
|
| 5 | + | import Footer from "@/components/layout/Footer"; |
|
| 6 | + | import SkipLink from "@/components/SkipLink"; |
|
| 7 | + | import siteConfig from "@/site-config"; |
|
| 8 | + | ||
| 9 | + | interface Props { |
|
| 10 | + | meta: SiteMeta; |
|
| 11 | + | } |
|
| 12 | + | ||
| 13 | + | const { |
|
| 14 | + | meta: { title, description = siteConfig.description, ogImage, articleDate }, |
|
| 15 | + | } = Astro.props; |
|
| 16 | + | --- |
|
| 17 | + | ||
| 18 | + | <html lang={siteConfig.lang}> |
|
| 19 | + | <head> |
|
| 20 | + | <BaseHead title={title} description={description} ogImage={ogImage} articleDate={articleDate} /> |
|
| 21 | + | <script define:vars={{ siteConfig }}> |
|
| 22 | + | const root = document.documentElement; |
|
| 23 | + | const colorThemeMetaTag = document.querySelector("meta[name='theme-color']"); |
|
| 24 | + | ||
| 25 | + | // get user preference of dark mode, 1st local storage, 2nd browser |
|
| 26 | + | function getThemePreference() { |
|
| 27 | + | if (typeof localStorage !== "undefined" && localStorage.getItem("theme")) { |
|
| 28 | + | return localStorage.getItem("theme"); |
|
| 29 | + | } |
|
| 30 | + | return window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light"; |
|
| 31 | + | } |
|
| 32 | + | ||
| 33 | + | const isDark = getThemePreference() === "dark"; |
|
| 34 | + | ||
| 35 | + | // watch document element class attribute and update user preference when it changes. |
|
| 36 | + | const observer = new MutationObserver(() => { |
|
| 37 | + | const rootIsDark = root.classList.contains("dark"); |
|
| 38 | + | // set the meta attribute |
|
| 39 | + | colorThemeMetaTag.setAttribute( |
|
| 40 | + | "content", |
|
| 41 | + | siteConfig[rootIsDark ? "themeColorDark" : "themeColorLight"] |
|
| 42 | + | ); |
|
| 43 | + | // store user preference |
|
| 44 | + | if (typeof localStorage !== "undefined") { |
|
| 45 | + | localStorage.setItem("theme", rootIsDark ? "dark" : "light"); |
|
| 46 | + | } |
|
| 47 | + | }); |
|
| 48 | + | observer.observe(root, { attributeFilter: ["class"] }); |
|
| 49 | + | ||
| 50 | + | // initailse root class attribute |
|
| 51 | + | root.classList.toggle("dark", isDark); |
|
| 52 | + | </script> |
|
| 53 | + | </head> |
|
| 54 | + | <body> |
|
| 55 | + | <SkipLink /> |
|
| 56 | + | <Header /> |
|
| 57 | + | <main id="main" class="flex-1"> |
|
| 58 | + | <slot /> |
|
| 59 | + | </main> |
|
| 60 | + | <Footer /> |
|
| 61 | + | </body> |
|
| 62 | + | </html> |
| 1 | + | --- |
|
| 2 | + | import type { CollectionEntry } from "astro:content"; |
|
| 3 | + | ||
| 4 | + | import BaseLayout from "./Base.astro"; |
|
| 5 | + | import BlogHero from "@/components/blog/Hero"; |
|
| 6 | + | ||
| 7 | + | interface Props { |
|
| 8 | + | post: CollectionEntry<"post">; |
|
| 9 | + | } |
|
| 10 | + | ||
| 11 | + | const { post } = Astro.props; |
|
| 12 | + | const { |
|
| 13 | + | data: { title, description, ogImage, publishDate }, |
|
| 14 | + | slug, |
|
| 15 | + | } = post; |
|
| 16 | + | const socialImage = ogImage ?? `/og-image/${slug}.png`; |
|
| 17 | + | const articleDate = publishDate.toISOString(); |
|
| 18 | + | const { headings } = await post.render(); |
|
| 19 | + | --- |
|
| 20 | + | ||
| 21 | + | <script> |
|
| 22 | + | const scrollBtn = document.getElementById("to-top-btn") as HTMLButtonElement; |
|
| 23 | + | const targetHeader = document.getElementById("blog-hero") as HTMLDivElement; |
|
| 24 | + | ||
| 25 | + | function callback(entries: IntersectionObserverEntry[]) { |
|
| 26 | + | entries.forEach((entry) => { |
|
| 27 | + | // only show the scroll to top button when the heading is out of view |
|
| 28 | + | scrollBtn.dataset.show = (!entry.isIntersecting).toString(); |
|
| 29 | + | }); |
|
| 30 | + | } |
|
| 31 | + | ||
| 32 | + | scrollBtn.addEventListener("click", () => { |
|
| 33 | + | document.documentElement.scrollTo({ top: 0, behavior: "smooth" }); |
|
| 34 | + | }); |
|
| 35 | + | ||
| 36 | + | const observer = new IntersectionObserver(callback); |
|
| 37 | + | observer.observe(targetHeader); |
|
| 38 | + | </script> |
|
| 39 | + | ||
| 40 | + | <BaseLayout meta={{ title, description, articleDate, ogImage: socialImage }}> |
|
| 41 | + | <div class="flex items-start gap-x-10"> |
|
| 42 | + | { |
|
| 43 | + | !!headings.length && ( |
|
| 44 | + | <aside class="sticky top-20 order-2 -mr-32 hidden basis-64 lg:block"> |
|
| 45 | + | <h2 class="font-semibold">Table of Contents</h2> |
|
| 46 | + | <ul class="mt-4 text-xs"> |
|
| 47 | + | {headings.map(({ depth, slug, text }) => ( |
|
| 48 | + | <li class="line-clamp-2 hover:text-accent"> |
|
| 49 | + | <a |
|
| 50 | + | class={`block ${depth <= 2 ? "mt-3" : "mt-2 pl-3 text-[0.6875rem]"}`} |
|
| 51 | + | href={`#${slug}`} |
|
| 52 | + | aria-label={`Scroll to section: ${text}`} |
|
| 53 | + | > |
|
| 54 | + | <span>{"#".repeat(depth)}</span> {text} |
|
| 55 | + | </a> |
|
| 56 | + | </li> |
|
| 57 | + | ))} |
|
| 58 | + | </ul> |
|
| 59 | + | </aside> |
|
| 60 | + | ) |
|
| 61 | + | } |
|
| 62 | + | <article class="flex-grow break-words"> |
|
| 63 | + | <div id="blog-hero"><BlogHero content={post} /></div> |
|
| 64 | + | <div |
|
| 65 | + | class="prose prose-sm prose-cactus mt-12 prose-headings:font-semibold prose-headings:before:absolute prose-headings:before:-ml-4 prose-headings:before:text-accent prose-headings:before:content-['#'] prose-th:before:content-none" |
|
| 66 | + | > |
|
| 67 | + | <slot /> |
|
| 68 | + | </div> |
|
| 69 | + | </article> |
|
| 70 | + | </div> |
|
| 71 | + | <button |
|
| 72 | + | id="to-top-btn" |
|
| 73 | + | class="z-90 fixed bottom-8 right-4 flex h-10 w-10 translate-y-28 items-center justify-center rounded-full border-2 border-transparent bg-zinc-200 text-3xl opacity-0 transition-all duration-300 hover:border-zinc-400 data-[show=true]:translate-y-0 data-[show=true]:opacity-100 dark:bg-zinc-700 sm:right-8 sm:h-12 sm:w-12" |
|
| 74 | + | aria-label="Back to Top" |
|
| 75 | + | data-show="false" |
|
| 76 | + | ><svg |
|
| 77 | + | xmlns="http://www.w3.org/2000/svg" |
|
| 78 | + | aria-hidden="true" |
|
| 79 | + | focusable="false" |
|
| 80 | + | fill="none" |
|
| 81 | + | viewBox="0 0 24 24" |
|
| 82 | + | stroke-width="2" |
|
| 83 | + | stroke="currentColor" |
|
| 84 | + | class="h-6 w-6" |
|
| 85 | + | > |
|
| 86 | + | <path stroke-linecap="round" stroke-linejoin="round" d="M4.5 15.75l7.5-7.5 7.5 7.5"></path> |
|
| 87 | + | </svg> |
|
| 88 | + | </button> |
|
| 89 | + | </BaseLayout> |
| 1 | + | --- |
|
| 2 | + | import PageLayout from "@/layouts/Base"; |
|
| 3 | + | import { Image } from "@astrojs/image/components"; |
|
| 4 | + | import aboutImg from "../assets/about-astro.png"; |
|
| 5 | + | ||
| 6 | + | const meta = { |
|
| 7 | + | title: "Oops! You found a missing page!", |
|
| 8 | + | description: "Oops! It looks like this page is lost in space!", |
|
| 9 | + | }; |
|
| 10 | + | --- |
|
| 11 | + | ||
| 12 | + | <PageLayout meta={meta}> |
|
| 13 | + | <h1 class="title mb-6">404 | Oops something went wrong</h1> |
|
| 14 | + | <p class="mb-8">Please use the navigation to find your way back</p> |
|
| 15 | + | <div class="my-4 grid justify-center"> |
|
| 16 | + | <Image |
|
| 17 | + | class="rotate-180" |
|
| 18 | + | src={aboutImg} |
|
| 19 | + | alt="A cartoon cactus looking at the 'Astro.build' logo" |
|
| 20 | + | loading="eager" |
|
| 21 | + | /> |
|
| 22 | + | </div> |
|
| 23 | + | </PageLayout> |
| 1 | + | --- |
|
| 2 | + | import PageLayout from "@/layouts/Base"; |
|
| 3 | + | import { Image } from "@astrojs/image/components"; |
|
| 4 | + | import aboutImg from "../assets/about-astro.png"; |
|
| 5 | + | ||
| 6 | + | const meta = { |
|
| 7 | + | title: "About", |
|
| 8 | + | description: "I'm a starter theme for Astro.build", |
|
| 9 | + | }; |
|
| 10 | + | --- |
|
| 11 | + | ||
| 12 | + | <PageLayout meta={meta}> |
|
| 13 | + | <div class="space-y-6"> |
|
| 14 | + | <h1 class="title">About</h1> |
|
| 15 | + | <p> |
|
| 16 | + | Hi, I’m a starter Astro. I’m particularly great for getting you started with your own blogging |
|
| 17 | + | website. |
|
| 18 | + | </p> |
|
| 19 | + | <div class="flex justify-center"> |
|
| 20 | + | <Image |
|
| 21 | + | src={aboutImg} |
|
| 22 | + | alt="A cartoon cactus looking at the 'Astro.build' logo" |
|
| 23 | + | loading="eager" |
|
| 24 | + | /> |
|
| 25 | + | </div> |
|
| 26 | + | <p>Here are my some of my awesome built in features:</p> |
|
| 27 | + | <ul class="list-inside list-disc"> |
|
| 28 | + | <li>I'm ultra fast as I'm a static site</li> |
|
| 29 | + | <li>I'm fully responsive</li> |
|
| 30 | + | <li>I come with a light and dark mode</li> |
|
| 31 | + | <li>I'm easy to customise and add additional content</li> |
|
| 32 | + | <li>I have Tailwind CSS styling</li> |
|
| 33 | + | <li>Shiki code syntax highlighting</li> |
|
| 34 | + | <li>Satori for auto generating OG images for blog posts</li> |
|
| 35 | + | </ul> |
|
| 36 | + | <p> |
|
| 37 | + | Clone or fork my |
|
| 38 | + | <a |
|
| 39 | + | class="cactus-link inline-block" |
|
| 40 | + | href="https://github.com/chrismwilliams/astro-cactus" |
|
| 41 | + | target="_blank" |
|
| 42 | + | rel="noopener noreferrer" |
|
| 43 | + | aria-label="github repository" |
|
| 44 | + | > |
|
| 45 | + | repo |
|
| 46 | + | </a> if you like me! |
|
| 47 | + | </p> |
|
| 48 | + | </div> |
|
| 49 | + | </PageLayout> |
| 1 | + | --- |
|
| 2 | + | import { getCollection } from "astro:content"; |
|
| 3 | + | import PageLayout from "@/layouts/Base"; |
|
| 4 | + | import PostPreview from "@/components/blog/PostPreview"; |
|
| 5 | + | import SocialList from "@/components/SocialList"; |
|
| 6 | + | import { sortMDByDate } from "@/utils"; |
|
| 7 | + | ||
| 8 | + | const MAX_POSTS = 10; |
|
| 9 | + | const allPosts = await getCollection("post"); |
|
| 10 | + | const allPostsByDate = sortMDByDate(allPosts).slice(0, MAX_POSTS); |
|
| 11 | + | --- |
|
| 12 | + | ||
| 13 | + | <PageLayout meta={{ title: "Home" }}> |
|
| 14 | + | <section> |
|
| 15 | + | <h1 class="title mb-6">Hey there!</h1> |
|
| 16 | + | <p class="mb-4"> |
|
| 17 | + | My name is Steve, and I'm a technical writer, developer, and creator with a desire to help |
|
| 18 | + | build the future of the web. Stay a while to see what I'm working on! |
|
| 19 | + | </p> |
|
| 20 | + | <SocialList /> |
|
| 21 | + | </section> |
|
| 22 | + | <section aria-label="Blog post list" class="mt-16"> |
|
| 23 | + | <h2 class="title mb-4 text-xl">Posts</h2> |
|
| 24 | + | <ul class="space-y-4 sm:space-y-2"> |
|
| 25 | + | { |
|
| 26 | + | allPostsByDate.map((p) => ( |
|
| 27 | + | <li class="flex flex-col gap-x-2 sm:flex-row"> |
|
| 28 | + | <PostPreview post={p} /> |
|
| 29 | + | </li> |
|
| 30 | + | )) |
|
| 31 | + | } |
|
| 32 | + | </ul> |
|
| 33 | + | </section> |
|
| 34 | + | <section class="mt-16"> |
|
| 35 | + | <h2 class="title mb-4 text-xl">Extras</h2> |
|
| 36 | + | <ul class="space-y-4 sm:space-y-2"> |
|
| 37 | + | <li> |
|
| 38 | + | <a |
|
| 39 | + | href="https://stevedylanphoto.com" |
|
| 40 | + | target="_blank" |
|
| 41 | + | rel="noopener noreferrer" |
|
| 42 | + | class="cactus-link inline-block" |
|
| 43 | + | >stevedylanphoto |
|
| 44 | + | </a>: |
|
| 45 | + | <p class="inline-block sm:mt-2">My personal photography portfolio</p> |
|
| 46 | + | </li> |
|
| 47 | + | <li> |
|
| 48 | + | <a |
|
| 49 | + | href="https://pinata.cloud" |
|
| 50 | + | target="_blank" |
|
| 51 | + | rel="noopener noreferrer" |
|
| 52 | + | class="cactus-link inline-block" |
|
| 53 | + | >Pinata |
|
| 54 | + | </a>: |
|
| 55 | + | <p class="inline-block sm:mt-2">Where I'm currently working as Head of Community</p> |
|
| 56 | + | </li> |
|
| 57 | + | <li> |
|
| 58 | + | <a |
|
| 59 | + | href="https://medium.com/@stevedsimkins" |
|
| 60 | + | target="_blank" |
|
| 61 | + | rel="noopener noreferrer" |
|
| 62 | + | class="cactus-link inline-block" |
|
| 63 | + | >Medium |
|
| 64 | + | </a>: |
|
| 65 | + | <p class="inline-block sm:mt-2">More of my technical blog posts</p> |
|
| 66 | + | </li> |
|
| 67 | + | <li> |
|
| 68 | + | <a |
|
| 69 | + | href="https://www.markdownguide.org/" |
|
| 70 | + | target="_blank" |
|
| 71 | + | rel="noopener noreferrer" |
|
| 72 | + | class="cactus-link inline-block" |
|
| 73 | + | >Markdown |
|
| 74 | + | </a>: |
|
| 75 | + | <p class="inline-block sm:mt-2">Simple and easy-to-use markup language.</p> |
|
| 76 | + | </li> |
|
| 77 | + | <li> |
|
| 78 | + | <a |
|
| 79 | + | href="https://mdxjs.com/" |
|
| 80 | + | target="_blank" |
|
| 81 | + | rel="noopener noreferrer" |
|
| 82 | + | class="cactus-link inline-block" |
|
| 83 | + | >MDX |
|
| 84 | + | </a>: |
|
| 85 | + | <p class="inline-block sm:mt-2">Markdown for the component era.</p> |
|
| 86 | + | </li> |
|
| 87 | + | <li> |
|
| 88 | + | <a |
|
| 89 | + | href="https://github.com/vercel/satori" |
|
| 90 | + | target="_blank" |
|
| 91 | + | rel="noopener noreferrer" |
|
| 92 | + | class="cactus-link inline-block" |
|
| 93 | + | >Satori |
|
| 94 | + | </a>: |
|
| 95 | + | <p class="inline-block sm:mt-2">Generating png Open Graph images for blog posts</p> |
|
| 96 | + | </li> |
|
| 97 | + | </ul> |
|
| 98 | + | </section> |
|
| 99 | + | </PageLayout> |
| 1 | + | import type { APIContext, GetStaticPathsResult } from "astro"; |
|
| 2 | + | import { getCollection, getEntryBySlug } from "astro:content"; |
|
| 3 | + | import satori, { SatoriOptions } from "satori"; |
|
| 4 | + | import { html } from "satori-html"; |
|
| 5 | + | import { Resvg } from "@resvg/resvg-js"; |
|
| 6 | + | import siteConfig from "@/site-config"; |
|
| 7 | + | import { getFormattedDate } from "@/utils"; |
|
| 8 | + | ||
| 9 | + | const monoFontReg = await fetch( |
|
| 10 | + | "https://api.fontsource.org/v1/fonts/roboto-mono/latin-400-normal.ttf" |
|
| 11 | + | ); |
|
| 12 | + | ||
| 13 | + | const monoFontBold = await fetch( |
|
| 14 | + | "https://api.fontsource.org/v1/fonts/roboto-mono/latin-700-normal.ttf" |
|
| 15 | + | ); |
|
| 16 | + | ||
| 17 | + | const ogOptions: SatoriOptions = { |
|
| 18 | + | width: 1200, |
|
| 19 | + | height: 630, |
|
| 20 | + | // debug: true, |
|
| 21 | + | embedFont: true, |
|
| 22 | + | fonts: [ |
|
| 23 | + | { |
|
| 24 | + | name: "Roboto Mono", |
|
| 25 | + | data: await monoFontReg.arrayBuffer(), |
|
| 26 | + | weight: 400, |
|
| 27 | + | style: "normal", |
|
| 28 | + | }, |
|
| 29 | + | { |
|
| 30 | + | name: "Roboto Mono", |
|
| 31 | + | data: await monoFontBold.arrayBuffer(), |
|
| 32 | + | weight: 700, |
|
| 33 | + | style: "normal", |
|
| 34 | + | }, |
|
| 35 | + | ], |
|
| 36 | + | }; |
|
| 37 | + | ||
| 38 | + | const markup = (title: string, pubDate: string) => html`<div |
|
| 39 | + | tw="flex flex-col w-full h-full bg-[#1d1f21] text-[#c9cacc]" |
|
| 40 | + | > |
|
| 41 | + | <div tw="flex flex-col flex-1 w-full p-10 justify-center"> |
|
| 42 | + | <p tw="text-2xl mb-6">${pubDate}</p> |
|
| 43 | + | <h1 tw="text-6xl font-bold leading-snug text-white">${title}</h1> |
|
| 44 | + | </div> |
|
| 45 | + | <div tw="flex items-center justify-between w-full p-10 border-t border-[#2bbc89] text-xl"> |
|
| 46 | + | <div tw="flex items-center"> |
|
| 47 | + | <svg height="60" fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 272 480"> |
|
| 48 | + | <path |
|
| 49 | + | d="M181.334 93.333v-40L226.667 80v40l-45.333-26.667ZM136.001 53.333 90.667 26.667v426.666L136.001 480V53.333Z" |
|
| 50 | + | fill="#B04304" |
|
| 51 | + | ></path> |
|
| 52 | + | <path |
|
| 53 | + | d="m136.001 119.944 45.333-26.667 45.333 26.667-45.333 26.667-45.333-26.667ZM90.667 26.667 136.001 0l45.333 26.667-45.333 26.666-45.334-26.666ZM181.334 53.277l45.333-26.666L272 53.277l-45.333 26.667-45.333-26.667ZM0 213.277l45.333-26.667 45.334 26.667-45.334 26.667L0 213.277ZM136 239.944l-45.333-26.667v53.333L136 239.944Z" |
|
| 54 | + | fill="#FF5D01" |
|
| 55 | + | ></path> |
|
| 56 | + | <path |
|
| 57 | + | d="m136 53.333 45.333-26.666v120L226.667 120V80L272 53.333V160l-90.667 53.333v240L136 480V306.667L45.334 360V240l45.333-26.667v53.334L136 240V53.333Z" |
|
| 58 | + | fill="#53C68C" |
|
| 59 | + | ></path> |
|
| 60 | + | <path d="M45.334 240 0 213.334v120L45.334 360V240Z" fill="#B04304"></path> |
|
| 61 | + | </svg> |
|
| 62 | + | <p tw="ml-3 font-semibold">${siteConfig.title}</p> |
|
| 63 | + | </div> |
|
| 64 | + | <p>by ${siteConfig.author}</p> |
|
| 65 | + | </div> |
|
| 66 | + | </div>`; |
|
| 67 | + | ||
| 68 | + | export async function get({ params: { slug } }: APIContext) { |
|
| 69 | + | const post = await getEntryBySlug("post", slug!); |
|
| 70 | + | const title = post?.data.title ?? siteConfig.title; |
|
| 71 | + | const postDate = getFormattedDate(post?.data.publishDate ?? Date.now(), { |
|
| 72 | + | weekday: "long", |
|
| 73 | + | }); |
|
| 74 | + | const svg = await satori(markup(title, postDate), ogOptions); |
|
| 75 | + | const png = new Resvg(svg).render().asPng(); |
|
| 76 | + | return { |
|
| 77 | + | body: png, |
|
| 78 | + | encoding: "binary", |
|
| 79 | + | }; |
|
| 80 | + | } |
|
| 81 | + | ||
| 82 | + | export async function getStaticPaths(): Promise<GetStaticPathsResult> { |
|
| 83 | + | const posts = await getCollection("post"); |
|
| 84 | + | return posts.filter(({ data }) => !data.ogImage).map(({ slug }) => ({ params: { slug } })); |
|
| 85 | + | } |
| 1 | + | --- |
|
| 2 | + | import type { Page, GetStaticPathsOptions } from "astro"; |
|
| 3 | + | import type { CollectionEntry } from "astro:content"; |
|
| 4 | + | import { getCollection } from "astro:content"; |
|
| 5 | + | import PageLayout from "@/layouts/Base"; |
|
| 6 | + | import PostPreview from "@/components/blog/PostPreview"; |
|
| 7 | + | import Pagination from "@/components/Paginator"; |
|
| 8 | + | import { getUniqueTags, sortMDByDate } from "@/utils"; |
|
| 9 | + | ||
| 10 | + | export async function getStaticPaths({ paginate }: GetStaticPathsOptions) { |
|
| 11 | + | const allPosts = await getCollection("post"); |
|
| 12 | + | const allPostsByDate = sortMDByDate(allPosts); |
|
| 13 | + | const uniqueTags = getUniqueTags(allPosts); |
|
| 14 | + | return paginate(allPostsByDate, { props: { uniqueTags }, pageSize: 10 }); |
|
| 15 | + | } |
|
| 16 | + | ||
| 17 | + | interface Props { |
|
| 18 | + | page: Page<CollectionEntry<"post">>; |
|
| 19 | + | uniqueTags: string[]; |
|
| 20 | + | } |
|
| 21 | + | ||
| 22 | + | const { page, uniqueTags } = Astro.props; |
|
| 23 | + | ||
| 24 | + | const meta = { |
|
| 25 | + | title: "Posts", |
|
| 26 | + | description: "A collection of posts by me for an Asto starter theme", |
|
| 27 | + | }; |
|
| 28 | + | ||
| 29 | + | const paginationProps = { |
|
| 30 | + | ...(page.url.prev && { |
|
| 31 | + | prevUrl: { |
|
| 32 | + | url: page.url.prev, |
|
| 33 | + | text: `← Previous Posts`, |
|
| 34 | + | }, |
|
| 35 | + | }), |
|
| 36 | + | ...(page.url.next && { |
|
| 37 | + | nextUrl: { |
|
| 38 | + | url: page.url.next, |
|
| 39 | + | text: `Next Posts →`, |
|
| 40 | + | }, |
|
| 41 | + | }), |
|
| 42 | + | }; |
|
| 43 | + | --- |
|
| 44 | + | ||
| 45 | + | <PageLayout meta={meta}> |
|
| 46 | + | <h1 class="title mb-6">Posts</h1> |
|
| 47 | + | <div class="grid gap-y-16 sm:grid-cols-[3fr_1fr] sm:gap-x-8"> |
|
| 48 | + | <section aria-label="Blog post list"> |
|
| 49 | + | <ul class="space-y-8 text-left"> |
|
| 50 | + | { |
|
| 51 | + | page.data.map((p) => ( |
|
| 52 | + | <li class="flex flex-col flex-wrap gap-x-2 sm:flex-row [&_q]:w-full"> |
|
| 53 | + | <PostPreview post={p} as="h2" withDesc /> |
|
| 54 | + | </li> |
|
| 55 | + | )) |
|
| 56 | + | } |
|
| 57 | + | </ul> |
|
| 58 | + | <Pagination {...paginationProps} /> |
|
| 59 | + | </section> |
|
| 60 | + | { |
|
| 61 | + | uniqueTags.length && ( |
|
| 62 | + | <aside> |
|
| 63 | + | <h2 class="mb-4 flex items-center text-lg font-semibold"> |
|
| 64 | + | <svg |
|
| 65 | + | aria-hidden="true" |
|
| 66 | + | xmlns="http://www.w3.org/2000/svg" |
|
| 67 | + | class="h-6 w-6" |
|
| 68 | + | viewBox="0 0 24 24" |
|
| 69 | + | stroke-width="1.5" |
|
| 70 | + | stroke="currentColor" |
|
| 71 | + | fill="none" |
|
| 72 | + | stroke-linecap="round" |
|
| 73 | + | stroke-linejoin="round" |
|
| 74 | + | > |
|
| 75 | + | <path stroke="none" d="M0 0h24v24H0z" fill="none" /> |
|
| 76 | + | <path d="M7.859 6h-2.834a2.025 2.025 0 0 0 -2.025 2.025v2.834c0 .537 .213 1.052 .593 1.432l6.116 6.116a2.025 2.025 0 0 0 2.864 0l2.834 -2.834a2.025 2.025 0 0 0 0 -2.864l-6.117 -6.116a2.025 2.025 0 0 0 -1.431 -.593z" /> |
|
| 77 | + | <path d="M17.573 18.407l2.834 -2.834a2.025 2.025 0 0 0 0 -2.864l-7.117 -7.116" /> |
|
| 78 | + | <path d="M6 9h-.01" /> |
|
| 79 | + | </svg> |
|
| 80 | + | Tags |
|
| 81 | + | </h2> |
|
| 82 | + | <ul class="flex flex-wrap gap-2 text-bgColor"> |
|
| 83 | + | {uniqueTags.map((tag) => ( |
|
| 84 | + | <li> |
|
| 85 | + | <a |
|
| 86 | + | class="flex items-center justify-center rounded-lg bg-accent p-1" |
|
| 87 | + | href={`/tags/${tag}`} |
|
| 88 | + | aria-label={`View all posts with the tag: ${tag}`} |
|
| 89 | + | > |
|
| 90 | + | {tag} |
|
| 91 | + | </a> |
|
| 92 | + | </li> |
|
| 93 | + | ))} |
|
| 94 | + | </ul> |
|
| 95 | + | <span class="mt-4 block sm:text-right"> |
|
| 96 | + | <a class="sm:hover:text-accent" href="/tags" aria-label="View all blog categories"> |
|
| 97 | + | View all → |
|
| 98 | + | </a> |
|
| 99 | + | </span> |
|
| 100 | + | </aside> |
|
| 101 | + | ) |
|
| 102 | + | } |
|
| 103 | + | </div> |
|
| 104 | + | </PageLayout> |
| 1 | + | --- |
|
| 2 | + | import type { GetStaticPathsResult } from "astro"; |
|
| 3 | + | import type { CollectionEntry } from "astro:content"; |
|
| 4 | + | import { getCollection } from "astro:content"; |
|
| 5 | + | import PostLayout from "@/layouts/BlogPost"; |
|
| 6 | + | ||
| 7 | + | export async function getStaticPaths(): Promise<GetStaticPathsResult> { |
|
| 8 | + | const posts: CollectionEntry<"post">[] = await getCollection("post"); |
|
| 9 | + | const params = posts.map((post) => ({ |
|
| 10 | + | params: { post: post.slug }, |
|
| 11 | + | props: { post }, |
|
| 12 | + | })); |
|
| 13 | + | return params; |
|
| 14 | + | } |
|
| 15 | + | ||
| 16 | + | interface Props { |
|
| 17 | + | post: CollectionEntry<"post">; |
|
| 18 | + | } |
|
| 19 | + | ||
| 20 | + | const { post } = Astro.props; |
|
| 21 | + | const { Content } = await post.render(); |
|
| 22 | + | --- |
|
| 23 | + | ||
| 24 | + | <PostLayout post={post}> |
|
| 25 | + | <Content /> |
|
| 26 | + | </PostLayout> |
| 1 | + | import rss from "@astrojs/rss"; |
|
| 2 | + | import { getCollection } from "astro:content"; |
|
| 3 | + | import siteMeta from "@/site-config"; |
|
| 4 | + | ||
| 5 | + | export const get = async () => { |
|
| 6 | + | const posts = await getCollection("post"); |
|
| 7 | + | ||
| 8 | + | return rss({ |
|
| 9 | + | title: siteMeta.title, |
|
| 10 | + | description: siteMeta.description, |
|
| 11 | + | site: import.meta.env.SITE, |
|
| 12 | + | items: posts.map((post) => ({ |
|
| 13 | + | title: post.data.title, |
|
| 14 | + | description: post.data.description, |
|
| 15 | + | pubDate: post.data.publishDate, |
|
| 16 | + | link: post.slug, |
|
| 17 | + | })), |
|
| 18 | + | }); |
|
| 19 | + | }; |
| 1 | + | --- |
|
| 2 | + | import type { GetStaticPathsOptions, Page } from "astro"; |
|
| 3 | + | import type { CollectionEntry } from "astro:content"; |
|
| 4 | + | import { getCollection } from "astro:content"; |
|
| 5 | + | import PageLayout from "@/layouts/Base"; |
|
| 6 | + | import PostPreview from "@/components/blog/PostPreview"; |
|
| 7 | + | import Pagination from "@/components/Paginator"; |
|
| 8 | + | import { getUniqueTags, sortMDByDate } from "@/utils"; |
|
| 9 | + | ||
| 10 | + | export async function getStaticPaths({ paginate }: GetStaticPathsOptions) { |
|
| 11 | + | const allPosts = await getCollection("post"); |
|
| 12 | + | const allPostsByDate = sortMDByDate(allPosts); |
|
| 13 | + | const uniqueTags = getUniqueTags(allPostsByDate); |
|
| 14 | + | ||
| 15 | + | return uniqueTags.map((tag) => { |
|
| 16 | + | const filterPosts = allPostsByDate.filter((post) => post.data.tags?.includes(tag)); |
|
| 17 | + | return paginate(filterPosts, { |
|
| 18 | + | params: { tag }, |
|
| 19 | + | pageSize: 10, |
|
| 20 | + | }); |
|
| 21 | + | }); |
|
| 22 | + | } |
|
| 23 | + | ||
| 24 | + | interface Props { |
|
| 25 | + | page: Page<CollectionEntry<"post">>; |
|
| 26 | + | } |
|
| 27 | + | ||
| 28 | + | const { page } = Astro.props; |
|
| 29 | + | const { tag } = Astro.params; |
|
| 30 | + | ||
| 31 | + | const meta = { |
|
| 32 | + | title: `Tag: ${tag}`, |
|
| 33 | + | description: `View all posts with the tag - ${tag}`, |
|
| 34 | + | }; |
|
| 35 | + | ||
| 36 | + | const paginationProps = { |
|
| 37 | + | ...(page.url.prev && { |
|
| 38 | + | prevUrl: { |
|
| 39 | + | url: page.url.prev, |
|
| 40 | + | text: `← Previous Tags`, |
|
| 41 | + | }, |
|
| 42 | + | }), |
|
| 43 | + | ...(page.url.next && { |
|
| 44 | + | nextUrl: { |
|
| 45 | + | url: page.url.next, |
|
| 46 | + | text: `Next Tags →`, |
|
| 47 | + | }, |
|
| 48 | + | }), |
|
| 49 | + | }; |
|
| 50 | + | --- |
|
| 51 | + | ||
| 52 | + | <PageLayout meta={meta}> |
|
| 53 | + | <h1 class="title mb-6 flex items-center"> |
|
| 54 | + | <a href="/tags/" class="text-accent sm:hover:underline">Tags</a><span class="ml-2 mr-3">→</span> |
|
| 55 | + | <span class="text-xl">#{tag}</span> |
|
| 56 | + | </h1> |
|
| 57 | + | <section aria-label="Blog post list"> |
|
| 58 | + | <ul class="space-y-8 text-left"> |
|
| 59 | + | { |
|
| 60 | + | page.data.map((p) => ( |
|
| 61 | + | <li class="flex flex-col flex-wrap gap-x-2 sm:flex-row [&_q]:w-full"> |
|
| 62 | + | <PostPreview post={p} as="h2" withDesc /> |
|
| 63 | + | </li> |
|
| 64 | + | )) |
|
| 65 | + | } |
|
| 66 | + | </ul> |
|
| 67 | + | <Pagination {...paginationProps} /> |
|
| 68 | + | </section> |
|
| 69 | + | </PageLayout> |
| 1 | + | --- |
|
| 2 | + | import PageLayout from "@/layouts/Base"; |
|
| 3 | + | import { getUniqueTagsWithCount } from "@/utils"; |
|
| 4 | + | import { getCollection } from "astro:content"; |
|
| 5 | + | ||
| 6 | + | const allPosts = await getCollection("post"); |
|
| 7 | + | const allTags = getUniqueTagsWithCount(allPosts); |
|
| 8 | + | ||
| 9 | + | const meta = { |
|
| 10 | + | title: "All Tags", |
|
| 11 | + | description: "All Tags from my blogs", |
|
| 12 | + | }; |
|
| 13 | + | --- |
|
| 14 | + | ||
| 15 | + | <PageLayout meta={meta}> |
|
| 16 | + | <h1 class="title mb-6">Tags</h1> |
|
| 17 | + | <ul class="space-y-4"> |
|
| 18 | + | { |
|
| 19 | + | Object.entries(allTags).map(([tag, val]) => ( |
|
| 20 | + | <li class="flex items-center gap-x-2"> |
|
| 21 | + | <a |
|
| 22 | + | class="cactus-link inline-block" |
|
| 23 | + | href={`/tags/${tag}`} |
|
| 24 | + | title={`View posts with the tag: ${tag}`} |
|
| 25 | + | rel="prefetch" |
|
| 26 | + | > |
|
| 27 | + | #{tag} |
|
| 28 | + | </a> |
|
| 29 | + | <span class="inline-block"> |
|
| 30 | + | - {val} Post{val > 1 && "s"} |
|
| 31 | + | </span> |
|
| 32 | + | </li> |
|
| 33 | + | )) |
|
| 34 | + | } |
|
| 35 | + | </ul> |
|
| 36 | + | </PageLayout> |
| 1 | + | const siteMeta = { |
|
| 2 | + | author: "Steve Simkins", |
|
| 3 | + | title: "Steve Simkins", |
|
| 4 | + | description: "Personal Website and Blog of Steve Simkins", |
|
| 5 | + | lang: "en-GB", |
|
| 6 | + | ogLocale: "en_GB", |
|
| 7 | + | githubUrl: "https://github.com/chrismwilliams/astro-theme-cactus", |
|
| 8 | + | themeColorLight: "#edeff3", |
|
| 9 | + | themeColorDark: "#2e3440", |
|
| 10 | + | }; |
|
| 11 | + | ||
| 12 | + | export default siteMeta; |
| 1 | + | @tailwind base; |
|
| 2 | + | @layer base { |
|
| 3 | + | :root { |
|
| 4 | + | color-scheme: light; |
|
| 5 | + | --theme-bg: #e5e9f0; |
|
| 6 | + | --theme-link: #81a1c1; |
|
| 7 | + | --theme-text: #2e3440; |
|
| 8 | + | --theme-accent: #88C0D0; |
|
| 9 | + | --theme-accent-2: #5e81ac; |
|
| 10 | + | --theme-quote: #5e81ac; |
|
| 11 | + | --theme-menu-bg: rgb(250 250 250 / 0.85); |
|
| 12 | + | } |
|
| 13 | + | ||
| 14 | + | :root.dark { |
|
| 15 | + | color-scheme: dark; |
|
| 16 | + | --theme-bg: #3b4252; |
|
| 17 | + | --theme-link: #bf616a; |
|
| 18 | + | --theme-text: #edeff3; |
|
| 19 | + | --theme-accent: #a3be8c; |
|
| 20 | + | --theme-accent-2: #8fbcbb; |
|
| 21 | + | --theme-quote: #a3be8c; |
|
| 22 | + | --theme-menu-bg: rgb(46, 52, 64 / 0.85); |
|
| 23 | + | } |
|
| 24 | + | ||
| 25 | + | html { |
|
| 26 | + | @apply h-full scroll-smooth border-t-2 border-textColor; |
|
| 27 | + | } |
|
| 28 | + | ||
| 29 | + | html body { |
|
| 30 | + | @apply mx-auto flex h-full max-w-3xl flex-col bg-bgColor px-8 pt-16 font-mono text-sm font-normal text-textColor antialiased; |
|
| 31 | + | } |
|
| 32 | + | } |
|
| 33 | + | @tailwind components; |
|
| 34 | + | @tailwind utilities; |
| 1 | + | export function getFormattedDate( |
|
| 2 | + | date: string | number | Date, |
|
| 3 | + | options: Intl.DateTimeFormatOptions = {}, |
|
| 4 | + | locale: Intl.LocalesArgument = "en-GB" |
|
| 5 | + | ) { |
|
| 6 | + | const formatOptions: Intl.DateTimeFormatOptions = { |
|
| 7 | + | day: "numeric", |
|
| 8 | + | month: "long", |
|
| 9 | + | year: "numeric", |
|
| 10 | + | ...options, |
|
| 11 | + | }; |
|
| 12 | + | return new Date(date).toLocaleDateString(locale, formatOptions); |
|
| 13 | + | } |
| 1 | + | export function toggleClass(element: HTMLElement, className: string) { |
|
| 2 | + | element.classList.toggle(className); |
|
| 3 | + | } |
|
| 4 | + | ||
| 5 | + | export function elementHasClass(element: HTMLElement, className: string) { |
|
| 6 | + | return element.classList.contains(className); |
|
| 7 | + | } |
| 1 | + | export { getFormattedDate } from "./date"; |
|
| 2 | + | export { elementHasClass, toggleClass } from "./domElement"; |
|
| 3 | + | export { sortMDByDate, getUniqueTags, getUniqueTagsWithCount } from "./post"; |
| 1 | + | import type { CollectionEntry } from "astro:content"; |
|
| 2 | + | ||
| 3 | + | export function sortMDByDate(posts: CollectionEntry<"post">[] = []) { |
|
| 4 | + | return posts.sort( |
|
| 5 | + | (a, b) => new Date(b.data.publishDate).valueOf() - new Date(a.data.publishDate).valueOf() |
|
| 6 | + | ); |
|
| 7 | + | } |
|
| 8 | + | ||
| 9 | + | export function getUniqueTags(posts: CollectionEntry<"post">[] = []) { |
|
| 10 | + | const uniqueTags = new Set<string>(); |
|
| 11 | + | posts.forEach((post) => { |
|
| 12 | + | post.data.tags.map((tag) => uniqueTags.add(tag)); |
|
| 13 | + | }); |
|
| 14 | + | return Array.from(uniqueTags); |
|
| 15 | + | } |
|
| 16 | + | ||
| 17 | + | export function getUniqueTagsWithCount(posts: CollectionEntry<"post">[] = []): { |
|
| 18 | + | [key: string]: number; |
|
| 19 | + | } { |
|
| 20 | + | return posts.reduce((prev, post) => { |
|
| 21 | + | const runningTags: { [key: string]: number } = { ...prev }; |
|
| 22 | + | post.data.tags.forEach((tag) => { |
|
| 23 | + | runningTags[tag] = (runningTags[tag] || 0) + 1; |
|
| 24 | + | }); |
|
| 25 | + | return runningTags; |
|
| 26 | + | }, {}); |
|
| 27 | + | } |
| 1 | + | const { fontFamily } = require("tailwindcss/defaultTheme"); |
|
| 2 | + | const plugin = require("tailwindcss/plugin"); |
|
| 3 | + | ||
| 4 | + | /** @type {import('tailwindcss').Config} */ |
|
| 5 | + | module.exports = { |
|
| 6 | + | content: ["./src/**/*.{astro,html,js,jsx,md,svelte,ts,tsx,vue}"], |
|
| 7 | + | darkMode: "class", |
|
| 8 | + | corePlugins: { |
|
| 9 | + | // disable aspect ratio as per docs -> @tailwindcss/aspect-ratio |
|
| 10 | + | aspectRatio: false, |
|
| 11 | + | // disable some core plugins as they are included in the css, even when unused |
|
| 12 | + | touchAction: false, |
|
| 13 | + | ringOffsetWidth: false, |
|
| 14 | + | ringOffsetColor: false, |
|
| 15 | + | scrollSnapType: false, |
|
| 16 | + | borderOpacity: false, |
|
| 17 | + | textOpacity: false, |
|
| 18 | + | fontVariantNumeric: false, |
|
| 19 | + | }, |
|
| 20 | + | theme: { |
|
| 21 | + | extend: { |
|
| 22 | + | colors: { |
|
| 23 | + | bgColor: "var(--theme-bg)", |
|
| 24 | + | textColor: "var(--theme-text)", |
|
| 25 | + | link: "var(--theme-link)", |
|
| 26 | + | accent: "var(--theme-accent)", |
|
| 27 | + | "accent-2": "var(--theme-accent-2)", |
|
| 28 | + | }, |
|
| 29 | + | fontFamily: { |
|
| 30 | + | // Add any custom fonts here |
|
| 31 | + | sans: [...fontFamily.sans], |
|
| 32 | + | serif: [...fontFamily.serif], |
|
| 33 | + | }, |
|
| 34 | + | transitionProperty: { |
|
| 35 | + | height: "height", |
|
| 36 | + | }, |
|
| 37 | + | typography: (theme) => ({ |
|
| 38 | + | cactus: { |
|
| 39 | + | css: { |
|
| 40 | + | "--tw-prose-body": "var(--theme-text)", |
|
| 41 | + | "--tw-prose-headings": "var(--theme-accent-2)", |
|
| 42 | + | "--tw-prose-links": "var(--theme-text)", |
|
| 43 | + | "--tw-prose-bold": "var(--theme-text)", |
|
| 44 | + | "--tw-prose-bullets": "var(--theme-text)", |
|
| 45 | + | "--tw-prose-quotes": "var(--theme-quote)", |
|
| 46 | + | "--tw-prose-code": "var(--theme-text)", |
|
| 47 | + | "--tw-prose-hr": "0.5px dashed #666", |
|
| 48 | + | "--tw-prose-th-borders": "#666", |
|
| 49 | + | }, |
|
| 50 | + | }, |
|
| 51 | + | DEFAULT: { |
|
| 52 | + | css: { |
|
| 53 | + | a: { |
|
| 54 | + | "@apply cactus-link no-underline": "", |
|
| 55 | + | }, |
|
| 56 | + | strong: { |
|
| 57 | + | fontWeight: "700", |
|
| 58 | + | }, |
|
| 59 | + | code: { |
|
| 60 | + | border: "1px dotted #666", |
|
| 61 | + | borderRadius: "2px", |
|
| 62 | + | }, |
|
| 63 | + | blockquote: { |
|
| 64 | + | borderLeftWidth: "none", |
|
| 65 | + | }, |
|
| 66 | + | hr: { |
|
| 67 | + | borderTopStyle: "dashed", |
|
| 68 | + | }, |
|
| 69 | + | thead: { |
|
| 70 | + | borderBottomWidth: "none", |
|
| 71 | + | }, |
|
| 72 | + | "thead th": { |
|
| 73 | + | fontWeight: "700", |
|
| 74 | + | borderBottom: "1px dashed #666", |
|
| 75 | + | }, |
|
| 76 | + | "tbody tr": { |
|
| 77 | + | borderBottomWidth: "none", |
|
| 78 | + | }, |
|
| 79 | + | tfoot: { |
|
| 80 | + | borderTop: "1px dashed #666", |
|
| 81 | + | }, |
|
| 82 | + | }, |
|
| 83 | + | }, |
|
| 84 | + | sm: { |
|
| 85 | + | css: { |
|
| 86 | + | code: { |
|
| 87 | + | fontSize: theme("fontSize.sm")[0], |
|
| 88 | + | fontWeight: "400", |
|
| 89 | + | }, |
|
| 90 | + | }, |
|
| 91 | + | }, |
|
| 92 | + | }), |
|
| 93 | + | }, |
|
| 94 | + | }, |
|
| 95 | + | plugins: [ |
|
| 96 | + | require("@tailwindcss/typography"), |
|
| 97 | + | require("@tailwindcss/line-clamp"), |
|
| 98 | + | require("@tailwindcss/aspect-ratio"), |
|
| 99 | + | plugin(function ({ addComponents }) { |
|
| 100 | + | addComponents({ |
|
| 101 | + | ".cactus-link": { |
|
| 102 | + | "@apply bg-[size:100%_6px] bg-bottom bg-repeat-x": {}, |
|
| 103 | + | backgroundImage: |
|
| 104 | + | "linear-gradient(transparent,transparent 5px,var(--theme-text) 5px,var(--theme-text))", |
|
| 105 | + | "&:hover": { |
|
| 106 | + | backgroundImage: |
|
| 107 | + | "linear-gradient(transparent,transparent 4px,var(--theme-link) 4px,var(--theme-link))", |
|
| 108 | + | }, |
|
| 109 | + | }, |
|
| 110 | + | ".title": { |
|
| 111 | + | "@apply text-2xl font-semibold text-accent-2": {}, |
|
| 112 | + | }, |
|
| 113 | + | }); |
|
| 114 | + | }), |
|
| 115 | + | ], |
|
| 116 | + | }; |
| 1 | + | { |
|
| 2 | + | "extends": "astro/tsconfigs/strictest", |
|
| 3 | + | "compilerOptions": { |
|
| 4 | + | "baseUrl": ".", |
|
| 5 | + | "paths": { |
|
| 6 | + | "@/components/*": ["src/components/*.astro"], |
|
| 7 | + | "@/layouts/*": ["src/layouts/*.astro"], |
|
| 8 | + | "@/utils": ["src/utils/index.ts"], |
|
| 9 | + | "@/stores/*": ["src/stores/*"], |
|
| 10 | + | "@/data/*": ["src/data/*"], |
|
| 11 | + | "@/site-config": ["src/site.config.ts"] |
|
| 12 | + | } |
|
| 13 | + | }, |
|
| 14 | + | "exclude": ["node_modules", "**/node_modules/*", ".vscode", "dist"] |
|
| 15 | + | } |