├── .github
├── CODEOWNERS
├── ISSUE_TEMPLATE
│ ├── config.yml
│ ├── tutorial_request.md
│ └── tutorial_issue.md
├── workflows
│ ├── secrets_scanner.yaml
│ └── checks.yml
└── PULL_REQUEST_TEMPLATE.md
├── tutorials
├── zksync-cli-quickstart
│ ├── code
│ │ ├── .env.example
│ │ ├── contracts
│ │ │ └── Greeter.sol
│ │ ├── package.json
│ │ ├── hardhat.config.ts
│ │ ├── LICENSE
│ │ ├── test
│ │ │ └── main.test.ts
│ │ ├── deploy
│ │ │ ├── use-greeter.ts
│ │ │ └── deploy-greeter.ts
│ │ ├── README.md
│ │ └── .gitignore
│ └── TUTORIAL.md
├── web3modal
│ ├── code
│ │ ├── .eslintrc.json
│ │ ├── src
│ │ │ ├── app
│ │ │ │ ├── favicon.ico
│ │ │ │ ├── page.module.css
│ │ │ │ ├── page.tsx
│ │ │ │ ├── layout.tsx
│ │ │ │ └── globals.css
│ │ │ └── context
│ │ │ │ └── Web3Modal.tsx
│ │ ├── next.config.js
│ │ ├── .gitignore
│ │ ├── package.json
│ │ ├── tsconfig.json
│ │ └── README.md
│ └── TUTORIAL.md
├── zkSync-RedStone-stable-price-marketplace-tutorial
│ ├── code
│ │ ├── .env.example
│ │ ├── src
│ │ │ ├── constants.ts
│ │ │ ├── config
│ │ │ │ ├── zkSyncTestnet-addresses.json
│ │ │ │ ├── marketplace-abi.json
│ │ │ │ └── nft-abi.json
│ │ │ ├── index.tsx
│ │ │ ├── components
│ │ │ │ ├── Card.tsx
│ │ │ │ └── App.tsx
│ │ │ ├── styles.scss
│ │ │ └── core
│ │ │ │ └── blockchain.ts
│ │ ├── public
│ │ │ ├── favicon.ico
│ │ │ ├── img
│ │ │ │ ├── nft-icon.png
│ │ │ │ ├── redstone-logo.png
│ │ │ │ └── nft-in-cart-icon.png
│ │ │ └── index.html
│ │ ├── docs
│ │ │ └── img
│ │ │ │ ├── my-nfts.png
│ │ │ │ ├── orders.png
│ │ │ │ ├── redstone-requests.png
│ │ │ │ └── stable-marketplace-app.png
│ │ ├── contracts
│ │ │ ├── ExampleNFT.sol
│ │ │ ├── StableMarketplace.sol
│ │ │ └── Marketplace.sol
│ │ ├── tsconfig.json
│ │ ├── test
│ │ │ ├── common.ts
│ │ │ ├── example-nft.test.ts
│ │ │ ├── stable-marketplace.test.ts
│ │ │ └── marketplace.test.ts
│ │ ├── LICENSE
│ │ ├── hardhat.config.ts
│ │ ├── package.json
│ │ ├── deploy
│ │ │ └── deploy.ts
│ │ └── README.md
│ └── TUTORIAL.md
├── TUTORIAL_TEMPLATE.md
├── README.md
└── the-graph
│ ├── TUTORIAL.md
│ └── code
│ └── pepe_abi.json
├── community-tutorials.png
├── .markdownlint.json
├── package.json
├── cspell.json
├── tutorials.json
├── .gitignore
├── cspell-zksync.txt
├── README.md
└── yarn.lock
/.github/CODEOWNERS:
--------------------------------------------------------------------------------
1 | * @matter-labs/devxp
--------------------------------------------------------------------------------
/tutorials/zksync-cli-quickstart/code/.env.example:
--------------------------------------------------------------------------------
1 | WALLET_PRIVATE_KEY=
2 |
--------------------------------------------------------------------------------
/tutorials/web3modal/code/.eslintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "next/core-web-vitals"
3 | }
4 |
--------------------------------------------------------------------------------
/tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/.env.example:
--------------------------------------------------------------------------------
1 | WALLET_PRIVATE_KEY=
2 |
--------------------------------------------------------------------------------
/community-tutorials.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/community-tutorials.png
--------------------------------------------------------------------------------
/tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/src/constants.ts:
--------------------------------------------------------------------------------
1 | export const zkSyncLocalTestnetChainId = 270;
2 |
--------------------------------------------------------------------------------
/tutorials/web3modal/code/src/app/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/web3modal/code/src/app/favicon.ico
--------------------------------------------------------------------------------
/tutorials/web3modal/code/src/app/page.module.css:
--------------------------------------------------------------------------------
1 | .main {
2 | display: flex;
3 | flex-direction: column;
4 | justify-content: space-between;
5 | align-items: center;
6 | padding: 6rem;
7 | min-height: 100vh;
8 | }
--------------------------------------------------------------------------------
/tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/public/favicon.ico
--------------------------------------------------------------------------------
/tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/docs/img/my-nfts.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/docs/img/my-nfts.png
--------------------------------------------------------------------------------
/tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/docs/img/orders.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/docs/img/orders.png
--------------------------------------------------------------------------------
/tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/public/img/nft-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/public/img/nft-icon.png
--------------------------------------------------------------------------------
/tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/src/config/zkSyncTestnet-addresses.json:
--------------------------------------------------------------------------------
1 | {
2 | "nft": "0x650AaaA087062454DCd8F0D3946e855fDa054f86",
3 | "marketplace": "0x5C4660B6b4C0eA53E10fe0Bb354362f391bA2F68"
4 | }
5 |
--------------------------------------------------------------------------------
/tutorials/web3modal/code/src/app/page.tsx:
--------------------------------------------------------------------------------
1 | import styles from './page.module.css'
2 |
3 | export default function Home() {
4 | return (
5 |
158 |
159 |
253 |
254 | ##### Mint NFTs
255 |
256 | After visiting the app first time you will see an almost empty screen with the `+ Mint new NFT` link. Click this link to mint new NFTs. After the minting transaction confirmation you will see your NFT in the left column.
257 |
258 |
259 |
260 | ##### Post sell orders
261 |
262 | Once you mint any NFTs, you can post sell order for each one of them. Click the SELL button and provide the USD value. You will be asked to confirm 2 transactions: for NFT transfer approval, and for the marketplace order creation. After their confirmation, you will see your order in the Orders column.
263 |
264 |
265 |
266 | ##### Buy NFTs
267 |
268 | You can also switch metamask account and buy the NFT. I would recommend to open the developer tools in browser at the network tab and explore network requests that are being sent before the buy transaction sending.
269 |
270 | You should see at least 2 requests with the ETH price data and crypto signatures. This data along with signatures is being attached for each contract call, that wants to process redstone oracles data.
271 |
272 |
273 |
274 | ## 🚀 What is RedStone?
275 |
276 | RedStone is a data ecosystem that delivers frequently updated, reliable and diverse data for your dApps and smart contracts.
277 |
278 | RedStone offers a radically different design of Oracles catering to the needs of modern DeFi protocols.
279 |
280 | - Data providers can avoid the requirement of continuous on-chain data delivery
281 | - Allow end users to self-deliver signed Oracle data on-chain
282 | - Use the decentralized Streamr network to deliver signed oracle data to the end users
283 | - Use token incentives to motivate data providers to maintain data integrity and uninterrupted service
284 | - Leverage the Arweave blockchain as cheap and permanent storage for archiving Oracle data and maintaining data providers' accountability
285 |
286 | To learn more about RedStone oracles design check out the [RedStone docs.](https://docs.redstone.finance/docs/introduction)
287 |
288 | ## 🗝️ Key facts
289 |
290 | - The [modular architecture](https://docs.redstone.finance/docs/smart-contract-devs/how-it-works#data-flow) maintains [data integrity](https://docs.redstone.finance/docs/smart-contract-devs/how-it-works#data-format) from source to smart contracts
291 | - There are [3 different ways](https://docs.redstone.finance/docs/smart-contract-devs/how-it-works#3-ways-to-integrate) to integrate our service tailored to your needs
292 | - We provide feeds for more than [1000 assets](https://app.redstone.finance/#/app/tokens) integrating [~50 data sources](https://app.redstone.finance/#/app/sources)
293 | - We are present on [20+ chains](https://showroom.redstone.finance/)
294 | - RedStone has been live on mainnets since March 2022 with no downtime. Code was audited by ABDK, Packshield and L2Beat Co-Founder.
295 | - RedStone was a launch partner for [DeltaPrime](https://deltaprime.io/) on Avalanche and delivered data feeds not available anywhere else. Thanks to that DeltaPrime became the top 3 fastest growing dApps according to DeFiLama.
296 |
297 | ## 📈 What data is available
298 |
299 | Thanks to our innovative architecture, we offer more than one thousand of pricing data feeds, including tokens, stocks, ETFs, commodities, and much more for a fraction of regular Oracles integration costs.
300 |
301 | You can check available assets and data providers using [app.redstone.finance.](https://app.redstone.finance/)
302 |
303 | ## 🔥 How to use RedStone?
304 |
305 | **IMPORTANT**: Please reach out to the RedStone team [on Discord](https://redstone.finance/discord) before using RedStone oracles in production dApps. We will be happy to help you with the integration and will set up a new pool of data provider nodes if there is a need.
306 |
307 | ### Installation
308 |
309 | Install [@redstone-finance/evm-connector](https://www.npmjs.com/package/@redstone-finance/evm-connector) from NPM registry
310 |
311 | ```bash
312 | # Using yarn
313 | yarn add @redstone-finance/evm-connector
314 |
315 | # Using NPM
316 | npm install @redstone-finance/evm-connector
317 | ```
318 |
319 | ### Usage
320 |
321 | TLDR; You need to do 2 things:
322 |
323 | 1. [Adjust your smart contracts](#1-adjust-your-smart-contracts)
324 | 2. [Adjust Javascript code of your dApp](#2-adjust-javascript-code-of-your-dapp) (**it is required**, otherwise you will get smart contract errors)
325 |
326 | 💡 Note: Please don't use Remix to test RedStone oracles, as Remix does not support modifying transactions in the way that the evm-connector does.
327 |
328 | ### 1. Adjust your smart contracts
329 |
330 | You need to apply a minimum change to the source code to enable smart contract to access data. Your contract needs to extend one of our custom base contracts, which can be found [here.](https://github.com/redstone-finance/redstone-oracles-monorepo/tree/main/packages/evm-connector/contracts/data-services)
331 |
332 | We strongly recommend having some upgradeability mechanism for your contracts (it can be based on multisig, DAO, or anything else). This way, you can quickly switch to the latest trusted data providers in case of changes or problems with the current providers.
333 |
334 | ```js
335 | import "@redstone-finance/evm-connector/contracts/data-services/MainDemoConsumerBase.sol";
336 |
337 | contract YourContractName is MainDemoConsumerBase {
338 | ...
339 | }
340 | ```
341 |
342 | After applying the mentioned change you will be able to access the data calling the local `getOracleNumericValueFromTxMsg` function. You should pass the data feed id converted to `bytes32`.
343 |
344 | ```js
345 | // Getting a single value
346 | uint256 ethPrice = getOracleNumericValueFromTxMsg(bytes32("ETH"));
347 |
348 | // Getting several values
349 | bytes32[] memory dataFeedIds = new bytes32[](2);
350 | dataFeedIds[0] = bytes32("ETH");
351 | dataFeedIds[1] = bytes32("BTC");
352 | uint256[] memory values = getOracleNumericValuesFromTxMsg(dataFeedIds);
353 | uint256 ethPrice = values[0];
354 | uint256 btcPrice = values[1];
355 | ```
356 |
357 | You can see all available data feeds [in our web app.](https://app.redstone.finance)
358 |
359 | ### 2. Adjust Javascript code of your dApp
360 |
361 | You should also update the code responsible for submitting transactions. If you're using [ethers.js](https://github.com/ethers-io/ethers.js/), we've prepared a dedicated library to make the transition seamless.
362 |
363 | #### Contract object wrapping
364 |
365 | First, you need to import the wrapper code to your project
366 |
367 | ```ts
368 | // Typescript
369 | import { WrapperBuilder } from "@redstone-finance/evm-connector";
370 |
371 | // Javascript
372 | const { WrapperBuilder } = require("@redstone-finance/evm-connector");
373 | ```
374 |
375 | Then you can wrap your ethers contract pointing to the selected [Redstone data service id.](https://api.redstone.finance/providers) You should also specify a number of unique signers, data feed identifiers, and (optionally) URLs for the redstone cache nodes.
376 |
377 | ```js
378 | const yourEthersContract = new ethers.Contract(address, abi, provider);
379 |
380 | // Connecting all provider's prices (consumes more GAS)
381 | const wrappedContract = WrapperBuilder.wrap(contract).usingDataService({
382 | dataServiceId: "redstone-main-demo",
383 | uniqueSignersCount: 1,
384 | dataFeeds: ["ETH", "BTC"],
385 | });
386 | ```
387 |
388 | Now you can access any of the contract's methods in exactly the same way as interacting with the ethers-js code:
389 |
390 | ```js
391 | wrappedContract.executeYourMethod();
392 | ```
393 |
394 | #### Mock provider
395 |
396 | If you'd like to use the wrapper in a test context, we recommend using a mock wrapper so that you can easily override the oracles values to test different scenarios. To use the mock wrapper just use the `usingMockData(signedDataPackages)` function instead of the `usingDataService` function. You can see examples of the mock wrapper usage [here.](https://github.com/redstone-finance/redstone-oracles-monorepo/tree/main/packages/evm-connector/test/mock-wrapper)
397 |
398 | You can find more information in the [RedStone documentation](https://docs.redstone.finance/docs/smart-contract-devs/getting-started) to learn how to integrate your zkSync dApp with RedStone oracles.
399 |
400 | ## 🌎 Useful links
401 |
402 | - [Repo with examples](https://github.com/redstone-finance/redstone-evm-examples)
403 | - [RedStone Documentation](https://docs.redstone.finance/)
404 | - [RedStone Price Feeds](https://docs.redstone.finance/docs/smart-contract-devs/price-feeds)
405 | - [Data from any URL](https://docs.redstone.finance/docs/smart-contract-devs/custom-urls)
406 | - [NFT Data Feeds](https://docs.redstone.finance/docs/smart-contract-devs/nft-data-feeds)
407 | - [Randomness](https://docs.redstone.finance/docs/smart-contract-devs/randomness)
408 |
409 | ## 🙋♂️ Need help?
410 |
411 | Please feel free to contact the RedStone team [on Discord](https://redstone.finance/discord) if you have any questions.
412 |
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | "@babel/code-frame@^7.0.0":
6 | version "7.22.5"
7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.22.5.tgz#234d98e1551960604f1246e6475891a570ad5658"
8 | integrity sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==
9 | dependencies:
10 | "@babel/highlight" "^7.22.5"
11 |
12 | "@babel/helper-validator-identifier@^7.22.5":
13 | version "7.22.5"
14 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz#9544ef6a33999343c8740fa51350f30eeaaaf193"
15 | integrity sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==
16 |
17 | "@babel/highlight@^7.22.5":
18 | version "7.22.5"
19 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.22.5.tgz#aa6c05c5407a67ebce408162b7ede789b4d22031"
20 | integrity sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==
21 | dependencies:
22 | "@babel/helper-validator-identifier" "^7.22.5"
23 | chalk "^2.0.0"
24 | js-tokens "^4.0.0"
25 |
26 | "@cspell/cspell-bundled-dicts@6.31.2":
27 | version "6.31.2"
28 | resolved "https://registry.yarnpkg.com/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-6.31.2.tgz#42865a6c025b0ce5550efa24c9a78d7094b206dc"
29 | integrity sha512-rQ5y/U1Ah5AaduIh3NU2z371hRrOr1cmNdhhP8oiuz2E4VqmcoVHflXIct9DgY8uIJpwsSCdR6ypOQWZYXYnwA==
30 | dependencies:
31 | "@cspell/dict-ada" "^4.0.1"
32 | "@cspell/dict-aws" "^3.0.0"
33 | "@cspell/dict-bash" "^4.1.1"
34 | "@cspell/dict-companies" "^3.0.9"
35 | "@cspell/dict-cpp" "^5.0.2"
36 | "@cspell/dict-cryptocurrencies" "^3.0.1"
37 | "@cspell/dict-csharp" "^4.0.2"
38 | "@cspell/dict-css" "^4.0.5"
39 | "@cspell/dict-dart" "^2.0.2"
40 | "@cspell/dict-django" "^4.0.2"
41 | "@cspell/dict-docker" "^1.1.6"
42 | "@cspell/dict-dotnet" "^5.0.0"
43 | "@cspell/dict-elixir" "^4.0.2"
44 | "@cspell/dict-en-common-misspellings" "^1.0.2"
45 | "@cspell/dict-en-gb" "1.1.33"
46 | "@cspell/dict-en_us" "^4.3.2"
47 | "@cspell/dict-filetypes" "^3.0.0"
48 | "@cspell/dict-fonts" "^3.0.2"
49 | "@cspell/dict-fullstack" "^3.1.5"
50 | "@cspell/dict-gaming-terms" "^1.0.4"
51 | "@cspell/dict-git" "^2.0.0"
52 | "@cspell/dict-golang" "^6.0.1"
53 | "@cspell/dict-haskell" "^4.0.1"
54 | "@cspell/dict-html" "^4.0.3"
55 | "@cspell/dict-html-symbol-entities" "^4.0.0"
56 | "@cspell/dict-java" "^5.0.5"
57 | "@cspell/dict-k8s" "^1.0.1"
58 | "@cspell/dict-latex" "^4.0.0"
59 | "@cspell/dict-lorem-ipsum" "^3.0.0"
60 | "@cspell/dict-lua" "^4.0.1"
61 | "@cspell/dict-node" "^4.0.2"
62 | "@cspell/dict-npm" "^5.0.5"
63 | "@cspell/dict-php" "^4.0.1"
64 | "@cspell/dict-powershell" "^5.0.1"
65 | "@cspell/dict-public-licenses" "^2.0.2"
66 | "@cspell/dict-python" "^4.0.2"
67 | "@cspell/dict-r" "^2.0.1"
68 | "@cspell/dict-ruby" "^5.0.0"
69 | "@cspell/dict-rust" "^4.0.1"
70 | "@cspell/dict-scala" "^5.0.0"
71 | "@cspell/dict-software-terms" "^3.1.6"
72 | "@cspell/dict-sql" "^2.1.0"
73 | "@cspell/dict-svelte" "^1.0.2"
74 | "@cspell/dict-swift" "^2.0.1"
75 | "@cspell/dict-typescript" "^3.1.1"
76 | "@cspell/dict-vue" "^3.0.0"
77 |
78 | "@cspell/cspell-pipe@6.31.1":
79 | version "6.31.1"
80 | resolved "https://registry.yarnpkg.com/@cspell/cspell-pipe/-/cspell-pipe-6.31.1.tgz#6c8edc92039125695a894186a899290d56d0f2c7"
81 | integrity sha512-zk1olZi4dr6GLm5PAjvsiZ01HURNSruUYFl1qSicGnTwYN8GaN4RhAwannAytcJ7zJPIcyXlid0YsB58nJf3wQ==
82 |
83 | "@cspell/cspell-service-bus@6.31.1":
84 | version "6.31.1"
85 | resolved "https://registry.yarnpkg.com/@cspell/cspell-service-bus/-/cspell-service-bus-6.31.1.tgz#ede5859e180f8d9be760df500e02164dae0084fe"
86 | integrity sha512-YyBicmJyZ1uwKVxujXw7sgs9x+Eps43OkWmCtDZmZlnq489HdTSuhF1kTbVi2yeFSeaXIS87+uHo12z97KkQpg==
87 |
88 | "@cspell/cspell-types@6.31.1":
89 | version "6.31.1"
90 | resolved "https://registry.yarnpkg.com/@cspell/cspell-types/-/cspell-types-6.31.1.tgz#b3737ef7743c0e5803d57e667f816418ac8da1cf"
91 | integrity sha512-1KeTQFiHMssW1eRoF2NZIEg4gPVIfXLsL2+VSD/AV6YN7lBcuf6gRRgV5KWYarhxtEfjxhDdDTmu26l/iJEUtw==
92 |
93 | "@cspell/dict-ada@^4.0.1":
94 | version "4.0.2"
95 | resolved "https://registry.yarnpkg.com/@cspell/dict-ada/-/dict-ada-4.0.2.tgz#8da2216660aeb831a0d9055399a364a01db5805a"
96 | integrity sha512-0kENOWQeHjUlfyId/aCM/mKXtkEgV0Zu2RhUXCBr4hHo9F9vph+Uu8Ww2b0i5a4ZixoIkudGA+eJvyxrG1jUpA==
97 |
98 | "@cspell/dict-aws@^3.0.0":
99 | version "3.0.0"
100 | resolved "https://registry.yarnpkg.com/@cspell/dict-aws/-/dict-aws-3.0.0.tgz#7b2db82bb632c664c3d72b83267b93b9b0cafe60"
101 | integrity sha512-O1W6nd5y3Z00AMXQMzfiYrIJ1sTd9fB1oLr+xf/UD7b3xeHeMeYE2OtcWbt9uyeHim4tk+vkSTcmYEBKJgS5bQ==
102 |
103 | "@cspell/dict-bash@^4.1.1":
104 | version "4.1.1"
105 | resolved "https://registry.yarnpkg.com/@cspell/dict-bash/-/dict-bash-4.1.1.tgz#fe28016096f44d4a09fe4c5bcaf6fa40f33d98c6"
106 | integrity sha512-8czAa/Mh96wu2xr0RXQEGMTBUGkTvYn/Pb0o+gqOO1YW+poXGQc3gx0YPqILDryP/KCERrNvkWUJz3iGbvwC2A==
107 |
108 | "@cspell/dict-companies@^3.0.9":
109 | version "3.0.17"
110 | resolved "https://registry.yarnpkg.com/@cspell/dict-companies/-/dict-companies-3.0.17.tgz#98c8bed74892a415f9471f77d11d2aa8f727b103"
111 | integrity sha512-vo1jbozgZWSzz2evIL26kLd35tVb+5kW/UTvTzAwaWutSWRloRyKx38nj2CaLJ2IFxBdiATteCFGTzKCvJJl6A==
112 |
113 | "@cspell/dict-cpp@^5.0.2":
114 | version "5.0.4"
115 | resolved "https://registry.yarnpkg.com/@cspell/dict-cpp/-/dict-cpp-5.0.4.tgz#2c237dd5d690ee7464c612fd0ef8f2244359d97f"
116 | integrity sha512-Vmz/CCb2d91ES5juaO8+CFWeTa2AFsbpR8bkCPJq+P8cRP16+37tY0zNXEBSK/1ur4MakaRf76jeQBijpZxw0Q==
117 |
118 | "@cspell/dict-cryptocurrencies@^3.0.1":
119 | version "3.0.1"
120 | resolved "https://registry.yarnpkg.com/@cspell/dict-cryptocurrencies/-/dict-cryptocurrencies-3.0.1.tgz#de1c235d6427946b679d23aacff12fea94e6385b"
121 | integrity sha512-Tdlr0Ahpp5yxtwM0ukC13V6+uYCI0p9fCRGMGZt36rWv8JQZHIuHfehNl7FB/Qc09NCF7p5ep0GXbL+sVTd/+w==
122 |
123 | "@cspell/dict-csharp@^4.0.2":
124 | version "4.0.2"
125 | resolved "https://registry.yarnpkg.com/@cspell/dict-csharp/-/dict-csharp-4.0.2.tgz#e55659dbe594e744d86b1baf0f3397fe57b1e283"
126 | integrity sha512-1JMofhLK+4p4KairF75D3A924m5ERMgd1GvzhwK2geuYgd2ZKuGW72gvXpIV7aGf52E3Uu1kDXxxGAiZ5uVG7g==
127 |
128 | "@cspell/dict-css@^4.0.5":
129 | version "4.0.6"
130 | resolved "https://registry.yarnpkg.com/@cspell/dict-css/-/dict-css-4.0.6.tgz#39cf199e68d6e17b9518938fa64368cec2f7f9ca"
131 | integrity sha512-2Lo8W2ezHmGgY8cWFr4RUwnjbndna5mokpCK/DuxGILQnuajR0J31ANQOXj/8iZM2phFB93ZzMNk/0c04TDfSQ==
132 |
133 | "@cspell/dict-dart@^2.0.2":
134 | version "2.0.3"
135 | resolved "https://registry.yarnpkg.com/@cspell/dict-dart/-/dict-dart-2.0.3.tgz#75e7ffe47d5889c2c831af35acdd92ebdbd4cf12"
136 | integrity sha512-cLkwo1KT5CJY5N5RJVHks2genFkNCl/WLfj+0fFjqNR+tk3tBI1LY7ldr9piCtSFSm4x9pO1x6IV3kRUY1lLiw==
137 |
138 | "@cspell/dict-data-science@^1.0.0":
139 | version "1.0.8"
140 | resolved "https://registry.yarnpkg.com/@cspell/dict-data-science/-/dict-data-science-1.0.8.tgz#ceba98fb70ed872739d2c6e5cbc94020818450e8"
141 | integrity sha512-uGx0rd3BftfZ5mvXtPxvLNkQ33y0ylNw4GpBAAfF3hgGtifKdvLSmphOGuNgDYUPpJ0+e025bsvtN0/ZZCzWTg==
142 |
143 | "@cspell/dict-django@^4.0.2":
144 | version "4.1.0"
145 | resolved "https://registry.yarnpkg.com/@cspell/dict-django/-/dict-django-4.1.0.tgz#2d4b765daf3c83e733ef3e06887ea34403a4de7a"
146 | integrity sha512-bKJ4gPyrf+1c78Z0Oc4trEB9MuhcB+Yg+uTTWsvhY6O2ncFYbB/LbEZfqhfmmuK/XJJixXfI1laF2zicyf+l0w==
147 |
148 | "@cspell/dict-docker@^1.1.6":
149 | version "1.1.7"
150 | resolved "https://registry.yarnpkg.com/@cspell/dict-docker/-/dict-docker-1.1.7.tgz#bcf933283fbdfef19c71a642e7e8c38baf9014f2"
151 | integrity sha512-XlXHAr822euV36GGsl2J1CkBIVg3fZ6879ZOg5dxTIssuhUOCiV2BuzKZmt6aIFmcdPmR14+9i9Xq+3zuxeX0A==
152 |
153 | "@cspell/dict-dotnet@^5.0.0":
154 | version "5.0.0"
155 | resolved "https://registry.yarnpkg.com/@cspell/dict-dotnet/-/dict-dotnet-5.0.0.tgz#13690aafe14b240ad17a30225ac1ec29a5a6a510"
156 | integrity sha512-EOwGd533v47aP5QYV8GlSSKkmM9Eq8P3G/eBzSpH3Nl2+IneDOYOBLEUraHuiCtnOkNsz0xtZHArYhAB2bHWAw==
157 |
158 | "@cspell/dict-elixir@^4.0.2":
159 | version "4.0.3"
160 | resolved "https://registry.yarnpkg.com/@cspell/dict-elixir/-/dict-elixir-4.0.3.tgz#57c25843e46cf3463f97da72d9ef8e37c818296f"
161 | integrity sha512-g+uKLWvOp9IEZvrIvBPTr/oaO6619uH/wyqypqvwpmnmpjcfi8+/hqZH8YNKt15oviK8k4CkINIqNhyndG9d9Q==
162 |
163 | "@cspell/dict-en-common-misspellings@^1.0.2":
164 | version "1.0.2"
165 | resolved "https://registry.yarnpkg.com/@cspell/dict-en-common-misspellings/-/dict-en-common-misspellings-1.0.2.tgz#3c4ebab8e9e906d66d60f53c8f8c2e77b7f108e7"
166 | integrity sha512-jg7ZQZpZH7+aAxNBlcAG4tGhYF6Ksy+QS5Df73Oo+XyckBjC9QS+PrRwLTeYoFIgXy5j3ICParK5r3MSSoL4gw==
167 |
168 | "@cspell/dict-en-gb@1.1.33":
169 | version "1.1.33"
170 | resolved "https://registry.yarnpkg.com/@cspell/dict-en-gb/-/dict-en-gb-1.1.33.tgz#7f1fd90fc364a5cb77111b5438fc9fcf9cc6da0e"
171 | integrity sha512-tKSSUf9BJEV+GJQAYGw5e+ouhEe2ZXE620S7BLKe3ZmpnjlNG9JqlnaBhkIMxKnNFkLY2BP/EARzw31AZnOv4g==
172 |
173 | "@cspell/dict-en_us@^4.3.2":
174 | version "4.3.6"
175 | resolved "https://registry.yarnpkg.com/@cspell/dict-en_us/-/dict-en_us-4.3.6.tgz#1f554cf4e235af4e8d115c5924c87537b16a08d0"
176 | integrity sha512-odhgsjNZI9BtEOJdvqfAuv/3yz5aB1ngfBNaph7WSnYVt//9e3fhrElZ6/pIIkoyuGgeQPwz1fXt+tMgcnLSEQ==
177 |
178 | "@cspell/dict-filetypes@^3.0.0":
179 | version "3.0.1"
180 | resolved "https://registry.yarnpkg.com/@cspell/dict-filetypes/-/dict-filetypes-3.0.1.tgz#61642b14af90894e6acf4c00f20ab2d097c1ed12"
181 | integrity sha512-8z8mY1IbrTyTRumx2vvD9yzRhNMk9SajM/GtI5hdMM2pPpNSp25bnuauzjRf300eqlqPY2MNb5MmhBFO014DJw==
182 |
183 | "@cspell/dict-fonts@^3.0.2":
184 | version "3.0.2"
185 | resolved "https://registry.yarnpkg.com/@cspell/dict-fonts/-/dict-fonts-3.0.2.tgz#657d871cf627466765166cf18c448743c19317e2"
186 | integrity sha512-Z5QdbgEI7DV+KPXrAeDA6dDm/vTzyaW53SGlKqz6PI5VhkOjgkBXv3YtZjnxMZ4dY2ZIqq+RUK6qa9Pi8rQdGQ==
187 |
188 | "@cspell/dict-fullstack@^3.1.5":
189 | version "3.1.5"
190 | resolved "https://registry.yarnpkg.com/@cspell/dict-fullstack/-/dict-fullstack-3.1.5.tgz#35d18678161f214575cc613dd95564e05422a19c"
191 | integrity sha512-6ppvo1dkXUZ3fbYn/wwzERxCa76RtDDl5Afzv2lijLoijGGUw5yYdLBKJnx8PJBGNLh829X352ftE7BElG4leA==
192 |
193 | "@cspell/dict-gaming-terms@^1.0.4":
194 | version "1.0.4"
195 | resolved "https://registry.yarnpkg.com/@cspell/dict-gaming-terms/-/dict-gaming-terms-1.0.4.tgz#b67d89d014d865da6cb40de4269d4c162a00658e"
196 | integrity sha512-hbDduNXlk4AOY0wFxcDMWBPpm34rpqJBeqaySeoUH70eKxpxm+dvjpoRLJgyu0TmymEICCQSl6lAHTHSDiWKZg==
197 |
198 | "@cspell/dict-git@^2.0.0":
199 | version "2.0.0"
200 | resolved "https://registry.yarnpkg.com/@cspell/dict-git/-/dict-git-2.0.0.tgz#fa5cb298845da9c69efc01c6af07a99097718dc9"
201 | integrity sha512-n1AxyX5Kgxij/sZFkxFJlzn3K9y/sCcgVPg/vz4WNJ4K9YeTsUmyGLA2OQI7d10GJeiuAo2AP1iZf2A8j9aj2w==
202 |
203 | "@cspell/dict-golang@^6.0.1":
204 | version "6.0.2"
205 | resolved "https://registry.yarnpkg.com/@cspell/dict-golang/-/dict-golang-6.0.2.tgz#dcba58b9e658c1cc713c19965a358185d15d1987"
206 | integrity sha512-5pyZn4AAiYukAW+gVMIMVmUSkIERFrDX2vtPDjg8PLQUhAHWiVeQSDjuOhq9/C5GCCEZU/zWSONkGiwLBBvV9A==
207 |
208 | "@cspell/dict-haskell@^4.0.1":
209 | version "4.0.1"
210 | resolved "https://registry.yarnpkg.com/@cspell/dict-haskell/-/dict-haskell-4.0.1.tgz#e9fca7c452411ff11926e23ffed2b50bb9b95e47"
211 | integrity sha512-uRrl65mGrOmwT7NxspB4xKXFUenNC7IikmpRZW8Uzqbqcu7ZRCUfstuVH7T1rmjRgRkjcIjE4PC11luDou4wEQ==
212 |
213 | "@cspell/dict-html-symbol-entities@^4.0.0":
214 | version "4.0.0"
215 | resolved "https://registry.yarnpkg.com/@cspell/dict-html-symbol-entities/-/dict-html-symbol-entities-4.0.0.tgz#4d86ac18a4a11fdb61dfb6f5929acd768a52564f"
216 | integrity sha512-HGRu+48ErJjoweR5IbcixxETRewrBb0uxQBd6xFGcxbEYCX8CnQFTAmKI5xNaIt2PKaZiJH3ijodGSqbKdsxhw==
217 |
218 | "@cspell/dict-html@^4.0.3":
219 | version "4.0.3"
220 | resolved "https://registry.yarnpkg.com/@cspell/dict-html/-/dict-html-4.0.3.tgz#155450cb57750774583fce463d01d6323ab41701"
221 | integrity sha512-Gae8i8rrArT0UyG1I6DHDK62b7Be6QEcBSIeWOm4VIIW1CASkN9B0qFgSVnkmfvnu1Y3H7SSaaEynKjdj3cs8w==
222 |
223 | "@cspell/dict-java@^5.0.5":
224 | version "5.0.5"
225 | resolved "https://registry.yarnpkg.com/@cspell/dict-java/-/dict-java-5.0.5.tgz#c673f27ce7a5d96e205f42e8be540aeda0beef11"
226 | integrity sha512-X19AoJgWIBwJBSWGFqSgHaBR/FEykBHTMjL6EqOnhIGEyE9nvuo32tsSHjXNJ230fQxQptEvRZoaldNLtKxsRg==
227 |
228 | "@cspell/dict-k8s@^1.0.1":
229 | version "1.0.1"
230 | resolved "https://registry.yarnpkg.com/@cspell/dict-k8s/-/dict-k8s-1.0.1.tgz#6c0cc521dd42fee2c807368ebfef77137686f3a1"
231 | integrity sha512-gc5y4Nm3hVdMZNBZfU2M1AsAmObZsRWjCUk01NFPfGhFBXyVne41T7E62rpnzu5330FV/6b/TnFcPgRmak9lLw==
232 |
233 | "@cspell/dict-latex@^4.0.0":
234 | version "4.0.0"
235 | resolved "https://registry.yarnpkg.com/@cspell/dict-latex/-/dict-latex-4.0.0.tgz#85054903db834ea867174795d162e2a8f0e9c51e"
236 | integrity sha512-LPY4y6D5oI7D3d+5JMJHK/wxYTQa2lJMSNxps2JtuF8hbAnBQb3igoWEjEbIbRRH1XBM0X8dQqemnjQNCiAtxQ==
237 |
238 | "@cspell/dict-lorem-ipsum@^3.0.0":
239 | version "3.0.0"
240 | resolved "https://registry.yarnpkg.com/@cspell/dict-lorem-ipsum/-/dict-lorem-ipsum-3.0.0.tgz#c6347660fcab480b47bdcaec3b57e8c3abc4af68"
241 | integrity sha512-msEV24qEpzWZs2kcEicqYlhyBpR0amfDkJOs+iffC07si9ftqtQ+yP3lf1VFLpgqw3SQh1M1vtU7RD4sPrNlcQ==
242 |
243 | "@cspell/dict-lua@^4.0.1":
244 | version "4.0.1"
245 | resolved "https://registry.yarnpkg.com/@cspell/dict-lua/-/dict-lua-4.0.1.tgz#4c31975646cb2d71f1216c7aeaa0c5ab6994ea25"
246 | integrity sha512-j0MFmeCouSoC6EdZTbvGe1sJ9V+ruwKSeF+zRkNNNload7R72Co5kX1haW2xLHGdlq0kqSy1ODRZKdVl0e+7hg==
247 |
248 | "@cspell/dict-node@^4.0.2":
249 | version "4.0.2"
250 | resolved "https://registry.yarnpkg.com/@cspell/dict-node/-/dict-node-4.0.2.tgz#9e5f64d882568fdd2a2243542d1263dbbb87c53a"
251 | integrity sha512-FEQJ4TnMcXEFslqBQkXa5HposMoCGsiBv2ux4IZuIXgadXeHKHUHk60iarWpjhzNzQLyN2GD7NoRMd12bK3Llw==
252 |
253 | "@cspell/dict-npm@^5.0.5":
254 | version "5.0.7"
255 | resolved "https://registry.yarnpkg.com/@cspell/dict-npm/-/dict-npm-5.0.7.tgz#f2977579413a09d53fb385ed48f93184aad55aea"
256 | integrity sha512-6SegF0HsVaBTl6PlHjeErG8Av+tRYkUG1yaXUQIGWXU0A8oxhI0o4PuL65UWH5lkCKhJyGai69Cd0iytL0oVFg==
257 |
258 | "@cspell/dict-php@^4.0.1":
259 | version "4.0.1"
260 | resolved "https://registry.yarnpkg.com/@cspell/dict-php/-/dict-php-4.0.1.tgz#f3c5cd241f43a32b09355370fc6ce7bd50e6402c"
261 | integrity sha512-XaQ/JkSyq2c07MfRG54DjLi2CV+HHwS99DDCAao9Fq2JfkWroTQsUeek7wYZXJATrJVOULoV3HKih12x905AtQ==
262 |
263 | "@cspell/dict-powershell@^5.0.1":
264 | version "5.0.2"
265 | resolved "https://registry.yarnpkg.com/@cspell/dict-powershell/-/dict-powershell-5.0.2.tgz#2b1d7d514354b6d7de405d5faaef30f8eca0ef09"
266 | integrity sha512-IHfWLme3FXE7vnOmMncSBxOsMTdNWd1Vcyhag03WS8oANSgX8IZ+4lMI00mF0ptlgchf16/OU8WsV4pZfikEFw==
267 |
268 | "@cspell/dict-public-licenses@^2.0.2":
269 | version "2.0.3"
270 | resolved "https://registry.yarnpkg.com/@cspell/dict-public-licenses/-/dict-public-licenses-2.0.3.tgz#fa03649a5d6b8284e0c1da17eb449707df1a2a1c"
271 | integrity sha512-JSLEdpEYufQ1H+93UHi+axlqQm1fhgK6kpdLHp6uPHu//CsvETcqNVawjB+qOdI/g38JTMw5fBqSd0aGNxa6Dw==
272 |
273 | "@cspell/dict-python@^4.0.2":
274 | version "4.1.4"
275 | resolved "https://registry.yarnpkg.com/@cspell/dict-python/-/dict-python-4.1.4.tgz#c8e3bd7acbb1f88a8777ca7f67682568f317b5f0"
276 | integrity sha512-4JJ6MjIyuZN4h2VkSxZxiQ55lVh6NccW/0H6rdu0aDz+E3uyFVFtlBp5kTY5jIA11PZqSZZpyowzGnwrJX6w0g==
277 | dependencies:
278 | "@cspell/dict-data-science" "^1.0.0"
279 |
280 | "@cspell/dict-r@^2.0.1":
281 | version "2.0.1"
282 | resolved "https://registry.yarnpkg.com/@cspell/dict-r/-/dict-r-2.0.1.tgz#73474fb7cce45deb9094ebf61083fbf5913f440a"
283 | integrity sha512-KCmKaeYMLm2Ip79mlYPc8p+B2uzwBp4KMkzeLd5E6jUlCL93Y5Nvq68wV5fRLDRTf7N1LvofkVFWfDcednFOgA==
284 |
285 | "@cspell/dict-ruby@^5.0.0":
286 | version "5.0.0"
287 | resolved "https://registry.yarnpkg.com/@cspell/dict-ruby/-/dict-ruby-5.0.0.tgz#ca22ddf0842f29b485e3ef585c666c6be5227e6d"
288 | integrity sha512-ssb96QxLZ76yPqFrikWxItnCbUKhYXJ2owkoIYzUGNFl2CHSoHCb5a6Zetum9mQ/oUA3gNeUhd28ZUlXs0la2A==
289 |
290 | "@cspell/dict-rust@^4.0.1":
291 | version "4.0.1"
292 | resolved "https://registry.yarnpkg.com/@cspell/dict-rust/-/dict-rust-4.0.1.tgz#ef0b88cb3a45265824e2c9ce31b0baa4e1050351"
293 | integrity sha512-xJSSzHDK2z6lSVaOmMxl3PTOtfoffaxMo7fTcbZUF+SCJzfKbO6vnN9TCGX2sx1RHFDz66Js6goz6SAZQdOwaw==
294 |
295 | "@cspell/dict-scala@^5.0.0":
296 | version "5.0.0"
297 | resolved "https://registry.yarnpkg.com/@cspell/dict-scala/-/dict-scala-5.0.0.tgz#b64365ad559110a36d44ccd90edf7151ea648022"
298 | integrity sha512-ph0twaRoV+ylui022clEO1dZ35QbeEQaKTaV2sPOsdwIokABPIiK09oWwGK9qg7jRGQwVaRPEq0Vp+IG1GpqSQ==
299 |
300 | "@cspell/dict-software-terms@^3.1.6":
301 | version "3.2.0"
302 | resolved "https://registry.yarnpkg.com/@cspell/dict-software-terms/-/dict-software-terms-3.2.0.tgz#41f5a7ff187298f04c9d564d45423afaddf637e0"
303 | integrity sha512-RI6sv4Bc4i42YH/ofVelv8lXpJRhCyS9IhI2BtejUoMXKhKA9gC01ATXOylx+oaQmj3t5ark4R50xKFRvC7ENA==
304 |
305 | "@cspell/dict-sql@^2.1.0":
306 | version "2.1.1"
307 | resolved "https://registry.yarnpkg.com/@cspell/dict-sql/-/dict-sql-2.1.1.tgz#eb16c8bece4ff3154a193fe854a600ed0f75c64c"
308 | integrity sha512-v1mswi9NF40+UDUMuI148YQPEQvWjac72P6ZsjlRdLjEiQEEMEsTQ+zlkIdnzC9QCNyJaqD5Liq9Mn78/8Zxtw==
309 |
310 | "@cspell/dict-svelte@^1.0.2":
311 | version "1.0.2"
312 | resolved "https://registry.yarnpkg.com/@cspell/dict-svelte/-/dict-svelte-1.0.2.tgz#0c866b08a7a6b33bbc1a3bdbe6a1b484ca15cdaa"
313 | integrity sha512-rPJmnn/GsDs0btNvrRBciOhngKV98yZ9SHmg8qI6HLS8hZKvcXc0LMsf9LLuMK1TmS2+WQFAan6qeqg6bBxL2Q==
314 |
315 | "@cspell/dict-swift@^2.0.1":
316 | version "2.0.1"
317 | resolved "https://registry.yarnpkg.com/@cspell/dict-swift/-/dict-swift-2.0.1.tgz#06ec86e52e9630c441d3c19605657457e33d7bb6"
318 | integrity sha512-gxrCMUOndOk7xZFmXNtkCEeroZRnS2VbeaIPiymGRHj5H+qfTAzAKxtv7jJbVA3YYvEzWcVE2oKDP4wcbhIERw==
319 |
320 | "@cspell/dict-typescript@^3.1.1":
321 | version "3.1.1"
322 | resolved "https://registry.yarnpkg.com/@cspell/dict-typescript/-/dict-typescript-3.1.1.tgz#25a9c241fa79c032f907db21b0aaf7c7baee6cc3"
323 | integrity sha512-N9vNJZoOXmmrFPR4ir3rGvnqqwmQGgOYoL1+y6D4oIhyr7FhaYiyF/d7QT61RmjZQcATMa6PSL+ZisCeRLx9+A==
324 |
325 | "@cspell/dict-vue@^3.0.0":
326 | version "3.0.0"
327 | resolved "https://registry.yarnpkg.com/@cspell/dict-vue/-/dict-vue-3.0.0.tgz#68ccb432ad93fcb0fd665352d075ae9a64ea9250"
328 | integrity sha512-niiEMPWPV9IeRBRzZ0TBZmNnkK3olkOPYxC1Ny2AX4TGlYRajcW0WUtoSHmvvjZNfWLSg2L6ruiBeuPSbjnG6A==
329 |
330 | "@cspell/dynamic-import@6.31.1":
331 | version "6.31.1"
332 | resolved "https://registry.yarnpkg.com/@cspell/dynamic-import/-/dynamic-import-6.31.1.tgz#26e218362e98158be5c88f970ce774458e53dd60"
333 | integrity sha512-uliIUv9uZlnyYmjUlcw/Dm3p0xJOEnWJNczHAfqAl4Ytg6QZktw0GtUA9b1umbRXLv0KRTPtSC6nMq3cR7rRmQ==
334 | dependencies:
335 | import-meta-resolve "^2.2.2"
336 |
337 | "@cspell/strong-weak-map@6.31.1":
338 | version "6.31.1"
339 | resolved "https://registry.yarnpkg.com/@cspell/strong-weak-map/-/strong-weak-map-6.31.1.tgz#370faeae5ecb0c9a55344a34cd70f1690c62de01"
340 | integrity sha512-z8AuWvUuSnugFKJOA9Ke0aiFuehcqLFqia9bk8XaQNEWr44ahPVn3sEWnAncTxPbpWuUw5UajoJa0egRAE1CCg==
341 |
342 | "@isaacs/cliui@^8.0.2":
343 | version "8.0.2"
344 | resolved "https://registry.yarnpkg.com/@isaacs/cliui/-/cliui-8.0.2.tgz#b37667b7bc181c168782259bab42474fbf52b550"
345 | integrity sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==
346 | dependencies:
347 | string-width "^5.1.2"
348 | string-width-cjs "npm:string-width@^4.2.0"
349 | strip-ansi "^7.0.1"
350 | strip-ansi-cjs "npm:strip-ansi@^6.0.1"
351 | wrap-ansi "^8.1.0"
352 | wrap-ansi-cjs "npm:wrap-ansi@^7.0.0"
353 |
354 | "@nodelib/fs.scandir@2.1.5":
355 | version "2.1.5"
356 | resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5"
357 | integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==
358 | dependencies:
359 | "@nodelib/fs.stat" "2.0.5"
360 | run-parallel "^1.1.9"
361 |
362 | "@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2":
363 | version "2.0.5"
364 | resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b"
365 | integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==
366 |
367 | "@nodelib/fs.walk@^1.2.3":
368 | version "1.2.8"
369 | resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a"
370 | integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==
371 | dependencies:
372 | "@nodelib/fs.scandir" "2.1.5"
373 | fastq "^1.6.0"
374 |
375 | "@pkgjs/parseargs@^0.11.0":
376 | version "0.11.0"
377 | resolved "https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz#a77ea742fab25775145434eb1d2328cf5013ac33"
378 | integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==
379 |
380 | ansi-regex@^5.0.1:
381 | version "5.0.1"
382 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304"
383 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==
384 |
385 | ansi-regex@^6.0.1:
386 | version "6.0.1"
387 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.0.1.tgz#3183e38fae9a65d7cb5e53945cd5897d0260a06a"
388 | integrity sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==
389 |
390 | ansi-styles@^3.2.1:
391 | version "3.2.1"
392 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
393 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
394 | dependencies:
395 | color-convert "^1.9.0"
396 |
397 | ansi-styles@^4.0.0, ansi-styles@^4.1.0:
398 | version "4.3.0"
399 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937"
400 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
401 | dependencies:
402 | color-convert "^2.0.1"
403 |
404 | ansi-styles@^6.1.0:
405 | version "6.2.1"
406 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.1.tgz#0e62320cf99c21afff3b3012192546aacbfb05c5"
407 | integrity sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==
408 |
409 | argparse@^2.0.1:
410 | version "2.0.1"
411 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38"
412 | integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==
413 |
414 | array-timsort@^1.0.3:
415 | version "1.0.3"
416 | resolved "https://registry.yarnpkg.com/array-timsort/-/array-timsort-1.0.3.tgz#3c9e4199e54fb2b9c3fe5976396a21614ef0d926"
417 | integrity sha512-/+3GRL7dDAGEfM6TseQk/U+mi18TU2Ms9I3UlLdUMhz2hbvGNTKdj9xniwXfUqgYhHxRx0+8UnKkvlNwVU+cWQ==
418 |
419 | balanced-match@^1.0.0:
420 | version "1.0.2"
421 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
422 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
423 |
424 | brace-expansion@^1.1.7:
425 | version "1.1.11"
426 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
427 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
428 | dependencies:
429 | balanced-match "^1.0.0"
430 | concat-map "0.0.1"
431 |
432 | brace-expansion@^2.0.1:
433 | version "2.0.1"
434 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae"
435 | integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==
436 | dependencies:
437 | balanced-match "^1.0.0"
438 |
439 | braces@^3.0.2:
440 | version "3.0.2"
441 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"
442 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==
443 | dependencies:
444 | fill-range "^7.0.1"
445 |
446 | callsites@^3.0.0, callsites@^3.1.0:
447 | version "3.1.0"
448 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
449 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
450 |
451 | chalk@^2.0.0:
452 | version "2.4.2"
453 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
454 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
455 | dependencies:
456 | ansi-styles "^3.2.1"
457 | escape-string-regexp "^1.0.5"
458 | supports-color "^5.3.0"
459 |
460 | chalk@^4.1.2:
461 | version "4.1.2"
462 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01"
463 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==
464 | dependencies:
465 | ansi-styles "^4.1.0"
466 | supports-color "^7.1.0"
467 |
468 | clear-module@^4.1.2:
469 | version "4.1.2"
470 | resolved "https://registry.yarnpkg.com/clear-module/-/clear-module-4.1.2.tgz#5a58a5c9f8dccf363545ad7284cad3c887352a80"
471 | integrity sha512-LWAxzHqdHsAZlPlEyJ2Poz6AIs384mPeqLVCru2p0BrP9G/kVGuhNyZYClLO6cXlnuJjzC8xtsJIuMjKqLXoAw==
472 | dependencies:
473 | parent-module "^2.0.0"
474 | resolve-from "^5.0.0"
475 |
476 | color-convert@^1.9.0:
477 | version "1.9.3"
478 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
479 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
480 | dependencies:
481 | color-name "1.1.3"
482 |
483 | color-convert@^2.0.1:
484 | version "2.0.1"
485 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
486 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
487 | dependencies:
488 | color-name "~1.1.4"
489 |
490 | color-name@1.1.3:
491 | version "1.1.3"
492 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
493 | integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==
494 |
495 | color-name@~1.1.4:
496 | version "1.1.4"
497 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
498 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
499 |
500 | commander@^10.0.0:
501 | version "10.0.1"
502 | resolved "https://registry.yarnpkg.com/commander/-/commander-10.0.1.tgz#881ee46b4f77d1c1dccc5823433aa39b022cbe06"
503 | integrity sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==
504 |
505 | commander@~11.0.0:
506 | version "11.0.0"
507 | resolved "https://registry.yarnpkg.com/commander/-/commander-11.0.0.tgz#43e19c25dbedc8256203538e8d7e9346877a6f67"
508 | integrity sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ==
509 |
510 | comment-json@^4.2.3:
511 | version "4.2.3"
512 | resolved "https://registry.yarnpkg.com/comment-json/-/comment-json-4.2.3.tgz#50b487ebbf43abe44431f575ebda07d30d015365"
513 | integrity sha512-SsxdiOf064DWoZLH799Ata6u7iV658A11PlWtZATDlXPpKGJnbJZ5Z24ybixAi+LUUqJ/GKowAejtC5GFUG7Tw==
514 | dependencies:
515 | array-timsort "^1.0.3"
516 | core-util-is "^1.0.3"
517 | esprima "^4.0.1"
518 | has-own-prop "^2.0.0"
519 | repeat-string "^1.6.1"
520 |
521 | concat-map@0.0.1:
522 | version "0.0.1"
523 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
524 | integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==
525 |
526 | configstore@^5.0.1:
527 | version "5.0.1"
528 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-5.0.1.tgz#d365021b5df4b98cdd187d6a3b0e3f6a7cc5ed96"
529 | integrity sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==
530 | dependencies:
531 | dot-prop "^5.2.0"
532 | graceful-fs "^4.1.2"
533 | make-dir "^3.0.0"
534 | unique-string "^2.0.0"
535 | write-file-atomic "^3.0.0"
536 | xdg-basedir "^4.0.0"
537 |
538 | core-util-is@^1.0.3:
539 | version "1.0.3"
540 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85"
541 | integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==
542 |
543 | cosmiconfig@8.0.0:
544 | version "8.0.0"
545 | resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-8.0.0.tgz#e9feae014eab580f858f8a0288f38997a7bebe97"
546 | integrity sha512-da1EafcpH6b/TD8vDRaWV7xFINlHlF6zKsGwS1TsuVJTZRkquaS5HTMq7uq6h31619QjbsYl21gVDOm32KM1vQ==
547 | dependencies:
548 | import-fresh "^3.2.1"
549 | js-yaml "^4.1.0"
550 | parse-json "^5.0.0"
551 | path-type "^4.0.0"
552 |
553 | cross-spawn@^7.0.0:
554 | version "7.0.3"
555 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6"
556 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==
557 | dependencies:
558 | path-key "^3.1.0"
559 | shebang-command "^2.0.0"
560 | which "^2.0.1"
561 |
562 | crypto-random-string@^2.0.0:
563 | version "2.0.0"
564 | resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-2.0.0.tgz#ef2a7a966ec11083388369baa02ebead229b30d5"
565 | integrity sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==
566 |
567 | cspell-dictionary@6.31.1:
568 | version "6.31.1"
569 | resolved "https://registry.yarnpkg.com/cspell-dictionary/-/cspell-dictionary-6.31.1.tgz#a5c52da365aa03d7b6454f017d97b0d4b3da8859"
570 | integrity sha512-7+K7aQGarqbpucky26wled7QSCJeg6VkLUWS+hLjyf0Cqc9Zew5xsLa4QjReExWUJx+a97jbiflITZNuWxgMrg==
571 | dependencies:
572 | "@cspell/cspell-pipe" "6.31.1"
573 | "@cspell/cspell-types" "6.31.1"
574 | cspell-trie-lib "6.31.1"
575 | fast-equals "^4.0.3"
576 | gensequence "^5.0.2"
577 |
578 | cspell-gitignore@6.31.2:
579 | version "6.31.2"
580 | resolved "https://registry.yarnpkg.com/cspell-gitignore/-/cspell-gitignore-6.31.2.tgz#c297f0c094a96ea1ba8849fd17fb1a7feb274318"
581 | integrity sha512-B1i8aiXCIbb/08u0K3xnDyXtg0qD+lb5B2itOOXi7KXlPkKvIuN4hWyXxhVDweWyYWEzyXD5wBpPrqICVrStHQ==
582 | dependencies:
583 | cspell-glob "6.31.2"
584 | find-up "^5.0.0"
585 |
586 | cspell-glob@6.31.2:
587 | version "6.31.2"
588 | resolved "https://registry.yarnpkg.com/cspell-glob/-/cspell-glob-6.31.2.tgz#877d914420e38aa3b375066f425e5a33514cc5e2"
589 | integrity sha512-ceTjHM4HaBgvG5S3oiB+PTPYq58EQYG6MmYpycDHzpR5I2H1NurK9lxWHfANmLbi0DsHn58tIZNDMUnnQj19Jw==
590 | dependencies:
591 | micromatch "^4.0.5"
592 |
593 | cspell-grammar@6.31.1:
594 | version "6.31.1"
595 | resolved "https://registry.yarnpkg.com/cspell-grammar/-/cspell-grammar-6.31.1.tgz#f766df3d5f1ec95a1e472fc339716757d2acfa56"
596 | integrity sha512-AsRVP0idcNFVSb9+p9XjMumFj3BUV67WIPWApaAzJl/dYyiIygQObRE+si0/QtFWGNw873b7hNhWZiKjqIdoaQ==
597 | dependencies:
598 | "@cspell/cspell-pipe" "6.31.1"
599 | "@cspell/cspell-types" "6.31.1"
600 |
601 | cspell-io@6.31.2:
602 | version "6.31.2"
603 | resolved "https://registry.yarnpkg.com/cspell-io/-/cspell-io-6.31.2.tgz#5b1059779b8417510df077781a82cbe2b5c7463b"
604 | integrity sha512-Lp7LsF/f35LaOneROb/9mWiprShz2ONxjYFAt3bYP7gIxq41lWi8QhO+SN6spoqPp/wQXjSqJ7MuTZsemxPRnA==
605 | dependencies:
606 | "@cspell/cspell-service-bus" "6.31.1"
607 | node-fetch "^2.6.9"
608 |
609 | cspell-lib@6.31.2:
610 | version "6.31.2"
611 | resolved "https://registry.yarnpkg.com/cspell-lib/-/cspell-lib-6.31.2.tgz#46e1f89876e5a5c055bc2493562c2c6d7ebff8fb"
612 | integrity sha512-LqaB2ZfVfQHKL5aZzYoKU6/UxxAtWeXAYwpC9l+satXmajYyXtAh4kWmuW+y7kKRH2jA79rJQS3QE6ToeSqgQQ==
613 | dependencies:
614 | "@cspell/cspell-bundled-dicts" "6.31.2"
615 | "@cspell/cspell-pipe" "6.31.1"
616 | "@cspell/cspell-types" "6.31.1"
617 | "@cspell/strong-weak-map" "6.31.1"
618 | clear-module "^4.1.2"
619 | comment-json "^4.2.3"
620 | configstore "^5.0.1"
621 | cosmiconfig "8.0.0"
622 | cspell-dictionary "6.31.1"
623 | cspell-glob "6.31.2"
624 | cspell-grammar "6.31.1"
625 | cspell-io "6.31.2"
626 | cspell-trie-lib "6.31.1"
627 | fast-equals "^4.0.3"
628 | find-up "^5.0.0"
629 | gensequence "^5.0.2"
630 | import-fresh "^3.3.0"
631 | resolve-from "^5.0.0"
632 | resolve-global "^1.0.0"
633 | vscode-languageserver-textdocument "^1.0.8"
634 | vscode-uri "^3.0.7"
635 |
636 | cspell-trie-lib@6.31.1:
637 | version "6.31.1"
638 | resolved "https://registry.yarnpkg.com/cspell-trie-lib/-/cspell-trie-lib-6.31.1.tgz#72b272e16d53c15de5a1ef3178dd2519670daca7"
639 | integrity sha512-MtYh7s4Sbr1rKT31P2BK6KY+YfOy3dWsuusq9HnqCXmq6aZ1HyFgjH/9p9uvqGi/TboMqn1KOV8nifhXK3l3jg==
640 | dependencies:
641 | "@cspell/cspell-pipe" "6.31.1"
642 | "@cspell/cspell-types" "6.31.1"
643 | gensequence "^5.0.2"
644 |
645 | cspell@^6.31.2:
646 | version "6.31.2"
647 | resolved "https://registry.yarnpkg.com/cspell/-/cspell-6.31.2.tgz#c334ac34353fe446d82c27fe348bb17b4b3e9f7f"
648 | integrity sha512-HJcQ8jqL/1N3Mj5dufFnIZCX3ACuRoFTSVY6h3Bo5wBqd2iiJTyeQ1SY9Zymlxtb2KyJ6jQRiFmkWeFx2HVs7w==
649 | dependencies:
650 | "@cspell/cspell-pipe" "6.31.1"
651 | "@cspell/cspell-types" "6.31.1"
652 | "@cspell/dynamic-import" "6.31.1"
653 | chalk "^4.1.2"
654 | commander "^10.0.0"
655 | cspell-gitignore "6.31.2"
656 | cspell-glob "6.31.2"
657 | cspell-io "6.31.2"
658 | cspell-lib "6.31.2"
659 | fast-glob "^3.2.12"
660 | fast-json-stable-stringify "^2.1.0"
661 | file-entry-cache "^6.0.1"
662 | get-stdin "^8.0.0"
663 | imurmurhash "^0.1.4"
664 | semver "^7.3.8"
665 | strip-ansi "^6.0.1"
666 | vscode-uri "^3.0.7"
667 |
668 | deep-extend@^0.6.0:
669 | version "0.6.0"
670 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac"
671 | integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==
672 |
673 | dot-prop@^5.2.0:
674 | version "5.3.0"
675 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.3.0.tgz#90ccce708cd9cd82cc4dc8c3ddd9abdd55b20e88"
676 | integrity sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==
677 | dependencies:
678 | is-obj "^2.0.0"
679 |
680 | eastasianwidth@^0.2.0:
681 | version "0.2.0"
682 | resolved "https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz#696ce2ec0aa0e6ea93a397ffcf24aa7840c827cb"
683 | integrity sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==
684 |
685 | emoji-regex@^8.0.0:
686 | version "8.0.0"
687 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37"
688 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==
689 |
690 | emoji-regex@^9.2.2:
691 | version "9.2.2"
692 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72"
693 | integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==
694 |
695 | entities@~3.0.1:
696 | version "3.0.1"
697 | resolved "https://registry.yarnpkg.com/entities/-/entities-3.0.1.tgz#2b887ca62585e96db3903482d336c1006c3001d4"
698 | integrity sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==
699 |
700 | error-ex@^1.3.1:
701 | version "1.3.2"
702 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf"
703 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==
704 | dependencies:
705 | is-arrayish "^0.2.1"
706 |
707 | escape-string-regexp@^1.0.5:
708 | version "1.0.5"
709 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
710 | integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==
711 |
712 | esprima@^4.0.1:
713 | version "4.0.1"
714 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
715 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
716 |
717 | fast-equals@^4.0.3:
718 | version "4.0.3"
719 | resolved "https://registry.yarnpkg.com/fast-equals/-/fast-equals-4.0.3.tgz#72884cc805ec3c6679b99875f6b7654f39f0e8c7"
720 | integrity sha512-G3BSX9cfKttjr+2o1O22tYMLq0DPluZnYtq1rXumE1SpL/F/SLIfHx08WYQoWSIpeMYf8sRbJ8++71+v6Pnxfg==
721 |
722 | fast-glob@^3.2.12:
723 | version "3.3.1"
724 | resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.1.tgz#784b4e897340f3dbbef17413b3f11acf03c874c4"
725 | integrity sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==
726 | dependencies:
727 | "@nodelib/fs.stat" "^2.0.2"
728 | "@nodelib/fs.walk" "^1.2.3"
729 | glob-parent "^5.1.2"
730 | merge2 "^1.3.0"
731 | micromatch "^4.0.4"
732 |
733 | fast-json-stable-stringify@^2.1.0:
734 | version "2.1.0"
735 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633"
736 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==
737 |
738 | fastq@^1.6.0:
739 | version "1.15.0"
740 | resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.15.0.tgz#d04d07c6a2a68fe4599fea8d2e103a937fae6b3a"
741 | integrity sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==
742 | dependencies:
743 | reusify "^1.0.4"
744 |
745 | file-entry-cache@^6.0.1:
746 | version "6.0.1"
747 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027"
748 | integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==
749 | dependencies:
750 | flat-cache "^3.0.4"
751 |
752 | fill-range@^7.0.1:
753 | version "7.0.1"
754 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40"
755 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==
756 | dependencies:
757 | to-regex-range "^5.0.1"
758 |
759 | find-up@^5.0.0:
760 | version "5.0.0"
761 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc"
762 | integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==
763 | dependencies:
764 | locate-path "^6.0.0"
765 | path-exists "^4.0.0"
766 |
767 | flat-cache@^3.0.4:
768 | version "3.0.4"
769 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11"
770 | integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==
771 | dependencies:
772 | flatted "^3.1.0"
773 | rimraf "^3.0.2"
774 |
775 | flatted@^3.1.0:
776 | version "3.2.7"
777 | resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.7.tgz#609f39207cb614b89d0765b477cb2d437fbf9787"
778 | integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==
779 |
780 | foreground-child@^3.1.0:
781 | version "3.1.1"
782 | resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-3.1.1.tgz#1d173e776d75d2772fed08efe4a0de1ea1b12d0d"
783 | integrity sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==
784 | dependencies:
785 | cross-spawn "^7.0.0"
786 | signal-exit "^4.0.1"
787 |
788 | fs.realpath@^1.0.0:
789 | version "1.0.0"
790 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
791 | integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==
792 |
793 | gensequence@^5.0.2:
794 | version "5.0.2"
795 | resolved "https://registry.yarnpkg.com/gensequence/-/gensequence-5.0.2.tgz#f065be2f9a5b2967b9cad7f33b2d79ce1f22dc82"
796 | integrity sha512-JlKEZnFc6neaeSVlkzBGGgkIoIaSxMgvdamRoPN8r3ozm2r9dusqxeKqYQ7lhzmj2UhFQP8nkyfCaiLQxiLrDA==
797 |
798 | get-stdin@^8.0.0:
799 | version "8.0.0"
800 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-8.0.0.tgz#cbad6a73feb75f6eeb22ba9e01f89aa28aa97a53"
801 | integrity sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==
802 |
803 | get-stdin@~9.0.0:
804 | version "9.0.0"
805 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-9.0.0.tgz#3983ff82e03d56f1b2ea0d3e60325f39d703a575"
806 | integrity sha512-dVKBjfWisLAicarI2Sf+JuBE/DghV4UzNAVe9yhEJuzeREd3JhOTE9cUaJTeSa77fsbQUK3pcOpJfM59+VKZaA==
807 |
808 | glob-parent@^5.1.2:
809 | version "5.1.2"
810 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4"
811 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==
812 | dependencies:
813 | is-glob "^4.0.1"
814 |
815 | glob@^7.1.3:
816 | version "7.2.3"
817 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b"
818 | integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==
819 | dependencies:
820 | fs.realpath "^1.0.0"
821 | inflight "^1.0.4"
822 | inherits "2"
823 | minimatch "^3.1.1"
824 | once "^1.3.0"
825 | path-is-absolute "^1.0.0"
826 |
827 | glob@~10.2.7:
828 | version "10.2.7"
829 | resolved "https://registry.yarnpkg.com/glob/-/glob-10.2.7.tgz#9dd2828cd5bc7bd861e7738d91e7113dda41d7d8"
830 | integrity sha512-jTKehsravOJo8IJxUGfZILnkvVJM/MOfHRs8QcXolVef2zNI9Tqyy5+SeuOAZd3upViEZQLyFpQhYiHLrMUNmA==
831 | dependencies:
832 | foreground-child "^3.1.0"
833 | jackspeak "^2.0.3"
834 | minimatch "^9.0.1"
835 | minipass "^5.0.0 || ^6.0.2"
836 | path-scurry "^1.7.0"
837 |
838 | global-dirs@^0.1.1:
839 | version "0.1.1"
840 | resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-0.1.1.tgz#b319c0dd4607f353f3be9cca4c72fc148c49f445"
841 | integrity sha512-NknMLn7F2J7aflwFOlGdNIuCDpN3VGoSoB+aap3KABFWbHVn1TCgFC+np23J8W2BiZbjfEw3BFBycSMv1AFblg==
842 | dependencies:
843 | ini "^1.3.4"
844 |
845 | graceful-fs@^4.1.2:
846 | version "4.2.11"
847 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3"
848 | integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==
849 |
850 | has-flag@^3.0.0:
851 | version "3.0.0"
852 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
853 | integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==
854 |
855 | has-flag@^4.0.0:
856 | version "4.0.0"
857 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
858 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
859 |
860 | has-own-prop@^2.0.0:
861 | version "2.0.0"
862 | resolved "https://registry.yarnpkg.com/has-own-prop/-/has-own-prop-2.0.0.tgz#f0f95d58f65804f5d218db32563bb85b8e0417af"
863 | integrity sha512-Pq0h+hvsVm6dDEa8x82GnLSYHOzNDt7f0ddFa3FqcQlgzEiptPqL+XrOJNavjOzSYiYWIrgeVYYgGlLmnxwilQ==
864 |
865 | ignore@~5.2.4:
866 | version "5.2.4"
867 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324"
868 | integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==
869 |
870 | import-fresh@^3.2.1, import-fresh@^3.3.0:
871 | version "3.3.0"
872 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b"
873 | integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==
874 | dependencies:
875 | parent-module "^1.0.0"
876 | resolve-from "^4.0.0"
877 |
878 | import-meta-resolve@^2.2.2:
879 | version "2.2.2"
880 | resolved "https://registry.yarnpkg.com/import-meta-resolve/-/import-meta-resolve-2.2.2.tgz#75237301e72d1f0fbd74dbc6cca9324b164c2cc9"
881 | integrity sha512-f8KcQ1D80V7RnqVm+/lirO9zkOxjGxhaTC1IPrBGd3MEfNgmNG67tSUO9gTi2F3Blr2Az6g1vocaxzkVnWl9MA==
882 |
883 | imurmurhash@^0.1.4:
884 | version "0.1.4"
885 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
886 | integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==
887 |
888 | inflight@^1.0.4:
889 | version "1.0.6"
890 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
891 | integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==
892 | dependencies:
893 | once "^1.3.0"
894 | wrappy "1"
895 |
896 | inherits@2:
897 | version "2.0.4"
898 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
899 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
900 |
901 | ini@^1.3.4:
902 | version "1.3.8"
903 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c"
904 | integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==
905 |
906 | ini@~3.0.0:
907 | version "3.0.1"
908 | resolved "https://registry.yarnpkg.com/ini/-/ini-3.0.1.tgz#c76ec81007875bc44d544ff7a11a55d12294102d"
909 | integrity sha512-it4HyVAUTKBc6m8e1iXWvXSTdndF7HbdN713+kvLrymxTaU4AUBWrJ4vEooP+V7fexnVD3LKcBshjGGPefSMUQ==
910 |
911 | is-arrayish@^0.2.1:
912 | version "0.2.1"
913 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
914 | integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==
915 |
916 | is-extglob@^2.1.1:
917 | version "2.1.1"
918 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
919 | integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==
920 |
921 | is-fullwidth-code-point@^3.0.0:
922 | version "3.0.0"
923 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d"
924 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==
925 |
926 | is-glob@^4.0.1:
927 | version "4.0.3"
928 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084"
929 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==
930 | dependencies:
931 | is-extglob "^2.1.1"
932 |
933 | is-number@^7.0.0:
934 | version "7.0.0"
935 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
936 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
937 |
938 | is-obj@^2.0.0:
939 | version "2.0.0"
940 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982"
941 | integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==
942 |
943 | is-typedarray@^1.0.0:
944 | version "1.0.0"
945 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
946 | integrity sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==
947 |
948 | isexe@^2.0.0:
949 | version "2.0.0"
950 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
951 | integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==
952 |
953 | jackspeak@^2.0.3:
954 | version "2.2.2"
955 | resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-2.2.2.tgz#707c62733924b8dc2a0a629dc6248577788b5385"
956 | integrity sha512-mgNtVv4vUuaKA97yxUHoA3+FkuhtxkjdXEWOyB/N76fjy0FjezEt34oy3epBtvCvS+7DyKwqCFWx/oJLV5+kCg==
957 | dependencies:
958 | "@isaacs/cliui" "^8.0.2"
959 | optionalDependencies:
960 | "@pkgjs/parseargs" "^0.11.0"
961 |
962 | js-tokens@^4.0.0:
963 | version "4.0.0"
964 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
965 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
966 |
967 | js-yaml@^4.1.0:
968 | version "4.1.0"
969 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602"
970 | integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==
971 | dependencies:
972 | argparse "^2.0.1"
973 |
974 | json-parse-even-better-errors@^2.3.0:
975 | version "2.3.1"
976 | resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d"
977 | integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==
978 |
979 | jsonc-parser@~3.2.0:
980 | version "3.2.0"
981 | resolved "https://registry.yarnpkg.com/jsonc-parser/-/jsonc-parser-3.2.0.tgz#31ff3f4c2b9793f89c67212627c51c6394f88e76"
982 | integrity sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==
983 |
984 | lines-and-columns@^1.1.6:
985 | version "1.2.4"
986 | resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632"
987 | integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==
988 |
989 | linkify-it@^4.0.1:
990 | version "4.0.1"
991 | resolved "https://registry.yarnpkg.com/linkify-it/-/linkify-it-4.0.1.tgz#01f1d5e508190d06669982ba31a7d9f56a5751ec"
992 | integrity sha512-C7bfi1UZmoj8+PQx22XyeXCuBlokoyWQL5pWSP+EI6nzRylyThouddufc2c1NDIcP9k5agmN9fLpA7VNJfIiqw==
993 | dependencies:
994 | uc.micro "^1.0.1"
995 |
996 | locate-path@^6.0.0:
997 | version "6.0.0"
998 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286"
999 | integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==
1000 | dependencies:
1001 | p-locate "^5.0.0"
1002 |
1003 | lru-cache@^6.0.0:
1004 | version "6.0.0"
1005 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94"
1006 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==
1007 | dependencies:
1008 | yallist "^4.0.0"
1009 |
1010 | "lru-cache@^9.1.1 || ^10.0.0":
1011 | version "10.0.0"
1012 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.0.0.tgz#b9e2a6a72a129d81ab317202d93c7691df727e61"
1013 | integrity sha512-svTf/fzsKHffP42sujkO/Rjs37BCIsQVRCeNYIm9WN8rgT7ffoUnRtZCqU+6BqcSBdv8gwJeTz8knJpgACeQMw==
1014 |
1015 | make-dir@^3.0.0:
1016 | version "3.1.0"
1017 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f"
1018 | integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==
1019 | dependencies:
1020 | semver "^6.0.0"
1021 |
1022 | markdown-it@13.0.1:
1023 | version "13.0.1"
1024 | resolved "https://registry.yarnpkg.com/markdown-it/-/markdown-it-13.0.1.tgz#c6ecc431cacf1a5da531423fc6a42807814af430"
1025 | integrity sha512-lTlxriVoy2criHP0JKRhO2VDG9c2ypWCsT237eDiLqi09rmbKoUetyGHq2uOIRoRS//kfoJckS0eUzzkDR+k2Q==
1026 | dependencies:
1027 | argparse "^2.0.1"
1028 | entities "~3.0.1"
1029 | linkify-it "^4.0.1"
1030 | mdurl "^1.0.1"
1031 | uc.micro "^1.0.5"
1032 |
1033 | markdownlint-cli@^0.35.0:
1034 | version "0.35.0"
1035 | resolved "https://registry.yarnpkg.com/markdownlint-cli/-/markdownlint-cli-0.35.0.tgz#1a6386777c6f20681e1425c0b7a056cf130bc46f"
1036 | integrity sha512-lVIIIV1MrUtjoocgDqXLxUCxlRbn7Ve8rsWppfwciUNwLlNS28AhNiyQ3PU7jjj4Qvj+rWTTvwkqg7AcdG988g==
1037 | dependencies:
1038 | commander "~11.0.0"
1039 | get-stdin "~9.0.0"
1040 | glob "~10.2.7"
1041 | ignore "~5.2.4"
1042 | js-yaml "^4.1.0"
1043 | jsonc-parser "~3.2.0"
1044 | markdownlint "~0.29.0"
1045 | minimatch "~9.0.1"
1046 | run-con "~1.2.11"
1047 |
1048 | markdownlint-micromark@0.1.5:
1049 | version "0.1.5"
1050 | resolved "https://registry.yarnpkg.com/markdownlint-micromark/-/markdownlint-micromark-0.1.5.tgz#a23400b101be32cd4336f2b6b4c47da31825524c"
1051 | integrity sha512-HvofNU4QCvfUCWnocQP1IAWaqop5wpWrB0mKB6SSh0fcpV0PdmQNS6tdUuFew1utpYlUvYYzz84oDkrD76GB9A==
1052 |
1053 | markdownlint@^0.29.0, markdownlint@~0.29.0:
1054 | version "0.29.0"
1055 | resolved "https://registry.yarnpkg.com/markdownlint/-/markdownlint-0.29.0.tgz#9647478b7d5485965c557502fe54ee5a550033f2"
1056 | integrity sha512-ASAzqpODstu/Qsk0xW5BPgWnK/qjpBQ4e7IpsSvvFXcfYIjanLTdwFRJK1SIEEh0fGSMKXcJf/qhaZYHyME0wA==
1057 | dependencies:
1058 | markdown-it "13.0.1"
1059 | markdownlint-micromark "0.1.5"
1060 |
1061 | mdurl@^1.0.1:
1062 | version "1.0.1"
1063 | resolved "https://registry.yarnpkg.com/mdurl/-/mdurl-1.0.1.tgz#fe85b2ec75a59037f2adfec100fd6c601761152e"
1064 | integrity sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==
1065 |
1066 | merge2@^1.3.0:
1067 | version "1.4.1"
1068 | resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae"
1069 | integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==
1070 |
1071 | micromatch@^4.0.4, micromatch@^4.0.5:
1072 | version "4.0.5"
1073 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6"
1074 | integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==
1075 | dependencies:
1076 | braces "^3.0.2"
1077 | picomatch "^2.3.1"
1078 |
1079 | minimatch@^3.1.1:
1080 | version "3.1.2"
1081 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b"
1082 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==
1083 | dependencies:
1084 | brace-expansion "^1.1.7"
1085 |
1086 | minimatch@^9.0.1, minimatch@~9.0.1:
1087 | version "9.0.3"
1088 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.3.tgz#a6e00c3de44c3a542bfaae70abfc22420a6da825"
1089 | integrity sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==
1090 | dependencies:
1091 | brace-expansion "^2.0.1"
1092 |
1093 | minimist@^1.2.8:
1094 | version "1.2.8"
1095 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c"
1096 | integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==
1097 |
1098 | "minipass@^5.0.0 || ^6.0.2":
1099 | version "6.0.2"
1100 | resolved "https://registry.yarnpkg.com/minipass/-/minipass-6.0.2.tgz#542844b6c4ce95b202c0995b0a471f1229de4c81"
1101 | integrity sha512-MzWSV5nYVT7mVyWCwn2o7JH13w2TBRmmSqSRCKzTw+lmft9X4z+3wjvs06Tzijo5z4W/kahUCDpRXTF+ZrmF/w==
1102 |
1103 | "minipass@^5.0.0 || ^6.0.2 || ^7.0.0":
1104 | version "7.0.2"
1105 | resolved "https://registry.yarnpkg.com/minipass/-/minipass-7.0.2.tgz#58a82b7d81c7010da5bd4b2c0c85ac4b4ec5131e"
1106 | integrity sha512-eL79dXrE1q9dBbDCLg7xfn/vl7MS4F1gvJAgjJrQli/jbQWdUttuVawphqpffoIYfRdq78LHx6GP4bU/EQ2ATA==
1107 |
1108 | node-fetch@^2.6.9:
1109 | version "2.6.12"
1110 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.12.tgz#02eb8e22074018e3d5a83016649d04df0e348fba"
1111 | integrity sha512-C/fGU2E8ToujUivIO0H+tpQ6HWo4eEmchoPIoXtxCrVghxdKq+QOHqEZW7tuP3KlV3bC8FRMO5nMCC7Zm1VP6g==
1112 | dependencies:
1113 | whatwg-url "^5.0.0"
1114 |
1115 | once@^1.3.0:
1116 | version "1.4.0"
1117 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
1118 | integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==
1119 | dependencies:
1120 | wrappy "1"
1121 |
1122 | p-limit@^3.0.2:
1123 | version "3.1.0"
1124 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b"
1125 | integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==
1126 | dependencies:
1127 | yocto-queue "^0.1.0"
1128 |
1129 | p-locate@^5.0.0:
1130 | version "5.0.0"
1131 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834"
1132 | integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==
1133 | dependencies:
1134 | p-limit "^3.0.2"
1135 |
1136 | parent-module@^1.0.0:
1137 | version "1.0.1"
1138 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2"
1139 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==
1140 | dependencies:
1141 | callsites "^3.0.0"
1142 |
1143 | parent-module@^2.0.0:
1144 | version "2.0.0"
1145 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-2.0.0.tgz#fa71f88ff1a50c27e15d8ff74e0e3a9523bf8708"
1146 | integrity sha512-uo0Z9JJeWzv8BG+tRcapBKNJ0dro9cLyczGzulS6EfeyAdeC9sbojtW6XwvYxJkEne9En+J2XEl4zyglVeIwFg==
1147 | dependencies:
1148 | callsites "^3.1.0"
1149 |
1150 | parse-json@^5.0.0:
1151 | version "5.2.0"
1152 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd"
1153 | integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==
1154 | dependencies:
1155 | "@babel/code-frame" "^7.0.0"
1156 | error-ex "^1.3.1"
1157 | json-parse-even-better-errors "^2.3.0"
1158 | lines-and-columns "^1.1.6"
1159 |
1160 | path-exists@^4.0.0:
1161 | version "4.0.0"
1162 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3"
1163 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==
1164 |
1165 | path-is-absolute@^1.0.0:
1166 | version "1.0.1"
1167 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
1168 | integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==
1169 |
1170 | path-key@^3.1.0:
1171 | version "3.1.1"
1172 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375"
1173 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==
1174 |
1175 | path-scurry@^1.7.0:
1176 | version "1.10.1"
1177 | resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.10.1.tgz#9ba6bf5aa8500fe9fd67df4f0d9483b2b0bfc698"
1178 | integrity sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==
1179 | dependencies:
1180 | lru-cache "^9.1.1 || ^10.0.0"
1181 | minipass "^5.0.0 || ^6.0.2 || ^7.0.0"
1182 |
1183 | path-type@^4.0.0:
1184 | version "4.0.0"
1185 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b"
1186 | integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==
1187 |
1188 | picomatch@^2.3.1:
1189 | version "2.3.1"
1190 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42"
1191 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==
1192 |
1193 | prettier@^3.0.0:
1194 | version "3.0.0"
1195 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.0.0.tgz#e7b19f691245a21d618c68bc54dc06122f6105ae"
1196 | integrity sha512-zBf5eHpwHOGPC47h0zrPyNn+eAEIdEzfywMoYn2XPi0P44Zp0tSq64rq0xAREh4auw2cJZHo9QUob+NqCQky4g==
1197 |
1198 | queue-microtask@^1.2.2:
1199 | version "1.2.3"
1200 | resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243"
1201 | integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==
1202 |
1203 | repeat-string@^1.6.1:
1204 | version "1.6.1"
1205 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
1206 | integrity sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==
1207 |
1208 | resolve-from@^4.0.0:
1209 | version "4.0.0"
1210 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6"
1211 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
1212 |
1213 | resolve-from@^5.0.0:
1214 | version "5.0.0"
1215 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69"
1216 | integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==
1217 |
1218 | resolve-global@^1.0.0:
1219 | version "1.0.0"
1220 | resolved "https://registry.yarnpkg.com/resolve-global/-/resolve-global-1.0.0.tgz#a2a79df4af2ca3f49bf77ef9ddacd322dad19255"
1221 | integrity sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw==
1222 | dependencies:
1223 | global-dirs "^0.1.1"
1224 |
1225 | reusify@^1.0.4:
1226 | version "1.0.4"
1227 | resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76"
1228 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==
1229 |
1230 | rimraf@^3.0.2:
1231 | version "3.0.2"
1232 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a"
1233 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==
1234 | dependencies:
1235 | glob "^7.1.3"
1236 |
1237 | run-con@~1.2.11:
1238 | version "1.2.12"
1239 | resolved "https://registry.yarnpkg.com/run-con/-/run-con-1.2.12.tgz#51c319910e45a3bd71ee773564a89d96635c8c64"
1240 | integrity sha512-5257ILMYIF4RztL9uoZ7V9Q97zHtNHn5bN3NobeAnzB1P3ASLgg8qocM2u+R18ttp+VEM78N2LK8XcNVtnSRrg==
1241 | dependencies:
1242 | deep-extend "^0.6.0"
1243 | ini "~3.0.0"
1244 | minimist "^1.2.8"
1245 | strip-json-comments "~3.1.1"
1246 |
1247 | run-parallel@^1.1.9:
1248 | version "1.2.0"
1249 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee"
1250 | integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==
1251 | dependencies:
1252 | queue-microtask "^1.2.2"
1253 |
1254 | semver@^6.0.0:
1255 | version "6.3.1"
1256 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4"
1257 | integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==
1258 |
1259 | semver@^7.3.8:
1260 | version "7.5.4"
1261 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e"
1262 | integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==
1263 | dependencies:
1264 | lru-cache "^6.0.0"
1265 |
1266 | shebang-command@^2.0.0:
1267 | version "2.0.0"
1268 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea"
1269 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==
1270 | dependencies:
1271 | shebang-regex "^3.0.0"
1272 |
1273 | shebang-regex@^3.0.0:
1274 | version "3.0.0"
1275 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172"
1276 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==
1277 |
1278 | signal-exit@^3.0.2:
1279 | version "3.0.7"
1280 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9"
1281 | integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==
1282 |
1283 | signal-exit@^4.0.1:
1284 | version "4.1.0"
1285 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.1.0.tgz#952188c1cbd546070e2dd20d0f41c0ae0530cb04"
1286 | integrity sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==
1287 |
1288 | "string-width-cjs@npm:string-width@^4.2.0", string-width@^4.1.0:
1289 | version "4.2.3"
1290 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
1291 | integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
1292 | dependencies:
1293 | emoji-regex "^8.0.0"
1294 | is-fullwidth-code-point "^3.0.0"
1295 | strip-ansi "^6.0.1"
1296 |
1297 | string-width@^5.0.1, string-width@^5.1.2:
1298 | version "5.1.2"
1299 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz#14f8daec6d81e7221d2a357e668cab73bdbca794"
1300 | integrity sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==
1301 | dependencies:
1302 | eastasianwidth "^0.2.0"
1303 | emoji-regex "^9.2.2"
1304 | strip-ansi "^7.0.1"
1305 |
1306 | "strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@^6.0.0, strip-ansi@^6.0.1:
1307 | version "6.0.1"
1308 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
1309 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
1310 | dependencies:
1311 | ansi-regex "^5.0.1"
1312 |
1313 | strip-ansi@^7.0.1:
1314 | version "7.1.0"
1315 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45"
1316 | integrity sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==
1317 | dependencies:
1318 | ansi-regex "^6.0.1"
1319 |
1320 | strip-json-comments@~3.1.1:
1321 | version "3.1.1"
1322 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006"
1323 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==
1324 |
1325 | supports-color@^5.3.0:
1326 | version "5.5.0"
1327 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
1328 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
1329 | dependencies:
1330 | has-flag "^3.0.0"
1331 |
1332 | supports-color@^7.1.0:
1333 | version "7.2.0"
1334 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da"
1335 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==
1336 | dependencies:
1337 | has-flag "^4.0.0"
1338 |
1339 | to-regex-range@^5.0.1:
1340 | version "5.0.1"
1341 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4"
1342 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==
1343 | dependencies:
1344 | is-number "^7.0.0"
1345 |
1346 | tr46@~0.0.3:
1347 | version "0.0.3"
1348 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a"
1349 | integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==
1350 |
1351 | typedarray-to-buffer@^3.1.5:
1352 | version "3.1.5"
1353 | resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080"
1354 | integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==
1355 | dependencies:
1356 | is-typedarray "^1.0.0"
1357 |
1358 | uc.micro@^1.0.1, uc.micro@^1.0.5:
1359 | version "1.0.6"
1360 | resolved "https://registry.yarnpkg.com/uc.micro/-/uc.micro-1.0.6.tgz#9c411a802a409a91fc6cf74081baba34b24499ac"
1361 | integrity sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==
1362 |
1363 | unique-string@^2.0.0:
1364 | version "2.0.0"
1365 | resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-2.0.0.tgz#39c6451f81afb2749de2b233e3f7c5e8843bd89d"
1366 | integrity sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==
1367 | dependencies:
1368 | crypto-random-string "^2.0.0"
1369 |
1370 | vscode-languageserver-textdocument@^1.0.8:
1371 | version "1.0.8"
1372 | resolved "https://registry.yarnpkg.com/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.8.tgz#9eae94509cbd945ea44bca8dcfe4bb0c15bb3ac0"
1373 | integrity sha512-1bonkGqQs5/fxGT5UchTgjGVnfysL0O8v1AYMBjqTbWQTFn721zaPGDYFkOKtfDgFiSgXM3KwaG3FMGfW4Ed9Q==
1374 |
1375 | vscode-uri@^3.0.7:
1376 | version "3.0.7"
1377 | resolved "https://registry.yarnpkg.com/vscode-uri/-/vscode-uri-3.0.7.tgz#6d19fef387ee6b46c479e5fb00870e15e58c1eb8"
1378 | integrity sha512-eOpPHogvorZRobNqJGhapa0JdwaxpjVvyBp0QIUMRMSf8ZAlqOdEquKuRmw9Qwu0qXtJIWqFtMkmvJjUZmMjVA==
1379 |
1380 | webidl-conversions@^3.0.0:
1381 | version "3.0.1"
1382 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871"
1383 | integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==
1384 |
1385 | whatwg-url@^5.0.0:
1386 | version "5.0.0"
1387 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d"
1388 | integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==
1389 | dependencies:
1390 | tr46 "~0.0.3"
1391 | webidl-conversions "^3.0.0"
1392 |
1393 | which@^2.0.1:
1394 | version "2.0.2"
1395 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1"
1396 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==
1397 | dependencies:
1398 | isexe "^2.0.0"
1399 |
1400 | "wrap-ansi-cjs@npm:wrap-ansi@^7.0.0":
1401 | version "7.0.0"
1402 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
1403 | integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
1404 | dependencies:
1405 | ansi-styles "^4.0.0"
1406 | string-width "^4.1.0"
1407 | strip-ansi "^6.0.0"
1408 |
1409 | wrap-ansi@^8.1.0:
1410 | version "8.1.0"
1411 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214"
1412 | integrity sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==
1413 | dependencies:
1414 | ansi-styles "^6.1.0"
1415 | string-width "^5.0.1"
1416 | strip-ansi "^7.0.1"
1417 |
1418 | wrappy@1:
1419 | version "1.0.2"
1420 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
1421 | integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==
1422 |
1423 | write-file-atomic@^3.0.0:
1424 | version "3.0.3"
1425 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8"
1426 | integrity sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==
1427 | dependencies:
1428 | imurmurhash "^0.1.4"
1429 | is-typedarray "^1.0.0"
1430 | signal-exit "^3.0.2"
1431 | typedarray-to-buffer "^3.1.5"
1432 |
1433 | xdg-basedir@^4.0.0:
1434 | version "4.0.0"
1435 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-4.0.0.tgz#4bc8d9984403696225ef83a1573cbbcb4e79db13"
1436 | integrity sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==
1437 |
1438 | yallist@^4.0.0:
1439 | version "4.0.0"
1440 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72"
1441 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==
1442 |
1443 | yocto-queue@^0.1.0:
1444 | version "0.1.0"
1445 | resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b"
1446 | integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==
1447 |
--------------------------------------------------------------------------------