├── .gitignore ├── .prettierignore ├── info-buckets.js ├── .github └── workflows │ ├── ci.yml │ ├── publish.yml │ └── plan-release.yml ├── package-json.js ├── monorepo.js ├── npm.js ├── .release-plan.json ├── output.js ├── package.json ├── cache.js ├── CHANGELOG.md ├── RELEASE.md ├── README.md ├── bin.js ├── LICENSE └── pnpm-lock.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .cache/ 3 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | *.yml 2 | *.yaml 3 | *.md 4 | -------------------------------------------------------------------------------- /info-buckets.js: -------------------------------------------------------------------------------- 1 | export const SEEN_DEPS = new Set(); 2 | export const MAINTAINERS = new Map(); 3 | export const WHO_MAINTAINS = new Set(); 4 | export const NOT_FOUND = new Set(); 5 | export const NOT_AUTHORIZED = new Set(); 6 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- 1 | name: CI 2 | 3 | on: 4 | push: 5 | branches: 6 | - main 7 | - master 8 | pull_request: {} 9 | 10 | concurrency: 11 | group: ci-${{ github.head_ref || github.ref }} 12 | cancel-in-progress: true 13 | 14 | jobs: 15 | lint: 16 | name: Lint 17 | runs-on: ubuntu-latest 18 | steps: 19 | - uses: actions/checkout@v4 20 | - uses: wyvox/action-setup-pnpm@v3 21 | - run: pnpm lint 22 | -------------------------------------------------------------------------------- /package-json.js: -------------------------------------------------------------------------------- 1 | import path from "node:path"; 2 | import fs from "node:fs/promises"; 3 | 4 | const CWD = process.cwd(); 5 | 6 | export async function readPackageJson() { 7 | let packageJson = path.join(CWD, "package.json"); 8 | let content = await fs.readFile(packageJson); 9 | 10 | return JSON.parse(content); 11 | } 12 | 13 | export async function getDeclaredDeps(json, includeDev = false) { 14 | let deps = [ 15 | ...Object.keys(json.dependencies || {}), 16 | ...Object.keys(json.peerDependencies || {}), 17 | ]; 18 | 19 | if (includeDev) { 20 | deps.push(...Object.keys(json.devDependencies || {})); 21 | } 22 | 23 | return deps; 24 | } 25 | -------------------------------------------------------------------------------- /monorepo.js: -------------------------------------------------------------------------------- 1 | import { getPackages } from "@manypkg/get-packages"; 2 | 3 | const CWD = process.cwd(); 4 | 5 | /** 6 | * packages[]: 7 | * { 8 | * dir: string 9 | * relativeDir: string 10 | * packageJson: { 11 | * name: string 12 | * } 13 | * } 14 | */ 15 | const monorepoInfo = await getPackages(CWD); 16 | 17 | export function getAllPackageJSONs() { 18 | return monorepoInfo.packages.map((pkg) => pkg.packageJson); 19 | } 20 | 21 | export const IN_MONOREPO = new Set( 22 | monorepoInfo.packages.map((pkg) => pkg.packageJson.name), 23 | ); 24 | /** 25 | * Returns a package.json or undefined 26 | */ 27 | export function getMonorepoPackage(name) { 28 | let pkg = monorepoInfo.packages.find((pkg) => pkg.packageJson.name === name); 29 | 30 | return pkg?.packageJson; 31 | } 32 | -------------------------------------------------------------------------------- /npm.js: -------------------------------------------------------------------------------- 1 | import { execa } from "execa"; 2 | import { cacheResponse, readCachedResponse } from "./cache.js"; 3 | 4 | import { NOT_AUTHORIZED, NOT_FOUND } from "./info-buckets.js"; 5 | 6 | export async function getPackageInfo(name) { 7 | let cached = await readCachedResponse(name); 8 | 9 | if (cached) { 10 | return cached; 11 | } 12 | try { 13 | let { stdout } = await execa`npm info ${name} --json`; 14 | 15 | let json = JSON.parse(stdout); 16 | 17 | await cacheResponse(name, json); 18 | 19 | return json; 20 | } catch (e) { 21 | if (typeof e === "object" && e !== null) { 22 | if ("message" in e) { 23 | let msg = e.message; 24 | if (msg.includes("code E404")) { 25 | NOT_FOUND.add(name); 26 | 27 | return; 28 | } 29 | 30 | if (msg.includes("code E401")) { 31 | NOT_AUTHORIZED.add(name); 32 | 33 | return; 34 | } 35 | } 36 | } 37 | 38 | throw e; 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /.release-plan.json: -------------------------------------------------------------------------------- 1 | { 2 | "solution": { 3 | "dependency-maintainers": { 4 | "impact": "minor", 5 | "oldVersion": "1.0.6", 6 | "newVersion": "1.1.0", 7 | "constraints": [ 8 | { 9 | "impact": "minor", 10 | "reason": "Appears in changelog section :rocket: Enhancement" 11 | } 12 | ], 13 | "pkgJSONPath": "./package.json" 14 | } 15 | }, 16 | "description": "## Release (2024-07-06)\n\ndependency-maintainers 1.1.0 (minor)\n\n#### :rocket: Enhancement\n* `dependency-maintainers`\n * [#11](https://github.com/NullVoxPopuli/dependency-maintainers/pull/11) Closes [#9](https://github.com/NullVoxPopuli/dependency-maintainers/issues/9), support scanning a whole monorepo. Add --force (to clear …cache), --recursive (for monorepo), --help, --verbose (for the old output), new output has a progress bar now ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n\n#### Committers: 1\n- [@NullVoxPopuli](https://github.com/NullVoxPopuli)\n" 17 | } 18 | -------------------------------------------------------------------------------- /output.js: -------------------------------------------------------------------------------- 1 | import { 2 | SEEN_DEPS, 3 | MAINTAINERS, 4 | WHO_MAINTAINS, 5 | NOT_FOUND, 6 | NOT_AUTHORIZED, 7 | } from "./info-buckets.js"; 8 | 9 | export function printSummary() { 10 | let tableData = [...MAINTAINERS.entries()].map((entry) => ({ 11 | "NPM Name": entry[0], 12 | "# Packages": entry[1], 13 | })); 14 | 15 | tableData.sort((a, b) => a["# Packages"] - b["# Packages"]); 16 | 17 | console.info(` 18 | Number of maintainers: ${MAINTAINERS.size} 19 | Number of packages: ${SEEN_DEPS.size} 20 | `); 21 | console.table(tableData.reverse()); 22 | 23 | if (NOT_FOUND.size > 0) { 24 | console.info("The following packages could not be found and were skipped"); 25 | console.log(NOT_FOUND); 26 | } 27 | 28 | if (NOT_AUTHORIZED.size > 0) { 29 | console.info( 30 | "The following packages required authorization and were skipped", 31 | ); 32 | console.log(NOT_AUTHORIZED); 33 | } 34 | 35 | if (WHO_MAINTAINS.size > 0) { 36 | console.info( 37 | "Could not determine the maintainers of the following packages (these may be private):", 38 | ); 39 | console.log(WHO_MAINTAINS); 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "dependency-maintainers", 3 | "version": "1.1.0", 4 | "keywords": [ 5 | "maintainer", 6 | "npm", 7 | "package", 8 | "node_modules", 9 | "modules", 10 | "node", 11 | "dependencies", 12 | "dependency" 13 | ], 14 | "repository": { 15 | "type": "git", 16 | "url": "git@github.com:NullVoxPopuli/dependency-maintainers.git" 17 | }, 18 | "scripts": { 19 | "lint": "prettier --check .", 20 | "lint:fix": "prettier --write ." 21 | }, 22 | "license": "GPL-3", 23 | "author": "NullVoxPopuli", 24 | "type": "module", 25 | "main": "bin.js", 26 | "bin": { 27 | "dependency-maintainers": "bin.js", 28 | "depmain": "bin.js" 29 | }, 30 | "dependencies": { 31 | "@manypkg/get-packages": "^2.2.1", 32 | "cli-progress": "^3.12.0", 33 | "execa": "^9.2.0" 34 | }, 35 | "publishConfig": { 36 | "registry": "https://registry.npmjs.org", 37 | "access": "public" 38 | }, 39 | "devDependencies": { 40 | "prettier": "^3.3.2", 41 | "release-plan": "^0.9.0", 42 | "typescript": "^5.5.2" 43 | }, 44 | "volta": { 45 | "node": "20.15.0", 46 | "pnpm": "9.4.0" 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /cache.js: -------------------------------------------------------------------------------- 1 | import path from "node:path"; 2 | import url from "node:url"; 3 | import fsSync from "node:fs"; 4 | import fs from "node:fs/promises"; 5 | 6 | const __dirname = path.dirname(url.fileURLToPath(import.meta.url)); 7 | 8 | async function ensureCacheDir() { 9 | let cachePath = path.join(__dirname, ".cache"); 10 | 11 | if (!fsSync.existsSync(cachePath)) { 12 | await fs.mkdir(cachePath); 13 | } 14 | } 15 | await ensureCacheDir(); 16 | 17 | export async function clearCache() { 18 | await fs.rm(path.join(__dirname, ".cache"), { recursive: true }); 19 | await ensureCacheDir(); 20 | } 21 | 22 | export async function cacheResponse(depName, response) { 23 | let cachePath = path.join(__dirname, ".cache", depName + ".json"); 24 | 25 | if (depName.includes("/")) { 26 | await fs.mkdir(path.dirname(cachePath), { recursive: true }); 27 | } 28 | 29 | await fs.writeFile(cachePath, JSON.stringify(response)); 30 | } 31 | 32 | export async function readCachedResponse(depName) { 33 | let cachePath = path.join(__dirname, ".cache", depName + ".json"); 34 | 35 | if (!fsSync.existsSync(cachePath)) { 36 | return; 37 | } 38 | 39 | let f = await fs.readFile(cachePath); 40 | 41 | let content = f.toString(); 42 | 43 | try { 44 | return JSON.parse(content); 45 | } catch (e) { 46 | console.error(e); 47 | return; 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | ## Release (2024-07-06) 4 | 5 | dependency-maintainers 1.1.0 (minor) 6 | 7 | #### :rocket: Enhancement 8 | * `dependency-maintainers` 9 | * [#11](https://github.com/NullVoxPopuli/dependency-maintainers/pull/11) Closes [#9](https://github.com/NullVoxPopuli/dependency-maintainers/issues/9), support scanning a whole monorepo. Add --force (to clear …cache), --recursive (for monorepo), --help, --verbose (for the old output), new output has a progress bar now ([@NullVoxPopuli](https://github.com/NullVoxPopuli)) 10 | 11 | #### Committers: 1 12 | - [@NullVoxPopuli](https://github.com/NullVoxPopuli) 13 | 14 | ## Release (2024-06-21) 15 | 16 | dependency-maintainers 1.0.6 (patch) 17 | 18 | #### :bug: Bug Fix 19 | * `dependency-maintainers` 20 | * [#5](https://github.com/NullVoxPopuli/dependency-maintainers/pull/5) fix publish ([@NullVoxPopuli](https://github.com/NullVoxPopuli)) 21 | 22 | #### Committers: 1 23 | - [@NullVoxPopuli](https://github.com/NullVoxPopuli) 24 | 25 | ## Release (2024-06-21) 26 | 27 | dependency-maintainers 1.0.5 (patch) 28 | 29 | #### :house: Internal 30 | * `dependency-maintainers` 31 | * [#3](https://github.com/NullVoxPopuli/dependency-maintainers/pull/3) Setup release-plan and ci ([@NullVoxPopuli](https://github.com/NullVoxPopuli)) 32 | 33 | #### Committers: 1 34 | - [@NullVoxPopuli](https://github.com/NullVoxPopuli) 35 | -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- 1 | # Release Process 2 | 3 | Releases in this repo are mostly automated using [release-plan](https://github.com/embroider-build/release-plan/). Once you label all your PRs correctly (see below) you will have an automatically generated PR that updates your CHANGELOG.md file and a `.release-plan.json` that is used to prepare the release once the PR is merged. 4 | 5 | ## Preparation 6 | 7 | Since the majority of the actual release process is automated, the remaining tasks before releasing are: 8 | 9 | - correctly labeling **all** pull requests that have been merged since the last release 10 | - updating pull request titles so they make sense to our users 11 | 12 | Some great information on why this is important can be found at [keepachangelog.com](https://keepachangelog.com/en/1.1.0/), but the overall 13 | guiding principle here is that changelogs are for humans, not machines. 14 | 15 | When reviewing merged PR's the labels to be used are: 16 | 17 | - breaking - Used when the PR is considered a breaking change. 18 | - enhancement - Used when the PR adds a new feature or enhancement. 19 | - bug - Used when the PR fixes a bug included in a previous release. 20 | - documentation - Used when the PR adds or updates documentation. 21 | - internal - Internal changes or things that don't fit in any other category. 22 | 23 | **Note:** `release-plan` requires that **all** PRs are labeled. If a PR doesn't fit in a category it's fine to label it as `internal` 24 | 25 | ## Release 26 | 27 | Once the prep work is completed, the actual release is straight forward: you just need to merge the open [Plan Release](https://github.com/NullVoxPopuli/dependency-maintainers/pulls?q=is%3Apr+is%3Aopen+%22Prepare+Release%22+in%3Atitle) PR 28 | -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- 1 | # For every push to the master branch, this checks if the release-plan was 2 | # updated and if it was it will publish stable npm packages based on the 3 | # release plan 4 | 5 | name: Publish Stable 6 | 7 | on: 8 | workflow_dispatch: 9 | push: 10 | branches: 11 | - main 12 | - master 13 | 14 | concurrency: 15 | group: publish-${{ github.head_ref || github.ref }} 16 | cancel-in-progress: true 17 | 18 | jobs: 19 | check-plan: 20 | name: "Check Release Plan" 21 | runs-on: ubuntu-latest 22 | outputs: 23 | command: ${{ steps.check-release.outputs.command }} 24 | 25 | steps: 26 | - uses: actions/checkout@v4 27 | with: 28 | fetch-depth: 0 29 | ref: "main" 30 | # This will only cause the `check-plan` job to have a result of `success` 31 | # when the .release-plan.json file was changed on the last commit. This 32 | # plus the fact that this action only runs on main will be enough of a guard 33 | - id: check-release 34 | run: if git diff --name-only HEAD HEAD~1 | grep -w -q ".release-plan.json"; then echo "command=release"; fi >> $GITHUB_OUTPUT 35 | 36 | publish: 37 | name: "NPM Publish" 38 | runs-on: ubuntu-latest 39 | needs: check-plan 40 | if: needs.check-plan.outputs.command == 'release' 41 | permissions: 42 | contents: write 43 | pull-requests: write 44 | 45 | steps: 46 | - uses: actions/checkout@v4 47 | - uses: wyvox/action-setup-pnpm@v3 48 | with: 49 | # This creates an .npmrc that reads the NODE_AUTH_TOKEN environment variable 50 | node-registry-url: "https://registry.npmjs.org" 51 | - name: npm publish 52 | run: pnpm release-plan publish 53 | 54 | env: 55 | GITHUB_AUTH: ${{ secrets.GITHUB_TOKEN }} 56 | NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} 57 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Dependency Maintainers 2 | 3 | (aka `depmain`) 4 | 5 | ## Who maintains your project? 6 | 7 | This tool recurses through your project's `node_modules` and gathers the maintainers, people with publish access on npm, and lists them out with a total of how many projects you use that they have access to. 8 | 9 | For example: 10 | 11 | ```bash 12 | $ npx dependency-maintainers@latest 13 | 14 | Number of maintainers: 333 15 | Number of packages: 462 16 | 17 | ┌─────────┬─────────────────────────────┬────────────┐ 18 | │ (index) │ NPM Name │ # Packages │ 19 | ├─────────┼─────────────────────────────┼────────────┤ 20 | │ 0 │ 'ljharb' │ 80 │ 21 | │ 1 │ 'sindresorhus' │ 53 │ 22 | │ 2 │ 'nicolo-ribaudo' │ 32 │ 23 | │ 3 │ 'jlhwung' │ 31 │ 24 | │ 4 │ 'existentialism' │ 31 │ 25 | │ 5 │ 'hzoo' │ 31 │ 26 | │ 6 │ 'isaacs' │ 27 │ 27 | │ 7 │ 'gar' │ 25 │ 28 | │ 8 │ 'fritzy' │ 25 │ 29 | │ 9 │ 'lukekarrys' │ 23 │ 30 | │ 10 │ 'saquibkhan' │ 23 │ 31 | ... 32 | ``` 33 | 34 | 35 | ## Arguments / Flags 36 | 37 | ```bash 38 | --recursive, -r In a monorepo, find the montainers of every (package in the monorepo)'s (dev)dependencies 39 | 40 | npx dependency-maintainers --recursive 41 | 42 | --verbose, -v Print extra logging to stdout 43 | 44 | npx dependency-maintainers --verbose 45 | 46 | --force Force a cache refresh 47 | 48 | npx dependency-maintainers --force 49 | 50 | --help, -h show this message 51 | 52 | npx dependency-maintainers --help 53 | ``` 54 | -------------------------------------------------------------------------------- /.github/workflows/plan-release.yml: -------------------------------------------------------------------------------- 1 | name: Release Plan Review 2 | on: 3 | push: 4 | branches: 5 | - main 6 | - master 7 | pull_request: 8 | types: 9 | - labeled 10 | 11 | concurrency: 12 | group: plan-release # only the latest one of these should ever be running 13 | cancel-in-progress: true 14 | 15 | jobs: 16 | check-plan: 17 | name: "Check Release Plan" 18 | runs-on: ubuntu-latest 19 | outputs: 20 | command: ${{ steps.check-release.outputs.command }} 21 | 22 | steps: 23 | - uses: actions/checkout@v4 24 | with: 25 | fetch-depth: 0 26 | ref: "main" 27 | # This will only cause the `check-plan` job to have a "command" of `release` 28 | # when the .release-plan.json file was changed on the last commit. 29 | - id: check-release 30 | run: if git diff --name-only HEAD HEAD~1 | grep -w -q ".release-plan.json"; then echo "command=release"; fi >> $GITHUB_OUTPUT 31 | 32 | prepare_release_notes: 33 | name: Prepare Release Notes 34 | runs-on: ubuntu-latest 35 | timeout-minutes: 5 36 | needs: check-plan 37 | permissions: 38 | contents: write 39 | pull-requests: write 40 | outputs: 41 | explanation: ${{ steps.explanation.outputs.text }} 42 | # only run on push event if plan wasn't updated (don't create a release plan when we're releasing) 43 | # only run on labeled event if the PR has already been merged 44 | if: (github.event_name == 'push' && needs.check-plan.outputs.command != 'release') || (github.event_name == 'pull_request' && github.event.pull_request.merged == true) 45 | 46 | steps: 47 | - uses: actions/checkout@v4 48 | # We need to download lots of history so that 49 | # github-changelog can discover what's changed since the last release 50 | with: 51 | fetch-depth: 0 52 | ref: "main" 53 | - uses: wyvox/action-setup-pnpm@v3 54 | 55 | - name: "Generate Explanation and Prep Changelogs" 56 | id: explanation 57 | run: | 58 | set +e 59 | 60 | pnpm release-plan prepare 2> >(tee -a release-plan-stderr.txt >&2) 61 | 62 | 63 | if [ $? -ne 0 ]; then 64 | echo 'text<> $GITHUB_OUTPUT 65 | cat release-plan-stderr.txt >> $GITHUB_OUTPUT 66 | echo 'EOF' >> $GITHUB_OUTPUT 67 | else 68 | echo 'text<> $GITHUB_OUTPUT 69 | jq .description .release-plan.json -r >> $GITHUB_OUTPUT 70 | echo 'EOF' >> $GITHUB_OUTPUT 71 | rm release-plan-stderr.txt 72 | fi 73 | env: 74 | GITHUB_AUTH: ${{ secrets.GITHUB_TOKEN }} 75 | 76 | - uses: peter-evans/create-pull-request@v6 77 | with: 78 | commit-message: "Prepare Release using 'release-plan'" 79 | labels: "internal" 80 | branch: release-preview 81 | title: Prepare Release 82 | body: | 83 | This PR is a preview of the release that [release-plan](https://github.com/embroider-build/release-plan) has prepared. To release you should just merge this PR 👍 84 | 85 | ----------------------------------------- 86 | 87 | ${{ steps.explanation.outputs.text }} 88 | -------------------------------------------------------------------------------- /bin.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | import path from "node:path"; 4 | import fs from "node:fs/promises"; 5 | import fsSync from "node:fs"; 6 | import process from "node:process"; 7 | import { parseArgs } from "node:util"; 8 | import { execa } from "execa"; 9 | import cliProgress from "cli-progress"; 10 | 11 | import { cacheResponse, readCachedResponse, clearCache } from "./cache.js"; 12 | import { 13 | IN_MONOREPO, 14 | getMonorepoPackage, 15 | getAllPackageJSONs, 16 | } from "./monorepo.js"; 17 | import { getPackageInfo } from "./npm.js"; 18 | import { readPackageJson, getDeclaredDeps } from "./package-json.js"; 19 | import { printSummary } from "./output.js"; 20 | import { 21 | SEEN_DEPS, 22 | MAINTAINERS, 23 | WHO_MAINTAINS, 24 | NOT_FOUND, 25 | NOT_AUTHORIZED, 26 | } from "./info-buckets.js"; 27 | 28 | const CWD = process.cwd(); 29 | 30 | const args = parseArgs({ 31 | options: { 32 | recursive: { 33 | type: "boolean", 34 | short: "r", 35 | default: false, 36 | }, 37 | force: { 38 | type: "boolean", 39 | default: false, 40 | }, 41 | verbose: { 42 | type: "boolean", 43 | short: "v", 44 | default: false, 45 | }, 46 | help: { 47 | type: "boolean", 48 | short: "h", 49 | default: false, 50 | }, 51 | }, 52 | }); 53 | 54 | if (args.values.help) { 55 | console.log(` 56 | Usage: 57 | 58 | npx dependency-maintainers 59 | 60 | 61 | --recursive, -r In a monorepo, find the montainers of every (package in the monorepo)'s (dev)dependencies 62 | 63 | npx dependency-maintainers --recursive 64 | 65 | --verbose, -v Print extra logging to stdout 66 | 67 | npx dependency-maintainers --verbose 68 | 69 | --force Force a cache refresh 70 | 71 | npx dependency-maintainers --force 72 | 73 | --help, -h show this message 74 | 75 | npx dependency-maintainers --help 76 | `); 77 | process.exit(0); 78 | } 79 | 80 | if (args.values.force) { 81 | await clearCache(); 82 | } 83 | 84 | const BATCH_SIZE = 40; 85 | const IS_VERBOSE = args.values.verbose; 86 | 87 | function updateMaintainers(npmInfo) { 88 | /** 89 | * Array: 90 | * username 91 | * username2 92 | */ 93 | let { maintainers, _npmUser } = npmInfo; 94 | 95 | let users = maintainers?.map((maintainer) => maintainer.split(" ")[0]) ?? []; 96 | 97 | users.map(incrementUser); 98 | 99 | if (!maintainers) { 100 | WHO_MAINTAINS.add(npmInfo.name); 101 | } 102 | } 103 | 104 | function incrementUser(user) { 105 | let count = MAINTAINERS.get(user) ?? 0; 106 | MAINTAINERS.set(user, count + 1); 107 | } 108 | 109 | const QUEUE = []; 110 | const HAS_INFO = new Set(); 111 | let seen = 0; 112 | let total = 0; 113 | const progress = new cliProgress.SingleBar( 114 | {}, 115 | cliProgress.Presets.shades_classic, 116 | ); 117 | 118 | function showProgress() { 119 | progress.start(total, seen); 120 | } 121 | 122 | function updateProgress() { 123 | if (IS_VERBOSE) return; 124 | 125 | progress.update(seen); 126 | } 127 | 128 | async function traverseGraph() { 129 | async function processDep(depName) { 130 | if (IS_VERBOSE) { 131 | console.debug(`Processed ${SEEN_DEPS.size}. Processing ${depName}`); 132 | } else { 133 | showProgress(); 134 | } 135 | 136 | let shouldSkipMaintainers = IN_MONOREPO.has(depName); 137 | let info = getMonorepoPackage(depName) || (await getPackageInfo(depName)); 138 | 139 | seen++; 140 | updateProgress(); 141 | if (!info) { 142 | return; 143 | } 144 | 145 | HAS_INFO.add(info); 146 | 147 | if (!shouldSkipMaintainers) { 148 | updateMaintainers(info); 149 | } 150 | 151 | let subDeps = await getDeclaredDeps(info); 152 | 153 | QUEUE.push(...subDeps); 154 | } 155 | 156 | async function prepareBatch(batch) { 157 | await Promise.all( 158 | batch.map((depName) => { 159 | if (SEEN_DEPS.has(depName)) return; 160 | 161 | total++; 162 | SEEN_DEPS.add(depName); 163 | return processDep(depName); 164 | }), 165 | ); 166 | } 167 | 168 | while (QUEUE.length > 0) { 169 | let batch = []; 170 | 171 | for (let i = 0; i < Math.min(QUEUE.length, BATCH_SIZE); i++) { 172 | let depName = QUEUE.pop(); 173 | 174 | if (SEEN_DEPS.has(depName)) { 175 | i--; 176 | continue; 177 | } 178 | 179 | batch.push(depName); 180 | } 181 | 182 | await prepareBatch(batch); 183 | } 184 | } 185 | 186 | let rootDeps = []; 187 | 188 | if (args.values.recursive) { 189 | let all = getAllPackageJSONs(); 190 | 191 | console.log(`Getting maintainers for all ${all.length} packages...`); 192 | 193 | for (let rootJson of all) { 194 | rootDeps = await getDeclaredDeps(rootJson, true); 195 | } 196 | } else { 197 | let rootJson = await readPackageJson(); 198 | rootDeps = await getDeclaredDeps(rootJson, true); 199 | } 200 | 201 | QUEUE.push(...rootDeps); 202 | await traverseGraph(); 203 | 204 | progress.stop(); 205 | printSummary(); 206 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: '9.0' 2 | 3 | settings: 4 | autoInstallPeers: true 5 | excludeLinksFromLockfile: false 6 | 7 | importers: 8 | 9 | .: 10 | dependencies: 11 | '@manypkg/get-packages': 12 | specifier: ^2.2.1 13 | version: 2.2.1 14 | cli-progress: 15 | specifier: ^3.12.0 16 | version: 3.12.0 17 | execa: 18 | specifier: ^9.2.0 19 | version: 9.2.0 20 | devDependencies: 21 | prettier: 22 | specifier: ^3.3.2 23 | version: 3.3.2 24 | release-plan: 25 | specifier: ^0.9.0 26 | version: 0.9.0(encoding@0.1.13) 27 | typescript: 28 | specifier: ^5.5.2 29 | version: 5.5.2 30 | 31 | packages: 32 | 33 | '@gar/promisify@1.1.3': 34 | resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==} 35 | 36 | '@isaacs/cliui@8.0.2': 37 | resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} 38 | engines: {node: '>=12'} 39 | 40 | '@manypkg/find-root@2.2.1': 41 | resolution: {integrity: sha512-34NlypD5mmTY65cFAK7QPgY5Tzt0qXR4ZRXdg97xAlkiLuwXUPBEXy5Hsqzd+7S2acsLxUz6Cs50rlDZQr4xUA==} 42 | engines: {node: '>=14.18.0'} 43 | 44 | '@manypkg/get-packages@2.2.1': 45 | resolution: {integrity: sha512-TrJd86paBkKEx6InhObcUhuoJNcATlbO6+s1dQdLd4+Y1SLDKJUAMhU46kTZ1SOFbegTuhDbIF3j+Jy564BERA==} 46 | engines: {node: '>=14.18.0'} 47 | 48 | '@manypkg/tools@1.1.0': 49 | resolution: {integrity: sha512-SkAyKAByB9l93Slyg8AUHGuM2kjvWioUTCckT/03J09jYnfEzMO/wSXmEhnKGYs6qx9De8TH4yJCl0Y9lRgnyQ==} 50 | engines: {node: '>=14.18.0'} 51 | 52 | '@nodelib/fs.scandir@2.1.5': 53 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} 54 | engines: {node: '>= 8'} 55 | 56 | '@nodelib/fs.stat@2.0.5': 57 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 58 | engines: {node: '>= 8'} 59 | 60 | '@nodelib/fs.walk@1.2.8': 61 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 62 | engines: {node: '>= 8'} 63 | 64 | '@npmcli/fs@1.1.1': 65 | resolution: {integrity: sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==} 66 | 67 | '@npmcli/git@5.0.7': 68 | resolution: {integrity: sha512-WaOVvto604d5IpdCRV2KjQu8PzkfE96d50CQGKgywXh2GxXmDeUO5EWcBC4V57uFyrNqx83+MewuJh3WTR3xPA==} 69 | engines: {node: ^16.14.0 || >=18.0.0} 70 | 71 | '@npmcli/move-file@1.1.2': 72 | resolution: {integrity: sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==} 73 | engines: {node: '>=10'} 74 | deprecated: This functionality has been moved to @npmcli/fs 75 | 76 | '@npmcli/package-json@5.2.0': 77 | resolution: {integrity: sha512-qe/kiqqkW0AGtvBjL8TJKZk/eBBSpnJkUWvHdQ9jM2lKHXRYYJuyNpJPlJw3c8QjC2ow6NZYiLExhUaeJelbxQ==} 78 | engines: {node: ^16.14.0 || >=18.0.0} 79 | 80 | '@npmcli/promise-spawn@7.0.2': 81 | resolution: {integrity: sha512-xhfYPXoV5Dy4UkY0D+v2KkwvnDfiA/8Mt3sWCGI/hM03NsYIH8ZaG6QzS9x7pje5vHZBZJ2v6VRFVTWACnqcmQ==} 82 | engines: {node: ^16.14.0 || >=18.0.0} 83 | 84 | '@octokit/auth-token@3.0.4': 85 | resolution: {integrity: sha512-TWFX7cZF2LXoCvdmJWY7XVPi74aSY0+FfBZNSXEXFkMpjcqsQwDSYVv5FhRFaI0V1ECnwbz4j59T/G+rXNWaIQ==} 86 | engines: {node: '>= 14'} 87 | 88 | '@octokit/core@4.2.4': 89 | resolution: {integrity: sha512-rYKilwgzQ7/imScn3M9/pFfUf4I1AZEH3KhyJmtPdE2zfaXAn2mFfUy4FbKewzc2We5y/LlKLj36fWJLKC2SIQ==} 90 | engines: {node: '>= 14'} 91 | 92 | '@octokit/endpoint@7.0.6': 93 | resolution: {integrity: sha512-5L4fseVRUsDFGR00tMWD/Trdeeihn999rTMGRMC1G/Ldi1uWlWJzI98H4Iak5DB/RVvQuyMYKqSK/R6mbSOQyg==} 94 | engines: {node: '>= 14'} 95 | 96 | '@octokit/graphql@5.0.6': 97 | resolution: {integrity: sha512-Fxyxdy/JH0MnIB5h+UQ3yCoh1FG4kWXfFKkpWqjZHw/p+Kc8Y44Hu/kCgNBT6nU1shNumEchmW/sUO1JuQnPcw==} 98 | engines: {node: '>= 14'} 99 | 100 | '@octokit/openapi-types@18.1.1': 101 | resolution: {integrity: sha512-VRaeH8nCDtF5aXWnjPuEMIYf1itK/s3JYyJcWFJT8X9pSNnBtriDf7wlEWsGuhPLl4QIH4xM8fqTXDwJ3Mu6sw==} 102 | 103 | '@octokit/plugin-paginate-rest@6.1.2': 104 | resolution: {integrity: sha512-qhrmtQeHU/IivxucOV1bbI/xZyC/iOBhclokv7Sut5vnejAIAEXVcGQeRpQlU39E0WwK9lNvJHphHri/DB6lbQ==} 105 | engines: {node: '>= 14'} 106 | peerDependencies: 107 | '@octokit/core': '>=4' 108 | 109 | '@octokit/plugin-request-log@1.0.4': 110 | resolution: {integrity: sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==} 111 | peerDependencies: 112 | '@octokit/core': '>=3' 113 | 114 | '@octokit/plugin-rest-endpoint-methods@7.2.3': 115 | resolution: {integrity: sha512-I5Gml6kTAkzVlN7KCtjOM+Ruwe/rQppp0QU372K1GP7kNOYEKe8Xn5BW4sE62JAHdwpq95OQK/qGNyKQMUzVgA==} 116 | engines: {node: '>= 14'} 117 | peerDependencies: 118 | '@octokit/core': '>=3' 119 | 120 | '@octokit/request-error@3.0.3': 121 | resolution: {integrity: sha512-crqw3V5Iy2uOU5Np+8M/YexTlT8zxCfI+qu+LxUB7SZpje4Qmx3mub5DfEKSO8Ylyk0aogi6TYdf6kxzh2BguQ==} 122 | engines: {node: '>= 14'} 123 | 124 | '@octokit/request@6.2.8': 125 | resolution: {integrity: sha512-ow4+pkVQ+6XVVsekSYBzJC0VTVvh/FCTUUgTsboGq+DTeWdyIFV8WSCdo0RIxk6wSkBTHqIK1mYuY7nOBXOchw==} 126 | engines: {node: '>= 14'} 127 | 128 | '@octokit/rest@19.0.13': 129 | resolution: {integrity: sha512-/EzVox5V9gYGdbAI+ovYj3nXQT1TtTHRT+0eZPcuC05UFSWO3mdO9UY1C0i2eLF9Un1ONJkAk+IEtYGAC+TahA==} 130 | engines: {node: '>= 14'} 131 | 132 | '@octokit/tsconfig@1.0.2': 133 | resolution: {integrity: sha512-I0vDR0rdtP8p2lGMzvsJzbhdOWy405HcGovrspJ8RRibHnyRgggUSNO5AIox5LmqiwmatHKYsvj6VGFHkqS7lA==} 134 | 135 | '@octokit/types@10.0.0': 136 | resolution: {integrity: sha512-Vm8IddVmhCgU1fxC1eyinpwqzXPEYu0NrYzD3YZjlGjyftdLBTeqNblRC0jmJmgxbJIsQlyogVeGnrNaaMVzIg==} 137 | 138 | '@octokit/types@9.3.2': 139 | resolution: {integrity: sha512-D4iHGTdAnEEVsB8fl95m1hiz7D5YiRdQ9b/OEb3BYRVwbLsGHcRVPz+u+BgRLNk0Q0/4iZCBqDN96j2XNxfXrA==} 140 | 141 | '@pkgjs/parseargs@0.11.0': 142 | resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} 143 | engines: {node: '>=14'} 144 | 145 | '@sec-ant/readable-stream@0.4.1': 146 | resolution: {integrity: sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==} 147 | 148 | '@sindresorhus/is@0.14.0': 149 | resolution: {integrity: sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==} 150 | engines: {node: '>=6'} 151 | 152 | '@sindresorhus/merge-streams@4.0.0': 153 | resolution: {integrity: sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==} 154 | engines: {node: '>=18'} 155 | 156 | '@szmarczak/http-timer@1.1.2': 157 | resolution: {integrity: sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==} 158 | engines: {node: '>=6'} 159 | 160 | '@tootallnate/once@1.1.2': 161 | resolution: {integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==} 162 | engines: {node: '>= 6'} 163 | 164 | '@types/fs-extra@9.0.13': 165 | resolution: {integrity: sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==} 166 | 167 | '@types/js-yaml@4.0.9': 168 | resolution: {integrity: sha512-k4MGaQl5TGo/iipqb2UDG2UwjXziSWkh0uysQelTlJpX1qGlpUZYm8PnO4DxG1qBomtJUdYJ6qR6xdIah10JLg==} 169 | 170 | '@types/keyv@3.1.4': 171 | resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==} 172 | 173 | '@types/node@20.14.7': 174 | resolution: {integrity: sha512-uTr2m2IbJJucF3KUxgnGOZvYbN0QgkGyWxG6973HCpMYFy2KfcgYuIwkJQMQkt1VbBMlvWRbpshFTLxnxCZjKQ==} 175 | 176 | '@types/responselike@1.0.3': 177 | resolution: {integrity: sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==} 178 | 179 | '@types/semver@7.5.8': 180 | resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==} 181 | 182 | '@types/yargs-parser@21.0.3': 183 | resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==} 184 | 185 | '@types/yargs@17.0.32': 186 | resolution: {integrity: sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==} 187 | 188 | agent-base@6.0.2: 189 | resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} 190 | engines: {node: '>= 6.0.0'} 191 | 192 | agentkeepalive@4.5.0: 193 | resolution: {integrity: sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==} 194 | engines: {node: '>= 8.0.0'} 195 | 196 | aggregate-error@3.1.0: 197 | resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} 198 | engines: {node: '>=8'} 199 | 200 | ansi-regex@5.0.1: 201 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 202 | engines: {node: '>=8'} 203 | 204 | ansi-regex@6.0.1: 205 | resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} 206 | engines: {node: '>=12'} 207 | 208 | ansi-styles@4.3.0: 209 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 210 | engines: {node: '>=8'} 211 | 212 | ansi-styles@6.2.1: 213 | resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} 214 | engines: {node: '>=12'} 215 | 216 | any-promise@1.3.0: 217 | resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} 218 | 219 | argparse@1.0.10: 220 | resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} 221 | 222 | argparse@2.0.1: 223 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 224 | 225 | array-union@2.1.0: 226 | resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} 227 | engines: {node: '>=8'} 228 | 229 | assert-never@1.2.1: 230 | resolution: {integrity: sha512-TaTivMB6pYI1kXwrFlEhLeGfOqoDNdTxjCdwRfFFkEA30Eu+k48W34nlok2EYWJfFFzqaEmichdNM7th6M5HNw==} 231 | 232 | balanced-match@1.0.2: 233 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 234 | 235 | before-after-hook@2.2.3: 236 | resolution: {integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==} 237 | 238 | brace-expansion@1.1.11: 239 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} 240 | 241 | brace-expansion@2.0.1: 242 | resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} 243 | 244 | braces@3.0.3: 245 | resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} 246 | engines: {node: '>=8'} 247 | 248 | cacache@15.3.0: 249 | resolution: {integrity: sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==} 250 | engines: {node: '>= 10'} 251 | 252 | cacheable-request@6.1.0: 253 | resolution: {integrity: sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==} 254 | engines: {node: '>=8'} 255 | 256 | chalk@4.1.2: 257 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} 258 | engines: {node: '>=10'} 259 | 260 | chownr@2.0.0: 261 | resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==} 262 | engines: {node: '>=10'} 263 | 264 | clean-stack@2.2.0: 265 | resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} 266 | engines: {node: '>=6'} 267 | 268 | cli-highlight@2.1.11: 269 | resolution: {integrity: sha512-9KDcoEVwyUXrjcJNvHD0NFc/hiwe/WPVYIleQh2O1N2Zro5gWJZ/K+3DGn8w8P/F6FxOgzyC5bxDyHIgCSPhGg==} 270 | engines: {node: '>=8.0.0', npm: '>=5.0.0'} 271 | hasBin: true 272 | 273 | cli-progress@3.12.0: 274 | resolution: {integrity: sha512-tRkV3HJ1ASwm19THiiLIXLO7Im7wlTuKnvkYaTkyoAPefqjNg7W7DHKUlGRxy9vxDvbyCYQkQozvptuMkGCg8A==} 275 | engines: {node: '>=4'} 276 | 277 | cliui@7.0.4: 278 | resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==} 279 | 280 | cliui@8.0.1: 281 | resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} 282 | engines: {node: '>=12'} 283 | 284 | clone-response@1.0.3: 285 | resolution: {integrity: sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==} 286 | 287 | color-convert@2.0.1: 288 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 289 | engines: {node: '>=7.0.0'} 290 | 291 | color-name@1.1.4: 292 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 293 | 294 | concat-map@0.0.1: 295 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} 296 | 297 | cross-spawn@7.0.3: 298 | resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} 299 | engines: {node: '>= 8'} 300 | 301 | debug@4.3.5: 302 | resolution: {integrity: sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==} 303 | engines: {node: '>=6.0'} 304 | peerDependencies: 305 | supports-color: '*' 306 | peerDependenciesMeta: 307 | supports-color: 308 | optional: true 309 | 310 | decompress-response@3.3.0: 311 | resolution: {integrity: sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==} 312 | engines: {node: '>=4'} 313 | 314 | deep-extend@0.6.0: 315 | resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} 316 | engines: {node: '>=4.0.0'} 317 | 318 | defer-to-connect@1.1.3: 319 | resolution: {integrity: sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==} 320 | 321 | deprecation@2.3.1: 322 | resolution: {integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==} 323 | 324 | dir-glob@3.0.1: 325 | resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} 326 | engines: {node: '>=8'} 327 | 328 | duplexer3@0.1.5: 329 | resolution: {integrity: sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==} 330 | 331 | eastasianwidth@0.2.0: 332 | resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} 333 | 334 | emoji-regex@8.0.0: 335 | resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} 336 | 337 | emoji-regex@9.2.2: 338 | resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} 339 | 340 | encoding@0.1.13: 341 | resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==} 342 | 343 | end-of-stream@1.4.4: 344 | resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} 345 | 346 | err-code@2.0.3: 347 | resolution: {integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==} 348 | 349 | escalade@3.1.2: 350 | resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==} 351 | engines: {node: '>=6'} 352 | 353 | esprima@4.0.1: 354 | resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} 355 | engines: {node: '>=4'} 356 | hasBin: true 357 | 358 | execa@4.1.0: 359 | resolution: {integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==} 360 | engines: {node: '>=10'} 361 | 362 | execa@5.1.1: 363 | resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} 364 | engines: {node: '>=10'} 365 | 366 | execa@9.2.0: 367 | resolution: {integrity: sha512-vpOyYg7UAVKLAWWtRS2gAdgkT7oJbCn0me3gmUmxZih4kd3MF/oo8kNTBTIbkO3yuuF5uB4ZCZfn8BOolITYhg==} 368 | engines: {node: ^18.19.0 || >=20.5.0} 369 | 370 | fast-glob@3.3.2: 371 | resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} 372 | engines: {node: '>=8.6.0'} 373 | 374 | fastq@1.17.1: 375 | resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==} 376 | 377 | figures@6.1.0: 378 | resolution: {integrity: sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg==} 379 | engines: {node: '>=18'} 380 | 381 | fill-range@7.1.1: 382 | resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} 383 | engines: {node: '>=8'} 384 | 385 | find-up@4.1.0: 386 | resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} 387 | engines: {node: '>=8'} 388 | 389 | foreground-child@3.2.1: 390 | resolution: {integrity: sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA==} 391 | engines: {node: '>=14'} 392 | 393 | fs-extra@10.1.0: 394 | resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==} 395 | engines: {node: '>=12'} 396 | 397 | fs-extra@8.1.0: 398 | resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==} 399 | engines: {node: '>=6 <7 || >=8'} 400 | 401 | fs-minipass@2.1.0: 402 | resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==} 403 | engines: {node: '>= 8'} 404 | 405 | fs.realpath@1.0.0: 406 | resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} 407 | 408 | function-bind@1.1.2: 409 | resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} 410 | 411 | get-caller-file@2.0.5: 412 | resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} 413 | engines: {node: 6.* || 8.* || >= 10.*} 414 | 415 | get-stream@4.1.0: 416 | resolution: {integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==} 417 | engines: {node: '>=6'} 418 | 419 | get-stream@5.2.0: 420 | resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==} 421 | engines: {node: '>=8'} 422 | 423 | get-stream@6.0.1: 424 | resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} 425 | engines: {node: '>=10'} 426 | 427 | get-stream@9.0.1: 428 | resolution: {integrity: sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA==} 429 | engines: {node: '>=18'} 430 | 431 | github-changelog@1.0.2: 432 | resolution: {integrity: sha512-ieWWj+wEHcWwhofXOB6HwxYbRCmWMZ8q8NHjt+g8d0GVA8AJE3h7uxjZ9ZqT8l9TPrGH5HRjaVOqO3PiU4pUSQ==} 433 | engines: {node: 12.* || 14.* || >= 16} 434 | hasBin: true 435 | 436 | glob-parent@5.1.2: 437 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 438 | engines: {node: '>= 6'} 439 | 440 | glob@10.4.2: 441 | resolution: {integrity: sha512-GwMlUF6PkPo3Gk21UxkCohOv0PLcIXVtKyLlpEI28R/cO/4eNOdmLk3CMW1wROV/WR/EsZOWAfBbBOqYvs88/w==} 442 | engines: {node: '>=16 || 14 >=14.18'} 443 | hasBin: true 444 | 445 | glob@7.2.3: 446 | resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} 447 | deprecated: Glob versions prior to v9 are no longer supported 448 | 449 | globby@11.1.0: 450 | resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} 451 | engines: {node: '>=10'} 452 | 453 | got@9.6.0: 454 | resolution: {integrity: sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==} 455 | engines: {node: '>=8.6'} 456 | 457 | graceful-fs@4.2.11: 458 | resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} 459 | 460 | has-flag@4.0.0: 461 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 462 | engines: {node: '>=8'} 463 | 464 | hasown@2.0.2: 465 | resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} 466 | engines: {node: '>= 0.4'} 467 | 468 | highlight.js@10.7.3: 469 | resolution: {integrity: sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==} 470 | 471 | hosted-git-info@4.1.0: 472 | resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==} 473 | engines: {node: '>=10'} 474 | 475 | hosted-git-info@7.0.2: 476 | resolution: {integrity: sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==} 477 | engines: {node: ^16.14.0 || >=18.0.0} 478 | 479 | http-cache-semantics@4.1.1: 480 | resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==} 481 | 482 | http-proxy-agent@4.0.1: 483 | resolution: {integrity: sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==} 484 | engines: {node: '>= 6'} 485 | 486 | https-proxy-agent@5.0.1: 487 | resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==} 488 | engines: {node: '>= 6'} 489 | 490 | human-signals@1.1.1: 491 | resolution: {integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==} 492 | engines: {node: '>=8.12.0'} 493 | 494 | human-signals@2.1.0: 495 | resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} 496 | engines: {node: '>=10.17.0'} 497 | 498 | human-signals@7.0.0: 499 | resolution: {integrity: sha512-74kytxOUSvNbjrT9KisAbaTZ/eJwD/LrbM/kh5j0IhPuJzwuA19dWvniFGwBzN9rVjg+O/e+F310PjObDXS+9Q==} 500 | engines: {node: '>=18.18.0'} 501 | 502 | humanize-ms@1.2.1: 503 | resolution: {integrity: sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==} 504 | 505 | iconv-lite@0.6.3: 506 | resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} 507 | engines: {node: '>=0.10.0'} 508 | 509 | ignore@5.3.1: 510 | resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==} 511 | engines: {node: '>= 4'} 512 | 513 | imurmurhash@0.1.4: 514 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} 515 | engines: {node: '>=0.8.19'} 516 | 517 | indent-string@4.0.0: 518 | resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} 519 | engines: {node: '>=8'} 520 | 521 | infer-owner@1.0.4: 522 | resolution: {integrity: sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==} 523 | 524 | inflight@1.0.6: 525 | resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} 526 | deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. 527 | 528 | inherits@2.0.4: 529 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} 530 | 531 | ini@1.3.8: 532 | resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} 533 | 534 | ip-address@9.0.5: 535 | resolution: {integrity: sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==} 536 | engines: {node: '>= 12'} 537 | 538 | is-core-module@2.14.0: 539 | resolution: {integrity: sha512-a5dFJih5ZLYlRtDc0dZWP7RiKr6xIKzmn/oAYCDvdLThadVgyJwlaoQPmRtMSpz+rk0OGAgIu+TcM9HUF0fk1A==} 540 | engines: {node: '>= 0.4'} 541 | 542 | is-extglob@2.1.1: 543 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 544 | engines: {node: '>=0.10.0'} 545 | 546 | is-fullwidth-code-point@3.0.0: 547 | resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} 548 | engines: {node: '>=8'} 549 | 550 | is-glob@4.0.3: 551 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 552 | engines: {node: '>=0.10.0'} 553 | 554 | is-lambda@1.0.1: 555 | resolution: {integrity: sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==} 556 | 557 | is-number@7.0.0: 558 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 559 | engines: {node: '>=0.12.0'} 560 | 561 | is-plain-obj@4.1.0: 562 | resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==} 563 | engines: {node: '>=12'} 564 | 565 | is-plain-object@5.0.0: 566 | resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==} 567 | engines: {node: '>=0.10.0'} 568 | 569 | is-stream@2.0.1: 570 | resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} 571 | engines: {node: '>=8'} 572 | 573 | is-stream@4.0.1: 574 | resolution: {integrity: sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A==} 575 | engines: {node: '>=18'} 576 | 577 | is-unicode-supported@2.0.0: 578 | resolution: {integrity: sha512-FRdAyx5lusK1iHG0TWpVtk9+1i+GjrzRffhDg4ovQ7mcidMQ6mj+MhKPmvh7Xwyv5gIS06ns49CA7Sqg7lC22Q==} 579 | engines: {node: '>=18'} 580 | 581 | isexe@2.0.0: 582 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 583 | 584 | isexe@3.1.1: 585 | resolution: {integrity: sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==} 586 | engines: {node: '>=16'} 587 | 588 | jackspeak@3.4.0: 589 | resolution: {integrity: sha512-JVYhQnN59LVPFCEcVa2C3CrEKYacvjRfqIQl+h8oi91aLYQVWRYbxjPcv1bUiUy/kLmQaANrYfNMCO3kuEDHfw==} 590 | engines: {node: '>=14'} 591 | 592 | jju@1.4.0: 593 | resolution: {integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==} 594 | 595 | js-yaml@3.14.1: 596 | resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} 597 | hasBin: true 598 | 599 | js-yaml@4.1.0: 600 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 601 | hasBin: true 602 | 603 | jsbn@1.1.0: 604 | resolution: {integrity: sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==} 605 | 606 | json-buffer@3.0.0: 607 | resolution: {integrity: sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==} 608 | 609 | json-parse-even-better-errors@3.0.2: 610 | resolution: {integrity: sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==} 611 | engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} 612 | 613 | jsonfile@4.0.0: 614 | resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} 615 | 616 | jsonfile@6.1.0: 617 | resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} 618 | 619 | keyv@3.1.0: 620 | resolution: {integrity: sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==} 621 | 622 | latest-version@5.1.0: 623 | resolution: {integrity: sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==} 624 | engines: {node: '>=8'} 625 | 626 | locate-path@5.0.0: 627 | resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} 628 | engines: {node: '>=8'} 629 | 630 | lowercase-keys@1.0.1: 631 | resolution: {integrity: sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==} 632 | engines: {node: '>=0.10.0'} 633 | 634 | lowercase-keys@2.0.0: 635 | resolution: {integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==} 636 | engines: {node: '>=8'} 637 | 638 | lru-cache@10.2.2: 639 | resolution: {integrity: sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==} 640 | engines: {node: 14 || >=16.14} 641 | 642 | lru-cache@6.0.0: 643 | resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} 644 | engines: {node: '>=10'} 645 | 646 | make-fetch-happen@9.1.0: 647 | resolution: {integrity: sha512-+zopwDy7DNknmwPQplem5lAZX/eCOzSvSNNcSKm5eVwTkOBzoktEfXsa9L23J/GIRhxRsaxzkPEhrJEpE2F4Gg==} 648 | engines: {node: '>= 10'} 649 | 650 | merge-stream@2.0.0: 651 | resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} 652 | 653 | merge2@1.4.1: 654 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 655 | engines: {node: '>= 8'} 656 | 657 | micromatch@4.0.7: 658 | resolution: {integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==} 659 | engines: {node: '>=8.6'} 660 | 661 | mimic-fn@2.1.0: 662 | resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} 663 | engines: {node: '>=6'} 664 | 665 | mimic-response@1.0.1: 666 | resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==} 667 | engines: {node: '>=4'} 668 | 669 | minimatch@3.1.2: 670 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} 671 | 672 | minimatch@9.0.4: 673 | resolution: {integrity: sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==} 674 | engines: {node: '>=16 || 14 >=14.17'} 675 | 676 | minimist@1.2.8: 677 | resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} 678 | 679 | minipass-collect@1.0.2: 680 | resolution: {integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==} 681 | engines: {node: '>= 8'} 682 | 683 | minipass-fetch@1.4.1: 684 | resolution: {integrity: sha512-CGH1eblLq26Y15+Azk7ey4xh0J/XfJfrCox5LDJiKqI2Q2iwOLOKrlmIaODiSQS8d18jalF6y2K2ePUm0CmShw==} 685 | engines: {node: '>=8'} 686 | 687 | minipass-flush@1.0.5: 688 | resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==} 689 | engines: {node: '>= 8'} 690 | 691 | minipass-pipeline@1.2.4: 692 | resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==} 693 | engines: {node: '>=8'} 694 | 695 | minipass-sized@1.0.3: 696 | resolution: {integrity: sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==} 697 | engines: {node: '>=8'} 698 | 699 | minipass@3.3.6: 700 | resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==} 701 | engines: {node: '>=8'} 702 | 703 | minipass@5.0.0: 704 | resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==} 705 | engines: {node: '>=8'} 706 | 707 | minipass@7.1.2: 708 | resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} 709 | engines: {node: '>=16 || 14 >=14.17'} 710 | 711 | minizlib@2.1.2: 712 | resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} 713 | engines: {node: '>= 8'} 714 | 715 | mkdirp@1.0.4: 716 | resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} 717 | engines: {node: '>=10'} 718 | hasBin: true 719 | 720 | ms@2.1.2: 721 | resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} 722 | 723 | ms@2.1.3: 724 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 725 | 726 | mz@2.7.0: 727 | resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} 728 | 729 | negotiator@0.6.3: 730 | resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} 731 | engines: {node: '>= 0.6'} 732 | 733 | node-fetch@2.7.0: 734 | resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} 735 | engines: {node: 4.x || >=6.0.0} 736 | peerDependencies: 737 | encoding: ^0.1.0 738 | peerDependenciesMeta: 739 | encoding: 740 | optional: true 741 | 742 | normalize-package-data@6.0.1: 743 | resolution: {integrity: sha512-6rvCfeRW+OEZagAB4lMLSNuTNYZWLVtKccK79VSTf//yTY5VOCgcpH80O+bZK8Neps7pUnd5G+QlMg1yV/2iZQ==} 744 | engines: {node: ^16.14.0 || >=18.0.0} 745 | 746 | normalize-url@4.5.1: 747 | resolution: {integrity: sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==} 748 | engines: {node: '>=8'} 749 | 750 | npm-install-checks@6.3.0: 751 | resolution: {integrity: sha512-W29RiK/xtpCGqn6f3ixfRYGk+zRyr+Ew9F2E20BfXxT5/euLdA/Nm7fO7OeTGuAmTs30cpgInyJ0cYe708YTZw==} 752 | engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} 753 | 754 | npm-normalize-package-bin@3.0.1: 755 | resolution: {integrity: sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==} 756 | engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} 757 | 758 | npm-package-arg@11.0.2: 759 | resolution: {integrity: sha512-IGN0IAwmhDJwy13Wc8k+4PEbTPhpJnMtfR53ZbOyjkvmEcLS4nCwp6mvMWjS5sUjeiW3mpx6cHmuhKEu9XmcQw==} 760 | engines: {node: ^16.14.0 || >=18.0.0} 761 | 762 | npm-pick-manifest@9.0.1: 763 | resolution: {integrity: sha512-Udm1f0l2nXb3wxDpKjfohwgdFUSV50UVwzEIpDXVsbDMXVIEF81a/i0UhuQbhrPMMmdiq3+YMFLFIRVLs3hxQw==} 764 | engines: {node: ^16.14.0 || >=18.0.0} 765 | 766 | npm-run-path@4.0.1: 767 | resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} 768 | engines: {node: '>=8'} 769 | 770 | npm-run-path@5.3.0: 771 | resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==} 772 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 773 | 774 | object-assign@4.1.1: 775 | resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} 776 | engines: {node: '>=0.10.0'} 777 | 778 | once@1.4.0: 779 | resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} 780 | 781 | onetime@5.1.2: 782 | resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} 783 | engines: {node: '>=6'} 784 | 785 | p-cancelable@1.1.0: 786 | resolution: {integrity: sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==} 787 | engines: {node: '>=6'} 788 | 789 | p-limit@2.3.0: 790 | resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} 791 | engines: {node: '>=6'} 792 | 793 | p-locate@4.1.0: 794 | resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} 795 | engines: {node: '>=8'} 796 | 797 | p-map@3.0.0: 798 | resolution: {integrity: sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==} 799 | engines: {node: '>=8'} 800 | 801 | p-map@4.0.0: 802 | resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==} 803 | engines: {node: '>=10'} 804 | 805 | p-try@2.2.0: 806 | resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} 807 | engines: {node: '>=6'} 808 | 809 | package-json-from-dist@1.0.0: 810 | resolution: {integrity: sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==} 811 | 812 | package-json@6.5.0: 813 | resolution: {integrity: sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==} 814 | engines: {node: '>=8'} 815 | 816 | parse-github-repo-url@1.4.1: 817 | resolution: {integrity: sha512-bSWyzBKqcSL4RrncTpGsEKoJ7H8a4L3++ifTAbTFeMHyq2wRV+42DGmQcHIrJIvdcacjIOxEuKH/w4tthF17gg==} 818 | 819 | parse-ms@4.0.0: 820 | resolution: {integrity: sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==} 821 | engines: {node: '>=18'} 822 | 823 | parse5-htmlparser2-tree-adapter@6.0.1: 824 | resolution: {integrity: sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==} 825 | 826 | parse5@5.1.1: 827 | resolution: {integrity: sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==} 828 | 829 | parse5@6.0.1: 830 | resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==} 831 | 832 | path-exists@4.0.0: 833 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} 834 | engines: {node: '>=8'} 835 | 836 | path-is-absolute@1.0.1: 837 | resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} 838 | engines: {node: '>=0.10.0'} 839 | 840 | path-key@3.1.1: 841 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 842 | engines: {node: '>=8'} 843 | 844 | path-key@4.0.0: 845 | resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==} 846 | engines: {node: '>=12'} 847 | 848 | path-scurry@1.11.1: 849 | resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} 850 | engines: {node: '>=16 || 14 >=14.18'} 851 | 852 | path-type@4.0.0: 853 | resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} 854 | engines: {node: '>=8'} 855 | 856 | picomatch@2.3.1: 857 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 858 | engines: {node: '>=8.6'} 859 | 860 | pify@4.0.1: 861 | resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} 862 | engines: {node: '>=6'} 863 | 864 | prepend-http@2.0.0: 865 | resolution: {integrity: sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==} 866 | engines: {node: '>=4'} 867 | 868 | prettier@3.3.2: 869 | resolution: {integrity: sha512-rAVeHYMcv8ATV5d508CFdn+8/pHPpXeIid1DdrPwXnaAdH7cqjVbpJaT5eq4yRAFU/lsbwYwSF/n5iNrdJHPQA==} 870 | engines: {node: '>=14'} 871 | hasBin: true 872 | 873 | pretty-ms@9.0.0: 874 | resolution: {integrity: sha512-E9e9HJ9R9NasGOgPaPE8VMeiPKAyWR5jcFpNnwIejslIhWqdqOrb2wShBsncMPUb+BcCd2OPYfh7p2W6oemTng==} 875 | engines: {node: '>=18'} 876 | 877 | proc-log@4.2.0: 878 | resolution: {integrity: sha512-g8+OnU/L2v+wyiVK+D5fA34J7EH8jZ8DDlvwhRCMxmMj7UCBvxiO1mGeN+36JXIKF4zevU4kRBd8lVgG9vLelA==} 879 | engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} 880 | 881 | progress@2.0.3: 882 | resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==} 883 | engines: {node: '>=0.4.0'} 884 | 885 | promise-inflight@1.0.1: 886 | resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==} 887 | peerDependencies: 888 | bluebird: '*' 889 | peerDependenciesMeta: 890 | bluebird: 891 | optional: true 892 | 893 | promise-retry@2.0.1: 894 | resolution: {integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==} 895 | engines: {node: '>=10'} 896 | 897 | pump@3.0.0: 898 | resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==} 899 | 900 | queue-microtask@1.2.3: 901 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 902 | 903 | rc@1.2.8: 904 | resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} 905 | hasBin: true 906 | 907 | read-yaml-file@1.1.0: 908 | resolution: {integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==} 909 | engines: {node: '>=6'} 910 | 911 | registry-auth-token@4.2.2: 912 | resolution: {integrity: sha512-PC5ZysNb42zpFME6D/XlIgtNGdTl8bBOCw90xQLVMpzuuubJKYDWFAEuUNc+Cn8Z8724tg2SDhDRrkVEsqfDMg==} 913 | engines: {node: '>=6.0.0'} 914 | 915 | registry-url@5.1.0: 916 | resolution: {integrity: sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==} 917 | engines: {node: '>=8'} 918 | 919 | release-plan@0.9.0: 920 | resolution: {integrity: sha512-ckD2hwbnmrLEA325ndC5nQcxtuqm5Lp1Y05sa2yWAvgbN9SFG3F90n0VaHXj5JzQ6oAWDz88r0IRStHYOHXGOw==} 921 | hasBin: true 922 | 923 | require-directory@2.1.1: 924 | resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} 925 | engines: {node: '>=0.10.0'} 926 | 927 | responselike@1.0.2: 928 | resolution: {integrity: sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==} 929 | 930 | retry@0.12.0: 931 | resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==} 932 | engines: {node: '>= 4'} 933 | 934 | reusify@1.0.4: 935 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} 936 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 937 | 938 | rimraf@3.0.2: 939 | resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} 940 | deprecated: Rimraf versions prior to v4 are no longer supported 941 | hasBin: true 942 | 943 | run-parallel@1.2.0: 944 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 945 | 946 | safer-buffer@2.1.2: 947 | resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} 948 | 949 | semver@6.3.1: 950 | resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} 951 | hasBin: true 952 | 953 | semver@7.6.2: 954 | resolution: {integrity: sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==} 955 | engines: {node: '>=10'} 956 | hasBin: true 957 | 958 | shebang-command@2.0.0: 959 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 960 | engines: {node: '>=8'} 961 | 962 | shebang-regex@3.0.0: 963 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 964 | engines: {node: '>=8'} 965 | 966 | signal-exit@3.0.7: 967 | resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} 968 | 969 | signal-exit@4.1.0: 970 | resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} 971 | engines: {node: '>=14'} 972 | 973 | slash@3.0.0: 974 | resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} 975 | engines: {node: '>=8'} 976 | 977 | smart-buffer@4.2.0: 978 | resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==} 979 | engines: {node: '>= 6.0.0', npm: '>= 3.0.0'} 980 | 981 | socks-proxy-agent@6.2.1: 982 | resolution: {integrity: sha512-a6KW9G+6B3nWZ1yB8G7pJwL3ggLy1uTzKAgCb7ttblwqdz9fMGJUuTy3uFzEP48FAs9FLILlmzDlE2JJhVQaXQ==} 983 | engines: {node: '>= 10'} 984 | 985 | socks@2.8.3: 986 | resolution: {integrity: sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==} 987 | engines: {node: '>= 10.0.0', npm: '>= 3.0.0'} 988 | 989 | spdx-correct@3.2.0: 990 | resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} 991 | 992 | spdx-exceptions@2.5.0: 993 | resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==} 994 | 995 | spdx-expression-parse@3.0.1: 996 | resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} 997 | 998 | spdx-license-ids@3.0.18: 999 | resolution: {integrity: sha512-xxRs31BqRYHwiMzudOrpSiHtZ8i/GeionCBDSilhYRj+9gIcI8wCZTlXZKu9vZIVqViP3dcp9qE5G6AlIaD+TQ==} 1000 | 1001 | sprintf-js@1.0.3: 1002 | resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} 1003 | 1004 | sprintf-js@1.1.3: 1005 | resolution: {integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==} 1006 | 1007 | ssri@8.0.1: 1008 | resolution: {integrity: sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==} 1009 | engines: {node: '>= 8'} 1010 | 1011 | string-width@4.2.3: 1012 | resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} 1013 | engines: {node: '>=8'} 1014 | 1015 | string-width@5.1.2: 1016 | resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} 1017 | engines: {node: '>=12'} 1018 | 1019 | strip-ansi@6.0.1: 1020 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 1021 | engines: {node: '>=8'} 1022 | 1023 | strip-ansi@7.1.0: 1024 | resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} 1025 | engines: {node: '>=12'} 1026 | 1027 | strip-bom@3.0.0: 1028 | resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} 1029 | engines: {node: '>=4'} 1030 | 1031 | strip-final-newline@2.0.0: 1032 | resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} 1033 | engines: {node: '>=6'} 1034 | 1035 | strip-final-newline@4.0.0: 1036 | resolution: {integrity: sha512-aulFJcD6YK8V1G7iRB5tigAP4TsHBZZrOV8pjV++zdUwmeV8uzbY7yn6h9MswN62adStNZFuCIx4haBnRuMDaw==} 1037 | engines: {node: '>=18'} 1038 | 1039 | strip-json-comments@2.0.1: 1040 | resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==} 1041 | engines: {node: '>=0.10.0'} 1042 | 1043 | supports-color@7.2.0: 1044 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 1045 | engines: {node: '>=8'} 1046 | 1047 | tar@6.2.1: 1048 | resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==} 1049 | engines: {node: '>=10'} 1050 | 1051 | thenify-all@1.6.0: 1052 | resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==} 1053 | engines: {node: '>=0.8'} 1054 | 1055 | thenify@3.3.1: 1056 | resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} 1057 | 1058 | to-readable-stream@1.0.0: 1059 | resolution: {integrity: sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==} 1060 | engines: {node: '>=6'} 1061 | 1062 | to-regex-range@5.0.1: 1063 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 1064 | engines: {node: '>=8.0'} 1065 | 1066 | tr46@0.0.3: 1067 | resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} 1068 | 1069 | typescript@5.5.2: 1070 | resolution: {integrity: sha512-NcRtPEOsPFFWjobJEtfihkLCZCXZt/os3zf8nTxjVH3RvTSxjrCamJpbExGvYOF+tFHc3pA65qpdwPbzjohhew==} 1071 | engines: {node: '>=14.17'} 1072 | hasBin: true 1073 | 1074 | undici-types@5.26.5: 1075 | resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} 1076 | 1077 | unique-filename@1.1.1: 1078 | resolution: {integrity: sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==} 1079 | 1080 | unique-slug@2.0.2: 1081 | resolution: {integrity: sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==} 1082 | 1083 | universal-user-agent@6.0.1: 1084 | resolution: {integrity: sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==} 1085 | 1086 | universalify@0.1.2: 1087 | resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} 1088 | engines: {node: '>= 4.0.0'} 1089 | 1090 | universalify@2.0.1: 1091 | resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} 1092 | engines: {node: '>= 10.0.0'} 1093 | 1094 | url-parse-lax@3.0.0: 1095 | resolution: {integrity: sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==} 1096 | engines: {node: '>=4'} 1097 | 1098 | validate-npm-package-license@3.0.4: 1099 | resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} 1100 | 1101 | validate-npm-package-name@5.0.1: 1102 | resolution: {integrity: sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==} 1103 | engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} 1104 | 1105 | webidl-conversions@3.0.1: 1106 | resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} 1107 | 1108 | whatwg-url@5.0.0: 1109 | resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} 1110 | 1111 | which@2.0.2: 1112 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 1113 | engines: {node: '>= 8'} 1114 | hasBin: true 1115 | 1116 | which@4.0.0: 1117 | resolution: {integrity: sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==} 1118 | engines: {node: ^16.13.0 || >=18.0.0} 1119 | hasBin: true 1120 | 1121 | wrap-ansi@7.0.0: 1122 | resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} 1123 | engines: {node: '>=10'} 1124 | 1125 | wrap-ansi@8.1.0: 1126 | resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} 1127 | engines: {node: '>=12'} 1128 | 1129 | wrappy@1.0.2: 1130 | resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} 1131 | 1132 | y18n@5.0.8: 1133 | resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} 1134 | engines: {node: '>=10'} 1135 | 1136 | yallist@4.0.0: 1137 | resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} 1138 | 1139 | yargs-parser@20.2.9: 1140 | resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==} 1141 | engines: {node: '>=10'} 1142 | 1143 | yargs-parser@21.1.1: 1144 | resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} 1145 | engines: {node: '>=12'} 1146 | 1147 | yargs@16.2.0: 1148 | resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==} 1149 | engines: {node: '>=10'} 1150 | 1151 | yargs@17.7.2: 1152 | resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} 1153 | engines: {node: '>=12'} 1154 | 1155 | yoctocolors@2.0.2: 1156 | resolution: {integrity: sha512-Ct97huExsu7cWeEjmrXlofevF8CvzUglJ4iGUet5B8xn1oumtAZBpHU4GzYuoE6PVqcZ5hghtBrSlhwHuR1Jmw==} 1157 | engines: {node: '>=18'} 1158 | 1159 | snapshots: 1160 | 1161 | '@gar/promisify@1.1.3': {} 1162 | 1163 | '@isaacs/cliui@8.0.2': 1164 | dependencies: 1165 | string-width: 5.1.2 1166 | string-width-cjs: string-width@4.2.3 1167 | strip-ansi: 7.1.0 1168 | strip-ansi-cjs: strip-ansi@6.0.1 1169 | wrap-ansi: 8.1.0 1170 | wrap-ansi-cjs: wrap-ansi@7.0.0 1171 | 1172 | '@manypkg/find-root@2.2.1': 1173 | dependencies: 1174 | '@manypkg/tools': 1.1.0 1175 | find-up: 4.1.0 1176 | fs-extra: 8.1.0 1177 | 1178 | '@manypkg/get-packages@2.2.1': 1179 | dependencies: 1180 | '@manypkg/find-root': 2.2.1 1181 | '@manypkg/tools': 1.1.0 1182 | 1183 | '@manypkg/tools@1.1.0': 1184 | dependencies: 1185 | fs-extra: 8.1.0 1186 | globby: 11.1.0 1187 | jju: 1.4.0 1188 | read-yaml-file: 1.1.0 1189 | 1190 | '@nodelib/fs.scandir@2.1.5': 1191 | dependencies: 1192 | '@nodelib/fs.stat': 2.0.5 1193 | run-parallel: 1.2.0 1194 | 1195 | '@nodelib/fs.stat@2.0.5': {} 1196 | 1197 | '@nodelib/fs.walk@1.2.8': 1198 | dependencies: 1199 | '@nodelib/fs.scandir': 2.1.5 1200 | fastq: 1.17.1 1201 | 1202 | '@npmcli/fs@1.1.1': 1203 | dependencies: 1204 | '@gar/promisify': 1.1.3 1205 | semver: 7.6.2 1206 | 1207 | '@npmcli/git@5.0.7': 1208 | dependencies: 1209 | '@npmcli/promise-spawn': 7.0.2 1210 | lru-cache: 10.2.2 1211 | npm-pick-manifest: 9.0.1 1212 | proc-log: 4.2.0 1213 | promise-inflight: 1.0.1 1214 | promise-retry: 2.0.1 1215 | semver: 7.6.2 1216 | which: 4.0.0 1217 | transitivePeerDependencies: 1218 | - bluebird 1219 | 1220 | '@npmcli/move-file@1.1.2': 1221 | dependencies: 1222 | mkdirp: 1.0.4 1223 | rimraf: 3.0.2 1224 | 1225 | '@npmcli/package-json@5.2.0': 1226 | dependencies: 1227 | '@npmcli/git': 5.0.7 1228 | glob: 10.4.2 1229 | hosted-git-info: 7.0.2 1230 | json-parse-even-better-errors: 3.0.2 1231 | normalize-package-data: 6.0.1 1232 | proc-log: 4.2.0 1233 | semver: 7.6.2 1234 | transitivePeerDependencies: 1235 | - bluebird 1236 | 1237 | '@npmcli/promise-spawn@7.0.2': 1238 | dependencies: 1239 | which: 4.0.0 1240 | 1241 | '@octokit/auth-token@3.0.4': {} 1242 | 1243 | '@octokit/core@4.2.4(encoding@0.1.13)': 1244 | dependencies: 1245 | '@octokit/auth-token': 3.0.4 1246 | '@octokit/graphql': 5.0.6(encoding@0.1.13) 1247 | '@octokit/request': 6.2.8(encoding@0.1.13) 1248 | '@octokit/request-error': 3.0.3 1249 | '@octokit/types': 9.3.2 1250 | before-after-hook: 2.2.3 1251 | universal-user-agent: 6.0.1 1252 | transitivePeerDependencies: 1253 | - encoding 1254 | 1255 | '@octokit/endpoint@7.0.6': 1256 | dependencies: 1257 | '@octokit/types': 9.3.2 1258 | is-plain-object: 5.0.0 1259 | universal-user-agent: 6.0.1 1260 | 1261 | '@octokit/graphql@5.0.6(encoding@0.1.13)': 1262 | dependencies: 1263 | '@octokit/request': 6.2.8(encoding@0.1.13) 1264 | '@octokit/types': 9.3.2 1265 | universal-user-agent: 6.0.1 1266 | transitivePeerDependencies: 1267 | - encoding 1268 | 1269 | '@octokit/openapi-types@18.1.1': {} 1270 | 1271 | '@octokit/plugin-paginate-rest@6.1.2(@octokit/core@4.2.4(encoding@0.1.13))': 1272 | dependencies: 1273 | '@octokit/core': 4.2.4(encoding@0.1.13) 1274 | '@octokit/tsconfig': 1.0.2 1275 | '@octokit/types': 9.3.2 1276 | 1277 | '@octokit/plugin-request-log@1.0.4(@octokit/core@4.2.4(encoding@0.1.13))': 1278 | dependencies: 1279 | '@octokit/core': 4.2.4(encoding@0.1.13) 1280 | 1281 | '@octokit/plugin-rest-endpoint-methods@7.2.3(@octokit/core@4.2.4(encoding@0.1.13))': 1282 | dependencies: 1283 | '@octokit/core': 4.2.4(encoding@0.1.13) 1284 | '@octokit/types': 10.0.0 1285 | 1286 | '@octokit/request-error@3.0.3': 1287 | dependencies: 1288 | '@octokit/types': 9.3.2 1289 | deprecation: 2.3.1 1290 | once: 1.4.0 1291 | 1292 | '@octokit/request@6.2.8(encoding@0.1.13)': 1293 | dependencies: 1294 | '@octokit/endpoint': 7.0.6 1295 | '@octokit/request-error': 3.0.3 1296 | '@octokit/types': 9.3.2 1297 | is-plain-object: 5.0.0 1298 | node-fetch: 2.7.0(encoding@0.1.13) 1299 | universal-user-agent: 6.0.1 1300 | transitivePeerDependencies: 1301 | - encoding 1302 | 1303 | '@octokit/rest@19.0.13(encoding@0.1.13)': 1304 | dependencies: 1305 | '@octokit/core': 4.2.4(encoding@0.1.13) 1306 | '@octokit/plugin-paginate-rest': 6.1.2(@octokit/core@4.2.4(encoding@0.1.13)) 1307 | '@octokit/plugin-request-log': 1.0.4(@octokit/core@4.2.4(encoding@0.1.13)) 1308 | '@octokit/plugin-rest-endpoint-methods': 7.2.3(@octokit/core@4.2.4(encoding@0.1.13)) 1309 | transitivePeerDependencies: 1310 | - encoding 1311 | 1312 | '@octokit/tsconfig@1.0.2': {} 1313 | 1314 | '@octokit/types@10.0.0': 1315 | dependencies: 1316 | '@octokit/openapi-types': 18.1.1 1317 | 1318 | '@octokit/types@9.3.2': 1319 | dependencies: 1320 | '@octokit/openapi-types': 18.1.1 1321 | 1322 | '@pkgjs/parseargs@0.11.0': 1323 | optional: true 1324 | 1325 | '@sec-ant/readable-stream@0.4.1': {} 1326 | 1327 | '@sindresorhus/is@0.14.0': {} 1328 | 1329 | '@sindresorhus/merge-streams@4.0.0': {} 1330 | 1331 | '@szmarczak/http-timer@1.1.2': 1332 | dependencies: 1333 | defer-to-connect: 1.1.3 1334 | 1335 | '@tootallnate/once@1.1.2': {} 1336 | 1337 | '@types/fs-extra@9.0.13': 1338 | dependencies: 1339 | '@types/node': 20.14.7 1340 | 1341 | '@types/js-yaml@4.0.9': {} 1342 | 1343 | '@types/keyv@3.1.4': 1344 | dependencies: 1345 | '@types/node': 20.14.7 1346 | 1347 | '@types/node@20.14.7': 1348 | dependencies: 1349 | undici-types: 5.26.5 1350 | 1351 | '@types/responselike@1.0.3': 1352 | dependencies: 1353 | '@types/node': 20.14.7 1354 | 1355 | '@types/semver@7.5.8': {} 1356 | 1357 | '@types/yargs-parser@21.0.3': {} 1358 | 1359 | '@types/yargs@17.0.32': 1360 | dependencies: 1361 | '@types/yargs-parser': 21.0.3 1362 | 1363 | agent-base@6.0.2: 1364 | dependencies: 1365 | debug: 4.3.5 1366 | transitivePeerDependencies: 1367 | - supports-color 1368 | 1369 | agentkeepalive@4.5.0: 1370 | dependencies: 1371 | humanize-ms: 1.2.1 1372 | 1373 | aggregate-error@3.1.0: 1374 | dependencies: 1375 | clean-stack: 2.2.0 1376 | indent-string: 4.0.0 1377 | 1378 | ansi-regex@5.0.1: {} 1379 | 1380 | ansi-regex@6.0.1: {} 1381 | 1382 | ansi-styles@4.3.0: 1383 | dependencies: 1384 | color-convert: 2.0.1 1385 | 1386 | ansi-styles@6.2.1: {} 1387 | 1388 | any-promise@1.3.0: {} 1389 | 1390 | argparse@1.0.10: 1391 | dependencies: 1392 | sprintf-js: 1.0.3 1393 | 1394 | argparse@2.0.1: {} 1395 | 1396 | array-union@2.1.0: {} 1397 | 1398 | assert-never@1.2.1: {} 1399 | 1400 | balanced-match@1.0.2: {} 1401 | 1402 | before-after-hook@2.2.3: {} 1403 | 1404 | brace-expansion@1.1.11: 1405 | dependencies: 1406 | balanced-match: 1.0.2 1407 | concat-map: 0.0.1 1408 | 1409 | brace-expansion@2.0.1: 1410 | dependencies: 1411 | balanced-match: 1.0.2 1412 | 1413 | braces@3.0.3: 1414 | dependencies: 1415 | fill-range: 7.1.1 1416 | 1417 | cacache@15.3.0: 1418 | dependencies: 1419 | '@npmcli/fs': 1.1.1 1420 | '@npmcli/move-file': 1.1.2 1421 | chownr: 2.0.0 1422 | fs-minipass: 2.1.0 1423 | glob: 7.2.3 1424 | infer-owner: 1.0.4 1425 | lru-cache: 6.0.0 1426 | minipass: 3.3.6 1427 | minipass-collect: 1.0.2 1428 | minipass-flush: 1.0.5 1429 | minipass-pipeline: 1.2.4 1430 | mkdirp: 1.0.4 1431 | p-map: 4.0.0 1432 | promise-inflight: 1.0.1 1433 | rimraf: 3.0.2 1434 | ssri: 8.0.1 1435 | tar: 6.2.1 1436 | unique-filename: 1.1.1 1437 | transitivePeerDependencies: 1438 | - bluebird 1439 | 1440 | cacheable-request@6.1.0: 1441 | dependencies: 1442 | clone-response: 1.0.3 1443 | get-stream: 5.2.0 1444 | http-cache-semantics: 4.1.1 1445 | keyv: 3.1.0 1446 | lowercase-keys: 2.0.0 1447 | normalize-url: 4.5.1 1448 | responselike: 1.0.2 1449 | 1450 | chalk@4.1.2: 1451 | dependencies: 1452 | ansi-styles: 4.3.0 1453 | supports-color: 7.2.0 1454 | 1455 | chownr@2.0.0: {} 1456 | 1457 | clean-stack@2.2.0: {} 1458 | 1459 | cli-highlight@2.1.11: 1460 | dependencies: 1461 | chalk: 4.1.2 1462 | highlight.js: 10.7.3 1463 | mz: 2.7.0 1464 | parse5: 5.1.1 1465 | parse5-htmlparser2-tree-adapter: 6.0.1 1466 | yargs: 16.2.0 1467 | 1468 | cli-progress@3.12.0: 1469 | dependencies: 1470 | string-width: 4.2.3 1471 | 1472 | cliui@7.0.4: 1473 | dependencies: 1474 | string-width: 4.2.3 1475 | strip-ansi: 6.0.1 1476 | wrap-ansi: 7.0.0 1477 | 1478 | cliui@8.0.1: 1479 | dependencies: 1480 | string-width: 4.2.3 1481 | strip-ansi: 6.0.1 1482 | wrap-ansi: 7.0.0 1483 | 1484 | clone-response@1.0.3: 1485 | dependencies: 1486 | mimic-response: 1.0.1 1487 | 1488 | color-convert@2.0.1: 1489 | dependencies: 1490 | color-name: 1.1.4 1491 | 1492 | color-name@1.1.4: {} 1493 | 1494 | concat-map@0.0.1: {} 1495 | 1496 | cross-spawn@7.0.3: 1497 | dependencies: 1498 | path-key: 3.1.1 1499 | shebang-command: 2.0.0 1500 | which: 2.0.2 1501 | 1502 | debug@4.3.5: 1503 | dependencies: 1504 | ms: 2.1.2 1505 | 1506 | decompress-response@3.3.0: 1507 | dependencies: 1508 | mimic-response: 1.0.1 1509 | 1510 | deep-extend@0.6.0: {} 1511 | 1512 | defer-to-connect@1.1.3: {} 1513 | 1514 | deprecation@2.3.1: {} 1515 | 1516 | dir-glob@3.0.1: 1517 | dependencies: 1518 | path-type: 4.0.0 1519 | 1520 | duplexer3@0.1.5: {} 1521 | 1522 | eastasianwidth@0.2.0: {} 1523 | 1524 | emoji-regex@8.0.0: {} 1525 | 1526 | emoji-regex@9.2.2: {} 1527 | 1528 | encoding@0.1.13: 1529 | dependencies: 1530 | iconv-lite: 0.6.3 1531 | optional: true 1532 | 1533 | end-of-stream@1.4.4: 1534 | dependencies: 1535 | once: 1.4.0 1536 | 1537 | err-code@2.0.3: {} 1538 | 1539 | escalade@3.1.2: {} 1540 | 1541 | esprima@4.0.1: {} 1542 | 1543 | execa@4.1.0: 1544 | dependencies: 1545 | cross-spawn: 7.0.3 1546 | get-stream: 5.2.0 1547 | human-signals: 1.1.1 1548 | is-stream: 2.0.1 1549 | merge-stream: 2.0.0 1550 | npm-run-path: 4.0.1 1551 | onetime: 5.1.2 1552 | signal-exit: 3.0.7 1553 | strip-final-newline: 2.0.0 1554 | 1555 | execa@5.1.1: 1556 | dependencies: 1557 | cross-spawn: 7.0.3 1558 | get-stream: 6.0.1 1559 | human-signals: 2.1.0 1560 | is-stream: 2.0.1 1561 | merge-stream: 2.0.0 1562 | npm-run-path: 4.0.1 1563 | onetime: 5.1.2 1564 | signal-exit: 3.0.7 1565 | strip-final-newline: 2.0.0 1566 | 1567 | execa@9.2.0: 1568 | dependencies: 1569 | '@sindresorhus/merge-streams': 4.0.0 1570 | cross-spawn: 7.0.3 1571 | figures: 6.1.0 1572 | get-stream: 9.0.1 1573 | human-signals: 7.0.0 1574 | is-plain-obj: 4.1.0 1575 | is-stream: 4.0.1 1576 | npm-run-path: 5.3.0 1577 | pretty-ms: 9.0.0 1578 | signal-exit: 4.1.0 1579 | strip-final-newline: 4.0.0 1580 | yoctocolors: 2.0.2 1581 | 1582 | fast-glob@3.3.2: 1583 | dependencies: 1584 | '@nodelib/fs.stat': 2.0.5 1585 | '@nodelib/fs.walk': 1.2.8 1586 | glob-parent: 5.1.2 1587 | merge2: 1.4.1 1588 | micromatch: 4.0.7 1589 | 1590 | fastq@1.17.1: 1591 | dependencies: 1592 | reusify: 1.0.4 1593 | 1594 | figures@6.1.0: 1595 | dependencies: 1596 | is-unicode-supported: 2.0.0 1597 | 1598 | fill-range@7.1.1: 1599 | dependencies: 1600 | to-regex-range: 5.0.1 1601 | 1602 | find-up@4.1.0: 1603 | dependencies: 1604 | locate-path: 5.0.0 1605 | path-exists: 4.0.0 1606 | 1607 | foreground-child@3.2.1: 1608 | dependencies: 1609 | cross-spawn: 7.0.3 1610 | signal-exit: 4.1.0 1611 | 1612 | fs-extra@10.1.0: 1613 | dependencies: 1614 | graceful-fs: 4.2.11 1615 | jsonfile: 6.1.0 1616 | universalify: 2.0.1 1617 | 1618 | fs-extra@8.1.0: 1619 | dependencies: 1620 | graceful-fs: 4.2.11 1621 | jsonfile: 4.0.0 1622 | universalify: 0.1.2 1623 | 1624 | fs-minipass@2.1.0: 1625 | dependencies: 1626 | minipass: 3.3.6 1627 | 1628 | fs.realpath@1.0.0: {} 1629 | 1630 | function-bind@1.1.2: {} 1631 | 1632 | get-caller-file@2.0.5: {} 1633 | 1634 | get-stream@4.1.0: 1635 | dependencies: 1636 | pump: 3.0.0 1637 | 1638 | get-stream@5.2.0: 1639 | dependencies: 1640 | pump: 3.0.0 1641 | 1642 | get-stream@6.0.1: {} 1643 | 1644 | get-stream@9.0.1: 1645 | dependencies: 1646 | '@sec-ant/readable-stream': 0.4.1 1647 | is-stream: 4.0.1 1648 | 1649 | github-changelog@1.0.2: 1650 | dependencies: 1651 | '@manypkg/get-packages': 2.2.1 1652 | chalk: 4.1.2 1653 | cli-highlight: 2.1.11 1654 | execa: 5.1.1 1655 | hosted-git-info: 4.1.0 1656 | make-fetch-happen: 9.1.0 1657 | p-map: 3.0.0 1658 | progress: 2.0.3 1659 | yargs: 17.7.2 1660 | transitivePeerDependencies: 1661 | - bluebird 1662 | - supports-color 1663 | 1664 | glob-parent@5.1.2: 1665 | dependencies: 1666 | is-glob: 4.0.3 1667 | 1668 | glob@10.4.2: 1669 | dependencies: 1670 | foreground-child: 3.2.1 1671 | jackspeak: 3.4.0 1672 | minimatch: 9.0.4 1673 | minipass: 7.1.2 1674 | package-json-from-dist: 1.0.0 1675 | path-scurry: 1.11.1 1676 | 1677 | glob@7.2.3: 1678 | dependencies: 1679 | fs.realpath: 1.0.0 1680 | inflight: 1.0.6 1681 | inherits: 2.0.4 1682 | minimatch: 3.1.2 1683 | once: 1.4.0 1684 | path-is-absolute: 1.0.1 1685 | 1686 | globby@11.1.0: 1687 | dependencies: 1688 | array-union: 2.1.0 1689 | dir-glob: 3.0.1 1690 | fast-glob: 3.3.2 1691 | ignore: 5.3.1 1692 | merge2: 1.4.1 1693 | slash: 3.0.0 1694 | 1695 | got@9.6.0: 1696 | dependencies: 1697 | '@sindresorhus/is': 0.14.0 1698 | '@szmarczak/http-timer': 1.1.2 1699 | '@types/keyv': 3.1.4 1700 | '@types/responselike': 1.0.3 1701 | cacheable-request: 6.1.0 1702 | decompress-response: 3.3.0 1703 | duplexer3: 0.1.5 1704 | get-stream: 4.1.0 1705 | lowercase-keys: 1.0.1 1706 | mimic-response: 1.0.1 1707 | p-cancelable: 1.1.0 1708 | to-readable-stream: 1.0.0 1709 | url-parse-lax: 3.0.0 1710 | 1711 | graceful-fs@4.2.11: {} 1712 | 1713 | has-flag@4.0.0: {} 1714 | 1715 | hasown@2.0.2: 1716 | dependencies: 1717 | function-bind: 1.1.2 1718 | 1719 | highlight.js@10.7.3: {} 1720 | 1721 | hosted-git-info@4.1.0: 1722 | dependencies: 1723 | lru-cache: 6.0.0 1724 | 1725 | hosted-git-info@7.0.2: 1726 | dependencies: 1727 | lru-cache: 10.2.2 1728 | 1729 | http-cache-semantics@4.1.1: {} 1730 | 1731 | http-proxy-agent@4.0.1: 1732 | dependencies: 1733 | '@tootallnate/once': 1.1.2 1734 | agent-base: 6.0.2 1735 | debug: 4.3.5 1736 | transitivePeerDependencies: 1737 | - supports-color 1738 | 1739 | https-proxy-agent@5.0.1: 1740 | dependencies: 1741 | agent-base: 6.0.2 1742 | debug: 4.3.5 1743 | transitivePeerDependencies: 1744 | - supports-color 1745 | 1746 | human-signals@1.1.1: {} 1747 | 1748 | human-signals@2.1.0: {} 1749 | 1750 | human-signals@7.0.0: {} 1751 | 1752 | humanize-ms@1.2.1: 1753 | dependencies: 1754 | ms: 2.1.3 1755 | 1756 | iconv-lite@0.6.3: 1757 | dependencies: 1758 | safer-buffer: 2.1.2 1759 | optional: true 1760 | 1761 | ignore@5.3.1: {} 1762 | 1763 | imurmurhash@0.1.4: {} 1764 | 1765 | indent-string@4.0.0: {} 1766 | 1767 | infer-owner@1.0.4: {} 1768 | 1769 | inflight@1.0.6: 1770 | dependencies: 1771 | once: 1.4.0 1772 | wrappy: 1.0.2 1773 | 1774 | inherits@2.0.4: {} 1775 | 1776 | ini@1.3.8: {} 1777 | 1778 | ip-address@9.0.5: 1779 | dependencies: 1780 | jsbn: 1.1.0 1781 | sprintf-js: 1.1.3 1782 | 1783 | is-core-module@2.14.0: 1784 | dependencies: 1785 | hasown: 2.0.2 1786 | 1787 | is-extglob@2.1.1: {} 1788 | 1789 | is-fullwidth-code-point@3.0.0: {} 1790 | 1791 | is-glob@4.0.3: 1792 | dependencies: 1793 | is-extglob: 2.1.1 1794 | 1795 | is-lambda@1.0.1: {} 1796 | 1797 | is-number@7.0.0: {} 1798 | 1799 | is-plain-obj@4.1.0: {} 1800 | 1801 | is-plain-object@5.0.0: {} 1802 | 1803 | is-stream@2.0.1: {} 1804 | 1805 | is-stream@4.0.1: {} 1806 | 1807 | is-unicode-supported@2.0.0: {} 1808 | 1809 | isexe@2.0.0: {} 1810 | 1811 | isexe@3.1.1: {} 1812 | 1813 | jackspeak@3.4.0: 1814 | dependencies: 1815 | '@isaacs/cliui': 8.0.2 1816 | optionalDependencies: 1817 | '@pkgjs/parseargs': 0.11.0 1818 | 1819 | jju@1.4.0: {} 1820 | 1821 | js-yaml@3.14.1: 1822 | dependencies: 1823 | argparse: 1.0.10 1824 | esprima: 4.0.1 1825 | 1826 | js-yaml@4.1.0: 1827 | dependencies: 1828 | argparse: 2.0.1 1829 | 1830 | jsbn@1.1.0: {} 1831 | 1832 | json-buffer@3.0.0: {} 1833 | 1834 | json-parse-even-better-errors@3.0.2: {} 1835 | 1836 | jsonfile@4.0.0: 1837 | optionalDependencies: 1838 | graceful-fs: 4.2.11 1839 | 1840 | jsonfile@6.1.0: 1841 | dependencies: 1842 | universalify: 2.0.1 1843 | optionalDependencies: 1844 | graceful-fs: 4.2.11 1845 | 1846 | keyv@3.1.0: 1847 | dependencies: 1848 | json-buffer: 3.0.0 1849 | 1850 | latest-version@5.1.0: 1851 | dependencies: 1852 | package-json: 6.5.0 1853 | 1854 | locate-path@5.0.0: 1855 | dependencies: 1856 | p-locate: 4.1.0 1857 | 1858 | lowercase-keys@1.0.1: {} 1859 | 1860 | lowercase-keys@2.0.0: {} 1861 | 1862 | lru-cache@10.2.2: {} 1863 | 1864 | lru-cache@6.0.0: 1865 | dependencies: 1866 | yallist: 4.0.0 1867 | 1868 | make-fetch-happen@9.1.0: 1869 | dependencies: 1870 | agentkeepalive: 4.5.0 1871 | cacache: 15.3.0 1872 | http-cache-semantics: 4.1.1 1873 | http-proxy-agent: 4.0.1 1874 | https-proxy-agent: 5.0.1 1875 | is-lambda: 1.0.1 1876 | lru-cache: 6.0.0 1877 | minipass: 3.3.6 1878 | minipass-collect: 1.0.2 1879 | minipass-fetch: 1.4.1 1880 | minipass-flush: 1.0.5 1881 | minipass-pipeline: 1.2.4 1882 | negotiator: 0.6.3 1883 | promise-retry: 2.0.1 1884 | socks-proxy-agent: 6.2.1 1885 | ssri: 8.0.1 1886 | transitivePeerDependencies: 1887 | - bluebird 1888 | - supports-color 1889 | 1890 | merge-stream@2.0.0: {} 1891 | 1892 | merge2@1.4.1: {} 1893 | 1894 | micromatch@4.0.7: 1895 | dependencies: 1896 | braces: 3.0.3 1897 | picomatch: 2.3.1 1898 | 1899 | mimic-fn@2.1.0: {} 1900 | 1901 | mimic-response@1.0.1: {} 1902 | 1903 | minimatch@3.1.2: 1904 | dependencies: 1905 | brace-expansion: 1.1.11 1906 | 1907 | minimatch@9.0.4: 1908 | dependencies: 1909 | brace-expansion: 2.0.1 1910 | 1911 | minimist@1.2.8: {} 1912 | 1913 | minipass-collect@1.0.2: 1914 | dependencies: 1915 | minipass: 3.3.6 1916 | 1917 | minipass-fetch@1.4.1: 1918 | dependencies: 1919 | minipass: 3.3.6 1920 | minipass-sized: 1.0.3 1921 | minizlib: 2.1.2 1922 | optionalDependencies: 1923 | encoding: 0.1.13 1924 | 1925 | minipass-flush@1.0.5: 1926 | dependencies: 1927 | minipass: 3.3.6 1928 | 1929 | minipass-pipeline@1.2.4: 1930 | dependencies: 1931 | minipass: 3.3.6 1932 | 1933 | minipass-sized@1.0.3: 1934 | dependencies: 1935 | minipass: 3.3.6 1936 | 1937 | minipass@3.3.6: 1938 | dependencies: 1939 | yallist: 4.0.0 1940 | 1941 | minipass@5.0.0: {} 1942 | 1943 | minipass@7.1.2: {} 1944 | 1945 | minizlib@2.1.2: 1946 | dependencies: 1947 | minipass: 3.3.6 1948 | yallist: 4.0.0 1949 | 1950 | mkdirp@1.0.4: {} 1951 | 1952 | ms@2.1.2: {} 1953 | 1954 | ms@2.1.3: {} 1955 | 1956 | mz@2.7.0: 1957 | dependencies: 1958 | any-promise: 1.3.0 1959 | object-assign: 4.1.1 1960 | thenify-all: 1.6.0 1961 | 1962 | negotiator@0.6.3: {} 1963 | 1964 | node-fetch@2.7.0(encoding@0.1.13): 1965 | dependencies: 1966 | whatwg-url: 5.0.0 1967 | optionalDependencies: 1968 | encoding: 0.1.13 1969 | 1970 | normalize-package-data@6.0.1: 1971 | dependencies: 1972 | hosted-git-info: 7.0.2 1973 | is-core-module: 2.14.0 1974 | semver: 7.6.2 1975 | validate-npm-package-license: 3.0.4 1976 | 1977 | normalize-url@4.5.1: {} 1978 | 1979 | npm-install-checks@6.3.0: 1980 | dependencies: 1981 | semver: 7.6.2 1982 | 1983 | npm-normalize-package-bin@3.0.1: {} 1984 | 1985 | npm-package-arg@11.0.2: 1986 | dependencies: 1987 | hosted-git-info: 7.0.2 1988 | proc-log: 4.2.0 1989 | semver: 7.6.2 1990 | validate-npm-package-name: 5.0.1 1991 | 1992 | npm-pick-manifest@9.0.1: 1993 | dependencies: 1994 | npm-install-checks: 6.3.0 1995 | npm-normalize-package-bin: 3.0.1 1996 | npm-package-arg: 11.0.2 1997 | semver: 7.6.2 1998 | 1999 | npm-run-path@4.0.1: 2000 | dependencies: 2001 | path-key: 3.1.1 2002 | 2003 | npm-run-path@5.3.0: 2004 | dependencies: 2005 | path-key: 4.0.0 2006 | 2007 | object-assign@4.1.1: {} 2008 | 2009 | once@1.4.0: 2010 | dependencies: 2011 | wrappy: 1.0.2 2012 | 2013 | onetime@5.1.2: 2014 | dependencies: 2015 | mimic-fn: 2.1.0 2016 | 2017 | p-cancelable@1.1.0: {} 2018 | 2019 | p-limit@2.3.0: 2020 | dependencies: 2021 | p-try: 2.2.0 2022 | 2023 | p-locate@4.1.0: 2024 | dependencies: 2025 | p-limit: 2.3.0 2026 | 2027 | p-map@3.0.0: 2028 | dependencies: 2029 | aggregate-error: 3.1.0 2030 | 2031 | p-map@4.0.0: 2032 | dependencies: 2033 | aggregate-error: 3.1.0 2034 | 2035 | p-try@2.2.0: {} 2036 | 2037 | package-json-from-dist@1.0.0: {} 2038 | 2039 | package-json@6.5.0: 2040 | dependencies: 2041 | got: 9.6.0 2042 | registry-auth-token: 4.2.2 2043 | registry-url: 5.1.0 2044 | semver: 6.3.1 2045 | 2046 | parse-github-repo-url@1.4.1: {} 2047 | 2048 | parse-ms@4.0.0: {} 2049 | 2050 | parse5-htmlparser2-tree-adapter@6.0.1: 2051 | dependencies: 2052 | parse5: 6.0.1 2053 | 2054 | parse5@5.1.1: {} 2055 | 2056 | parse5@6.0.1: {} 2057 | 2058 | path-exists@4.0.0: {} 2059 | 2060 | path-is-absolute@1.0.1: {} 2061 | 2062 | path-key@3.1.1: {} 2063 | 2064 | path-key@4.0.0: {} 2065 | 2066 | path-scurry@1.11.1: 2067 | dependencies: 2068 | lru-cache: 10.2.2 2069 | minipass: 7.1.2 2070 | 2071 | path-type@4.0.0: {} 2072 | 2073 | picomatch@2.3.1: {} 2074 | 2075 | pify@4.0.1: {} 2076 | 2077 | prepend-http@2.0.0: {} 2078 | 2079 | prettier@3.3.2: {} 2080 | 2081 | pretty-ms@9.0.0: 2082 | dependencies: 2083 | parse-ms: 4.0.0 2084 | 2085 | proc-log@4.2.0: {} 2086 | 2087 | progress@2.0.3: {} 2088 | 2089 | promise-inflight@1.0.1: {} 2090 | 2091 | promise-retry@2.0.1: 2092 | dependencies: 2093 | err-code: 2.0.3 2094 | retry: 0.12.0 2095 | 2096 | pump@3.0.0: 2097 | dependencies: 2098 | end-of-stream: 1.4.4 2099 | once: 1.4.0 2100 | 2101 | queue-microtask@1.2.3: {} 2102 | 2103 | rc@1.2.8: 2104 | dependencies: 2105 | deep-extend: 0.6.0 2106 | ini: 1.3.8 2107 | minimist: 1.2.8 2108 | strip-json-comments: 2.0.1 2109 | 2110 | read-yaml-file@1.1.0: 2111 | dependencies: 2112 | graceful-fs: 4.2.11 2113 | js-yaml: 3.14.1 2114 | pify: 4.0.1 2115 | strip-bom: 3.0.0 2116 | 2117 | registry-auth-token@4.2.2: 2118 | dependencies: 2119 | rc: 1.2.8 2120 | 2121 | registry-url@5.1.0: 2122 | dependencies: 2123 | rc: 1.2.8 2124 | 2125 | release-plan@0.9.0(encoding@0.1.13): 2126 | dependencies: 2127 | '@manypkg/get-packages': 2.2.1 2128 | '@npmcli/package-json': 5.2.0 2129 | '@octokit/rest': 19.0.13(encoding@0.1.13) 2130 | '@types/fs-extra': 9.0.13 2131 | '@types/js-yaml': 4.0.9 2132 | '@types/semver': 7.5.8 2133 | '@types/yargs': 17.0.32 2134 | assert-never: 1.2.1 2135 | chalk: 4.1.2 2136 | cli-highlight: 2.1.11 2137 | execa: 4.1.0 2138 | fs-extra: 10.1.0 2139 | github-changelog: 1.0.2 2140 | js-yaml: 4.1.0 2141 | latest-version: 5.1.0 2142 | parse-github-repo-url: 1.4.1 2143 | semver: 7.6.2 2144 | yargs: 17.7.2 2145 | transitivePeerDependencies: 2146 | - bluebird 2147 | - encoding 2148 | - supports-color 2149 | 2150 | require-directory@2.1.1: {} 2151 | 2152 | responselike@1.0.2: 2153 | dependencies: 2154 | lowercase-keys: 1.0.1 2155 | 2156 | retry@0.12.0: {} 2157 | 2158 | reusify@1.0.4: {} 2159 | 2160 | rimraf@3.0.2: 2161 | dependencies: 2162 | glob: 7.2.3 2163 | 2164 | run-parallel@1.2.0: 2165 | dependencies: 2166 | queue-microtask: 1.2.3 2167 | 2168 | safer-buffer@2.1.2: 2169 | optional: true 2170 | 2171 | semver@6.3.1: {} 2172 | 2173 | semver@7.6.2: {} 2174 | 2175 | shebang-command@2.0.0: 2176 | dependencies: 2177 | shebang-regex: 3.0.0 2178 | 2179 | shebang-regex@3.0.0: {} 2180 | 2181 | signal-exit@3.0.7: {} 2182 | 2183 | signal-exit@4.1.0: {} 2184 | 2185 | slash@3.0.0: {} 2186 | 2187 | smart-buffer@4.2.0: {} 2188 | 2189 | socks-proxy-agent@6.2.1: 2190 | dependencies: 2191 | agent-base: 6.0.2 2192 | debug: 4.3.5 2193 | socks: 2.8.3 2194 | transitivePeerDependencies: 2195 | - supports-color 2196 | 2197 | socks@2.8.3: 2198 | dependencies: 2199 | ip-address: 9.0.5 2200 | smart-buffer: 4.2.0 2201 | 2202 | spdx-correct@3.2.0: 2203 | dependencies: 2204 | spdx-expression-parse: 3.0.1 2205 | spdx-license-ids: 3.0.18 2206 | 2207 | spdx-exceptions@2.5.0: {} 2208 | 2209 | spdx-expression-parse@3.0.1: 2210 | dependencies: 2211 | spdx-exceptions: 2.5.0 2212 | spdx-license-ids: 3.0.18 2213 | 2214 | spdx-license-ids@3.0.18: {} 2215 | 2216 | sprintf-js@1.0.3: {} 2217 | 2218 | sprintf-js@1.1.3: {} 2219 | 2220 | ssri@8.0.1: 2221 | dependencies: 2222 | minipass: 3.3.6 2223 | 2224 | string-width@4.2.3: 2225 | dependencies: 2226 | emoji-regex: 8.0.0 2227 | is-fullwidth-code-point: 3.0.0 2228 | strip-ansi: 6.0.1 2229 | 2230 | string-width@5.1.2: 2231 | dependencies: 2232 | eastasianwidth: 0.2.0 2233 | emoji-regex: 9.2.2 2234 | strip-ansi: 7.1.0 2235 | 2236 | strip-ansi@6.0.1: 2237 | dependencies: 2238 | ansi-regex: 5.0.1 2239 | 2240 | strip-ansi@7.1.0: 2241 | dependencies: 2242 | ansi-regex: 6.0.1 2243 | 2244 | strip-bom@3.0.0: {} 2245 | 2246 | strip-final-newline@2.0.0: {} 2247 | 2248 | strip-final-newline@4.0.0: {} 2249 | 2250 | strip-json-comments@2.0.1: {} 2251 | 2252 | supports-color@7.2.0: 2253 | dependencies: 2254 | has-flag: 4.0.0 2255 | 2256 | tar@6.2.1: 2257 | dependencies: 2258 | chownr: 2.0.0 2259 | fs-minipass: 2.1.0 2260 | minipass: 5.0.0 2261 | minizlib: 2.1.2 2262 | mkdirp: 1.0.4 2263 | yallist: 4.0.0 2264 | 2265 | thenify-all@1.6.0: 2266 | dependencies: 2267 | thenify: 3.3.1 2268 | 2269 | thenify@3.3.1: 2270 | dependencies: 2271 | any-promise: 1.3.0 2272 | 2273 | to-readable-stream@1.0.0: {} 2274 | 2275 | to-regex-range@5.0.1: 2276 | dependencies: 2277 | is-number: 7.0.0 2278 | 2279 | tr46@0.0.3: {} 2280 | 2281 | typescript@5.5.2: {} 2282 | 2283 | undici-types@5.26.5: {} 2284 | 2285 | unique-filename@1.1.1: 2286 | dependencies: 2287 | unique-slug: 2.0.2 2288 | 2289 | unique-slug@2.0.2: 2290 | dependencies: 2291 | imurmurhash: 0.1.4 2292 | 2293 | universal-user-agent@6.0.1: {} 2294 | 2295 | universalify@0.1.2: {} 2296 | 2297 | universalify@2.0.1: {} 2298 | 2299 | url-parse-lax@3.0.0: 2300 | dependencies: 2301 | prepend-http: 2.0.0 2302 | 2303 | validate-npm-package-license@3.0.4: 2304 | dependencies: 2305 | spdx-correct: 3.2.0 2306 | spdx-expression-parse: 3.0.1 2307 | 2308 | validate-npm-package-name@5.0.1: {} 2309 | 2310 | webidl-conversions@3.0.1: {} 2311 | 2312 | whatwg-url@5.0.0: 2313 | dependencies: 2314 | tr46: 0.0.3 2315 | webidl-conversions: 3.0.1 2316 | 2317 | which@2.0.2: 2318 | dependencies: 2319 | isexe: 2.0.0 2320 | 2321 | which@4.0.0: 2322 | dependencies: 2323 | isexe: 3.1.1 2324 | 2325 | wrap-ansi@7.0.0: 2326 | dependencies: 2327 | ansi-styles: 4.3.0 2328 | string-width: 4.2.3 2329 | strip-ansi: 6.0.1 2330 | 2331 | wrap-ansi@8.1.0: 2332 | dependencies: 2333 | ansi-styles: 6.2.1 2334 | string-width: 5.1.2 2335 | strip-ansi: 7.1.0 2336 | 2337 | wrappy@1.0.2: {} 2338 | 2339 | y18n@5.0.8: {} 2340 | 2341 | yallist@4.0.0: {} 2342 | 2343 | yargs-parser@20.2.9: {} 2344 | 2345 | yargs-parser@21.1.1: {} 2346 | 2347 | yargs@16.2.0: 2348 | dependencies: 2349 | cliui: 7.0.4 2350 | escalade: 3.1.2 2351 | get-caller-file: 2.0.5 2352 | require-directory: 2.1.1 2353 | string-width: 4.2.3 2354 | y18n: 5.0.8 2355 | yargs-parser: 20.2.9 2356 | 2357 | yargs@17.7.2: 2358 | dependencies: 2359 | cliui: 8.0.1 2360 | escalade: 3.1.2 2361 | get-caller-file: 2.0.5 2362 | require-directory: 2.1.1 2363 | string-width: 4.2.3 2364 | y18n: 5.0.8 2365 | yargs-parser: 21.1.1 2366 | 2367 | yoctocolors@2.0.2: {} 2368 | --------------------------------------------------------------------------------