├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── config.yml │ ├── feature_request.yml │ └── bug_report.yml └── workflows │ ├── release.yml │ └── ci.yml ├── packages └── node-conditions │ ├── true.mjs │ ├── false.cjs │ ├── false.mjs │ ├── true.cjs │ ├── index.d.ts │ ├── conditions.js │ ├── LICENSE │ ├── CHANGELOG.md │ ├── index.cjs │ ├── index.mjs │ ├── README.md │ └── package.json ├── pnpm-workspace.yaml ├── .husky └── pre-commit ├── scripts ├── test-types.mjs ├── test.cjs ├── test.mjs ├── test-types.cjs └── generate.js ├── .editorconfig ├── .changeset └── config.json ├── .prettierrc ├── .gitignore ├── .eslintrc ├── LICENSE ├── tests ├── import.mjs └── require.cjs ├── package.json ├── README.md └── pnpm-lock.yaml /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [dominikg] 2 | -------------------------------------------------------------------------------- /packages/node-conditions/true.mjs: -------------------------------------------------------------------------------- 1 | export default true; 2 | -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- 1 | packages: 2 | - 'packages/*' 3 | -------------------------------------------------------------------------------- /packages/node-conditions/false.cjs: -------------------------------------------------------------------------------- 1 | module.exports = false; 2 | -------------------------------------------------------------------------------- /packages/node-conditions/false.mjs: -------------------------------------------------------------------------------- 1 | export default false; 2 | -------------------------------------------------------------------------------- /packages/node-conditions/true.cjs: -------------------------------------------------------------------------------- 1 | module.exports = true; 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | pnpm lint-staged --concurrent false 5 | -------------------------------------------------------------------------------- /scripts/test-types.mjs: -------------------------------------------------------------------------------- 1 | import TYPES from 'node-conditions/types'; 2 | console.log(JSON.stringify(TYPES)); 3 | -------------------------------------------------------------------------------- /scripts/test.cjs: -------------------------------------------------------------------------------- 1 | const conditions = require('node-conditions'); 2 | console.log(JSON.stringify(conditions)); 3 | -------------------------------------------------------------------------------- /scripts/test.mjs: -------------------------------------------------------------------------------- 1 | import * as conditions from 'node-conditions'; 2 | console.log(JSON.stringify(conditions)); 3 | -------------------------------------------------------------------------------- /scripts/test-types.cjs: -------------------------------------------------------------------------------- 1 | const TYPES = require('node-conditions/types'); 2 | console.log(JSON.stringify(TYPES)); 3 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | end_of_line = lf 5 | insert_final_newline = true 6 | indent_style = tab 7 | indent_size = 2 8 | charset = utf-8 9 | trim_trailing_whitespace = true 10 | 11 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | contact_links: 3 | - name: GitHub Community 4 | url: https://github.com/svitejs/node-conditions/discussions 5 | about: Please ask and answer questions here. 6 | # - name: Discord 7 | # url: https://discord.gg/nzgMZJD 8 | # about: If you want to chat, join our discord. 9 | -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://unpkg.com/@changesets/config@2.2.0/schema.json", 3 | "changelog": [ 4 | "@svitejs/changesets-changelog-github-compact", 5 | { "repo": "svitejs/node-conditions" } 6 | ], 7 | "commit": false, 8 | "fixed": [], 9 | "linked": [], 10 | "access": "public", 11 | "baseBranch": "main", 12 | "updateInternalDependencies": "patch", 13 | "ignore": [] 14 | } 15 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "useTabs": true, 3 | "singleQuote": true, 4 | "trailingComma": "none", 5 | "printWidth": 100, 6 | "endOfLine": "lf", 7 | "overrides": [ 8 | { 9 | "files": ["**/CHANGELOG.md", "**/pnpm-lock.yaml"], 10 | "options": { 11 | "requirePragma": true 12 | } 13 | }, 14 | { 15 | "files": ["**/package.json", "**/README.md"], 16 | "options": { 17 | "useTabs": true, 18 | "tabWidth": 2 19 | } 20 | } 21 | ] 22 | } 23 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # logs and temp 2 | *.log 3 | **/*.log 4 | *.cpuprofile 5 | **/*.cpuprofile 6 | temp 7 | **/temp 8 | *.tmp 9 | **/*.tmp 10 | 11 | 12 | 13 | # env and local 14 | *.local 15 | **/*.local 16 | .env 17 | **/.env 18 | 19 | #node_modules and pnpm 20 | node_modules 21 | **/node_modules 22 | .pnpm-store 23 | **/.pnpm-store 24 | 25 | #ide 26 | .idea 27 | **/.idea 28 | .vscode 29 | **/.vscode 30 | 31 | # macos 32 | .DS_Store 33 | ._.DS_Store 34 | **/.DS_Store 35 | **/._.DS_Store 36 | 37 | # other 38 | coverage 39 | -------------------------------------------------------------------------------- /packages/node-conditions/index.d.ts: -------------------------------------------------------------------------------- 1 | export const BROWSER: boolean; 2 | export const NODE: boolean; 3 | export const NODE_ADDONS: boolean; 4 | export const DENO: boolean; 5 | export const BUN: boolean; 6 | export const WORKER: boolean; 7 | export const EDGE_ROUTINE: boolean; 8 | export const WORKERD: boolean; 9 | export const LAGON: boolean; 10 | export const REACT_NATIVE: boolean; 11 | export const NETLIFY: boolean; 12 | export const ELECTRON: boolean; 13 | export const EDGE_LIGHT: boolean; 14 | export const DEVELOPMENT: boolean; 15 | export const TEST: boolean; 16 | export const PRODUCTION: boolean; 17 | export const ASTRO: boolean; 18 | export const IMBA: boolean; 19 | export const SOLID: boolean; 20 | export const SVELTE: boolean; 21 | export const REACT_SERVER: boolean; 22 | export const TYPES: boolean; 23 | export const MODULE: boolean; 24 | export const IMPORT: boolean; 25 | export const REQUIRE: boolean; 26 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["eslint:recommended", "plugin:n/recommended"], 3 | "parserOptions": { 4 | // Only ESLint 6.2.0 and later support ES2020. 5 | "ecmaVersion": 2020 6 | }, 7 | "rules": { 8 | "n/no-extraneous-require": [ 9 | "error", 10 | { 11 | "allowModules": ["node-conditions"] 12 | } 13 | ], 14 | "n/no-extraneous-import": [ 15 | "error", 16 | { 17 | "allowModules": ["node-conditions"] 18 | } 19 | ], 20 | "n/no-missing-require": ["error"], 21 | "n/no-missing-import": ["error"], 22 | "n/exports-style": ["error", "module.exports"], 23 | "n/prefer-global/buffer": ["error", "always"], 24 | "n/prefer-global/console": ["error", "always"], 25 | "n/prefer-global/process": ["error", "always"], 26 | "n/prefer-global/url-search-params": ["error", "always"], 27 | "n/prefer-global/url": ["error", "always"], 28 | "n/prefer-promises/dns": "error", 29 | "n/prefer-promises/fs": "error" 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /packages/node-conditions/conditions.js: -------------------------------------------------------------------------------- 1 | // add new conditions here and scripts/generate.js generates the code 2 | export const conditions = [ 3 | // environments 4 | 'browser', 5 | 'node', 6 | 'node-addons', 7 | 'deno', 8 | 'bun', // maybe used or useful in the future 9 | 'worker', // used by cloudflare and webpack 10 | 11 | // proposed runtimes by wintercg https://runtime-keys.proposal.wintercg.org/ 12 | 'edge-routine', 13 | 'workerd', 14 | 'lagon', 15 | 'react-native', 16 | 'netlify', 17 | 'electron', 18 | 'edge-light', 19 | 20 | // modes 21 | 'development', 22 | 'test', // not officially mentioned in the node docs but inferred from the other 2 23 | 'production', 24 | 25 | // frameworks 26 | 'astro', 27 | 'imba', 28 | 'solid', 29 | 'svelte', 30 | 'react-server', 31 | 32 | // bundlers et al 33 | 'types', // typescript 34 | 'module', // webpack, see https://github.com/microsoft/tslib/issues/183#issuecomment-1279411988 35 | 36 | // loaded via 37 | 'import', 38 | 'require' 39 | ]; 40 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 [these people](https://github.com/svitejs/node-conditions/graphs/contributors) 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /packages/node-conditions/LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 [these people](https://github.com/svitejs/node-conditions/graphs/contributors) 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /tests/import.mjs: -------------------------------------------------------------------------------- 1 | import { test } from 'uvu'; 2 | import * as assert from 'uvu/assert'; 3 | import { conditions } from '../packages/node-conditions/conditions.js'; 4 | import { execSync } from 'child_process'; 5 | import { name } from '../scripts/generate.js'; 6 | 7 | function readValues(condition) { 8 | const values = execSync(`node -C ${condition} scripts/test.mjs`).toString('utf-8'); 9 | return JSON.parse(values); 10 | } 11 | 12 | function readTypes() { 13 | const value = execSync(`node -C types scripts/test-types.mjs`).toString('utf-8'); 14 | return JSON.parse(value); 15 | } 16 | 17 | test('should resolve set conditions', () => { 18 | const testConditions = conditions.filter((c) => !['require', 'types'].includes(c)); 19 | for (const condition of testConditions) { 20 | const values = readValues(condition); 21 | const expectedTrue = [condition, 'node', 'node-addons', 'import'].map(name); 22 | for (const [name, value] of Object.entries(values)) { 23 | const expected = expectedTrue.includes(name); 24 | assert.equal(value, expected, `esm import failed for condition ${name}`); 25 | } 26 | } 27 | // special handling for types, can't be tested from '.' index export 28 | const TYPES = readTypes(); 29 | assert.equal(TYPES, true, `esm import failed for condition types`); 30 | }); 31 | test.run(); 32 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "node-conditions-monorepo", 3 | "private": true, 4 | "description": "node conditions as boolean flags", 5 | "scripts": { 6 | "prepare": "husky install", 7 | "format:check": "prettier --ignore-path .gitignore --check . \"!.changeset/**\"", 8 | "format": "pnpm format:check --write", 9 | "lint:check": "eslint --ignore-path .gitignore .", 10 | "lint": "pnpm lint:check --fix", 11 | "generate": "node scripts/generate.js", 12 | "test": "uvu tests", 13 | "release": "pnpm changeset publish" 14 | }, 15 | "keywords": [], 16 | "author": "dominikg", 17 | "license": "MIT", 18 | "type": "module", 19 | "packageManager": "pnpm@7.27.1", 20 | "engines": { 21 | "pnpm": "^7.27.1", 22 | "node": "^14 || ^16 || >=18" 23 | }, 24 | "devDependencies": { 25 | "@changesets/cli": "^2.26.0", 26 | "@svitejs/changesets-changelog-github-compact": "^1.1.0", 27 | "eslint": "^8.34.0", 28 | "eslint-plugin-n": "^15.6.1", 29 | "husky": "^8.0.3", 30 | "lint-staged": "^13.1.2", 31 | "node-conditions": "workspace:*", 32 | "prettier": "^2.8.4", 33 | "uvu": "^0.5.6" 34 | }, 35 | "lint-staged": { 36 | "*": "prettier --ignore-unknown --write", 37 | "*.{js,cjs,mjs}": "eslint --fix" 38 | }, 39 | "pnpm": { 40 | "overrides": { 41 | "node-conditions": "workspace:*" 42 | } 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # node-conditions 2 | 3 | [![npm version](https://img.shields.io/npm/v/node-conditions)](https://www.npmjs.com/package/node-conditions) 4 | [![CI](https://github.com/svitejs/node-conditions/actions/workflows/ci.yml/badge.svg)](https://github.com/svitejs/node-conditions/actions/workflows/ci.yml) 5 | 6 | A small utility to read node conditions as boolean flags, useful for conditionally including or excluding code. 7 | 8 | ## Installation 9 | 10 | ```bash 11 | npm install --save-dev node-conditions 12 | ``` 13 | 14 | ## Usage 15 | 16 | See [package readme](packages/node-conditions/README.md#usage) 17 | 18 | ## Packages 19 | 20 | | Package | Changelog | 21 | | ------------------------------------------- | -------------------------------------------------- | 22 | | [node-conditions](packages/node-conditions) | [Changelog](packages/node-conditions/CHANGELOG.md) | 23 | 24 | ## Development 25 | 26 | - Run `pnpm i` to install dependencies 27 | - edit [conditions.js](packages/node-conditions/conditions.js) to add conditions 28 | - run `pnpm generate` to regenerate package 29 | - run `pnpm changeset` to add a changeset 30 | - send PR 31 | 32 | ## Credits 33 | 34 | - Ben McCann for the genius idea to export booleans via conditions in [esm-env](https://github.com/benmccann/esm-env) 35 | 36 | ## License 37 | 38 | [MIT](./LICENSE) 39 | -------------------------------------------------------------------------------- /tests/require.cjs: -------------------------------------------------------------------------------- 1 | const { test } = require('uvu'); 2 | const assert = require('uvu/assert'); 3 | const conditionsImport = import('../packages/node-conditions/conditions.js').then( 4 | (m) => m.conditions 5 | ); 6 | const { execSync } = require('child_process'); 7 | const nameImport = import('../scripts/generate.js').then((m) => m.name); 8 | 9 | function readValues(condition) { 10 | const values = execSync(`node -C ${condition} scripts/test.cjs`).toString('utf-8'); 11 | return JSON.parse(values); 12 | } 13 | 14 | function readTypes() { 15 | const value = execSync(`node -C types scripts/test-types.cjs`).toString('utf-8'); 16 | return JSON.parse(value); 17 | } 18 | 19 | test('should resolve set conditions', async () => { 20 | const conditions = await conditionsImport; 21 | const name = await nameImport; 22 | const testConditions = conditions.filter((c) => !['import', 'types'].includes(c)); 23 | for (const condition of testConditions) { 24 | const values = readValues(condition); 25 | const expectedTrue = [condition, 'node', 'node-addons', 'require'].map(name); 26 | for (const [name, value] of Object.entries(values)) { 27 | const expected = expectedTrue.includes(name); 28 | assert.equal(value, expected, `require failed for condition ${name}`); 29 | } 30 | } 31 | // special handling for types, can't be tested from '.' index export 32 | const TYPES = readTypes(); 33 | assert.equal(TYPES, true, `require failed for condition types`); 34 | }); 35 | test.run(); 36 | -------------------------------------------------------------------------------- /packages/node-conditions/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # node-conditions 2 | 3 | ## 1.2.0 4 | 5 | ### Minor Changes 6 | 7 | - Add runtime keys proposed by wintercg: https://runtime-keys.proposal.wintercg.org/ and react-server ([#13](https://github.com/svitejs/node-conditions/pull/13)) 8 | 9 | ## 1.1.0 10 | 11 | ### Minor Changes 12 | 13 | - add types, module, import and require conditions ([#11](https://github.com/svitejs/node-conditions/pull/11)) 14 | 15 | ### Patch Changes 16 | 17 | - add sideEffects: false to package.json ([#11](https://github.com/svitejs/node-conditions/pull/11)) 18 | 19 | ## 1.0.0 20 | 21 | ### Minor Changes 22 | 23 | - add imba and bun conditions ([#6](https://github.com/svitejs/node-conditions/pull/6)) 24 | 25 | - add worker condition ([#9](https://github.com/svitejs/node-conditions/pull/9)) 26 | 27 | ### Patch Changes 28 | 29 | - initial release ([`d93fa65`](https://github.com/svitejs/node-conditions/commit/d93fa6577fc35c0e4c61809814b5cb632b2a2a70)) 30 | 31 | - remove exports of true and false files ([#4](https://github.com/svitejs/node-conditions/pull/4)) 32 | 33 | ## 1.0.0-alpha.1 34 | 35 | ### Minor Changes 36 | 37 | - add imba and bun conditions ([#6](https://github.com/svitejs/node-conditions/pull/6)) 38 | 39 | ### Patch Changes 40 | 41 | - remove exports of true and false files ([#4](https://github.com/svitejs/node-conditions/pull/4)) 42 | 43 | ## 1.0.0-alpha.0 44 | 45 | ### Patch Changes 46 | 47 | - initial release ([`d93fa65`](https://github.com/svitejs/node-conditions/commit/d93fa6577fc35c0e4c61809814b5cb632b2a2a70)) 48 | -------------------------------------------------------------------------------- /packages/node-conditions/index.cjs: -------------------------------------------------------------------------------- 1 | module.exports.BROWSER = require('node-conditions/browser'); 2 | module.exports.NODE = require('node-conditions/node'); 3 | module.exports.NODE_ADDONS = require('node-conditions/node-addons'); 4 | module.exports.DENO = require('node-conditions/deno'); 5 | module.exports.BUN = require('node-conditions/bun'); 6 | module.exports.WORKER = require('node-conditions/worker'); 7 | module.exports.EDGE_ROUTINE = require('node-conditions/edge-routine'); 8 | module.exports.WORKERD = require('node-conditions/workerd'); 9 | module.exports.LAGON = require('node-conditions/lagon'); 10 | module.exports.REACT_NATIVE = require('node-conditions/react-native'); 11 | module.exports.NETLIFY = require('node-conditions/netlify'); 12 | module.exports.ELECTRON = require('node-conditions/electron'); 13 | module.exports.EDGE_LIGHT = require('node-conditions/edge-light'); 14 | module.exports.DEVELOPMENT = require('node-conditions/development'); 15 | module.exports.TEST = require('node-conditions/test'); 16 | module.exports.PRODUCTION = require('node-conditions/production'); 17 | module.exports.ASTRO = require('node-conditions/astro'); 18 | module.exports.IMBA = require('node-conditions/imba'); 19 | module.exports.SOLID = require('node-conditions/solid'); 20 | module.exports.SVELTE = require('node-conditions/svelte'); 21 | module.exports.REACT_SERVER = require('node-conditions/react-server'); 22 | module.exports.TYPES = require('node-conditions/types'); 23 | module.exports.MODULE = require('node-conditions/module'); 24 | module.exports.IMPORT = require('node-conditions/import'); 25 | module.exports.REQUIRE = require('node-conditions/require'); 26 | -------------------------------------------------------------------------------- /packages/node-conditions/index.mjs: -------------------------------------------------------------------------------- 1 | export { default as BROWSER } from 'node-conditions/browser'; 2 | export { default as NODE } from 'node-conditions/node'; 3 | export { default as NODE_ADDONS } from 'node-conditions/node-addons'; 4 | export { default as DENO } from 'node-conditions/deno'; 5 | export { default as BUN } from 'node-conditions/bun'; 6 | export { default as WORKER } from 'node-conditions/worker'; 7 | export { default as EDGE_ROUTINE } from 'node-conditions/edge-routine'; 8 | export { default as WORKERD } from 'node-conditions/workerd'; 9 | export { default as LAGON } from 'node-conditions/lagon'; 10 | export { default as REACT_NATIVE } from 'node-conditions/react-native'; 11 | export { default as NETLIFY } from 'node-conditions/netlify'; 12 | export { default as ELECTRON } from 'node-conditions/electron'; 13 | export { default as EDGE_LIGHT } from 'node-conditions/edge-light'; 14 | export { default as DEVELOPMENT } from 'node-conditions/development'; 15 | export { default as TEST } from 'node-conditions/test'; 16 | export { default as PRODUCTION } from 'node-conditions/production'; 17 | export { default as ASTRO } from 'node-conditions/astro'; 18 | export { default as IMBA } from 'node-conditions/imba'; 19 | export { default as SOLID } from 'node-conditions/solid'; 20 | export { default as SVELTE } from 'node-conditions/svelte'; 21 | export { default as REACT_SERVER } from 'node-conditions/react-server'; 22 | export { default as TYPES } from 'node-conditions/types'; 23 | export { default as MODULE } from 'node-conditions/module'; 24 | export { default as IMPORT } from 'node-conditions/import'; 25 | export { default as REQUIRE } from 'node-conditions/require'; 26 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- 1 | name: "\U0001F680 Feature Request" 2 | description: Request a new node-conditions feature 3 | labels: [enhancement, triage] 4 | body: 5 | - type: markdown 6 | attributes: 7 | value: | 8 | Thanks for taking the time to request this feature! Please check if a similar request already exists before opening a new one. 9 | - type: textarea 10 | id: problem 11 | attributes: 12 | label: Describe the problem 13 | description: Please provide a clear and concise description the problem this feature would solve. The more information you can provide here, the better. 14 | placeholder: "I'm always frustrated when..." 15 | validations: 16 | required: true 17 | - type: textarea 18 | id: solution 19 | attributes: 20 | label: Describe the proposed solution 21 | description: Please provide a clear and concise description of what you would like to happen. 22 | placeholder: I would like to see... 23 | validations: 24 | required: true 25 | - type: textarea 26 | id: alternatives 27 | attributes: 28 | label: Alternatives considered 29 | description: "Please provide a clear and concise description of any alternative solutions or features you've considered." 30 | validations: 31 | required: true 32 | - type: dropdown 33 | id: importance 34 | attributes: 35 | label: Importance 36 | description: How important is this feature to you? 37 | options: 38 | - nice to have 39 | - would make my life easier 40 | - i cannot use node-conditions without it 41 | validations: 42 | required: true 43 | -------------------------------------------------------------------------------- /packages/node-conditions/README.md: -------------------------------------------------------------------------------- 1 | # node-conditions 2 | 3 | node conditions as boolean flags. 4 | 5 | You can read more about node conditions in the node documentation about [conditional exports](https://nodejs.org/api/packages.html#conditional-exports), [resolving user conditions](https://nodejs.org/api/packages.html#resolving-user-conditions) and [community conditions](https://nodejs.org/api/packages.html#community-conditions-definitions). 6 | 7 | ## usage 8 | 9 | ### esm 10 | 11 | ```js 12 | // via named export 13 | import { BROWSER } from 'node-conditions'; 14 | 15 | if (BROWSER) { 16 | alert('hello browser'); 17 | } else { 18 | console.log('hello console'); 19 | } 20 | 21 | // via star-alias 22 | import * as conditions from 'node-conditions'; 23 | console.log(Object.keys(conditions)); // prints all available conditions 24 | 25 | // via default export on subpath, can be any name 26 | import isBrowser from 'node-conditions/browser'; 27 | ``` 28 | 29 | ### cjs 30 | 31 | ```js 32 | // via mapped require 33 | const { BROWSER } = require('node-conditions'); 34 | 35 | if (BROWSER) { 36 | alert('hello browser'); 37 | } else { 38 | console.log('hello console'); 39 | } 40 | 41 | // via require 42 | const conditions = require('node-conditions'); 43 | console.log(Object.keys(conditions)); // prints all available conditions 44 | 45 | // via require of subpath, can be any name 46 | const isBrowser = require('node-conditions/browser'); 47 | ``` 48 | 49 | 50 | 51 | ## available conditions 52 | 53 | - BROWSER 54 | - NODE 55 | - NODE_ADDONS 56 | - DENO 57 | - BUN 58 | - WORKER 59 | - EDGE_ROUTINE 60 | - WORKERD 61 | - LAGON 62 | - REACT_NATIVE 63 | - NETLIFY 64 | - ELECTRON 65 | - EDGE_LIGHT 66 | - DEVELOPMENT 67 | - TEST 68 | - PRODUCTION 69 | - ASTRO 70 | - IMBA 71 | - SOLID 72 | - SVELTE 73 | - REACT_SERVER 74 | - TYPES 75 | - MODULE 76 | - IMPORT 77 | - REQUIRE 78 | 79 | -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- 1 | name: Release 2 | 3 | on: 4 | push: 5 | branches: 6 | - main 7 | 8 | jobs: 9 | release: 10 | # prevents this action from running on forks 11 | if: github.repository == 'svitejs/node-conditions' 12 | name: Release 13 | runs-on: ${{ matrix.os }} 14 | strategy: 15 | matrix: 16 | # pseudo-matrix for convenience, NEVER use more than a single combination 17 | node: [16] 18 | os: [ubuntu-latest] 19 | steps: 20 | - name: checkout 21 | uses: actions/checkout@v3 22 | with: 23 | # This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits 24 | fetch-depth: 0 25 | - uses: actions/setup-node@v3 26 | with: 27 | node-version: ${{ matrix.node }} 28 | - name: install pnpm 29 | shell: bash 30 | run: | 31 | PNPM_VER=$(jq -r '.packageManager | if .[0:5] == "pnpm@" then .[5:] else "packageManager in package.json does not start with pnpm@\n" | halt_error(1) end' package.json) 32 | echo installing pnpm version $PNPM_VER 33 | npm i -g pnpm@$PNPM_VER 34 | - uses: actions/setup-node@v3 35 | with: 36 | node-version: ${{ matrix.node }} 37 | cache: 'pnpm' 38 | cache-dependency-path: '**/pnpm-lock.yaml' 39 | - name: install 40 | run: | 41 | pnpm install --frozen-lockfile --prefer-offline --ignore-scripts 42 | 43 | - name: Creating .npmrc 44 | run: | 45 | cat << EOF > "$HOME/.npmrc" 46 | //registry.npmjs.org/:_authToken=$NPM_TOKEN 47 | EOF 48 | env: 49 | NPM_TOKEN: ${{ secrets.NPM_TOKEN }} 50 | - name: Create Release Pull Request or Publish to npm 51 | id: changesets 52 | uses: changesets/action@v1 53 | with: 54 | # This expects you to have a script called release which does a build for your packages and calls changeset publish 55 | publish: pnpm release 56 | env: 57 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 58 | NPM_TOKEN: ${{ secrets.NPM_TOKEN }} 59 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- 1 | name: "\U0001F41E Bug report" 2 | description: Report an issue with node-conditions 3 | labels: ['bug', 'triage'] 4 | body: 5 | - type: markdown 6 | attributes: 7 | value: | 8 | Thank you for participating in node-conditions! Please check for existing reports before creating a new one. 9 | - type: textarea 10 | id: bug-description 11 | attributes: 12 | label: Describe the bug 13 | description: A clear and concise description of what the bug is. If you intend to submit a PR for this issue, tell us in the description. Thanks! 14 | placeholder: Bug description 15 | validations: 16 | required: true 17 | - type: input 18 | id: reproduction 19 | attributes: 20 | label: Reproduction URL 21 | description: A link to a repository that reproduces the issue. Reproductions must be [short, self-contained and correct](http://sscce.org/) and must not contain files or code that aren't relevant to the issue — please do NOT just paste a link to your project. Explaining how to reproduce is generally not enough. It pushes the burden of creating a reproduction project onto a small set of volunteer maintainers and isn't scalable. If no reproduction is provided, the issue will be closed. 22 | placeholder: https://github.com/your/reproduction 23 | validations: 24 | required: true 25 | - type: textarea 26 | id: reproduction-steps 27 | attributes: 28 | label: Reproduction 29 | description: A list of steps to reproduce the issue in the provided repository 30 | placeholder: 1)... 2)... 3)... 31 | - type: textarea 32 | id: logs 33 | attributes: 34 | label: Logs 35 | description: 'Please include relevant logs for the issue, eg browser console or terminal output. No screenshots.' 36 | render: shell 37 | - type: textarea 38 | id: system-info 39 | attributes: 40 | label: System Info 41 | description: Output of `npx envinfo --system --binaries --browsers --npmPackages "{node-conditions}"` 42 | render: shell 43 | placeholder: System, Binaries, Browsers 44 | validations: 45 | required: true 46 | - type: dropdown 47 | id: severity 48 | attributes: 49 | label: Severity 50 | description: Select the severity of this issue 51 | options: 52 | - annoyance 53 | - blocking an upgrade 54 | - blocking all usage of node-conditions 55 | validations: 56 | required: true 57 | -------------------------------------------------------------------------------- /scripts/generate.js: -------------------------------------------------------------------------------- 1 | import fs from 'fs'; 2 | import { fileURLToPath } from 'url'; 3 | import { conditions } from '../packages/node-conditions/conditions.js'; 4 | 5 | export function name(condition) { 6 | return condition.toUpperCase().replace(/[^A-Z]+/g, '_'); 7 | } 8 | 9 | const pkgPath = fileURLToPath(new URL('../packages/node-conditions/package.json', import.meta.url)); 10 | const pkg = JSON.parse(fs.readFileSync(pkgPath, 'utf-8')); 11 | 12 | pkg.exports = { 13 | // index exports 14 | '.': { 15 | types: './index.d.ts', 16 | import: './index.mjs', 17 | require: './index.cjs' 18 | }, 19 | // condition exports 20 | ...conditions.reduce((exports, condition) => { 21 | switch (condition) { 22 | case 'import': 23 | exports[`./import`] = { 24 | import: './true.mjs', 25 | default: './false.cjs' 26 | }; 27 | break; 28 | case 'require': 29 | exports[`./require`] = { 30 | require: './true.cjs', 31 | default: './false.mjs' 32 | }; 33 | break; 34 | default: 35 | exports[`./${condition}`] = { 36 | import: { 37 | [condition]: './true.mjs', 38 | default: './false.mjs' 39 | }, 40 | require: { 41 | [condition]: './true.cjs', 42 | default: './false.cjs' 43 | } 44 | }; 45 | } 46 | 47 | return exports; 48 | }, {}) 49 | }; 50 | 51 | fs.writeFileSync(pkgPath, JSON.stringify(pkg, null, '\t') + '\n'); 52 | const mjsIndexPath = fileURLToPath( 53 | new URL('../packages/node-conditions/index.mjs', import.meta.url) 54 | ); 55 | const mjsIndex = conditions 56 | .map((c) => `export { default as ${name(c)} } from '${pkg.name}/${c}';\n`) 57 | .join(''); 58 | fs.writeFileSync(mjsIndexPath, mjsIndex, 'utf-8'); 59 | const cjsIndexPath = fileURLToPath( 60 | new URL('../packages/node-conditions/index.cjs', import.meta.url) 61 | ); 62 | const cjsIndex = conditions 63 | .map((c) => `module.exports.${name(c)} = require('${pkg.name}/${c}');\n`) 64 | .join(''); 65 | fs.writeFileSync(cjsIndexPath, cjsIndex, 'utf-8'); 66 | const typesPath = fileURLToPath(new URL('../packages/node-conditions/index.d.ts', import.meta.url)); 67 | const types = conditions.map((c) => `export const ${name(c)}: boolean;\n`).join(''); 68 | fs.writeFileSync(typesPath, types, 'utf-8'); 69 | 70 | const readmePath = fileURLToPath(new URL('../packages/node-conditions/README.md', import.meta.url)); 71 | let readme = fs.readFileSync(readmePath, 'utf-8'); 72 | readme = readme.replace( 73 | /\n[\s\S]*\n/m, 74 | ` 75 | 76 | 77 | ## available conditions 78 | 79 | ${conditions.map((c) => `- ${name(c)}`).join('\n')} 80 | 81 | ` 82 | ); 83 | fs.writeFileSync(readmePath, readme, 'utf-8'); 84 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- 1 | name: CI 2 | 3 | on: 4 | push: 5 | branches: 6 | - main 7 | pull_request: 8 | branches: 9 | - main 10 | 11 | jobs: 12 | # "checks" job runs on linux + node14 only and checks that install, build, lint and audit work 13 | # it also primes the pnpm store cache for linux, important for downstream tests 14 | checks: 15 | timeout-minutes: 5 16 | runs-on: ${{ matrix.os }} 17 | strategy: 18 | matrix: 19 | # pseudo-matrix for convenience, NEVER use more than a single combination 20 | node: [16] 21 | os: [ubuntu-latest] 22 | outputs: 23 | build_successful: ${{ steps.build.outcome == 'success' }} 24 | steps: 25 | - uses: actions/checkout@v3 26 | - uses: actions/setup-node@v3 27 | with: 28 | node-version: ${{ matrix.node }} 29 | - name: install pnpm 30 | shell: bash 31 | run: | 32 | PNPM_VER=$(jq -r '.packageManager | if .[0:5] == "pnpm@" then .[5:] else "packageManager in package.json does not start with pnpm@\n" | halt_error(1) end' package.json) 33 | echo installing pnpm version $PNPM_VER 34 | npm i -g pnpm@$PNPM_VER 35 | - uses: actions/setup-node@v3 36 | with: 37 | node-version: ${{ matrix.node }} 38 | cache: 'pnpm' 39 | cache-dependency-path: '**/pnpm-lock.yaml' 40 | - name: install 41 | run: | 42 | pnpm install --frozen-lockfile --prefer-offline --ignore-scripts 43 | - name: lint 44 | run: pnpm lint:check 45 | - name: format 46 | run: pnpm format:check 47 | - name: audit 48 | run: pnpm audit 49 | 50 | test: 51 | timeout-minutes: 10 52 | runs-on: ${{ matrix.os }} 53 | strategy: 54 | fail-fast: false 55 | matrix: 56 | node: [16] 57 | os: [ubuntu-latest, macos-latest, windows-latest] 58 | include: 59 | - node: 14 60 | os: ubuntu-latest 61 | - node: 18 62 | os: ubuntu-latest 63 | steps: 64 | - uses: actions/checkout@v3 65 | - uses: actions/setup-node@v3 66 | with: 67 | node-version: ${{ matrix.node }} 68 | - name: install pnpm 69 | shell: bash 70 | run: | 71 | PNPM_VER=$(jq -r '.packageManager | if .[0:5] == "pnpm@" then .[5:] else "packageManager in package.json does not start with pnpm@\n" | halt_error(1) end' package.json) 72 | echo installing pnpm version $PNPM_VER 73 | npm i -g pnpm@$PNPM_VER 74 | - uses: actions/setup-node@v3 75 | with: 76 | node-version: ${{ matrix.node }} 77 | cache: 'pnpm' 78 | cache-dependency-path: '**/pnpm-lock.yaml' 79 | - name: install 80 | run: | 81 | pnpm install --frozen-lockfile --prefer-offline --ignore-scripts 82 | - name: run tests 83 | run: pnpm test 84 | -------------------------------------------------------------------------------- /packages/node-conditions/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "node-conditions", 3 | "version": "1.2.0", 4 | "description": "node conditions as boolean flags", 5 | "keywords": [ 6 | "conditions" 7 | ], 8 | "author": "dominikg", 9 | "license": "MIT", 10 | "type": "module", 11 | "repository": { 12 | "type": "git", 13 | "url": "git+https://github.com/svitejs/node-conditions.git", 14 | "directory": "packages/node-conditions" 15 | }, 16 | "bugs": { 17 | "url": "https://github.com/svitejs/node-conditions/issues" 18 | }, 19 | "homepage": "https://github.com/svitejs/node-conditions#readme", 20 | "engines": { 21 | "node": "^14 || ^16 || >=18" 22 | }, 23 | "files": [ 24 | "false.cjs", 25 | "false.mjs", 26 | "true.cjs", 27 | "true.mjs", 28 | "index.mjs", 29 | "index.cjs", 30 | "index.d.ts" 31 | ], 32 | "exports": { 33 | ".": { 34 | "types": "./index.d.ts", 35 | "import": "./index.mjs", 36 | "require": "./index.cjs" 37 | }, 38 | "./browser": { 39 | "import": { 40 | "browser": "./true.mjs", 41 | "default": "./false.mjs" 42 | }, 43 | "require": { 44 | "browser": "./true.cjs", 45 | "default": "./false.cjs" 46 | } 47 | }, 48 | "./node": { 49 | "import": { 50 | "node": "./true.mjs", 51 | "default": "./false.mjs" 52 | }, 53 | "require": { 54 | "node": "./true.cjs", 55 | "default": "./false.cjs" 56 | } 57 | }, 58 | "./node-addons": { 59 | "import": { 60 | "node-addons": "./true.mjs", 61 | "default": "./false.mjs" 62 | }, 63 | "require": { 64 | "node-addons": "./true.cjs", 65 | "default": "./false.cjs" 66 | } 67 | }, 68 | "./deno": { 69 | "import": { 70 | "deno": "./true.mjs", 71 | "default": "./false.mjs" 72 | }, 73 | "require": { 74 | "deno": "./true.cjs", 75 | "default": "./false.cjs" 76 | } 77 | }, 78 | "./bun": { 79 | "import": { 80 | "bun": "./true.mjs", 81 | "default": "./false.mjs" 82 | }, 83 | "require": { 84 | "bun": "./true.cjs", 85 | "default": "./false.cjs" 86 | } 87 | }, 88 | "./worker": { 89 | "import": { 90 | "worker": "./true.mjs", 91 | "default": "./false.mjs" 92 | }, 93 | "require": { 94 | "worker": "./true.cjs", 95 | "default": "./false.cjs" 96 | } 97 | }, 98 | "./edge-routine": { 99 | "import": { 100 | "edge-routine": "./true.mjs", 101 | "default": "./false.mjs" 102 | }, 103 | "require": { 104 | "edge-routine": "./true.cjs", 105 | "default": "./false.cjs" 106 | } 107 | }, 108 | "./workerd": { 109 | "import": { 110 | "workerd": "./true.mjs", 111 | "default": "./false.mjs" 112 | }, 113 | "require": { 114 | "workerd": "./true.cjs", 115 | "default": "./false.cjs" 116 | } 117 | }, 118 | "./lagon": { 119 | "import": { 120 | "lagon": "./true.mjs", 121 | "default": "./false.mjs" 122 | }, 123 | "require": { 124 | "lagon": "./true.cjs", 125 | "default": "./false.cjs" 126 | } 127 | }, 128 | "./react-native": { 129 | "import": { 130 | "react-native": "./true.mjs", 131 | "default": "./false.mjs" 132 | }, 133 | "require": { 134 | "react-native": "./true.cjs", 135 | "default": "./false.cjs" 136 | } 137 | }, 138 | "./netlify": { 139 | "import": { 140 | "netlify": "./true.mjs", 141 | "default": "./false.mjs" 142 | }, 143 | "require": { 144 | "netlify": "./true.cjs", 145 | "default": "./false.cjs" 146 | } 147 | }, 148 | "./electron": { 149 | "import": { 150 | "electron": "./true.mjs", 151 | "default": "./false.mjs" 152 | }, 153 | "require": { 154 | "electron": "./true.cjs", 155 | "default": "./false.cjs" 156 | } 157 | }, 158 | "./edge-light": { 159 | "import": { 160 | "edge-light": "./true.mjs", 161 | "default": "./false.mjs" 162 | }, 163 | "require": { 164 | "edge-light": "./true.cjs", 165 | "default": "./false.cjs" 166 | } 167 | }, 168 | "./development": { 169 | "import": { 170 | "development": "./true.mjs", 171 | "default": "./false.mjs" 172 | }, 173 | "require": { 174 | "development": "./true.cjs", 175 | "default": "./false.cjs" 176 | } 177 | }, 178 | "./test": { 179 | "import": { 180 | "test": "./true.mjs", 181 | "default": "./false.mjs" 182 | }, 183 | "require": { 184 | "test": "./true.cjs", 185 | "default": "./false.cjs" 186 | } 187 | }, 188 | "./production": { 189 | "import": { 190 | "production": "./true.mjs", 191 | "default": "./false.mjs" 192 | }, 193 | "require": { 194 | "production": "./true.cjs", 195 | "default": "./false.cjs" 196 | } 197 | }, 198 | "./astro": { 199 | "import": { 200 | "astro": "./true.mjs", 201 | "default": "./false.mjs" 202 | }, 203 | "require": { 204 | "astro": "./true.cjs", 205 | "default": "./false.cjs" 206 | } 207 | }, 208 | "./imba": { 209 | "import": { 210 | "imba": "./true.mjs", 211 | "default": "./false.mjs" 212 | }, 213 | "require": { 214 | "imba": "./true.cjs", 215 | "default": "./false.cjs" 216 | } 217 | }, 218 | "./solid": { 219 | "import": { 220 | "solid": "./true.mjs", 221 | "default": "./false.mjs" 222 | }, 223 | "require": { 224 | "solid": "./true.cjs", 225 | "default": "./false.cjs" 226 | } 227 | }, 228 | "./svelte": { 229 | "import": { 230 | "svelte": "./true.mjs", 231 | "default": "./false.mjs" 232 | }, 233 | "require": { 234 | "svelte": "./true.cjs", 235 | "default": "./false.cjs" 236 | } 237 | }, 238 | "./react-server": { 239 | "import": { 240 | "react-server": "./true.mjs", 241 | "default": "./false.mjs" 242 | }, 243 | "require": { 244 | "react-server": "./true.cjs", 245 | "default": "./false.cjs" 246 | } 247 | }, 248 | "./types": { 249 | "import": { 250 | "types": "./true.mjs", 251 | "default": "./false.mjs" 252 | }, 253 | "require": { 254 | "types": "./true.cjs", 255 | "default": "./false.cjs" 256 | } 257 | }, 258 | "./module": { 259 | "import": { 260 | "module": "./true.mjs", 261 | "default": "./false.mjs" 262 | }, 263 | "require": { 264 | "module": "./true.cjs", 265 | "default": "./false.cjs" 266 | } 267 | }, 268 | "./import": { 269 | "import": "./true.mjs", 270 | "default": "./false.cjs" 271 | }, 272 | "./require": { 273 | "require": "./true.cjs", 274 | "default": "./false.mjs" 275 | } 276 | }, 277 | "sideEffects": false 278 | } 279 | -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: 5.4 2 | 3 | overrides: 4 | node-conditions: workspace:* 5 | 6 | importers: 7 | 8 | .: 9 | specifiers: 10 | '@changesets/cli': ^2.26.0 11 | '@svitejs/changesets-changelog-github-compact': ^1.1.0 12 | eslint: ^8.34.0 13 | eslint-plugin-n: ^15.6.1 14 | husky: ^8.0.3 15 | lint-staged: ^13.1.2 16 | node-conditions: workspace:* 17 | prettier: ^2.8.4 18 | uvu: ^0.5.6 19 | devDependencies: 20 | '@changesets/cli': 2.26.0 21 | '@svitejs/changesets-changelog-github-compact': 1.1.0 22 | eslint: 8.34.0 23 | eslint-plugin-n: 15.6.1_eslint@8.34.0 24 | husky: 8.0.3 25 | lint-staged: 13.1.2 26 | node-conditions: link:packages/node-conditions 27 | prettier: 2.8.4 28 | uvu: 0.5.6 29 | 30 | packages/node-conditions: 31 | specifiers: {} 32 | 33 | packages: 34 | 35 | /@babel/code-frame/7.18.6: 36 | resolution: {integrity: sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==} 37 | engines: {node: '>=6.9.0'} 38 | dependencies: 39 | '@babel/highlight': 7.18.6 40 | dev: true 41 | 42 | /@babel/helper-validator-identifier/7.19.1: 43 | resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==} 44 | engines: {node: '>=6.9.0'} 45 | dev: true 46 | 47 | /@babel/highlight/7.18.6: 48 | resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==} 49 | engines: {node: '>=6.9.0'} 50 | dependencies: 51 | '@babel/helper-validator-identifier': 7.19.1 52 | chalk: 2.4.2 53 | js-tokens: 4.0.0 54 | dev: true 55 | 56 | /@babel/runtime/7.21.0: 57 | resolution: {integrity: sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw==} 58 | engines: {node: '>=6.9.0'} 59 | dependencies: 60 | regenerator-runtime: 0.13.11 61 | dev: true 62 | 63 | /@changesets/apply-release-plan/6.1.3: 64 | resolution: {integrity: sha512-ECDNeoc3nfeAe1jqJb5aFQX7CqzQhD2klXRez2JDb/aVpGUbX673HgKrnrgJRuQR/9f2TtLoYIzrGB9qwD77mg==} 65 | dependencies: 66 | '@babel/runtime': 7.21.0 67 | '@changesets/config': 2.3.0 68 | '@changesets/get-version-range-type': 0.3.2 69 | '@changesets/git': 2.0.0 70 | '@changesets/types': 5.2.1 71 | '@manypkg/get-packages': 1.1.3 72 | detect-indent: 6.1.0 73 | fs-extra: 7.0.1 74 | lodash.startcase: 4.4.0 75 | outdent: 0.5.0 76 | prettier: 2.8.4 77 | resolve-from: 5.0.0 78 | semver: 5.7.1 79 | dev: true 80 | 81 | /@changesets/assemble-release-plan/5.2.3: 82 | resolution: {integrity: sha512-g7EVZCmnWz3zMBAdrcKhid4hkHT+Ft1n0mLussFMcB1dE2zCuwcvGoy9ec3yOgPGF4hoMtgHaMIk3T3TBdvU9g==} 83 | dependencies: 84 | '@babel/runtime': 7.21.0 85 | '@changesets/errors': 0.1.4 86 | '@changesets/get-dependents-graph': 1.3.5 87 | '@changesets/types': 5.2.1 88 | '@manypkg/get-packages': 1.1.3 89 | semver: 5.7.1 90 | dev: true 91 | 92 | /@changesets/changelog-git/0.1.14: 93 | resolution: {integrity: sha512-+vRfnKtXVWsDDxGctOfzJsPhaCdXRYoe+KyWYoq5X/GqoISREiat0l3L8B0a453B2B4dfHGcZaGyowHbp9BSaA==} 94 | dependencies: 95 | '@changesets/types': 5.2.1 96 | dev: true 97 | 98 | /@changesets/cli/2.26.0: 99 | resolution: {integrity: sha512-0cbTiDms+ICTVtEwAFLNW0jBNex9f5+fFv3I771nBvdnV/mOjd1QJ4+f8KtVSOrwD9SJkk9xbDkWFb0oXd8d1Q==} 100 | hasBin: true 101 | dependencies: 102 | '@babel/runtime': 7.21.0 103 | '@changesets/apply-release-plan': 6.1.3 104 | '@changesets/assemble-release-plan': 5.2.3 105 | '@changesets/changelog-git': 0.1.14 106 | '@changesets/config': 2.3.0 107 | '@changesets/errors': 0.1.4 108 | '@changesets/get-dependents-graph': 1.3.5 109 | '@changesets/get-release-plan': 3.0.16 110 | '@changesets/git': 2.0.0 111 | '@changesets/logger': 0.0.5 112 | '@changesets/pre': 1.0.14 113 | '@changesets/read': 0.5.9 114 | '@changesets/types': 5.2.1 115 | '@changesets/write': 0.2.3 116 | '@manypkg/get-packages': 1.1.3 117 | '@types/is-ci': 3.0.0 118 | '@types/semver': 6.2.3 119 | ansi-colors: 4.1.3 120 | chalk: 2.4.2 121 | enquirer: 2.3.6 122 | external-editor: 3.1.0 123 | fs-extra: 7.0.1 124 | human-id: 1.0.2 125 | is-ci: 3.0.1 126 | meow: 6.1.1 127 | outdent: 0.5.0 128 | p-limit: 2.3.0 129 | preferred-pm: 3.0.3 130 | resolve-from: 5.0.0 131 | semver: 5.7.1 132 | spawndamnit: 2.0.0 133 | term-size: 2.2.1 134 | tty-table: 4.1.6 135 | dev: true 136 | 137 | /@changesets/config/2.3.0: 138 | resolution: {integrity: sha512-EgP/px6mhCx8QeaMAvWtRrgyxW08k/Bx2tpGT+M84jEdX37v3VKfh4Cz1BkwrYKuMV2HZKeHOh8sHvja/HcXfQ==} 139 | dependencies: 140 | '@changesets/errors': 0.1.4 141 | '@changesets/get-dependents-graph': 1.3.5 142 | '@changesets/logger': 0.0.5 143 | '@changesets/types': 5.2.1 144 | '@manypkg/get-packages': 1.1.3 145 | fs-extra: 7.0.1 146 | micromatch: 4.0.5 147 | dev: true 148 | 149 | /@changesets/errors/0.1.4: 150 | resolution: {integrity: sha512-HAcqPF7snsUJ/QzkWoKfRfXushHTu+K5KZLJWPb34s4eCZShIf8BFO3fwq6KU8+G7L5KdtN2BzQAXOSXEyiY9Q==} 151 | dependencies: 152 | extendable-error: 0.1.7 153 | dev: true 154 | 155 | /@changesets/get-dependents-graph/1.3.5: 156 | resolution: {integrity: sha512-w1eEvnWlbVDIY8mWXqWuYE9oKhvIaBhzqzo4ITSJY9hgoqQ3RoBqwlcAzg11qHxv/b8ReDWnMrpjpKrW6m1ZTA==} 157 | dependencies: 158 | '@changesets/types': 5.2.1 159 | '@manypkg/get-packages': 1.1.3 160 | chalk: 2.4.2 161 | fs-extra: 7.0.1 162 | semver: 5.7.1 163 | dev: true 164 | 165 | /@changesets/get-github-info/0.5.2: 166 | resolution: {integrity: sha512-JppheLu7S114aEs157fOZDjFqUDpm7eHdq5E8SSR0gUBTEK0cNSHsrSR5a66xs0z3RWuo46QvA3vawp8BxDHvg==} 167 | dependencies: 168 | dataloader: 1.4.0 169 | node-fetch: 2.6.9 170 | transitivePeerDependencies: 171 | - encoding 172 | dev: true 173 | 174 | /@changesets/get-release-plan/3.0.16: 175 | resolution: {integrity: sha512-OpP9QILpBp1bY2YNIKFzwigKh7Qe9KizRsZomzLe6pK8IUo8onkAAVUD8+JRKSr8R7d4+JRuQrfSSNlEwKyPYg==} 176 | dependencies: 177 | '@babel/runtime': 7.21.0 178 | '@changesets/assemble-release-plan': 5.2.3 179 | '@changesets/config': 2.3.0 180 | '@changesets/pre': 1.0.14 181 | '@changesets/read': 0.5.9 182 | '@changesets/types': 5.2.1 183 | '@manypkg/get-packages': 1.1.3 184 | dev: true 185 | 186 | /@changesets/get-version-range-type/0.3.2: 187 | resolution: {integrity: sha512-SVqwYs5pULYjYT4op21F2pVbcrca4qA/bAA3FmFXKMN7Y+HcO8sbZUTx3TAy2VXulP2FACd1aC7f2nTuqSPbqg==} 188 | dev: true 189 | 190 | /@changesets/git/2.0.0: 191 | resolution: {integrity: sha512-enUVEWbiqUTxqSnmesyJGWfzd51PY4H7mH9yUw0hPVpZBJ6tQZFMU3F3mT/t9OJ/GjyiM4770i+sehAn6ymx6A==} 192 | dependencies: 193 | '@babel/runtime': 7.21.0 194 | '@changesets/errors': 0.1.4 195 | '@changesets/types': 5.2.1 196 | '@manypkg/get-packages': 1.1.3 197 | is-subdir: 1.2.0 198 | micromatch: 4.0.5 199 | spawndamnit: 2.0.0 200 | dev: true 201 | 202 | /@changesets/logger/0.0.5: 203 | resolution: {integrity: sha512-gJyZHomu8nASHpaANzc6bkQMO9gU/ib20lqew1rVx753FOxffnCrJlGIeQVxNWCqM+o6OOleCo/ivL8UAO5iFw==} 204 | dependencies: 205 | chalk: 2.4.2 206 | dev: true 207 | 208 | /@changesets/parse/0.3.16: 209 | resolution: {integrity: sha512-127JKNd167ayAuBjUggZBkmDS5fIKsthnr9jr6bdnuUljroiERW7FBTDNnNVyJ4l69PzR57pk6mXQdtJyBCJKg==} 210 | dependencies: 211 | '@changesets/types': 5.2.1 212 | js-yaml: 3.14.1 213 | dev: true 214 | 215 | /@changesets/pre/1.0.14: 216 | resolution: {integrity: sha512-dTsHmxQWEQekHYHbg+M1mDVYFvegDh9j/kySNuDKdylwfMEevTeDouR7IfHNyVodxZXu17sXoJuf2D0vi55FHQ==} 217 | dependencies: 218 | '@babel/runtime': 7.21.0 219 | '@changesets/errors': 0.1.4 220 | '@changesets/types': 5.2.1 221 | '@manypkg/get-packages': 1.1.3 222 | fs-extra: 7.0.1 223 | dev: true 224 | 225 | /@changesets/read/0.5.9: 226 | resolution: {integrity: sha512-T8BJ6JS6j1gfO1HFq50kU3qawYxa4NTbI/ASNVVCBTsKquy2HYwM9r7ZnzkiMe8IEObAJtUVGSrePCOxAK2haQ==} 227 | dependencies: 228 | '@babel/runtime': 7.21.0 229 | '@changesets/git': 2.0.0 230 | '@changesets/logger': 0.0.5 231 | '@changesets/parse': 0.3.16 232 | '@changesets/types': 5.2.1 233 | chalk: 2.4.2 234 | fs-extra: 7.0.1 235 | p-filter: 2.1.0 236 | dev: true 237 | 238 | /@changesets/types/4.1.0: 239 | resolution: {integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==} 240 | dev: true 241 | 242 | /@changesets/types/5.2.1: 243 | resolution: {integrity: sha512-myLfHbVOqaq9UtUKqR/nZA/OY7xFjQMdfgfqeZIBK4d0hA6pgxArvdv8M+6NUzzBsjWLOtvApv8YHr4qM+Kpfg==} 244 | dev: true 245 | 246 | /@changesets/write/0.2.3: 247 | resolution: {integrity: sha512-Dbamr7AIMvslKnNYsLFafaVORx4H0pvCA2MHqgtNCySMe1blImEyAEOzDmcgKAkgz4+uwoLz7demIrX+JBr/Xw==} 248 | dependencies: 249 | '@babel/runtime': 7.21.0 250 | '@changesets/types': 5.2.1 251 | fs-extra: 7.0.1 252 | human-id: 1.0.2 253 | prettier: 2.8.4 254 | dev: true 255 | 256 | /@eslint/eslintrc/1.4.1: 257 | resolution: {integrity: sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==} 258 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 259 | dependencies: 260 | ajv: 6.12.6 261 | debug: 4.3.4 262 | espree: 9.4.1 263 | globals: 13.20.0 264 | ignore: 5.2.4 265 | import-fresh: 3.3.0 266 | js-yaml: 4.1.0 267 | minimatch: 3.1.2 268 | strip-json-comments: 3.1.1 269 | transitivePeerDependencies: 270 | - supports-color 271 | dev: true 272 | 273 | /@humanwhocodes/config-array/0.11.8: 274 | resolution: {integrity: sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==} 275 | engines: {node: '>=10.10.0'} 276 | dependencies: 277 | '@humanwhocodes/object-schema': 1.2.1 278 | debug: 4.3.4 279 | minimatch: 3.1.2 280 | transitivePeerDependencies: 281 | - supports-color 282 | dev: true 283 | 284 | /@humanwhocodes/module-importer/1.0.1: 285 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} 286 | engines: {node: '>=12.22'} 287 | dev: true 288 | 289 | /@humanwhocodes/object-schema/1.2.1: 290 | resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} 291 | dev: true 292 | 293 | /@manypkg/find-root/1.1.0: 294 | resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==} 295 | dependencies: 296 | '@babel/runtime': 7.21.0 297 | '@types/node': 12.20.55 298 | find-up: 4.1.0 299 | fs-extra: 8.1.0 300 | dev: true 301 | 302 | /@manypkg/get-packages/1.1.3: 303 | resolution: {integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==} 304 | dependencies: 305 | '@babel/runtime': 7.21.0 306 | '@changesets/types': 4.1.0 307 | '@manypkg/find-root': 1.1.0 308 | fs-extra: 8.1.0 309 | globby: 11.1.0 310 | read-yaml-file: 1.1.0 311 | dev: true 312 | 313 | /@nodelib/fs.scandir/2.1.5: 314 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} 315 | engines: {node: '>= 8'} 316 | dependencies: 317 | '@nodelib/fs.stat': 2.0.5 318 | run-parallel: 1.2.0 319 | dev: true 320 | 321 | /@nodelib/fs.stat/2.0.5: 322 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 323 | engines: {node: '>= 8'} 324 | dev: true 325 | 326 | /@nodelib/fs.walk/1.2.8: 327 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 328 | engines: {node: '>= 8'} 329 | dependencies: 330 | '@nodelib/fs.scandir': 2.1.5 331 | fastq: 1.15.0 332 | dev: true 333 | 334 | /@svitejs/changesets-changelog-github-compact/1.1.0: 335 | resolution: {integrity: sha512-qhUGGDHcpbY2zpjW3SwqchuW8J/5EzlPFud7xNntHKA7f3a/mx5+g+ruJKFHSAiVZYo30PALt+AyhmPUNKH/Og==} 336 | engines: {node: ^14.13.1 || ^16.0.0 || >=18} 337 | dependencies: 338 | '@changesets/get-github-info': 0.5.2 339 | dotenv: 16.0.3 340 | transitivePeerDependencies: 341 | - encoding 342 | dev: true 343 | 344 | /@types/is-ci/3.0.0: 345 | resolution: {integrity: sha512-Q0Op0hdWbYd1iahB+IFNQcWXFq4O0Q5MwQP7uN0souuQ4rPg1vEYcnIOfr1gY+M+6rc8FGoRaBO1mOOvL29sEQ==} 346 | dependencies: 347 | ci-info: 3.8.0 348 | dev: true 349 | 350 | /@types/minimist/1.2.2: 351 | resolution: {integrity: sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==} 352 | dev: true 353 | 354 | /@types/node/12.20.55: 355 | resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==} 356 | dev: true 357 | 358 | /@types/normalize-package-data/2.4.1: 359 | resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==} 360 | dev: true 361 | 362 | /@types/semver/6.2.3: 363 | resolution: {integrity: sha512-KQf+QAMWKMrtBMsB8/24w53tEsxllMj6TuA80TT/5igJalLI/zm0L3oXRbIAl4Ohfc85gyHX/jhMwsVkmhLU4A==} 364 | dev: true 365 | 366 | /acorn-jsx/5.3.2_acorn@8.8.2: 367 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} 368 | peerDependencies: 369 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 370 | dependencies: 371 | acorn: 8.8.2 372 | dev: true 373 | 374 | /acorn/8.8.2: 375 | resolution: {integrity: sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==} 376 | engines: {node: '>=0.4.0'} 377 | hasBin: true 378 | dev: true 379 | 380 | /aggregate-error/3.1.0: 381 | resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} 382 | engines: {node: '>=8'} 383 | dependencies: 384 | clean-stack: 2.2.0 385 | indent-string: 4.0.0 386 | dev: true 387 | 388 | /ajv/6.12.6: 389 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} 390 | dependencies: 391 | fast-deep-equal: 3.1.3 392 | fast-json-stable-stringify: 2.1.0 393 | json-schema-traverse: 0.4.1 394 | uri-js: 4.4.1 395 | dev: true 396 | 397 | /ansi-colors/4.1.3: 398 | resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} 399 | engines: {node: '>=6'} 400 | dev: true 401 | 402 | /ansi-escapes/4.3.2: 403 | resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} 404 | engines: {node: '>=8'} 405 | dependencies: 406 | type-fest: 0.21.3 407 | dev: true 408 | 409 | /ansi-regex/5.0.1: 410 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 411 | engines: {node: '>=8'} 412 | dev: true 413 | 414 | /ansi-regex/6.0.1: 415 | resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} 416 | engines: {node: '>=12'} 417 | dev: true 418 | 419 | /ansi-styles/3.2.1: 420 | resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} 421 | engines: {node: '>=4'} 422 | dependencies: 423 | color-convert: 1.9.3 424 | dev: true 425 | 426 | /ansi-styles/4.3.0: 427 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 428 | engines: {node: '>=8'} 429 | dependencies: 430 | color-convert: 2.0.1 431 | dev: true 432 | 433 | /ansi-styles/6.2.1: 434 | resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} 435 | engines: {node: '>=12'} 436 | dev: true 437 | 438 | /argparse/1.0.10: 439 | resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} 440 | dependencies: 441 | sprintf-js: 1.0.3 442 | dev: true 443 | 444 | /argparse/2.0.1: 445 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 446 | dev: true 447 | 448 | /array-union/2.1.0: 449 | resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} 450 | engines: {node: '>=8'} 451 | dev: true 452 | 453 | /array.prototype.flat/1.3.1: 454 | resolution: {integrity: sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==} 455 | engines: {node: '>= 0.4'} 456 | dependencies: 457 | call-bind: 1.0.2 458 | define-properties: 1.2.0 459 | es-abstract: 1.21.1 460 | es-shim-unscopables: 1.0.0 461 | dev: true 462 | 463 | /arrify/1.0.1: 464 | resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} 465 | engines: {node: '>=0.10.0'} 466 | dev: true 467 | 468 | /astral-regex/2.0.0: 469 | resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} 470 | engines: {node: '>=8'} 471 | dev: true 472 | 473 | /available-typed-arrays/1.0.5: 474 | resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==} 475 | engines: {node: '>= 0.4'} 476 | dev: true 477 | 478 | /balanced-match/1.0.2: 479 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 480 | dev: true 481 | 482 | /better-path-resolve/1.0.0: 483 | resolution: {integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==} 484 | engines: {node: '>=4'} 485 | dependencies: 486 | is-windows: 1.0.2 487 | dev: true 488 | 489 | /brace-expansion/1.1.11: 490 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} 491 | dependencies: 492 | balanced-match: 1.0.2 493 | concat-map: 0.0.1 494 | dev: true 495 | 496 | /braces/3.0.2: 497 | resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} 498 | engines: {node: '>=8'} 499 | dependencies: 500 | fill-range: 7.0.1 501 | dev: true 502 | 503 | /breakword/1.0.5: 504 | resolution: {integrity: sha512-ex5W9DoOQ/LUEU3PMdLs9ua/CYZl1678NUkKOdUSi8Aw5F1idieaiRURCBFJCwVcrD1J8Iy3vfWSloaMwO2qFg==} 505 | dependencies: 506 | wcwidth: 1.0.1 507 | dev: true 508 | 509 | /builtins/5.0.1: 510 | resolution: {integrity: sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==} 511 | dependencies: 512 | semver: 7.3.8 513 | dev: true 514 | 515 | /call-bind/1.0.2: 516 | resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==} 517 | dependencies: 518 | function-bind: 1.1.1 519 | get-intrinsic: 1.2.0 520 | dev: true 521 | 522 | /callsites/3.1.0: 523 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} 524 | engines: {node: '>=6'} 525 | dev: true 526 | 527 | /camelcase-keys/6.2.2: 528 | resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==} 529 | engines: {node: '>=8'} 530 | dependencies: 531 | camelcase: 5.3.1 532 | map-obj: 4.3.0 533 | quick-lru: 4.0.1 534 | dev: true 535 | 536 | /camelcase/5.3.1: 537 | resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} 538 | engines: {node: '>=6'} 539 | dev: true 540 | 541 | /chalk/2.4.2: 542 | resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} 543 | engines: {node: '>=4'} 544 | dependencies: 545 | ansi-styles: 3.2.1 546 | escape-string-regexp: 1.0.5 547 | supports-color: 5.5.0 548 | dev: true 549 | 550 | /chalk/4.1.2: 551 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} 552 | engines: {node: '>=10'} 553 | dependencies: 554 | ansi-styles: 4.3.0 555 | supports-color: 7.2.0 556 | dev: true 557 | 558 | /chardet/0.7.0: 559 | resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} 560 | dev: true 561 | 562 | /ci-info/3.8.0: 563 | resolution: {integrity: sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==} 564 | engines: {node: '>=8'} 565 | dev: true 566 | 567 | /clean-stack/2.2.0: 568 | resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} 569 | engines: {node: '>=6'} 570 | dev: true 571 | 572 | /cli-cursor/3.1.0: 573 | resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} 574 | engines: {node: '>=8'} 575 | dependencies: 576 | restore-cursor: 3.1.0 577 | dev: true 578 | 579 | /cli-truncate/2.1.0: 580 | resolution: {integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==} 581 | engines: {node: '>=8'} 582 | dependencies: 583 | slice-ansi: 3.0.0 584 | string-width: 4.2.3 585 | dev: true 586 | 587 | /cli-truncate/3.1.0: 588 | resolution: {integrity: sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==} 589 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 590 | dependencies: 591 | slice-ansi: 5.0.0 592 | string-width: 5.1.2 593 | dev: true 594 | 595 | /cliui/6.0.0: 596 | resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==} 597 | dependencies: 598 | string-width: 4.2.3 599 | strip-ansi: 6.0.1 600 | wrap-ansi: 6.2.0 601 | dev: true 602 | 603 | /cliui/8.0.1: 604 | resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} 605 | engines: {node: '>=12'} 606 | dependencies: 607 | string-width: 4.2.3 608 | strip-ansi: 6.0.1 609 | wrap-ansi: 7.0.0 610 | dev: true 611 | 612 | /clone/1.0.4: 613 | resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} 614 | engines: {node: '>=0.8'} 615 | dev: true 616 | 617 | /color-convert/1.9.3: 618 | resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} 619 | dependencies: 620 | color-name: 1.1.3 621 | dev: true 622 | 623 | /color-convert/2.0.1: 624 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 625 | engines: {node: '>=7.0.0'} 626 | dependencies: 627 | color-name: 1.1.4 628 | dev: true 629 | 630 | /color-name/1.1.3: 631 | resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} 632 | dev: true 633 | 634 | /color-name/1.1.4: 635 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 636 | dev: true 637 | 638 | /colorette/2.0.19: 639 | resolution: {integrity: sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==} 640 | dev: true 641 | 642 | /commander/9.5.0: 643 | resolution: {integrity: sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==} 644 | engines: {node: ^12.20.0 || >=14} 645 | dev: true 646 | 647 | /concat-map/0.0.1: 648 | resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=} 649 | dev: true 650 | 651 | /cross-spawn/5.1.0: 652 | resolution: {integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==} 653 | dependencies: 654 | lru-cache: 4.1.5 655 | shebang-command: 1.2.0 656 | which: 1.3.1 657 | dev: true 658 | 659 | /cross-spawn/7.0.3: 660 | resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} 661 | engines: {node: '>= 8'} 662 | dependencies: 663 | path-key: 3.1.1 664 | shebang-command: 2.0.0 665 | which: 2.0.2 666 | dev: true 667 | 668 | /csv-generate/3.4.3: 669 | resolution: {integrity: sha512-w/T+rqR0vwvHqWs/1ZyMDWtHHSJaN06klRqJXBEpDJaM/+dZkso0OKh1VcuuYvK3XM53KysVNq8Ko/epCK8wOw==} 670 | dev: true 671 | 672 | /csv-parse/4.16.3: 673 | resolution: {integrity: sha512-cO1I/zmz4w2dcKHVvpCr7JVRu8/FymG5OEpmvsZYlccYolPBLoVGKUHgNoc4ZGkFeFlWGEDmMyBM+TTqRdW/wg==} 674 | dev: true 675 | 676 | /csv-stringify/5.6.5: 677 | resolution: {integrity: sha512-PjiQ659aQ+fUTQqSrd1XEDnOr52jh30RBurfzkscaE2tPaFsDH5wOAHJiw8XAHphRknCwMUE9KRayc4K/NbO8A==} 678 | dev: true 679 | 680 | /csv/5.5.3: 681 | resolution: {integrity: sha512-QTaY0XjjhTQOdguARF0lGKm5/mEq9PD9/VhZZegHDIBq2tQwgNpHc3dneD4mGo2iJs+fTKv5Bp0fZ+BRuY3Z0g==} 682 | engines: {node: '>= 0.1.90'} 683 | dependencies: 684 | csv-generate: 3.4.3 685 | csv-parse: 4.16.3 686 | csv-stringify: 5.6.5 687 | stream-transform: 2.1.3 688 | dev: true 689 | 690 | /dataloader/1.4.0: 691 | resolution: {integrity: sha512-68s5jYdlvasItOJnCuI2Q9s4q98g0pCyL3HrcKJu8KNugUl8ahgmZYg38ysLTgQjjXX3H8CJLkAvWrclWfcalw==} 692 | dev: true 693 | 694 | /debug/4.3.4: 695 | resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} 696 | engines: {node: '>=6.0'} 697 | peerDependencies: 698 | supports-color: '*' 699 | peerDependenciesMeta: 700 | supports-color: 701 | optional: true 702 | dependencies: 703 | ms: 2.1.2 704 | dev: true 705 | 706 | /decamelize-keys/1.1.1: 707 | resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==} 708 | engines: {node: '>=0.10.0'} 709 | dependencies: 710 | decamelize: 1.2.0 711 | map-obj: 1.0.1 712 | dev: true 713 | 714 | /decamelize/1.2.0: 715 | resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} 716 | engines: {node: '>=0.10.0'} 717 | dev: true 718 | 719 | /deep-is/0.1.4: 720 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} 721 | dev: true 722 | 723 | /defaults/1.0.4: 724 | resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} 725 | dependencies: 726 | clone: 1.0.4 727 | dev: true 728 | 729 | /define-properties/1.2.0: 730 | resolution: {integrity: sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==} 731 | engines: {node: '>= 0.4'} 732 | dependencies: 733 | has-property-descriptors: 1.0.0 734 | object-keys: 1.1.1 735 | dev: true 736 | 737 | /dequal/2.0.3: 738 | resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} 739 | engines: {node: '>=6'} 740 | dev: true 741 | 742 | /detect-indent/6.1.0: 743 | resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==} 744 | engines: {node: '>=8'} 745 | dev: true 746 | 747 | /diff/5.1.0: 748 | resolution: {integrity: sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==} 749 | engines: {node: '>=0.3.1'} 750 | dev: true 751 | 752 | /dir-glob/3.0.1: 753 | resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} 754 | engines: {node: '>=8'} 755 | dependencies: 756 | path-type: 4.0.0 757 | dev: true 758 | 759 | /doctrine/3.0.0: 760 | resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} 761 | engines: {node: '>=6.0.0'} 762 | dependencies: 763 | esutils: 2.0.3 764 | dev: true 765 | 766 | /dotenv/16.0.3: 767 | resolution: {integrity: sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==} 768 | engines: {node: '>=12'} 769 | dev: true 770 | 771 | /eastasianwidth/0.2.0: 772 | resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} 773 | dev: true 774 | 775 | /emoji-regex/8.0.0: 776 | resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} 777 | dev: true 778 | 779 | /emoji-regex/9.2.2: 780 | resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} 781 | dev: true 782 | 783 | /enquirer/2.3.6: 784 | resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==} 785 | engines: {node: '>=8.6'} 786 | dependencies: 787 | ansi-colors: 4.1.3 788 | dev: true 789 | 790 | /error-ex/1.3.2: 791 | resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} 792 | dependencies: 793 | is-arrayish: 0.2.1 794 | dev: true 795 | 796 | /es-abstract/1.21.1: 797 | resolution: {integrity: sha512-QudMsPOz86xYz/1dG1OuGBKOELjCh99IIWHLzy5znUB6j8xG2yMA7bfTV86VSqKF+Y/H08vQPR+9jyXpuC6hfg==} 798 | engines: {node: '>= 0.4'} 799 | dependencies: 800 | available-typed-arrays: 1.0.5 801 | call-bind: 1.0.2 802 | es-set-tostringtag: 2.0.1 803 | es-to-primitive: 1.2.1 804 | function-bind: 1.1.1 805 | function.prototype.name: 1.1.5 806 | get-intrinsic: 1.2.0 807 | get-symbol-description: 1.0.0 808 | globalthis: 1.0.3 809 | gopd: 1.0.1 810 | has: 1.0.3 811 | has-property-descriptors: 1.0.0 812 | has-proto: 1.0.1 813 | has-symbols: 1.0.3 814 | internal-slot: 1.0.5 815 | is-array-buffer: 3.0.1 816 | is-callable: 1.2.7 817 | is-negative-zero: 2.0.2 818 | is-regex: 1.1.4 819 | is-shared-array-buffer: 1.0.2 820 | is-string: 1.0.7 821 | is-typed-array: 1.1.10 822 | is-weakref: 1.0.2 823 | object-inspect: 1.12.3 824 | object-keys: 1.1.1 825 | object.assign: 4.1.4 826 | regexp.prototype.flags: 1.4.3 827 | safe-regex-test: 1.0.0 828 | string.prototype.trimend: 1.0.6 829 | string.prototype.trimstart: 1.0.6 830 | typed-array-length: 1.0.4 831 | unbox-primitive: 1.0.2 832 | which-typed-array: 1.1.9 833 | dev: true 834 | 835 | /es-set-tostringtag/2.0.1: 836 | resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==} 837 | engines: {node: '>= 0.4'} 838 | dependencies: 839 | get-intrinsic: 1.2.0 840 | has: 1.0.3 841 | has-tostringtag: 1.0.0 842 | dev: true 843 | 844 | /es-shim-unscopables/1.0.0: 845 | resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==} 846 | dependencies: 847 | has: 1.0.3 848 | dev: true 849 | 850 | /es-to-primitive/1.2.1: 851 | resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} 852 | engines: {node: '>= 0.4'} 853 | dependencies: 854 | is-callable: 1.2.7 855 | is-date-object: 1.0.5 856 | is-symbol: 1.0.4 857 | dev: true 858 | 859 | /escalade/3.1.1: 860 | resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} 861 | engines: {node: '>=6'} 862 | dev: true 863 | 864 | /escape-string-regexp/1.0.5: 865 | resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} 866 | engines: {node: '>=0.8.0'} 867 | dev: true 868 | 869 | /escape-string-regexp/4.0.0: 870 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} 871 | engines: {node: '>=10'} 872 | dev: true 873 | 874 | /eslint-plugin-es/4.1.0_eslint@8.34.0: 875 | resolution: {integrity: sha512-GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ==} 876 | engines: {node: '>=8.10.0'} 877 | peerDependencies: 878 | eslint: '>=4.19.1' 879 | dependencies: 880 | eslint: 8.34.0 881 | eslint-utils: 2.1.0 882 | regexpp: 3.2.0 883 | dev: true 884 | 885 | /eslint-plugin-n/15.6.1_eslint@8.34.0: 886 | resolution: {integrity: sha512-R9xw9OtCRxxaxaszTQmQAlPgM+RdGjaL1akWuY/Fv9fRAi8Wj4CUKc6iYVG8QNRjRuo8/BqVYIpfqberJUEacA==} 887 | engines: {node: '>=12.22.0'} 888 | peerDependencies: 889 | eslint: '>=7.0.0' 890 | dependencies: 891 | builtins: 5.0.1 892 | eslint: 8.34.0 893 | eslint-plugin-es: 4.1.0_eslint@8.34.0 894 | eslint-utils: 3.0.0_eslint@8.34.0 895 | ignore: 5.2.4 896 | is-core-module: 2.11.0 897 | minimatch: 3.1.2 898 | resolve: 1.22.1 899 | semver: 7.3.8 900 | dev: true 901 | 902 | /eslint-scope/7.1.1: 903 | resolution: {integrity: sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==} 904 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 905 | dependencies: 906 | esrecurse: 4.3.0 907 | estraverse: 5.3.0 908 | dev: true 909 | 910 | /eslint-utils/2.1.0: 911 | resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==} 912 | engines: {node: '>=6'} 913 | dependencies: 914 | eslint-visitor-keys: 1.3.0 915 | dev: true 916 | 917 | /eslint-utils/3.0.0_eslint@8.34.0: 918 | resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} 919 | engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} 920 | peerDependencies: 921 | eslint: '>=5' 922 | dependencies: 923 | eslint: 8.34.0 924 | eslint-visitor-keys: 2.1.0 925 | dev: true 926 | 927 | /eslint-visitor-keys/1.3.0: 928 | resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==} 929 | engines: {node: '>=4'} 930 | dev: true 931 | 932 | /eslint-visitor-keys/2.1.0: 933 | resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} 934 | engines: {node: '>=10'} 935 | dev: true 936 | 937 | /eslint-visitor-keys/3.3.0: 938 | resolution: {integrity: sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==} 939 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 940 | dev: true 941 | 942 | /eslint/8.34.0: 943 | resolution: {integrity: sha512-1Z8iFsucw+7kSqXNZVslXS8Ioa4u2KM7GPwuKtkTFAqZ/cHMcEaR+1+Br0wLlot49cNxIiZk5wp8EAbPcYZxTg==} 944 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 945 | hasBin: true 946 | dependencies: 947 | '@eslint/eslintrc': 1.4.1 948 | '@humanwhocodes/config-array': 0.11.8 949 | '@humanwhocodes/module-importer': 1.0.1 950 | '@nodelib/fs.walk': 1.2.8 951 | ajv: 6.12.6 952 | chalk: 4.1.2 953 | cross-spawn: 7.0.3 954 | debug: 4.3.4 955 | doctrine: 3.0.0 956 | escape-string-regexp: 4.0.0 957 | eslint-scope: 7.1.1 958 | eslint-utils: 3.0.0_eslint@8.34.0 959 | eslint-visitor-keys: 3.3.0 960 | espree: 9.4.1 961 | esquery: 1.4.2 962 | esutils: 2.0.3 963 | fast-deep-equal: 3.1.3 964 | file-entry-cache: 6.0.1 965 | find-up: 5.0.0 966 | glob-parent: 6.0.2 967 | globals: 13.20.0 968 | grapheme-splitter: 1.0.4 969 | ignore: 5.2.4 970 | import-fresh: 3.3.0 971 | imurmurhash: 0.1.4 972 | is-glob: 4.0.3 973 | is-path-inside: 3.0.3 974 | js-sdsl: 4.3.0 975 | js-yaml: 4.1.0 976 | json-stable-stringify-without-jsonify: 1.0.1 977 | levn: 0.4.1 978 | lodash.merge: 4.6.2 979 | minimatch: 3.1.2 980 | natural-compare: 1.4.0 981 | optionator: 0.9.1 982 | regexpp: 3.2.0 983 | strip-ansi: 6.0.1 984 | strip-json-comments: 3.1.1 985 | text-table: 0.2.0 986 | transitivePeerDependencies: 987 | - supports-color 988 | dev: true 989 | 990 | /espree/9.4.1: 991 | resolution: {integrity: sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==} 992 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 993 | dependencies: 994 | acorn: 8.8.2 995 | acorn-jsx: 5.3.2_acorn@8.8.2 996 | eslint-visitor-keys: 3.3.0 997 | dev: true 998 | 999 | /esprima/4.0.1: 1000 | resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} 1001 | engines: {node: '>=4'} 1002 | hasBin: true 1003 | dev: true 1004 | 1005 | /esquery/1.4.2: 1006 | resolution: {integrity: sha512-JVSoLdTlTDkmjFmab7H/9SL9qGSyjElT3myyKp7krqjVFQCDLmj1QFaCLRFBszBKI0XVZaiiXvuPIX3ZwHe1Ng==} 1007 | engines: {node: '>=0.10'} 1008 | dependencies: 1009 | estraverse: 5.3.0 1010 | dev: true 1011 | 1012 | /esrecurse/4.3.0: 1013 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} 1014 | engines: {node: '>=4.0'} 1015 | dependencies: 1016 | estraverse: 5.3.0 1017 | dev: true 1018 | 1019 | /estraverse/5.3.0: 1020 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} 1021 | engines: {node: '>=4.0'} 1022 | dev: true 1023 | 1024 | /esutils/2.0.3: 1025 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} 1026 | engines: {node: '>=0.10.0'} 1027 | dev: true 1028 | 1029 | /execa/6.1.0: 1030 | resolution: {integrity: sha512-QVWlX2e50heYJcCPG0iWtf8r0xjEYfz/OYLGDYH+IyjWezzPNxz63qNFOu0l4YftGWuizFVZHHs8PrLU5p2IDA==} 1031 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 1032 | dependencies: 1033 | cross-spawn: 7.0.3 1034 | get-stream: 6.0.1 1035 | human-signals: 3.0.1 1036 | is-stream: 3.0.0 1037 | merge-stream: 2.0.0 1038 | npm-run-path: 5.1.0 1039 | onetime: 6.0.0 1040 | signal-exit: 3.0.7 1041 | strip-final-newline: 3.0.0 1042 | dev: true 1043 | 1044 | /extendable-error/0.1.7: 1045 | resolution: {integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==} 1046 | dev: true 1047 | 1048 | /external-editor/3.1.0: 1049 | resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} 1050 | engines: {node: '>=4'} 1051 | dependencies: 1052 | chardet: 0.7.0 1053 | iconv-lite: 0.4.24 1054 | tmp: 0.0.33 1055 | dev: true 1056 | 1057 | /fast-deep-equal/3.1.3: 1058 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 1059 | dev: true 1060 | 1061 | /fast-glob/3.2.12: 1062 | resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==} 1063 | engines: {node: '>=8.6.0'} 1064 | dependencies: 1065 | '@nodelib/fs.stat': 2.0.5 1066 | '@nodelib/fs.walk': 1.2.8 1067 | glob-parent: 5.1.2 1068 | merge2: 1.4.1 1069 | micromatch: 4.0.5 1070 | dev: true 1071 | 1072 | /fast-json-stable-stringify/2.1.0: 1073 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} 1074 | dev: true 1075 | 1076 | /fast-levenshtein/2.0.6: 1077 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} 1078 | dev: true 1079 | 1080 | /fastq/1.15.0: 1081 | resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==} 1082 | dependencies: 1083 | reusify: 1.0.4 1084 | dev: true 1085 | 1086 | /file-entry-cache/6.0.1: 1087 | resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} 1088 | engines: {node: ^10.12.0 || >=12.0.0} 1089 | dependencies: 1090 | flat-cache: 3.0.4 1091 | dev: true 1092 | 1093 | /fill-range/7.0.1: 1094 | resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} 1095 | engines: {node: '>=8'} 1096 | dependencies: 1097 | to-regex-range: 5.0.1 1098 | dev: true 1099 | 1100 | /find-up/4.1.0: 1101 | resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} 1102 | engines: {node: '>=8'} 1103 | dependencies: 1104 | locate-path: 5.0.0 1105 | path-exists: 4.0.0 1106 | dev: true 1107 | 1108 | /find-up/5.0.0: 1109 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} 1110 | engines: {node: '>=10'} 1111 | dependencies: 1112 | locate-path: 6.0.0 1113 | path-exists: 4.0.0 1114 | dev: true 1115 | 1116 | /find-yarn-workspace-root2/1.2.16: 1117 | resolution: {integrity: sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==} 1118 | dependencies: 1119 | micromatch: 4.0.5 1120 | pkg-dir: 4.2.0 1121 | dev: true 1122 | 1123 | /flat-cache/3.0.4: 1124 | resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==} 1125 | engines: {node: ^10.12.0 || >=12.0.0} 1126 | dependencies: 1127 | flatted: 3.2.7 1128 | rimraf: 3.0.2 1129 | dev: true 1130 | 1131 | /flatted/3.2.7: 1132 | resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==} 1133 | dev: true 1134 | 1135 | /for-each/0.3.3: 1136 | resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} 1137 | dependencies: 1138 | is-callable: 1.2.7 1139 | dev: true 1140 | 1141 | /fs-extra/7.0.1: 1142 | resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==} 1143 | engines: {node: '>=6 <7 || >=8'} 1144 | dependencies: 1145 | graceful-fs: 4.2.10 1146 | jsonfile: 4.0.0 1147 | universalify: 0.1.2 1148 | dev: true 1149 | 1150 | /fs-extra/8.1.0: 1151 | resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==} 1152 | engines: {node: '>=6 <7 || >=8'} 1153 | dependencies: 1154 | graceful-fs: 4.2.10 1155 | jsonfile: 4.0.0 1156 | universalify: 0.1.2 1157 | dev: true 1158 | 1159 | /fs.realpath/1.0.0: 1160 | resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} 1161 | dev: true 1162 | 1163 | /function-bind/1.1.1: 1164 | resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} 1165 | dev: true 1166 | 1167 | /function.prototype.name/1.1.5: 1168 | resolution: {integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==} 1169 | engines: {node: '>= 0.4'} 1170 | dependencies: 1171 | call-bind: 1.0.2 1172 | define-properties: 1.2.0 1173 | es-abstract: 1.21.1 1174 | functions-have-names: 1.2.3 1175 | dev: true 1176 | 1177 | /functions-have-names/1.2.3: 1178 | resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} 1179 | dev: true 1180 | 1181 | /get-caller-file/2.0.5: 1182 | resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} 1183 | engines: {node: 6.* || 8.* || >= 10.*} 1184 | dev: true 1185 | 1186 | /get-intrinsic/1.2.0: 1187 | resolution: {integrity: sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==} 1188 | dependencies: 1189 | function-bind: 1.1.1 1190 | has: 1.0.3 1191 | has-symbols: 1.0.3 1192 | dev: true 1193 | 1194 | /get-stream/6.0.1: 1195 | resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} 1196 | engines: {node: '>=10'} 1197 | dev: true 1198 | 1199 | /get-symbol-description/1.0.0: 1200 | resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} 1201 | engines: {node: '>= 0.4'} 1202 | dependencies: 1203 | call-bind: 1.0.2 1204 | get-intrinsic: 1.2.0 1205 | dev: true 1206 | 1207 | /glob-parent/5.1.2: 1208 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 1209 | engines: {node: '>= 6'} 1210 | dependencies: 1211 | is-glob: 4.0.3 1212 | dev: true 1213 | 1214 | /glob-parent/6.0.2: 1215 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} 1216 | engines: {node: '>=10.13.0'} 1217 | dependencies: 1218 | is-glob: 4.0.3 1219 | dev: true 1220 | 1221 | /glob/7.2.3: 1222 | resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} 1223 | dependencies: 1224 | fs.realpath: 1.0.0 1225 | inflight: 1.0.6 1226 | inherits: 2.0.4 1227 | minimatch: 3.1.2 1228 | once: 1.4.0 1229 | path-is-absolute: 1.0.1 1230 | dev: true 1231 | 1232 | /globals/13.20.0: 1233 | resolution: {integrity: sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==} 1234 | engines: {node: '>=8'} 1235 | dependencies: 1236 | type-fest: 0.20.2 1237 | dev: true 1238 | 1239 | /globalthis/1.0.3: 1240 | resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} 1241 | engines: {node: '>= 0.4'} 1242 | dependencies: 1243 | define-properties: 1.2.0 1244 | dev: true 1245 | 1246 | /globby/11.1.0: 1247 | resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} 1248 | engines: {node: '>=10'} 1249 | dependencies: 1250 | array-union: 2.1.0 1251 | dir-glob: 3.0.1 1252 | fast-glob: 3.2.12 1253 | ignore: 5.2.4 1254 | merge2: 1.4.1 1255 | slash: 3.0.0 1256 | dev: true 1257 | 1258 | /gopd/1.0.1: 1259 | resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} 1260 | dependencies: 1261 | get-intrinsic: 1.2.0 1262 | dev: true 1263 | 1264 | /graceful-fs/4.2.10: 1265 | resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==} 1266 | dev: true 1267 | 1268 | /grapheme-splitter/1.0.4: 1269 | resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==} 1270 | dev: true 1271 | 1272 | /hard-rejection/2.1.0: 1273 | resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==} 1274 | engines: {node: '>=6'} 1275 | dev: true 1276 | 1277 | /has-bigints/1.0.2: 1278 | resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} 1279 | dev: true 1280 | 1281 | /has-flag/3.0.0: 1282 | resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} 1283 | engines: {node: '>=4'} 1284 | dev: true 1285 | 1286 | /has-flag/4.0.0: 1287 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 1288 | engines: {node: '>=8'} 1289 | dev: true 1290 | 1291 | /has-property-descriptors/1.0.0: 1292 | resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==} 1293 | dependencies: 1294 | get-intrinsic: 1.2.0 1295 | dev: true 1296 | 1297 | /has-proto/1.0.1: 1298 | resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==} 1299 | engines: {node: '>= 0.4'} 1300 | dev: true 1301 | 1302 | /has-symbols/1.0.3: 1303 | resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} 1304 | engines: {node: '>= 0.4'} 1305 | dev: true 1306 | 1307 | /has-tostringtag/1.0.0: 1308 | resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==} 1309 | engines: {node: '>= 0.4'} 1310 | dependencies: 1311 | has-symbols: 1.0.3 1312 | dev: true 1313 | 1314 | /has/1.0.3: 1315 | resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==} 1316 | engines: {node: '>= 0.4.0'} 1317 | dependencies: 1318 | function-bind: 1.1.1 1319 | dev: true 1320 | 1321 | /hosted-git-info/2.8.9: 1322 | resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} 1323 | dev: true 1324 | 1325 | /human-id/1.0.2: 1326 | resolution: {integrity: sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw==} 1327 | dev: true 1328 | 1329 | /human-signals/3.0.1: 1330 | resolution: {integrity: sha512-rQLskxnM/5OCldHo+wNXbpVgDn5A17CUoKX+7Sokwaknlq7CdSnphy0W39GU8dw59XiCXmFXDg4fRuckQRKewQ==} 1331 | engines: {node: '>=12.20.0'} 1332 | dev: true 1333 | 1334 | /husky/8.0.3: 1335 | resolution: {integrity: sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==} 1336 | engines: {node: '>=14'} 1337 | hasBin: true 1338 | dev: true 1339 | 1340 | /iconv-lite/0.4.24: 1341 | resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} 1342 | engines: {node: '>=0.10.0'} 1343 | dependencies: 1344 | safer-buffer: 2.1.2 1345 | dev: true 1346 | 1347 | /ignore/5.2.4: 1348 | resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==} 1349 | engines: {node: '>= 4'} 1350 | dev: true 1351 | 1352 | /import-fresh/3.3.0: 1353 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} 1354 | engines: {node: '>=6'} 1355 | dependencies: 1356 | parent-module: 1.0.1 1357 | resolve-from: 4.0.0 1358 | dev: true 1359 | 1360 | /imurmurhash/0.1.4: 1361 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} 1362 | engines: {node: '>=0.8.19'} 1363 | dev: true 1364 | 1365 | /indent-string/4.0.0: 1366 | resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} 1367 | engines: {node: '>=8'} 1368 | dev: true 1369 | 1370 | /inflight/1.0.6: 1371 | resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} 1372 | dependencies: 1373 | once: 1.4.0 1374 | wrappy: 1.0.2 1375 | dev: true 1376 | 1377 | /inherits/2.0.4: 1378 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} 1379 | dev: true 1380 | 1381 | /internal-slot/1.0.5: 1382 | resolution: {integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==} 1383 | engines: {node: '>= 0.4'} 1384 | dependencies: 1385 | get-intrinsic: 1.2.0 1386 | has: 1.0.3 1387 | side-channel: 1.0.4 1388 | dev: true 1389 | 1390 | /is-array-buffer/3.0.1: 1391 | resolution: {integrity: sha512-ASfLknmY8Xa2XtB4wmbz13Wu202baeA18cJBCeCy0wXUHZF0IPyVEXqKEcd+t2fNSLLL1vC6k7lxZEojNbISXQ==} 1392 | dependencies: 1393 | call-bind: 1.0.2 1394 | get-intrinsic: 1.2.0 1395 | is-typed-array: 1.1.10 1396 | dev: true 1397 | 1398 | /is-arrayish/0.2.1: 1399 | resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} 1400 | dev: true 1401 | 1402 | /is-bigint/1.0.4: 1403 | resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} 1404 | dependencies: 1405 | has-bigints: 1.0.2 1406 | dev: true 1407 | 1408 | /is-boolean-object/1.1.2: 1409 | resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} 1410 | engines: {node: '>= 0.4'} 1411 | dependencies: 1412 | call-bind: 1.0.2 1413 | has-tostringtag: 1.0.0 1414 | dev: true 1415 | 1416 | /is-callable/1.2.7: 1417 | resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} 1418 | engines: {node: '>= 0.4'} 1419 | dev: true 1420 | 1421 | /is-ci/3.0.1: 1422 | resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==} 1423 | hasBin: true 1424 | dependencies: 1425 | ci-info: 3.8.0 1426 | dev: true 1427 | 1428 | /is-core-module/2.11.0: 1429 | resolution: {integrity: sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==} 1430 | dependencies: 1431 | has: 1.0.3 1432 | dev: true 1433 | 1434 | /is-date-object/1.0.5: 1435 | resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} 1436 | engines: {node: '>= 0.4'} 1437 | dependencies: 1438 | has-tostringtag: 1.0.0 1439 | dev: true 1440 | 1441 | /is-extglob/2.1.1: 1442 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 1443 | engines: {node: '>=0.10.0'} 1444 | dev: true 1445 | 1446 | /is-fullwidth-code-point/3.0.0: 1447 | resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} 1448 | engines: {node: '>=8'} 1449 | dev: true 1450 | 1451 | /is-fullwidth-code-point/4.0.0: 1452 | resolution: {integrity: sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==} 1453 | engines: {node: '>=12'} 1454 | dev: true 1455 | 1456 | /is-glob/4.0.3: 1457 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 1458 | engines: {node: '>=0.10.0'} 1459 | dependencies: 1460 | is-extglob: 2.1.1 1461 | dev: true 1462 | 1463 | /is-negative-zero/2.0.2: 1464 | resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==} 1465 | engines: {node: '>= 0.4'} 1466 | dev: true 1467 | 1468 | /is-number-object/1.0.7: 1469 | resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} 1470 | engines: {node: '>= 0.4'} 1471 | dependencies: 1472 | has-tostringtag: 1.0.0 1473 | dev: true 1474 | 1475 | /is-number/7.0.0: 1476 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 1477 | engines: {node: '>=0.12.0'} 1478 | dev: true 1479 | 1480 | /is-path-inside/3.0.3: 1481 | resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} 1482 | engines: {node: '>=8'} 1483 | dev: true 1484 | 1485 | /is-plain-obj/1.1.0: 1486 | resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==} 1487 | engines: {node: '>=0.10.0'} 1488 | dev: true 1489 | 1490 | /is-regex/1.1.4: 1491 | resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} 1492 | engines: {node: '>= 0.4'} 1493 | dependencies: 1494 | call-bind: 1.0.2 1495 | has-tostringtag: 1.0.0 1496 | dev: true 1497 | 1498 | /is-shared-array-buffer/1.0.2: 1499 | resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==} 1500 | dependencies: 1501 | call-bind: 1.0.2 1502 | dev: true 1503 | 1504 | /is-stream/3.0.0: 1505 | resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} 1506 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 1507 | dev: true 1508 | 1509 | /is-string/1.0.7: 1510 | resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} 1511 | engines: {node: '>= 0.4'} 1512 | dependencies: 1513 | has-tostringtag: 1.0.0 1514 | dev: true 1515 | 1516 | /is-subdir/1.2.0: 1517 | resolution: {integrity: sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==} 1518 | engines: {node: '>=4'} 1519 | dependencies: 1520 | better-path-resolve: 1.0.0 1521 | dev: true 1522 | 1523 | /is-symbol/1.0.4: 1524 | resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} 1525 | engines: {node: '>= 0.4'} 1526 | dependencies: 1527 | has-symbols: 1.0.3 1528 | dev: true 1529 | 1530 | /is-typed-array/1.1.10: 1531 | resolution: {integrity: sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==} 1532 | engines: {node: '>= 0.4'} 1533 | dependencies: 1534 | available-typed-arrays: 1.0.5 1535 | call-bind: 1.0.2 1536 | for-each: 0.3.3 1537 | gopd: 1.0.1 1538 | has-tostringtag: 1.0.0 1539 | dev: true 1540 | 1541 | /is-weakref/1.0.2: 1542 | resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} 1543 | dependencies: 1544 | call-bind: 1.0.2 1545 | dev: true 1546 | 1547 | /is-windows/1.0.2: 1548 | resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==} 1549 | engines: {node: '>=0.10.0'} 1550 | dev: true 1551 | 1552 | /isexe/2.0.0: 1553 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 1554 | dev: true 1555 | 1556 | /js-sdsl/4.3.0: 1557 | resolution: {integrity: sha512-mifzlm2+5nZ+lEcLJMoBK0/IH/bDg8XnJfd/Wq6IP+xoCjLZsTOnV2QpxlVbX9bMnkl5PdEjNtBJ9Cj1NjifhQ==} 1558 | dev: true 1559 | 1560 | /js-tokens/4.0.0: 1561 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} 1562 | dev: true 1563 | 1564 | /js-yaml/3.14.1: 1565 | resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} 1566 | hasBin: true 1567 | dependencies: 1568 | argparse: 1.0.10 1569 | esprima: 4.0.1 1570 | dev: true 1571 | 1572 | /js-yaml/4.1.0: 1573 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 1574 | hasBin: true 1575 | dependencies: 1576 | argparse: 2.0.1 1577 | dev: true 1578 | 1579 | /json-parse-even-better-errors/2.3.1: 1580 | resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} 1581 | dev: true 1582 | 1583 | /json-schema-traverse/0.4.1: 1584 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} 1585 | dev: true 1586 | 1587 | /json-stable-stringify-without-jsonify/1.0.1: 1588 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} 1589 | dev: true 1590 | 1591 | /jsonfile/4.0.0: 1592 | resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} 1593 | optionalDependencies: 1594 | graceful-fs: 4.2.10 1595 | dev: true 1596 | 1597 | /kind-of/6.0.3: 1598 | resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} 1599 | engines: {node: '>=0.10.0'} 1600 | dev: true 1601 | 1602 | /kleur/4.1.5: 1603 | resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} 1604 | engines: {node: '>=6'} 1605 | dev: true 1606 | 1607 | /levn/0.4.1: 1608 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} 1609 | engines: {node: '>= 0.8.0'} 1610 | dependencies: 1611 | prelude-ls: 1.2.1 1612 | type-check: 0.4.0 1613 | dev: true 1614 | 1615 | /lilconfig/2.0.6: 1616 | resolution: {integrity: sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==} 1617 | engines: {node: '>=10'} 1618 | dev: true 1619 | 1620 | /lines-and-columns/1.2.4: 1621 | resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} 1622 | dev: true 1623 | 1624 | /lint-staged/13.1.2: 1625 | resolution: {integrity: sha512-K9b4FPbWkpnupvK3WXZLbgu9pchUJ6N7TtVZjbaPsoizkqFUDkUReUL25xdrCljJs7uLUF3tZ7nVPeo/6lp+6w==} 1626 | engines: {node: ^14.13.1 || >=16.0.0} 1627 | hasBin: true 1628 | dependencies: 1629 | cli-truncate: 3.1.0 1630 | colorette: 2.0.19 1631 | commander: 9.5.0 1632 | debug: 4.3.4 1633 | execa: 6.1.0 1634 | lilconfig: 2.0.6 1635 | listr2: 5.0.7 1636 | micromatch: 4.0.5 1637 | normalize-path: 3.0.0 1638 | object-inspect: 1.12.3 1639 | pidtree: 0.6.0 1640 | string-argv: 0.3.1 1641 | yaml: 2.2.1 1642 | transitivePeerDependencies: 1643 | - enquirer 1644 | - supports-color 1645 | dev: true 1646 | 1647 | /listr2/5.0.7: 1648 | resolution: {integrity: sha512-MD+qXHPmtivrHIDRwPYdfNkrzqDiuaKU/rfBcec3WMyMF3xylQj3jMq344OtvQxz7zaCFViRAeqlr2AFhPvXHw==} 1649 | engines: {node: ^14.13.1 || >=16.0.0} 1650 | peerDependencies: 1651 | enquirer: '>= 2.3.0 < 3' 1652 | peerDependenciesMeta: 1653 | enquirer: 1654 | optional: true 1655 | dependencies: 1656 | cli-truncate: 2.1.0 1657 | colorette: 2.0.19 1658 | log-update: 4.0.0 1659 | p-map: 4.0.0 1660 | rfdc: 1.3.0 1661 | rxjs: 7.8.0 1662 | through: 2.3.8 1663 | wrap-ansi: 7.0.0 1664 | dev: true 1665 | 1666 | /load-yaml-file/0.2.0: 1667 | resolution: {integrity: sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==} 1668 | engines: {node: '>=6'} 1669 | dependencies: 1670 | graceful-fs: 4.2.10 1671 | js-yaml: 3.14.1 1672 | pify: 4.0.1 1673 | strip-bom: 3.0.0 1674 | dev: true 1675 | 1676 | /locate-path/5.0.0: 1677 | resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} 1678 | engines: {node: '>=8'} 1679 | dependencies: 1680 | p-locate: 4.1.0 1681 | dev: true 1682 | 1683 | /locate-path/6.0.0: 1684 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} 1685 | engines: {node: '>=10'} 1686 | dependencies: 1687 | p-locate: 5.0.0 1688 | dev: true 1689 | 1690 | /lodash.merge/4.6.2: 1691 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} 1692 | dev: true 1693 | 1694 | /lodash.startcase/4.4.0: 1695 | resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==} 1696 | dev: true 1697 | 1698 | /log-update/4.0.0: 1699 | resolution: {integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==} 1700 | engines: {node: '>=10'} 1701 | dependencies: 1702 | ansi-escapes: 4.3.2 1703 | cli-cursor: 3.1.0 1704 | slice-ansi: 4.0.0 1705 | wrap-ansi: 6.2.0 1706 | dev: true 1707 | 1708 | /lru-cache/4.1.5: 1709 | resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==} 1710 | dependencies: 1711 | pseudomap: 1.0.2 1712 | yallist: 2.1.2 1713 | dev: true 1714 | 1715 | /lru-cache/6.0.0: 1716 | resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} 1717 | engines: {node: '>=10'} 1718 | dependencies: 1719 | yallist: 4.0.0 1720 | dev: true 1721 | 1722 | /map-obj/1.0.1: 1723 | resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==} 1724 | engines: {node: '>=0.10.0'} 1725 | dev: true 1726 | 1727 | /map-obj/4.3.0: 1728 | resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==} 1729 | engines: {node: '>=8'} 1730 | dev: true 1731 | 1732 | /meow/6.1.1: 1733 | resolution: {integrity: sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==} 1734 | engines: {node: '>=8'} 1735 | dependencies: 1736 | '@types/minimist': 1.2.2 1737 | camelcase-keys: 6.2.2 1738 | decamelize-keys: 1.1.1 1739 | hard-rejection: 2.1.0 1740 | minimist-options: 4.1.0 1741 | normalize-package-data: 2.5.0 1742 | read-pkg-up: 7.0.1 1743 | redent: 3.0.0 1744 | trim-newlines: 3.0.1 1745 | type-fest: 0.13.1 1746 | yargs-parser: 18.1.3 1747 | dev: true 1748 | 1749 | /merge-stream/2.0.0: 1750 | resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} 1751 | dev: true 1752 | 1753 | /merge2/1.4.1: 1754 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 1755 | engines: {node: '>= 8'} 1756 | dev: true 1757 | 1758 | /micromatch/4.0.5: 1759 | resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} 1760 | engines: {node: '>=8.6'} 1761 | dependencies: 1762 | braces: 3.0.2 1763 | picomatch: 2.3.1 1764 | dev: true 1765 | 1766 | /mimic-fn/2.1.0: 1767 | resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} 1768 | engines: {node: '>=6'} 1769 | dev: true 1770 | 1771 | /mimic-fn/4.0.0: 1772 | resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} 1773 | engines: {node: '>=12'} 1774 | dev: true 1775 | 1776 | /min-indent/1.0.1: 1777 | resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} 1778 | engines: {node: '>=4'} 1779 | dev: true 1780 | 1781 | /minimatch/3.1.2: 1782 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} 1783 | dependencies: 1784 | brace-expansion: 1.1.11 1785 | dev: true 1786 | 1787 | /minimist-options/4.1.0: 1788 | resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==} 1789 | engines: {node: '>= 6'} 1790 | dependencies: 1791 | arrify: 1.0.1 1792 | is-plain-obj: 1.1.0 1793 | kind-of: 6.0.3 1794 | dev: true 1795 | 1796 | /mixme/0.5.5: 1797 | resolution: {integrity: sha512-/6IupbRx32s7jjEwHcycXikJwFD5UujbVNuJFkeKLYje+92OvtuPniF6JhnFm5JCTDUhS+kYK3W/4BWYQYXz7w==} 1798 | engines: {node: '>= 8.0.0'} 1799 | dev: true 1800 | 1801 | /mri/1.2.0: 1802 | resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} 1803 | engines: {node: '>=4'} 1804 | dev: true 1805 | 1806 | /ms/2.1.2: 1807 | resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} 1808 | dev: true 1809 | 1810 | /natural-compare/1.4.0: 1811 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} 1812 | dev: true 1813 | 1814 | /node-fetch/2.6.9: 1815 | resolution: {integrity: sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==} 1816 | engines: {node: 4.x || >=6.0.0} 1817 | peerDependencies: 1818 | encoding: ^0.1.0 1819 | peerDependenciesMeta: 1820 | encoding: 1821 | optional: true 1822 | dependencies: 1823 | whatwg-url: 5.0.0 1824 | dev: true 1825 | 1826 | /normalize-package-data/2.5.0: 1827 | resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} 1828 | dependencies: 1829 | hosted-git-info: 2.8.9 1830 | resolve: 1.22.1 1831 | semver: 5.7.1 1832 | validate-npm-package-license: 3.0.4 1833 | dev: true 1834 | 1835 | /normalize-path/3.0.0: 1836 | resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} 1837 | engines: {node: '>=0.10.0'} 1838 | dev: true 1839 | 1840 | /npm-run-path/5.1.0: 1841 | resolution: {integrity: sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==} 1842 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 1843 | dependencies: 1844 | path-key: 4.0.0 1845 | dev: true 1846 | 1847 | /object-inspect/1.12.3: 1848 | resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==} 1849 | dev: true 1850 | 1851 | /object-keys/1.1.1: 1852 | resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} 1853 | engines: {node: '>= 0.4'} 1854 | dev: true 1855 | 1856 | /object.assign/4.1.4: 1857 | resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==} 1858 | engines: {node: '>= 0.4'} 1859 | dependencies: 1860 | call-bind: 1.0.2 1861 | define-properties: 1.2.0 1862 | has-symbols: 1.0.3 1863 | object-keys: 1.1.1 1864 | dev: true 1865 | 1866 | /once/1.4.0: 1867 | resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} 1868 | dependencies: 1869 | wrappy: 1.0.2 1870 | dev: true 1871 | 1872 | /onetime/5.1.2: 1873 | resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} 1874 | engines: {node: '>=6'} 1875 | dependencies: 1876 | mimic-fn: 2.1.0 1877 | dev: true 1878 | 1879 | /onetime/6.0.0: 1880 | resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} 1881 | engines: {node: '>=12'} 1882 | dependencies: 1883 | mimic-fn: 4.0.0 1884 | dev: true 1885 | 1886 | /optionator/0.9.1: 1887 | resolution: {integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==} 1888 | engines: {node: '>= 0.8.0'} 1889 | dependencies: 1890 | deep-is: 0.1.4 1891 | fast-levenshtein: 2.0.6 1892 | levn: 0.4.1 1893 | prelude-ls: 1.2.1 1894 | type-check: 0.4.0 1895 | word-wrap: 1.2.3 1896 | dev: true 1897 | 1898 | /os-tmpdir/1.0.2: 1899 | resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} 1900 | engines: {node: '>=0.10.0'} 1901 | dev: true 1902 | 1903 | /outdent/0.5.0: 1904 | resolution: {integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==} 1905 | dev: true 1906 | 1907 | /p-filter/2.1.0: 1908 | resolution: {integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==} 1909 | engines: {node: '>=8'} 1910 | dependencies: 1911 | p-map: 2.1.0 1912 | dev: true 1913 | 1914 | /p-limit/2.3.0: 1915 | resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} 1916 | engines: {node: '>=6'} 1917 | dependencies: 1918 | p-try: 2.2.0 1919 | dev: true 1920 | 1921 | /p-limit/3.1.0: 1922 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} 1923 | engines: {node: '>=10'} 1924 | dependencies: 1925 | yocto-queue: 0.1.0 1926 | dev: true 1927 | 1928 | /p-locate/4.1.0: 1929 | resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} 1930 | engines: {node: '>=8'} 1931 | dependencies: 1932 | p-limit: 2.3.0 1933 | dev: true 1934 | 1935 | /p-locate/5.0.0: 1936 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} 1937 | engines: {node: '>=10'} 1938 | dependencies: 1939 | p-limit: 3.1.0 1940 | dev: true 1941 | 1942 | /p-map/2.1.0: 1943 | resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==} 1944 | engines: {node: '>=6'} 1945 | dev: true 1946 | 1947 | /p-map/4.0.0: 1948 | resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==} 1949 | engines: {node: '>=10'} 1950 | dependencies: 1951 | aggregate-error: 3.1.0 1952 | dev: true 1953 | 1954 | /p-try/2.2.0: 1955 | resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} 1956 | engines: {node: '>=6'} 1957 | dev: true 1958 | 1959 | /parent-module/1.0.1: 1960 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} 1961 | engines: {node: '>=6'} 1962 | dependencies: 1963 | callsites: 3.1.0 1964 | dev: true 1965 | 1966 | /parse-json/5.2.0: 1967 | resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} 1968 | engines: {node: '>=8'} 1969 | dependencies: 1970 | '@babel/code-frame': 7.18.6 1971 | error-ex: 1.3.2 1972 | json-parse-even-better-errors: 2.3.1 1973 | lines-and-columns: 1.2.4 1974 | dev: true 1975 | 1976 | /path-exists/4.0.0: 1977 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} 1978 | engines: {node: '>=8'} 1979 | dev: true 1980 | 1981 | /path-is-absolute/1.0.1: 1982 | resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} 1983 | engines: {node: '>=0.10.0'} 1984 | dev: true 1985 | 1986 | /path-key/3.1.1: 1987 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 1988 | engines: {node: '>=8'} 1989 | dev: true 1990 | 1991 | /path-key/4.0.0: 1992 | resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==} 1993 | engines: {node: '>=12'} 1994 | dev: true 1995 | 1996 | /path-parse/1.0.7: 1997 | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} 1998 | dev: true 1999 | 2000 | /path-type/4.0.0: 2001 | resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} 2002 | engines: {node: '>=8'} 2003 | dev: true 2004 | 2005 | /picomatch/2.3.1: 2006 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 2007 | engines: {node: '>=8.6'} 2008 | dev: true 2009 | 2010 | /pidtree/0.6.0: 2011 | resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==} 2012 | engines: {node: '>=0.10'} 2013 | hasBin: true 2014 | dev: true 2015 | 2016 | /pify/4.0.1: 2017 | resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} 2018 | engines: {node: '>=6'} 2019 | dev: true 2020 | 2021 | /pkg-dir/4.2.0: 2022 | resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} 2023 | engines: {node: '>=8'} 2024 | dependencies: 2025 | find-up: 4.1.0 2026 | dev: true 2027 | 2028 | /preferred-pm/3.0.3: 2029 | resolution: {integrity: sha512-+wZgbxNES/KlJs9q40F/1sfOd/j7f1O9JaHcW5Dsn3aUUOZg3L2bjpVUcKV2jvtElYfoTuQiNeMfQJ4kwUAhCQ==} 2030 | engines: {node: '>=10'} 2031 | dependencies: 2032 | find-up: 5.0.0 2033 | find-yarn-workspace-root2: 1.2.16 2034 | path-exists: 4.0.0 2035 | which-pm: 2.0.0 2036 | dev: true 2037 | 2038 | /prelude-ls/1.2.1: 2039 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} 2040 | engines: {node: '>= 0.8.0'} 2041 | dev: true 2042 | 2043 | /prettier/2.8.4: 2044 | resolution: {integrity: sha512-vIS4Rlc2FNh0BySk3Wkd6xmwxB0FpOndW5fisM5H8hsZSxU2VWVB5CWIkIjWvrHjIhxk2g3bfMKM87zNTrZddw==} 2045 | engines: {node: '>=10.13.0'} 2046 | hasBin: true 2047 | dev: true 2048 | 2049 | /pseudomap/1.0.2: 2050 | resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==} 2051 | dev: true 2052 | 2053 | /punycode/2.3.0: 2054 | resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==} 2055 | engines: {node: '>=6'} 2056 | dev: true 2057 | 2058 | /queue-microtask/1.2.3: 2059 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 2060 | dev: true 2061 | 2062 | /quick-lru/4.0.1: 2063 | resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==} 2064 | engines: {node: '>=8'} 2065 | dev: true 2066 | 2067 | /read-pkg-up/7.0.1: 2068 | resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} 2069 | engines: {node: '>=8'} 2070 | dependencies: 2071 | find-up: 4.1.0 2072 | read-pkg: 5.2.0 2073 | type-fest: 0.8.1 2074 | dev: true 2075 | 2076 | /read-pkg/5.2.0: 2077 | resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} 2078 | engines: {node: '>=8'} 2079 | dependencies: 2080 | '@types/normalize-package-data': 2.4.1 2081 | normalize-package-data: 2.5.0 2082 | parse-json: 5.2.0 2083 | type-fest: 0.6.0 2084 | dev: true 2085 | 2086 | /read-yaml-file/1.1.0: 2087 | resolution: {integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==} 2088 | engines: {node: '>=6'} 2089 | dependencies: 2090 | graceful-fs: 4.2.10 2091 | js-yaml: 3.14.1 2092 | pify: 4.0.1 2093 | strip-bom: 3.0.0 2094 | dev: true 2095 | 2096 | /redent/3.0.0: 2097 | resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} 2098 | engines: {node: '>=8'} 2099 | dependencies: 2100 | indent-string: 4.0.0 2101 | strip-indent: 3.0.0 2102 | dev: true 2103 | 2104 | /regenerator-runtime/0.13.11: 2105 | resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==} 2106 | dev: true 2107 | 2108 | /regexp.prototype.flags/1.4.3: 2109 | resolution: {integrity: sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==} 2110 | engines: {node: '>= 0.4'} 2111 | dependencies: 2112 | call-bind: 1.0.2 2113 | define-properties: 1.2.0 2114 | functions-have-names: 1.2.3 2115 | dev: true 2116 | 2117 | /regexpp/3.2.0: 2118 | resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} 2119 | engines: {node: '>=8'} 2120 | dev: true 2121 | 2122 | /require-directory/2.1.1: 2123 | resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} 2124 | engines: {node: '>=0.10.0'} 2125 | dev: true 2126 | 2127 | /require-main-filename/2.0.0: 2128 | resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==} 2129 | dev: true 2130 | 2131 | /resolve-from/4.0.0: 2132 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} 2133 | engines: {node: '>=4'} 2134 | dev: true 2135 | 2136 | /resolve-from/5.0.0: 2137 | resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} 2138 | engines: {node: '>=8'} 2139 | dev: true 2140 | 2141 | /resolve/1.22.1: 2142 | resolution: {integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==} 2143 | hasBin: true 2144 | dependencies: 2145 | is-core-module: 2.11.0 2146 | path-parse: 1.0.7 2147 | supports-preserve-symlinks-flag: 1.0.0 2148 | dev: true 2149 | 2150 | /restore-cursor/3.1.0: 2151 | resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} 2152 | engines: {node: '>=8'} 2153 | dependencies: 2154 | onetime: 5.1.2 2155 | signal-exit: 3.0.7 2156 | dev: true 2157 | 2158 | /reusify/1.0.4: 2159 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} 2160 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 2161 | dev: true 2162 | 2163 | /rfdc/1.3.0: 2164 | resolution: {integrity: sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==} 2165 | dev: true 2166 | 2167 | /rimraf/3.0.2: 2168 | resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} 2169 | hasBin: true 2170 | dependencies: 2171 | glob: 7.2.3 2172 | dev: true 2173 | 2174 | /run-parallel/1.2.0: 2175 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 2176 | dependencies: 2177 | queue-microtask: 1.2.3 2178 | dev: true 2179 | 2180 | /rxjs/7.8.0: 2181 | resolution: {integrity: sha512-F2+gxDshqmIub1KdvZkaEfGDwLNpPvk9Fs6LD/MyQxNgMds/WH9OdDDXOmxUZpME+iSK3rQCctkL0DYyytUqMg==} 2182 | dependencies: 2183 | tslib: 2.5.0 2184 | dev: true 2185 | 2186 | /sade/1.8.1: 2187 | resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==} 2188 | engines: {node: '>=6'} 2189 | dependencies: 2190 | mri: 1.2.0 2191 | dev: true 2192 | 2193 | /safe-regex-test/1.0.0: 2194 | resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==} 2195 | dependencies: 2196 | call-bind: 1.0.2 2197 | get-intrinsic: 1.2.0 2198 | is-regex: 1.1.4 2199 | dev: true 2200 | 2201 | /safer-buffer/2.1.2: 2202 | resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} 2203 | dev: true 2204 | 2205 | /semver/5.7.1: 2206 | resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==} 2207 | hasBin: true 2208 | dev: true 2209 | 2210 | /semver/7.3.8: 2211 | resolution: {integrity: sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==} 2212 | engines: {node: '>=10'} 2213 | hasBin: true 2214 | dependencies: 2215 | lru-cache: 6.0.0 2216 | dev: true 2217 | 2218 | /set-blocking/2.0.0: 2219 | resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} 2220 | dev: true 2221 | 2222 | /shebang-command/1.2.0: 2223 | resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==} 2224 | engines: {node: '>=0.10.0'} 2225 | dependencies: 2226 | shebang-regex: 1.0.0 2227 | dev: true 2228 | 2229 | /shebang-command/2.0.0: 2230 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 2231 | engines: {node: '>=8'} 2232 | dependencies: 2233 | shebang-regex: 3.0.0 2234 | dev: true 2235 | 2236 | /shebang-regex/1.0.0: 2237 | resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==} 2238 | engines: {node: '>=0.10.0'} 2239 | dev: true 2240 | 2241 | /shebang-regex/3.0.0: 2242 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 2243 | engines: {node: '>=8'} 2244 | dev: true 2245 | 2246 | /side-channel/1.0.4: 2247 | resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} 2248 | dependencies: 2249 | call-bind: 1.0.2 2250 | get-intrinsic: 1.2.0 2251 | object-inspect: 1.12.3 2252 | dev: true 2253 | 2254 | /signal-exit/3.0.7: 2255 | resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} 2256 | dev: true 2257 | 2258 | /slash/3.0.0: 2259 | resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} 2260 | engines: {node: '>=8'} 2261 | dev: true 2262 | 2263 | /slice-ansi/3.0.0: 2264 | resolution: {integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==} 2265 | engines: {node: '>=8'} 2266 | dependencies: 2267 | ansi-styles: 4.3.0 2268 | astral-regex: 2.0.0 2269 | is-fullwidth-code-point: 3.0.0 2270 | dev: true 2271 | 2272 | /slice-ansi/4.0.0: 2273 | resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==} 2274 | engines: {node: '>=10'} 2275 | dependencies: 2276 | ansi-styles: 4.3.0 2277 | astral-regex: 2.0.0 2278 | is-fullwidth-code-point: 3.0.0 2279 | dev: true 2280 | 2281 | /slice-ansi/5.0.0: 2282 | resolution: {integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==} 2283 | engines: {node: '>=12'} 2284 | dependencies: 2285 | ansi-styles: 6.2.1 2286 | is-fullwidth-code-point: 4.0.0 2287 | dev: true 2288 | 2289 | /smartwrap/2.0.2: 2290 | resolution: {integrity: sha512-vCsKNQxb7PnCNd2wY1WClWifAc2lwqsG8OaswpJkVJsvMGcnEntdTCDajZCkk93Ay1U3t/9puJmb525Rg5MZBA==} 2291 | engines: {node: '>=6'} 2292 | hasBin: true 2293 | dependencies: 2294 | array.prototype.flat: 1.3.1 2295 | breakword: 1.0.5 2296 | grapheme-splitter: 1.0.4 2297 | strip-ansi: 6.0.1 2298 | wcwidth: 1.0.1 2299 | yargs: 15.4.1 2300 | dev: true 2301 | 2302 | /spawndamnit/2.0.0: 2303 | resolution: {integrity: sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA==} 2304 | dependencies: 2305 | cross-spawn: 5.1.0 2306 | signal-exit: 3.0.7 2307 | dev: true 2308 | 2309 | /spdx-correct/3.1.1: 2310 | resolution: {integrity: sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==} 2311 | dependencies: 2312 | spdx-expression-parse: 3.0.1 2313 | spdx-license-ids: 3.0.12 2314 | dev: true 2315 | 2316 | /spdx-exceptions/2.3.0: 2317 | resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==} 2318 | dev: true 2319 | 2320 | /spdx-expression-parse/3.0.1: 2321 | resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} 2322 | dependencies: 2323 | spdx-exceptions: 2.3.0 2324 | spdx-license-ids: 3.0.12 2325 | dev: true 2326 | 2327 | /spdx-license-ids/3.0.12: 2328 | resolution: {integrity: sha512-rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA==} 2329 | dev: true 2330 | 2331 | /sprintf-js/1.0.3: 2332 | resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} 2333 | dev: true 2334 | 2335 | /stream-transform/2.1.3: 2336 | resolution: {integrity: sha512-9GHUiM5hMiCi6Y03jD2ARC1ettBXkQBoQAe7nJsPknnI0ow10aXjTnew8QtYQmLjzn974BnmWEAJgCY6ZP1DeQ==} 2337 | dependencies: 2338 | mixme: 0.5.5 2339 | dev: true 2340 | 2341 | /string-argv/0.3.1: 2342 | resolution: {integrity: sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==} 2343 | engines: {node: '>=0.6.19'} 2344 | dev: true 2345 | 2346 | /string-width/4.2.3: 2347 | resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} 2348 | engines: {node: '>=8'} 2349 | dependencies: 2350 | emoji-regex: 8.0.0 2351 | is-fullwidth-code-point: 3.0.0 2352 | strip-ansi: 6.0.1 2353 | dev: true 2354 | 2355 | /string-width/5.1.2: 2356 | resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} 2357 | engines: {node: '>=12'} 2358 | dependencies: 2359 | eastasianwidth: 0.2.0 2360 | emoji-regex: 9.2.2 2361 | strip-ansi: 7.0.1 2362 | dev: true 2363 | 2364 | /string.prototype.trimend/1.0.6: 2365 | resolution: {integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==} 2366 | dependencies: 2367 | call-bind: 1.0.2 2368 | define-properties: 1.2.0 2369 | es-abstract: 1.21.1 2370 | dev: true 2371 | 2372 | /string.prototype.trimstart/1.0.6: 2373 | resolution: {integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==} 2374 | dependencies: 2375 | call-bind: 1.0.2 2376 | define-properties: 1.2.0 2377 | es-abstract: 1.21.1 2378 | dev: true 2379 | 2380 | /strip-ansi/6.0.1: 2381 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 2382 | engines: {node: '>=8'} 2383 | dependencies: 2384 | ansi-regex: 5.0.1 2385 | dev: true 2386 | 2387 | /strip-ansi/7.0.1: 2388 | resolution: {integrity: sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==} 2389 | engines: {node: '>=12'} 2390 | dependencies: 2391 | ansi-regex: 6.0.1 2392 | dev: true 2393 | 2394 | /strip-bom/3.0.0: 2395 | resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} 2396 | engines: {node: '>=4'} 2397 | dev: true 2398 | 2399 | /strip-final-newline/3.0.0: 2400 | resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==} 2401 | engines: {node: '>=12'} 2402 | dev: true 2403 | 2404 | /strip-indent/3.0.0: 2405 | resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} 2406 | engines: {node: '>=8'} 2407 | dependencies: 2408 | min-indent: 1.0.1 2409 | dev: true 2410 | 2411 | /strip-json-comments/3.1.1: 2412 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} 2413 | engines: {node: '>=8'} 2414 | dev: true 2415 | 2416 | /supports-color/5.5.0: 2417 | resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} 2418 | engines: {node: '>=4'} 2419 | dependencies: 2420 | has-flag: 3.0.0 2421 | dev: true 2422 | 2423 | /supports-color/7.2.0: 2424 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 2425 | engines: {node: '>=8'} 2426 | dependencies: 2427 | has-flag: 4.0.0 2428 | dev: true 2429 | 2430 | /supports-preserve-symlinks-flag/1.0.0: 2431 | resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} 2432 | engines: {node: '>= 0.4'} 2433 | dev: true 2434 | 2435 | /term-size/2.2.1: 2436 | resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==} 2437 | engines: {node: '>=8'} 2438 | dev: true 2439 | 2440 | /text-table/0.2.0: 2441 | resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} 2442 | dev: true 2443 | 2444 | /through/2.3.8: 2445 | resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} 2446 | dev: true 2447 | 2448 | /tmp/0.0.33: 2449 | resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} 2450 | engines: {node: '>=0.6.0'} 2451 | dependencies: 2452 | os-tmpdir: 1.0.2 2453 | dev: true 2454 | 2455 | /to-regex-range/5.0.1: 2456 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 2457 | engines: {node: '>=8.0'} 2458 | dependencies: 2459 | is-number: 7.0.0 2460 | dev: true 2461 | 2462 | /tr46/0.0.3: 2463 | resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} 2464 | dev: true 2465 | 2466 | /trim-newlines/3.0.1: 2467 | resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==} 2468 | engines: {node: '>=8'} 2469 | dev: true 2470 | 2471 | /tslib/2.5.0: 2472 | resolution: {integrity: sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==} 2473 | dev: true 2474 | 2475 | /tty-table/4.1.6: 2476 | resolution: {integrity: sha512-kRj5CBzOrakV4VRRY5kUWbNYvo/FpOsz65DzI5op9P+cHov3+IqPbo1JE1ZnQGkHdZgNFDsrEjrfqqy/Ply9fw==} 2477 | engines: {node: '>=8.0.0'} 2478 | hasBin: true 2479 | dependencies: 2480 | chalk: 4.1.2 2481 | csv: 5.5.3 2482 | kleur: 4.1.5 2483 | smartwrap: 2.0.2 2484 | strip-ansi: 6.0.1 2485 | wcwidth: 1.0.1 2486 | yargs: 17.7.1 2487 | dev: true 2488 | 2489 | /type-check/0.4.0: 2490 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} 2491 | engines: {node: '>= 0.8.0'} 2492 | dependencies: 2493 | prelude-ls: 1.2.1 2494 | dev: true 2495 | 2496 | /type-fest/0.13.1: 2497 | resolution: {integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==} 2498 | engines: {node: '>=10'} 2499 | dev: true 2500 | 2501 | /type-fest/0.20.2: 2502 | resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} 2503 | engines: {node: '>=10'} 2504 | dev: true 2505 | 2506 | /type-fest/0.21.3: 2507 | resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} 2508 | engines: {node: '>=10'} 2509 | dev: true 2510 | 2511 | /type-fest/0.6.0: 2512 | resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} 2513 | engines: {node: '>=8'} 2514 | dev: true 2515 | 2516 | /type-fest/0.8.1: 2517 | resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} 2518 | engines: {node: '>=8'} 2519 | dev: true 2520 | 2521 | /typed-array-length/1.0.4: 2522 | resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==} 2523 | dependencies: 2524 | call-bind: 1.0.2 2525 | for-each: 0.3.3 2526 | is-typed-array: 1.1.10 2527 | dev: true 2528 | 2529 | /unbox-primitive/1.0.2: 2530 | resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} 2531 | dependencies: 2532 | call-bind: 1.0.2 2533 | has-bigints: 1.0.2 2534 | has-symbols: 1.0.3 2535 | which-boxed-primitive: 1.0.2 2536 | dev: true 2537 | 2538 | /universalify/0.1.2: 2539 | resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} 2540 | engines: {node: '>= 4.0.0'} 2541 | dev: true 2542 | 2543 | /uri-js/4.4.1: 2544 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} 2545 | dependencies: 2546 | punycode: 2.3.0 2547 | dev: true 2548 | 2549 | /uvu/0.5.6: 2550 | resolution: {integrity: sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==} 2551 | engines: {node: '>=8'} 2552 | hasBin: true 2553 | dependencies: 2554 | dequal: 2.0.3 2555 | diff: 5.1.0 2556 | kleur: 4.1.5 2557 | sade: 1.8.1 2558 | dev: true 2559 | 2560 | /validate-npm-package-license/3.0.4: 2561 | resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} 2562 | dependencies: 2563 | spdx-correct: 3.1.1 2564 | spdx-expression-parse: 3.0.1 2565 | dev: true 2566 | 2567 | /wcwidth/1.0.1: 2568 | resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} 2569 | dependencies: 2570 | defaults: 1.0.4 2571 | dev: true 2572 | 2573 | /webidl-conversions/3.0.1: 2574 | resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} 2575 | dev: true 2576 | 2577 | /whatwg-url/5.0.0: 2578 | resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} 2579 | dependencies: 2580 | tr46: 0.0.3 2581 | webidl-conversions: 3.0.1 2582 | dev: true 2583 | 2584 | /which-boxed-primitive/1.0.2: 2585 | resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} 2586 | dependencies: 2587 | is-bigint: 1.0.4 2588 | is-boolean-object: 1.1.2 2589 | is-number-object: 1.0.7 2590 | is-string: 1.0.7 2591 | is-symbol: 1.0.4 2592 | dev: true 2593 | 2594 | /which-module/2.0.0: 2595 | resolution: {integrity: sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q==} 2596 | dev: true 2597 | 2598 | /which-pm/2.0.0: 2599 | resolution: {integrity: sha512-Lhs9Pmyph0p5n5Z3mVnN0yWcbQYUAD7rbQUiMsQxOJ3T57k7RFe35SUwWMf7dsbDZks1uOmw4AecB/JMDj3v/w==} 2600 | engines: {node: '>=8.15'} 2601 | dependencies: 2602 | load-yaml-file: 0.2.0 2603 | path-exists: 4.0.0 2604 | dev: true 2605 | 2606 | /which-typed-array/1.1.9: 2607 | resolution: {integrity: sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==} 2608 | engines: {node: '>= 0.4'} 2609 | dependencies: 2610 | available-typed-arrays: 1.0.5 2611 | call-bind: 1.0.2 2612 | for-each: 0.3.3 2613 | gopd: 1.0.1 2614 | has-tostringtag: 1.0.0 2615 | is-typed-array: 1.1.10 2616 | dev: true 2617 | 2618 | /which/1.3.1: 2619 | resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} 2620 | hasBin: true 2621 | dependencies: 2622 | isexe: 2.0.0 2623 | dev: true 2624 | 2625 | /which/2.0.2: 2626 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 2627 | engines: {node: '>= 8'} 2628 | hasBin: true 2629 | dependencies: 2630 | isexe: 2.0.0 2631 | dev: true 2632 | 2633 | /word-wrap/1.2.3: 2634 | resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==} 2635 | engines: {node: '>=0.10.0'} 2636 | dev: true 2637 | 2638 | /wrap-ansi/6.2.0: 2639 | resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} 2640 | engines: {node: '>=8'} 2641 | dependencies: 2642 | ansi-styles: 4.3.0 2643 | string-width: 4.2.3 2644 | strip-ansi: 6.0.1 2645 | dev: true 2646 | 2647 | /wrap-ansi/7.0.0: 2648 | resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} 2649 | engines: {node: '>=10'} 2650 | dependencies: 2651 | ansi-styles: 4.3.0 2652 | string-width: 4.2.3 2653 | strip-ansi: 6.0.1 2654 | dev: true 2655 | 2656 | /wrappy/1.0.2: 2657 | resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} 2658 | dev: true 2659 | 2660 | /y18n/4.0.3: 2661 | resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==} 2662 | dev: true 2663 | 2664 | /y18n/5.0.8: 2665 | resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} 2666 | engines: {node: '>=10'} 2667 | dev: true 2668 | 2669 | /yallist/2.1.2: 2670 | resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==} 2671 | dev: true 2672 | 2673 | /yallist/4.0.0: 2674 | resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} 2675 | dev: true 2676 | 2677 | /yaml/2.2.1: 2678 | resolution: {integrity: sha512-e0WHiYql7+9wr4cWMx3TVQrNwejKaEe7/rHNmQmqRjazfOP5W8PB6Jpebb5o6fIapbz9o9+2ipcaTM2ZwDI6lw==} 2679 | engines: {node: '>= 14'} 2680 | dev: true 2681 | 2682 | /yargs-parser/18.1.3: 2683 | resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==} 2684 | engines: {node: '>=6'} 2685 | dependencies: 2686 | camelcase: 5.3.1 2687 | decamelize: 1.2.0 2688 | dev: true 2689 | 2690 | /yargs-parser/21.1.1: 2691 | resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} 2692 | engines: {node: '>=12'} 2693 | dev: true 2694 | 2695 | /yargs/15.4.1: 2696 | resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==} 2697 | engines: {node: '>=8'} 2698 | dependencies: 2699 | cliui: 6.0.0 2700 | decamelize: 1.2.0 2701 | find-up: 4.1.0 2702 | get-caller-file: 2.0.5 2703 | require-directory: 2.1.1 2704 | require-main-filename: 2.0.0 2705 | set-blocking: 2.0.0 2706 | string-width: 4.2.3 2707 | which-module: 2.0.0 2708 | y18n: 4.0.3 2709 | yargs-parser: 18.1.3 2710 | dev: true 2711 | 2712 | /yargs/17.7.1: 2713 | resolution: {integrity: sha512-cwiTb08Xuv5fqF4AovYacTFNxk62th7LKJ6BL9IGUpTJrWoU7/7WdQGTP2SjKf1dUNBGzDd28p/Yfs/GI6JrLw==} 2714 | engines: {node: '>=12'} 2715 | dependencies: 2716 | cliui: 8.0.1 2717 | escalade: 3.1.1 2718 | get-caller-file: 2.0.5 2719 | require-directory: 2.1.1 2720 | string-width: 4.2.3 2721 | y18n: 5.0.8 2722 | yargs-parser: 21.1.1 2723 | dev: true 2724 | 2725 | /yocto-queue/0.1.0: 2726 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} 2727 | engines: {node: '>=10'} 2728 | dev: true 2729 | --------------------------------------------------------------------------------