Mirror: 🎩 A tiny but capable push & pull stream library for TypeScript and Flow

Compare changes

Choose any two refs to compare.

+8
.changeset/README.md
···
+
# Changesets
+
+
Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
+
with multi-package repos, or single-package repos to help you version and publish your code. You can
+
find the full documentation for it [in our repository](https://github.com/changesets/changesets)
+
+
We have a quick list of common questions to get you started engaging with this project in
+
[our documentation](https://github.com/changesets/changesets/blob/master/docs/common-questions.md)
+16
.changeset/config.json
···
+
{
+
"$schema": "https://unpkg.com/@changesets/config@0.3.0/schema.json",
+
"changelog": "../scripts/changelog.js",
+
"commit": false,
+
"access": "public",
+
"baseBranch": "main",
+
"updateInternalDependencies": "minor",
+
"snapshot": {
+
"prereleaseTemplate": "{tag}-{commit}",
+
"useCalculatedVersion": true
+
},
+
"___experimentalUnsafeOptions_WILL_CHANGE_IN_PATCH": {
+
"onlyUpdatePeerDependentsWhenOutOfRange": true,
+
"updateInternalDependents": "out-of-range"
+
}
+
}
+3
.editorconfig
···
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true
+
+
[*.ts]
+
max_line_length = 100
-11
.flowconfig
···
-
[ignore]
-
-
[include]
-
-
[libs]
-
-
[lints]
-
-
[options]
-
-
[strict]
+42
.github/ISSUE_TEMPLATE/RFC.md
···
+
---
+
name: 'RFC'
+
about: Propose an enhancement / feature and start a discussion
+
title: 'RFC: Your Proposal'
+
labels: "future \U0001F52E"
+
---
+
+
<!--
+
🚨 RFCs are for proposed changes (not bugs or questions)
+
Specifically they are whenever you'd like to see new features
+
being added, or enable new use-cases.
+
+
Please open a Bug Report for issues/bugs, and use GitHub Discussions
+
or the Discord channel for questions instead.
+
-->
+
+
## Summary
+
+
<!--
+
Describe in a couple of words *what* you're proposing.
+
If relevant, include *why* this should be addressed now.
+
The problem should be clearly stated and the solution
+
should be summarised.
+
-->
+
+
## Proposed Solution
+
+
<!--
+
Explain the solution you're proposing in detail.
+
*How* will this change be implemented, and how does it work?
+
-->
+
+
## Requirements
+
+
<!--
+
This section is *optional*.
+
But if your proposed solution has multiple ways
+
of being implemented, you don't want to state how
+
it may be implemented, or you don't know yet how
+
it will be implemented, then:
+
*List* what the implementation needs to achieve to fulfil this RFC;
+
-->
+46
.github/ISSUE_TEMPLATE/bug_report.yaml
···
+
name: "\U0001F41E Bug report"
+
description: Report an issue with graphql.web
+
labels: []
+
body:
+
- type: markdown
+
attributes:
+
value: |
+
Thanks for taking the time to fill out this bug report!
+
- type: markdown
+
attributes:
+
value: |
+
Thanks for taking the time to fill out this bug report!
+
- type: textarea
+
id: bug-description
+
attributes:
+
label: Describe the bug
+
description: Please describe your bug clearly and concisely.
+
placeholder: Bug description
+
validations:
+
required: true
+
- type: input
+
id: reproduction
+
attributes:
+
label: Reproduction
+
description: Please provide a reproduction link, e.g. to a sandbox
+
placeholder: Reproduction
+
validations:
+
required: true
+
- type: textarea
+
id: version
+
attributes:
+
label: Package version
+
description: The versions of the relevant urql packages you are using
+
placeholder: "wonka@6.2.5"
+
validations:
+
required: true
+
- type: checkboxes
+
id: checkboxes
+
attributes:
+
label: Validations
+
description: Before submitting the issue, please make sure you do the following
+
options:
+
- label: I can confirm that this is a bug report, and not a feature request, RFC, question, or discussion, for which GitHub Discussions should be used
+
required: true
+
- label: Follow our [Code of Conduct](https://github.com/0no-co/graphql.web/blob/main/CODE_OF_CONDUCT.md)
+
required: true
+8
.github/ISSUE_TEMPLATE/config.yml
···
+
blank_issues_enabled: true
+
contact_links:
+
- name: Ask a question
+
url: https://github.com/@0no-co/wonka/discussions
+
about: Ask questions and discuss with other community members
+
- name: Join the Discord
+
url: https://discord.gg/3EYgqrYJFS
+
about: Chat with maintainers and other community members
+22
.github/PULL_REQUEST_TEMPLATE.md
···
+
<!--
+
Thanks for opening a pull request! We appreciate your dedication and help!
+
Before submitting your pull request, please make sure to read our CONTRIBUTING guide.
+
+
The best contribution is always a PR, but please make sure to open an issue or discuss
+
your changes first, if you’re looking to submit a larger PR.
+
+
If this PR is already related to an issue, please reference it like so:
+
Resolves #123
+
-->
+
+
## Summary
+
+
<!-- What's the motivation of this change? What does it solve? -->
+
+
## Set of changes
+
+
<!--
+
Roughly list the changes you've made and which packages are affected.
+
Leave some notes on what may be noteworthy files you've changed.
+
And lastly, please let us know if you think this is a breaking change.
+
-->
+24 -32
.github/workflows/ci.yml
···
on:
pull_request:
-
push:
-
branches: main
+
pull_request_review:
+
types: [submitted, edited]
+
branches: changeset-release/main
jobs:
check:
···
timeout-minutes: 10
steps:
- name: Checkout Repo
-
uses: actions/checkout@v2
+
uses: actions/checkout@v3
with:
fetch-depth: 0
-
- name: Setup Node
-
uses: actions/setup-node@v1
-
with:
-
node-version: '16'
-
- name: Get Yarn cache directory
-
id: yarn-cache-dir-path
-
run: echo "::set-output name=dir::$(yarn cache dir)"
-
- name: Use Yarn cache
-
uses: actions/cache@v2
-
id: yarn-cache
+
+
- name: Setup pnpm
+
uses: pnpm/action-setup@v3
with:
-
path: |
-
~/.cache/Cypress
-
${{ steps.yarn-cache-dir-path.outputs.dir }}
-
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
-
restore-keys: |
-
${{ runner.os }}-yarn-
-
- name: Use node_modules cache
-
id: node-modules-cache
-
uses: actions/cache@v2
+
version: 9
+
run_install: false
+
+
- name: Setup Node
+
uses: actions/setup-node@v4
with:
-
path: node_modules
-
key: ${{ runner.os }}-node-modules-${{ hashFiles('**/yarn.lock') }}
+
node-version: 22
+
cache: 'pnpm'
+
- name: Install Dependencies
-
if: |
-
steps.yarn-cache.outputs.cache-hit != 'true' ||
-
steps.node-modules-cache.outputs.cache-hit != 'true'
-
run: yarn install --prefer-offline --frozen-lockfile --non-interactive --silent
+
run: pnpm install --frozen-lockfile --prefer-offline
+
- name: TypeScript
-
run: yarn run check
+
run: pnpm run check
+
- name: Linting
-
run: yarn run lint
+
run: pnpm run lint
+
- name: Unit Tests
-
run: yarn run test
+
run: pnpm run test
+
- name: Build
-
run: yarn run build
+
run: pnpm run build
+26
.github/workflows/mirror.yml
···
+
# Mirrors to https://tangled.sh/@kitten.sh (knot.kitten.sh)
+
name: Mirror (Git Backup)
+
on:
+
push:
+
branches:
+
- main
+
jobs:
+
mirror:
+
runs-on: ubuntu-latest
+
steps:
+
- name: Checkout repository
+
uses: actions/checkout@v4
+
with:
+
fetch-depth: 0
+
fetch-tags: true
+
- name: Mirror
+
env:
+
MIRROR_SSH_KEY: ${{ secrets.MIRROR_SSH_KEY }}
+
GIT_SSH_COMMAND: 'ssh -o StrictHostKeyChecking=yes'
+
run: |
+
mkdir -p ~/.ssh
+
echo "$MIRROR_SSH_KEY" > ~/.ssh/id_rsa
+
chmod 600 ~/.ssh/id_rsa
+
ssh-keyscan -H knot.kitten.sh >> ~/.ssh/known_hosts
+
git remote add mirror "git@knot.kitten.sh:kitten.sh/${GITHUB_REPOSITORY#*/}"
+
git push --mirror mirror
+56
.github/workflows/release.yml
···
+
name: Release
+
on:
+
push:
+
branches:
+
- main
+
jobs:
+
release:
+
name: Release
+
runs-on: ubuntu-20.04
+
timeout-minutes: 20
+
permissions:
+
contents: write
+
id-token: write
+
issues: write
+
repository-projects: write
+
deployments: write
+
packages: write
+
pull-requests: write
+
steps:
+
- name: Checkout Repo
+
uses: actions/checkout@v3
+
with:
+
fetch-depth: 0
+
+
- name: Setup pnpm
+
uses: pnpm/action-setup@v3
+
with:
+
version: 9
+
run_install: false
+
+
- name: Setup Node
+
uses: actions/setup-node@v4
+
with:
+
node-version: 22
+
cache: 'pnpm'
+
+
- name: Install Dependencies
+
run: pnpm install --frozen-lockfile --prefer-offline
+
+
- name: PR or Publish
+
id: changesets
+
uses: changesets/action@v1.5.3
+
with:
+
version: pnpm changeset:version
+
publish: pnpm changeset:publish
+
env:
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+
+
- name: Publish Prerelease
+
if: steps.changesets.outputs.published != 'true'
+
env:
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+
run: |
+
git reset --hard origin/main
+
pnpm changeset version --no-git-tag --snapshot canary
+
pnpm changeset publish --no-git-tag --snapshot canary --tag canary
+8 -41
.gitignore
···
-
*.exe
-
*.obj
-
*.out
-
*.compile
-
*.native
-
*.byte
-
*.cmo
-
*.annot
-
*.cmi
-
*.cmx
-
*.cmt
-
*.cmti
-
*.cma
-
*.a
-
*.cmxa
-
*.obj
-
*~
-
*.annot
-
*.cmj
-
*.bak
-
lib/bs
-
*.mlast
-
*.mliast
-
*.install
-
.vscode
-
.merlin
-
.bsb.lock
-
.cache/
-
-
yarn-error.log
+
/.idea
+
/.vscode
+
**/node_modules
+
*.log
+
.rts2_cache*
+
.husky
dist/
-
node_modules/
-
lib/
-
src/**/*.bs.js
-
src/**/*.gen.tsx
-
src/**/*.gen.ts
-
src/**/*.js.flow
-
include/**/*.js
-
__tests__/**/*.js
-
coverage/
-
_esy/
-
public/
+
package-lock.json
+
.DS_Store
-2
.npmignore
···
-
.*
-
/esy.lock
-26
.travis.yml
···
-
notifications:
-
email: false
-
-
branches:
-
only:
-
- master
-
- develop
-
- /^v\d+\.\d+\.\d+/
-
-
language: node_js
-
cache:
-
yarn: true
-
node_js:
-
- '10'
-
-
matrix:
-
fast_finish: true
-
-
install:
-
- yarn install --frozen-lockfile --non-interactive
-
-
script:
-
- yarn run build
-
- yarn run check
-
- yarn run test --coverage
-
- cat ./coverage/lcov.info | ./node_modules/.bin/coveralls
+102
CHANGELOG.md
···
+
# wonka
+
+
## 6.3.5
+
+
### Patch Changes
+
+
- Exclude `sourcesContent` from published sourcemaps
+
Submitted by [@kitten](https://github.com/kitten) (See [`68e608f`](https://github.com/0no-co/wonka/commit/68e608f46244e82d41c952ecfa1d7f0096e168f6))
+
+
## 6.3.4
+
+
### Patch Changes
+
+
- Add missing `Symbol.observable` global declaration back to typings
+
Submitted by [@kitten](https://github.com/kitten) (See [#168](https://github.com/0no-co/wonka/pull/168))
+
+
## 6.3.3
+
+
### Patch Changes
+
+
- Improve compatibility of `fromAsyncIterable` and `toAsyncIterable`. The `toAsyncIterable` will now output an object that's both an `AsyncIterator` and an `AsyncIterable`. Both helpers will now use a polyfill for `Symbol.asyncIterator` to improve compatibility with the Hermes engine and Babel transpilation
+
Submitted by [@kitten](https://github.com/kitten) (See [#165](https://github.com/0no-co/wonka/pull/165))
+
+
## 6.3.2
+
+
### Patch Changes
+
+
- Publish with npm provenance
+
Submitted by [@kitten](https://github.com/kitten) (See [#161](https://github.com/0no-co/wonka/pull/161))
+
+
## 6.3.1
+
+
### Patch Changes
+
+
- ⚠️ Fix missing `declare` keyword on internal ambient enums
+
Submitted by [@kitten](https://github.com/kitten) (See [#159](https://github.com/0no-co/wonka/pull/159))
+
+
## 6.3.0
+
+
### Minor Changes
+
+
- Add `addOne` argument to `takeWhile`, allowing an additional value to be issued
+
Submitted by [@kitten](https://github.com/kitten) (See [#156](https://github.com/0no-co/wonka/pull/156))
+
+
### Patch Changes
+
+
- Convert `Push<T>` and `Start<T>` signals to `{ tag, 0: value }` objects, which are sufficiently backwards compatible and result in slightly faster execution in v8
+
Submitted by [@kitten](https://github.com/kitten) (See [#155](https://github.com/0no-co/wonka/pull/155))
+
+
## 6.2.6
+
+
### Patch Changes
+
+
- ⚠️ Fix missing source contents in Wonka sourcemaps
+
Submitted by [@kitten](https://github.com/kitten) (See [`56d9708`](https://github.com/0no-co/wonka/commit/56d970861424fddd403262bf85d7e1e3572b15e2))
+
- ⚠️ Fix internal `SignalKind` and `TalkbackKind` enums not compiling away
+
Submitted by [@kitten](https://github.com/kitten) (See [#154](https://github.com/0no-co/wonka/pull/154))
+
+
## 6.2.5
+
+
### Patch Changes
+
+
- Make `closed: boolean` on `ObservableSubscription`s a required field to comply with the Observable proposal's type spec
+
Submitted by [@naporin0624](https://github.com/naporin0624) (See [#151](https://github.com/0no-co/wonka/pull/151))
+
+
## 6.2.4
+
+
### Patch Changes
+
+
- Add missing overload definition for `filter`, which allows types to be narrowed, e.g. by specifying a type predicate return type
+
Submitted by [@kitten](https://github.com/kitten) (See [#149](https://github.com/0no-co/wonka/pull/149))
+
+
## 6.2.3
+
+
### Patch Changes
+
+
- ⚠️ Fix overload of `pipe` type not being applied in bundled `d.ts` file, by [@kitten](https://github.com/kitten) (See [#144](https://github.com/0no-co/wonka/pull/144))
+
+
## 6.2.2
+
+
### Patch Changes
+
+
- ⚠️ Fix missing `Symbol.observable` typings and remove `const enum` exports, which aren't usable in isolated modules, by [@kitten](https://github.com/kitten) (See [#141](https://github.com/0no-co/wonka/pull/141))
+
+
## 6.2.1
+
+
### Patch Changes
+
+
- ⚠️ Fix accidental addition of `postinstall` script rather than `prepare` script, by [@kitten](https://github.com/kitten) (See [#138](https://github.com/0no-co/wonka/pull/138))
+
+
## 6.2.0
+
+
### Minor Changes
+
+
- Implement `toAsyncIterable`, converting a Wonka source to a JS Async Iterable, by [@kitten](https://github.com/kitten) (See [#133](https://github.com/0no-co/wonka/pull/133))
+
- Implement `d.ts` bundling. Only a single `wonka.d.ts` typings file will now be available to TypeScript, by [@kitten](https://github.com/kitten) (See [#135](https://github.com/0no-co/wonka/pull/135))
+
- Add extensive TSDoc documentation for all `wonka` internals and exports. This will replace the documentation and give consumers more guidance on each of the library's extensive utilities, by [@kitten](https://github.com/kitten) (See [#136](https://github.com/0no-co/wonka/pull/136))
+
+
### Patch Changes
+
+
- ⚠️ Fix promise timing by adding missing `Promise.resolve()` tick to `toPromise` sink function, by [@kitten](https://github.com/kitten) (See [#131](https://github.com/0no-co/wonka/pull/131))
+
- ⚠️ Fix implementation of Observable spec as such that Observable.subscribe(onNext, onError, onComplete) becomes valid, by [@kitten](https://github.com/kitten) (See [#132](https://github.com/0no-co/wonka/pull/132))
+163
CONTRIBUTING.md
···
+
# Development
+
+
Thanks for contributing! We want to ensure that `wonka` evolves
+
and fulfills its idea of being a tiny & capable push & pull stream library!
+
+
## How to contribute?
+
+
We follow fairly standard but lenient rules around pull requests and issues.
+
Please pick a title that describes your change briefly, optionally in the imperative
+
mood if possible.
+
+
If you have an idea for a feature or want to fix a bug, consider opening an issue
+
first. We're also happy to discuss and help you open a PR and get your changes
+
in!
+
+
- If you have a question, try [creating a GitHub Discussions thread.](https://github.com/0no-co/wonka/discussions/new/choose)
+
- If you think you've found a bug, [open a new issue.](https://github.com/0no-co/wonka/issues/new)
+
- or, if you found a bug you'd like to fix, [open a PR.](https://github.com/0no-co/wonka/compare)
+
- If you'd like to propose a change [open an RFC issue.](https://github.com/0no-co/wonka/issues/new?labels=future+%F0%9F%94%AE&template=RFC.md&title=RFC%3A+Your+Proposal) You can read more about the RFC process [below](#how-do-i-propose-changes).
+
+
### What are the issue conventions?
+
+
There are **no strict conventions**, but we do have two templates in place that will fit most
+
issues, since questions and other discussion start on GitHub Discussions. The bug template is fairly
+
standard and the rule of thumb is to try to explain **what you expected** and **what you got
+
instead.** Following this makes it very clear whether it's a known behavior, an unexpected issue,
+
or an undocumented quirk.
+
+
### How do I propose changes?
+
+
We follow an **RFC proposal process**. This allows anyone to propose a new feature or a change, and
+
allows us to communicate our current planned features or changes, so any technical discussion,
+
progress, or upcoming changes are always **documented transparently.** You can [find the RFC
+
template](https://github.com/0no-co/wonka/issues/new/choose) in our issue creator.
+
+
### What are the PR conventions?
+
+
This also comes with **no strict conventions**. We only ask you to follow the PR template we have
+
in place more strictly here than the templates for issues, since it asks you to list a summary
+
(maybe even with a short explanation) and a list of technical changes.
+
+
If you're **resolving** an issue please don't forget to add `Resolve #123` to the description so that
+
it's automatically linked, so that there's no ambiguity and which issue is being addressed (if any)
+
+
You'll find that a comment by the "Changeset" bot may pop up. If you don't know what a **changeset**
+
is and why it's asking you to document your changes, read on at ["How do I document a change for the
+
changelog"](#how-do-i-document-a-change-for-the-changelog)
+
+
We also typically **name** our PRs with a slightly descriptive title, e.g. `feat: Title`.
+
+
## How do I set up the project?
+
+
Luckily it's not hard to get started. You can install dependencie
+
[using `pnpm`](https://pnpm.io/installation#using-corepack).
+
Please don't use `npm` or `yarn` to respect the lockfile.
+
+
```sh
+
pnpm install
+
```
+
+
There are multiple commands you can run in the root folder to test your changes:
+
+
```sh
+
# TypeScript checks:
+
pnpm run check
+
+
# Linting (prettier & eslint):
+
pnpm run lint
+
+
# Unit Tests:
+
pnpm run test
+
+
# Builds:
+
pnpm run build
+
```
+
+
## How do I test my changes?
+
+
It's always good practice to run the tests when making changes. If you're unsure which packages
+
may be affected by your new tests or changes you may run `pnpm test` in the root of
+
the repository.
+
+
If your editor is not set up with type checks you may also want to run `pnpm run check` on your
+
changes.
+
+
Additionally you can head to any example in the `examples/` folder
+
and run them. There you'll also need to install their dependencies as they're isolated projects,
+
without a lockfile and without linking to packages in the monorepos.
+
All examples are started using the `package.json`'s `start` script.
+
+
## How do I lint my code?
+
+
We ensure consistency in this codebase using `eslint` and `prettier`.
+
They are run on a `precommit` hook, so if something's off they'll try
+
to automatically fix up your code, or display an error.
+
+
If you have them set up in your editor, even better!
+
+
## How do I document a change for the changelog?
+
+
This project uses [changesets](https://github.com/atlassian/changesets). This means that for
+
every PR there must be documentation for what has been changed and which package is affected.
+
+
You can document a change by running `changeset`, which will ask you which packages
+
have changed and whether the change is major/minor/patch. It will then ask you to write
+
a change entry as markdown.
+
+
```sh
+
# In the root of the urql repository call:
+
pnpm changeset
+
```
+
+
This will create a new "changeset file" in the `.changeset` folder, which you should commit and
+
push, so that it's added to your PR.
+
This will eventually end up in the package's `CHANGELOG.md` file when we do a release.
+
+
You won't need to add a changeset if you're simply making "non-visible" changes to the docs or other
+
files that aren't published to the npm registry.
+
+
[Read more about adding a `changeset` here.](https://github.com/atlassian/changesets/blob/master/docs/adding-a-changeset.md#i-am-in-a-multi-package-repository-a-mono-repo)
+
+
## How do I release new versions of our packages?
+
+
Hold up, that's **automated**! Since we use `changeset` to document our changes, which determines what
+
goes into the changelog and what kind of version bump a change should make, you can also use the
+
tool to check what's currently posed to change after a release batch using: `pnpm changeset status`.
+
+
We have a [GitHub Actions workflow](./.github/workflow/release.yml) which is triggered whenever new
+
changes are merged. It will always open a **"Version Packages" PR** which is kept up-to-date. This PR
+
documents all changes that are made and will show in its description what all new changelogs are
+
going to contain for their new entries.
+
+
Once a "Version Packages" PR is approved by a contributor and merged, the action will automatically
+
take care of creating the release, publishing all updated packages to the npm registry, and creating
+
appropriate tags on GitHub too.
+
+
This process is automated, but the changelog should be checked for errors.
+
+
As to **when** to merge the automated PR and publish? Maybe not after every change. Typically there
+
are two release batches: hotfixes and release batches. We expect that a hotfix for a single package
+
should go out as quickly as possible if it negatively affects users. For **release batches**
+
however, it's common to assume that if one change is made to a package that more will follow in the
+
same week. So waiting for **a day or two** when other changes are expected will make sense to keep the
+
fatigue as low as possible for downstream maintainers.
+
+
## How do I upgrade all dependencies?
+
+
It may be a good idea to keep all dependencies on this repository **up-to-date** every now and
+
then. Typically we do this by running `pnpm update --interactive --latest` and checking one-by-one
+
which dependencies will need to be bumped. In case of any security issues it may make sense to
+
just run `pnpm update [package]`.
+
+
While this is rare with `pnpm`, upgrading some transitive dependencies may accidentally duplicate
+
them if two packages depend on different compatible version ranges. This can be fixed by running:
+
+
```sh
+
pnpm dedupe
+
pnpm install
+
```
+
+
It's common to then **create a PR** (with a changeset documenting the packages that need to reflect
+
new changes if any `dependencies` have changed) with the name of
+
"(chore) - Upgrade direct and transitive dependencies" or something similar.
+1 -1
LICENSE.md
···
MIT License
-
Copyright (c) 2018–2022 0no.co
+
Copyright (c) 0no.co
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
+1 -1
docs/api/operators.md
···
pipe(
interval(10),
throttle(() => 50)
-
takew(2),
+
take(2),
subscribe(val => console.log(val))
); // Outputs 0 6 to the console.
```
+1 -1
docs/api/sinks.md
···
```typescript
import { pipe, subscribe } from 'wonka';
-
const [unsubscribe] = pipe(
+
const { unsubscribe } = pipe(
source,
subscribe((x) => console.log(x));
);
+1 -1
index.js.flow
···
// @flow
-
declare export * from "./dist/types/index.js.flow"
+
declare export * from "./dist/wonka.js.flow"
+34 -23
package.json
···
{
"name": "wonka",
"description": "A tiny but capable push & pull stream library for TypeScript and Flow",
-
"version": "6.1.1",
+
"version": "6.3.5",
"author": "0no.co <hi@0no.co>",
"source": "./src/index.ts",
"main": "./dist/wonka",
"module": "./dist/wonka.mjs",
-
"types": "./dist/types/index.d.ts",
+
"types": "./dist/wonka.d.ts",
"exports": {
".": {
+
"types": "./dist/wonka.d.ts",
"import": "./dist/wonka.mjs",
"require": "./dist/wonka.js",
-
"types": "./dist/types/index.d.ts",
"source": "./src/index.ts"
},
"./package.json": "./package.json"
···
"test": "vitest run",
"check": "tsc",
"lint": "eslint --ext=js,ts .",
-
"build": "rollup -c rollup.config.js",
+
"build": "rollup -c scripts/rollup.config.mjs",
"clean": "rimraf dist node_modules/.cache",
-
"prepublishOnly": "run-s clean build check test"
+
"prepublishOnly": "run-s clean build check test",
+
"prepare": "node ./scripts/prepare.js",
+
"changeset:version": "changeset version && pnpm install --lockfile-only",
+
"changeset:publish": "changeset publish"
},
"repository": "https://github.com/0no-co/wonka",
"bugs": {
···
"./scripts/eslint-preset.js"
]
},
-
"dependencies": {},
+
"publishConfig": {
+
"provenance": true
+
},
"devDependencies": {
-
"@rollup/plugin-buble": "^0.21.3",
-
"@rollup/plugin-commonjs": "^22.0.2",
-
"@rollup/plugin-node-resolve": "^13.3.0",
-
"@rollup/plugin-typescript": "^8.3.4",
-
"@rollup/pluginutils": "^4.2.1",
+
"@changesets/cli": "^2.29.6",
+
"@changesets/get-github-info": "^0.6.0",
+
"@rollup/plugin-buble": "^1.0.1",
+
"@rollup/plugin-commonjs": "^23.0.3",
+
"@rollup/plugin-node-resolve": "^15.0.1",
+
"@rollup/plugin-sucrase": "^5.0.1",
+
"@rollup/plugin-terser": "^0.1.0",
+
"@rollup/pluginutils": "^5.0.2",
"@types/zen-observable": "^0.8.3",
-
"@typescript-eslint/eslint-plugin": "^5.33.0",
-
"@typescript-eslint/parser": "^5.33.0",
+
"@typescript-eslint/eslint-plugin": "^5.45.0",
+
"@typescript-eslint/parser": "^5.45.0",
"callbag-from-iter": "^1.3.0",
"callbag-iterate": "^1.0.0",
"callbag-take": "^1.5.0",
-
"eslint": "^8.21.0",
+
"dotenv": "^16.0.3",
+
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
-
"flowgen": "^1.20.1",
+
"eslint-plugin-tsdoc": "^0.2.17",
+
"flowgen": "^1.21.0",
"glob": "^8.0.3",
"husky-v4": "^4.3.8",
-
"lint-staged": "^13.0.3",
+
"lint-staged": "^13.0.4",
"npm-run-all": "^4.1.5",
-
"prettier": "^2.7.1",
+
"prettier": "^2.8.0",
"rimraf": "^3.0.2",
-
"rollup": "^2.77.3",
-
"rollup-plugin-terser": "^7.0.2",
-
"tslib": "^2.4.0",
-
"typescript": "^4.8.2",
-
"vitest": "^0.23.4",
-
"zen-observable": "^0.8.15"
+
"rollup": "^3.5.1",
+
"rollup-plugin-cjs-check": "^1.0.1",
+
"rollup-plugin-dts": "^5.1.1",
+
"tslib": "^2.4.1",
+
"typescript": "^4.9.5",
+
"vitest": "^1.2.2",
+
"zen-observable": "^0.10.0"
}
}
+222
perf/pnpm-lock.yaml
···
+
lockfileVersion: 5.4
+
+
specifiers:
+
benchr: ^4.3.0
+
most: ^1.7.3
+
rxjs: ^6.3.3
+
wonka-v4: npm:wonka@^4.0.0
+
+
dependencies:
+
most: 1.9.0
+
rxjs: 6.6.7
+
wonka-v4: /wonka/4.0.15
+
+
devDependencies:
+
benchr: 4.3.0
+
+
packages:
+
+
/@most/multicast/1.3.0_most@1.9.0:
+
resolution: {integrity: sha512-DWH8AShgp5bXn+auGzf5tzPxvpmEvQJd0CNsApOci1LDF4eAEcnw4HQOr2Jaa+L92NbDYFKBSXxll+i7r1ikvw==}
+
peerDependencies:
+
most: ^1.0.1
+
dependencies:
+
'@most/prelude': 1.8.0
+
most: 1.9.0
+
dev: false
+
+
/@most/prelude/1.8.0:
+
resolution: {integrity: sha512-t1CcURpZzfmBA6fEWwqmCqeNzWAj1w2WqEmCk/2yXMe/p8Ut000wFmVKMy8A1Rl9VVxZEZ5nBHd/pU0dR4bv/w==}
+
dev: false
+
+
/ansi-regex/5.0.1:
+
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
+
engines: {node: '>=8'}
+
dev: true
+
+
/ansi-styles/3.2.1:
+
resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
+
engines: {node: '>=4'}
+
dependencies:
+
color-convert: 1.9.3
+
dev: true
+
+
/benchmark/2.1.4:
+
resolution: {integrity: sha512-l9MlfN4M1K/H2fbhfMy3B7vJd6AGKJVQn2h6Sg/Yx+KckoUA7ewS5Vv6TjSq18ooE1kS9hhAlQRH3AkXIh/aOQ==}
+
dependencies:
+
lodash: 4.17.21
+
platform: 1.3.6
+
dev: true
+
+
/benchr/4.3.0:
+
resolution: {integrity: sha512-ZOJkEOLOI4vyf34fnUSmh+xvg8P86cmVfyORBgIJHLfXMuvrfkMsUEThMaJND406KGCigtBO6sMjExGbp+WeLw==}
+
engines: {node: '>=6.0.0'}
+
hasBin: true
+
dependencies:
+
benchmark: 2.1.4
+
chalk: 2.4.2
+
docopt: 0.6.2
+
easy-table: 1.2.0
+
require-all: 2.2.0
+
dev: true
+
+
/chalk/2.4.2:
+
resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
+
engines: {node: '>=4'}
+
dependencies:
+
ansi-styles: 3.2.1
+
escape-string-regexp: 1.0.5
+
supports-color: 5.5.0
+
dev: true
+
+
/clone/1.0.4:
+
resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==}
+
engines: {node: '>=0.8'}
+
dev: true
+
optional: true
+
+
/color-convert/1.9.3:
+
resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
+
dependencies:
+
color-name: 1.1.3
+
dev: true
+
+
/color-name/1.1.3:
+
resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
+
dev: true
+
+
/defaults/1.0.4:
+
resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==}
+
dependencies:
+
clone: 1.0.4
+
dev: true
+
optional: true
+
+
/define-properties/1.1.4:
+
resolution: {integrity: sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==}
+
engines: {node: '>= 0.4'}
+
dependencies:
+
has-property-descriptors: 1.0.0
+
object-keys: 1.1.1
+
dev: false
+
+
/docopt/0.6.2:
+
resolution: {integrity: sha512-NqTbaYeE4gA/wU1hdKFdU+AFahpDOpgGLzHP42k6H6DKExJd0A55KEVWYhL9FEmHmgeLvEU2vuKXDuU+4yToOw==}
+
engines: {node: '>=0.10.0'}
+
dev: true
+
+
/easy-table/1.2.0:
+
resolution: {integrity: sha512-OFzVOv03YpvtcWGe5AayU5G2hgybsg3iqA6drU8UaoZyB9jLGMTrz9+asnLp/E+6qPh88yEI1gvyZFZ41dmgww==}
+
dependencies:
+
ansi-regex: 5.0.1
+
optionalDependencies:
+
wcwidth: 1.0.1
+
dev: true
+
+
/escape-string-regexp/1.0.5:
+
resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
+
engines: {node: '>=0.8.0'}
+
dev: true
+
+
/function-bind/1.1.1:
+
resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==}
+
dev: false
+
+
/get-intrinsic/1.1.3:
+
resolution: {integrity: sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==}
+
dependencies:
+
function-bind: 1.1.1
+
has: 1.0.3
+
has-symbols: 1.0.3
+
dev: false
+
+
/globalthis/1.0.3:
+
resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==}
+
engines: {node: '>= 0.4'}
+
dependencies:
+
define-properties: 1.1.4
+
dev: false
+
+
/has-flag/3.0.0:
+
resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
+
engines: {node: '>=4'}
+
dev: true
+
+
/has-property-descriptors/1.0.0:
+
resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==}
+
dependencies:
+
get-intrinsic: 1.1.3
+
dev: false
+
+
/has-symbols/1.0.3:
+
resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
+
engines: {node: '>= 0.4'}
+
dev: false
+
+
/has/1.0.3:
+
resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==}
+
engines: {node: '>= 0.4.0'}
+
dependencies:
+
function-bind: 1.1.1
+
dev: false
+
+
/lodash/4.17.21:
+
resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
+
dev: true
+
+
/most/1.9.0:
+
resolution: {integrity: sha512-M7yHMcMGaclzEL6eg8Yh8PlAsaWfL/oSThF4+ZuWKM5CKXcbzmLh+qESwgZFzMKHJ+iVJwb28yFvDEOobI653w==}
+
dependencies:
+
'@most/multicast': 1.3.0_most@1.9.0
+
'@most/prelude': 1.8.0
+
globalthis: 1.0.3
+
symbol-observable: 2.0.3
+
dev: false
+
+
/object-keys/1.1.1:
+
resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
+
engines: {node: '>= 0.4'}
+
dev: false
+
+
/platform/1.3.6:
+
resolution: {integrity: sha512-fnWVljUchTro6RiCFvCXBbNhJc2NijN7oIQxbwsyL0buWJPG85v81ehlHI9fXrJsMNgTofEoWIQeClKpgxFLrg==}
+
dev: true
+
+
/require-all/2.2.0:
+
resolution: {integrity: sha512-YWj/WNCxs+KxppuN3j11Ztqzl8MI/oWj4ERwEwgJ5gsHzWi8OAK7FepPu8MLv/Rn8Pov6aPdpRkaoO2Tb6m+zQ==}
+
dev: true
+
+
/rxjs/6.6.7:
+
resolution: {integrity: sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==}
+
engines: {npm: '>=2.0.0'}
+
dependencies:
+
tslib: 1.14.1
+
dev: false
+
+
/supports-color/5.5.0:
+
resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
+
engines: {node: '>=4'}
+
dependencies:
+
has-flag: 3.0.0
+
dev: true
+
+
/symbol-observable/2.0.3:
+
resolution: {integrity: sha512-sQV7phh2WCYAn81oAkakC5qjq2Ml0g8ozqz03wOGnx9dDlG1de6yrF+0RAzSJD8fPUow3PTSMf2SAbOGxb93BA==}
+
engines: {node: '>=0.10'}
+
dev: false
+
+
/tslib/1.14.1:
+
resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
+
dev: false
+
+
/wcwidth/1.0.1:
+
resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==}
+
requiresBuild: true
+
dependencies:
+
defaults: 1.0.4
+
dev: true
+
optional: true
+
+
/wonka/4.0.15:
+
resolution: {integrity: sha512-U0IUQHKXXn6PFo9nqsHphVCE5m3IntqZNB9Jjn7EB1lrR7YTDY3YWgFvEvwniTzXSvOH/XMzAZaIfJF/LvHYXg==}
+
dev: false
-163
perf/yarn.lock
···
-
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
-
# yarn lockfile v1
-
-
-
"@most/multicast@^1.2.5":
-
version "1.3.0"
-
resolved "https://registry.yarnpkg.com/@most/multicast/-/multicast-1.3.0.tgz#e01574840df634478ac3fabd164c6e830fb3b966"
-
integrity sha512-DWH8AShgp5bXn+auGzf5tzPxvpmEvQJd0CNsApOci1LDF4eAEcnw4HQOr2Jaa+L92NbDYFKBSXxll+i7r1ikvw==
-
dependencies:
-
"@most/prelude" "^1.4.0"
-
-
"@most/prelude@^1.4.0":
-
version "1.7.2"
-
resolved "https://registry.yarnpkg.com/@most/prelude/-/prelude-1.7.2.tgz#be4ed406518d4c8c220e45c39fa7251365425b73"
-
integrity sha512-GM5ec7+xpkuXiCMyzhyENgH/xZ8t0nAMDBY0QOsVVD6TrZYjJKUnW1eaI18HHX8W+COWMwWR9c0zoPiBp9+tUg==
-
-
ansi-regex@^3.0.0:
-
version "3.0.0"
-
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998"
-
integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=
-
-
ansi-styles@^3.2.1:
-
version "3.2.1"
-
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
-
integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
-
dependencies:
-
color-convert "^1.9.0"
-
-
benchmark@^2.1.4:
-
version "2.1.4"
-
resolved "https://registry.yarnpkg.com/benchmark/-/benchmark-2.1.4.tgz#09f3de31c916425d498cc2ee565a0ebf3c2a5629"
-
integrity sha1-CfPeMckWQl1JjMLuVloOvzwqVik=
-
dependencies:
-
lodash "^4.17.4"
-
platform "^1.3.3"
-
-
benchr@^4.3.0:
-
version "4.3.0"
-
resolved "https://registry.yarnpkg.com/benchr/-/benchr-4.3.0.tgz#48d7e0f7150340fff3db0222203b84c6cb7719ad"
-
integrity sha512-ZOJkEOLOI4vyf34fnUSmh+xvg8P86cmVfyORBgIJHLfXMuvrfkMsUEThMaJND406KGCigtBO6sMjExGbp+WeLw==
-
dependencies:
-
benchmark "^2.1.4"
-
chalk "^2.3.0"
-
docopt "^0.6.2"
-
easy-table "^1.1.1"
-
require-all "^2.2.0"
-
-
chalk@^2.3.0:
-
version "2.4.2"
-
resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
-
integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
-
dependencies:
-
ansi-styles "^3.2.1"
-
escape-string-regexp "^1.0.5"
-
supports-color "^5.3.0"
-
-
clone@^1.0.2:
-
version "1.0.4"
-
resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e"
-
integrity sha1-2jCcwmPfFZlMaIypAheco8fNfH4=
-
-
color-convert@^1.9.0:
-
version "1.9.3"
-
resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
-
integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
-
dependencies:
-
color-name "1.1.3"
-
-
color-name@1.1.3:
-
version "1.1.3"
-
resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
-
integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=
-
-
defaults@^1.0.3:
-
version "1.0.3"
-
resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d"
-
integrity sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=
-
dependencies:
-
clone "^1.0.2"
-
-
docopt@^0.6.2:
-
version "0.6.2"
-
resolved "https://registry.yarnpkg.com/docopt/-/docopt-0.6.2.tgz#b28e9e2220da5ec49f7ea5bb24a47787405eeb11"
-
integrity sha1-so6eIiDaXsSffqW7JKR3h0Be6xE=
-
-
easy-table@^1.1.1:
-
version "1.1.1"
-
resolved "https://registry.yarnpkg.com/easy-table/-/easy-table-1.1.1.tgz#c1b9b9ad68a017091a1c235e4bcba277540e143f"
-
integrity sha512-C9Lvm0WFcn2RgxbMnTbXZenMIWcBtkzMr+dWqq/JsVoGFSVUVlPqeOa5LP5kM0I3zoOazFpckOEb2/0LDFfToQ==
-
dependencies:
-
ansi-regex "^3.0.0"
-
optionalDependencies:
-
wcwidth ">=1.0.1"
-
-
escape-string-regexp@^1.0.5:
-
version "1.0.5"
-
resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
-
integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=
-
-
has-flag@^3.0.0:
-
version "3.0.0"
-
resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
-
integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0=
-
-
lodash@^4.17.4:
-
version "4.17.14"
-
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.14.tgz#9ce487ae66c96254fe20b599f21b6816028078ba"
-
integrity sha512-mmKYbW3GLuJeX+iGP+Y7Gp1AiGHGbXHCOh/jZmrawMmsE7MS4znI3RL2FsjbqOyMayHInjOeykW7PEajUk1/xw==
-
-
most@^1.7.3:
-
version "1.7.3"
-
resolved "https://registry.yarnpkg.com/most/-/most-1.7.3.tgz#406c31a66d73aa16957816fdf96965e27df84f1a"
-
integrity sha512-mk68SM/ptK8WSo3l03raXcWy02Hl7jbzxVozMuvyYxohn4yteh2THhl3+XABF5cunWE8eXHAsLbv+RCJI5y+jg==
-
dependencies:
-
"@most/multicast" "^1.2.5"
-
"@most/prelude" "^1.4.0"
-
symbol-observable "^1.0.2"
-
-
platform@^1.3.3:
-
version "1.3.5"
-
resolved "https://registry.yarnpkg.com/platform/-/platform-1.3.5.tgz#fb6958c696e07e2918d2eeda0f0bc9448d733444"
-
integrity sha512-TuvHS8AOIZNAlE77WUDiR4rySV/VMptyMfcfeoMgs4P8apaZM3JrnbzBiixKUv+XR6i+BXrQh8WAnjaSPFO65Q==
-
-
require-all@^2.2.0:
-
version "2.2.0"
-
resolved "https://registry.yarnpkg.com/require-all/-/require-all-2.2.0.tgz#b4420c233ac0282d0ff49b277fb880a8b5de0894"
-
integrity sha1-tEIMIzrAKC0P9Jsnf7iAqLXeCJQ=
-
-
rxjs@^6.3.3:
-
version "6.3.3"
-
resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.3.3.tgz#3c6a7fa420e844a81390fb1158a9ec614f4bad55"
-
integrity sha512-JTWmoY9tWCs7zvIk/CvRjhjGaOd+OVBM987mxFo+OW66cGpdKjZcpmc74ES1sB//7Kl/PAe8+wEakuhG4pcgOw==
-
dependencies:
-
tslib "^1.9.0"
-
-
supports-color@^5.3.0:
-
version "5.5.0"
-
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
-
integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
-
dependencies:
-
has-flag "^3.0.0"
-
-
symbol-observable@^1.0.2:
-
version "1.2.0"
-
resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.2.0.tgz#c22688aed4eab3cdc2dfeacbb561660560a00804"
-
integrity sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==
-
-
tslib@^1.9.0:
-
version "1.9.3"
-
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.9.3.tgz#d7e4dd79245d85428c4d7e4822a79917954ca286"
-
integrity sha512-4krF8scpejhaOgqzBEcGM7yDIEfi0/8+8zDRZhNZZ2kjmHJ4hv3zCbQWxoJGz1iw5U0Jl0nma13xzHXcncMavQ==
-
-
wcwidth@>=1.0.1:
-
version "1.0.1"
-
resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8"
-
integrity sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=
-
dependencies:
-
defaults "^1.0.3"
-
-
"wonka-v4@npm:wonka@^4.0.0":
-
version "4.0.15"
-
resolved "https://registry.yarnpkg.com/wonka/-/wonka-4.0.15.tgz#9aa42046efa424565ab8f8f451fcca955bf80b89"
-
integrity sha512-U0IUQHKXXn6PFo9nqsHphVCE5m3IntqZNB9Jjn7EB1lrR7YTDY3YWgFvEvwniTzXSvOH/XMzAZaIfJF/LvHYXg==
+5110
pnpm-lock.yaml
···
+
lockfileVersion: '9.0'
+
+
settings:
+
autoInstallPeers: true
+
excludeLinksFromLockfile: false
+
+
importers:
+
+
.:
+
devDependencies:
+
'@changesets/cli':
+
specifier: ^2.29.6
+
version: 2.29.6(@types/node@22.13.9)
+
'@changesets/get-github-info':
+
specifier: ^0.6.0
+
version: 0.6.0
+
'@rollup/plugin-buble':
+
specifier: ^1.0.1
+
version: 1.0.3(rollup@3.29.5)
+
'@rollup/plugin-commonjs':
+
specifier: ^23.0.3
+
version: 23.0.7(rollup@3.29.5)
+
'@rollup/plugin-node-resolve':
+
specifier: ^15.0.1
+
version: 15.3.1(rollup@3.29.5)
+
'@rollup/plugin-sucrase':
+
specifier: ^5.0.1
+
version: 5.0.2(rollup@3.29.5)
+
'@rollup/plugin-terser':
+
specifier: ^0.1.0
+
version: 0.1.0(rollup@3.29.5)
+
'@rollup/pluginutils':
+
specifier: ^5.0.2
+
version: 5.1.4(rollup@3.29.5)
+
'@types/zen-observable':
+
specifier: ^0.8.3
+
version: 0.8.7
+
'@typescript-eslint/eslint-plugin':
+
specifier: ^5.45.0
+
version: 5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.1)(typescript@4.9.5))(eslint@8.57.1)(typescript@4.9.5)
+
'@typescript-eslint/parser':
+
specifier: ^5.45.0
+
version: 5.62.0(eslint@8.57.1)(typescript@4.9.5)
+
callbag-from-iter:
+
specifier: ^1.3.0
+
version: 1.3.0
+
callbag-iterate:
+
specifier: ^1.0.0
+
version: 1.0.0
+
callbag-take:
+
specifier: ^1.5.0
+
version: 1.5.0
+
dotenv:
+
specifier: ^16.0.3
+
version: 16.4.7
+
eslint:
+
specifier: ^8.29.0
+
version: 8.57.1
+
eslint-config-prettier:
+
specifier: ^8.5.0
+
version: 8.10.0(eslint@8.57.1)
+
eslint-plugin-prettier:
+
specifier: ^4.2.1
+
version: 4.2.1(eslint-config-prettier@8.10.0(eslint@8.57.1))(eslint@8.57.1)(prettier@2.8.8)
+
eslint-plugin-tsdoc:
+
specifier: ^0.2.17
+
version: 0.2.17
+
flowgen:
+
specifier: ^1.21.0
+
version: 1.21.0
+
glob:
+
specifier: ^8.0.3
+
version: 8.1.0
+
husky-v4:
+
specifier: ^4.3.8
+
version: 4.3.8
+
lint-staged:
+
specifier: ^13.0.4
+
version: 13.3.0(enquirer@2.4.1)
+
npm-run-all:
+
specifier: ^4.1.5
+
version: 4.1.5
+
prettier:
+
specifier: ^2.8.0
+
version: 2.8.8
+
rimraf:
+
specifier: ^3.0.2
+
version: 3.0.2
+
rollup:
+
specifier: ^3.5.1
+
version: 3.29.5
+
rollup-plugin-cjs-check:
+
specifier: ^1.0.1
+
version: 1.0.3(rollup@3.29.5)
+
rollup-plugin-dts:
+
specifier: ^5.1.1
+
version: 5.3.1(rollup@3.29.5)(typescript@4.9.5)
+
tslib:
+
specifier: ^2.4.1
+
version: 2.8.1
+
typescript:
+
specifier: ^4.9.5
+
version: 4.9.5
+
vitest:
+
specifier: ^1.2.2
+
version: 1.6.1(@types/node@22.13.9)(terser@5.39.0)
+
zen-observable:
+
specifier: ^0.10.0
+
version: 0.10.0
+
+
packages:
+
+
'@babel/code-frame@7.26.2':
+
resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
+
engines: {node: '>=6.9.0'}
+
+
'@babel/helper-validator-identifier@7.25.9':
+
resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
+
engines: {node: '>=6.9.0'}
+
+
'@babel/highlight@7.25.9':
+
resolution: {integrity: sha512-llL88JShoCsth8fF8R4SJnIn+WLvR6ccFxu1H3FlMhDontdcmZWf2HgIZ7AIqV3Xcck1idlohrN4EUBQz6klbw==}
+
engines: {node: '>=6.9.0'}
+
+
'@babel/runtime@7.26.9':
+
resolution: {integrity: sha512-aA63XwOkcl4xxQa3HjPMqOP6LiK0ZDv3mUPYEFXkpHbaFjtGggE1A61FjFzJnB+p7/oy2gA8E+rcBNl/zC1tMg==}
+
engines: {node: '>=6.9.0'}
+
+
'@changesets/apply-release-plan@7.0.12':
+
resolution: {integrity: sha512-EaET7As5CeuhTzvXTQCRZeBUcisoYPDDcXvgTE/2jmmypKp0RC7LxKj/yzqeh/1qFTZI7oDGFcL1PHRuQuketQ==}
+
+
'@changesets/assemble-release-plan@6.0.9':
+
resolution: {integrity: sha512-tPgeeqCHIwNo8sypKlS3gOPmsS3wP0zHt67JDuL20P4QcXiw/O4Hl7oXiuLnP9yg+rXLQ2sScdV1Kkzde61iSQ==}
+
+
'@changesets/changelog-git@0.2.1':
+
resolution: {integrity: sha512-x/xEleCFLH28c3bQeQIyeZf8lFXyDFVn1SgcBiR2Tw/r4IAWlk1fzxCEZ6NxQAjF2Nwtczoen3OA2qR+UawQ8Q==}
+
+
'@changesets/cli@2.29.6':
+
resolution: {integrity: sha512-6qCcVsIG1KQLhpQ5zE8N0PckIx4+9QlHK3z6/lwKnw7Tir71Bjw8BeOZaxA/4Jt00pcgCnCSWZnyuZf5Il05QQ==}
+
hasBin: true
+
+
'@changesets/config@3.1.1':
+
resolution: {integrity: sha512-bd+3Ap2TKXxljCggI0mKPfzCQKeV/TU4yO2h2C6vAihIo8tzseAn2e7klSuiyYYXvgu53zMN1OeYMIQkaQoWnA==}
+
+
'@changesets/errors@0.2.0':
+
resolution: {integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==}
+
+
'@changesets/get-dependents-graph@2.1.3':
+
resolution: {integrity: sha512-gphr+v0mv2I3Oxt19VdWRRUxq3sseyUpX9DaHpTUmLj92Y10AGy+XOtV+kbM6L/fDcpx7/ISDFK6T8A/P3lOdQ==}
+
+
'@changesets/get-github-info@0.6.0':
+
resolution: {integrity: sha512-v/TSnFVXI8vzX9/w3DU2Ol+UlTZcu3m0kXTjTT4KlAdwSvwutcByYwyYn9hwerPWfPkT2JfpoX0KgvCEi8Q/SA==}
+
+
'@changesets/get-release-plan@4.0.13':
+
resolution: {integrity: sha512-DWG1pus72FcNeXkM12tx+xtExyH/c9I1z+2aXlObH3i9YA7+WZEVaiHzHl03thpvAgWTRaH64MpfHxozfF7Dvg==}
+
+
'@changesets/get-version-range-type@0.4.0':
+
resolution: {integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==}
+
+
'@changesets/git@3.0.4':
+
resolution: {integrity: sha512-BXANzRFkX+XcC1q/d27NKvlJ1yf7PSAgi8JG6dt8EfbHFHi4neau7mufcSca5zRhwOL8j9s6EqsxmT+s+/E6Sw==}
+
+
'@changesets/logger@0.1.1':
+
resolution: {integrity: sha512-OQtR36ZlnuTxKqoW4Sv6x5YIhOmClRd5pWsjZsddYxpWs517R0HkyiefQPIytCVh4ZcC5x9XaG8KTdd5iRQUfg==}
+
+
'@changesets/parse@0.4.1':
+
resolution: {integrity: sha512-iwksMs5Bf/wUItfcg+OXrEpravm5rEd9Bf4oyIPL4kVTmJQ7PNDSd6MDYkpSJR1pn7tz/k8Zf2DhTCqX08Ou+Q==}
+
+
'@changesets/pre@2.0.2':
+
resolution: {integrity: sha512-HaL/gEyFVvkf9KFg6484wR9s0qjAXlZ8qWPDkTyKF6+zqjBe/I2mygg3MbpZ++hdi0ToqNUF8cjj7fBy0dg8Ug==}
+
+
'@changesets/read@0.6.5':
+
resolution: {integrity: sha512-UPzNGhsSjHD3Veb0xO/MwvasGe8eMyNrR/sT9gR8Q3DhOQZirgKhhXv/8hVsI0QpPjR004Z9iFxoJU6in3uGMg==}
+
+
'@changesets/should-skip-package@0.1.2':
+
resolution: {integrity: sha512-qAK/WrqWLNCP22UDdBTMPH5f41elVDlsNyat180A33dWxuUDyNpg6fPi/FyTZwRriVjg0L8gnjJn2F9XAoF0qw==}
+
+
'@changesets/types@4.1.0':
+
resolution: {integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==}
+
+
'@changesets/types@6.1.0':
+
resolution: {integrity: sha512-rKQcJ+o1nKNgeoYRHKOS07tAMNd3YSN0uHaJOZYjBAgxfV7TUE7JE+z4BzZdQwb5hKaYbayKN5KrYV7ODb2rAA==}
+
+
'@changesets/write@0.4.0':
+
resolution: {integrity: sha512-CdTLvIOPiCNuH71pyDu3rA+Q0n65cmAbXnwWH84rKGiFumFzkmHNT8KHTMEchcxN+Kl8I54xGUhJ7l3E7X396Q==}
+
+
'@esbuild/aix-ppc64@0.21.5':
+
resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==}
+
engines: {node: '>=12'}
+
cpu: [ppc64]
+
os: [aix]
+
+
'@esbuild/android-arm64@0.21.5':
+
resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==}
+
engines: {node: '>=12'}
+
cpu: [arm64]
+
os: [android]
+
+
'@esbuild/android-arm@0.21.5':
+
resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==}
+
engines: {node: '>=12'}
+
cpu: [arm]
+
os: [android]
+
+
'@esbuild/android-x64@0.21.5':
+
resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==}
+
engines: {node: '>=12'}
+
cpu: [x64]
+
os: [android]
+
+
'@esbuild/darwin-arm64@0.21.5':
+
resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==}
+
engines: {node: '>=12'}
+
cpu: [arm64]
+
os: [darwin]
+
+
'@esbuild/darwin-x64@0.21.5':
+
resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==}
+
engines: {node: '>=12'}
+
cpu: [x64]
+
os: [darwin]
+
+
'@esbuild/freebsd-arm64@0.21.5':
+
resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==}
+
engines: {node: '>=12'}
+
cpu: [arm64]
+
os: [freebsd]
+
+
'@esbuild/freebsd-x64@0.21.5':
+
resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==}
+
engines: {node: '>=12'}
+
cpu: [x64]
+
os: [freebsd]
+
+
'@esbuild/linux-arm64@0.21.5':
+
resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==}
+
engines: {node: '>=12'}
+
cpu: [arm64]
+
os: [linux]
+
+
'@esbuild/linux-arm@0.21.5':
+
resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==}
+
engines: {node: '>=12'}
+
cpu: [arm]
+
os: [linux]
+
+
'@esbuild/linux-ia32@0.21.5':
+
resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==}
+
engines: {node: '>=12'}
+
cpu: [ia32]
+
os: [linux]
+
+
'@esbuild/linux-loong64@0.21.5':
+
resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==}
+
engines: {node: '>=12'}
+
cpu: [loong64]
+
os: [linux]
+
+
'@esbuild/linux-mips64el@0.21.5':
+
resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==}
+
engines: {node: '>=12'}
+
cpu: [mips64el]
+
os: [linux]
+
+
'@esbuild/linux-ppc64@0.21.5':
+
resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==}
+
engines: {node: '>=12'}
+
cpu: [ppc64]
+
os: [linux]
+
+
'@esbuild/linux-riscv64@0.21.5':
+
resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==}
+
engines: {node: '>=12'}
+
cpu: [riscv64]
+
os: [linux]
+
+
'@esbuild/linux-s390x@0.21.5':
+
resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==}
+
engines: {node: '>=12'}
+
cpu: [s390x]
+
os: [linux]
+
+
'@esbuild/linux-x64@0.21.5':
+
resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==}
+
engines: {node: '>=12'}
+
cpu: [x64]
+
os: [linux]
+
+
'@esbuild/netbsd-x64@0.21.5':
+
resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==}
+
engines: {node: '>=12'}
+
cpu: [x64]
+
os: [netbsd]
+
+
'@esbuild/openbsd-x64@0.21.5':
+
resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==}
+
engines: {node: '>=12'}
+
cpu: [x64]
+
os: [openbsd]
+
+
'@esbuild/sunos-x64@0.21.5':
+
resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==}
+
engines: {node: '>=12'}
+
cpu: [x64]
+
os: [sunos]
+
+
'@esbuild/win32-arm64@0.21.5':
+
resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==}
+
engines: {node: '>=12'}
+
cpu: [arm64]
+
os: [win32]
+
+
'@esbuild/win32-ia32@0.21.5':
+
resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==}
+
engines: {node: '>=12'}
+
cpu: [ia32]
+
os: [win32]
+
+
'@esbuild/win32-x64@0.21.5':
+
resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==}
+
engines: {node: '>=12'}
+
cpu: [x64]
+
os: [win32]
+
+
'@eslint-community/eslint-utils@4.4.1':
+
resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==}
+
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+
peerDependencies:
+
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
+
+
'@eslint-community/regexpp@4.12.1':
+
resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
+
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
+
+
'@eslint/eslintrc@2.1.4':
+
resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==}
+
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+
+
'@eslint/js@8.57.1':
+
resolution: {integrity: sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==}
+
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+
+
'@humanwhocodes/config-array@0.13.0':
+
resolution: {integrity: sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==}
+
engines: {node: '>=10.10.0'}
+
deprecated: Use @eslint/config-array instead
+
+
'@humanwhocodes/module-importer@1.0.1':
+
resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
+
engines: {node: '>=12.22'}
+
+
'@humanwhocodes/object-schema@2.0.3':
+
resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==}
+
deprecated: Use @eslint/object-schema instead
+
+
'@inquirer/external-editor@1.0.1':
+
resolution: {integrity: sha512-Oau4yL24d2B5IL4ma4UpbQigkVhzPDXLoqy1ggK4gnHg/stmkffJE4oOXHXF3uz0UEpywG68KcyXsyYpA1Re/Q==}
+
engines: {node: '>=18'}
+
peerDependencies:
+
'@types/node': '>=18'
+
peerDependenciesMeta:
+
'@types/node':
+
optional: true
+
+
'@isaacs/cliui@8.0.2':
+
resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
+
engines: {node: '>=12'}
+
+
'@jest/schemas@29.6.3':
+
resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==}
+
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+
'@jridgewell/gen-mapping@0.3.8':
+
resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==}
+
engines: {node: '>=6.0.0'}
+
+
'@jridgewell/resolve-uri@3.1.2':
+
resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
+
engines: {node: '>=6.0.0'}
+
+
'@jridgewell/set-array@1.2.1':
+
resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
+
engines: {node: '>=6.0.0'}
+
+
'@jridgewell/source-map@0.3.6':
+
resolution: {integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==}
+
+
'@jridgewell/sourcemap-codec@1.5.0':
+
resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
+
+
'@jridgewell/trace-mapping@0.3.25':
+
resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
+
+
'@manypkg/find-root@1.1.0':
+
resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==}
+
+
'@manypkg/get-packages@1.1.3':
+
resolution: {integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==}
+
+
'@microsoft/tsdoc-config@0.16.2':
+
resolution: {integrity: sha512-OGiIzzoBLgWWR0UdRJX98oYO+XKGf7tiK4Zk6tQ/E4IJqGCe7dvkTvgDZV5cFJUzLGDOjeAXrnZoA6QkVySuxw==}
+
+
'@microsoft/tsdoc@0.14.2':
+
resolution: {integrity: sha512-9b8mPpKrfeGRuhFH5iO1iwCLeIIsV6+H1sRfxbkoGXIyQE2BTsPd9zqSqQJ+pv5sJ/hT5M1zvOFL02MnEezFug==}
+
+
'@nodelib/fs.scandir@2.1.5':
+
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
+
engines: {node: '>= 8'}
+
+
'@nodelib/fs.stat@2.0.5':
+
resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
+
engines: {node: '>= 8'}
+
+
'@nodelib/fs.walk@1.2.8':
+
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
+
engines: {node: '>= 8'}
+
+
'@pkgjs/parseargs@0.11.0':
+
resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
+
engines: {node: '>=14'}
+
+
'@rollup/plugin-buble@1.0.3':
+
resolution: {integrity: sha512-QYD9BKkJoof0FdCFeSYYhF6/Y8e0Mnf+098xGgmWOFJ4UPHlWujjqOYeVwEm2hJPOmlR5k7HPUdAjqtOWhN64Q==}
+
engines: {node: '>=14.0.0'}
+
peerDependencies:
+
rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
+
peerDependenciesMeta:
+
rollup:
+
optional: true
+
+
'@rollup/plugin-commonjs@23.0.7':
+
resolution: {integrity: sha512-hsSD5Qzyuat/swzrExGG5l7EuIlPhwTsT7KwKbSCQzIcJWjRxiimi/0tyMYY2bByitNb3i1p+6JWEDGa0NvT0Q==}
+
engines: {node: '>=14.0.0'}
+
peerDependencies:
+
rollup: ^2.68.0||^3.0.0
+
peerDependenciesMeta:
+
rollup:
+
optional: true
+
+
'@rollup/plugin-node-resolve@15.3.1':
+
resolution: {integrity: sha512-tgg6b91pAybXHJQMAAwW9VuWBO6Thi+q7BCNARLwSqlmsHz0XYURtGvh/AuwSADXSI4h/2uHbs7s4FzlZDGSGA==}
+
engines: {node: '>=14.0.0'}
+
peerDependencies:
+
rollup: ^2.78.0||^3.0.0||^4.0.0
+
peerDependenciesMeta:
+
rollup:
+
optional: true
+
+
'@rollup/plugin-sucrase@5.0.2':
+
resolution: {integrity: sha512-4MhIVH9Dy2Hwose1/x5QMs0XF7yn9jDd/yozHqzdIrMWIolgFpGnrnVhQkqTaK1RALY/fpyrEKmwH/04vr1THA==}
+
engines: {node: '>=14.0.0'}
+
peerDependencies:
+
rollup: ^2.53.1||^3.0.0||^4.0.0
+
peerDependenciesMeta:
+
rollup:
+
optional: true
+
+
'@rollup/plugin-terser@0.1.0':
+
resolution: {integrity: sha512-N2KK+qUfHX2hBzVzM41UWGLrEmcjVC37spC8R3c9mt3oEDFKh3N2e12/lLp9aVSt86veR0TQiCNQXrm8C6aiUQ==}
+
engines: {node: '>=14.0.0'}
+
peerDependencies:
+
rollup: ^2.x || ^3.x
+
peerDependenciesMeta:
+
rollup:
+
optional: true
+
+
'@rollup/pluginutils@5.1.4':
+
resolution: {integrity: sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ==}
+
engines: {node: '>=14.0.0'}
+
peerDependencies:
+
rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
+
peerDependenciesMeta:
+
rollup:
+
optional: true
+
+
'@rollup/rollup-android-arm-eabi@4.34.9':
+
resolution: {integrity: sha512-qZdlImWXur0CFakn2BJ2znJOdqYZKiedEPEVNTBrpfPjc/YuTGcaYZcdmNFTkUj3DU0ZM/AElcM8Ybww3xVLzA==}
+
cpu: [arm]
+
os: [android]
+
+
'@rollup/rollup-android-arm64@4.34.9':
+
resolution: {integrity: sha512-4KW7P53h6HtJf5Y608T1ISKvNIYLWRKMvfnG0c44M6In4DQVU58HZFEVhWINDZKp7FZps98G3gxwC1sb0wXUUg==}
+
cpu: [arm64]
+
os: [android]
+
+
'@rollup/rollup-darwin-arm64@4.34.9':
+
resolution: {integrity: sha512-0CY3/K54slrzLDjOA7TOjN1NuLKERBgk9nY5V34mhmuu673YNb+7ghaDUs6N0ujXR7fz5XaS5Aa6d2TNxZd0OQ==}
+
cpu: [arm64]
+
os: [darwin]
+
+
'@rollup/rollup-darwin-x64@4.34.9':
+
resolution: {integrity: sha512-eOojSEAi/acnsJVYRxnMkPFqcxSMFfrw7r2iD9Q32SGkb/Q9FpUY1UlAu1DH9T7j++gZ0lHjnm4OyH2vCI7l7Q==}
+
cpu: [x64]
+
os: [darwin]
+
+
'@rollup/rollup-freebsd-arm64@4.34.9':
+
resolution: {integrity: sha512-2lzjQPJbN5UnHm7bHIUKFMulGTQwdvOkouJDpPysJS+QFBGDJqcfh+CxxtG23Ik/9tEvnebQiylYoazFMAgrYw==}
+
cpu: [arm64]
+
os: [freebsd]
+
+
'@rollup/rollup-freebsd-x64@4.34.9':
+
resolution: {integrity: sha512-SLl0hi2Ah2H7xQYd6Qaiu01kFPzQ+hqvdYSoOtHYg/zCIFs6t8sV95kaoqjzjFwuYQLtOI0RZre/Ke0nPaQV+g==}
+
cpu: [x64]
+
os: [freebsd]
+
+
'@rollup/rollup-linux-arm-gnueabihf@4.34.9':
+
resolution: {integrity: sha512-88I+D3TeKItrw+Y/2ud4Tw0+3CxQ2kLgu3QvrogZ0OfkmX/DEppehus7L3TS2Q4lpB+hYyxhkQiYPJ6Mf5/dPg==}
+
cpu: [arm]
+
os: [linux]
+
+
'@rollup/rollup-linux-arm-musleabihf@4.34.9':
+
resolution: {integrity: sha512-3qyfWljSFHi9zH0KgtEPG4cBXHDFhwD8kwg6xLfHQ0IWuH9crp005GfoUUh/6w9/FWGBwEHg3lxK1iHRN1MFlA==}
+
cpu: [arm]
+
os: [linux]
+
+
'@rollup/rollup-linux-arm64-gnu@4.34.9':
+
resolution: {integrity: sha512-6TZjPHjKZUQKmVKMUowF3ewHxctrRR09eYyvT5eFv8w/fXarEra83A2mHTVJLA5xU91aCNOUnM+DWFMSbQ0Nxw==}
+
cpu: [arm64]
+
os: [linux]
+
+
'@rollup/rollup-linux-arm64-musl@4.34.9':
+
resolution: {integrity: sha512-LD2fytxZJZ6xzOKnMbIpgzFOuIKlxVOpiMAXawsAZ2mHBPEYOnLRK5TTEsID6z4eM23DuO88X0Tq1mErHMVq0A==}
+
cpu: [arm64]
+
os: [linux]
+
+
'@rollup/rollup-linux-loongarch64-gnu@4.34.9':
+
resolution: {integrity: sha512-dRAgTfDsn0TE0HI6cmo13hemKpVHOEyeciGtvlBTkpx/F65kTvShtY/EVyZEIfxFkV5JJTuQ9tP5HGBS0hfxIg==}
+
cpu: [loong64]
+
os: [linux]
+
+
'@rollup/rollup-linux-powerpc64le-gnu@4.34.9':
+
resolution: {integrity: sha512-PHcNOAEhkoMSQtMf+rJofwisZqaU8iQ8EaSps58f5HYll9EAY5BSErCZ8qBDMVbq88h4UxaNPlbrKqfWP8RfJA==}
+
cpu: [ppc64]
+
os: [linux]
+
+
'@rollup/rollup-linux-riscv64-gnu@4.34.9':
+
resolution: {integrity: sha512-Z2i0Uy5G96KBYKjeQFKbbsB54xFOL5/y1P5wNBsbXB8yE+At3oh0DVMjQVzCJRJSfReiB2tX8T6HUFZ2k8iaKg==}
+
cpu: [riscv64]
+
os: [linux]
+
+
'@rollup/rollup-linux-s390x-gnu@4.34.9':
+
resolution: {integrity: sha512-U+5SwTMoeYXoDzJX5dhDTxRltSrIax8KWwfaaYcynuJw8mT33W7oOgz0a+AaXtGuvhzTr2tVKh5UO8GVANTxyQ==}
+
cpu: [s390x]
+
os: [linux]
+
+
'@rollup/rollup-linux-x64-gnu@4.34.9':
+
resolution: {integrity: sha512-FwBHNSOjUTQLP4MG7y6rR6qbGw4MFeQnIBrMe161QGaQoBQLqSUEKlHIiVgF3g/mb3lxlxzJOpIBhaP+C+KP2A==}
+
cpu: [x64]
+
os: [linux]
+
+
'@rollup/rollup-linux-x64-musl@4.34.9':
+
resolution: {integrity: sha512-cYRpV4650z2I3/s6+5/LONkjIz8MBeqrk+vPXV10ORBnshpn8S32bPqQ2Utv39jCiDcO2eJTuSlPXpnvmaIgRA==}
+
cpu: [x64]
+
os: [linux]
+
+
'@rollup/rollup-win32-arm64-msvc@4.34.9':
+
resolution: {integrity: sha512-z4mQK9dAN6byRA/vsSgQiPeuO63wdiDxZ9yg9iyX2QTzKuQM7T4xlBoeUP/J8uiFkqxkcWndWi+W7bXdPbt27Q==}
+
cpu: [arm64]
+
os: [win32]
+
+
'@rollup/rollup-win32-ia32-msvc@4.34.9':
+
resolution: {integrity: sha512-KB48mPtaoHy1AwDNkAJfHXvHp24H0ryZog28spEs0V48l3H1fr4i37tiyHsgKZJnCmvxsbATdZGBpbmxTE3a9w==}
+
cpu: [ia32]
+
os: [win32]
+
+
'@rollup/rollup-win32-x64-msvc@4.34.9':
+
resolution: {integrity: sha512-AyleYRPU7+rgkMWbEh71fQlrzRfeP6SyMnRf9XX4fCdDPAJumdSBqYEcWPMzVQ4ScAl7E4oFfK0GUVn77xSwbw==}
+
cpu: [x64]
+
os: [win32]
+
+
'@sinclair/typebox@0.27.8':
+
resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==}
+
+
'@types/buble@0.19.2':
+
resolution: {integrity: sha512-uUD8zIfXMKThmFkahTXDGI3CthFH1kMg2dOm3KLi4GlC5cbARA64bEcUMbbWdWdE73eoc/iBB9PiTMqH0dNS2Q==}
+
+
'@types/estree@1.0.6':
+
resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
+
+
'@types/json-schema@7.0.15':
+
resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
+
+
'@types/node@12.20.55':
+
resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==}
+
+
'@types/node@22.13.9':
+
resolution: {integrity: sha512-acBjXdRJ3A6Pb3tqnw9HZmyR3Fiol3aGxRCK1x3d+6CDAMjl7I649wpSd+yNURCjbOUGu9tqtLKnTGxmK6CyGw==}
+
+
'@types/parse-json@4.0.2':
+
resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==}
+
+
'@types/resolve@1.20.2':
+
resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==}
+
+
'@types/semver@7.5.8':
+
resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==}
+
+
'@types/zen-observable@0.8.7':
+
resolution: {integrity: sha512-LKzNTjj+2j09wAo/vvVjzgw5qckJJzhdGgWHW7j69QIGdq/KnZrMAMIHQiWGl3Ccflh5/CudBAntTPYdprPltA==}
+
+
'@typescript-eslint/eslint-plugin@5.62.0':
+
resolution: {integrity: sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==}
+
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+
peerDependencies:
+
'@typescript-eslint/parser': ^5.0.0
+
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
+
typescript: '*'
+
peerDependenciesMeta:
+
typescript:
+
optional: true
+
+
'@typescript-eslint/parser@5.62.0':
+
resolution: {integrity: sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==}
+
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+
peerDependencies:
+
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
+
typescript: '*'
+
peerDependenciesMeta:
+
typescript:
+
optional: true
+
+
'@typescript-eslint/scope-manager@5.62.0':
+
resolution: {integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==}
+
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+
+
'@typescript-eslint/type-utils@5.62.0':
+
resolution: {integrity: sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==}
+
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+
peerDependencies:
+
eslint: '*'
+
typescript: '*'
+
peerDependenciesMeta:
+
typescript:
+
optional: true
+
+
'@typescript-eslint/types@5.62.0':
+
resolution: {integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==}
+
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+
+
'@typescript-eslint/typescript-estree@5.62.0':
+
resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==}
+
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+
peerDependencies:
+
typescript: '*'
+
peerDependenciesMeta:
+
typescript:
+
optional: true
+
+
'@typescript-eslint/utils@5.62.0':
+
resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==}
+
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+
peerDependencies:
+
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
+
+
'@typescript-eslint/visitor-keys@5.62.0':
+
resolution: {integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==}
+
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+
+
'@ungap/structured-clone@1.3.0':
+
resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==}
+
+
'@vitest/expect@1.6.1':
+
resolution: {integrity: sha512-jXL+9+ZNIJKruofqXuuTClf44eSpcHlgj3CiuNihUF3Ioujtmc0zIa3UJOW5RjDK1YLBJZnWBlPuqhYycLioog==}
+
+
'@vitest/runner@1.6.1':
+
resolution: {integrity: sha512-3nSnYXkVkf3mXFfE7vVyPmi3Sazhb/2cfZGGs0JRzFsPFvAMBEcrweV1V1GsrstdXeKCTXlJbvnQwGWgEIHmOA==}
+
+
'@vitest/snapshot@1.6.1':
+
resolution: {integrity: sha512-WvidQuWAzU2p95u8GAKlRMqMyN1yOJkGHnx3M1PL9Raf7AQ1kwLKg04ADlCa3+OXUZE7BceOhVZiuWAbzCKcUQ==}
+
+
'@vitest/spy@1.6.1':
+
resolution: {integrity: sha512-MGcMmpGkZebsMZhbQKkAf9CX5zGvjkBTqf8Zx3ApYWXr3wG+QvEu2eXWfnIIWYSJExIp4V9FCKDEeygzkYrXMw==}
+
+
'@vitest/utils@1.6.1':
+
resolution: {integrity: sha512-jOrrUvXM4Av9ZWiG1EajNto0u96kWAhJ1LmPmJhXXQx/32MecEKd10pOLYgS2BQx1TgkGhloPU1ArDW2vvaY6g==}
+
+
acorn-dynamic-import@4.0.0:
+
resolution: {integrity: sha512-d3OEjQV4ROpoflsnUA8HozoIR504TFxNivYEUi6uwz0IYhBkTDXGuWlNdMtybRt3nqVx/L6XqMt0FxkXuWKZhw==}
+
deprecated: This is probably built in to whatever tool you're using. If you still need it... idk
+
peerDependencies:
+
acorn: ^6.0.0
+
+
acorn-jsx@5.3.2:
+
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
+
peerDependencies:
+
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
+
+
acorn-walk@8.3.4:
+
resolution: {integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==}
+
engines: {node: '>=0.4.0'}
+
+
acorn@6.4.2:
+
resolution: {integrity: sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==}
+
engines: {node: '>=0.4.0'}
+
hasBin: true
+
+
acorn@8.14.0:
+
resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==}
+
engines: {node: '>=0.4.0'}
+
hasBin: true
+
+
ajv@6.12.6:
+
resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
+
+
ansi-colors@4.1.3:
+
resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==}
+
engines: {node: '>=6'}
+
+
ansi-escapes@5.0.0:
+
resolution: {integrity: sha512-5GFMVX8HqE/TB+FuBJGuO5XG0WrsA6ptUqoODaT/n9mmUaZFkqnBueB4leqGBCmrUHnCnC4PCZTCd0E7QQ83bA==}
+
engines: {node: '>=12'}
+
+
ansi-regex@5.0.1:
+
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
+
engines: {node: '>=8'}
+
+
ansi-regex@6.1.0:
+
resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==}
+
engines: {node: '>=12'}
+
+
ansi-styles@3.2.1:
+
resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
+
engines: {node: '>=4'}
+
+
ansi-styles@4.3.0:
+
resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
+
engines: {node: '>=8'}
+
+
ansi-styles@5.2.0:
+
resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==}
+
engines: {node: '>=10'}
+
+
ansi-styles@6.2.1:
+
resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
+
engines: {node: '>=12'}
+
+
any-promise@1.3.0:
+
resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
+
+
argparse@1.0.10:
+
resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==}
+
+
argparse@2.0.1:
+
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
+
+
array-buffer-byte-length@1.0.2:
+
resolution: {integrity: sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==}
+
engines: {node: '>= 0.4'}
+
+
array-union@2.1.0:
+
resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
+
engines: {node: '>=8'}
+
+
arraybuffer.prototype.slice@1.0.4:
+
resolution: {integrity: sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==}
+
engines: {node: '>= 0.4'}
+
+
assertion-error@1.1.0:
+
resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==}
+
+
async-function@1.0.0:
+
resolution: {integrity: sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==}
+
engines: {node: '>= 0.4'}
+
+
available-typed-arrays@1.0.7:
+
resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
+
engines: {node: '>= 0.4'}
+
+
balanced-match@1.0.2:
+
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
+
+
better-path-resolve@1.0.0:
+
resolution: {integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==}
+
engines: {node: '>=4'}
+
+
brace-expansion@1.1.11:
+
resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
+
+
brace-expansion@2.0.1:
+
resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
+
+
braces@3.0.3:
+
resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
+
engines: {node: '>=8'}
+
+
buble@0.20.0:
+
resolution: {integrity: sha512-/1gnaMQE8xvd5qsNBl+iTuyjJ9XxeaVxAMF86dQ4EyxFJOZtsgOS8Ra+7WHgZTam5IFDtt4BguN0sH0tVTKrOw==}
+
hasBin: true
+
+
buffer-from@1.1.2:
+
resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
+
+
cac@6.7.14:
+
resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
+
engines: {node: '>=8'}
+
+
call-bind-apply-helpers@1.0.2:
+
resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
+
engines: {node: '>= 0.4'}
+
+
call-bind@1.0.8:
+
resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==}
+
engines: {node: '>= 0.4'}
+
+
call-bound@1.0.4:
+
resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==}
+
engines: {node: '>= 0.4'}
+
+
callbag-from-iter@1.3.0:
+
resolution: {integrity: sha512-iBc6O6DYDWQBjlOZzdU/SbJofK0pN3TjNWC4fDIQePBk5FWCZKVll/coXiVU6gpwbBaS0Om/d/PVbVK8Ki17Ew==}
+
+
callbag-iterate@1.0.0:
+
resolution: {integrity: sha512-bynCbDuqGZkj1mXAhGr8jMf8Vhifps+G+pF3xlcz3jcaZLNXHghVjValnJtBTg2N74cyl347UzagJ8niJpyF6Q==}
+
+
callbag-take@1.5.0:
+
resolution: {integrity: sha512-8aOxp+gzfVQtDe+tk9PhKbC9QR9Vap4KFA0xccUiXFK9VjIS0fSt/Yi454viPpMhJkhRcx1BsjyF34Cj57W89A==}
+
+
callbag@1.5.1:
+
resolution: {integrity: sha512-FGpkXYZ018Wpeevhsp7R2iABZuDamg54TaObKI48JBNGzMlkb9bRwS54eR0sgFksQpspsCan4iaaVbAbxm9MIg==}
+
+
callsites@3.1.0:
+
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
+
engines: {node: '>=6'}
+
+
chai@4.5.0:
+
resolution: {integrity: sha512-RITGBfijLkBddZvnn8jdqoTypxvqbOLYQkGGxXzeFjVHvudaPw0HNFD9x928/eUwYWd2dPCugVqspGALTZZQKw==}
+
engines: {node: '>=4'}
+
+
chalk@2.4.2:
+
resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
+
engines: {node: '>=4'}
+
+
chalk@4.1.2:
+
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
+
engines: {node: '>=10'}
+
+
chalk@5.3.0:
+
resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==}
+
engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
+
+
chardet@2.1.0:
+
resolution: {integrity: sha512-bNFETTG/pM5ryzQ9Ad0lJOTa6HWD/YsScAR3EnCPZRPlQh77JocYktSHOUHelyhm8IARL+o4c4F1bP5KVOjiRA==}
+
+
check-error@1.0.3:
+
resolution: {integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==}
+
+
ci-info@2.0.0:
+
resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==}
+
+
ci-info@3.9.0:
+
resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==}
+
engines: {node: '>=8'}
+
+
cjs-module-lexer@1.4.3:
+
resolution: {integrity: sha512-9z8TZaGM1pfswYeXrUpzPrkx8UnWYdhJclsiYMm6x/w5+nN+8Tf/LnAgfLGQCm59qAOxU8WwHEq2vNwF6i4j+Q==}
+
+
cli-cursor@4.0.0:
+
resolution: {integrity: sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==}
+
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+
+
cli-truncate@3.1.0:
+
resolution: {integrity: sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==}
+
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+
+
color-convert@1.9.3:
+
resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
+
+
color-convert@2.0.1:
+
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
+
engines: {node: '>=7.0.0'}
+
+
color-name@1.1.3:
+
resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
+
+
color-name@1.1.4:
+
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
+
+
colorette@2.0.20:
+
resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==}
+
+
commander@11.0.0:
+
resolution: {integrity: sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ==}
+
engines: {node: '>=16'}
+
+
commander@2.20.3:
+
resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
+
+
commander@4.1.1:
+
resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
+
engines: {node: '>= 6'}
+
+
commander@6.2.1:
+
resolution: {integrity: sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==}
+
engines: {node: '>= 6'}
+
+
commondir@1.0.1:
+
resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==}
+
+
compare-versions@3.6.0:
+
resolution: {integrity: sha512-W6Af2Iw1z4CB7q4uU4hv646dW9GQuBM+YpC0UvUCWSD8w90SJjp+ujJuXaEMtAXBtSqGfMPuFOVn4/+FlaqfBA==}
+
+
concat-map@0.0.1:
+
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
+
+
confbox@0.1.8:
+
resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==}
+
+
cosmiconfig@7.1.0:
+
resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==}
+
engines: {node: '>=10'}
+
+
cross-spawn@6.0.6:
+
resolution: {integrity: sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw==}
+
engines: {node: '>=4.8'}
+
+
cross-spawn@7.0.6:
+
resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
+
engines: {node: '>= 8'}
+
+
data-view-buffer@1.0.2:
+
resolution: {integrity: sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==}
+
engines: {node: '>= 0.4'}
+
+
data-view-byte-length@1.0.2:
+
resolution: {integrity: sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==}
+
engines: {node: '>= 0.4'}
+
+
data-view-byte-offset@1.0.1:
+
resolution: {integrity: sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==}
+
engines: {node: '>= 0.4'}
+
+
dataloader@1.4.0:
+
resolution: {integrity: sha512-68s5jYdlvasItOJnCuI2Q9s4q98g0pCyL3HrcKJu8KNugUl8ahgmZYg38ysLTgQjjXX3H8CJLkAvWrclWfcalw==}
+
+
debug@4.3.4:
+
resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
+
engines: {node: '>=6.0'}
+
peerDependencies:
+
supports-color: '*'
+
peerDependenciesMeta:
+
supports-color:
+
optional: true
+
+
debug@4.4.0:
+
resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==}
+
engines: {node: '>=6.0'}
+
peerDependencies:
+
supports-color: '*'
+
peerDependenciesMeta:
+
supports-color:
+
optional: true
+
+
deep-eql@4.1.4:
+
resolution: {integrity: sha512-SUwdGfqdKOwxCPeVYjwSyRpJ7Z+fhpwIAtmCUdZIWZ/YP5R9WAsyuSgpLVDi9bjWoN2LXHNss/dk3urXtdQxGg==}
+
engines: {node: '>=6'}
+
+
deep-is@0.1.4:
+
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
+
+
deepmerge@4.3.1:
+
resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
+
engines: {node: '>=0.10.0'}
+
+
define-data-property@1.1.4:
+
resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==}
+
engines: {node: '>= 0.4'}
+
+
define-properties@1.2.1:
+
resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==}
+
engines: {node: '>= 0.4'}
+
+
detect-indent@6.1.0:
+
resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==}
+
engines: {node: '>=8'}
+
+
diff-sequences@29.6.3:
+
resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==}
+
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+
dir-glob@3.0.1:
+
resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
+
engines: {node: '>=8'}
+
+
doctrine@3.0.0:
+
resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}
+
engines: {node: '>=6.0.0'}
+
+
dotenv@16.4.7:
+
resolution: {integrity: sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==}
+
engines: {node: '>=12'}
+
+
dunder-proto@1.0.1:
+
resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
+
engines: {node: '>= 0.4'}
+
+
eastasianwidth@0.2.0:
+
resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
+
+
emoji-regex@8.0.0:
+
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
+
+
emoji-regex@9.2.2:
+
resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
+
+
enquirer@2.4.1:
+
resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==}
+
engines: {node: '>=8.6'}
+
+
error-ex@1.3.2:
+
resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
+
+
es-abstract@1.23.9:
+
resolution: {integrity: sha512-py07lI0wjxAC/DcfK1S6G7iANonniZwTISvdPzk9hzeH0IZIshbuuFxLIU96OyF89Yb9hiqWn8M/bY83KY5vzA==}
+
engines: {node: '>= 0.4'}
+
+
es-define-property@1.0.1:
+
resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
+
engines: {node: '>= 0.4'}
+
+
es-errors@1.3.0:
+
resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
+
engines: {node: '>= 0.4'}
+
+
es-object-atoms@1.1.1:
+
resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
+
engines: {node: '>= 0.4'}
+
+
es-set-tostringtag@2.1.0:
+
resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
+
engines: {node: '>= 0.4'}
+
+
es-to-primitive@1.3.0:
+
resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==}
+
engines: {node: '>= 0.4'}
+
+
esbuild@0.21.5:
+
resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==}
+
engines: {node: '>=12'}
+
hasBin: true
+
+
escape-string-regexp@1.0.5:
+
resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
+
engines: {node: '>=0.8.0'}
+
+
escape-string-regexp@4.0.0:
+
resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
+
engines: {node: '>=10'}
+
+
eslint-config-prettier@8.10.0:
+
resolution: {integrity: sha512-SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg==}
+
hasBin: true
+
peerDependencies:
+
eslint: '>=7.0.0'
+
+
eslint-plugin-prettier@4.2.1:
+
resolution: {integrity: sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==}
+
engines: {node: '>=12.0.0'}
+
peerDependencies:
+
eslint: '>=7.28.0'
+
eslint-config-prettier: '*'
+
prettier: '>=2.0.0'
+
peerDependenciesMeta:
+
eslint-config-prettier:
+
optional: true
+
+
eslint-plugin-tsdoc@0.2.17:
+
resolution: {integrity: sha512-xRmVi7Zx44lOBuYqG8vzTXuL6IdGOeF9nHX17bjJ8+VE6fsxpdGem0/SBTmAwgYMKYB1WBkqRJVQ+n8GK041pA==}
+
+
eslint-scope@5.1.1:
+
resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==}
+
engines: {node: '>=8.0.0'}
+
+
eslint-scope@7.2.2:
+
resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==}
+
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+
+
eslint-visitor-keys@3.4.3:
+
resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
+
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+
+
eslint@8.57.1:
+
resolution: {integrity: sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==}
+
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+
deprecated: This version is no longer supported. Please see https://eslint.org/version-support for other options.
+
hasBin: true
+
+
espree@9.6.1:
+
resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==}
+
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+
+
esprima@4.0.1:
+
resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==}
+
engines: {node: '>=4'}
+
hasBin: true
+
+
esquery@1.6.0:
+
resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==}
+
engines: {node: '>=0.10'}
+
+
esrecurse@4.3.0:
+
resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
+
engines: {node: '>=4.0'}
+
+
estraverse@4.3.0:
+
resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==}
+
engines: {node: '>=4.0'}
+
+
estraverse@5.3.0:
+
resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
+
engines: {node: '>=4.0'}
+
+
estree-walker@2.0.2:
+
resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
+
+
estree-walker@3.0.3:
+
resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==}
+
+
esutils@2.0.3:
+
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
+
engines: {node: '>=0.10.0'}
+
+
eventemitter3@5.0.1:
+
resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==}
+
+
execa@7.2.0:
+
resolution: {integrity: sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==}
+
engines: {node: ^14.18.0 || ^16.14.0 || >=18.0.0}
+
+
execa@8.0.1:
+
resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==}
+
engines: {node: '>=16.17'}
+
+
extendable-error@0.1.7:
+
resolution: {integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==}
+
+
fast-deep-equal@3.1.3:
+
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
+
+
fast-diff@1.3.0:
+
resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==}
+
+
fast-glob@3.3.3:
+
resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==}
+
engines: {node: '>=8.6.0'}
+
+
fast-json-stable-stringify@2.1.0:
+
resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
+
+
fast-levenshtein@2.0.6:
+
resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
+
+
fastq@1.19.1:
+
resolution: {integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==}
+
+
file-entry-cache@6.0.1:
+
resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
+
engines: {node: ^10.12.0 || >=12.0.0}
+
+
fill-range@7.1.1:
+
resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
+
engines: {node: '>=8'}
+
+
find-up@4.1.0:
+
resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==}
+
engines: {node: '>=8'}
+
+
find-up@5.0.0:
+
resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
+
engines: {node: '>=10'}
+
+
find-versions@4.0.0:
+
resolution: {integrity: sha512-wgpWy002tA+wgmO27buH/9KzyEOQnKsG/R0yrcjPT9BOFm0zRBVQbZ95nRGXWMywS8YR5knRbpohio0bcJABxQ==}
+
engines: {node: '>=10'}
+
+
flat-cache@3.2.0:
+
resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==}
+
engines: {node: ^10.12.0 || >=12.0.0}
+
+
flatted@3.3.3:
+
resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==}
+
+
flowgen@1.21.0:
+
resolution: {integrity: sha512-pFNFFyMLRmW6njhOIm5TrbGUDTv64aujmys2KrkRE2NYD8sXwJUyicQRwU5SPRBRJnFSD/FNlnHo2NnHI5eJSw==}
+
hasBin: true
+
+
for-each@0.3.5:
+
resolution: {integrity: sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==}
+
engines: {node: '>= 0.4'}
+
+
foreground-child@3.3.1:
+
resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==}
+
engines: {node: '>=14'}
+
+
fs-extra@7.0.1:
+
resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==}
+
engines: {node: '>=6 <7 || >=8'}
+
+
fs-extra@8.1.0:
+
resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==}
+
engines: {node: '>=6 <7 || >=8'}
+
+
fs.realpath@1.0.0:
+
resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
+
+
fsevents@2.3.3:
+
resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
+
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
+
os: [darwin]
+
+
function-bind@1.1.2:
+
resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
+
+
function.prototype.name@1.1.8:
+
resolution: {integrity: sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==}
+
engines: {node: '>= 0.4'}
+
+
functions-have-names@1.2.3:
+
resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
+
+
get-func-name@2.0.2:
+
resolution: {integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==}
+
+
get-intrinsic@1.3.0:
+
resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
+
engines: {node: '>= 0.4'}
+
+
get-proto@1.0.1:
+
resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
+
engines: {node: '>= 0.4'}
+
+
get-stream@6.0.1:
+
resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==}
+
engines: {node: '>=10'}
+
+
get-stream@8.0.1:
+
resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==}
+
engines: {node: '>=16'}
+
+
get-symbol-description@1.1.0:
+
resolution: {integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==}
+
engines: {node: '>= 0.4'}
+
+
glob-parent@5.1.2:
+
resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
+
engines: {node: '>= 6'}
+
+
glob-parent@6.0.2:
+
resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
+
engines: {node: '>=10.13.0'}
+
+
glob@10.4.5:
+
resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==}
+
hasBin: true
+
+
glob@7.2.3:
+
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
+
deprecated: Glob versions prior to v9 are no longer supported
+
+
glob@8.1.0:
+
resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==}
+
engines: {node: '>=12'}
+
deprecated: Glob versions prior to v9 are no longer supported
+
+
globals@13.24.0:
+
resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==}
+
engines: {node: '>=8'}
+
+
globalthis@1.0.4:
+
resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==}
+
engines: {node: '>= 0.4'}
+
+
globby@11.1.0:
+
resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
+
engines: {node: '>=10'}
+
+
gopd@1.2.0:
+
resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
+
engines: {node: '>= 0.4'}
+
+
graceful-fs@4.2.11:
+
resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
+
+
graphemer@1.4.0:
+
resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
+
+
has-bigints@1.1.0:
+
resolution: {integrity: sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==}
+
engines: {node: '>= 0.4'}
+
+
has-flag@3.0.0:
+
resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
+
engines: {node: '>=4'}
+
+
has-flag@4.0.0:
+
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
+
engines: {node: '>=8'}
+
+
has-property-descriptors@1.0.2:
+
resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
+
+
has-proto@1.2.0:
+
resolution: {integrity: sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==}
+
engines: {node: '>= 0.4'}
+
+
has-symbols@1.1.0:
+
resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
+
engines: {node: '>= 0.4'}
+
+
has-tostringtag@1.0.2:
+
resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
+
engines: {node: '>= 0.4'}
+
+
hasown@2.0.2:
+
resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
+
engines: {node: '>= 0.4'}
+
+
hosted-git-info@2.8.9:
+
resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==}
+
+
human-id@4.1.1:
+
resolution: {integrity: sha512-3gKm/gCSUipeLsRYZbbdA1BD83lBoWUkZ7G9VFrhWPAU76KwYo5KR8V28bpoPm/ygy0x5/GCbpRQdY7VLYCoIg==}
+
hasBin: true
+
+
human-signals@4.3.1:
+
resolution: {integrity: sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==}
+
engines: {node: '>=14.18.0'}
+
+
human-signals@5.0.0:
+
resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==}
+
engines: {node: '>=16.17.0'}
+
+
husky-v4@4.3.8:
+
resolution: {integrity: sha512-M7A9u/t6BnT/qbDzKb7SdXhr8qLTGTkqZL6YLDDM20jfCdmpIMEuO384LvYXSBcgv50oIgNWI/IaO3g4A4ShjA==}
+
engines: {node: '>=10'}
+
hasBin: true
+
+
iconv-lite@0.6.3:
+
resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==}
+
engines: {node: '>=0.10.0'}
+
+
ignore@5.3.2:
+
resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
+
engines: {node: '>= 4'}
+
+
import-fresh@3.3.1:
+
resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
+
engines: {node: '>=6'}
+
+
imurmurhash@0.1.4:
+
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
+
engines: {node: '>=0.8.19'}
+
+
inflight@1.0.6:
+
resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
+
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.
+
+
inherits@2.0.4:
+
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
+
+
internal-slot@1.1.0:
+
resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==}
+
engines: {node: '>= 0.4'}
+
+
interpret@1.4.0:
+
resolution: {integrity: sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==}
+
engines: {node: '>= 0.10'}
+
+
is-array-buffer@3.0.5:
+
resolution: {integrity: sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==}
+
engines: {node: '>= 0.4'}
+
+
is-arrayish@0.2.1:
+
resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
+
+
is-async-function@2.1.1:
+
resolution: {integrity: sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==}
+
engines: {node: '>= 0.4'}
+
+
is-bigint@1.1.0:
+
resolution: {integrity: sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==}
+
engines: {node: '>= 0.4'}
+
+
is-boolean-object@1.2.2:
+
resolution: {integrity: sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==}
+
engines: {node: '>= 0.4'}
+
+
is-callable@1.2.7:
+
resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
+
engines: {node: '>= 0.4'}
+
+
is-core-module@2.16.1:
+
resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==}
+
engines: {node: '>= 0.4'}
+
+
is-data-view@1.0.2:
+
resolution: {integrity: sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==}
+
engines: {node: '>= 0.4'}
+
+
is-date-object@1.1.0:
+
resolution: {integrity: sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==}
+
engines: {node: '>= 0.4'}
+
+
is-extglob@2.1.1:
+
resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
+
engines: {node: '>=0.10.0'}
+
+
is-finalizationregistry@1.1.1:
+
resolution: {integrity: sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==}
+
engines: {node: '>= 0.4'}
+
+
is-fullwidth-code-point@3.0.0:
+
resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
+
engines: {node: '>=8'}
+
+
is-fullwidth-code-point@4.0.0:
+
resolution: {integrity: sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==}
+
engines: {node: '>=12'}
+
+
is-generator-function@1.1.0:
+
resolution: {integrity: sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==}
+
engines: {node: '>= 0.4'}
+
+
is-glob@4.0.3:
+
resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
+
engines: {node: '>=0.10.0'}
+
+
is-map@2.0.3:
+
resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==}
+
engines: {node: '>= 0.4'}
+
+
is-module@1.0.0:
+
resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==}
+
+
is-number-object@1.1.1:
+
resolution: {integrity: sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==}
+
engines: {node: '>= 0.4'}
+
+
is-number@7.0.0:
+
resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
+
engines: {node: '>=0.12.0'}
+
+
is-path-inside@3.0.3:
+
resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
+
engines: {node: '>=8'}
+
+
is-reference@1.2.1:
+
resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==}
+
+
is-regex@1.2.1:
+
resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==}
+
engines: {node: '>= 0.4'}
+
+
is-set@2.0.3:
+
resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==}
+
engines: {node: '>= 0.4'}
+
+
is-shared-array-buffer@1.0.4:
+
resolution: {integrity: sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==}
+
engines: {node: '>= 0.4'}
+
+
is-stream@3.0.0:
+
resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==}
+
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+
+
is-string@1.1.1:
+
resolution: {integrity: sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==}
+
engines: {node: '>= 0.4'}
+
+
is-subdir@1.2.0:
+
resolution: {integrity: sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==}
+
engines: {node: '>=4'}
+
+
is-symbol@1.1.1:
+
resolution: {integrity: sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==}
+
engines: {node: '>= 0.4'}
+
+
is-typed-array@1.1.15:
+
resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==}
+
engines: {node: '>= 0.4'}
+
+
is-weakmap@2.0.2:
+
resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==}
+
engines: {node: '>= 0.4'}
+
+
is-weakref@1.1.1:
+
resolution: {integrity: sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==}
+
engines: {node: '>= 0.4'}
+
+
is-weakset@2.0.4:
+
resolution: {integrity: sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==}
+
engines: {node: '>= 0.4'}
+
+
is-windows@1.0.2:
+
resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==}
+
engines: {node: '>=0.10.0'}
+
+
isarray@2.0.5:
+
resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==}
+
+
isexe@2.0.0:
+
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
+
+
jackspeak@3.4.3:
+
resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==}
+
+
jju@1.4.0:
+
resolution: {integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==}
+
+
js-tokens@4.0.0:
+
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
+
+
js-tokens@9.0.1:
+
resolution: {integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==}
+
+
js-yaml@3.14.1:
+
resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==}
+
hasBin: true
+
+
js-yaml@4.1.0:
+
resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
+
hasBin: true
+
+
jsesc@0.5.0:
+
resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==}
+
hasBin: true
+
+
json-buffer@3.0.1:
+
resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
+
+
json-parse-better-errors@1.0.2:
+
resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==}
+
+
json-parse-even-better-errors@2.3.1:
+
resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
+
+
json-schema-traverse@0.4.1:
+
resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
+
+
json-stable-stringify-without-jsonify@1.0.1:
+
resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
+
+
jsonfile@4.0.0:
+
resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==}
+
+
keyv@4.5.4:
+
resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
+
+
levn@0.4.1:
+
resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
+
engines: {node: '>= 0.8.0'}
+
+
lilconfig@2.1.0:
+
resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
+
engines: {node: '>=10'}
+
+
lines-and-columns@1.2.4:
+
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
+
+
lint-staged@13.3.0:
+
resolution: {integrity: sha512-mPRtrYnipYYv1FEE134ufbWpeggNTo+O/UPzngoaKzbzHAthvR55am+8GfHTnqNRQVRRrYQLGW9ZyUoD7DsBHQ==}
+
engines: {node: ^16.14.0 || >=18.0.0}
+
hasBin: true
+
+
listr2@6.6.1:
+
resolution: {integrity: sha512-+rAXGHh0fkEWdXBmX+L6mmfmXmXvDGEKzkjxO+8mP3+nI/r/CWznVBvsibXdxda9Zz0OW2e2ikphN3OwCT/jSg==}
+
engines: {node: '>=16.0.0'}
+
peerDependencies:
+
enquirer: '>= 2.3.0 < 3'
+
peerDependenciesMeta:
+
enquirer:
+
optional: true
+
+
load-json-file@4.0.0:
+
resolution: {integrity: sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==}
+
engines: {node: '>=4'}
+
+
local-pkg@0.5.1:
+
resolution: {integrity: sha512-9rrA30MRRP3gBD3HTGnC6cDFpaE1kVDWxWgqWJUN0RvDNAo+Nz/9GxB+nHOH0ifbVFy0hSA1V6vFDvnx54lTEQ==}
+
engines: {node: '>=14'}
+
+
locate-path@5.0.0:
+
resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==}
+
engines: {node: '>=8'}
+
+
locate-path@6.0.0:
+
resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
+
engines: {node: '>=10'}
+
+
lodash.merge@4.6.2:
+
resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
+
+
lodash.startcase@4.4.0:
+
resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==}
+
+
lodash@4.17.21:
+
resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
+
+
log-update@5.0.1:
+
resolution: {integrity: sha512-5UtUDQ/6edw4ofyljDNcOVJQ4c7OjDro4h3y8e1GQL5iYElYclVHJ3zeWchylvMaKnDbDilC8irOVyexnA/Slw==}
+
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+
+
loupe@2.3.7:
+
resolution: {integrity: sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==}
+
+
lru-cache@10.4.3:
+
resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
+
+
magic-string@0.25.9:
+
resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==}
+
+
magic-string@0.27.0:
+
resolution: {integrity: sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==}
+
engines: {node: '>=12'}
+
+
magic-string@0.30.17:
+
resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==}
+
+
math-intrinsics@1.1.0:
+
resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
+
engines: {node: '>= 0.4'}
+
+
memorystream@0.3.1:
+
resolution: {integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==}
+
engines: {node: '>= 0.10.0'}
+
+
merge-stream@2.0.0:
+
resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
+
+
merge2@1.4.1:
+
resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
+
engines: {node: '>= 8'}
+
+
micromatch@4.0.5:
+
resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
+
engines: {node: '>=8.6'}
+
+
micromatch@4.0.8:
+
resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
+
engines: {node: '>=8.6'}
+
+
mimic-fn@2.1.0:
+
resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
+
engines: {node: '>=6'}
+
+
mimic-fn@4.0.0:
+
resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==}
+
engines: {node: '>=12'}
+
+
minimatch@3.1.2:
+
resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
+
+
minimatch@5.1.6:
+
resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==}
+
engines: {node: '>=10'}
+
+
minimatch@9.0.5:
+
resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
+
engines: {node: '>=16 || 14 >=14.17'}
+
+
minimist@1.2.8:
+
resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
+
+
minipass@7.1.2:
+
resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
+
engines: {node: '>=16 || 14 >=14.17'}
+
+
mlly@1.7.4:
+
resolution: {integrity: sha512-qmdSIPC4bDJXgZTCR7XosJiNKySV7O215tsPtDN9iEO/7q/76b/ijtgRu/+epFXSJhijtTCCGp3DWS549P3xKw==}
+
+
mri@1.2.0:
+
resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==}
+
engines: {node: '>=4'}
+
+
ms@2.1.2:
+
resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
+
+
ms@2.1.3:
+
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
+
+
mz@2.7.0:
+
resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
+
+
nanoid@3.3.8:
+
resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==}
+
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
+
hasBin: true
+
+
natural-compare-lite@1.4.0:
+
resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==}
+
+
natural-compare@1.4.0:
+
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
+
+
nice-try@1.0.5:
+
resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==}
+
+
node-fetch@2.7.0:
+
resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==}
+
engines: {node: 4.x || >=6.0.0}
+
peerDependencies:
+
encoding: ^0.1.0
+
peerDependenciesMeta:
+
encoding:
+
optional: true
+
+
normalize-package-data@2.5.0:
+
resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==}
+
+
npm-run-all@4.1.5:
+
resolution: {integrity: sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==}
+
engines: {node: '>= 4'}
+
hasBin: true
+
+
npm-run-path@5.3.0:
+
resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==}
+
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+
+
object-assign@4.1.1:
+
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
+
engines: {node: '>=0.10.0'}
+
+
object-inspect@1.13.4:
+
resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==}
+
engines: {node: '>= 0.4'}
+
+
object-keys@1.1.1:
+
resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
+
engines: {node: '>= 0.4'}
+
+
object.assign@4.1.7:
+
resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==}
+
engines: {node: '>= 0.4'}
+
+
once@1.4.0:
+
resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
+
+
onetime@5.1.2:
+
resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==}
+
engines: {node: '>=6'}
+
+
onetime@6.0.0:
+
resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==}
+
engines: {node: '>=12'}
+
+
opencollective-postinstall@2.0.3:
+
resolution: {integrity: sha512-8AV/sCtuzUeTo8gQK5qDZzARrulB3egtLzFgteqB2tcT4Mw7B8Kt7JcDHmltjz6FOAHsvTevk70gZEbhM4ZS9Q==}
+
hasBin: true
+
+
optionator@0.9.4:
+
resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
+
engines: {node: '>= 0.8.0'}
+
+
outdent@0.5.0:
+
resolution: {integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==}
+
+
own-keys@1.0.1:
+
resolution: {integrity: sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==}
+
engines: {node: '>= 0.4'}
+
+
p-filter@2.1.0:
+
resolution: {integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==}
+
engines: {node: '>=8'}
+
+
p-limit@2.3.0:
+
resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==}
+
engines: {node: '>=6'}
+
+
p-limit@3.1.0:
+
resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
+
engines: {node: '>=10'}
+
+
p-limit@5.0.0:
+
resolution: {integrity: sha512-/Eaoq+QyLSiXQ4lyYV23f14mZRQcXnxfHrN0vCai+ak9G0pp9iEQukIIZq5NccEvwRB8PUnZT0KsOoDCINS1qQ==}
+
engines: {node: '>=18'}
+
+
p-locate@4.1.0:
+
resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==}
+
engines: {node: '>=8'}
+
+
p-locate@5.0.0:
+
resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
+
engines: {node: '>=10'}
+
+
p-map@2.1.0:
+
resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==}
+
engines: {node: '>=6'}
+
+
p-try@2.2.0:
+
resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
+
engines: {node: '>=6'}
+
+
package-json-from-dist@1.0.1:
+
resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==}
+
+
package-manager-detector@0.2.11:
+
resolution: {integrity: sha512-BEnLolu+yuz22S56CU1SUKq3XC3PkwD5wv4ikR4MfGvnRVcmzXR9DwSlW2fEamyTPyXHomBJRzgapeuBvRNzJQ==}
+
+
parent-module@1.0.1:
+
resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
+
engines: {node: '>=6'}
+
+
parse-json@4.0.0:
+
resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==}
+
engines: {node: '>=4'}
+
+
parse-json@5.2.0:
+
resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
+
engines: {node: '>=8'}
+
+
path-exists@4.0.0:
+
resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
+
engines: {node: '>=8'}
+
+
path-is-absolute@1.0.1:
+
resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
+
engines: {node: '>=0.10.0'}
+
+
path-key@2.0.1:
+
resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==}
+
engines: {node: '>=4'}
+
+
path-key@3.1.1:
+
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
+
engines: {node: '>=8'}
+
+
path-key@4.0.0:
+
resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==}
+
engines: {node: '>=12'}
+
+
path-parse@1.0.7:
+
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
+
+
path-scurry@1.11.1:
+
resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
+
engines: {node: '>=16 || 14 >=14.18'}
+
+
path-type@3.0.0:
+
resolution: {integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==}
+
engines: {node: '>=4'}
+
+
path-type@4.0.0:
+
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
+
engines: {node: '>=8'}
+
+
pathe@1.1.2:
+
resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==}
+
+
pathe@2.0.3:
+
resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==}
+
+
pathval@1.1.1:
+
resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==}
+
+
picocolors@1.1.1:
+
resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
+
+
picomatch@2.3.1:
+
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
+
engines: {node: '>=8.6'}
+
+
picomatch@4.0.2:
+
resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==}
+
engines: {node: '>=12'}
+
+
pidtree@0.3.1:
+
resolution: {integrity: sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==}
+
engines: {node: '>=0.10'}
+
hasBin: true
+
+
pidtree@0.6.0:
+
resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==}
+
engines: {node: '>=0.10'}
+
hasBin: true
+
+
pify@3.0.0:
+
resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==}
+
engines: {node: '>=4'}
+
+
pify@4.0.1:
+
resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==}
+
engines: {node: '>=6'}
+
+
pirates@4.0.6:
+
resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==}
+
engines: {node: '>= 6'}
+
+
pkg-dir@5.0.0:
+
resolution: {integrity: sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==}
+
engines: {node: '>=10'}
+
+
pkg-types@1.3.1:
+
resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==}
+
+
please-upgrade-node@3.2.0:
+
resolution: {integrity: sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==}
+
+
possible-typed-array-names@1.1.0:
+
resolution: {integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==}
+
engines: {node: '>= 0.4'}
+
+
postcss@8.5.3:
+
resolution: {integrity: sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==}
+
engines: {node: ^10 || ^12 || >=14}
+
+
prelude-ls@1.2.1:
+
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
+
engines: {node: '>= 0.8.0'}
+
+
prettier-linter-helpers@1.0.0:
+
resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==}
+
engines: {node: '>=6.0.0'}
+
+
prettier@2.8.8:
+
resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==}
+
engines: {node: '>=10.13.0'}
+
hasBin: true
+
+
pretty-format@29.7.0:
+
resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==}
+
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+
punycode@2.3.1:
+
resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
+
engines: {node: '>=6'}
+
+
quansync@0.2.8:
+
resolution: {integrity: sha512-4+saucphJMazjt7iOM27mbFCk+D9dd/zmgMDCzRZ8MEoBfYp7lAvoN38et/phRQF6wOPMy/OROBGgoWeSKyluA==}
+
+
queue-microtask@1.2.3:
+
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
+
+
react-is@18.3.1:
+
resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==}
+
+
read-pkg@3.0.0:
+
resolution: {integrity: sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==}
+
engines: {node: '>=4'}
+
+
read-yaml-file@1.1.0:
+
resolution: {integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==}
+
engines: {node: '>=6'}
+
+
rechoir@0.6.2:
+
resolution: {integrity: sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==}
+
engines: {node: '>= 0.10'}
+
+
reflect.getprototypeof@1.0.10:
+
resolution: {integrity: sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==}
+
engines: {node: '>= 0.4'}
+
+
regenerate-unicode-properties@8.2.0:
+
resolution: {integrity: sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA==}
+
engines: {node: '>=4'}
+
+
regenerate@1.4.2:
+
resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==}
+
+
regenerator-runtime@0.14.1:
+
resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==}
+
+
regexp.prototype.flags@1.5.4:
+
resolution: {integrity: sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==}
+
engines: {node: '>= 0.4'}
+
+
regexpu-core@4.5.4:
+
resolution: {integrity: sha512-BtizvGtFQKGPUcTy56o3nk1bGRp4SZOTYrDtGNlqCQufptV5IkkLN6Emw+yunAJjzf+C9FQFtvq7IoA3+oMYHQ==}
+
engines: {node: '>=4'}
+
+
regjsgen@0.5.2:
+
resolution: {integrity: sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==}
+
+
regjsparser@0.6.9:
+
resolution: {integrity: sha512-ZqbNRz1SNjLAiYuwY0zoXW8Ne675IX5q+YHioAGbCw4X96Mjl2+dcX9B2ciaeyYjViDAfvIjFpQjJgLttTEERQ==}
+
hasBin: true
+
+
resolve-from@4.0.0:
+
resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
+
engines: {node: '>=4'}
+
+
resolve-from@5.0.0:
+
resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==}
+
engines: {node: '>=8'}
+
+
resolve@1.19.0:
+
resolution: {integrity: sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==}
+
+
resolve@1.22.10:
+
resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==}
+
engines: {node: '>= 0.4'}
+
hasBin: true
+
+
restore-cursor@4.0.0:
+
resolution: {integrity: sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==}
+
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+
+
reusify@1.1.0:
+
resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==}
+
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
+
+
rfdc@1.4.1:
+
resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==}
+
+
rimraf@3.0.2:
+
resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
+
deprecated: Rimraf versions prior to v4 are no longer supported
+
hasBin: true
+
+
rollup-plugin-cjs-check@1.0.3:
+
resolution: {integrity: sha512-l8Gn8fm0YsAUuCVPmJ9CjwX5D98xyjc7iBlKfik5RGgXrV35nBwKCb+xbsK2oMrWMIRdLWsfyVUBM153e2zvYg==}
+
engines: {node: '>=14.0.0'}
+
peerDependencies:
+
rollup: ^1.20.0 || ^2.0.0 || ^3.0.0 || ^4.0.0
+
+
rollup-plugin-dts@5.3.1:
+
resolution: {integrity: sha512-gusMi+Z4gY/JaEQeXnB0RUdU82h1kF0WYzCWgVmV4p3hWXqelaKuCvcJawfeg+EKn2T1Ie+YWF2OiN1/L8bTVg==}
+
engines: {node: '>=v14.21.3'}
+
peerDependencies:
+
rollup: ^3.0
+
typescript: ^4.1 || ^5.0
+
+
rollup@3.29.5:
+
resolution: {integrity: sha512-GVsDdsbJzzy4S/v3dqWPJ7EfvZJfCHiDqe80IyrF59LYuP+e6U1LJoUqeuqRbwAWoMNoXivMNeNAOf5E22VA1w==}
+
engines: {node: '>=14.18.0', npm: '>=8.0.0'}
+
hasBin: true
+
+
rollup@4.34.9:
+
resolution: {integrity: sha512-nF5XYqWWp9hx/LrpC8sZvvvmq0TeTjQgaZHYmAgwysT9nh8sWnZhBnM8ZyVbbJFIQBLwHDNoMqsBZBbUo4U8sQ==}
+
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
+
hasBin: true
+
+
run-parallel@1.2.0:
+
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
+
+
safe-array-concat@1.1.3:
+
resolution: {integrity: sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==}
+
engines: {node: '>=0.4'}
+
+
safe-push-apply@1.0.0:
+
resolution: {integrity: sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==}
+
engines: {node: '>= 0.4'}
+
+
safe-regex-test@1.1.0:
+
resolution: {integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==}
+
engines: {node: '>= 0.4'}
+
+
safer-buffer@2.1.2:
+
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
+
+
semver-compare@1.0.0:
+
resolution: {integrity: sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==}
+
+
semver-regex@3.1.4:
+
resolution: {integrity: sha512-6IiqeZNgq01qGf0TId0t3NvKzSvUsjcpdEO3AQNeIjR6A2+ckTnQlDpl4qu1bjRv0RzN3FP9hzFmws3lKqRWkA==}
+
engines: {node: '>=8'}
+
+
semver@5.7.2:
+
resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==}
+
hasBin: true
+
+
semver@7.7.1:
+
resolution: {integrity: sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==}
+
engines: {node: '>=10'}
+
hasBin: true
+
+
set-function-length@1.2.2:
+
resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==}
+
engines: {node: '>= 0.4'}
+
+
set-function-name@2.0.2:
+
resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==}
+
engines: {node: '>= 0.4'}
+
+
set-proto@1.0.0:
+
resolution: {integrity: sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==}
+
engines: {node: '>= 0.4'}
+
+
shebang-command@1.2.0:
+
resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==}
+
engines: {node: '>=0.10.0'}
+
+
shebang-command@2.0.0:
+
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
+
engines: {node: '>=8'}
+
+
shebang-regex@1.0.0:
+
resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==}
+
engines: {node: '>=0.10.0'}
+
+
shebang-regex@3.0.0:
+
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
+
engines: {node: '>=8'}
+
+
shell-quote@1.8.2:
+
resolution: {integrity: sha512-AzqKpGKjrj7EM6rKVQEPpB288oCfnrEIuyoT9cyF4nmGa7V8Zk6f7RRqYisX8X9m+Q7bd632aZW4ky7EhbQztA==}
+
engines: {node: '>= 0.4'}
+
+
shelljs@0.8.5:
+
resolution: {integrity: sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==}
+
engines: {node: '>=4'}
+
hasBin: true
+
+
side-channel-list@1.0.0:
+
resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==}
+
engines: {node: '>= 0.4'}
+
+
side-channel-map@1.0.1:
+
resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==}
+
engines: {node: '>= 0.4'}
+
+
side-channel-weakmap@1.0.2:
+
resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==}
+
engines: {node: '>= 0.4'}
+
+
side-channel@1.1.0:
+
resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==}
+
engines: {node: '>= 0.4'}
+
+
siginfo@2.0.0:
+
resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==}
+
+
signal-exit@3.0.7:
+
resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
+
+
signal-exit@4.1.0:
+
resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
+
engines: {node: '>=14'}
+
+
slash@3.0.0:
+
resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
+
engines: {node: '>=8'}
+
+
slice-ansi@5.0.0:
+
resolution: {integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==}
+
engines: {node: '>=12'}
+
+
source-map-js@1.2.1:
+
resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
+
engines: {node: '>=0.10.0'}
+
+
source-map-support@0.5.21:
+
resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
+
+
source-map@0.6.1:
+
resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
+
engines: {node: '>=0.10.0'}
+
+
sourcemap-codec@1.4.8:
+
resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==}
+
deprecated: Please use @jridgewell/sourcemap-codec instead
+
+
spawndamnit@3.0.1:
+
resolution: {integrity: sha512-MmnduQUuHCoFckZoWnXsTg7JaiLBJrKFj9UI2MbRPGaJeVpsLcVBu6P/IGZovziM/YBsellCmsprgNA+w0CzVg==}
+
+
spdx-correct@3.2.0:
+
resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==}
+
+
spdx-exceptions@2.5.0:
+
resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==}
+
+
spdx-expression-parse@3.0.1:
+
resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==}
+
+
spdx-license-ids@3.0.21:
+
resolution: {integrity: sha512-Bvg/8F5XephndSK3JffaRqdT+gyhfqIPwDHpX80tJrF8QQRYMo8sNMeaZ2Dp5+jhwKnUmIOyFFQfHRkjJm5nXg==}
+
+
sprintf-js@1.0.3:
+
resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
+
+
stackback@0.0.2:
+
resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==}
+
+
std-env@3.8.1:
+
resolution: {integrity: sha512-vj5lIj3Mwf9D79hBkltk5qmkFI+biIKWS2IBxEyEU3AX1tUf7AoL8nSazCOiiqQsGKIq01SClsKEzweu34uwvA==}
+
+
string-argv@0.3.2:
+
resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==}
+
engines: {node: '>=0.6.19'}
+
+
string-width@4.2.3:
+
resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
+
engines: {node: '>=8'}
+
+
string-width@5.1.2:
+
resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
+
engines: {node: '>=12'}
+
+
string.prototype.padend@3.1.6:
+
resolution: {integrity: sha512-XZpspuSB7vJWhvJc9DLSlrXl1mcA2BdoY5jjnS135ydXqLoqhs96JjDtCkjJEQHvfqZIp9hBuBMgI589peyx9Q==}
+
engines: {node: '>= 0.4'}
+
+
string.prototype.trim@1.2.10:
+
resolution: {integrity: sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==}
+
engines: {node: '>= 0.4'}
+
+
string.prototype.trimend@1.0.9:
+
resolution: {integrity: sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==}
+
engines: {node: '>= 0.4'}
+
+
string.prototype.trimstart@1.0.8:
+
resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==}
+
engines: {node: '>= 0.4'}
+
+
strip-ansi@6.0.1:
+
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
+
engines: {node: '>=8'}
+
+
strip-ansi@7.1.0:
+
resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==}
+
engines: {node: '>=12'}
+
+
strip-bom@3.0.0:
+
resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==}
+
engines: {node: '>=4'}
+
+
strip-final-newline@3.0.0:
+
resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==}
+
engines: {node: '>=12'}
+
+
strip-json-comments@3.1.1:
+
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
+
engines: {node: '>=8'}
+
+
strip-literal@2.1.1:
+
resolution: {integrity: sha512-631UJ6O00eNGfMiWG78ck80dfBab8X6IVFB51jZK5Icd7XAs60Z5y7QdSd/wGIklnWvRbUNloVzhOKKmutxQ6Q==}
+
+
sucrase@3.35.0:
+
resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==}
+
engines: {node: '>=16 || 14 >=14.17'}
+
hasBin: true
+
+
supports-color@5.5.0:
+
resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
+
engines: {node: '>=4'}
+
+
supports-color@7.2.0:
+
resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
+
engines: {node: '>=8'}
+
+
supports-preserve-symlinks-flag@1.0.0:
+
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
+
engines: {node: '>= 0.4'}
+
+
term-size@2.2.1:
+
resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==}
+
engines: {node: '>=8'}
+
+
terser@5.39.0:
+
resolution: {integrity: sha512-LBAhFyLho16harJoWMg/nZsQYgTrg5jXOn2nCYjRUcZZEdE3qa2zb8QEDRUGVZBW4rlazf2fxkg8tztybTaqWw==}
+
engines: {node: '>=10'}
+
hasBin: true
+
+
text-table@0.2.0:
+
resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
+
+
thenify-all@1.6.0:
+
resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==}
+
engines: {node: '>=0.8'}
+
+
thenify@3.3.1:
+
resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==}
+
+
tinybench@2.9.0:
+
resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==}
+
+
tinypool@0.8.4:
+
resolution: {integrity: sha512-i11VH5gS6IFeLY3gMBQ00/MmLncVP7JLXOw1vlgkytLmJK7QnEr7NXf0LBdxfmNPAeyetukOk0bOYrJrFGjYJQ==}
+
engines: {node: '>=14.0.0'}
+
+
tinyspy@2.2.1:
+
resolution: {integrity: sha512-KYad6Vy5VDWV4GH3fjpseMQ/XU2BhIYP7Vzd0LG44qRWm/Yt2WCOTicFdvmgo6gWaqooMQCawTtILVQJupKu7A==}
+
engines: {node: '>=14.0.0'}
+
+
to-regex-range@5.0.1:
+
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
+
engines: {node: '>=8.0'}
+
+
tr46@0.0.3:
+
resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
+
+
ts-interface-checker@0.1.13:
+
resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
+
+
tslib@1.14.1:
+
resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
+
+
tslib@2.8.1:
+
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
+
+
tsutils@3.21.0:
+
resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
+
engines: {node: '>= 6'}
+
peerDependencies:
+
typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta'
+
+
type-check@0.4.0:
+
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
+
engines: {node: '>= 0.8.0'}
+
+
type-detect@4.1.0:
+
resolution: {integrity: sha512-Acylog8/luQ8L7il+geoSxhEkazvkslg7PSNKOX59mbB9cOveP5aq9h74Y7YU8yDpJwetzQQrfIwtf4Wp4LKcw==}
+
engines: {node: '>=4'}
+
+
type-fest@0.20.2:
+
resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
+
engines: {node: '>=10'}
+
+
type-fest@1.4.0:
+
resolution: {integrity: sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==}
+
engines: {node: '>=10'}
+
+
typed-array-buffer@1.0.3:
+
resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==}
+
engines: {node: '>= 0.4'}
+
+
typed-array-byte-length@1.0.3:
+
resolution: {integrity: sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==}
+
engines: {node: '>= 0.4'}
+
+
typed-array-byte-offset@1.0.4:
+
resolution: {integrity: sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==}
+
engines: {node: '>= 0.4'}
+
+
typed-array-length@1.0.7:
+
resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==}
+
engines: {node: '>= 0.4'}
+
+
typescript-compiler@1.4.1-2:
+
resolution: {integrity: sha512-EMopKmoAEJqA4XXRFGOb7eSBhmQMbBahW6P1Koayeatp0b4AW2q/bBqYWkpG7QVQc9HGQUiS4trx2ZHcnAaZUg==}
+
+
typescript@4.4.4:
+
resolution: {integrity: sha512-DqGhF5IKoBl8WNf8C1gu8q0xZSInh9j1kJJMqT3a94w1JzVaBU4EXOSMrz9yDqMT0xt3selp83fuFMQ0uzv6qA==}
+
engines: {node: '>=4.2.0'}
+
hasBin: true
+
+
typescript@4.9.5:
+
resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==}
+
engines: {node: '>=4.2.0'}
+
hasBin: true
+
+
ufo@1.5.4:
+
resolution: {integrity: sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==}
+
+
unbox-primitive@1.1.0:
+
resolution: {integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==}
+
engines: {node: '>= 0.4'}
+
+
undici-types@6.20.0:
+
resolution: {integrity: sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==}
+
+
unicode-canonical-property-names-ecmascript@1.0.4:
+
resolution: {integrity: sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ==}
+
engines: {node: '>=4'}
+
+
unicode-match-property-ecmascript@1.0.4:
+
resolution: {integrity: sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg==}
+
engines: {node: '>=4'}
+
+
unicode-match-property-value-ecmascript@1.2.0:
+
resolution: {integrity: sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ==}
+
engines: {node: '>=4'}
+
+
unicode-property-aliases-ecmascript@1.1.0:
+
resolution: {integrity: sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg==}
+
engines: {node: '>=4'}
+
+
universalify@0.1.2:
+
resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==}
+
engines: {node: '>= 4.0.0'}
+
+
uri-js@4.4.1:
+
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
+
+
validate-npm-package-license@3.0.4:
+
resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==}
+
+
vite-node@1.6.1:
+
resolution: {integrity: sha512-YAXkfvGtuTzwWbDSACdJSg4A4DZiAqckWe90Zapc/sEX3XvHcw1NdurM/6od8J207tSDqNbSsgdCacBgvJKFuA==}
+
engines: {node: ^18.0.0 || >=20.0.0}
+
hasBin: true
+
+
vite@5.4.14:
+
resolution: {integrity: sha512-EK5cY7Q1D8JNhSaPKVK4pwBFvaTmZxEnoKXLG/U9gmdDcihQGNzFlgIvaxezFR4glP1LsuiedwMBqCXH3wZccA==}
+
engines: {node: ^18.0.0 || >=20.0.0}
+
hasBin: true
+
peerDependencies:
+
'@types/node': ^18.0.0 || >=20.0.0
+
less: '*'
+
lightningcss: ^1.21.0
+
sass: '*'
+
sass-embedded: '*'
+
stylus: '*'
+
sugarss: '*'
+
terser: ^5.4.0
+
peerDependenciesMeta:
+
'@types/node':
+
optional: true
+
less:
+
optional: true
+
lightningcss:
+
optional: true
+
sass:
+
optional: true
+
sass-embedded:
+
optional: true
+
stylus:
+
optional: true
+
sugarss:
+
optional: true
+
terser:
+
optional: true
+
+
vitest@1.6.1:
+
resolution: {integrity: sha512-Ljb1cnSJSivGN0LqXd/zmDbWEM0RNNg2t1QW/XUhYl/qPqyu7CsqeWtqQXHVaJsecLPuDoak2oJcZN2QoRIOag==}
+
engines: {node: ^18.0.0 || >=20.0.0}
+
hasBin: true
+
peerDependencies:
+
'@edge-runtime/vm': '*'
+
'@types/node': ^18.0.0 || >=20.0.0
+
'@vitest/browser': 1.6.1
+
'@vitest/ui': 1.6.1
+
happy-dom: '*'
+
jsdom: '*'
+
peerDependenciesMeta:
+
'@edge-runtime/vm':
+
optional: true
+
'@types/node':
+
optional: true
+
'@vitest/browser':
+
optional: true
+
'@vitest/ui':
+
optional: true
+
happy-dom:
+
optional: true
+
jsdom:
+
optional: true
+
+
webidl-conversions@3.0.1:
+
resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
+
+
whatwg-url@5.0.0:
+
resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
+
+
which-boxed-primitive@1.1.1:
+
resolution: {integrity: sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==}
+
engines: {node: '>= 0.4'}
+
+
which-builtin-type@1.2.1:
+
resolution: {integrity: sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==}
+
engines: {node: '>= 0.4'}
+
+
which-collection@1.0.2:
+
resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==}
+
engines: {node: '>= 0.4'}
+
+
which-pm-runs@1.1.0:
+
resolution: {integrity: sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==}
+
engines: {node: '>=4'}
+
+
which-typed-array@1.1.18:
+
resolution: {integrity: sha512-qEcY+KJYlWyLH9vNbsr6/5j59AXk5ni5aakf8ldzBvGde6Iz4sxZGkJyWSAueTG7QhOvNRYb1lDdFmL5Td0QKA==}
+
engines: {node: '>= 0.4'}
+
+
which@1.3.1:
+
resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==}
+
hasBin: true
+
+
which@2.0.2:
+
resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
+
engines: {node: '>= 8'}
+
hasBin: true
+
+
why-is-node-running@2.3.0:
+
resolution: {integrity: sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==}
+
engines: {node: '>=8'}
+
hasBin: true
+
+
word-wrap@1.2.5:
+
resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
+
engines: {node: '>=0.10.0'}
+
+
wrap-ansi@7.0.0:
+
resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
+
engines: {node: '>=10'}
+
+
wrap-ansi@8.1.0:
+
resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
+
engines: {node: '>=12'}
+
+
wrappy@1.0.2:
+
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
+
+
yaml@1.10.2:
+
resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}
+
engines: {node: '>= 6'}
+
+
yaml@2.3.1:
+
resolution: {integrity: sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==}
+
engines: {node: '>= 14'}
+
+
yocto-queue@0.1.0:
+
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
+
engines: {node: '>=10'}
+
+
yocto-queue@1.1.1:
+
resolution: {integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==}
+
engines: {node: '>=12.20'}
+
+
zen-observable@0.10.0:
+
resolution: {integrity: sha512-iI3lT0iojZhKwT5DaFy2Ce42n3yFcLdFyOh01G7H0flMY60P8MJuVFEoJoNwXlmAyQ45GrjL6AcZmmlv8A5rbw==}
+
+
snapshots:
+
+
'@babel/code-frame@7.26.2':
+
dependencies:
+
'@babel/helper-validator-identifier': 7.25.9
+
js-tokens: 4.0.0
+
picocolors: 1.1.1
+
+
'@babel/helper-validator-identifier@7.25.9': {}
+
+
'@babel/highlight@7.25.9':
+
dependencies:
+
'@babel/helper-validator-identifier': 7.25.9
+
chalk: 2.4.2
+
js-tokens: 4.0.0
+
picocolors: 1.1.1
+
+
'@babel/runtime@7.26.9':
+
dependencies:
+
regenerator-runtime: 0.14.1
+
+
'@changesets/apply-release-plan@7.0.12':
+
dependencies:
+
'@changesets/config': 3.1.1
+
'@changesets/get-version-range-type': 0.4.0
+
'@changesets/git': 3.0.4
+
'@changesets/should-skip-package': 0.1.2
+
'@changesets/types': 6.1.0
+
'@manypkg/get-packages': 1.1.3
+
detect-indent: 6.1.0
+
fs-extra: 7.0.1
+
lodash.startcase: 4.4.0
+
outdent: 0.5.0
+
prettier: 2.8.8
+
resolve-from: 5.0.0
+
semver: 7.7.1
+
+
'@changesets/assemble-release-plan@6.0.9':
+
dependencies:
+
'@changesets/errors': 0.2.0
+
'@changesets/get-dependents-graph': 2.1.3
+
'@changesets/should-skip-package': 0.1.2
+
'@changesets/types': 6.1.0
+
'@manypkg/get-packages': 1.1.3
+
semver: 7.7.1
+
+
'@changesets/changelog-git@0.2.1':
+
dependencies:
+
'@changesets/types': 6.1.0
+
+
'@changesets/cli@2.29.6(@types/node@22.13.9)':
+
dependencies:
+
'@changesets/apply-release-plan': 7.0.12
+
'@changesets/assemble-release-plan': 6.0.9
+
'@changesets/changelog-git': 0.2.1
+
'@changesets/config': 3.1.1
+
'@changesets/errors': 0.2.0
+
'@changesets/get-dependents-graph': 2.1.3
+
'@changesets/get-release-plan': 4.0.13
+
'@changesets/git': 3.0.4
+
'@changesets/logger': 0.1.1
+
'@changesets/pre': 2.0.2
+
'@changesets/read': 0.6.5
+
'@changesets/should-skip-package': 0.1.2
+
'@changesets/types': 6.1.0
+
'@changesets/write': 0.4.0
+
'@inquirer/external-editor': 1.0.1(@types/node@22.13.9)
+
'@manypkg/get-packages': 1.1.3
+
ansi-colors: 4.1.3
+
ci-info: 3.9.0
+
enquirer: 2.4.1
+
fs-extra: 7.0.1
+
mri: 1.2.0
+
p-limit: 2.3.0
+
package-manager-detector: 0.2.11
+
picocolors: 1.1.1
+
resolve-from: 5.0.0
+
semver: 7.7.1
+
spawndamnit: 3.0.1
+
term-size: 2.2.1
+
transitivePeerDependencies:
+
- '@types/node'
+
+
'@changesets/config@3.1.1':
+
dependencies:
+
'@changesets/errors': 0.2.0
+
'@changesets/get-dependents-graph': 2.1.3
+
'@changesets/logger': 0.1.1
+
'@changesets/types': 6.1.0
+
'@manypkg/get-packages': 1.1.3
+
fs-extra: 7.0.1
+
micromatch: 4.0.8
+
+
'@changesets/errors@0.2.0':
+
dependencies:
+
extendable-error: 0.1.7
+
+
'@changesets/get-dependents-graph@2.1.3':
+
dependencies:
+
'@changesets/types': 6.1.0
+
'@manypkg/get-packages': 1.1.3
+
picocolors: 1.1.1
+
semver: 7.7.1
+
+
'@changesets/get-github-info@0.6.0':
+
dependencies:
+
dataloader: 1.4.0
+
node-fetch: 2.7.0
+
transitivePeerDependencies:
+
- encoding
+
+
'@changesets/get-release-plan@4.0.13':
+
dependencies:
+
'@changesets/assemble-release-plan': 6.0.9
+
'@changesets/config': 3.1.1
+
'@changesets/pre': 2.0.2
+
'@changesets/read': 0.6.5
+
'@changesets/types': 6.1.0
+
'@manypkg/get-packages': 1.1.3
+
+
'@changesets/get-version-range-type@0.4.0': {}
+
+
'@changesets/git@3.0.4':
+
dependencies:
+
'@changesets/errors': 0.2.0
+
'@manypkg/get-packages': 1.1.3
+
is-subdir: 1.2.0
+
micromatch: 4.0.8
+
spawndamnit: 3.0.1
+
+
'@changesets/logger@0.1.1':
+
dependencies:
+
picocolors: 1.1.1
+
+
'@changesets/parse@0.4.1':
+
dependencies:
+
'@changesets/types': 6.1.0
+
js-yaml: 3.14.1
+
+
'@changesets/pre@2.0.2':
+
dependencies:
+
'@changesets/errors': 0.2.0
+
'@changesets/types': 6.1.0
+
'@manypkg/get-packages': 1.1.3
+
fs-extra: 7.0.1
+
+
'@changesets/read@0.6.5':
+
dependencies:
+
'@changesets/git': 3.0.4
+
'@changesets/logger': 0.1.1
+
'@changesets/parse': 0.4.1
+
'@changesets/types': 6.1.0
+
fs-extra: 7.0.1
+
p-filter: 2.1.0
+
picocolors: 1.1.1
+
+
'@changesets/should-skip-package@0.1.2':
+
dependencies:
+
'@changesets/types': 6.1.0
+
'@manypkg/get-packages': 1.1.3
+
+
'@changesets/types@4.1.0': {}
+
+
'@changesets/types@6.1.0': {}
+
+
'@changesets/write@0.4.0':
+
dependencies:
+
'@changesets/types': 6.1.0
+
fs-extra: 7.0.1
+
human-id: 4.1.1
+
prettier: 2.8.8
+
+
'@esbuild/aix-ppc64@0.21.5':
+
optional: true
+
+
'@esbuild/android-arm64@0.21.5':
+
optional: true
+
+
'@esbuild/android-arm@0.21.5':
+
optional: true
+
+
'@esbuild/android-x64@0.21.5':
+
optional: true
+
+
'@esbuild/darwin-arm64@0.21.5':
+
optional: true
+
+
'@esbuild/darwin-x64@0.21.5':
+
optional: true
+
+
'@esbuild/freebsd-arm64@0.21.5':
+
optional: true
+
+
'@esbuild/freebsd-x64@0.21.5':
+
optional: true
+
+
'@esbuild/linux-arm64@0.21.5':
+
optional: true
+
+
'@esbuild/linux-arm@0.21.5':
+
optional: true
+
+
'@esbuild/linux-ia32@0.21.5':
+
optional: true
+
+
'@esbuild/linux-loong64@0.21.5':
+
optional: true
+
+
'@esbuild/linux-mips64el@0.21.5':
+
optional: true
+
+
'@esbuild/linux-ppc64@0.21.5':
+
optional: true
+
+
'@esbuild/linux-riscv64@0.21.5':
+
optional: true
+
+
'@esbuild/linux-s390x@0.21.5':
+
optional: true
+
+
'@esbuild/linux-x64@0.21.5':
+
optional: true
+
+
'@esbuild/netbsd-x64@0.21.5':
+
optional: true
+
+
'@esbuild/openbsd-x64@0.21.5':
+
optional: true
+
+
'@esbuild/sunos-x64@0.21.5':
+
optional: true
+
+
'@esbuild/win32-arm64@0.21.5':
+
optional: true
+
+
'@esbuild/win32-ia32@0.21.5':
+
optional: true
+
+
'@esbuild/win32-x64@0.21.5':
+
optional: true
+
+
'@eslint-community/eslint-utils@4.4.1(eslint@8.57.1)':
+
dependencies:
+
eslint: 8.57.1
+
eslint-visitor-keys: 3.4.3
+
+
'@eslint-community/regexpp@4.12.1': {}
+
+
'@eslint/eslintrc@2.1.4':
+
dependencies:
+
ajv: 6.12.6
+
debug: 4.4.0
+
espree: 9.6.1
+
globals: 13.24.0
+
ignore: 5.3.2
+
import-fresh: 3.3.1
+
js-yaml: 4.1.0
+
minimatch: 3.1.2
+
strip-json-comments: 3.1.1
+
transitivePeerDependencies:
+
- supports-color
+
+
'@eslint/js@8.57.1': {}
+
+
'@humanwhocodes/config-array@0.13.0':
+
dependencies:
+
'@humanwhocodes/object-schema': 2.0.3
+
debug: 4.4.0
+
minimatch: 3.1.2
+
transitivePeerDependencies:
+
- supports-color
+
+
'@humanwhocodes/module-importer@1.0.1': {}
+
+
'@humanwhocodes/object-schema@2.0.3': {}
+
+
'@inquirer/external-editor@1.0.1(@types/node@22.13.9)':
+
dependencies:
+
chardet: 2.1.0
+
iconv-lite: 0.6.3
+
optionalDependencies:
+
'@types/node': 22.13.9
+
+
'@isaacs/cliui@8.0.2':
+
dependencies:
+
string-width: 5.1.2
+
string-width-cjs: string-width@4.2.3
+
strip-ansi: 7.1.0
+
strip-ansi-cjs: strip-ansi@6.0.1
+
wrap-ansi: 8.1.0
+
wrap-ansi-cjs: wrap-ansi@7.0.0
+
+
'@jest/schemas@29.6.3':
+
dependencies:
+
'@sinclair/typebox': 0.27.8
+
+
'@jridgewell/gen-mapping@0.3.8':
+
dependencies:
+
'@jridgewell/set-array': 1.2.1
+
'@jridgewell/sourcemap-codec': 1.5.0
+
'@jridgewell/trace-mapping': 0.3.25
+
+
'@jridgewell/resolve-uri@3.1.2': {}
+
+
'@jridgewell/set-array@1.2.1': {}
+
+
'@jridgewell/source-map@0.3.6':
+
dependencies:
+
'@jridgewell/gen-mapping': 0.3.8
+
'@jridgewell/trace-mapping': 0.3.25
+
+
'@jridgewell/sourcemap-codec@1.5.0': {}
+
+
'@jridgewell/trace-mapping@0.3.25':
+
dependencies:
+
'@jridgewell/resolve-uri': 3.1.2
+
'@jridgewell/sourcemap-codec': 1.5.0
+
+
'@manypkg/find-root@1.1.0':
+
dependencies:
+
'@babel/runtime': 7.26.9
+
'@types/node': 12.20.55
+
find-up: 4.1.0
+
fs-extra: 8.1.0
+
+
'@manypkg/get-packages@1.1.3':
+
dependencies:
+
'@babel/runtime': 7.26.9
+
'@changesets/types': 4.1.0
+
'@manypkg/find-root': 1.1.0
+
fs-extra: 8.1.0
+
globby: 11.1.0
+
read-yaml-file: 1.1.0
+
+
'@microsoft/tsdoc-config@0.16.2':
+
dependencies:
+
'@microsoft/tsdoc': 0.14.2
+
ajv: 6.12.6
+
jju: 1.4.0
+
resolve: 1.19.0
+
+
'@microsoft/tsdoc@0.14.2': {}
+
+
'@nodelib/fs.scandir@2.1.5':
+
dependencies:
+
'@nodelib/fs.stat': 2.0.5
+
run-parallel: 1.2.0
+
+
'@nodelib/fs.stat@2.0.5': {}
+
+
'@nodelib/fs.walk@1.2.8':
+
dependencies:
+
'@nodelib/fs.scandir': 2.1.5
+
fastq: 1.19.1
+
+
'@pkgjs/parseargs@0.11.0':
+
optional: true
+
+
'@rollup/plugin-buble@1.0.3(rollup@3.29.5)':
+
dependencies:
+
'@rollup/pluginutils': 5.1.4(rollup@3.29.5)
+
'@types/buble': 0.19.2
+
buble: 0.20.0
+
optionalDependencies:
+
rollup: 3.29.5
+
+
'@rollup/plugin-commonjs@23.0.7(rollup@3.29.5)':
+
dependencies:
+
'@rollup/pluginutils': 5.1.4(rollup@3.29.5)
+
commondir: 1.0.1
+
estree-walker: 2.0.2
+
glob: 8.1.0
+
is-reference: 1.2.1
+
magic-string: 0.27.0
+
optionalDependencies:
+
rollup: 3.29.5
+
+
'@rollup/plugin-node-resolve@15.3.1(rollup@3.29.5)':
+
dependencies:
+
'@rollup/pluginutils': 5.1.4(rollup@3.29.5)
+
'@types/resolve': 1.20.2
+
deepmerge: 4.3.1
+
is-module: 1.0.0
+
resolve: 1.22.10
+
optionalDependencies:
+
rollup: 3.29.5
+
+
'@rollup/plugin-sucrase@5.0.2(rollup@3.29.5)':
+
dependencies:
+
'@rollup/pluginutils': 5.1.4(rollup@3.29.5)
+
sucrase: 3.35.0
+
optionalDependencies:
+
rollup: 3.29.5
+
+
'@rollup/plugin-terser@0.1.0(rollup@3.29.5)':
+
dependencies:
+
terser: 5.39.0
+
optionalDependencies:
+
rollup: 3.29.5
+
+
'@rollup/pluginutils@5.1.4(rollup@3.29.5)':
+
dependencies:
+
'@types/estree': 1.0.6
+
estree-walker: 2.0.2
+
picomatch: 4.0.2
+
optionalDependencies:
+
rollup: 3.29.5
+
+
'@rollup/rollup-android-arm-eabi@4.34.9':
+
optional: true
+
+
'@rollup/rollup-android-arm64@4.34.9':
+
optional: true
+
+
'@rollup/rollup-darwin-arm64@4.34.9':
+
optional: true
+
+
'@rollup/rollup-darwin-x64@4.34.9':
+
optional: true
+
+
'@rollup/rollup-freebsd-arm64@4.34.9':
+
optional: true
+
+
'@rollup/rollup-freebsd-x64@4.34.9':
+
optional: true
+
+
'@rollup/rollup-linux-arm-gnueabihf@4.34.9':
+
optional: true
+
+
'@rollup/rollup-linux-arm-musleabihf@4.34.9':
+
optional: true
+
+
'@rollup/rollup-linux-arm64-gnu@4.34.9':
+
optional: true
+
+
'@rollup/rollup-linux-arm64-musl@4.34.9':
+
optional: true
+
+
'@rollup/rollup-linux-loongarch64-gnu@4.34.9':
+
optional: true
+
+
'@rollup/rollup-linux-powerpc64le-gnu@4.34.9':
+
optional: true
+
+
'@rollup/rollup-linux-riscv64-gnu@4.34.9':
+
optional: true
+
+
'@rollup/rollup-linux-s390x-gnu@4.34.9':
+
optional: true
+
+
'@rollup/rollup-linux-x64-gnu@4.34.9':
+
optional: true
+
+
'@rollup/rollup-linux-x64-musl@4.34.9':
+
optional: true
+
+
'@rollup/rollup-win32-arm64-msvc@4.34.9':
+
optional: true
+
+
'@rollup/rollup-win32-ia32-msvc@4.34.9':
+
optional: true
+
+
'@rollup/rollup-win32-x64-msvc@4.34.9':
+
optional: true
+
+
'@sinclair/typebox@0.27.8': {}
+
+
'@types/buble@0.19.2':
+
dependencies:
+
magic-string: 0.25.9
+
+
'@types/estree@1.0.6': {}
+
+
'@types/json-schema@7.0.15': {}
+
+
'@types/node@12.20.55': {}
+
+
'@types/node@22.13.9':
+
dependencies:
+
undici-types: 6.20.0
+
optional: true
+
+
'@types/parse-json@4.0.2': {}
+
+
'@types/resolve@1.20.2': {}
+
+
'@types/semver@7.5.8': {}
+
+
'@types/zen-observable@0.8.7': {}
+
+
'@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.1)(typescript@4.9.5))(eslint@8.57.1)(typescript@4.9.5)':
+
dependencies:
+
'@eslint-community/regexpp': 4.12.1
+
'@typescript-eslint/parser': 5.62.0(eslint@8.57.1)(typescript@4.9.5)
+
'@typescript-eslint/scope-manager': 5.62.0
+
'@typescript-eslint/type-utils': 5.62.0(eslint@8.57.1)(typescript@4.9.5)
+
'@typescript-eslint/utils': 5.62.0(eslint@8.57.1)(typescript@4.9.5)
+
debug: 4.4.0
+
eslint: 8.57.1
+
graphemer: 1.4.0
+
ignore: 5.3.2
+
natural-compare-lite: 1.4.0
+
semver: 7.7.1
+
tsutils: 3.21.0(typescript@4.9.5)
+
optionalDependencies:
+
typescript: 4.9.5
+
transitivePeerDependencies:
+
- supports-color
+
+
'@typescript-eslint/parser@5.62.0(eslint@8.57.1)(typescript@4.9.5)':
+
dependencies:
+
'@typescript-eslint/scope-manager': 5.62.0
+
'@typescript-eslint/types': 5.62.0
+
'@typescript-eslint/typescript-estree': 5.62.0(typescript@4.9.5)
+
debug: 4.4.0
+
eslint: 8.57.1
+
optionalDependencies:
+
typescript: 4.9.5
+
transitivePeerDependencies:
+
- supports-color
+
+
'@typescript-eslint/scope-manager@5.62.0':
+
dependencies:
+
'@typescript-eslint/types': 5.62.0
+
'@typescript-eslint/visitor-keys': 5.62.0
+
+
'@typescript-eslint/type-utils@5.62.0(eslint@8.57.1)(typescript@4.9.5)':
+
dependencies:
+
'@typescript-eslint/typescript-estree': 5.62.0(typescript@4.9.5)
+
'@typescript-eslint/utils': 5.62.0(eslint@8.57.1)(typescript@4.9.5)
+
debug: 4.4.0
+
eslint: 8.57.1
+
tsutils: 3.21.0(typescript@4.9.5)
+
optionalDependencies:
+
typescript: 4.9.5
+
transitivePeerDependencies:
+
- supports-color
+
+
'@typescript-eslint/types@5.62.0': {}
+
+
'@typescript-eslint/typescript-estree@5.62.0(typescript@4.9.5)':
+
dependencies:
+
'@typescript-eslint/types': 5.62.0
+
'@typescript-eslint/visitor-keys': 5.62.0
+
debug: 4.4.0
+
globby: 11.1.0
+
is-glob: 4.0.3
+
semver: 7.7.1
+
tsutils: 3.21.0(typescript@4.9.5)
+
optionalDependencies:
+
typescript: 4.9.5
+
transitivePeerDependencies:
+
- supports-color
+
+
'@typescript-eslint/utils@5.62.0(eslint@8.57.1)(typescript@4.9.5)':
+
dependencies:
+
'@eslint-community/eslint-utils': 4.4.1(eslint@8.57.1)
+
'@types/json-schema': 7.0.15
+
'@types/semver': 7.5.8
+
'@typescript-eslint/scope-manager': 5.62.0
+
'@typescript-eslint/types': 5.62.0
+
'@typescript-eslint/typescript-estree': 5.62.0(typescript@4.9.5)
+
eslint: 8.57.1
+
eslint-scope: 5.1.1
+
semver: 7.7.1
+
transitivePeerDependencies:
+
- supports-color
+
- typescript
+
+
'@typescript-eslint/visitor-keys@5.62.0':
+
dependencies:
+
'@typescript-eslint/types': 5.62.0
+
eslint-visitor-keys: 3.4.3
+
+
'@ungap/structured-clone@1.3.0': {}
+
+
'@vitest/expect@1.6.1':
+
dependencies:
+
'@vitest/spy': 1.6.1
+
'@vitest/utils': 1.6.1
+
chai: 4.5.0
+
+
'@vitest/runner@1.6.1':
+
dependencies:
+
'@vitest/utils': 1.6.1
+
p-limit: 5.0.0
+
pathe: 1.1.2
+
+
'@vitest/snapshot@1.6.1':
+
dependencies:
+
magic-string: 0.30.17
+
pathe: 1.1.2
+
pretty-format: 29.7.0
+
+
'@vitest/spy@1.6.1':
+
dependencies:
+
tinyspy: 2.2.1
+
+
'@vitest/utils@1.6.1':
+
dependencies:
+
diff-sequences: 29.6.3
+
estree-walker: 3.0.3
+
loupe: 2.3.7
+
pretty-format: 29.7.0
+
+
acorn-dynamic-import@4.0.0(acorn@6.4.2):
+
dependencies:
+
acorn: 6.4.2
+
+
acorn-jsx@5.3.2(acorn@6.4.2):
+
dependencies:
+
acorn: 6.4.2
+
+
acorn-jsx@5.3.2(acorn@8.14.0):
+
dependencies:
+
acorn: 8.14.0
+
+
acorn-walk@8.3.4:
+
dependencies:
+
acorn: 8.14.0
+
+
acorn@6.4.2: {}
+
+
acorn@8.14.0: {}
+
+
ajv@6.12.6:
+
dependencies:
+
fast-deep-equal: 3.1.3
+
fast-json-stable-stringify: 2.1.0
+
json-schema-traverse: 0.4.1
+
uri-js: 4.4.1
+
+
ansi-colors@4.1.3: {}
+
+
ansi-escapes@5.0.0:
+
dependencies:
+
type-fest: 1.4.0
+
+
ansi-regex@5.0.1: {}
+
+
ansi-regex@6.1.0: {}
+
+
ansi-styles@3.2.1:
+
dependencies:
+
color-convert: 1.9.3
+
+
ansi-styles@4.3.0:
+
dependencies:
+
color-convert: 2.0.1
+
+
ansi-styles@5.2.0: {}
+
+
ansi-styles@6.2.1: {}
+
+
any-promise@1.3.0: {}
+
+
argparse@1.0.10:
+
dependencies:
+
sprintf-js: 1.0.3
+
+
argparse@2.0.1: {}
+
+
array-buffer-byte-length@1.0.2:
+
dependencies:
+
call-bound: 1.0.4
+
is-array-buffer: 3.0.5
+
+
array-union@2.1.0: {}
+
+
arraybuffer.prototype.slice@1.0.4:
+
dependencies:
+
array-buffer-byte-length: 1.0.2
+
call-bind: 1.0.8
+
define-properties: 1.2.1
+
es-abstract: 1.23.9
+
es-errors: 1.3.0
+
get-intrinsic: 1.3.0
+
is-array-buffer: 3.0.5
+
+
assertion-error@1.1.0: {}
+
+
async-function@1.0.0: {}
+
+
available-typed-arrays@1.0.7:
+
dependencies:
+
possible-typed-array-names: 1.1.0
+
+
balanced-match@1.0.2: {}
+
+
better-path-resolve@1.0.0:
+
dependencies:
+
is-windows: 1.0.2
+
+
brace-expansion@1.1.11:
+
dependencies:
+
balanced-match: 1.0.2
+
concat-map: 0.0.1
+
+
brace-expansion@2.0.1:
+
dependencies:
+
balanced-match: 1.0.2
+
+
braces@3.0.3:
+
dependencies:
+
fill-range: 7.1.1
+
+
buble@0.20.0:
+
dependencies:
+
acorn: 6.4.2
+
acorn-dynamic-import: 4.0.0(acorn@6.4.2)
+
acorn-jsx: 5.3.2(acorn@6.4.2)
+
chalk: 2.4.2
+
magic-string: 0.25.9
+
minimist: 1.2.8
+
regexpu-core: 4.5.4
+
+
buffer-from@1.1.2: {}
+
+
cac@6.7.14: {}
+
+
call-bind-apply-helpers@1.0.2:
+
dependencies:
+
es-errors: 1.3.0
+
function-bind: 1.1.2
+
+
call-bind@1.0.8:
+
dependencies:
+
call-bind-apply-helpers: 1.0.2
+
es-define-property: 1.0.1
+
get-intrinsic: 1.3.0
+
set-function-length: 1.2.2
+
+
call-bound@1.0.4:
+
dependencies:
+
call-bind-apply-helpers: 1.0.2
+
get-intrinsic: 1.3.0
+
+
callbag-from-iter@1.3.0:
+
dependencies:
+
callbag: 1.5.1
+
+
callbag-iterate@1.0.0: {}
+
+
callbag-take@1.5.0:
+
dependencies:
+
callbag: 1.5.1
+
+
callbag@1.5.1: {}
+
+
callsites@3.1.0: {}
+
+
chai@4.5.0:
+
dependencies:
+
assertion-error: 1.1.0
+
check-error: 1.0.3
+
deep-eql: 4.1.4
+
get-func-name: 2.0.2
+
loupe: 2.3.7
+
pathval: 1.1.1
+
type-detect: 4.1.0
+
+
chalk@2.4.2:
+
dependencies:
+
ansi-styles: 3.2.1
+
escape-string-regexp: 1.0.5
+
supports-color: 5.5.0
+
+
chalk@4.1.2:
+
dependencies:
+
ansi-styles: 4.3.0
+
supports-color: 7.2.0
+
+
chalk@5.3.0: {}
+
+
chardet@2.1.0: {}
+
+
check-error@1.0.3:
+
dependencies:
+
get-func-name: 2.0.2
+
+
ci-info@2.0.0: {}
+
+
ci-info@3.9.0: {}
+
+
cjs-module-lexer@1.4.3: {}
+
+
cli-cursor@4.0.0:
+
dependencies:
+
restore-cursor: 4.0.0
+
+
cli-truncate@3.1.0:
+
dependencies:
+
slice-ansi: 5.0.0
+
string-width: 5.1.2
+
+
color-convert@1.9.3:
+
dependencies:
+
color-name: 1.1.3
+
+
color-convert@2.0.1:
+
dependencies:
+
color-name: 1.1.4
+
+
color-name@1.1.3: {}
+
+
color-name@1.1.4: {}
+
+
colorette@2.0.20: {}
+
+
commander@11.0.0: {}
+
+
commander@2.20.3: {}
+
+
commander@4.1.1: {}
+
+
commander@6.2.1: {}
+
+
commondir@1.0.1: {}
+
+
compare-versions@3.6.0: {}
+
+
concat-map@0.0.1: {}
+
+
confbox@0.1.8: {}
+
+
cosmiconfig@7.1.0:
+
dependencies:
+
'@types/parse-json': 4.0.2
+
import-fresh: 3.3.1
+
parse-json: 5.2.0
+
path-type: 4.0.0
+
yaml: 1.10.2
+
+
cross-spawn@6.0.6:
+
dependencies:
+
nice-try: 1.0.5
+
path-key: 2.0.1
+
semver: 5.7.2
+
shebang-command: 1.2.0
+
which: 1.3.1
+
+
cross-spawn@7.0.6:
+
dependencies:
+
path-key: 3.1.1
+
shebang-command: 2.0.0
+
which: 2.0.2
+
+
data-view-buffer@1.0.2:
+
dependencies:
+
call-bound: 1.0.4
+
es-errors: 1.3.0
+
is-data-view: 1.0.2
+
+
data-view-byte-length@1.0.2:
+
dependencies:
+
call-bound: 1.0.4
+
es-errors: 1.3.0
+
is-data-view: 1.0.2
+
+
data-view-byte-offset@1.0.1:
+
dependencies:
+
call-bound: 1.0.4
+
es-errors: 1.3.0
+
is-data-view: 1.0.2
+
+
dataloader@1.4.0: {}
+
+
debug@4.3.4:
+
dependencies:
+
ms: 2.1.2
+
+
debug@4.4.0:
+
dependencies:
+
ms: 2.1.3
+
+
deep-eql@4.1.4:
+
dependencies:
+
type-detect: 4.1.0
+
+
deep-is@0.1.4: {}
+
+
deepmerge@4.3.1: {}
+
+
define-data-property@1.1.4:
+
dependencies:
+
es-define-property: 1.0.1
+
es-errors: 1.3.0
+
gopd: 1.2.0
+
+
define-properties@1.2.1:
+
dependencies:
+
define-data-property: 1.1.4
+
has-property-descriptors: 1.0.2
+
object-keys: 1.1.1
+
+
detect-indent@6.1.0: {}
+
+
diff-sequences@29.6.3: {}
+
+
dir-glob@3.0.1:
+
dependencies:
+
path-type: 4.0.0
+
+
doctrine@3.0.0:
+
dependencies:
+
esutils: 2.0.3
+
+
dotenv@16.4.7: {}
+
+
dunder-proto@1.0.1:
+
dependencies:
+
call-bind-apply-helpers: 1.0.2
+
es-errors: 1.3.0
+
gopd: 1.2.0
+
+
eastasianwidth@0.2.0: {}
+
+
emoji-regex@8.0.0: {}
+
+
emoji-regex@9.2.2: {}
+
+
enquirer@2.4.1:
+
dependencies:
+
ansi-colors: 4.1.3
+
strip-ansi: 6.0.1
+
+
error-ex@1.3.2:
+
dependencies:
+
is-arrayish: 0.2.1
+
+
es-abstract@1.23.9:
+
dependencies:
+
array-buffer-byte-length: 1.0.2
+
arraybuffer.prototype.slice: 1.0.4
+
available-typed-arrays: 1.0.7
+
call-bind: 1.0.8
+
call-bound: 1.0.4
+
data-view-buffer: 1.0.2
+
data-view-byte-length: 1.0.2
+
data-view-byte-offset: 1.0.1
+
es-define-property: 1.0.1
+
es-errors: 1.3.0
+
es-object-atoms: 1.1.1
+
es-set-tostringtag: 2.1.0
+
es-to-primitive: 1.3.0
+
function.prototype.name: 1.1.8
+
get-intrinsic: 1.3.0
+
get-proto: 1.0.1
+
get-symbol-description: 1.1.0
+
globalthis: 1.0.4
+
gopd: 1.2.0
+
has-property-descriptors: 1.0.2
+
has-proto: 1.2.0
+
has-symbols: 1.1.0
+
hasown: 2.0.2
+
internal-slot: 1.1.0
+
is-array-buffer: 3.0.5
+
is-callable: 1.2.7
+
is-data-view: 1.0.2
+
is-regex: 1.2.1
+
is-shared-array-buffer: 1.0.4
+
is-string: 1.1.1
+
is-typed-array: 1.1.15
+
is-weakref: 1.1.1
+
math-intrinsics: 1.1.0
+
object-inspect: 1.13.4
+
object-keys: 1.1.1
+
object.assign: 4.1.7
+
own-keys: 1.0.1
+
regexp.prototype.flags: 1.5.4
+
safe-array-concat: 1.1.3
+
safe-push-apply: 1.0.0
+
safe-regex-test: 1.1.0
+
set-proto: 1.0.0
+
string.prototype.trim: 1.2.10
+
string.prototype.trimend: 1.0.9
+
string.prototype.trimstart: 1.0.8
+
typed-array-buffer: 1.0.3
+
typed-array-byte-length: 1.0.3
+
typed-array-byte-offset: 1.0.4
+
typed-array-length: 1.0.7
+
unbox-primitive: 1.1.0
+
which-typed-array: 1.1.18
+
+
es-define-property@1.0.1: {}
+
+
es-errors@1.3.0: {}
+
+
es-object-atoms@1.1.1:
+
dependencies:
+
es-errors: 1.3.0
+
+
es-set-tostringtag@2.1.0:
+
dependencies:
+
es-errors: 1.3.0
+
get-intrinsic: 1.3.0
+
has-tostringtag: 1.0.2
+
hasown: 2.0.2
+
+
es-to-primitive@1.3.0:
+
dependencies:
+
is-callable: 1.2.7
+
is-date-object: 1.1.0
+
is-symbol: 1.1.1
+
+
esbuild@0.21.5:
+
optionalDependencies:
+
'@esbuild/aix-ppc64': 0.21.5
+
'@esbuild/android-arm': 0.21.5
+
'@esbuild/android-arm64': 0.21.5
+
'@esbuild/android-x64': 0.21.5
+
'@esbuild/darwin-arm64': 0.21.5
+
'@esbuild/darwin-x64': 0.21.5
+
'@esbuild/freebsd-arm64': 0.21.5
+
'@esbuild/freebsd-x64': 0.21.5
+
'@esbuild/linux-arm': 0.21.5
+
'@esbuild/linux-arm64': 0.21.5
+
'@esbuild/linux-ia32': 0.21.5
+
'@esbuild/linux-loong64': 0.21.5
+
'@esbuild/linux-mips64el': 0.21.5
+
'@esbuild/linux-ppc64': 0.21.5
+
'@esbuild/linux-riscv64': 0.21.5
+
'@esbuild/linux-s390x': 0.21.5
+
'@esbuild/linux-x64': 0.21.5
+
'@esbuild/netbsd-x64': 0.21.5
+
'@esbuild/openbsd-x64': 0.21.5
+
'@esbuild/sunos-x64': 0.21.5
+
'@esbuild/win32-arm64': 0.21.5
+
'@esbuild/win32-ia32': 0.21.5
+
'@esbuild/win32-x64': 0.21.5
+
+
escape-string-regexp@1.0.5: {}
+
+
escape-string-regexp@4.0.0: {}
+
+
eslint-config-prettier@8.10.0(eslint@8.57.1):
+
dependencies:
+
eslint: 8.57.1
+
+
eslint-plugin-prettier@4.2.1(eslint-config-prettier@8.10.0(eslint@8.57.1))(eslint@8.57.1)(prettier@2.8.8):
+
dependencies:
+
eslint: 8.57.1
+
prettier: 2.8.8
+
prettier-linter-helpers: 1.0.0
+
optionalDependencies:
+
eslint-config-prettier: 8.10.0(eslint@8.57.1)
+
+
eslint-plugin-tsdoc@0.2.17:
+
dependencies:
+
'@microsoft/tsdoc': 0.14.2
+
'@microsoft/tsdoc-config': 0.16.2
+
+
eslint-scope@5.1.1:
+
dependencies:
+
esrecurse: 4.3.0
+
estraverse: 4.3.0
+
+
eslint-scope@7.2.2:
+
dependencies:
+
esrecurse: 4.3.0
+
estraverse: 5.3.0
+
+
eslint-visitor-keys@3.4.3: {}
+
+
eslint@8.57.1:
+
dependencies:
+
'@eslint-community/eslint-utils': 4.4.1(eslint@8.57.1)
+
'@eslint-community/regexpp': 4.12.1
+
'@eslint/eslintrc': 2.1.4
+
'@eslint/js': 8.57.1
+
'@humanwhocodes/config-array': 0.13.0
+
'@humanwhocodes/module-importer': 1.0.1
+
'@nodelib/fs.walk': 1.2.8
+
'@ungap/structured-clone': 1.3.0
+
ajv: 6.12.6
+
chalk: 4.1.2
+
cross-spawn: 7.0.6
+
debug: 4.4.0
+
doctrine: 3.0.0
+
escape-string-regexp: 4.0.0
+
eslint-scope: 7.2.2
+
eslint-visitor-keys: 3.4.3
+
espree: 9.6.1
+
esquery: 1.6.0
+
esutils: 2.0.3
+
fast-deep-equal: 3.1.3
+
file-entry-cache: 6.0.1
+
find-up: 5.0.0
+
glob-parent: 6.0.2
+
globals: 13.24.0
+
graphemer: 1.4.0
+
ignore: 5.3.2
+
imurmurhash: 0.1.4
+
is-glob: 4.0.3
+
is-path-inside: 3.0.3
+
js-yaml: 4.1.0
+
json-stable-stringify-without-jsonify: 1.0.1
+
levn: 0.4.1
+
lodash.merge: 4.6.2
+
minimatch: 3.1.2
+
natural-compare: 1.4.0
+
optionator: 0.9.4
+
strip-ansi: 6.0.1
+
text-table: 0.2.0
+
transitivePeerDependencies:
+
- supports-color
+
+
espree@9.6.1:
+
dependencies:
+
acorn: 8.14.0
+
acorn-jsx: 5.3.2(acorn@8.14.0)
+
eslint-visitor-keys: 3.4.3
+
+
esprima@4.0.1: {}
+
+
esquery@1.6.0:
+
dependencies:
+
estraverse: 5.3.0
+
+
esrecurse@4.3.0:
+
dependencies:
+
estraverse: 5.3.0
+
+
estraverse@4.3.0: {}
+
+
estraverse@5.3.0: {}
+
+
estree-walker@2.0.2: {}
+
+
estree-walker@3.0.3:
+
dependencies:
+
'@types/estree': 1.0.6
+
+
esutils@2.0.3: {}
+
+
eventemitter3@5.0.1: {}
+
+
execa@7.2.0:
+
dependencies:
+
cross-spawn: 7.0.6
+
get-stream: 6.0.1
+
human-signals: 4.3.1
+
is-stream: 3.0.0
+
merge-stream: 2.0.0
+
npm-run-path: 5.3.0
+
onetime: 6.0.0
+
signal-exit: 3.0.7
+
strip-final-newline: 3.0.0
+
+
execa@8.0.1:
+
dependencies:
+
cross-spawn: 7.0.6
+
get-stream: 8.0.1
+
human-signals: 5.0.0
+
is-stream: 3.0.0
+
merge-stream: 2.0.0
+
npm-run-path: 5.3.0
+
onetime: 6.0.0
+
signal-exit: 4.1.0
+
strip-final-newline: 3.0.0
+
+
extendable-error@0.1.7: {}
+
+
fast-deep-equal@3.1.3: {}
+
+
fast-diff@1.3.0: {}
+
+
fast-glob@3.3.3:
+
dependencies:
+
'@nodelib/fs.stat': 2.0.5
+
'@nodelib/fs.walk': 1.2.8
+
glob-parent: 5.1.2
+
merge2: 1.4.1
+
micromatch: 4.0.8
+
+
fast-json-stable-stringify@2.1.0: {}
+
+
fast-levenshtein@2.0.6: {}
+
+
fastq@1.19.1:
+
dependencies:
+
reusify: 1.1.0
+
+
file-entry-cache@6.0.1:
+
dependencies:
+
flat-cache: 3.2.0
+
+
fill-range@7.1.1:
+
dependencies:
+
to-regex-range: 5.0.1
+
+
find-up@4.1.0:
+
dependencies:
+
locate-path: 5.0.0
+
path-exists: 4.0.0
+
+
find-up@5.0.0:
+
dependencies:
+
locate-path: 6.0.0
+
path-exists: 4.0.0
+
+
find-versions@4.0.0:
+
dependencies:
+
semver-regex: 3.1.4
+
+
flat-cache@3.2.0:
+
dependencies:
+
flatted: 3.3.3
+
keyv: 4.5.4
+
rimraf: 3.0.2
+
+
flatted@3.3.3: {}
+
+
flowgen@1.21.0:
+
dependencies:
+
'@babel/code-frame': 7.26.2
+
'@babel/highlight': 7.25.9
+
commander: 6.2.1
+
lodash: 4.17.21
+
prettier: 2.8.8
+
shelljs: 0.8.5
+
typescript: 4.4.4
+
typescript-compiler: 1.4.1-2
+
+
for-each@0.3.5:
+
dependencies:
+
is-callable: 1.2.7
+
+
foreground-child@3.3.1:
+
dependencies:
+
cross-spawn: 7.0.6
+
signal-exit: 4.1.0
+
+
fs-extra@7.0.1:
+
dependencies:
+
graceful-fs: 4.2.11
+
jsonfile: 4.0.0
+
universalify: 0.1.2
+
+
fs-extra@8.1.0:
+
dependencies:
+
graceful-fs: 4.2.11
+
jsonfile: 4.0.0
+
universalify: 0.1.2
+
+
fs.realpath@1.0.0: {}
+
+
fsevents@2.3.3:
+
optional: true
+
+
function-bind@1.1.2: {}
+
+
function.prototype.name@1.1.8:
+
dependencies:
+
call-bind: 1.0.8
+
call-bound: 1.0.4
+
define-properties: 1.2.1
+
functions-have-names: 1.2.3
+
hasown: 2.0.2
+
is-callable: 1.2.7
+
+
functions-have-names@1.2.3: {}
+
+
get-func-name@2.0.2: {}
+
+
get-intrinsic@1.3.0:
+
dependencies:
+
call-bind-apply-helpers: 1.0.2
+
es-define-property: 1.0.1
+
es-errors: 1.3.0
+
es-object-atoms: 1.1.1
+
function-bind: 1.1.2
+
get-proto: 1.0.1
+
gopd: 1.2.0
+
has-symbols: 1.1.0
+
hasown: 2.0.2
+
math-intrinsics: 1.1.0
+
+
get-proto@1.0.1:
+
dependencies:
+
dunder-proto: 1.0.1
+
es-object-atoms: 1.1.1
+
+
get-stream@6.0.1: {}
+
+
get-stream@8.0.1: {}
+
+
get-symbol-description@1.1.0:
+
dependencies:
+
call-bound: 1.0.4
+
es-errors: 1.3.0
+
get-intrinsic: 1.3.0
+
+
glob-parent@5.1.2:
+
dependencies:
+
is-glob: 4.0.3
+
+
glob-parent@6.0.2:
+
dependencies:
+
is-glob: 4.0.3
+
+
glob@10.4.5:
+
dependencies:
+
foreground-child: 3.3.1
+
jackspeak: 3.4.3
+
minimatch: 9.0.5
+
minipass: 7.1.2
+
package-json-from-dist: 1.0.1
+
path-scurry: 1.11.1
+
+
glob@7.2.3:
+
dependencies:
+
fs.realpath: 1.0.0
+
inflight: 1.0.6
+
inherits: 2.0.4
+
minimatch: 3.1.2
+
once: 1.4.0
+
path-is-absolute: 1.0.1
+
+
glob@8.1.0:
+
dependencies:
+
fs.realpath: 1.0.0
+
inflight: 1.0.6
+
inherits: 2.0.4
+
minimatch: 5.1.6
+
once: 1.4.0
+
+
globals@13.24.0:
+
dependencies:
+
type-fest: 0.20.2
+
+
globalthis@1.0.4:
+
dependencies:
+
define-properties: 1.2.1
+
gopd: 1.2.0
+
+
globby@11.1.0:
+
dependencies:
+
array-union: 2.1.0
+
dir-glob: 3.0.1
+
fast-glob: 3.3.3
+
ignore: 5.3.2
+
merge2: 1.4.1
+
slash: 3.0.0
+
+
gopd@1.2.0: {}
+
+
graceful-fs@4.2.11: {}
+
+
graphemer@1.4.0: {}
+
+
has-bigints@1.1.0: {}
+
+
has-flag@3.0.0: {}
+
+
has-flag@4.0.0: {}
+
+
has-property-descriptors@1.0.2:
+
dependencies:
+
es-define-property: 1.0.1
+
+
has-proto@1.2.0:
+
dependencies:
+
dunder-proto: 1.0.1
+
+
has-symbols@1.1.0: {}
+
+
has-tostringtag@1.0.2:
+
dependencies:
+
has-symbols: 1.1.0
+
+
hasown@2.0.2:
+
dependencies:
+
function-bind: 1.1.2
+
+
hosted-git-info@2.8.9: {}
+
+
human-id@4.1.1: {}
+
+
human-signals@4.3.1: {}
+
+
human-signals@5.0.0: {}
+
+
husky-v4@4.3.8:
+
dependencies:
+
chalk: 4.1.2
+
ci-info: 2.0.0
+
compare-versions: 3.6.0
+
cosmiconfig: 7.1.0
+
find-versions: 4.0.0
+
opencollective-postinstall: 2.0.3
+
pkg-dir: 5.0.0
+
please-upgrade-node: 3.2.0
+
slash: 3.0.0
+
which-pm-runs: 1.1.0
+
+
iconv-lite@0.6.3:
+
dependencies:
+
safer-buffer: 2.1.2
+
+
ignore@5.3.2: {}
+
+
import-fresh@3.3.1:
+
dependencies:
+
parent-module: 1.0.1
+
resolve-from: 4.0.0
+
+
imurmurhash@0.1.4: {}
+
+
inflight@1.0.6:
+
dependencies:
+
once: 1.4.0
+
wrappy: 1.0.2
+
+
inherits@2.0.4: {}
+
+
internal-slot@1.1.0:
+
dependencies:
+
es-errors: 1.3.0
+
hasown: 2.0.2
+
side-channel: 1.1.0
+
+
interpret@1.4.0: {}
+
+
is-array-buffer@3.0.5:
+
dependencies:
+
call-bind: 1.0.8
+
call-bound: 1.0.4
+
get-intrinsic: 1.3.0
+
+
is-arrayish@0.2.1: {}
+
+
is-async-function@2.1.1:
+
dependencies:
+
async-function: 1.0.0
+
call-bound: 1.0.4
+
get-proto: 1.0.1
+
has-tostringtag: 1.0.2
+
safe-regex-test: 1.1.0
+
+
is-bigint@1.1.0:
+
dependencies:
+
has-bigints: 1.1.0
+
+
is-boolean-object@1.2.2:
+
dependencies:
+
call-bound: 1.0.4
+
has-tostringtag: 1.0.2
+
+
is-callable@1.2.7: {}
+
+
is-core-module@2.16.1:
+
dependencies:
+
hasown: 2.0.2
+
+
is-data-view@1.0.2:
+
dependencies:
+
call-bound: 1.0.4
+
get-intrinsic: 1.3.0
+
is-typed-array: 1.1.15
+
+
is-date-object@1.1.0:
+
dependencies:
+
call-bound: 1.0.4
+
has-tostringtag: 1.0.2
+
+
is-extglob@2.1.1: {}
+
+
is-finalizationregistry@1.1.1:
+
dependencies:
+
call-bound: 1.0.4
+
+
is-fullwidth-code-point@3.0.0: {}
+
+
is-fullwidth-code-point@4.0.0: {}
+
+
is-generator-function@1.1.0:
+
dependencies:
+
call-bound: 1.0.4
+
get-proto: 1.0.1
+
has-tostringtag: 1.0.2
+
safe-regex-test: 1.1.0
+
+
is-glob@4.0.3:
+
dependencies:
+
is-extglob: 2.1.1
+
+
is-map@2.0.3: {}
+
+
is-module@1.0.0: {}
+
+
is-number-object@1.1.1:
+
dependencies:
+
call-bound: 1.0.4
+
has-tostringtag: 1.0.2
+
+
is-number@7.0.0: {}
+
+
is-path-inside@3.0.3: {}
+
+
is-reference@1.2.1:
+
dependencies:
+
'@types/estree': 1.0.6
+
+
is-regex@1.2.1:
+
dependencies:
+
call-bound: 1.0.4
+
gopd: 1.2.0
+
has-tostringtag: 1.0.2
+
hasown: 2.0.2
+
+
is-set@2.0.3: {}
+
+
is-shared-array-buffer@1.0.4:
+
dependencies:
+
call-bound: 1.0.4
+
+
is-stream@3.0.0: {}
+
+
is-string@1.1.1:
+
dependencies:
+
call-bound: 1.0.4
+
has-tostringtag: 1.0.2
+
+
is-subdir@1.2.0:
+
dependencies:
+
better-path-resolve: 1.0.0
+
+
is-symbol@1.1.1:
+
dependencies:
+
call-bound: 1.0.4
+
has-symbols: 1.1.0
+
safe-regex-test: 1.1.0
+
+
is-typed-array@1.1.15:
+
dependencies:
+
which-typed-array: 1.1.18
+
+
is-weakmap@2.0.2: {}
+
+
is-weakref@1.1.1:
+
dependencies:
+
call-bound: 1.0.4
+
+
is-weakset@2.0.4:
+
dependencies:
+
call-bound: 1.0.4
+
get-intrinsic: 1.3.0
+
+
is-windows@1.0.2: {}
+
+
isarray@2.0.5: {}
+
+
isexe@2.0.0: {}
+
+
jackspeak@3.4.3:
+
dependencies:
+
'@isaacs/cliui': 8.0.2
+
optionalDependencies:
+
'@pkgjs/parseargs': 0.11.0
+
+
jju@1.4.0: {}
+
+
js-tokens@4.0.0: {}
+
+
js-tokens@9.0.1: {}
+
+
js-yaml@3.14.1:
+
dependencies:
+
argparse: 1.0.10
+
esprima: 4.0.1
+
+
js-yaml@4.1.0:
+
dependencies:
+
argparse: 2.0.1
+
+
jsesc@0.5.0: {}
+
+
json-buffer@3.0.1: {}
+
+
json-parse-better-errors@1.0.2: {}
+
+
json-parse-even-better-errors@2.3.1: {}
+
+
json-schema-traverse@0.4.1: {}
+
+
json-stable-stringify-without-jsonify@1.0.1: {}
+
+
jsonfile@4.0.0:
+
optionalDependencies:
+
graceful-fs: 4.2.11
+
+
keyv@4.5.4:
+
dependencies:
+
json-buffer: 3.0.1
+
+
levn@0.4.1:
+
dependencies:
+
prelude-ls: 1.2.1
+
type-check: 0.4.0
+
+
lilconfig@2.1.0: {}
+
+
lines-and-columns@1.2.4: {}
+
+
lint-staged@13.3.0(enquirer@2.4.1):
+
dependencies:
+
chalk: 5.3.0
+
commander: 11.0.0
+
debug: 4.3.4
+
execa: 7.2.0
+
lilconfig: 2.1.0
+
listr2: 6.6.1(enquirer@2.4.1)
+
micromatch: 4.0.5
+
pidtree: 0.6.0
+
string-argv: 0.3.2
+
yaml: 2.3.1
+
transitivePeerDependencies:
+
- enquirer
+
- supports-color
+
+
listr2@6.6.1(enquirer@2.4.1):
+
dependencies:
+
cli-truncate: 3.1.0
+
colorette: 2.0.20
+
eventemitter3: 5.0.1
+
log-update: 5.0.1
+
rfdc: 1.4.1
+
wrap-ansi: 8.1.0
+
optionalDependencies:
+
enquirer: 2.4.1
+
+
load-json-file@4.0.0:
+
dependencies:
+
graceful-fs: 4.2.11
+
parse-json: 4.0.0
+
pify: 3.0.0
+
strip-bom: 3.0.0
+
+
local-pkg@0.5.1:
+
dependencies:
+
mlly: 1.7.4
+
pkg-types: 1.3.1
+
+
locate-path@5.0.0:
+
dependencies:
+
p-locate: 4.1.0
+
+
locate-path@6.0.0:
+
dependencies:
+
p-locate: 5.0.0
+
+
lodash.merge@4.6.2: {}
+
+
lodash.startcase@4.4.0: {}
+
+
lodash@4.17.21: {}
+
+
log-update@5.0.1:
+
dependencies:
+
ansi-escapes: 5.0.0
+
cli-cursor: 4.0.0
+
slice-ansi: 5.0.0
+
strip-ansi: 7.1.0
+
wrap-ansi: 8.1.0
+
+
loupe@2.3.7:
+
dependencies:
+
get-func-name: 2.0.2
+
+
lru-cache@10.4.3: {}
+
+
magic-string@0.25.9:
+
dependencies:
+
sourcemap-codec: 1.4.8
+
+
magic-string@0.27.0:
+
dependencies:
+
'@jridgewell/sourcemap-codec': 1.5.0
+
+
magic-string@0.30.17:
+
dependencies:
+
'@jridgewell/sourcemap-codec': 1.5.0
+
+
math-intrinsics@1.1.0: {}
+
+
memorystream@0.3.1: {}
+
+
merge-stream@2.0.0: {}
+
+
merge2@1.4.1: {}
+
+
micromatch@4.0.5:
+
dependencies:
+
braces: 3.0.3
+
picomatch: 2.3.1
+
+
micromatch@4.0.8:
+
dependencies:
+
braces: 3.0.3
+
picomatch: 2.3.1
+
+
mimic-fn@2.1.0: {}
+
+
mimic-fn@4.0.0: {}
+
+
minimatch@3.1.2:
+
dependencies:
+
brace-expansion: 1.1.11
+
+
minimatch@5.1.6:
+
dependencies:
+
brace-expansion: 2.0.1
+
+
minimatch@9.0.5:
+
dependencies:
+
brace-expansion: 2.0.1
+
+
minimist@1.2.8: {}
+
+
minipass@7.1.2: {}
+
+
mlly@1.7.4:
+
dependencies:
+
acorn: 8.14.0
+
pathe: 2.0.3
+
pkg-types: 1.3.1
+
ufo: 1.5.4
+
+
mri@1.2.0: {}
+
+
ms@2.1.2: {}
+
+
ms@2.1.3: {}
+
+
mz@2.7.0:
+
dependencies:
+
any-promise: 1.3.0
+
object-assign: 4.1.1
+
thenify-all: 1.6.0
+
+
nanoid@3.3.8: {}
+
+
natural-compare-lite@1.4.0: {}
+
+
natural-compare@1.4.0: {}
+
+
nice-try@1.0.5: {}
+
+
node-fetch@2.7.0:
+
dependencies:
+
whatwg-url: 5.0.0
+
+
normalize-package-data@2.5.0:
+
dependencies:
+
hosted-git-info: 2.8.9
+
resolve: 1.22.10
+
semver: 5.7.2
+
validate-npm-package-license: 3.0.4
+
+
npm-run-all@4.1.5:
+
dependencies:
+
ansi-styles: 3.2.1
+
chalk: 2.4.2
+
cross-spawn: 6.0.6
+
memorystream: 0.3.1
+
minimatch: 3.1.2
+
pidtree: 0.3.1
+
read-pkg: 3.0.0
+
shell-quote: 1.8.2
+
string.prototype.padend: 3.1.6
+
+
npm-run-path@5.3.0:
+
dependencies:
+
path-key: 4.0.0
+
+
object-assign@4.1.1: {}
+
+
object-inspect@1.13.4: {}
+
+
object-keys@1.1.1: {}
+
+
object.assign@4.1.7:
+
dependencies:
+
call-bind: 1.0.8
+
call-bound: 1.0.4
+
define-properties: 1.2.1
+
es-object-atoms: 1.1.1
+
has-symbols: 1.1.0
+
object-keys: 1.1.1
+
+
once@1.4.0:
+
dependencies:
+
wrappy: 1.0.2
+
+
onetime@5.1.2:
+
dependencies:
+
mimic-fn: 2.1.0
+
+
onetime@6.0.0:
+
dependencies:
+
mimic-fn: 4.0.0
+
+
opencollective-postinstall@2.0.3: {}
+
+
optionator@0.9.4:
+
dependencies:
+
deep-is: 0.1.4
+
fast-levenshtein: 2.0.6
+
levn: 0.4.1
+
prelude-ls: 1.2.1
+
type-check: 0.4.0
+
word-wrap: 1.2.5
+
+
outdent@0.5.0: {}
+
+
own-keys@1.0.1:
+
dependencies:
+
get-intrinsic: 1.3.0
+
object-keys: 1.1.1
+
safe-push-apply: 1.0.0
+
+
p-filter@2.1.0:
+
dependencies:
+
p-map: 2.1.0
+
+
p-limit@2.3.0:
+
dependencies:
+
p-try: 2.2.0
+
+
p-limit@3.1.0:
+
dependencies:
+
yocto-queue: 0.1.0
+
+
p-limit@5.0.0:
+
dependencies:
+
yocto-queue: 1.1.1
+
+
p-locate@4.1.0:
+
dependencies:
+
p-limit: 2.3.0
+
+
p-locate@5.0.0:
+
dependencies:
+
p-limit: 3.1.0
+
+
p-map@2.1.0: {}
+
+
p-try@2.2.0: {}
+
+
package-json-from-dist@1.0.1: {}
+
+
package-manager-detector@0.2.11:
+
dependencies:
+
quansync: 0.2.8
+
+
parent-module@1.0.1:
+
dependencies:
+
callsites: 3.1.0
+
+
parse-json@4.0.0:
+
dependencies:
+
error-ex: 1.3.2
+
json-parse-better-errors: 1.0.2
+
+
parse-json@5.2.0:
+
dependencies:
+
'@babel/code-frame': 7.26.2
+
error-ex: 1.3.2
+
json-parse-even-better-errors: 2.3.1
+
lines-and-columns: 1.2.4
+
+
path-exists@4.0.0: {}
+
+
path-is-absolute@1.0.1: {}
+
+
path-key@2.0.1: {}
+
+
path-key@3.1.1: {}
+
+
path-key@4.0.0: {}
+
+
path-parse@1.0.7: {}
+
+
path-scurry@1.11.1:
+
dependencies:
+
lru-cache: 10.4.3
+
minipass: 7.1.2
+
+
path-type@3.0.0:
+
dependencies:
+
pify: 3.0.0
+
+
path-type@4.0.0: {}
+
+
pathe@1.1.2: {}
+
+
pathe@2.0.3: {}
+
+
pathval@1.1.1: {}
+
+
picocolors@1.1.1: {}
+
+
picomatch@2.3.1: {}
+
+
picomatch@4.0.2: {}
+
+
pidtree@0.3.1: {}
+
+
pidtree@0.6.0: {}
+
+
pify@3.0.0: {}
+
+
pify@4.0.1: {}
+
+
pirates@4.0.6: {}
+
+
pkg-dir@5.0.0:
+
dependencies:
+
find-up: 5.0.0
+
+
pkg-types@1.3.1:
+
dependencies:
+
confbox: 0.1.8
+
mlly: 1.7.4
+
pathe: 2.0.3
+
+
please-upgrade-node@3.2.0:
+
dependencies:
+
semver-compare: 1.0.0
+
+
possible-typed-array-names@1.1.0: {}
+
+
postcss@8.5.3:
+
dependencies:
+
nanoid: 3.3.8
+
picocolors: 1.1.1
+
source-map-js: 1.2.1
+
+
prelude-ls@1.2.1: {}
+
+
prettier-linter-helpers@1.0.0:
+
dependencies:
+
fast-diff: 1.3.0
+
+
prettier@2.8.8: {}
+
+
pretty-format@29.7.0:
+
dependencies:
+
'@jest/schemas': 29.6.3
+
ansi-styles: 5.2.0
+
react-is: 18.3.1
+
+
punycode@2.3.1: {}
+
+
quansync@0.2.8: {}
+
+
queue-microtask@1.2.3: {}
+
+
react-is@18.3.1: {}
+
+
read-pkg@3.0.0:
+
dependencies:
+
load-json-file: 4.0.0
+
normalize-package-data: 2.5.0
+
path-type: 3.0.0
+
+
read-yaml-file@1.1.0:
+
dependencies:
+
graceful-fs: 4.2.11
+
js-yaml: 3.14.1
+
pify: 4.0.1
+
strip-bom: 3.0.0
+
+
rechoir@0.6.2:
+
dependencies:
+
resolve: 1.22.10
+
+
reflect.getprototypeof@1.0.10:
+
dependencies:
+
call-bind: 1.0.8
+
define-properties: 1.2.1
+
es-abstract: 1.23.9
+
es-errors: 1.3.0
+
es-object-atoms: 1.1.1
+
get-intrinsic: 1.3.0
+
get-proto: 1.0.1
+
which-builtin-type: 1.2.1
+
+
regenerate-unicode-properties@8.2.0:
+
dependencies:
+
regenerate: 1.4.2
+
+
regenerate@1.4.2: {}
+
+
regenerator-runtime@0.14.1: {}
+
+
regexp.prototype.flags@1.5.4:
+
dependencies:
+
call-bind: 1.0.8
+
define-properties: 1.2.1
+
es-errors: 1.3.0
+
get-proto: 1.0.1
+
gopd: 1.2.0
+
set-function-name: 2.0.2
+
+
regexpu-core@4.5.4:
+
dependencies:
+
regenerate: 1.4.2
+
regenerate-unicode-properties: 8.2.0
+
regjsgen: 0.5.2
+
regjsparser: 0.6.9
+
unicode-match-property-ecmascript: 1.0.4
+
unicode-match-property-value-ecmascript: 1.2.0
+
+
regjsgen@0.5.2: {}
+
+
regjsparser@0.6.9:
+
dependencies:
+
jsesc: 0.5.0
+
+
resolve-from@4.0.0: {}
+
+
resolve-from@5.0.0: {}
+
+
resolve@1.19.0:
+
dependencies:
+
is-core-module: 2.16.1
+
path-parse: 1.0.7
+
+
resolve@1.22.10:
+
dependencies:
+
is-core-module: 2.16.1
+
path-parse: 1.0.7
+
supports-preserve-symlinks-flag: 1.0.0
+
+
restore-cursor@4.0.0:
+
dependencies:
+
onetime: 5.1.2
+
signal-exit: 3.0.7
+
+
reusify@1.1.0: {}
+
+
rfdc@1.4.1: {}
+
+
rimraf@3.0.2:
+
dependencies:
+
glob: 7.2.3
+
+
rollup-plugin-cjs-check@1.0.3(rollup@3.29.5):
+
dependencies:
+
'@rollup/pluginutils': 5.1.4(rollup@3.29.5)
+
cjs-module-lexer: 1.4.3
+
rollup: 3.29.5
+
+
rollup-plugin-dts@5.3.1(rollup@3.29.5)(typescript@4.9.5):
+
dependencies:
+
magic-string: 0.30.17
+
rollup: 3.29.5
+
typescript: 4.9.5
+
optionalDependencies:
+
'@babel/code-frame': 7.26.2
+
+
rollup@3.29.5:
+
optionalDependencies:
+
fsevents: 2.3.3
+
+
rollup@4.34.9:
+
dependencies:
+
'@types/estree': 1.0.6
+
optionalDependencies:
+
'@rollup/rollup-android-arm-eabi': 4.34.9
+
'@rollup/rollup-android-arm64': 4.34.9
+
'@rollup/rollup-darwin-arm64': 4.34.9
+
'@rollup/rollup-darwin-x64': 4.34.9
+
'@rollup/rollup-freebsd-arm64': 4.34.9
+
'@rollup/rollup-freebsd-x64': 4.34.9
+
'@rollup/rollup-linux-arm-gnueabihf': 4.34.9
+
'@rollup/rollup-linux-arm-musleabihf': 4.34.9
+
'@rollup/rollup-linux-arm64-gnu': 4.34.9
+
'@rollup/rollup-linux-arm64-musl': 4.34.9
+
'@rollup/rollup-linux-loongarch64-gnu': 4.34.9
+
'@rollup/rollup-linux-powerpc64le-gnu': 4.34.9
+
'@rollup/rollup-linux-riscv64-gnu': 4.34.9
+
'@rollup/rollup-linux-s390x-gnu': 4.34.9
+
'@rollup/rollup-linux-x64-gnu': 4.34.9
+
'@rollup/rollup-linux-x64-musl': 4.34.9
+
'@rollup/rollup-win32-arm64-msvc': 4.34.9
+
'@rollup/rollup-win32-ia32-msvc': 4.34.9
+
'@rollup/rollup-win32-x64-msvc': 4.34.9
+
fsevents: 2.3.3
+
+
run-parallel@1.2.0:
+
dependencies:
+
queue-microtask: 1.2.3
+
+
safe-array-concat@1.1.3:
+
dependencies:
+
call-bind: 1.0.8
+
call-bound: 1.0.4
+
get-intrinsic: 1.3.0
+
has-symbols: 1.1.0
+
isarray: 2.0.5
+
+
safe-push-apply@1.0.0:
+
dependencies:
+
es-errors: 1.3.0
+
isarray: 2.0.5
+
+
safe-regex-test@1.1.0:
+
dependencies:
+
call-bound: 1.0.4
+
es-errors: 1.3.0
+
is-regex: 1.2.1
+
+
safer-buffer@2.1.2: {}
+
+
semver-compare@1.0.0: {}
+
+
semver-regex@3.1.4: {}
+
+
semver@5.7.2: {}
+
+
semver@7.7.1: {}
+
+
set-function-length@1.2.2:
+
dependencies:
+
define-data-property: 1.1.4
+
es-errors: 1.3.0
+
function-bind: 1.1.2
+
get-intrinsic: 1.3.0
+
gopd: 1.2.0
+
has-property-descriptors: 1.0.2
+
+
set-function-name@2.0.2:
+
dependencies:
+
define-data-property: 1.1.4
+
es-errors: 1.3.0
+
functions-have-names: 1.2.3
+
has-property-descriptors: 1.0.2
+
+
set-proto@1.0.0:
+
dependencies:
+
dunder-proto: 1.0.1
+
es-errors: 1.3.0
+
es-object-atoms: 1.1.1
+
+
shebang-command@1.2.0:
+
dependencies:
+
shebang-regex: 1.0.0
+
+
shebang-command@2.0.0:
+
dependencies:
+
shebang-regex: 3.0.0
+
+
shebang-regex@1.0.0: {}
+
+
shebang-regex@3.0.0: {}
+
+
shell-quote@1.8.2: {}
+
+
shelljs@0.8.5:
+
dependencies:
+
glob: 7.2.3
+
interpret: 1.4.0
+
rechoir: 0.6.2
+
+
side-channel-list@1.0.0:
+
dependencies:
+
es-errors: 1.3.0
+
object-inspect: 1.13.4
+
+
side-channel-map@1.0.1:
+
dependencies:
+
call-bound: 1.0.4
+
es-errors: 1.3.0
+
get-intrinsic: 1.3.0
+
object-inspect: 1.13.4
+
+
side-channel-weakmap@1.0.2:
+
dependencies:
+
call-bound: 1.0.4
+
es-errors: 1.3.0
+
get-intrinsic: 1.3.0
+
object-inspect: 1.13.4
+
side-channel-map: 1.0.1
+
+
side-channel@1.1.0:
+
dependencies:
+
es-errors: 1.3.0
+
object-inspect: 1.13.4
+
side-channel-list: 1.0.0
+
side-channel-map: 1.0.1
+
side-channel-weakmap: 1.0.2
+
+
siginfo@2.0.0: {}
+
+
signal-exit@3.0.7: {}
+
+
signal-exit@4.1.0: {}
+
+
slash@3.0.0: {}
+
+
slice-ansi@5.0.0:
+
dependencies:
+
ansi-styles: 6.2.1
+
is-fullwidth-code-point: 4.0.0
+
+
source-map-js@1.2.1: {}
+
+
source-map-support@0.5.21:
+
dependencies:
+
buffer-from: 1.1.2
+
source-map: 0.6.1
+
+
source-map@0.6.1: {}
+
+
sourcemap-codec@1.4.8: {}
+
+
spawndamnit@3.0.1:
+
dependencies:
+
cross-spawn: 7.0.6
+
signal-exit: 4.1.0
+
+
spdx-correct@3.2.0:
+
dependencies:
+
spdx-expression-parse: 3.0.1
+
spdx-license-ids: 3.0.21
+
+
spdx-exceptions@2.5.0: {}
+
+
spdx-expression-parse@3.0.1:
+
dependencies:
+
spdx-exceptions: 2.5.0
+
spdx-license-ids: 3.0.21
+
+
spdx-license-ids@3.0.21: {}
+
+
sprintf-js@1.0.3: {}
+
+
stackback@0.0.2: {}
+
+
std-env@3.8.1: {}
+
+
string-argv@0.3.2: {}
+
+
string-width@4.2.3:
+
dependencies:
+
emoji-regex: 8.0.0
+
is-fullwidth-code-point: 3.0.0
+
strip-ansi: 6.0.1
+
+
string-width@5.1.2:
+
dependencies:
+
eastasianwidth: 0.2.0
+
emoji-regex: 9.2.2
+
strip-ansi: 7.1.0
+
+
string.prototype.padend@3.1.6:
+
dependencies:
+
call-bind: 1.0.8
+
define-properties: 1.2.1
+
es-abstract: 1.23.9
+
es-object-atoms: 1.1.1
+
+
string.prototype.trim@1.2.10:
+
dependencies:
+
call-bind: 1.0.8
+
call-bound: 1.0.4
+
define-data-property: 1.1.4
+
define-properties: 1.2.1
+
es-abstract: 1.23.9
+
es-object-atoms: 1.1.1
+
has-property-descriptors: 1.0.2
+
+
string.prototype.trimend@1.0.9:
+
dependencies:
+
call-bind: 1.0.8
+
call-bound: 1.0.4
+
define-properties: 1.2.1
+
es-object-atoms: 1.1.1
+
+
string.prototype.trimstart@1.0.8:
+
dependencies:
+
call-bind: 1.0.8
+
define-properties: 1.2.1
+
es-object-atoms: 1.1.1
+
+
strip-ansi@6.0.1:
+
dependencies:
+
ansi-regex: 5.0.1
+
+
strip-ansi@7.1.0:
+
dependencies:
+
ansi-regex: 6.1.0
+
+
strip-bom@3.0.0: {}
+
+
strip-final-newline@3.0.0: {}
+
+
strip-json-comments@3.1.1: {}
+
+
strip-literal@2.1.1:
+
dependencies:
+
js-tokens: 9.0.1
+
+
sucrase@3.35.0:
+
dependencies:
+
'@jridgewell/gen-mapping': 0.3.8
+
commander: 4.1.1
+
glob: 10.4.5
+
lines-and-columns: 1.2.4
+
mz: 2.7.0
+
pirates: 4.0.6
+
ts-interface-checker: 0.1.13
+
+
supports-color@5.5.0:
+
dependencies:
+
has-flag: 3.0.0
+
+
supports-color@7.2.0:
+
dependencies:
+
has-flag: 4.0.0
+
+
supports-preserve-symlinks-flag@1.0.0: {}
+
+
term-size@2.2.1: {}
+
+
terser@5.39.0:
+
dependencies:
+
'@jridgewell/source-map': 0.3.6
+
acorn: 8.14.0
+
commander: 2.20.3
+
source-map-support: 0.5.21
+
+
text-table@0.2.0: {}
+
+
thenify-all@1.6.0:
+
dependencies:
+
thenify: 3.3.1
+
+
thenify@3.3.1:
+
dependencies:
+
any-promise: 1.3.0
+
+
tinybench@2.9.0: {}
+
+
tinypool@0.8.4: {}
+
+
tinyspy@2.2.1: {}
+
+
to-regex-range@5.0.1:
+
dependencies:
+
is-number: 7.0.0
+
+
tr46@0.0.3: {}
+
+
ts-interface-checker@0.1.13: {}
+
+
tslib@1.14.1: {}
+
+
tslib@2.8.1: {}
+
+
tsutils@3.21.0(typescript@4.9.5):
+
dependencies:
+
tslib: 1.14.1
+
typescript: 4.9.5
+
+
type-check@0.4.0:
+
dependencies:
+
prelude-ls: 1.2.1
+
+
type-detect@4.1.0: {}
+
+
type-fest@0.20.2: {}
+
+
type-fest@1.4.0: {}
+
+
typed-array-buffer@1.0.3:
+
dependencies:
+
call-bound: 1.0.4
+
es-errors: 1.3.0
+
is-typed-array: 1.1.15
+
+
typed-array-byte-length@1.0.3:
+
dependencies:
+
call-bind: 1.0.8
+
for-each: 0.3.5
+
gopd: 1.2.0
+
has-proto: 1.2.0
+
is-typed-array: 1.1.15
+
+
typed-array-byte-offset@1.0.4:
+
dependencies:
+
available-typed-arrays: 1.0.7
+
call-bind: 1.0.8
+
for-each: 0.3.5
+
gopd: 1.2.0
+
has-proto: 1.2.0
+
is-typed-array: 1.1.15
+
reflect.getprototypeof: 1.0.10
+
+
typed-array-length@1.0.7:
+
dependencies:
+
call-bind: 1.0.8
+
for-each: 0.3.5
+
gopd: 1.2.0
+
is-typed-array: 1.1.15
+
possible-typed-array-names: 1.1.0
+
reflect.getprototypeof: 1.0.10
+
+
typescript-compiler@1.4.1-2: {}
+
+
typescript@4.4.4: {}
+
+
typescript@4.9.5: {}
+
+
ufo@1.5.4: {}
+
+
unbox-primitive@1.1.0:
+
dependencies:
+
call-bound: 1.0.4
+
has-bigints: 1.1.0
+
has-symbols: 1.1.0
+
which-boxed-primitive: 1.1.1
+
+
undici-types@6.20.0:
+
optional: true
+
+
unicode-canonical-property-names-ecmascript@1.0.4: {}
+
+
unicode-match-property-ecmascript@1.0.4:
+
dependencies:
+
unicode-canonical-property-names-ecmascript: 1.0.4
+
unicode-property-aliases-ecmascript: 1.1.0
+
+
unicode-match-property-value-ecmascript@1.2.0: {}
+
+
unicode-property-aliases-ecmascript@1.1.0: {}
+
+
universalify@0.1.2: {}
+
+
uri-js@4.4.1:
+
dependencies:
+
punycode: 2.3.1
+
+
validate-npm-package-license@3.0.4:
+
dependencies:
+
spdx-correct: 3.2.0
+
spdx-expression-parse: 3.0.1
+
+
vite-node@1.6.1(@types/node@22.13.9)(terser@5.39.0):
+
dependencies:
+
cac: 6.7.14
+
debug: 4.4.0
+
pathe: 1.1.2
+
picocolors: 1.1.1
+
vite: 5.4.14(@types/node@22.13.9)(terser@5.39.0)
+
transitivePeerDependencies:
+
- '@types/node'
+
- less
+
- lightningcss
+
- sass
+
- sass-embedded
+
- stylus
+
- sugarss
+
- supports-color
+
- terser
+
+
vite@5.4.14(@types/node@22.13.9)(terser@5.39.0):
+
dependencies:
+
esbuild: 0.21.5
+
postcss: 8.5.3
+
rollup: 4.34.9
+
optionalDependencies:
+
'@types/node': 22.13.9
+
fsevents: 2.3.3
+
terser: 5.39.0
+
+
vitest@1.6.1(@types/node@22.13.9)(terser@5.39.0):
+
dependencies:
+
'@vitest/expect': 1.6.1
+
'@vitest/runner': 1.6.1
+
'@vitest/snapshot': 1.6.1
+
'@vitest/spy': 1.6.1
+
'@vitest/utils': 1.6.1
+
acorn-walk: 8.3.4
+
chai: 4.5.0
+
debug: 4.4.0
+
execa: 8.0.1
+
local-pkg: 0.5.1
+
magic-string: 0.30.17
+
pathe: 1.1.2
+
picocolors: 1.1.1
+
std-env: 3.8.1
+
strip-literal: 2.1.1
+
tinybench: 2.9.0
+
tinypool: 0.8.4
+
vite: 5.4.14(@types/node@22.13.9)(terser@5.39.0)
+
vite-node: 1.6.1(@types/node@22.13.9)(terser@5.39.0)
+
why-is-node-running: 2.3.0
+
optionalDependencies:
+
'@types/node': 22.13.9
+
transitivePeerDependencies:
+
- less
+
- lightningcss
+
- sass
+
- sass-embedded
+
- stylus
+
- sugarss
+
- supports-color
+
- terser
+
+
webidl-conversions@3.0.1: {}
+
+
whatwg-url@5.0.0:
+
dependencies:
+
tr46: 0.0.3
+
webidl-conversions: 3.0.1
+
+
which-boxed-primitive@1.1.1:
+
dependencies:
+
is-bigint: 1.1.0
+
is-boolean-object: 1.2.2
+
is-number-object: 1.1.1
+
is-string: 1.1.1
+
is-symbol: 1.1.1
+
+
which-builtin-type@1.2.1:
+
dependencies:
+
call-bound: 1.0.4
+
function.prototype.name: 1.1.8
+
has-tostringtag: 1.0.2
+
is-async-function: 2.1.1
+
is-date-object: 1.1.0
+
is-finalizationregistry: 1.1.1
+
is-generator-function: 1.1.0
+
is-regex: 1.2.1
+
is-weakref: 1.1.1
+
isarray: 2.0.5
+
which-boxed-primitive: 1.1.1
+
which-collection: 1.0.2
+
which-typed-array: 1.1.18
+
+
which-collection@1.0.2:
+
dependencies:
+
is-map: 2.0.3
+
is-set: 2.0.3
+
is-weakmap: 2.0.2
+
is-weakset: 2.0.4
+
+
which-pm-runs@1.1.0: {}
+
+
which-typed-array@1.1.18:
+
dependencies:
+
available-typed-arrays: 1.0.7
+
call-bind: 1.0.8
+
call-bound: 1.0.4
+
for-each: 0.3.5
+
gopd: 1.2.0
+
has-tostringtag: 1.0.2
+
+
which@1.3.1:
+
dependencies:
+
isexe: 2.0.0
+
+
which@2.0.2:
+
dependencies:
+
isexe: 2.0.0
+
+
why-is-node-running@2.3.0:
+
dependencies:
+
siginfo: 2.0.0
+
stackback: 0.0.2
+
+
word-wrap@1.2.5: {}
+
+
wrap-ansi@7.0.0:
+
dependencies:
+
ansi-styles: 4.3.0
+
string-width: 4.2.3
+
strip-ansi: 6.0.1
+
+
wrap-ansi@8.1.0:
+
dependencies:
+
ansi-styles: 6.2.1
+
string-width: 5.1.2
+
strip-ansi: 7.1.0
+
+
wrappy@1.0.2: {}
+
+
yaml@1.10.2: {}
+
+
yaml@2.3.1: {}
+
+
yocto-queue@0.1.0: {}
+
+
yocto-queue@1.1.1: {}
+
+
zen-observable@0.10.0: {}
-128
rollup.config.js
···
-
import commonjs from '@rollup/plugin-commonjs';
-
import resolve from '@rollup/plugin-node-resolve';
-
import typescript from '@rollup/plugin-typescript';
-
import buble from '@rollup/plugin-buble';
-
import { terser } from 'rollup-plugin-terser';
-
-
import flowTypings from './scripts/flow-typings-plugin';
-
-
const plugins = [
-
resolve({
-
extensions: ['.mjs', '.js', '.ts'],
-
mainFields: ['module', 'jsnext', 'main'],
-
preferBuiltins: false,
-
browser: true,
-
}),
-
-
commonjs({
-
ignoreGlobal: true,
-
include: /\/node_modules\//,
-
extensions: ['.mjs', '.js', '.ts'],
-
}),
-
-
typescript({
-
typescript: require('typescript'),
-
exclude: ['src/**/*.test.ts', '**/__tests__/*'],
-
compilerOptions: {
-
sourceMap: true,
-
sourceRoot: './',
-
noEmit: false,
-
declaration: true,
-
declarationDir: './dist/types/',
-
target: 'esnext',
-
},
-
}),
-
-
flowTypings(),
-
-
buble({
-
transforms: {
-
unicodeRegExp: false,
-
defaultParameter: false,
-
dangerousForOf: true,
-
dangerousTaggedTemplateString: true,
-
destructuring: false,
-
asyncAwait: false,
-
arrow: false,
-
classes: false,
-
computedProperty: false,
-
conciseMethodProperty: false,
-
templateString: false,
-
objectRestSpread: false,
-
parameterDestructuring: false,
-
spreadRest: false,
-
},
-
exclude: 'node_modules/**',
-
}),
-
-
terser({
-
warnings: true,
-
ecma: 2015,
-
keep_fnames: true,
-
ie8: false,
-
compress: {
-
pure_getters: true,
-
toplevel: true,
-
booleans_as_integers: false,
-
keep_fnames: true,
-
keep_fargs: true,
-
if_return: false,
-
ie8: false,
-
sequences: false,
-
loops: false,
-
conditionals: false,
-
join_vars: false,
-
},
-
mangle: {
-
module: true,
-
keep_fnames: true,
-
},
-
output: {
-
beautify: true,
-
braces: true,
-
indent_level: 2,
-
},
-
}),
-
];
-
-
const output = format => {
-
const extension = format === 'esm' ? '.mjs' : '.js';
-
return {
-
chunkFileNames: '[hash]' + extension,
-
entryFileNames: '[name]' + extension,
-
dir: './dist',
-
exports: 'named',
-
sourcemap: true,
-
indent: false,
-
freeze: false,
-
strict: false,
-
format,
-
// NOTE: All below settings are important for cjs-module-lexer to detect the export
-
// When this changes (and terser mangles the output) this will interfere with Node.js ESM intercompatibility
-
esModule: format !== 'esm',
-
externalLiveBindings: format !== 'esm',
-
generatedCode: {
-
preset: 'es5',
-
reservedNamesAsProps: false,
-
objectShorthand: false,
-
constBindings: false,
-
},
-
};
-
};
-
-
const config = {
-
input: {
-
wonka: './src/index.ts',
-
},
-
onwarn: () => {},
-
external: () => false,
-
plugins,
-
treeshake: {
-
unknownGlobalSideEffects: false,
-
tryCatchDeoptimization: false,
-
moduleSideEffects: false,
-
},
-
output: [output('esm'), output('cjs')],
-
};
-
-
export default config;
+125
scripts/changelog.js
···
+
const { config } = require('dotenv');
+
const { getInfo } = require('@changesets/get-github-info');
+
+
config();
+
+
const REPO = '0no-co/wonka';
+
const SEE_LINE = /^See:\s*(.*)/i;
+
const TRAILING_CHAR = /[.;:]$/g;
+
const listFormatter = new Intl.ListFormat('en-US');
+
+
const getSummaryLines = cs => {
+
let lines = cs.summary.trim().split(/\r?\n/);
+
if (!lines.some(line => /```/.test(line))) {
+
lines = lines.map(l => l.trim()).filter(Boolean);
+
const size = lines.length;
+
if (size > 0) {
+
lines[size - 1] = lines[size - 1].replace(TRAILING_CHAR, '');
+
}
+
}
+
return lines;
+
};
+
+
/** Creates a "(See X)" string from a template */
+
const templateSeeRef = links => {
+
const humanReadableLinks = links.filter(Boolean).map(link => {
+
if (typeof link === 'string') return link;
+
return link.pull || link.commit;
+
});
+
+
const size = humanReadableLinks.length;
+
if (size === 0) return '';
+
+
const str = listFormatter.format(humanReadableLinks);
+
return `(See ${str})`;
+
};
+
+
const changelogFunctions = {
+
getDependencyReleaseLine: async (changesets, dependenciesUpdated) => {
+
if (dependenciesUpdated.length === 0) return '';
+
+
const dependenciesLinks = await Promise.all(
+
changesets.map(async cs => {
+
if (!cs.commit) return undefined;
+
+
const lines = getSummaryLines(cs);
+
const prLine = lines.find(line => SEE_LINE.test(line));
+
if (prLine) {
+
const match = prLine.match(SEE_LINE);
+
return (match && match[1].trim()) || undefined;
+
}
+
+
const { links } = await getInfo({
+
repo: REPO,
+
commit: cs.commit,
+
});
+
+
return links;
+
})
+
);
+
+
let changesetLink = '- Updated dependencies';
+
+
const seeRef = templateSeeRef(dependenciesLinks);
+
if (seeRef) changesetLink += ` ${seeRef}`;
+
+
const detailsLinks = dependenciesUpdated.map(dep => {
+
return ` - ${dep.name}@${dep.newVersion}`;
+
});
+
+
return [changesetLink, ...detailsLinks].join('\n');
+
},
+
getReleaseLine: async (changeset, type) => {
+
let pull, commit, user;
+
+
const lines = getSummaryLines(changeset);
+
const prLineIndex = lines.findIndex(line => SEE_LINE.test(line));
+
if (prLineIndex > -1) {
+
const match = lines[prLineIndex].match(SEE_LINE);
+
pull = (match && match[1].trim()) || undefined;
+
lines.splice(prLineIndex, 1);
+
}
+
+
const [firstLine, ...futureLines] = lines;
+
+
if (changeset.commit && !pull) {
+
const { links } = await getInfo({
+
repo: REPO,
+
commit: changeset.commit,
+
});
+
+
pull = links.pull || undefined;
+
commit = links.commit || undefined;
+
user = links.user || undefined;
+
}
+
+
let annotation = '';
+
if (type === 'patch' && /^\s*fix/i.test(firstLine)) {
+
annotation = '⚠️ ';
+
}
+
+
let str = `- ${annotation}${firstLine}`;
+
if (futureLines.length > 0) {
+
str += `\n${futureLines.map(l => ` ${l}`).join('\n')}`;
+
}
+
+
const endsWithParagraph = /(?<=(?:[!;?.]|```) *)$/g;
+
if (user && !endsWithParagraph) {
+
str += `, by ${user}`;
+
} else {
+
str += `\nSubmitted by ${user}`;
+
}
+
+
if (pull || commit) {
+
const seeRef = templateSeeRef([pull || commit]);
+
if (seeRef) str += ` ${seeRef}`;
+
}
+
+
return str;
+
},
+
};
+
+
module.exports = {
+
...changelogFunctions,
+
default: changelogFunctions,
+
};
+2 -1
scripts/eslint-preset.js
···
},
},
extends: ['prettier'],
-
plugins: ['prettier'],
+
plugins: ['prettier', 'tsdoc'],
ignorePatterns: ['node_modules/', 'dist/', 'coverage/', 'perf/'],
rules: {
'sort-keys': 'off',
···
'@typescript-eslint/no-empty-function': 'off',
'@typescript-eslint/no-unused-vars': 'off',
'prefer-rest-params': 'off',
+
'tsdoc/syntax': 'error',
},
},
],
-24
scripts/flow-typings-plugin.js
···
-
import { resolve, basename, dirname, join } from 'path';
-
import { writeFileSync } from 'fs';
-
import { sync as glob } from 'glob';
-
import { compiler, beautify } from 'flowgen';
-
-
function flowTypings() {
-
return {
-
name: 'flow-typings',
-
async writeBundle() {
-
const cwd = process.cwd();
-
for (const file of glob('dist/types/**/*.d.ts')) {
-
const fullpath = resolve(cwd, file);
-
const flowdef = beautify(compiler.compileDefinitionFile(fullpath));
-
const name = basename(fullpath, '.d.ts');
-
const filepath = dirname(fullpath);
-
const newpath = join(filepath, name + '.js.flow');
-
const definition = flowdef.replace(/import/g, 'import type');
-
writeFileSync(newpath, '// @flow\n\n' + definition);
-
}
-
},
-
};
-
}
-
-
export default flowTypings;
+32
scripts/flow-typings-plugin.mjs
···
+
import { compiler, beautify } from 'flowgen';
+
+
function flowTypings() {
+
return {
+
name: 'flow-typings',
+
async renderChunk(code, chunk) {
+
if (chunk.fileName.endsWith('d.ts')) {
+
// NOTE: Computed property names will be omitted
+
code = code.replace(/\[Symbol\.\w+\][?()]*:(?:.*);\n?/g, '');
+
+
let flowdef = compiler.compileDefinitionString(code, {
+
jsdoc: false,
+
});
+
+
flowdef = beautify(flowdef);
+
flowdef = flowdef.replace(/import/g, 'import type');
+
flowdef = `// @flow\n\n${flowdef}`;
+
+
this.emitFile({
+
type: 'asset',
+
name: chunk.name,
+
fileName: `${chunk.name}.js.flow`,
+
source: flowdef,
+
});
+
}
+
+
return null;
+
},
+
};
+
}
+
+
export default flowTypings;
+18
scripts/prepare.js
···
+
const path = require('path');
+
const fs = require('fs');
+
+
const hookSource = path.resolve(__dirname, '../node_modules/husky-v4/sh/husky.sh');
+
const hook = path.resolve(__dirname, '../.git/hooks/husky.sh');
+
const localHook = path.resolve(__dirname, '../.git/hooks/husky.local.sh');
+
const gitConfig = path.resolve(__dirname, '../.git/config');
+
+
let script = fs.readFileSync(hookSource, { encoding: 'utf-8' });
+
script = script.replace(`$(basename "$0")`, `$(basename "$0" .sh)`);
+
+
let config = fs.readFileSync(gitConfig, { encoding: 'utf-8' });
+
config = config.replace(/\s*hooksPath\s*=\s*\.husky\n?/g, '\n');
+
+
fs.writeFileSync(hook, script);
+
fs.writeFileSync(gitConfig, config);
+
+
fs.writeFileSync(localHook, 'packageManager=yarn\n' + 'cd "."\n');
+179
scripts/rollup.config.mjs
···
+
import commonjs from '@rollup/plugin-commonjs';
+
import resolve from '@rollup/plugin-node-resolve';
+
import sucrase from '@rollup/plugin-sucrase';
+
import buble from '@rollup/plugin-buble';
+
import terser from '@rollup/plugin-terser';
+
import cjsCheck from 'rollup-plugin-cjs-check';
+
import dts from 'rollup-plugin-dts';
+
+
import flowTypings from './flow-typings-plugin.mjs';
+
import * as types from '../src/types.mjs';
+
+
const minify = terser({
+
warnings: true,
+
ecma: 2015,
+
keep_fnames: true,
+
ie8: false,
+
compress: {
+
pure_getters: true,
+
toplevel: true,
+
booleans_as_integers: false,
+
keep_fnames: true,
+
keep_fargs: true,
+
if_return: false,
+
ie8: false,
+
sequences: false,
+
loops: false,
+
conditionals: false,
+
join_vars: false,
+
},
+
mangle: {
+
module: true,
+
keep_fnames: true,
+
},
+
output: {
+
beautify: true,
+
braces: true,
+
indent_level: 2,
+
},
+
});
+
+
const commonPlugins = [
+
resolve({
+
extensions: ['.mjs', '.js', '.ts'],
+
mainFields: ['module', 'jsnext', 'main'],
+
preferBuiltins: false,
+
browser: true,
+
}),
+
+
commonjs({
+
ignoreGlobal: true,
+
include: /\/node_modules\//,
+
extensions: ['.mjs', '.js', '.ts'],
+
}),
+
+
sucrase({
+
exclude: ['node_modules/**'],
+
transforms: ['typescript']
+
}),
+
];
+
+
const jsPlugins = [
+
...commonPlugins,
+
cjsCheck(),
+
+
buble({
+
transforms: {
+
unicodeRegExp: false,
+
defaultParameter: false,
+
dangerousForOf: true,
+
dangerousTaggedTemplateString: true,
+
destructuring: false,
+
asyncAwait: false,
+
arrow: false,
+
classes: false,
+
computedProperty: false,
+
conciseMethodProperty: false,
+
templateString: false,
+
objectRestSpread: false,
+
parameterDestructuring: false,
+
spreadRest: false,
+
},
+
exclude: 'node_modules/**',
+
}),
+
];
+
+
const dtsPlugins = [
+
...commonPlugins,
+
dts(),
+
flowTypings(),
+
];
+
+
const output = format => {
+
const extension = format === 'esm' ? '.mjs' : '.js';
+
return {
+
chunkFileNames: '[hash]' + extension,
+
entryFileNames: '[name]' + extension,
+
dir: './dist',
+
exports: 'named',
+
sourcemap: true,
+
sourcemapExcludeSources: true,
+
indent: false,
+
freeze: false,
+
strict: false,
+
format,
+
// NOTE: All below settings are important for cjs-module-lexer to detect the export
+
// When this changes (and terser mangles the output) this will interfere with Node.js ESM intercompatibility
+
esModule: format !== 'esm',
+
externalLiveBindings: format !== 'esm',
+
generatedCode: {
+
preset: 'es5',
+
reservedNamesAsProps: false,
+
objectShorthand: false,
+
constBindings: false,
+
},
+
plugins: [
+
{
+
renderChunk(code, _chunk) {
+
const kinds = Object.keys(types);
+
const members = Object.values(types)
+
.reduce((acc, item) => [...acc, ...Object.keys(item)], [])
+
const enumRe = new RegExp(`(${kinds.join('|')})[.](${members.join('|')})`, 'g')
+
return code.replace(enumRe, (match, kind, member) => {
+
const value = (types[kind] && types[kind][member]);
+
return value != null ? '' + value : match;
+
});
+
},
+
},
+
+
minify,
+
]
+
};
+
};
+
+
const commonConfig = {
+
input: {
+
wonka: './src/index.ts',
+
},
+
onwarn: () => {},
+
external: () => false,
+
treeshake: {
+
unknownGlobalSideEffects: false,
+
tryCatchDeoptimization: false,
+
moduleSideEffects: false,
+
},
+
};
+
+
const jsConfig = {
+
...commonConfig,
+
plugins: jsPlugins,
+
output: [
+
output('esm'),
+
output('cjs'),
+
],
+
};
+
+
const dtsConfig = {
+
...commonConfig,
+
input: {
+
wonka: './src/index.ts',
+
},
+
onwarn: () => {},
+
external: () => false,
+
plugins: dtsPlugins,
+
treeshake: {
+
unknownGlobalSideEffects: false,
+
tryCatchDeoptimization: false,
+
moduleSideEffects: false,
+
},
+
output: {
+
dir: './dist',
+
entryFileNames: '[name].d.ts',
+
format: 'es'
+
},
+
};
+
+
export default [
+
jsConfig,
+
dtsConfig,
+
];
+74 -2
src/__tests__/operators.test.ts
···
passesAsyncSequence(noop);
it('prevents emissions for which a predicate fails', () => {
-
const { source, next } = sources.makeSubject();
+
const { source, next } = sources.makeSubject<boolean>();
const fn = vi.fn();
-
sinks.forEach(fn)(operators.filter(x => !!x)(source));
+
sinks.forEach((x: true) => {
+
fn(x);
+
})(operators.filter((x): x is true => !!x)(source));
next(false);
expect(fn).not.toHaveBeenCalled();
···
expect(fnB).toHaveBeenCalledWith([0]);
expect(fnA.mock.calls[0][0]).toBe(fnB.mock.calls[0][0]);
});
+
+
it('completes the source when no more sink is listening', () => {
+
let onPush = () => {};
+
+
const talkback = vi.fn();
+
const source: Source<any> = operators.share(sink => {
+
sink(start(talkback));
+
onPush = () => {
+
sink(push([0]));
+
sink(push([1]));
+
sink(SignalKind.End);
+
};
+
});
+
+
const fnA = vi.fn();
+
const fnB = vi.fn();
+
+
sinks.forEach(fnA)(operators.take(1)(source));
+
sinks.forEach(fnB)(operators.take(1)(source));
+
onPush();
+
+
expect(fnA).toHaveBeenCalledWith([0]);
+
expect(fnB).toHaveBeenCalledWith([0]);
+
expect(fnA.mock.calls[0][0]).toBe(fnB.mock.calls[0][0]);
+
expect(talkback).toHaveBeenCalledWith(TalkbackKind.Close);
+
});
});
describe('skip', () => {
···
expect(fn).toHaveBeenCalledTimes(3);
expect(fn.mock.calls[2][0]).toEqual(SignalKind.End);
});
+
+
it('emits values until a notifier emits', () => {
+
const { source: input$, next } = sources.makeSubject<number>();
+
const fn = vi.fn();
+
+
let hasClosed = false;
+
+
operators.takeUntil(sink => {
+
sink(
+
start(talkback => {
+
if (talkback === TalkbackKind.Close) {
+
hasClosed = true;
+
} else if (talkback === TalkbackKind.Pull && !hasClosed) {
+
sink(push(1));
+
}
+
})
+
);
+
})(input$)(fn);
+
+
next(1);
+
+
expect(fn).toHaveBeenCalledTimes(2);
+
expect(fn.mock.calls).toEqual([[0], [start(expect.any(Function))]]);
+
+
expect(hasClosed).toBe(true);
+
});
});
describe('takeWhile', () => {
···
operators.takeWhile((x: any) => x < 2)(source)(fn);
next(1);
next(2);
+
next(3);
expect(fn.mock.calls).toEqual([[start(expect.any(Function))], [push(1)], [SignalKind.End]]);
+
});
+
+
it('emits values while a predicate passes for all values plus an additional one', () => {
+
const { source, next } = sources.makeSubject<number>();
+
const fn = vi.fn();
+
+
operators.takeWhile((x: any) => x < 2, true)(source)(fn);
+
next(1);
+
next(2);
+
next(3);
+
+
expect(fn.mock.calls).toEqual([
+
[start(expect.any(Function))],
+
[push(1)],
+
[push(2)],
+
[SignalKind.End],
+
]);
});
});
+163
src/__tests__/sinks.test.ts
···
});
});
+
describe('toAsyncIterable', () => {
+
it('creates an async iterable mirroring the Wonka source', async () => {
+
let pulls = 0;
+
let sink: Sink<any> | null = null;
+
+
const source: Source<any> = _sink => {
+
sink = _sink;
+
sink(
+
start(signal => {
+
if (signal === TalkbackKind.Pull) pulls++;
+
})
+
);
+
};
+
+
const asyncIterator = sinks.toAsyncIterable(source)[Symbol.asyncIterator]();
+
const next$ = asyncIterator.next();
+
+
sink!(push(0));
+
expect(await next$).toEqual({ value: 0, done: false });
+
expect(pulls).toBe(1);
+
+
sink!(push(1));
+
expect(await asyncIterator.next()).toEqual({ value: 1, done: false });
+
expect(pulls).toBe(2);
+
+
sink!(SignalKind.End);
+
expect(await asyncIterator.next()).toEqual({ done: true });
+
expect(pulls).toBe(2);
+
});
+
+
it('buffers actively pushed values', async () => {
+
let pulls = 0;
+
let sink: Sink<any> | null = null;
+
+
const source: Source<any> = _sink => {
+
sink = _sink;
+
sink(
+
start(signal => {
+
if (signal === TalkbackKind.Pull) pulls++;
+
})
+
);
+
};
+
+
const asyncIterator = sinks.toAsyncIterable(source)[Symbol.asyncIterator]();
+
const next$ = asyncIterator.next();
+
+
sink!(push(0));
+
sink!(push(1));
+
sink!(SignalKind.End);
+
+
expect(pulls).toBe(1);
+
expect(await next$).toEqual({ value: 0, done: false });
+
expect(await asyncIterator.next()).toEqual({ value: 1, done: false });
+
expect(await asyncIterator.next()).toEqual({ done: true });
+
});
+
+
it('asynchronously waits for pulled values', async () => {
+
let pulls = 0;
+
let sink: Sink<any> | null = null;
+
+
const source: Source<any> = _sink => {
+
sink = _sink;
+
sink(
+
start(signal => {
+
if (signal === TalkbackKind.Pull) pulls++;
+
})
+
);
+
};
+
+
const asyncIterator = sinks.toAsyncIterable(source)[Symbol.asyncIterator]();
+
asyncIterator.next();
+
expect(pulls).toBe(1);
+
+
let resolved = false;
+
+
const promise = asyncIterator.next().then(value => {
+
resolved = true;
+
return value;
+
});
+
+
await Promise.resolve();
+
expect(resolved).toBe(false);
+
+
sink!(push(0));
+
sink!(SignalKind.End);
+
expect(await promise).toEqual({ value: 0, done: false });
+
expect(await asyncIterator.next()).toEqual({ done: true });
+
});
+
+
it('supports cancellation via return', async () => {
+
let ended = false;
+
let sink: Sink<any> | null = null;
+
+
const source: Source<any> = _sink => {
+
sink = _sink;
+
sink(
+
start(signal => {
+
if (signal === TalkbackKind.Close) ended = true;
+
})
+
);
+
};
+
+
const asyncIterator = sinks.toAsyncIterable(source)[Symbol.asyncIterator]();
+
const next$ = asyncIterator.next();
+
+
sink!(push(0));
+
expect(await next$).toEqual({ value: 0, done: false });
+
expect(await asyncIterator.return!()).toEqual({ done: true });
+
+
sink!(push(1));
+
expect(await asyncIterator.next()).toEqual({ done: true });
+
+
expect(ended).toBeTruthy();
+
});
+
+
it('supports for-await-of', async () => {
+
let pulls = 0;
+
+
const source: Source<any> = sink => {
+
sink(
+
start(signal => {
+
if (signal === TalkbackKind.Pull) {
+
sink(pulls < 3 ? push(pulls++) : SignalKind.End);
+
}
+
})
+
);
+
};
+
+
const iterable = sinks.toAsyncIterable(source);
+
const values: any[] = [];
+
for await (const value of iterable) {
+
values.push(value);
+
}
+
+
expect(values).toEqual([0, 1, 2]);
+
});
+
+
it('supports for-await-of with early break', async () => {
+
let pulls = 0;
+
let closed = false;
+
+
const source: Source<any> = sink => {
+
sink(
+
start(signal => {
+
if (signal === TalkbackKind.Pull) {
+
sink(pulls < 3 ? push(pulls++) : SignalKind.End);
+
} else {
+
closed = true;
+
}
+
})
+
);
+
};
+
+
const iterable = sinks.toAsyncIterable(source);
+
for await (const value of iterable) {
+
expect(value).toBe(0);
+
break;
+
}
+
+
expect(closed).toBe(true);
+
});
+
});
+
describe('toObservable', () => {
it('creates an Observable mirroring the Wonka source', () => {
const next = vi.fn();
+20
src/callbag.ts
···
import { Source, SignalKind } from './types';
import { push, start } from './helpers';
+
/** A definition of the Callbag type as per its specification.
+
* @see {@link https://github.com/callbag/callbag} for the Callbag specification.
+
*/
interface Callbag<I, O> {
(t: 0, d: Callbag<O, I>): void;
(t: 1, d: I): void;
(t: 2, d?: any): void;
}
+
/** Converts a Callbag to a {@link Source}.
+
* @param callbag - The {@link Callbag} object that will be converted.
+
* @returns A {@link Source} wrapping the passed Callbag.
+
*
+
* @remarks
+
* This converts a Callbag to a {@link Source}. When this Source receives a {@link Sink} and
+
* the subscription starts, internally, it'll subscribe to the passed Callbag, passing through
+
* all of its emitted values.
+
*/
export function fromCallbag<T>(callbag: Callbag<any, T>): Source<T> {
return sink => {
callbag(0, (signal: number, data: any) => {
···
};
}
+
/** Converts a {@link Source} to a Callbag.
+
* @param source - The {@link Source} that will be converted.
+
* @returns A {@link Callbag} wrapping the passed Source.
+
*
+
* @remarks
+
* This converts a {@link Source} to a {@link Callbag}. When this Callbag is subscribed to, it
+
* internally subscribes to the Wonka Source and pulls new values.
+
*/
export function toCallbag<T>(source: Source<T>): Callbag<any, T> {
return (signal: number, sink: any) => {
if (signal === 0) {
+64 -9
src/combine.ts
···
? [TypeOfSource<Head>, ...TypeOfSourceArray<Tail>]
: [];
-
export function zip<Sources extends readonly [...Source<any>[]]>(
-
sources: [...Sources]
-
): Source<TypeOfSourceArray<Sources>>;
+
/** Combines the latest values of several sources into a Source issuing either tuple or dictionary
+
* values.
+
*
+
* @param sources - Either an array or dictionary object of Sources.
+
* @returns A {@link Source} issuing a zipped value whenever any input Source updates.
+
*
+
* @remarks
+
* `zip` combines several {@link Source | Sources}. The resulting Source will issue its first value
+
* once all input Sources have at least issued one value, and will subsequently issue a new value
+
* each time any of the Sources emits a new value.
+
*
+
* Depending on whether an array or dictionary object of Sources is passed to `zip`, its emitted
+
* values will be arrays or dictionary objects of the Sources' values.
+
*
+
* @example
+
* An example of passing a dictionary object to `zip`. If an array is passed, the resulting
+
* values will output arrays of the sources' values instead.
+
*
+
* ```ts
+
* pipe(
+
* zip({
+
* x: fromValue(1),
+
* y: fromArray([2, 3]),
+
* }),
+
* subscribe(result => {
+
* // logs { x: 1, y: 2 } then { x: 1, y: 3 }
+
* console.log(result);
+
* })
+
* );
+
* ```
+
*/
+
interface zip {
+
<Sources extends readonly [...Source<any>[]]>(sources: [...Sources]): Source<
+
TypeOfSourceArray<Sources>
+
>;
-
export function zip<Sources extends { [prop: string]: Source<any> }>(
-
sources: Sources
-
): Source<{ [Property in keyof Sources]: TypeOfSource<Sources[Property]> }>;
+
<Sources extends { [prop: string]: Source<any> }>(sources: Sources): Source<{
+
[Property in keyof Sources]: TypeOfSource<Sources[Property]>;
+
}>;
+
}
-
export function zip<T>(
-
sources: Source<T>[] | Record<string, Source<T>>
-
): Source<T[] | Record<string, T>> {
+
function zip<T>(sources: Source<T>[] | Record<string, Source<T>>): Source<T[] | Record<string, T>> {
const size = Object.keys(sources).length;
return sink => {
const filled: Set<string | number> = new Set();
···
};
}
+
export { zip };
+
+
/** Combines the latest values of all passed sources into a Source issuing tuple values.
+
*
+
* @see {@link zip | `zip`} which this helper wraps and uses.
+
* @param sources - A variadic list of {@link Source} parameters.
+
* @returns A {@link Source} issuing a zipped value whenever any input Source updates.
+
*
+
* @remarks
+
* `combine` takes one or more {@link Source | Sources} as arguments. Once all input Sources have at
+
* least issued one value it will issue an array of all of the Sources' values. Subsequently, it
+
* will issue a new array value whenever any of the Sources update.
+
*
+
* @example
+
*
+
* ```ts
+
* pipe(
+
* combine(fromValue(1), fromValue(2)),
+
* subscribe(result => {
+
* console.log(result); // logs [1, 2]
+
* })
+
* );
+
* ```
+
*/
export function combine<Sources extends Source<any>[]>(
...sources: Sources
): Source<TypeOfSourceArray<Sources>> {
+50 -6
src/helpers.ts
···
import { TalkbackFn, TeardownFn, Start, Push, SignalKind } from './types';
+
/** Placeholder {@link TeardownFn | teardown functions} that's a no-op.
+
* @see {@link TeardownFn} for the definition and usage of teardowns.
+
* @internal
+
*/
export const teardownPlaceholder: TeardownFn = () => {
/*noop*/
};
+
+
/** Placeholder {@link TalkbackFn | talkback function} that's a no-op.
+
* @privateRemarks
+
* This is frequently used in the codebase as a no-op initializer value for talkback functions in
+
* the implementation of {@link Operator | Operators}. This is cheaper than initializing the
+
* variables of talkbacks to `undefined` or `null` and performing an extra check before calling
+
* them. Since the {@link Start | Start signal} is assumed to come first and carry a talkback, we can
+
* use this to our advantage and use a no-op placeholder before {@link Start} is received.
+
*
+
* @internal
+
*/
export const talkbackPlaceholder: TalkbackFn = teardownPlaceholder;
+
/** Wraps the passed {@link TalkbackFn | talkback function} in a {@link Start | Start signal}.
+
* @internal
+
*/
export function start<T>(talkback: TalkbackFn): Start<T> {
-
const box: any = [talkback];
-
box.tag = SignalKind.Start;
-
return box;
+
return {
+
tag: SignalKind.Start,
+
0: talkback,
+
} as Start<T>;
}
+
/** Wraps the passed value in a {@link Push | Push signal}.
+
* @internal
+
*/
export function push<T>(value: T): Push<T> {
-
const box: any = [value];
-
box.tag = SignalKind.Push;
-
return box;
+
return {
+
tag: SignalKind.Push,
+
0: value,
+
} as Push<T>;
}
+
+
/** Returns the well-known symbol specifying the default AsyncIterator.
+
* @internal
+
*/
+
export const asyncIteratorSymbol = (): typeof Symbol.asyncIterator =>
+
(typeof Symbol === 'function' && Symbol.asyncIterator) || ('@@asyncIterator' as any);
+
+
/** Returns the well-known symbol specifying the default ES Observable.
+
* @privateRemarks
+
* This symbol is used to mark an object as a default ES Observable. By the specification, an object
+
* that abides by the default Observable implementation must carry a method set to this well-known
+
* symbol that returns the Observable implementation. It's common for this object to be an
+
* Observable itself and return itself on this method.
+
*
+
* @see {@link https://github.com/0no-co/wonka/issues/122} for notes on the intercompatibility
+
* between Observable implementations.
+
*
+
* @internal
+
*/
+
export const observableSymbol = (): typeof Symbol.observable =>
+
(typeof Symbol === 'function' && Symbol.observable) || ('@@observable' as any);
+24 -1
src/index.ts
···
-
export * from './types';
+
/**
+
* A tiny but capable push & pull stream library for TypeScript and Flow.
+
*
+
* @remarks
+
* Wonka is a lightweight iterable and observable library and exposes a set of helpers to create
+
* streams, which are sources emitting multiple values, which allow you to create, transform, and
+
* consume event streams or iterable sets of data.
+
*
+
* It's loosely based on the Callbag spec: {@link https://github.com/callbag/callbag}
+
* @packageDocumentation
+
*/
+
+
export type {
+
TeardownFn,
+
Signal,
+
Sink,
+
Source,
+
Operator,
+
TypeOfSource,
+
Subscription,
+
Observer,
+
Subject,
+
} from './types';
+
export * from './sources';
export * from './operators';
export * from './sinks';
+145 -13
src/observable.ts
···
import { Source, SignalKind, TalkbackKind } from './types';
-
import { push, start, talkbackPlaceholder } from './helpers';
+
import { push, start, talkbackPlaceholder, observableSymbol } from './helpers';
+
+
// NOTE: This must be placed in an exported file for `rollup-plugin-dts`
+
// to include it in output typings files
+
declare global {
+
interface SymbolConstructor {
+
readonly observable: symbol;
+
}
+
}
+
/** A definition of the ES Observable Subscription type that is returned by
+
* {@link Observable.subscribe}
+
*
+
* @remarks
+
* The Subscription in ES Observables is a handle that is held while the Observable is actively
+
* streaming values. As such, it's used to indicate with {@link ObservableSubscription.closed}
+
* whether it's active, and {@link ObservableSubscription.unsubscribe} may be used to cancel the
+
* ongoing subscription and end the {@link Observable} early.
+
*
+
* @see {@link https://github.com/tc39/proposal-observable} for the ES Observable specification.
+
*/
interface ObservableSubscription {
-
closed?: boolean;
+
/** A boolean flag indicating whether the subscription is closed.
+
* @remarks
+
* When `true`, the subscription will not issue new values to the {@link ObservableObserver} and
+
* has terminated. No new values are expected.
+
*
+
* @readonly
+
*/
+
closed: boolean;
+
/** Cancels the subscription.
+
* @remarks
+
* This cancels the ongoing subscription and the {@link ObservableObserver}'s callbacks will
+
* subsequently not be called at all. The subscription will be terminated and become inactive.
+
*/
unsubscribe(): void;
}
+
/** A definition of the ES Observable Observer type that is used to receive data from an
+
* {@link Observable}.
+
*
+
* @remarks
+
* The Observer in ES Observables is supplied to {@link Observable.subscribe} to receive events from
+
* an {@link Observable} as it issues them.
+
*
+
* @see {@link https://github.com/tc39/proposal-observable#observer} for the ES Observable
+
* specification of an Observer.
+
*/
interface ObservableObserver<T> {
+
/** Callback for the Observable issuing new values.
+
* @param value - The value that the {@link Observable} is sending.
+
*/
next(value: T): void;
-
error(error: any): void;
-
complete(): void;
+
/** Callback for the Observable encountering an error, terminating it.
+
* @param error - The error that the {@link Observable} has encountered.
+
*/
+
error?(error: any): void;
+
/** Callback for the Observable ending, after all values have been issued. */
+
complete?(): void;
}
+
/** A looser definition of ES Observable-like types that is used for interoperability.
+
* @remarks
+
* The Observable is often used by multiple libraries supporting or creating streams to provide
+
* interoperability for push-based streams. When converting from an Observable to a {@link Source},
+
* this looser type is accepted as an input.
+
*
+
* @see {@link https://github.com/tc39/proposal-observable} for the ES Observable specification.
+
* @see {@link Observable} for the full ES Observable type.
+
*/
+
interface ObservableLike<T> {
+
/**
+
* Subscribes to new signals from an {@link Observable} via callbacks.
+
* @param observer - An object containing callbacks for the various events of an Observable.
+
* @returns Subscription handle of type {@link ObservableSubscription}.
+
*
+
* @see {@link ObservableObserver} for the callbacks in an object that are called as Observables
+
* issue events.
+
*/
+
subscribe(observer: ObservableObserver<T>): { unsubscribe(): void };
+
+
/** The well-known symbol specifying the default ES Observable for an object. */
+
[Symbol.observable]?(): Observable<T>;
+
}
+
+
/** An ES Observable type that is a de-facto standard for push-based data sources across the JS
+
* ecosystem.
+
*
+
* @remarks
+
* The Observable is often used by multiple libraries supporting or creating streams to provide
+
* interoperability for push-based streams. As Wonka's {@link Source | Sources} are similar in
+
* functionality to Observables, it provides utilities to cleanly convert to and from Observables.
+
*
+
* @see {@link https://github.com/tc39/proposal-observable} for the ES Observable specification.
+
*/
interface Observable<T> {
+
/** Subscribes to new signals from an {@link Observable} via callbacks.
+
* @param observer - An object containing callbacks for the various events of an Observable.
+
* @returns Subscription handle of type {@link ObservableSubscription}.
+
*
+
* @see {@link ObservableObserver} for the callbacks in an object that are called as Observables
+
* issue events.
+
*/
subscribe(observer: ObservableObserver<T>): ObservableSubscription;
+
+
/** Subscribes to new signals from an {@link Observable} via callbacks.
+
* @param onNext - Callback for the Observable issuing new values.
+
* @param onError - Callback for the Observable encountering an error, terminating it.
+
* @param onComplete - Callback for the Observable ending, after all values have been issued.
+
* @returns Subscription handle of type {@link ObservableSubscription}.
+
*/
+
subscribe(
+
onNext: (value: T) => any,
+
onError?: (error: any) => any,
+
onComplete?: () => any
+
): ObservableSubscription;
+
+
/** The well-known symbol specifying the default ES Observable for an object. */
+
[Symbol.observable](): Observable<T>;
}
-
const observableSymbol = (): symbol | string => Symbol.observable || '@@observable';
-
-
export function fromObservable<T>(input: Observable<T>): Source<T> {
-
input = input[observableSymbol()] ? (input as any)[observableSymbol()]() : input;
+
/** Converts an ES Observable to a {@link Source}.
+
* @param input - The {@link ObservableLike} object that will be converted.
+
* @returns A {@link Source} wrapping the passed Observable.
+
*
+
* @remarks
+
* This converts an ES Observable to a {@link Source}. When this Source receives a {@link Sink} and
+
* the subscription starts, internally, it'll subscribe to the passed Observable, passing through
+
* all of the Observable's values. As such, this utility provides intercompatibility converting from
+
* standard Observables to Wonka Sources.
+
*
+
* @throws
+
* When the passed ES Observable throws, the error is simply re-thrown as {@link Source} does
+
* not support or expect errors to be handled by streams.
+
*/
+
export function fromObservable<T>(input: ObservableLike<T>): Source<T> {
return sink => {
-
const subscription = input.subscribe({
+
const subscription = (
+
input[observableSymbol()] ? input[observableSymbol()]!() : input
+
).subscribe({
next(value: T) {
sink(push(value));
},
complete() {
sink(SignalKind.End);
},
-
error() {
-
/*noop*/
+
error(error) {
+
throw error;
},
});
sink(
···
};
}
+
/** Converts a {@link Source} to an ES Observable.
+
* @param source - The {@link Source} that will be converted.
+
* @returns An {@link Observable} wrapping the passed Source.
+
*
+
* @remarks
+
* This converts a {@link Source} to an {@link Observable}. When this Observable is subscribed to, it
+
* internally subscribes to the Wonka Source and pulls new values. As such, this utility provides
+
* intercompatibility converting from Wonka Sources to standard ES Observables.
+
*/
export function toObservable<T>(source: Source<T>): Observable<T> {
return {
-
subscribe(observer: ObservableObserver<T>) {
+
subscribe(
+
next: ObservableObserver<T> | ((value: T) => any),
+
error?: (error: any) => any | undefined,
+
complete?: () => any | undefined
+
) {
+
const observer: ObservableObserver<T> =
+
typeof next == 'object' ? next : { next, error, complete };
let talkback = talkbackPlaceholder;
let ended = false;
source(signal => {
···
/*noop*/
} else if (signal === SignalKind.End) {
ended = true;
-
observer.complete();
+
if (observer.complete) observer.complete();
} else if (signal.tag === SignalKind.Start) {
(talkback = signal[0])(TalkbackKind.Pull);
} else {
+613 -4
src/operators.ts
···
-
import { Source, Sink, Operator, SignalKind, TalkbackKind, TalkbackFn } from './types';
+
import { Push, Source, Sink, Operator, SignalKind, TalkbackKind, TalkbackFn } from './types';
import { push, start, talkbackPlaceholder } from './helpers';
import { fromArray } from './sources';
const identity = <T>(x: T): T => x;
+
/** Buffers values and emits the array of bufferd values each time a `notifier` Source emits.
+
*
+
* @param notifier - A {@link Source} that releases the current buffer.
+
* @returns An {@link Operator}.
+
*
+
* @remarks
+
* `buffer` will buffer values from the input {@link Source}. When the passed `notifier` Source
+
* emits, it will emit an array of all buffered values.
+
*
+
* This can be used to group values over time. A buffer will only be emitted when it contains any
+
* values.
+
*
+
* @example
+
* ```ts
+
* pipe(
+
* interval(50),
+
* buffer(interval(100)),
+
* subscribe(x => {
+
* console.log(text); // logs: [0], [1, 2], [3, 4]...
+
* })
+
* );
+
* ```
+
*/
export function buffer<S, T>(notifier: Source<S>): Operator<T, T[]> {
return source => sink => {
let buffer: T[] = [];
···
};
}
+
/** Emits in order from the Sources returned by a mapping function per value of the Source.
+
*
+
* @param map - A function returning a {@link Source} per value.
+
* @returns An {@link Operator}.
+
*
+
* @remarks
+
* `concatMap` accepts a mapping function which must return a {@link Source} per value.
+
* The output {@link Source} will emit values from each Source the function returned, in order,
+
* queuing sources that aren't yet active.
+
*
+
* This can be used to issue multiple values per emission of an input {@link Source}, while keeping
+
* the order of their outputs consistent.
+
*
+
* @example
+
* ```ts
+
* pipe(
+
* fromArray([1, 2]),
+
* concatMap(x => fromArray([x, x * 2])),
+
* subscribe(x => {
+
* console.log(text); // logs: 1, 2, 2, 4
+
* })
+
* );
+
* ```
+
*/
export function concatMap<In, Out>(map: (value: In) => Source<Out>): Operator<In, Out> {
return source => sink => {
const inputQueue: In[] = [];
···
};
}
+
/** Flattens a Source emitting Sources into a single Source emitting the inner values in order.
+
*
+
* @see {@link concatMap} which this helper uses and instead accept a mapping function.
+
* @param source - An {@link Source} emitting {@link Source | Sources}.
+
* @returns A {@link Source} emitting values from the inner Sources.
+
*
+
* @remarks
+
* `concatAll` accepts a {@link Source} emitting {@link Source | Sources}.
+
* The output {@link Source} will emit values from each Source, in order, queuing sources that
+
* aren't yet active.
+
*
+
* @example
+
* ```ts
+
* pipe(
+
* fromArray([
+
* fromArray([1, 2]),
+
* fromArray([3, 4]),
+
* ]),
+
* concatAll,
+
* subscribe(x => {
+
* console.log(text); // logs: 1, 2, 3, 4
+
* })
+
* );
+
* ```
+
*/
export function concatAll<T>(source: Source<Source<T>>): Source<T> {
return concatMap<Source<T>, T>(identity)(source);
}
+
/** Emits values from the passed sources in order.
+
*
+
* @param sources - An array of {@link Source | Sources}.
+
* @returns A {@link Source} emitting values from the input Sources.
+
*
+
* @remarks
+
* `concat` accepts an array of {@link Source | Sources} and will emit values from them, starting
+
* with the first one and continuing to the next only when the prior source ended.
+
*
+
* This can be used to issue combine sources while keeping the order of their values intact.
+
*
+
* @example
+
* ```ts
+
* pipe(
+
* concat([
+
* fromArray([1, 2]),
+
* fromArray([3, 4]),
+
* ]),
+
* subscribe(x => {
+
* console.log(text); // logs: 1, 2, 3, 4
+
* })
+
* );
+
* ```
+
*/
export function concat<T>(sources: Source<T>[]): Source<T> {
return concatAll(fromArray(sources));
}
-
export function filter<T>(predicate: (value: T) => boolean): Operator<T, T> {
+
/** Filters out emitted values for which the passed predicate function returns `false`.
+
*
+
* @param predicate - A function returning a boolean per value.
+
* @returns An {@link Operator}.
+
*
+
* @remarks
+
* `filter` will omit values from the {@link Source} for which the passed `predicate` function
+
* returns `false`.
+
*
+
* @example
+
* ```ts
+
* pipe(
+
* fromArray([1, 2, 3]),
+
* filter(x => x % 2 === 0),
+
* subscribe(x => {
+
* console.log(text); // logs: 2
+
* })
+
* );
+
* ```
+
*/
+
function filter<In, Out extends In>(predicate: (value: In) => value is Out): Operator<In, Out>;
+
function filter<T>(predicate: (value: T) => boolean): Operator<T, T>;
+
function filter<In, Out>(predicate: (value: In) => boolean): Operator<In, Out> {
return source => sink => {
let talkback = talkbackPlaceholder;
source(signal => {
···
} else if (!predicate(signal[0])) {
talkback(TalkbackKind.Pull);
} else {
-
sink(signal);
+
sink(signal as Push<any>);
}
});
};
}
+
export { filter };
+
+
/** Maps emitted values using the passed mapping function.
+
*
+
* @param map - A function returning transforming the {@link Source | Source's} values.
+
* @returns An {@link Operator}.
+
*
+
* @remarks
+
* `map` accepts a transform function and calls it on each emitted value. It then emits
+
* the values returned by the transform function instead.
+
*
+
* @example
+
* ```ts
+
* pipe(
+
* fromArray([1, 2, 3]),
+
* map(x => x * 2),
+
* subscribe(x => {
+
* console.log(text); // logs: 2, 4, 6
+
* })
+
* );
+
* ```
+
*/
export function map<In, Out>(map: (value: In) => Out): Operator<In, Out> {
return source => sink =>
source(signal => {
···
});
}
+
/** Emits from the Sources returned by a mapping function per value of the Source.
+
*
+
* @param map - A function returning a {@link Source} per value.
+
* @returns An {@link Operator}.
+
*
+
* @remarks
+
* `mergeMap` accepts a mapping function which must return a {@link Source} per value.
+
* The output {@link Source} will emit values from all {@link Source | Sources} the mapping function
+
* returned.
+
*
+
* This can be used to issue multiple values per emission of an input {@link Source}, essentially
+
* multiplexing all values to multiple Sources.
+
*
+
* @example
+
* ```ts
+
* pipe(
+
* interval(50),
+
* mergeMap(x => pipe(
+
* fromValue(x),
+
* delay(100)
+
* )),
+
* subscribe(x => {
+
* console.log(text); // logs: 0, 1, 2...
+
* })
+
* );
+
* ```
+
*/
export function mergeMap<In, Out>(map: (value: In) => Source<Out>): Operator<In, Out> {
return source => sink => {
let innerTalkbacks: TalkbackFn[] = [];
···
};
}
+
/** Flattens a Source emitting Sources into a single Source emitting the inner values.
+
*
+
* @see {@link mergeMap} which this helper uses and instead accept a mapping function.
+
* @param source - An {@link Source} emitting {@link Source | Sources}.
+
* @returns A {@link Source} emitting values from the inner Sources.
+
*
+
* @remarks
+
* `mergeAll` accepts a {@link Source} which must emit {@link Source | Sources}. It will subscribe
+
* to each incoming source immediately and start passing its emitted values through.
+
*
+
* @example
+
* ```ts
+
* pipe(
+
* fromArray([
+
* interval(50),
+
* interval(100),
+
* ]),
+
* mergeAll,
+
* subscribe(x => {
+
* console.log(text); // logs: 0, 0, 1, 2, 1, 3, 4, 2
+
* })
+
* );
+
* ```
+
*/
export function mergeAll<T>(source: Source<Source<T>>): Source<T> {
return mergeMap<Source<T>, T>(identity)(source);
}
+
/** Emits values from the passed sources simultaneously.
+
*
+
* @param sources - An array of {@link Source | Sources}.
+
* @returns A {@link Source} emitting values from the input Sources.
+
*
+
* @remarks
+
* `merge` accepts an array of {@link Source | Sources} and will subscribe to all of them, passing
+
* through all their emitted values simultaneously.
+
*
+
* This can be used to interleave the values of multiple sources.
+
*
+
* @example
+
* ```ts
+
* pipe(
+
* merge([
+
* interval(50),
+
* interval(100),
+
* ]),
+
* subscribe(x => {
+
* console.log(text); // logs: 0, 0, 1, 2, 1, 3, 4, 2
+
* })
+
* );
+
* ```
+
*/
export function merge<T>(sources: Source<T>[]): Source<T> {
return mergeAll(fromArray(sources));
}
+
/** Calls the passed callback function when the Source ends or is closed.
+
*
+
* @param callback - A function that is called when the {@link Source} ends.
+
* @returns An {@link Operator}.
+
*
+
* @remarks
+
* `onEnd` accepts a callback which is called when the {@link Source} either ends
+
* or is closed.
+
*
+
* This operator can be used to add side-effects to a Source.
+
*
+
* @example
+
* ```ts
+
* pipe(
+
* fromArray([1, 2, 3]),
+
* take(1),
+
* onEnd(() => {
+
* console.log('end');
+
* }),
+
* publish
+
* );
+
* ```
+
*/
export function onEnd<T>(callback: () => void): Operator<T, T> {
return source => sink => {
let ended = false;
···
};
}
+
/** Calls the passed callback function when the Source emits a value.
+
*
+
* @param callback - A function that is called with each value the {@link Source} emits.
+
* @returns An {@link Operator}.
+
*
+
* @remarks
+
* `onPush` accepts a callback which is called for every emitted value of
+
* the {@link Source}.
+
*
+
* This operator can be used to add side-effects to a Source.
+
*
+
* @example
+
* ```ts
+
* pipe(
+
* fromArray([1, 2, 3]),
+
* onPush(value => {
+
* console.log(value); // logs: 1, 2, 3
+
* }),
+
* publish
+
* );
+
* ```
+
*/
export function onPush<T>(callback: (value: T) => void): Operator<T, T> {
return source => sink => {
let ended = false;
···
};
}
+
/** Calls the passed callback function when the Source starts.
+
*
+
* @param callback - A function that is called when the {@link Source} is started.
+
* @returns An {@link Operator}.
+
*
+
* @remarks
+
* `onPush` accepts a callback which is called for every emitted value of
+
* the {@link Source}.
+
*
+
* This operator can be used to add side-effects to a Source.
+
* Specifically, it's useful to add a side-effect for a Source that triggers only once
+
* the {@link Source} is used and started.
+
*
+
* @example
+
* ```ts
+
* pipe(
+
* fromArray([1, 2, 3]),
+
* onStart(() => {
+
* console.log('start');
+
* }),
+
* publish
+
* );
+
* ```
+
*/
export function onStart<T>(callback: () => void): Operator<T, T> {
return source => sink =>
source(signal => {
···
});
}
+
/** Emits the last value the {@link Source} emitted, whenever the notifier Source emits a value.
+
*
+
* @param notifier - A {@link Source} that triggers the last value to be emitted.
+
* @returns An {@link Operator}.
+
*
+
* @remarks
+
* `sample` will store the latest value the {@link Source} emitted. Every time the `notifier` Source
+
* emits, it will emit the latest value.
+
*
+
* This is a back pressure operator that can be used to omit values from a {@link Source} coming in
+
* too frequently.
+
*
+
* {@link Source | Sources} emitting `undefined` are undefined behaviour and these values will be
+
* ignored.
+
*
+
* @example
+
* ```ts
+
* pipe(
+
* interval(50),
+
* sample(interval(100)),
+
* subscribe(x => {
+
* console.log(text); // logs: 0, 2, 4...
+
* })
+
* );
+
* ```
+
*/
export function sample<S, T>(notifier: Source<S>): Operator<T, T> {
return source => sink => {
let sourceTalkback = talkbackPlaceholder;
···
};
}
+
/** Maps emitted values using the passed reducer function.
+
*
+
* @param reducer - A function called with the last value by the `reducer` and the emitted value.
+
* @param seed - The initial value that is passed to the `reducer`.
+
* @returns An {@link Operator}.
+
*
+
* @remarks
+
* `scan` accepts a reducer function and a seed value. The reducer will be called initially with the
+
* seed value and the first emitted value. The {@link Source} will then emit the value returned by
+
* the reducer function. Subsequently, the `reducer` is called with the last value the `reducer`
+
* returned and the emitted value.
+
*
+
* This operator is similar to `Array.prototype.reduce`, but instead is called over time and emits
+
* each value of the reducer.
+
*
+
* @example
+
* ```ts
+
* pipe(
+
* fromArray([1, 2, 3]),
+
* scan((acc, x) => acc + x, 0),
+
* subscribe(x => {
+
* console.log(text); // logs: 1, 3, 6
+
* })
+
* );
+
* ```
+
*/
export function scan<In, Out>(reducer: (acc: Out, value: In) => Out, seed: Out): Operator<In, Out> {
return source => sink => {
let acc = seed;
···
};
}
+
/** Shares one underlying subscription to the Source between all Sinks.
+
*
+
* @param source - A {@link Source} that should be shared.
+
* @returns A shared {@link Source}.
+
*
+
* @remarks
+
* `share` accepts a {@link Source} and returns one. It will emit all values as normal, however, it
+
* will share one subscription to the input source. This allows side-effects on the input
+
* {@link Source} to only be triggerd once.
+
*/
export function share<T>(source: Source<T>): Source<T> {
let sinks: Sink<T>[] = [];
let talkback = talkbackPlaceholder;
···
};
}
+
/** Omits `wait` amount of values from the Source and then runs as usual.
+
*
+
* @param wait - The number of values to be omitted.
+
* @returns An {@link Operator}.
+
*
+
* @remarks
+
* `skip` will skip `wait` number of emitted values, then issue all values as normal afterwards.
+
* This essentially skips a given number of values on the input {@link Source}.
+
*
+
* @example
+
* ```ts
+
* pipe(
+
* fromArray([1, 2, 3]),
+
* skip(2),
+
* subscribe(x => {
+
* console.log(text); // logs: 3
+
* })
+
* );
+
* ```
+
*/
export function skip<T>(wait: number): Operator<T, T> {
return source => sink => {
let talkback = talkbackPlaceholder;
···
};
}
+
/** Omits values from an input Source until a notifier Source emits a value.
+
*
+
* @param notifier - A {@link Source} that starts the operator's sent values.
+
* @returns An {@link Operator}.
+
*
+
* @remarks
+
* `skipUntil` will omit all values from the input {@link Source} until the `notifier`
+
* Source emits a value of its own. It'll then start passing values from the Source through.
+
*
+
* @example
+
* ```ts
+
* pipe(
+
* interval(50),
+
* skipUntil(interval(150)),
+
* subscribe(x => {
+
* console.log(text); // logs: 2, 3...
+
* })
+
* );
+
* ```
+
*/
export function skipUntil<S, T>(notifier: Source<S>): Operator<T, T> {
return source => sink => {
let sourceTalkback = talkbackPlaceholder;
···
};
}
+
/** Omits values from an input Source until a predicate function returns `false`.
+
*
+
* @param predicate - A function returning a boolean per value.
+
* @returns An {@link Operator}.
+
*
+
* @remarks
+
* `skipWhile` will omit all values from the input {@link Source} until the `predicate`
+
* function returns `false`. When the `predicate` function returns `false`, the Source's values will
+
* be passed through.
+
*
+
* @example
+
* ```ts
+
* pipe(
+
* fromArray([1, 2, 3]),
+
* skipWhile(x => x < 2),
+
* subscribe(x => {
+
* console.log(text); // logs: 2, 3
+
* })
+
* );
+
* ```
+
*/
export function skipWhile<T>(predicate: (value: T) => boolean): Operator<T, T> {
return source => sink => {
let talkback = talkbackPlaceholder;
···
};
}
+
/** Emits from the latest Source returned by a mapping function per value of the Source.
+
*
+
* @param map - A function returning a {@link Source} per value.
+
* @returns An {@link Operator}.
+
*
+
* @remarks
+
* `switchMap` accepts a mapping function which must return a {@link Source} per value.
+
* The output {@link Source} will emit values from the latest Source the mapping function
+
* returned. If a value is emitted while the last returned Source is still active, the prior Source
+
* will be closed.
+
*
+
* This can be used to issue multiple values per emission of an input {@link Source}, while only
+
* letting one of these sub-Sources be active at a time.
+
*
+
* @example
+
* ```ts
+
* pipe(
+
* interval(100),
+
* switchMap(() => interval(50)),
+
* subscribe(x => {
+
* console.log(text); // logs: 0, 0, 0...
+
* })
+
* );
+
* ```
+
*/
export function switchMap<In, Out>(map: (value: In) => Source<Out>): Operator<In, Out> {
return source => sink => {
let outerTalkback = talkbackPlaceholder;
···
};
}
+
/** Flattens a Source emitting Sources into a single Source emitting the inner values.
+
*
+
* @see {@link switchMap} which this helper uses and instead accept a mapping function.
+
* @param source - An {@link Source} emitting {@link Source | Sources}.
+
* @returns A {@link Source} emitting values from the inner Sources.
+
*
+
* @remarks
+
* `switchAll` accepts a {@link Source} which must emit {@link Source | Sources}. Each time it
+
* receives a {@link Source} it will close its prior subscription and subscribe to the new Source
+
* instead, passing through its values.
+
*
+
* @example
+
* ```ts
+
* pipe(
+
* interval(100),
+
* map(() => interval(50)),
+
* switchAll,
+
* subscribe(x => {
+
* console.log(text); // logs: 0, 0, 0...
+
* })
+
* );
+
* ```
+
*/
export function switchAll<T>(source: Source<Source<T>>): Source<T> {
return switchMap<Source<T>, T>(identity)(source);
}
+
/** Emits `max` values from the Source and then ends.
+
*
+
* @param max - The maximum number of values emitted.
+
* @returns An {@link Operator}.
+
*
+
* @remarks
+
* `take` will issue all values as normal until the `max` number of emitted values has been reached.
+
* It will then end and close the {@link Source}.
+
*
+
* @example
+
* ```ts
+
* pipe(
+
* fromArray([1, 2, 3]),
+
* take(2),
+
* subscribe(x => {
+
* console.log(text); // logs: 1, 2
+
* })
+
* );
+
* ```
+
*/
export function take<T>(max: number): Operator<T, T> {
return source => sink => {
let talkback = talkbackPlaceholder;
···
};
}
+
/** Buffers the `max` last values of the Source and emits them once the Source ends.
+
*
+
* @param max - The maximum number of values buffered.
+
* @returns An {@link Operator}.
+
*
+
* @remarks
+
* `takeLast` will buffer values from the input {@link Source} up until the given `max` number. It
+
* will only emit values stored in the buffer once the {@link Source} ends.
+
*
+
* All values in the buffer are emitted like the {@link fromArray | `fromArray`} source would
+
* synchronously.
+
*
+
* @example
+
* ```ts
+
* pipe(
+
* fromArray([1, 2, 3]),
+
* takeLast(1),
+
* subscribe(x => {
+
* console.log(text); // logs: 3
+
* })
+
* );
+
* ```
+
*/
export function takeLast<T>(max: number): Operator<T, T> {
return source => sink => {
const queue: T[] = [];
···
};
}
+
/** Takes values from an input Source until a notifier Source emits a value.
+
*
+
* @param notifier - A {@link Source} that stops the operator's sent values.
+
* @returns An {@link Operator}.
+
*
+
* @remarks
+
* `takeUntil` will issue all values as normal from the input {@link Source} until the `notifier`
+
* Source emits a value of its own. It'll then close the {@link Source}.
+
*
+
* @example
+
* ```ts
+
* pipe(
+
* interval(50),
+
* takeUntil(interval(150)),
+
* subscribe(x => {
+
* console.log(text); // logs: 0, 1
+
* })
+
* );
+
* ```
+
*/
export function takeUntil<S, T>(notifier: Source<S>): Operator<T, T> {
return source => sink => {
let sourceTalkback = talkbackPlaceholder;
···
(notifierTalkback = signal[0])(TalkbackKind.Pull);
} else {
ended = true;
+
notifierTalkback(TalkbackKind.Close);
sourceTalkback(TalkbackKind.Close);
sink(SignalKind.End);
}
···
};
}
-
export function takeWhile<T>(predicate: (value: T) => boolean): Operator<T, T> {
+
/** Takes values from an input Source until a predicate function returns `false`.
+
*
+
* @param predicate - A function returning a boolean per value.
+
* @param addOne - Lets an additional input value pass on.
+
* @returns An {@link Operator}.
+
*
+
* @remarks
+
* `takeWhile` will issue all values as normal from the input {@link Source} until the `predicate`
+
* function returns `false`. When the `predicate` function returns `false`, the current value is
+
* omitted and the {@link Source} is closed.
+
*
+
* If `addOne` is set to `true`, the value for which the `predicate` first returned `false` is
+
* issued and passed on as well instead of being omitted.
+
*
+
* @example
+
* ```ts
+
* pipe(
+
* fromArray([1, 2, 3]),
+
* takeWhile(x => x < 2),
+
* subscribe(x => {
+
* console.log(text); // logs: 1
+
* })
+
* );
+
* ```
+
*/
+
export function takeWhile<T>(predicate: (value: T) => boolean, addOne?: boolean): Operator<T, T> {
return source => sink => {
let talkback = talkbackPlaceholder;
let ended = false;
···
sink(signal);
} else if (!predicate(signal[0])) {
ended = true;
+
if (addOne) sink(signal);
sink(SignalKind.End);
talkback(TalkbackKind.Close);
} else {
···
};
}
+
/** Debounces a Source by omitting values until a given timeframe has passed.
+
*
+
* @param timing - A function returning a debounce time (ms) per emitted value.
+
* @returns An {@link Operator}.
+
*
+
* @remarks
+
* `debounce` accepts a mapping function that can be used to return a time (in ms) per emitted
+
* value. All emitted values issued by the {@link Source} during the returned time will be omitted
+
* until the time has passed.
+
*
+
* Debouncing means that the returned {@link Source} will wait for a minimum time of silence until a
+
* value is let through.
+
*
+
* This is a back pressure operator that can be used to omit values from a {@link Source} coming in
+
* too frequently.
+
*
+
* @example
+
* ```ts
+
* pipe(
+
* interval(50),
+
* debounce(() => 100),
+
* subscribe(x => {
+
* console.log(text); // never logs any value
+
* })
+
* );
+
* ```
+
*/
export function debounce<T>(timing: (value: T) => number): Operator<T, T> {
return source => sink => {
let id: any | void;
···
};
}
+
/** Delays each signal emitted by a Source by given time (ms).
+
*
+
* @param wait - A time (in ms) by which each {@link SignalKind | signal} is delayed.
+
* @returns An {@link Operator}.
+
*
+
* @remarks
+
* `delay` accepts a time (in ms) by which each {@link SignalKind | signal} will be delayed by.
+
* This will create a timeout per received signal and delay the emitted values accordingly.
+
*
+
* Since the operator only calls `setTimeout` per signal, it relies on the timeout implementation to
+
* be ordered. Otherwise, signals will arrive in the wrong order at the sink.
+
*/
export function delay<T>(wait: number): Operator<T, T> {
return source => sink => {
let active = 0;
···
};
}
+
/** Throttles a Source by omitting values that are emitted before a given timeout.
+
*
+
* @param timing - A function returning a throttle time (ms) per emitted value.
+
* @returns An {@link Operator}.
+
*
+
* @remarks
+
* `throttle` accepts a mapping function that can be used to return a time (in ms) per emitted
+
* value. During the returned timeframe all values issued by the {@link Source} will be omitted and
+
* dropped.
+
*
+
* This is a back pressure operator that can be used to omit values from a {@link Source} coming in
+
* too frequently.
+
*
+
* @example
+
* ```ts
+
* pipe(
+
* interval(50),
+
* throttle(() => 100),
+
* subscribe(x => {
+
* // omits every second value: 0, 2, 4...
+
* console.log(text);
+
* })
+
* );
+
* ```
+
*/
export function throttle<T>(timing: (value: T) => number): Operator<T, T> {
return source => sink => {
let skip = false;
+156 -131
src/pipe.ts
···
-
import { Source } from './types';
+
import { Source, Sink, Operator } from './types';
interface UnaryFn<T, R> {
(source: T): R;
}
-
/* pipe definitions for source + operators composition */
+
/** Chain calls operators on a given source and returns the last result.
+
* @param args - A source, then a variable number of transform functions
+
*
+
* @remarks
+
* The `pipe` utility can be called with a {@link Source} then one or more unary transform functions.
+
* Each transform function will be called in turn with the last function's return value, starting
+
* with the source passed as the first argument to `pipe`.
+
*
+
* It's used to transform a source with a list of {@link Operator | Operators}. The last argument may
+
* also be a {@link Sink} that returns something else than a Source.
+
*
+
* @example
+
*
+
* ```ts
+
* pipe(
+
* fromArray([1, 2, 3]),
+
* map(x => x * 2),
+
* subscribe(console.log)
+
* );
+
* ```
+
*
+
* @see {@link https://github.com/tc39/proposal-pipeline-operator} for the JS Pipeline Operator spec, for which this is a replacement utility for.
+
*/
+
interface pipe {
+
/* pipe definitions for source + operators composition */
-
function pipe<T, A>(source: Source<T>, op1: UnaryFn<Source<T>, Source<A>>): Source<A>;
+
<T, A>(source: Source<T>, op1: UnaryFn<Source<T>, Source<A>>): Source<A>;
-
function pipe<T, A, B>(
-
source: Source<T>,
-
op1: UnaryFn<Source<T>, Source<A>>,
-
op2: UnaryFn<Source<A>, Source<B>>
-
): Source<B>;
+
<T, A, B>(
+
source: Source<T>,
+
op1: UnaryFn<Source<T>, Source<A>>,
+
op2: UnaryFn<Source<A>, Source<B>>
+
): Source<B>;
-
function pipe<T, A, B, C>(
-
source: Source<T>,
-
op1: UnaryFn<Source<T>, Source<A>>,
-
op2: UnaryFn<Source<A>, Source<B>>,
-
op3: UnaryFn<Source<B>, Source<C>>
-
): Source<C>;
+
<T, A, B, C>(
+
source: Source<T>,
+
op1: UnaryFn<Source<T>, Source<A>>,
+
op2: UnaryFn<Source<A>, Source<B>>,
+
op3: UnaryFn<Source<B>, Source<C>>
+
): Source<C>;
-
function pipe<T, A, B, C, D>(
-
source: Source<T>,
-
op1: UnaryFn<Source<T>, Source<A>>,
-
op2: UnaryFn<Source<A>, Source<B>>,
-
op3: UnaryFn<Source<B>, Source<C>>,
-
op4: UnaryFn<Source<C>, Source<D>>
-
): Source<D>;
+
<T, A, B, C, D>(
+
source: Source<T>,
+
op1: UnaryFn<Source<T>, Source<A>>,
+
op2: UnaryFn<Source<A>, Source<B>>,
+
op3: UnaryFn<Source<B>, Source<C>>,
+
op4: UnaryFn<Source<C>, Source<D>>
+
): Source<D>;
-
function pipe<T, A, B, C, D, E>(
-
source: Source<T>,
-
op1: UnaryFn<Source<T>, Source<A>>,
-
op2: UnaryFn<Source<A>, Source<B>>,
-
op3: UnaryFn<Source<B>, Source<C>>,
-
op4: UnaryFn<Source<C>, Source<D>>,
-
op5: UnaryFn<Source<D>, Source<E>>
-
): Source<E>;
+
<T, A, B, C, D, E>(
+
source: Source<T>,
+
op1: UnaryFn<Source<T>, Source<A>>,
+
op2: UnaryFn<Source<A>, Source<B>>,
+
op3: UnaryFn<Source<B>, Source<C>>,
+
op4: UnaryFn<Source<C>, Source<D>>,
+
op5: UnaryFn<Source<D>, Source<E>>
+
): Source<E>;
-
function pipe<T, A, B, C, D, E, F>(
-
source: Source<T>,
-
op1: UnaryFn<Source<T>, Source<A>>,
-
op2: UnaryFn<Source<A>, Source<B>>,
-
op3: UnaryFn<Source<B>, Source<C>>,
-
op4: UnaryFn<Source<C>, Source<D>>,
-
op5: UnaryFn<Source<D>, Source<E>>,
-
op6: UnaryFn<Source<E>, Source<F>>
-
): Source<F>;
+
<T, A, B, C, D, E, F>(
+
source: Source<T>,
+
op1: UnaryFn<Source<T>, Source<A>>,
+
op2: UnaryFn<Source<A>, Source<B>>,
+
op3: UnaryFn<Source<B>, Source<C>>,
+
op4: UnaryFn<Source<C>, Source<D>>,
+
op5: UnaryFn<Source<D>, Source<E>>,
+
op6: UnaryFn<Source<E>, Source<F>>
+
): Source<F>;
-
function pipe<T, A, B, C, D, E, F, G>(
-
source: Source<T>,
-
op1: UnaryFn<Source<T>, Source<A>>,
-
op2: UnaryFn<Source<A>, Source<B>>,
-
op3: UnaryFn<Source<B>, Source<C>>,
-
op4: UnaryFn<Source<C>, Source<D>>,
-
op5: UnaryFn<Source<D>, Source<E>>,
-
op6: UnaryFn<Source<E>, Source<F>>,
-
op7: UnaryFn<Source<F>, Source<G>>
-
): Source<G>;
+
<T, A, B, C, D, E, F, G>(
+
source: Source<T>,
+
op1: UnaryFn<Source<T>, Source<A>>,
+
op2: UnaryFn<Source<A>, Source<B>>,
+
op3: UnaryFn<Source<B>, Source<C>>,
+
op4: UnaryFn<Source<C>, Source<D>>,
+
op5: UnaryFn<Source<D>, Source<E>>,
+
op6: UnaryFn<Source<E>, Source<F>>,
+
op7: UnaryFn<Source<F>, Source<G>>
+
): Source<G>;
-
function pipe<T, A, B, C, D, E, F, G, H>(
-
source: Source<T>,
-
op1: UnaryFn<Source<T>, Source<A>>,
-
op2: UnaryFn<Source<A>, Source<B>>,
-
op3: UnaryFn<Source<B>, Source<C>>,
-
op4: UnaryFn<Source<C>, Source<D>>,
-
op5: UnaryFn<Source<D>, Source<E>>,
-
op6: UnaryFn<Source<E>, Source<F>>,
-
op7: UnaryFn<Source<F>, Source<G>>,
-
op8: UnaryFn<Source<G>, Source<H>>
-
): Source<H>;
+
<T, A, B, C, D, E, F, G, H>(
+
source: Source<T>,
+
op1: UnaryFn<Source<T>, Source<A>>,
+
op2: UnaryFn<Source<A>, Source<B>>,
+
op3: UnaryFn<Source<B>, Source<C>>,
+
op4: UnaryFn<Source<C>, Source<D>>,
+
op5: UnaryFn<Source<D>, Source<E>>,
+
op6: UnaryFn<Source<E>, Source<F>>,
+
op7: UnaryFn<Source<F>, Source<G>>,
+
op8: UnaryFn<Source<G>, Source<H>>
+
): Source<H>;
-
/* pipe definitions for source + operators + consumer composition */
+
/* pipe definitions for source + operators + consumer composition */
-
function pipe<T, R>(source: Source<T>, consumer: UnaryFn<Source<T>, R>): R;
+
<T, R>(source: Source<T>, consumer: UnaryFn<Source<T>, R>): R;
-
function pipe<T, A, R>(
-
source: Source<T>,
-
op1: UnaryFn<Source<T>, Source<A>>,
-
consumer: UnaryFn<Source<A>, R>
-
): R;
+
<T, A, R>(
+
source: Source<T>,
+
op1: UnaryFn<Source<T>, Source<A>>,
+
consumer: UnaryFn<Source<A>, R>
+
): R;
-
function pipe<T, A, B, R>(
-
source: Source<T>,
-
op1: UnaryFn<Source<T>, Source<A>>,
-
op2: UnaryFn<Source<A>, Source<B>>,
-
consumer: UnaryFn<Source<B>, R>
-
): R;
+
<T, A, B, R>(
+
source: Source<T>,
+
op1: UnaryFn<Source<T>, Source<A>>,
+
op2: UnaryFn<Source<A>, Source<B>>,
+
consumer: UnaryFn<Source<B>, R>
+
): R;
-
function pipe<T, A, B, C, R>(
-
source: Source<T>,
-
op1: UnaryFn<Source<T>, Source<A>>,
-
op2: UnaryFn<Source<A>, Source<B>>,
-
op3: UnaryFn<Source<B>, Source<C>>,
-
consumer: UnaryFn<Source<C>, R>
-
): R;
+
<T, A, B, C, R>(
+
source: Source<T>,
+
op1: UnaryFn<Source<T>, Source<A>>,
+
op2: UnaryFn<Source<A>, Source<B>>,
+
op3: UnaryFn<Source<B>, Source<C>>,
+
consumer: UnaryFn<Source<C>, R>
+
): R;
-
function pipe<T, A, B, C, D, R>(
-
source: Source<T>,
-
op1: UnaryFn<Source<T>, Source<A>>,
-
op2: UnaryFn<Source<A>, Source<B>>,
-
op3: UnaryFn<Source<B>, Source<C>>,
-
op4: UnaryFn<Source<C>, Source<D>>,
-
consumer: UnaryFn<Source<D>, R>
-
): R;
+
<T, A, B, C, D, R>(
+
source: Source<T>,
+
op1: UnaryFn<Source<T>, Source<A>>,
+
op2: UnaryFn<Source<A>, Source<B>>,
+
op3: UnaryFn<Source<B>, Source<C>>,
+
op4: UnaryFn<Source<C>, Source<D>>,
+
consumer: UnaryFn<Source<D>, R>
+
): R;
-
function pipe<T, A, B, C, D, E, R>(
-
source: Source<T>,
-
op1: UnaryFn<Source<T>, Source<A>>,
-
op2: UnaryFn<Source<A>, Source<B>>,
-
op3: UnaryFn<Source<B>, Source<C>>,
-
op4: UnaryFn<Source<C>, Source<D>>,
-
op5: UnaryFn<Source<D>, Source<E>>,
-
consumer: UnaryFn<Source<E>, R>
-
): R;
+
<T, A, B, C, D, E, R>(
+
source: Source<T>,
+
op1: UnaryFn<Source<T>, Source<A>>,
+
op2: UnaryFn<Source<A>, Source<B>>,
+
op3: UnaryFn<Source<B>, Source<C>>,
+
op4: UnaryFn<Source<C>, Source<D>>,
+
op5: UnaryFn<Source<D>, Source<E>>,
+
consumer: UnaryFn<Source<E>, R>
+
): R;
-
function pipe<T, A, B, C, D, E, F, R>(
-
source: Source<T>,
-
op1: UnaryFn<Source<T>, Source<A>>,
-
op2: UnaryFn<Source<A>, Source<B>>,
-
op3: UnaryFn<Source<B>, Source<C>>,
-
op4: UnaryFn<Source<C>, Source<D>>,
-
op5: UnaryFn<Source<D>, Source<E>>,
-
op6: UnaryFn<Source<E>, Source<F>>,
-
consumer: UnaryFn<Source<F>, R>
-
): R;
+
<T, A, B, C, D, E, F, R>(
+
source: Source<T>,
+
op1: UnaryFn<Source<T>, Source<A>>,
+
op2: UnaryFn<Source<A>, Source<B>>,
+
op3: UnaryFn<Source<B>, Source<C>>,
+
op4: UnaryFn<Source<C>, Source<D>>,
+
op5: UnaryFn<Source<D>, Source<E>>,
+
op6: UnaryFn<Source<E>, Source<F>>,
+
consumer: UnaryFn<Source<F>, R>
+
): R;
-
function pipe<T, A, B, C, D, E, F, G, R>(
-
source: Source<T>,
-
op1: UnaryFn<Source<T>, Source<A>>,
-
op2: UnaryFn<Source<A>, Source<B>>,
-
op3: UnaryFn<Source<B>, Source<C>>,
-
op4: UnaryFn<Source<C>, Source<D>>,
-
op5: UnaryFn<Source<D>, Source<E>>,
-
op6: UnaryFn<Source<E>, Source<F>>,
-
op7: UnaryFn<Source<F>, Source<G>>,
-
consumer: UnaryFn<Source<G>, R>
-
): R;
+
<T, A, B, C, D, E, F, G, R>(
+
source: Source<T>,
+
op1: UnaryFn<Source<T>, Source<A>>,
+
op2: UnaryFn<Source<A>, Source<B>>,
+
op3: UnaryFn<Source<B>, Source<C>>,
+
op4: UnaryFn<Source<C>, Source<D>>,
+
op5: UnaryFn<Source<D>, Source<E>>,
+
op6: UnaryFn<Source<E>, Source<F>>,
+
op7: UnaryFn<Source<F>, Source<G>>,
+
consumer: UnaryFn<Source<G>, R>
+
): R;
-
function pipe<T, A, B, C, D, E, F, G, H, R>(
-
source: Source<T>,
-
op1: UnaryFn<Source<T>, Source<A>>,
-
op2: UnaryFn<Source<A>, Source<B>>,
-
op3: UnaryFn<Source<B>, Source<C>>,
-
op4: UnaryFn<Source<C>, Source<D>>,
-
op5: UnaryFn<Source<D>, Source<E>>,
-
op6: UnaryFn<Source<E>, Source<F>>,
-
op7: UnaryFn<Source<F>, Source<G>>,
-
op8: UnaryFn<Source<G>, Source<H>>,
-
consumer: UnaryFn<Source<H>, R>
-
): R;
+
<T, A, B, C, D, E, F, G, H, R>(
+
source: Source<T>,
+
op1: UnaryFn<Source<T>, Source<A>>,
+
op2: UnaryFn<Source<A>, Source<B>>,
+
op3: UnaryFn<Source<B>, Source<C>>,
+
op4: UnaryFn<Source<C>, Source<D>>,
+
op5: UnaryFn<Source<D>, Source<E>>,
+
op6: UnaryFn<Source<E>, Source<F>>,
+
op7: UnaryFn<Source<F>, Source<G>>,
+
op8: UnaryFn<Source<G>, Source<H>>,
+
consumer: UnaryFn<Source<H>, R>
+
): R;
+
}
-
function pipe(...args: any[]) {
+
const pipe: pipe = (...args: Function[]): any => {
let x = args[0];
for (let i = 1, l = args.length; i < l; i++) x = args[i](x);
return x;
-
}
+
};
export { pipe };
+182 -3
src/sinks.ts
···
-
import { Source, Subscription, TalkbackKind, SignalKind } from './types';
-
import { talkbackPlaceholder } from './helpers';
+
import { Source, Subscription, TalkbackKind, SignalKind, SourceIterable } from './types';
+
import { talkbackPlaceholder, asyncIteratorSymbol } from './helpers';
+
/** Creates a subscription to a given source and invokes a `subscriber` callback for each value.
+
* @param subscriber - A callback function called for each issued value.
+
* @returns A function accepting a {@link Source} and returning a {@link Subscription}.
+
*
+
* @remarks
+
* `subscribe` accepts a `subscriber` callback and returns a function accepting a {@link Source}.
+
* When a source is passed to the returned funtion, the subscription will start and `subscriber`
+
* will be called for each new value the Source issues. This will also return a {@link Subscription}
+
* object that can cancel the ongoing {@link Source} early.
+
*
+
* @example
+
* ```ts
+
* const subscription = pipe(
+
* fromValue('test'),
+
* subscribe(text => {
+
* console.log(text); // 'test'
+
* })
+
* );
+
* ```
+
*/
export function subscribe<T>(subscriber: (value: T) => void) {
return (source: Source<T>): Subscription => {
let talkback = talkbackPlaceholder;
···
};
}
+
/** Creates a subscription to a given source and invokes a `subscriber` callback for each value.
+
* @see {@link subscribe} which this helper aliases without returnin a {@link Subscription}.
+
* @param subscriber - A callback function called for each issued value.
+
* @returns A function accepting a {@link Source}.
+
*
+
* @remarks
+
* `forEach` accepts a `subscriber` callback and returns a function accepting a {@link Source}.
+
* When a source is passed to the returned funtion, the subscription will start and `subscriber`
+
* will be called for each new value the Source issues. Unlike `subscribe` it will not return a
+
* Subscription object and can't be cancelled early.
+
*
+
* @example
+
* ```ts
+
* pipe(
+
* fromValue('test'),
+
* forEach(text => {
+
* console.log(text); // 'test'
+
* })
+
* ); // undefined
+
* ```
+
*/
export function forEach<T>(subscriber: (value: T) => void) {
return (source: Source<T>): void => {
subscribe(subscriber)(source);
};
}
+
/** Creates a subscription to a given source and invokes a `subscriber` callback for each value.
+
* @see {@link subscribe} which this helper aliases without accepting parameters or returning a
+
* {@link Subscription | Subscription}.
+
*
+
* @param source - A {@link Source}.
+
*
+
* @remarks
+
* `publish` accepts a {@link Source} and subscribes to it, starting its values. The resulting
+
* values cannot be observed and the subscription can't be cancelled, as this helper is purely
+
* intended to start side-effects.
+
*
+
* @example
+
* ```ts
+
* pipe(
+
* lazy(() => {
+
* console.log('test'); // this is called
+
* return fromValue(123); // this is never used
+
* }),
+
* publish
+
* ); // undefined
+
* ```
+
*/
export function publish<T>(source: Source<T>): void {
subscribe(_value => {
/*noop*/
})(source);
}
+
const doneResult = { done: true } as IteratorReturnResult<void>;
+
+
/** Converts a Source to an AsyncIterable that pulls and issues values from the Source.
+
*
+
* @param source - A {@link Source}.
+
* @returns An {@link AsyncIterable | `AsyncIterable`} issuing values from the Source.
+
*
+
* @remarks
+
* `toAsyncIterable` will create an {@link AsyncIterable} that pulls and issues values from a given
+
* {@link Source}. This can be used in many interoperability situations, to provide an iterable when
+
* a consumer requires it.
+
*
+
* @see {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols#the_async_iterator_and_async_iterable_protocols}
+
* for the JS Iterable protocol.
+
*
+
* @example
+
* ```ts
+
* const iterable = toAsyncIterable(fromArray([1, 2, 3]));
+
* for await (const value of iterable) {
+
* console.log(value); // outputs: 1, 2, 3
+
* }
+
* ```
+
*/
+
export const toAsyncIterable = <T>(source: Source<T>): SourceIterable<T> => {
+
const buffer: T[] = [];
+
+
let ended = false;
+
let started = false;
+
let pulled = false;
+
let talkback = talkbackPlaceholder;
+
let next: ((value: IteratorResult<T>) => void) | void;
+
+
return {
+
async next(): Promise<IteratorResult<T>> {
+
if (!started) {
+
started = true;
+
source(signal => {
+
if (ended) {
+
/*noop*/
+
} else if (signal === SignalKind.End) {
+
if (next) next = next(doneResult);
+
ended = true;
+
} else if (signal.tag === SignalKind.Start) {
+
pulled = true;
+
(talkback = signal[0])(TalkbackKind.Pull);
+
} else {
+
pulled = false;
+
if (next) {
+
next = next({ value: signal[0], done: false });
+
} else {
+
buffer.push(signal[0]);
+
}
+
}
+
});
+
}
+
+
if (ended && !buffer.length) {
+
return doneResult;
+
} else if (!ended && !pulled && buffer.length <= 1) {
+
pulled = true;
+
talkback(TalkbackKind.Pull);
+
}
+
+
return buffer.length
+
? { value: buffer.shift()!, done: false }
+
: new Promise(resolve => (next = resolve));
+
},
+
async return(): Promise<IteratorReturnResult<void>> {
+
if (!ended) next = talkback(TalkbackKind.Close);
+
ended = true;
+
return doneResult;
+
},
+
[asyncIteratorSymbol()](): SourceIterable<T> {
+
return this;
+
},
+
};
+
};
+
+
/** Subscribes to a given source and collects all synchronous values into an array.
+
* @param source - A {@link Source}.
+
* @returns An array of values collected from the {@link Source}.
+
*
+
* @remarks
+
* `toArray` accepts a {@link Source} and returns an array of all synchronously issued values from
+
* this Source. It will issue {@link TalkbackKind.Pull | Pull signals} after every value it receives
+
* and expects the Source to recursively issue values.
+
*
+
* Any asynchronously issued values will not be
+
* added to the array and a {@link TalkbackKind.Close | Close signal} is issued by the sink before
+
* returning the array.
+
*
+
* @example
+
* ```ts
+
* toArray(fromArray([1, 2, 3])); // [1, 2, 3]
+
* ```
+
*/
export function toArray<T>(source: Source<T>): T[] {
const values: T[] = [];
let talkback = talkbackPlaceholder;
···
return values;
}
+
/** Subscribes to a given source and returns a Promise that will resolve with the last value the
+
* source issues.
+
*
+
* @param source - A {@link Source}.
+
* @returns A {@link Promise} resolving to the last value of the {@link Source}.
+
*
+
* @remarks
+
* `toPromise` will subscribe to the passed {@link Source} and resolve to the last value of it once
+
* it receives the last value, as signaled by the {@link SignalKind.End | End signal}.
+
*
+
* To keep its implementation simple, padding sources that don't issue any values to `toPromise` is
+
* undefined behaviour and `toPromise` will issue `undefined` in that case.
+
*
+
* The returned {@link Promise} delays its value by a microtick, using `Promise.resolve`.
+
*
+
* @example
+
* ```ts
+
* toPromise(fromValue('test')); // resolves: 'test'
+
* ```
+
*/
export function toPromise<T>(source: Source<T>): Promise<T> {
return new Promise(resolve => {
let talkback = talkbackPlaceholder;
let value: T | void;
source(signal => {
if (signal === SignalKind.End) {
-
resolve(value!);
+
Promise.resolve(value!).then(resolve);
} else if (signal.tag === SignalKind.Start) {
(talkback = signal[0])(TalkbackKind.Pull);
} else {
+218 -8
src/sources.ts
···
import { Source, Sink, SignalKind, TalkbackKind, Observer, Subject, TeardownFn } from './types';
-
import { push, start, talkbackPlaceholder, teardownPlaceholder } from './helpers';
+
import {
+
push,
+
start,
+
talkbackPlaceholder,
+
teardownPlaceholder,
+
asyncIteratorSymbol,
+
} from './helpers';
import { share } from './operators';
-
export function lazy<T>(make: () => Source<T>): Source<T> {
-
return sink => make()(sink);
+
/** Helper creating a Source from a factory function when it's subscribed to.
+
* @param produce - A factory function returning a {@link Source}.
+
* @returns A {@link Source} lazyily subscribing to the Source returned by the given factory
+
* function.
+
*
+
* @remarks
+
* At times it's necessary to create a {@link Source} lazily. The time of a {@link Source} being
+
* created could be different from when it's subscribed to, and hence we may want to split the
+
* creation and subscription time. This is especially useful when the Source we wrap is "hot" and
+
* issues values as soon as it's created, which we may then not receive in a subscriber.
+
*
+
* @example An example of creating a {@link Source} that issues the timestamp of subscription. Here
+
* we effectively use `lazy` with the simple {@link fromValue | `fromValue`} source, to quickly
+
* create a Source that issues the time of its subscription, rather than the time of its creation
+
* that it would otherwise issue without `lazy`.
+
*
+
* ```ts
+
* lazy(() => fromValue(Date.now()));
+
* ```
+
*/
+
export function lazy<T>(produce: () => Source<T>): Source<T> {
+
return sink => produce()(sink);
}
-
export function fromAsyncIterable<T>(iterable: AsyncIterable<T>): Source<T> {
+
/** Converts an AsyncIterable to a Source that pulls and issues values from it as requested.
+
*
+
* @see {@link fromIterable | `fromIterable`} for the non-async Iterable version of this helper,
+
* which calls this helper automatically as needed.
+
*
+
* @param iterable - An {@link AsyncIterable | `AsyncIterable`}.
+
* @returns A {@link Source} issuing values sourced from the Iterable.
+
*
+
* @remarks
+
* `fromAsyncIterable` will create a {@link Source} that pulls and issues values from a given
+
* {@link AsyncIterable}. This can be used in many interoperability situations, including to consume
+
* an async generator function.
+
*
+
* When the {@link Sink} throws an exception when a new value is pushed, this helper will rethrow it
+
* using {@link AsyncIterator.throw}, which allows an async generator to recover from the exception.
+
*
+
* @see {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols#the_async_iterator_and_async_iterable_protocols}
+
* for the JS Iterable protocol.
+
*/
+
export function fromAsyncIterable<T>(iterable: AsyncIterable<T> | AsyncIterator<T>): Source<T> {
return sink => {
-
const iterator = iterable[Symbol.asyncIterator]();
+
const iterator: AsyncIterator<T> =
+
(iterable[asyncIteratorSymbol()] && iterable[asyncIteratorSymbol()]()) || iterable;
+
let ended = false;
let looping = false;
let pulled = false;
···
};
}
+
/** Converts an Iterable to a Source that pulls and issues values from it as requested.
+
* @see {@link fromAsyncIterable | `fromAsyncIterable`} for the AsyncIterable version of this helper.
+
* @param iterable - An {@link Iterable | `Iterable`} or an `AsyncIterable`
+
* @returns A {@link Source} issuing values sourced from the Iterable.
+
*
+
* @remarks
+
* `fromIterable` will create a {@link Source} that pulls and issues values from a given
+
* {@link Iterable | JS Iterable}. As iterables are the common standard for any lazily iterated list
+
* of values in JS it can be applied to many different JS data types, including a JS Generator
+
* function.
+
*
+
* This Source will only call {@link Iterator.next} on the iterator when the subscribing {@link Sink}
+
* has pulled a new value with the {@link TalkbackKind.Pull | Pull signal}. `fromIterable` can
+
* therefore also be applied to "infinite" iterables, without a predefined end.
+
*
+
* This helper will call {@link fromAsyncIterable | `fromAsyncIterable`} automatically when the
+
* passed object also implements the async iterator protocol.
+
*
+
* When the {@link Sink} throws an exception when a new value is pushed, this helper will rethrow it
+
* using {@link Iterator.throw}, which allows a generator to recover from the exception.
+
*
+
* @see {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols#the_iterable_protocol}
+
* for the JS Iterable protocol.
+
*/
export function fromIterable<T>(iterable: Iterable<T> | AsyncIterable<T>): Source<T> {
-
if (iterable[Symbol.asyncIterator]) return fromAsyncIterable(iterable as AsyncIterable<T>);
+
if (iterable[asyncIteratorSymbol()]) return fromAsyncIterable(iterable as AsyncIterable<T>);
return sink => {
const iterator = iterable[Symbol.iterator]();
let ended = false;
···
};
}
+
/** Creates a Source that issues a each value of a given array synchronously.
+
* @see {@link fromIterable} which `fromArray` aliases.
+
* @param array - The array whose values will be issued one by one.
+
* @returns A {@link Source} issuing the array's values.
+
*
+
* @remarks
+
* `fromArray` will create a {@link Source} that issues the values of a given JS array one by one. It
+
* will issue values as they're pulled and is hence a "cold" source, not eagerly emitting values. It
+
* will end and issue the {@link SignalKind.End | End signal} when the array is exhausted of values.
+
*
+
* @example
+
* ```ts
+
* fromArray([1, 2, 3]);
+
* ```
+
*/
export const fromArray: <T>(array: T[]) => Source<T> = fromIterable;
+
/** Creates a Source that issues a single value and ends immediately after.
+
* @param value - The value that will be issued.
+
* @returns A {@link Source} issuing the single value.
+
*
+
* @example
+
* ```ts
+
* fromValue('test');
+
* ```
+
*/
export function fromValue<T>(value: T): Source<T> {
return sink => {
let ended = false;
···
};
}
-
export function make<T>(produce: (observer: Observer<T>) => TeardownFn): Source<T> {
+
/** Creates a new Source from scratch from a passed `subscriber` function.
+
* @param subscriber - A callback that is called when the {@link Source} is subscribed to.
+
* @returns A {@link Source} created from the `subscriber` parameter.
+
*
+
* @remarks
+
* `make` is used to create a new, arbitrary {@link Source} from scratch. It calls the passed
+
* `subscriber` function when it's subscribed to.
+
*
+
* The `subscriber` function receives an {@link Observer}. You may call {@link Observer.next} to
+
* issue values on the Source, and {@link Observer.complete} to end the Source.
+
*
+
* Your `subscribr` function must return a {@link TeardownFn | teardown function} which is only
+
* called when your source is cancelled — not when you invoke `complete` yourself. As this creates a
+
* "cold" source, every time this source is subscribed to, it will invoke the `subscriber` function
+
* again and create a new source.
+
*
+
* @example
+
*
+
* ```ts
+
* make(observer => {
+
* const frame = requestAnimationFrame(() => {
+
* observer.next('animate!');
+
* });
+
* return () => {
+
* cancelAnimationFrame(frame);
+
* };
+
* });
+
* ```
+
*/
+
export function make<T>(subscriber: (observer: Observer<T>) => TeardownFn): Source<T> {
return sink => {
let ended = false;
-
const teardown = produce({
+
const teardown = subscriber({
next(value: T) {
if (!ended) sink(push(value));
},
···
};
}
+
/** Creates a new Subject which can be used as an IO event hub.
+
* @returns A new {@link Subject}.
+
*
+
* @remarks
+
* `makeSubject` creates a new {@link Subject}. A Subject is a {@link Source} and an {@link Observer}
+
* combined in one interface, as the Observer is used to send new signals to the Source. This means
+
* that it's "hot" and hence all subscriptions to {@link Subject.source} share the same underlying
+
* signals coming from {@link Subject.next} and {@link Subject.complete}.
+
*
+
* @example
+
* ```ts
+
* const subject = makeSubject();
+
* pipe(subject.source, subscribe(console.log));
+
* // This will log the string on the above subscription
+
* subject.next('hello subject!');
+
* ```
+
*/
export function makeSubject<T>(): Subject<T> {
let next: Subject<T>['next'] | void;
let complete: Subject<T>['complete'] | void;
···
};
}
+
/** A {@link Source} that immediately ends.
+
* @remarks
+
* `empty` is a {@link Source} that immediately issues an {@link SignalKind.End | End signal} when
+
* it's subscribed to, ending immediately.
+
*
+
* @see {@link never | `never`} for a source that instead never ends.
+
*/
export const empty: Source<any> = (sink: Sink<any>): void => {
let ended = false;
sink(
···
);
};
+
/** A {@link Source} without values that never ends.
+
* @remarks
+
* `never` is a {@link Source} that never issues any signals and neither sends values nor ends.
+
*
+
* @see {@link empty | `empty`} for a source that instead ends immediately.
+
*/
export const never: Source<any> = (sink: Sink<any>): void => {
sink(start(talkbackPlaceholder));
};
+
/** Creates a Source that issues an incrementing integer in intervals.
+
* @param ms - The interval in milliseconds.
+
* @returns A {@link Source} issuing an incrementing count on each interval.
+
*
+
* @remarks
+
* `interval` will create a {@link Source} that issues an incrementing counter each time the `ms`
+
* interval expires.
+
*
+
* It'll only stop when it's cancelled by a {@link TalkbackKind.Close | Close signal}.
+
*
+
* @example
+
* An example printing `0`, then `1`, and so on, in intervals of 50ms.
+
*
+
* ```ts
+
* pipe(interval(50), subscribe(console.log));
+
* ```
+
*/
export function interval(ms: number): Source<number> {
return make(observer => {
let i = 0;
···
});
}
+
/** Converts DOM Events to a Source given an `HTMLElement` and an event's name.
+
* @param element - The {@link HTMLElement} to listen to.
+
* @param event - The DOM Event name to listen to.
+
* @returns A {@link Source} issuing the {@link Event | DOM Events} as they're issued by the DOM.
+
*
+
* @remarks
+
* `fromDomEvent` will create a {@link Source} that listens to the given element's events and issues
+
* them as values on the source. This source will only stop when it's cancelled by a
+
* {@link TalkbackKind.Close | Close signal}.
+
*
+
* @example
+
* An example printing `'clicked!'` when the given `#root` element is clicked.
+
*
+
* ```ts
+
* const element = document.getElementById('root');
+
* pipe(
+
* fromDomEvent(element, 'click'),
+
* subscribe(() => console.log('clicked!'))
+
* );
+
* ```
+
*/
export function fromDomEvent(element: HTMLElement, event: string): Source<Event> {
return make(observer => {
element.addEventListener(event, observer.next);
···
});
}
+
/** Converts a Promise to a Source that issues the resolving Promise's value and then ends.
+
* @param promise - The promise that will be wrapped.
+
* @returns A {@link Source} issuing the promise's value when it resolves.
+
*
+
* @remarks
+
* `fromPromise` will create a {@link Source} that issues the {@link Promise}'s resolving value
+
* asynchronously and ends immediately after resolving.
+
*
+
* This helper will not handle the promise's exceptions, and will cause uncaught errors if the
+
* promise rejects without a value.
+
*
+
* @example
+
* An example printing `'resolved!'` when the given promise resolves after a tick.
+
*
+
* ```ts
+
* pipe(fromPromise(Promise.resolve('resolved!')), subscribe(console.log));
+
* ```
+
*/
export function fromPromise<T>(promise: Promise<T>): Source<T> {
return make(observer => {
promise.then(value => {
+207
src/types.d.ts
···
+
/**
+
* Talkback signal that sends instructions from a sink to a source.
+
*
+
* @remarks
+
* This signal is issued via {@link TalkbackFn | talkback functions} that a {@link Sink} receives via
+
* the {@link Start} signal, to tell a {@link Source} to either send a new value (pulling) or stop
+
* sending values altogether (cancellation).
+
*/
+
export declare enum TalkbackKind {
+
/** Instructs the {@link Source} to send the next value. */
+
Pull = 0,
+
/** Instructs the {@link Source} to stop sending values and cancels it. */
+
Close = 1,
+
}
+
+
/**
+
* Talkback callback that sends instructions to a source.
+
*
+
* @remarks
+
* This function sends a {@link TalkbackKind} signal to the source to instruct it to send a new value
+
* (pulling) or to be cancelled and stop sending values altogether.
+
*/
+
export type TalkbackFn = (signal: TalkbackKind) => void;
+
+
/**
+
* Callback that is called when a source is cancelled.
+
*
+
* @remarks
+
* This is used, in particular, in the {@link make | make Source} and is a returned function that is
+
* called when the {@link TalkbackKind.Close} signal is received by the source.
+
*/
+
export type TeardownFn = () => void;
+
+
/**
+
* Tag enum that is used to on signals that are sent from a source to a sink.
+
*
+
* @remarks
+
* This signal is issued by a {@link Source} and {@link Sink | Sinks} are called with it. The signals
+
* carrying values ({@link Start} and {@link Push}) are sent as a unary `[T]` tuple tagged with
+
* {@link Tag}. The {@link End} signal carries no value and is sent as a raw `0` value.
+
* @see {@link Start} for the data structure of the start signal.
+
* @see {@link Push} for the data structure of the push signal, carrying values.
+
*/
+
export declare enum SignalKind {
+
/**
+
* Informs the {@link Sink} that it's being called by a {@link Source}.
+
*
+
* @remarks
+
* This starts the stream of values and carries a {@link TalkbackFn | talkback function} with it
+
* that is used by the {@link Sink} to communicate back to the {@link Source}.
+
* @see {@link Start} for the data structure of the signal.
+
*/
+
Start = 0,
+
/**
+
* Informs the {@link Sink} of a new values that's incoming from the {@link Source}.
+
*
+
* @remarks
+
* This informs the {@link Sink} of new values that are sent by the {@link Source}.
+
* @see {@link Push} for the data structure of the signal.
+
*/
+
Push = 1,
+
/**
+
* Informs the {@link Sink} that the {@link Source} has ended and that it won't send more values.
+
*
+
* @remarks
+
* This signal signifies that the stream has stopped and that no more values are expected. Some
+
* sources don't have a set end or limit on how many values will be sent. This signal is not sent
+
* when the {@link Source} is cancelled with a {@link TalkbackKind.Close | Close talkback signal}.
+
*/
+
End = 0,
+
}
+
+
/**
+
* The tag property that's put on unary `[T]` tuple to turn them into signals carrying values.
+
*
+
* @internal
+
*/
+
export interface Tag<T> {
+
tag: T;
+
}
+
+
/**
+
* Indicates the start of a stream to a {@link Sink}.
+
*
+
* @remarks
+
* This signal is sent from a {@link Source} to a {@link Sink} at the start of a stream to inform it
+
* that values can be pulled and/or will be sent. This signal carries a
+
* {@link TalkbackFn | talkback function} that is used by the {@link Sink} to communicate back to the
+
* {@link Source} as a callback. The talkback accepts {@link TalkbackKind.Pull | Pull} and
+
* {@link TalkbackKind.Close | Close} signals.
+
*/
+
export type Start<_T> = Tag<SignalKind.Start> & [TalkbackFn];
+
+
/**
+
* Sends a new value to a {@link Sink}.
+
*
+
* @remarks
+
* This signal is sent from a {@link Source} to a {@link Sink} to send a new value to it. This is
+
* essentially the signal that wraps new values coming in, like an event. Values are carried on
+
* unary tuples and can be accessed using `signal[0]`.
+
*/
+
export type Push<T> = Tag<SignalKind.Push> & [T];
+
+
/**
+
* Signals are sent from {@link Source | Sources} to {@link Sink | Sinks} to inform them of changes.
+
*
+
* @remarks
+
* A {@link Source}, when consumed, sends a sequence of events to {@link Sink | Sinks}. In order, a
+
* {@link SignalKind.Start | Start} signal will always be sent first, followed optionally by one or
+
* more {@link SignalKind.Push | Push signals}, carrying values and representing the stream. A
+
* {@link Source} will send the {@link SignalKind.End | End signal} when it runs out of values. The
+
* End signal will be omitted if the Source is cancelled by a
+
* {@link TalkbackKind.Close | Close signal}, sent back from the {@link Sink}.
+
* @see {@link SignalKind} for the kinds signals sent by {@link Source | Sources}.
+
* @see {@link Start} for the data structure of the start signal.
+
* @see {@link Push} for the data structure of the push signal.
+
*/
+
export type Signal<T> = Start<T> | Push<T> | SignalKind.End;
+
+
/**
+
* Callback function that is called by a {@link Source} with {@link Signal | Signals}.
+
*
+
* @remarks
+
* A Sink is a function that is called repeatedly with signals from a {@link Source}. It represents
+
* the receiver of the stream of signals/events coming from a {@link Source}.
+
* @see {@link Signal} for the data structure of signals.
+
*/
+
export type Sink<T> = (signal: Signal<T>) => void;
+
+
/** Factory function that calls {@link Sink | Sinks} with {@link Signal | Signals} when invoked.
+
* @remarks
+
* A Source is a factory function that when invoked with a {@link Sink}, calls it with
+
* {@link Signal | Signals} to create a stream of events, informing it of new values and the
+
* potential end of the stream of values. The first signal a Source sends is always a
+
* {@link Start | Start signal} that sends a talkback function to the {@link Sink}, so it may request
+
* new values or cancel the source.
+
*
+
* @see {@link Signal} for the data structure of signals.
+
* @see {@link Sink} for the data structure of sinks.
+
*/
+
export type Source<T> = (sink: Sink<T>) => void;
+
+
/** Transform function that accepts a {@link Source} and returns a new one.
+
* @remarks
+
* Wonka comes with several helper operators that transform a given {@link Source} into a new one,
+
* potentially changing its outputs, or the outputs' timing. An "operator" in Wonka typically
+
* accepts arguments and then returns this kind of function, so they can be chained and composed.
+
*
+
* @see {@link pipe | `pipe`} for the helper used to compose operators.
+
*/
+
export type Operator<In, Out> = (a: Source<In>) => Source<Out>;
+
+
/** Type utility to determine the type of a {@link Source}. */
+
export type TypeOfSource<T> = T extends Source<infer U> ? U : never;
+
+
/** Subscription object that can be used to cancel a {@link Source}.
+
* @see {@link subscribe | subscribe sink} for a helper that returns this structure.
+
*/
+
export interface Subscription {
+
/**
+
* Cancels a {@link Source} to stop the subscription from receiving new values.
+
*
+
* @see {@link TalkbackKind.Close | Close signal} This uses the {@link TalkbackFn | talkback function} to send a {@link TalkbackKind.Close | Close signal}
+
* to the subscribed-to {@link Source} to stop it from sending new values. This cleans up the subscription
+
* and ends it immediately.
+
*/
+
unsubscribe(): void;
+
}
+
+
/** An Observer represents sending signals manually to a {@link Sink}.
+
* @remarks
+
* The Observer is used whenever a utility allows for signals to be sent manually as a {@link Source}
+
* would send them.
+
*
+
* @see {@link make | `make` source} for a helper that uses this structure.
+
*/
+
export interface Observer<T> {
+
/** Sends a new value to the receiving Sink.
+
* @remarks
+
* This creates a {@link Push | Push signal} that is sent to a {@link Sink}.
+
*/
+
next(value: T): void;
+
/** Indicates to the receiving Sink that no more values will be sent.
+
* @remarks
+
* This creates an {@link SignalKind.End | End signal} that is sent to a {@link Sink}. The Observer
+
* will accept no more values via {@link Observer.next | `next` calls} once this method has been
+
* invoked.
+
*/
+
complete(): void;
+
}
+
+
/** Subjects combine a {@link Source} with the {@link Observer} that is used to send values on said Source.
+
* @remarks
+
* A Subject is used whenever an event hub-like structure is needed, as it both provides the
+
* {@link Observer}'s methods to send signals, as well as the `source` to receive said signals.
+
*
+
* @see {@link makeSubject | `makeSubject` source} for a helper that creates this structure.
+
*/
+
export interface Subject<T> extends Observer<T> {
+
/** The {@link Source} that issues the signals as the {@link Observer} methods are called. */
+
source: Source<T>;
+
}
+
+
/** Async Iterable/Iterator after having converted a {@link Source}.
+
* @see {@link toAsyncIterable} for a helper that creates this structure.
+
*/
+
export interface SourceIterable<T> extends AsyncIterator<T>, AsyncIterable<T> {}
+10
src/types.mjs
···
+
export const TalkbackKind = {
+
Pull: 0,
+
Close: 1,
+
};
+
+
export const SignalKind = {
+
Start: 0,
+
Push: 1,
+
End: 0,
+
};
-50
src/types.ts
···
-
/** A talkback signal is used to tell a [Source] that either the [Sink] is ready for new values or that the stream should be cancelled */
-
export const enum TalkbackKind {
-
Pull = 0,
-
Close = 1,
-
}
-
-
/** A talkback callback is sent to the sink with the [Start] signal to communicate signals back to the source. */
-
export type TalkbackFn = (signal: TalkbackKind) => void;
-
export type TeardownFn = () => void;
-
-
export const enum SignalKind {
-
Start = 0,
-
Push = 1,
-
End = 0,
-
}
-
-
export interface Tag<T> {
-
tag: T;
-
}
-
-
/** The start [Signal] is the first signal and carries a callback (talkback) so the sink can send signals to the source */
-
export type Start<_T> = Tag<SignalKind.Start> & [TalkbackFn];
-
/** The Push [Signal] carries new values to the sink, like in an event emitter */
-
export type Push<T> = Tag<SignalKind.Push> & [T];
-
-
/** A signal that communicates new events to a sink. */
-
export type Signal<T> = Start<T> | Push<T> | SignalKind.End;
-
-
/** A sink accepts new values from a [Source], like [Push], [Start], and an end signal. The [Start] is used to receive a callback to send talkback signals back to the source. */
-
export type Sink<T> = (signal: Signal<T>) => void;
-
/** A source is a function that accepts a [Sink] and then starts sending [Signal]s to it. */
-
export type Source<T> = (sink: Sink<T>) => void;
-
/** An operator transforms a [Source] and returns a new [Source], potentially with different timings or output types. */
-
export type Operator<In, Out> = (a: Source<In>) => Source<Out>;
-
-
/** Extracts the type of a given Source */
-
export type TypeOfSource<T> = T extends Source<infer U> ? U : never;
-
-
export interface Subscription {
-
unsubscribe(): void;
-
}
-
-
export interface Observer<T> {
-
next(value: T): void;
-
complete(): void;
-
}
-
-
export interface Subject<T> extends Observer<T> {
-
source: Source<T>;
-
}
+3 -1
tsconfig.json
···
{
"compilerOptions": {
"forceConsistentCasingInFileNames": true,
+
"importsNotUsedAsValues": "remove",
"noEmit": true,
"esModuleInterop": true,
"noUnusedLocals": true,
···
"strict": true,
"noImplicitAny": false,
"noUnusedParameters": true,
-
"skipLibCheck": true
+
"skipLibCheck": true,
+
"isolatedModules": true
},
"include": ["src"]
}
-2712
yarn.lock
···
-
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
-
# yarn lockfile v1
-
-
-
"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.16.7":
-
version "7.18.6"
-
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.18.6.tgz#3b25d38c89600baa2dcc219edfa88a74eb2c427a"
-
integrity sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==
-
dependencies:
-
"@babel/highlight" "^7.18.6"
-
-
"@babel/helper-validator-identifier@^7.18.6":
-
version "7.18.6"
-
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz#9c97e30d31b2b8c72a1d08984f2ca9b574d7a076"
-
integrity sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==
-
-
"@babel/highlight@^7.16.7", "@babel/highlight@^7.18.6":
-
version "7.18.6"
-
resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.18.6.tgz#81158601e93e2563795adcbfbdf5d64be3f2ecdf"
-
integrity sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==
-
dependencies:
-
"@babel/helper-validator-identifier" "^7.18.6"
-
chalk "^2.0.0"
-
js-tokens "^4.0.0"
-
-
"@esbuild/android-arm@0.15.9":
-
version "0.15.9"
-
resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.15.9.tgz#7e1221604ab88ed5021ead74fa8cca4405e1e431"
-
integrity sha512-VZPy/ETF3fBG5PiinIkA0W/tlsvlEgJccyN2DzWZEl0DlVKRbu91PvY2D6Lxgluj4w9QtYHjOWjAT44C+oQ+EQ==
-
-
"@esbuild/linux-loong64@0.15.9":
-
version "0.15.9"
-
resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.15.9.tgz#b658a97babf1f40783354af7039b84c3fdfc3fc3"
-
integrity sha512-O+NfmkfRrb3uSsTa4jE3WApidSe3N5++fyOVGP1SmMZi4A3BZELkhUUvj5hwmMuNdlpzAZ8iAPz2vmcR7DCFQA==
-
-
"@eslint/eslintrc@^1.3.0":
-
version "1.3.0"
-
resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.3.0.tgz#29f92c30bb3e771e4a2048c95fa6855392dfac4f"
-
integrity sha512-UWW0TMTmk2d7hLcWD1/e2g5HDM/HQ3csaLSqXCfqwh4uNDuNqlaKWXmEsL4Cs41Z0KnILNvwbHAah3C2yt06kw==
-
dependencies:
-
ajv "^6.12.4"
-
debug "^4.3.2"
-
espree "^9.3.2"
-
globals "^13.15.0"
-
ignore "^5.2.0"
-
import-fresh "^3.2.1"
-
js-yaml "^4.1.0"
-
minimatch "^3.1.2"
-
strip-json-comments "^3.1.1"
-
-
"@humanwhocodes/config-array@^0.10.4":
-
version "0.10.4"
-
resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.10.4.tgz#01e7366e57d2ad104feea63e72248f22015c520c"
-
integrity sha512-mXAIHxZT3Vcpg83opl1wGlVZ9xydbfZO3r5YfRSH6Gpp2J/PfdBP0wbDa2sO6/qRbcalpoevVyW6A/fI6LfeMw==
-
dependencies:
-
"@humanwhocodes/object-schema" "^1.2.1"
-
debug "^4.1.1"
-
minimatch "^3.0.4"
-
-
"@humanwhocodes/gitignore-to-minimatch@^1.0.2":
-
version "1.0.2"
-
resolved "https://registry.yarnpkg.com/@humanwhocodes/gitignore-to-minimatch/-/gitignore-to-minimatch-1.0.2.tgz#316b0a63b91c10e53f242efb4ace5c3b34e8728d"
-
integrity sha512-rSqmMJDdLFUsyxR6FMtD00nfQKKLFb1kv+qBbOVKqErvloEIJLo5bDTJTQNTYgeyp78JsA7u/NPi5jT1GR/MuA==
-
-
"@humanwhocodes/object-schema@^1.2.1":
-
version "1.2.1"
-
resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45"
-
integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==
-
-
"@jridgewell/gen-mapping@^0.3.0":
-
version "0.3.2"
-
resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz#c1aedc61e853f2bb9f5dfe6d4442d3b565b253b9"
-
integrity sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==
-
dependencies:
-
"@jridgewell/set-array" "^1.0.1"
-
"@jridgewell/sourcemap-codec" "^1.4.10"
-
"@jridgewell/trace-mapping" "^0.3.9"
-
-
"@jridgewell/resolve-uri@^3.0.3":
-
version "3.1.0"
-
resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78"
-
integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==
-
-
"@jridgewell/set-array@^1.0.1":
-
version "1.1.2"
-
resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72"
-
integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==
-
-
"@jridgewell/source-map@^0.3.2":
-
version "0.3.2"
-
resolved "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.2.tgz#f45351aaed4527a298512ec72f81040c998580fb"
-
integrity sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==
-
dependencies:
-
"@jridgewell/gen-mapping" "^0.3.0"
-
"@jridgewell/trace-mapping" "^0.3.9"
-
-
"@jridgewell/sourcemap-codec@^1.4.10":
-
version "1.4.14"
-
resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24"
-
integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==
-
-
"@jridgewell/trace-mapping@^0.3.9":
-
version "0.3.15"
-
resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.15.tgz#aba35c48a38d3fd84b37e66c9c0423f9744f9774"
-
integrity sha512-oWZNOULl+UbhsgB51uuZzglikfIKSUBO/M9W2OfEjn7cmqoAiCgmv9lyACTUacZwBz0ITnJ2NqjU8Tx0DHL88g==
-
dependencies:
-
"@jridgewell/resolve-uri" "^3.0.3"
-
"@jridgewell/sourcemap-codec" "^1.4.10"
-
-
"@nodelib/fs.scandir@2.1.5":
-
version "2.1.5"
-
resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5"
-
integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==
-
dependencies:
-
"@nodelib/fs.stat" "2.0.5"
-
run-parallel "^1.1.9"
-
-
"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2":
-
version "2.0.5"
-
resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b"
-
integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==
-
-
"@nodelib/fs.walk@^1.2.3":
-
version "1.2.8"
-
resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a"
-
integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==
-
dependencies:
-
"@nodelib/fs.scandir" "2.1.5"
-
fastq "^1.6.0"
-
-
"@rollup/plugin-buble@^0.21.3":
-
version "0.21.3"
-
resolved "https://registry.yarnpkg.com/@rollup/plugin-buble/-/plugin-buble-0.21.3.tgz#1649a915b1d051a4f430d40e7734a7f67a69b33e"
-
integrity sha512-Iv8cCuFPnMdqV4pcyU+OrfjOfagPArRQ1PyQjx5KgHk3dARedI+8PNTLSMpJts0lQJr8yF2pAU4GxpxCBJ9HYw==
-
dependencies:
-
"@rollup/pluginutils" "^3.0.8"
-
"@types/buble" "^0.19.2"
-
buble "^0.20.0"
-
-
"@rollup/plugin-commonjs@^22.0.2":
-
version "22.0.2"
-
resolved "https://registry.yarnpkg.com/@rollup/plugin-commonjs/-/plugin-commonjs-22.0.2.tgz#ee8ca8415cda30d383b4096aad5222435b4b69b6"
-
integrity sha512-//NdP6iIwPbMTcazYsiBMbJW7gfmpHom33u1beiIoHDEM0Q9clvtQB1T0efvMqHeKsGohiHo97BCPCkBXdscwg==
-
dependencies:
-
"@rollup/pluginutils" "^3.1.0"
-
commondir "^1.0.1"
-
estree-walker "^2.0.1"
-
glob "^7.1.6"
-
is-reference "^1.2.1"
-
magic-string "^0.25.7"
-
resolve "^1.17.0"
-
-
"@rollup/plugin-node-resolve@^13.3.0":
-
version "13.3.0"
-
resolved "https://registry.yarnpkg.com/@rollup/plugin-node-resolve/-/plugin-node-resolve-13.3.0.tgz#da1c5c5ce8316cef96a2f823d111c1e4e498801c"
-
integrity sha512-Lus8rbUo1eEcnS4yTFKLZrVumLPY+YayBdWXgFSHYhTT2iJbMhoaaBL3xl5NCdeRytErGr8tZ0L71BMRmnlwSw==
-
dependencies:
-
"@rollup/pluginutils" "^3.1.0"
-
"@types/resolve" "1.17.1"
-
deepmerge "^4.2.2"
-
is-builtin-module "^3.1.0"
-
is-module "^1.0.0"
-
resolve "^1.19.0"
-
-
"@rollup/plugin-typescript@^8.3.4":
-
version "8.3.4"
-
resolved "https://registry.yarnpkg.com/@rollup/plugin-typescript/-/plugin-typescript-8.3.4.tgz#45cdc0787b658b37d0362c705d8de86bc8bc040e"
-
integrity sha512-wt7JnYE9antX6BOXtsxGoeVSu4dZfw0dU3xykfOQ4hC3EddxRbVG/K0xiY1Wup7QOHJcjLYXWAn0Kx9Z1SBHHg==
-
dependencies:
-
"@rollup/pluginutils" "^3.1.0"
-
resolve "^1.17.0"
-
-
"@rollup/pluginutils@^3.0.8", "@rollup/pluginutils@^3.1.0":
-
version "3.1.0"
-
resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-3.1.0.tgz#706b4524ee6dc8b103b3c995533e5ad680c02b9b"
-
integrity sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==
-
dependencies:
-
"@types/estree" "0.0.39"
-
estree-walker "^1.0.1"
-
picomatch "^2.2.2"
-
-
"@rollup/pluginutils@^4.2.1":
-
version "4.2.1"
-
resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-4.2.1.tgz#e6c6c3aba0744edce3fb2074922d3776c0af2a6d"
-
integrity sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==
-
dependencies:
-
estree-walker "^2.0.1"
-
picomatch "^2.2.2"
-
-
"@types/buble@^0.19.2":
-
version "0.19.2"
-
resolved "https://registry.yarnpkg.com/@types/buble/-/buble-0.19.2.tgz#a4289d20b175b3c206aaad80caabdabe3ecdfdd1"
-
integrity sha512-uUD8zIfXMKThmFkahTXDGI3CthFH1kMg2dOm3KLi4GlC5cbARA64bEcUMbbWdWdE73eoc/iBB9PiTMqH0dNS2Q==
-
dependencies:
-
magic-string "^0.25.0"
-
-
"@types/chai-subset@^1.3.3":
-
version "1.3.3"
-
resolved "https://registry.yarnpkg.com/@types/chai-subset/-/chai-subset-1.3.3.tgz#97893814e92abd2c534de422cb377e0e0bdaac94"
-
integrity sha512-frBecisrNGz+F4T6bcc+NLeolfiojh5FxW2klu669+8BARtyQv2C/GkNW6FUodVe4BroGMP/wER/YDGc7rEllw==
-
dependencies:
-
"@types/chai" "*"
-
-
"@types/chai@*", "@types/chai@^4.3.3":
-
version "4.3.3"
-
resolved "https://registry.yarnpkg.com/@types/chai/-/chai-4.3.3.tgz#3c90752792660c4b562ad73b3fbd68bf3bc7ae07"
-
integrity sha512-hC7OMnszpxhZPduX+m+nrx+uFoLkWOMiR4oa/AZF3MuSETYTZmFfJAHqZEM8MVlvfG7BEUcgvtwoCTxBp6hm3g==
-
-
"@types/estree@*":
-
version "1.0.0"
-
resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.0.tgz#5fb2e536c1ae9bf35366eed879e827fa59ca41c2"
-
integrity sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==
-
-
"@types/estree@0.0.39":
-
version "0.0.39"
-
resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.39.tgz#e177e699ee1b8c22d23174caaa7422644389509f"
-
integrity sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==
-
-
"@types/json-schema@^7.0.9":
-
version "7.0.11"
-
resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.11.tgz#d421b6c527a3037f7c84433fd2c4229e016863d3"
-
integrity sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==
-
-
"@types/node@*":
-
version "18.7.2"
-
resolved "https://registry.yarnpkg.com/@types/node/-/node-18.7.2.tgz#22306626110c459aedd2cdf131c749ec781e3b34"
-
integrity sha512-ce7MIiaYWCFv6A83oEultwhBXb22fxwNOQf5DIxWA4WXvDQ7K+L0fbWl/YOfCzlR5B/uFkSnVBhPcOfOECcWvA==
-
-
"@types/parse-json@^4.0.0":
-
version "4.0.0"
-
resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0"
-
integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==
-
-
"@types/resolve@1.17.1":
-
version "1.17.1"
-
resolved "https://registry.yarnpkg.com/@types/resolve/-/resolve-1.17.1.tgz#3afd6ad8967c77e4376c598a82ddd58f46ec45d6"
-
integrity sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==
-
dependencies:
-
"@types/node" "*"
-
-
"@types/zen-observable@^0.8.3":
-
version "0.8.3"
-
resolved "https://registry.yarnpkg.com/@types/zen-observable/-/zen-observable-0.8.3.tgz#781d360c282436494b32fe7d9f7f8e64b3118aa3"
-
integrity sha512-fbF6oTd4sGGy0xjHPKAt+eS2CrxJ3+6gQ3FGcBoIJR2TLAyCkCyI8JqZNy+FeON0AhVgNJoUumVoZQjBFUqHkw==
-
-
"@typescript-eslint/eslint-plugin@^5.33.0":
-
version "5.33.0"
-
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.33.0.tgz#059798888720ec52ffa96c5f868e31a8f70fa3ec"
-
integrity sha512-jHvZNSW2WZ31OPJ3enhLrEKvAZNyAFWZ6rx9tUwaessTc4sx9KmgMNhVcqVAl1ETnT5rU5fpXTLmY9YvC1DCNg==
-
dependencies:
-
"@typescript-eslint/scope-manager" "5.33.0"
-
"@typescript-eslint/type-utils" "5.33.0"
-
"@typescript-eslint/utils" "5.33.0"
-
debug "^4.3.4"
-
functional-red-black-tree "^1.0.1"
-
ignore "^5.2.0"
-
regexpp "^3.2.0"
-
semver "^7.3.7"
-
tsutils "^3.21.0"
-
-
"@typescript-eslint/parser@^5.33.0":
-
version "5.33.0"
-
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.33.0.tgz#26ec3235b74f0667414613727cb98f9b69dc5383"
-
integrity sha512-cgM5cJrWmrDV2KpvlcSkelTBASAs1mgqq+IUGKJvFxWrapHpaRy5EXPQz9YaKF3nZ8KY18ILTiVpUtbIac86/w==
-
dependencies:
-
"@typescript-eslint/scope-manager" "5.33.0"
-
"@typescript-eslint/types" "5.33.0"
-
"@typescript-eslint/typescript-estree" "5.33.0"
-
debug "^4.3.4"
-
-
"@typescript-eslint/scope-manager@5.33.0":
-
version "5.33.0"
-
resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.33.0.tgz#509d7fa540a2c58f66bdcfcf278a3fa79002e18d"
-
integrity sha512-/Jta8yMNpXYpRDl8EwF/M8It2A9sFJTubDo0ATZefGXmOqlaBffEw0ZbkbQ7TNDK6q55NPHFshGBPAZvZkE8Pw==
-
dependencies:
-
"@typescript-eslint/types" "5.33.0"
-
"@typescript-eslint/visitor-keys" "5.33.0"
-
-
"@typescript-eslint/type-utils@5.33.0":
-
version "5.33.0"
-
resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.33.0.tgz#92ad1fba973c078d23767ce2d8d5a601baaa9338"
-
integrity sha512-2zB8uEn7hEH2pBeyk3NpzX1p3lF9dKrEbnXq1F7YkpZ6hlyqb2yZujqgRGqXgRBTHWIUG3NGx/WeZk224UKlIA==
-
dependencies:
-
"@typescript-eslint/utils" "5.33.0"
-
debug "^4.3.4"
-
tsutils "^3.21.0"
-
-
"@typescript-eslint/types@5.33.0":
-
version "5.33.0"
-
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.33.0.tgz#d41c584831805554b063791338b0220b613a275b"
-
integrity sha512-nIMt96JngB4MYFYXpZ/3ZNU4GWPNdBbcB5w2rDOCpXOVUkhtNlG2mmm8uXhubhidRZdwMaMBap7Uk8SZMU/ppw==
-
-
"@typescript-eslint/typescript-estree@5.33.0":
-
version "5.33.0"
-
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.33.0.tgz#02d9c9ade6f4897c09e3508c27de53ad6bfa54cf"
-
integrity sha512-tqq3MRLlggkJKJUrzM6wltk8NckKyyorCSGMq4eVkyL5sDYzJJcMgZATqmF8fLdsWrW7OjjIZ1m9v81vKcaqwQ==
-
dependencies:
-
"@typescript-eslint/types" "5.33.0"
-
"@typescript-eslint/visitor-keys" "5.33.0"
-
debug "^4.3.4"
-
globby "^11.1.0"
-
is-glob "^4.0.3"
-
semver "^7.3.7"
-
tsutils "^3.21.0"
-
-
"@typescript-eslint/utils@5.33.0":
-
version "5.33.0"
-
resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.33.0.tgz#46797461ce3146e21c095d79518cc0f8ec574038"
-
integrity sha512-JxOAnXt9oZjXLIiXb5ZIcZXiwVHCkqZgof0O8KPgz7C7y0HS42gi75PdPlqh1Tf109M0fyUw45Ao6JLo7S5AHw==
-
dependencies:
-
"@types/json-schema" "^7.0.9"
-
"@typescript-eslint/scope-manager" "5.33.0"
-
"@typescript-eslint/types" "5.33.0"
-
"@typescript-eslint/typescript-estree" "5.33.0"
-
eslint-scope "^5.1.1"
-
eslint-utils "^3.0.0"
-
-
"@typescript-eslint/visitor-keys@5.33.0":
-
version "5.33.0"
-
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.33.0.tgz#fbcbb074e460c11046e067bc3384b5d66b555484"
-
integrity sha512-/XsqCzD4t+Y9p5wd9HZiptuGKBlaZO5showwqODii5C0nZawxWLF+Q6k5wYHBrQv96h6GYKyqqMHCSTqta8Kiw==
-
dependencies:
-
"@typescript-eslint/types" "5.33.0"
-
eslint-visitor-keys "^3.3.0"
-
-
acorn-dynamic-import@^4.0.0:
-
version "4.0.0"
-
resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-4.0.0.tgz#482210140582a36b83c3e342e1cfebcaa9240948"
-
integrity sha512-d3OEjQV4ROpoflsnUA8HozoIR504TFxNivYEUi6uwz0IYhBkTDXGuWlNdMtybRt3nqVx/L6XqMt0FxkXuWKZhw==
-
-
acorn-jsx@^5.2.0, acorn-jsx@^5.3.2:
-
version "5.3.2"
-
resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937"
-
integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==
-
-
acorn@^6.4.1:
-
version "6.4.2"
-
resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.2.tgz#35866fd710528e92de10cf06016498e47e39e1e6"
-
integrity sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==
-
-
acorn@^8.5.0, acorn@^8.8.0:
-
version "8.8.0"
-
resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.0.tgz#88c0187620435c7f6015803f5539dae05a9dbea8"
-
integrity sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==
-
-
aggregate-error@^3.0.0:
-
version "3.1.0"
-
resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a"
-
integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==
-
dependencies:
-
clean-stack "^2.0.0"
-
indent-string "^4.0.0"
-
-
ajv@^6.10.0, ajv@^6.12.4:
-
version "6.12.6"
-
resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4"
-
integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==
-
dependencies:
-
fast-deep-equal "^3.1.1"
-
fast-json-stable-stringify "^2.0.0"
-
json-schema-traverse "^0.4.1"
-
uri-js "^4.2.2"
-
-
ansi-escapes@^4.3.0:
-
version "4.3.2"
-
resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e"
-
integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==
-
dependencies:
-
type-fest "^0.21.3"
-
-
ansi-regex@^5.0.1:
-
version "5.0.1"
-
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304"
-
integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==
-
-
ansi-regex@^6.0.1:
-
version "6.0.1"
-
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.0.1.tgz#3183e38fae9a65d7cb5e53945cd5897d0260a06a"
-
integrity sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==
-
-
ansi-styles@^3.2.1:
-
version "3.2.1"
-
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
-
integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
-
dependencies:
-
color-convert "^1.9.0"
-
-
ansi-styles@^4.0.0, ansi-styles@^4.1.0:
-
version "4.3.0"
-
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937"
-
integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
-
dependencies:
-
color-convert "^2.0.1"
-
-
ansi-styles@^6.0.0:
-
version "6.1.0"
-
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.1.0.tgz#87313c102b8118abd57371afab34618bf7350ed3"
-
integrity sha512-VbqNsoz55SYGczauuup0MFUyXNQviSpFTj1RQtFzmQLk18qbVSpTFFGMT293rmDaQuKCT6InmbuEyUne4mTuxQ==
-
-
argparse@^2.0.1:
-
version "2.0.1"
-
resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38"
-
integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==
-
-
array-union@^2.1.0:
-
version "2.1.0"
-
resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d"
-
integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==
-
-
assertion-error@^1.1.0:
-
version "1.1.0"
-
resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.1.0.tgz#e60b6b0e8f301bd97e5375215bda406c85118c0b"
-
integrity sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==
-
-
astral-regex@^2.0.0:
-
version "2.0.0"
-
resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31"
-
integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==
-
-
balanced-match@^1.0.0:
-
version "1.0.2"
-
resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
-
integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
-
-
brace-expansion@^1.1.7:
-
version "1.1.11"
-
resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
-
integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
-
dependencies:
-
balanced-match "^1.0.0"
-
concat-map "0.0.1"
-
-
brace-expansion@^2.0.1:
-
version "2.0.1"
-
resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae"
-
integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==
-
dependencies:
-
balanced-match "^1.0.0"
-
-
braces@^3.0.2:
-
version "3.0.2"
-
resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"
-
integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==
-
dependencies:
-
fill-range "^7.0.1"
-
-
buble@^0.20.0:
-
version "0.20.0"
-
resolved "https://registry.yarnpkg.com/buble/-/buble-0.20.0.tgz#a143979a8d968b7f76b57f38f2e7ce7cfe938d1f"
-
integrity sha512-/1gnaMQE8xvd5qsNBl+iTuyjJ9XxeaVxAMF86dQ4EyxFJOZtsgOS8Ra+7WHgZTam5IFDtt4BguN0sH0tVTKrOw==
-
dependencies:
-
acorn "^6.4.1"
-
acorn-dynamic-import "^4.0.0"
-
acorn-jsx "^5.2.0"
-
chalk "^2.4.2"
-
magic-string "^0.25.7"
-
minimist "^1.2.5"
-
regexpu-core "4.5.4"
-
-
buffer-from@^1.0.0:
-
version "1.1.2"
-
resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5"
-
integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==
-
-
builtin-modules@^3.3.0:
-
version "3.3.0"
-
resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.3.0.tgz#cae62812b89801e9656336e46223e030386be7b6"
-
integrity sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==
-
-
call-bind@^1.0.0, call-bind@^1.0.2:
-
version "1.0.2"
-
resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c"
-
integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==
-
dependencies:
-
function-bind "^1.1.1"
-
get-intrinsic "^1.0.2"
-
-
callbag-from-iter@^1.3.0:
-
version "1.3.0"
-
resolved "https://registry.yarnpkg.com/callbag-from-iter/-/callbag-from-iter-1.3.0.tgz#6757c1de9f8558b877546d475e3082823662c54c"
-
integrity sha512-iBc6O6DYDWQBjlOZzdU/SbJofK0pN3TjNWC4fDIQePBk5FWCZKVll/coXiVU6gpwbBaS0Om/d/PVbVK8Ki17Ew==
-
dependencies:
-
callbag "^1.2.0"
-
-
callbag-iterate@^1.0.0:
-
version "1.0.0"
-
resolved "https://registry.yarnpkg.com/callbag-iterate/-/callbag-iterate-1.0.0.tgz#97116f09296ef2d5073b35125891dca93349aeeb"
-
integrity sha512-bynCbDuqGZkj1mXAhGr8jMf8Vhifps+G+pF3xlcz3jcaZLNXHghVjValnJtBTg2N74cyl347UzagJ8niJpyF6Q==
-
-
callbag-take@^1.5.0:
-
version "1.5.0"
-
resolved "https://registry.yarnpkg.com/callbag-take/-/callbag-take-1.5.0.tgz#3062b42f8ed4ed7e021d2cd1306c029d2ef4a12d"
-
integrity sha512-8aOxp+gzfVQtDe+tk9PhKbC9QR9Vap4KFA0xccUiXFK9VjIS0fSt/Yi454viPpMhJkhRcx1BsjyF34Cj57W89A==
-
dependencies:
-
callbag "^1.1.0"
-
-
callbag@^1.1.0, callbag@^1.2.0:
-
version "1.5.1"
-
resolved "https://registry.yarnpkg.com/callbag/-/callbag-1.5.1.tgz#383464c8c2e81a584b8d7df9feace4f7720409f1"
-
integrity sha512-FGpkXYZ018Wpeevhsp7R2iABZuDamg54TaObKI48JBNGzMlkb9bRwS54eR0sgFksQpspsCan4iaaVbAbxm9MIg==
-
-
callsites@^3.0.0:
-
version "3.1.0"
-
resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
-
integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
-
-
chai@^4.3.6:
-
version "4.3.6"
-
resolved "https://registry.yarnpkg.com/chai/-/chai-4.3.6.tgz#ffe4ba2d9fa9d6680cc0b370adae709ec9011e9c"
-
integrity sha512-bbcp3YfHCUzMOvKqsztczerVgBKSsEijCySNlHHbX3VG1nskvqjz5Rfso1gGwD6w6oOV3eI60pKuMOV5MV7p3Q==
-
dependencies:
-
assertion-error "^1.1.0"
-
check-error "^1.0.2"
-
deep-eql "^3.0.1"
-
get-func-name "^2.0.0"
-
loupe "^2.3.1"
-
pathval "^1.1.1"
-
type-detect "^4.0.5"
-
-
chalk@^2.0.0, chalk@^2.4.1, chalk@^2.4.2:
-
version "2.4.2"
-
resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
-
integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
-
dependencies:
-
ansi-styles "^3.2.1"
-
escape-string-regexp "^1.0.5"
-
supports-color "^5.3.0"
-
-
chalk@^4.0.0:
-
version "4.1.2"
-
resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01"
-
integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==
-
dependencies:
-
ansi-styles "^4.1.0"
-
supports-color "^7.1.0"
-
-
check-error@^1.0.2:
-
version "1.0.2"
-
resolved "https://registry.yarnpkg.com/check-error/-/check-error-1.0.2.tgz#574d312edd88bb5dd8912e9286dd6c0aed4aac82"
-
integrity sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA==
-
-
ci-info@^2.0.0:
-
version "2.0.0"
-
resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46"
-
integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==
-
-
clean-stack@^2.0.0:
-
version "2.2.0"
-
resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b"
-
integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==
-
-
cli-cursor@^3.1.0:
-
version "3.1.0"
-
resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307"
-
integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==
-
dependencies:
-
restore-cursor "^3.1.0"
-
-
cli-truncate@^2.1.0:
-
version "2.1.0"
-
resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-2.1.0.tgz#c39e28bf05edcde5be3b98992a22deed5a2b93c7"
-
integrity sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==
-
dependencies:
-
slice-ansi "^3.0.0"
-
string-width "^4.2.0"
-
-
cli-truncate@^3.1.0:
-
version "3.1.0"
-
resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-3.1.0.tgz#3f23ab12535e3d73e839bb43e73c9de487db1389"
-
integrity sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==
-
dependencies:
-
slice-ansi "^5.0.0"
-
string-width "^5.0.0"
-
-
color-convert@^1.9.0:
-
version "1.9.3"
-
resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
-
integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
-
dependencies:
-
color-name "1.1.3"
-
-
color-convert@^2.0.1:
-
version "2.0.1"
-
resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
-
integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
-
dependencies:
-
color-name "~1.1.4"
-
-
color-name@1.1.3:
-
version "1.1.3"
-
resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
-
integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==
-
-
color-name@~1.1.4:
-
version "1.1.4"
-
resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
-
integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
-
-
colorette@^2.0.16, colorette@^2.0.17:
-
version "2.0.19"
-
resolved "https://registry.yarnpkg.com/colorette/-/colorette-2.0.19.tgz#cdf044f47ad41a0f4b56b3a0d5b4e6e1a2d5a798"
-
integrity sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==
-
-
commander@^2.20.0:
-
version "2.20.3"
-
resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33"
-
integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==
-
-
commander@^6.1.0:
-
version "6.2.1"
-
resolved "https://registry.yarnpkg.com/commander/-/commander-6.2.1.tgz#0792eb682dfbc325999bb2b84fddddba110ac73c"
-
integrity sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==
-
-
commander@^9.3.0:
-
version "9.4.0"
-
resolved "https://registry.yarnpkg.com/commander/-/commander-9.4.0.tgz#bc4a40918fefe52e22450c111ecd6b7acce6f11c"
-
integrity sha512-sRPT+umqkz90UA8M1yqYfnHlZA7fF6nSphDtxeywPZ49ysjxDQybzk13CL+mXekDRG92skbcqCLVovuCusNmFw==
-
-
commondir@^1.0.1:
-
version "1.0.1"
-
resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
-
integrity sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==
-
-
compare-versions@^3.6.0:
-
version "3.6.0"
-
resolved "https://registry.yarnpkg.com/compare-versions/-/compare-versions-3.6.0.tgz#1a5689913685e5a87637b8d3ffca75514ec41d62"
-
integrity sha512-W6Af2Iw1z4CB7q4uU4hv646dW9GQuBM+YpC0UvUCWSD8w90SJjp+ujJuXaEMtAXBtSqGfMPuFOVn4/+FlaqfBA==
-
-
concat-map@0.0.1:
-
version "0.0.1"
-
resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
-
integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==
-
-
cosmiconfig@^7.0.0:
-
version "7.0.1"
-
resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.0.1.tgz#714d756522cace867867ccb4474c5d01bbae5d6d"
-
integrity sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==
-
dependencies:
-
"@types/parse-json" "^4.0.0"
-
import-fresh "^3.2.1"
-
parse-json "^5.0.0"
-
path-type "^4.0.0"
-
yaml "^1.10.0"
-
-
cross-spawn@^6.0.5:
-
version "6.0.5"
-
resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4"
-
integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==
-
dependencies:
-
nice-try "^1.0.4"
-
path-key "^2.0.1"
-
semver "^5.5.0"
-
shebang-command "^1.2.0"
-
which "^1.2.9"
-
-
cross-spawn@^7.0.2, cross-spawn@^7.0.3:
-
version "7.0.3"
-
resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6"
-
integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==
-
dependencies:
-
path-key "^3.1.0"
-
shebang-command "^2.0.0"
-
which "^2.0.1"
-
-
debug@^4.1.1, debug@^4.3.2, debug@^4.3.4:
-
version "4.3.4"
-
resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865"
-
integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==
-
dependencies:
-
ms "2.1.2"
-
-
deep-eql@^3.0.1:
-
version "3.0.1"
-
resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-3.0.1.tgz#dfc9404400ad1c8fe023e7da1df1c147c4b444df"
-
integrity sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw==
-
dependencies:
-
type-detect "^4.0.0"
-
-
deep-is@^0.1.3:
-
version "0.1.4"
-
resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831"
-
integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==
-
-
deepmerge@^4.2.2:
-
version "4.2.2"
-
resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955"
-
integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==
-
-
define-properties@^1.1.3, define-properties@^1.1.4:
-
version "1.1.4"
-
resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.4.tgz#0b14d7bd7fbeb2f3572c3a7eda80ea5d57fb05b1"
-
integrity sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==
-
dependencies:
-
has-property-descriptors "^1.0.0"
-
object-keys "^1.1.1"
-
-
dir-glob@^3.0.1:
-
version "3.0.1"
-
resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f"
-
integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==
-
dependencies:
-
path-type "^4.0.0"
-
-
doctrine@^3.0.0:
-
version "3.0.0"
-
resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961"
-
integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==
-
dependencies:
-
esutils "^2.0.2"
-
-
eastasianwidth@^0.2.0:
-
version "0.2.0"
-
resolved "https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz#696ce2ec0aa0e6ea93a397ffcf24aa7840c827cb"
-
integrity sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==
-
-
emoji-regex@^8.0.0:
-
version "8.0.0"
-
resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37"
-
integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==
-
-
emoji-regex@^9.2.2:
-
version "9.2.2"
-
resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72"
-
integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==
-
-
error-ex@^1.3.1:
-
version "1.3.2"
-
resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf"
-
integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==
-
dependencies:
-
is-arrayish "^0.2.1"
-
-
es-abstract@^1.19.0, es-abstract@^1.19.1, es-abstract@^1.19.5:
-
version "1.20.1"
-
resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.20.1.tgz#027292cd6ef44bd12b1913b828116f54787d1814"
-
integrity sha512-WEm2oBhfoI2sImeM4OF2zE2V3BYdSF+KnSi9Sidz51fQHd7+JuF8Xgcj9/0o+OWeIeIS/MiuNnlruQrJf16GQA==
-
dependencies:
-
call-bind "^1.0.2"
-
es-to-primitive "^1.2.1"
-
function-bind "^1.1.1"
-
function.prototype.name "^1.1.5"
-
get-intrinsic "^1.1.1"
-
get-symbol-description "^1.0.0"
-
has "^1.0.3"
-
has-property-descriptors "^1.0.0"
-
has-symbols "^1.0.3"
-
internal-slot "^1.0.3"
-
is-callable "^1.2.4"
-
is-negative-zero "^2.0.2"
-
is-regex "^1.1.4"
-
is-shared-array-buffer "^1.0.2"
-
is-string "^1.0.7"
-
is-weakref "^1.0.2"
-
object-inspect "^1.12.0"
-
object-keys "^1.1.1"
-
object.assign "^4.1.2"
-
regexp.prototype.flags "^1.4.3"
-
string.prototype.trimend "^1.0.5"
-
string.prototype.trimstart "^1.0.5"
-
unbox-primitive "^1.0.2"
-
-
es-to-primitive@^1.2.1:
-
version "1.2.1"
-
resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a"
-
integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==
-
dependencies:
-
is-callable "^1.1.4"
-
is-date-object "^1.0.1"
-
is-symbol "^1.0.2"
-
-
esbuild-android-64@0.15.9:
-
version "0.15.9"
-
resolved "https://registry.yarnpkg.com/esbuild-android-64/-/esbuild-android-64-0.15.9.tgz#4a7eb320ca8d3a305f14792061fd9614ccebb7c0"
-
integrity sha512-HQCX7FJn9T4kxZQkhPjNZC7tBWZqJvhlLHPU2SFzrQB/7nDXjmTIFpFTjt7Bd1uFpeXmuwf5h5fZm+x/hLnhbw==
-
-
esbuild-android-arm64@0.15.9:
-
version "0.15.9"
-
resolved "https://registry.yarnpkg.com/esbuild-android-arm64/-/esbuild-android-arm64-0.15.9.tgz#c948e5686df20857ad361ec67e070d40d7cab985"
-
integrity sha512-E6zbLfqbFVCNEKircSHnPiSTsm3fCRxeIMPfrkS33tFjIAoXtwegQfVZqMGR0FlsvVxp2NEDOUz+WW48COCjSg==
-
-
esbuild-darwin-64@0.15.9:
-
version "0.15.9"
-
resolved "https://registry.yarnpkg.com/esbuild-darwin-64/-/esbuild-darwin-64-0.15.9.tgz#25f564fa4b39c1cec84dc46bce5634fdbce1d5e4"
-
integrity sha512-gI7dClcDN/HHVacZhTmGjl0/TWZcGuKJ0I7/xDGJwRQQn7aafZGtvagOFNmuOq+OBFPhlPv1T6JElOXb0unkSQ==
-
-
esbuild-darwin-arm64@0.15.9:
-
version "0.15.9"
-
resolved "https://registry.yarnpkg.com/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.15.9.tgz#60faea3ed95d15239536aa88d06bb82b29278a86"
-
integrity sha512-VZIMlcRN29yg/sv7DsDwN+OeufCcoTNaTl3Vnav7dL/nvsApD7uvhVRbgyMzv0zU/PP0xRhhIpTyc7lxEzHGSw==
-
-
esbuild-freebsd-64@0.15.9:
-
version "0.15.9"
-
resolved "https://registry.yarnpkg.com/esbuild-freebsd-64/-/esbuild-freebsd-64-0.15.9.tgz#0339ef1c90a919175e7816788224517896657a0e"
-
integrity sha512-uM4z5bTvuAXqPxrI204txhlsPIolQPWRMLenvGuCPZTnnGlCMF2QLs0Plcm26gcskhxewYo9LkkmYSS5Czrb5A==
-
-
esbuild-freebsd-arm64@0.15.9:
-
version "0.15.9"
-
resolved "https://registry.yarnpkg.com/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.15.9.tgz#32abfc0be3ae3dd38e5a86a9beadbbcf592f1b57"
-
integrity sha512-HHDjT3O5gWzicGdgJ5yokZVN9K9KG05SnERwl9nBYZaCjcCgj/sX8Ps1jvoFSfNCO04JSsHSOWo4qvxFuj8FoA==
-
-
esbuild-linux-32@0.15.9:
-
version "0.15.9"
-
resolved "https://registry.yarnpkg.com/esbuild-linux-32/-/esbuild-linux-32-0.15.9.tgz#93581348a4da7ed2b29bc5539f2605ad7fcee77b"
-
integrity sha512-AQIdE8FugGt1DkcekKi5ycI46QZpGJ/wqcMr7w6YUmOmp2ohQ8eO4sKUsOxNOvYL7hGEVwkndSyszR6HpVHLFg==
-
-
esbuild-linux-64@0.15.9:
-
version "0.15.9"
-
resolved "https://registry.yarnpkg.com/esbuild-linux-64/-/esbuild-linux-64-0.15.9.tgz#0d171e7946c95d0d3ed4826026af2c5632d7dcc4"
-
integrity sha512-4RXjae7g6Qs7StZyiYyXTZXBlfODhb1aBVAjd+ANuPmMhWthQilWo7rFHwJwL7DQu1Fjej2sODAVwLbcIVsAYQ==
-
-
esbuild-linux-arm64@0.15.9:
-
version "0.15.9"
-
resolved "https://registry.yarnpkg.com/esbuild-linux-arm64/-/esbuild-linux-arm64-0.15.9.tgz#9838795a3720cbe736d3bc20621bd366eac22f24"
-
integrity sha512-a+bTtxJmYmk9d+s2W4/R1SYKDDAldOKmWjWP0BnrWtDbvUBNOm++du0ysPju4mZVoEFgS1yLNW+VXnG/4FNwdQ==
-
-
esbuild-linux-arm@0.15.9:
-
version "0.15.9"
-
resolved "https://registry.yarnpkg.com/esbuild-linux-arm/-/esbuild-linux-arm-0.15.9.tgz#dce96cd817bc7376f6af3967649c4ab1f2f79506"
-
integrity sha512-3Zf2GVGUOI7XwChH3qrnTOSqfV1V4CAc/7zLVm4lO6JT6wbJrTgEYCCiNSzziSju+J9Jhf9YGWk/26quWPC6yQ==
-
-
esbuild-linux-mips64le@0.15.9:
-
version "0.15.9"
-
resolved "https://registry.yarnpkg.com/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.15.9.tgz#0335a0739e61aa97cb9b4a018e3facfcca9cdcfd"
-
integrity sha512-Zn9HSylDp89y+TRREMDoGrc3Z4Hs5u56ozZLQCiZAUx2+HdbbXbWdjmw3FdTJ/i7t5Cew6/Q+6kfO3KCcFGlyw==
-
-
esbuild-linux-ppc64le@0.15.9:
-
version "0.15.9"
-
resolved "https://registry.yarnpkg.com/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.15.9.tgz#18482afb95b8a705e2da0a59d7131bff221281f9"
-
integrity sha512-OEiOxNAMH9ENFYqRsWUj3CWyN3V8P3ZXyfNAtX5rlCEC/ERXrCEFCJji/1F6POzsXAzxvUJrTSTCy7G6BhA6Fw==
-
-
esbuild-linux-riscv64@0.15.9:
-
version "0.15.9"
-
resolved "https://registry.yarnpkg.com/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.15.9.tgz#03b6f9708272c117006b9ce1c9ae8aab91b5a5b6"
-
integrity sha512-ukm4KsC3QRausEFjzTsOZ/qqazw0YvJsKmfoZZm9QW27OHjk2XKSQGGvx8gIEswft/Sadp03/VZvAaqv5AIwNA==
-
-
esbuild-linux-s390x@0.15.9:
-
version "0.15.9"
-
resolved "https://registry.yarnpkg.com/esbuild-linux-s390x/-/esbuild-linux-s390x-0.15.9.tgz#65fb645623d575780f155f0ee52935e62f9cca4f"
-
integrity sha512-uDOQEH55wQ6ahcIKzQr3VyjGc6Po/xblLGLoUk3fVL1qjlZAibtQr6XRfy5wPJLu/M2o0vQKLq4lyJ2r1tWKcw==
-
-
esbuild-netbsd-64@0.15.9:
-
version "0.15.9"
-
resolved "https://registry.yarnpkg.com/esbuild-netbsd-64/-/esbuild-netbsd-64-0.15.9.tgz#7894297bb9e11f3d2f6f31efecd1be4e181f0d54"
-
integrity sha512-yWgxaYTQz+TqX80wXRq6xAtb7GSBAp6gqLKfOdANg9qEmAI1Bxn04IrQr0Mzm4AhxvGKoHzjHjMgXbCCSSDxcw==
-
-
esbuild-openbsd-64@0.15.9:
-
version "0.15.9"
-
resolved "https://registry.yarnpkg.com/esbuild-openbsd-64/-/esbuild-openbsd-64-0.15.9.tgz#0f9d4c6b6772ae50d491d68ad4cc028300dda7c0"
-
integrity sha512-JmS18acQl4iSAjrEha1MfEmUMN4FcnnrtTaJ7Qg0tDCOcgpPPQRLGsZqhes0vmx8VA6IqRyScqXvaL7+Q0Uf3A==
-
-
esbuild-sunos-64@0.15.9:
-
version "0.15.9"
-
resolved "https://registry.yarnpkg.com/esbuild-sunos-64/-/esbuild-sunos-64-0.15.9.tgz#c32b7ce574b08f814de810ce7c1e34b843768126"
-
integrity sha512-UKynGSWpzkPmXW3D2UMOD9BZPIuRaSqphxSCwScfEE05Be3KAmvjsBhht1fLzKpiFVJb0BYMd4jEbWMyJ/z1hQ==
-
-
esbuild-windows-32@0.15.9:
-
version "0.15.9"
-
resolved "https://registry.yarnpkg.com/esbuild-windows-32/-/esbuild-windows-32-0.15.9.tgz#37a8f7cfccdb2177cd46613a1a1e1fcb419d36df"
-
integrity sha512-aqXvu4/W9XyTVqO/hw3rNxKE1TcZiEYHPsXM9LwYmKSX9/hjvfIJzXwQBlPcJ/QOxedfoMVH0YnhhQ9Ffb0RGA==
-
-
esbuild-windows-64@0.15.9:
-
version "0.15.9"
-
resolved "https://registry.yarnpkg.com/esbuild-windows-64/-/esbuild-windows-64-0.15.9.tgz#5fe1e76fc13dd7f520febecaea110b6f1649c7b2"
-
integrity sha512-zm7h91WUmlS4idMtjvCrEeNhlH7+TNOmqw5dJPJZrgFaxoFyqYG6CKDpdFCQXdyKpD5yvzaQBOMVTCBVKGZDEg==
-
-
esbuild-windows-arm64@0.15.9:
-
version "0.15.9"
-
resolved "https://registry.yarnpkg.com/esbuild-windows-arm64/-/esbuild-windows-arm64-0.15.9.tgz#98504428f7ba7d2cfc11940be68ee1139173fdce"
-
integrity sha512-yQEVIv27oauAtvtuhJVfSNMztJJX47ismRS6Sv2QMVV9RM+6xjbMWuuwM2nxr5A2/gj/mu2z9YlQxiwoFRCfZA==
-
-
esbuild@^0.15.6:
-
version "0.15.9"
-
resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.15.9.tgz#33fb18b67b85004b6f7616bec955ca4b3e58935d"
-
integrity sha512-OnYr1rkMVxtmMHIAKZLMcEUlJmqcbxBz9QoBU8G9v455na0fuzlT/GLu6l+SRghrk0Mm2fSSciMmzV43Q8e0Gg==
-
optionalDependencies:
-
"@esbuild/android-arm" "0.15.9"
-
"@esbuild/linux-loong64" "0.15.9"
-
esbuild-android-64 "0.15.9"
-
esbuild-android-arm64 "0.15.9"
-
esbuild-darwin-64 "0.15.9"
-
esbuild-darwin-arm64 "0.15.9"
-
esbuild-freebsd-64 "0.15.9"
-
esbuild-freebsd-arm64 "0.15.9"
-
esbuild-linux-32 "0.15.9"
-
esbuild-linux-64 "0.15.9"
-
esbuild-linux-arm "0.15.9"
-
esbuild-linux-arm64 "0.15.9"
-
esbuild-linux-mips64le "0.15.9"
-
esbuild-linux-ppc64le "0.15.9"
-
esbuild-linux-riscv64 "0.15.9"
-
esbuild-linux-s390x "0.15.9"
-
esbuild-netbsd-64 "0.15.9"
-
esbuild-openbsd-64 "0.15.9"
-
esbuild-sunos-64 "0.15.9"
-
esbuild-windows-32 "0.15.9"
-
esbuild-windows-64 "0.15.9"
-
esbuild-windows-arm64 "0.15.9"
-
-
escape-string-regexp@^1.0.5:
-
version "1.0.5"
-
resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
-
integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==
-
-
escape-string-regexp@^4.0.0:
-
version "4.0.0"
-
resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34"
-
integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==
-
-
eslint-config-prettier@^8.5.0:
-
version "8.5.0"
-
resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-8.5.0.tgz#5a81680ec934beca02c7b1a61cf8ca34b66feab1"
-
integrity sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==
-
-
eslint-plugin-prettier@^4.2.1:
-
version "4.2.1"
-
resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-4.2.1.tgz#651cbb88b1dab98bfd42f017a12fa6b2d993f94b"
-
integrity sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==
-
dependencies:
-
prettier-linter-helpers "^1.0.0"
-
-
eslint-scope@^5.1.1:
-
version "5.1.1"
-
resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c"
-
integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==
-
dependencies:
-
esrecurse "^4.3.0"
-
estraverse "^4.1.1"
-
-
eslint-scope@^7.1.1:
-
version "7.1.1"
-
resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.1.1.tgz#fff34894c2f65e5226d3041ac480b4513a163642"
-
integrity sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==
-
dependencies:
-
esrecurse "^4.3.0"
-
estraverse "^5.2.0"
-
-
eslint-utils@^3.0.0:
-
version "3.0.0"
-
resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672"
-
integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==
-
dependencies:
-
eslint-visitor-keys "^2.0.0"
-
-
eslint-visitor-keys@^2.0.0:
-
version "2.1.0"
-
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303"
-
integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==
-
-
eslint-visitor-keys@^3.3.0:
-
version "3.3.0"
-
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826"
-
integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==
-
-
eslint@^8.21.0:
-
version "8.21.0"
-
resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.21.0.tgz#1940a68d7e0573cef6f50037addee295ff9be9ef"
-
integrity sha512-/XJ1+Qurf1T9G2M5IHrsjp+xrGT73RZf23xA1z5wB1ZzzEAWSZKvRwhWxTFp1rvkvCfwcvAUNAP31bhKTTGfDA==
-
dependencies:
-
"@eslint/eslintrc" "^1.3.0"
-
"@humanwhocodes/config-array" "^0.10.4"
-
"@humanwhocodes/gitignore-to-minimatch" "^1.0.2"
-
ajv "^6.10.0"
-
chalk "^4.0.0"
-
cross-spawn "^7.0.2"
-
debug "^4.3.2"
-
doctrine "^3.0.0"
-
escape-string-regexp "^4.0.0"
-
eslint-scope "^7.1.1"
-
eslint-utils "^3.0.0"
-
eslint-visitor-keys "^3.3.0"
-
espree "^9.3.3"
-
esquery "^1.4.0"
-
esutils "^2.0.2"
-
fast-deep-equal "^3.1.3"
-
file-entry-cache "^6.0.1"
-
find-up "^5.0.0"
-
functional-red-black-tree "^1.0.1"
-
glob-parent "^6.0.1"
-
globals "^13.15.0"
-
globby "^11.1.0"
-
grapheme-splitter "^1.0.4"
-
ignore "^5.2.0"
-
import-fresh "^3.0.0"
-
imurmurhash "^0.1.4"
-
is-glob "^4.0.0"
-
js-yaml "^4.1.0"
-
json-stable-stringify-without-jsonify "^1.0.1"
-
levn "^0.4.1"
-
lodash.merge "^4.6.2"
-
minimatch "^3.1.2"
-
natural-compare "^1.4.0"
-
optionator "^0.9.1"
-
regexpp "^3.2.0"
-
strip-ansi "^6.0.1"
-
strip-json-comments "^3.1.0"
-
text-table "^0.2.0"
-
v8-compile-cache "^2.0.3"
-
-
espree@^9.3.2, espree@^9.3.3:
-
version "9.3.3"
-
resolved "https://registry.yarnpkg.com/espree/-/espree-9.3.3.tgz#2dd37c4162bb05f433ad3c1a52ddf8a49dc08e9d"
-
integrity sha512-ORs1Rt/uQTqUKjDdGCyrtYxbazf5umATSf/K4qxjmZHORR6HJk+2s/2Pqe+Kk49HHINC/xNIrGfgh8sZcll0ng==
-
dependencies:
-
acorn "^8.8.0"
-
acorn-jsx "^5.3.2"
-
eslint-visitor-keys "^3.3.0"
-
-
esquery@^1.4.0:
-
version "1.4.0"
-
resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5"
-
integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==
-
dependencies:
-
estraverse "^5.1.0"
-
-
esrecurse@^4.3.0:
-
version "4.3.0"
-
resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921"
-
integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==
-
dependencies:
-
estraverse "^5.2.0"
-
-
estraverse@^4.1.1:
-
version "4.3.0"
-
resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d"
-
integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==
-
-
estraverse@^5.1.0, estraverse@^5.2.0:
-
version "5.3.0"
-
resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123"
-
integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==
-
-
estree-walker@^1.0.1:
-
version "1.0.1"
-
resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-1.0.1.tgz#31bc5d612c96b704106b477e6dd5d8aa138cb700"
-
integrity sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==
-
-
estree-walker@^2.0.1:
-
version "2.0.2"
-
resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-2.0.2.tgz#52f010178c2a4c117a7757cfe942adb7d2da4cac"
-
integrity sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==
-
-
esutils@^2.0.2:
-
version "2.0.3"
-
resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64"
-
integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==
-
-
execa@^6.1.0:
-
version "6.1.0"
-
resolved "https://registry.yarnpkg.com/execa/-/execa-6.1.0.tgz#cea16dee211ff011246556388effa0818394fb20"
-
integrity sha512-QVWlX2e50heYJcCPG0iWtf8r0xjEYfz/OYLGDYH+IyjWezzPNxz63qNFOu0l4YftGWuizFVZHHs8PrLU5p2IDA==
-
dependencies:
-
cross-spawn "^7.0.3"
-
get-stream "^6.0.1"
-
human-signals "^3.0.1"
-
is-stream "^3.0.0"
-
merge-stream "^2.0.0"
-
npm-run-path "^5.1.0"
-
onetime "^6.0.0"
-
signal-exit "^3.0.7"
-
strip-final-newline "^3.0.0"
-
-
fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3:
-
version "3.1.3"
-
resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525"
-
integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==
-
-
fast-diff@^1.1.2:
-
version "1.2.0"
-
resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.2.0.tgz#73ee11982d86caaf7959828d519cfe927fac5f03"
-
integrity sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==
-
-
fast-glob@^3.2.9:
-
version "3.2.11"
-
resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.11.tgz#a1172ad95ceb8a16e20caa5c5e56480e5129c1d9"
-
integrity sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==
-
dependencies:
-
"@nodelib/fs.stat" "^2.0.2"
-
"@nodelib/fs.walk" "^1.2.3"
-
glob-parent "^5.1.2"
-
merge2 "^1.3.0"
-
micromatch "^4.0.4"
-
-
fast-json-stable-stringify@^2.0.0:
-
version "2.1.0"
-
resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633"
-
integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==
-
-
fast-levenshtein@^2.0.6:
-
version "2.0.6"
-
resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
-
integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==
-
-
fastq@^1.6.0:
-
version "1.13.0"
-
resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.13.0.tgz#616760f88a7526bdfc596b7cab8c18938c36b98c"
-
integrity sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==
-
dependencies:
-
reusify "^1.0.4"
-
-
file-entry-cache@^6.0.1:
-
version "6.0.1"
-
resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027"
-
integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==
-
dependencies:
-
flat-cache "^3.0.4"
-
-
fill-range@^7.0.1:
-
version "7.0.1"
-
resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40"
-
integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==
-
dependencies:
-
to-regex-range "^5.0.1"
-
-
find-up@^5.0.0:
-
version "5.0.0"
-
resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc"
-
integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==
-
dependencies:
-
locate-path "^6.0.0"
-
path-exists "^4.0.0"
-
-
find-versions@^4.0.0:
-
version "4.0.0"
-
resolved "https://registry.yarnpkg.com/find-versions/-/find-versions-4.0.0.tgz#3c57e573bf97769b8cb8df16934b627915da4965"
-
integrity sha512-wgpWy002tA+wgmO27buH/9KzyEOQnKsG/R0yrcjPT9BOFm0zRBVQbZ95nRGXWMywS8YR5knRbpohio0bcJABxQ==
-
dependencies:
-
semver-regex "^3.1.2"
-
-
flat-cache@^3.0.4:
-
version "3.0.4"
-
resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11"
-
integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==
-
dependencies:
-
flatted "^3.1.0"
-
rimraf "^3.0.2"
-
-
flatted@^3.1.0:
-
version "3.2.6"
-
resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.6.tgz#022e9218c637f9f3fc9c35ab9c9193f05add60b2"
-
integrity sha512-0sQoMh9s0BYsm+12Huy/rkKxVu4R1+r96YX5cG44rHV0pQ6iC3Q+mkoMFaGWObMFYQxCVT+ssG1ksneA2MI9KQ==
-
-
flowgen@^1.20.1:
-
version "1.20.1"
-
resolved "https://registry.yarnpkg.com/flowgen/-/flowgen-1.20.1.tgz#336871d59a36980fbe2c3de553bd558f06a46e24"
-
integrity sha512-Wus3KAhsOF7CiZGkBKZawf0AJXe06Wot6UGQt7h9QS6MBtBkFgG30wTAgpy1byA3FKYb059vO341XtN8LUhenQ==
-
dependencies:
-
"@babel/code-frame" "^7.16.7"
-
"@babel/highlight" "^7.16.7"
-
commander "^6.1.0"
-
lodash "^4.17.20"
-
prettier "^2.5.1"
-
shelljs "^0.8.4"
-
typescript "~4.4.4"
-
typescript-compiler "^1.4.1-2"
-
-
fs.realpath@^1.0.0:
-
version "1.0.0"
-
resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
-
integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==
-
-
fsevents@~2.3.2:
-
version "2.3.2"
-
resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a"
-
integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==
-
-
function-bind@^1.1.1:
-
version "1.1.1"
-
resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
-
integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
-
-
function.prototype.name@^1.1.5:
-
version "1.1.5"
-
resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621"
-
integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==
-
dependencies:
-
call-bind "^1.0.2"
-
define-properties "^1.1.3"
-
es-abstract "^1.19.0"
-
functions-have-names "^1.2.2"
-
-
functional-red-black-tree@^1.0.1:
-
version "1.0.1"
-
resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"
-
integrity sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==
-
-
functions-have-names@^1.2.2:
-
version "1.2.3"
-
resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834"
-
integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==
-
-
get-func-name@^2.0.0:
-
version "2.0.0"
-
resolved "https://registry.yarnpkg.com/get-func-name/-/get-func-name-2.0.0.tgz#ead774abee72e20409433a066366023dd6887a41"
-
integrity sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig==
-
-
get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1:
-
version "1.1.2"
-
resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.2.tgz#336975123e05ad0b7ba41f152ee4aadbea6cf598"
-
integrity sha512-Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA==
-
dependencies:
-
function-bind "^1.1.1"
-
has "^1.0.3"
-
has-symbols "^1.0.3"
-
-
get-stream@^6.0.1:
-
version "6.0.1"
-
resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7"
-
integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==
-
-
get-symbol-description@^1.0.0:
-
version "1.0.0"
-
resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6"
-
integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==
-
dependencies:
-
call-bind "^1.0.2"
-
get-intrinsic "^1.1.1"
-
-
glob-parent@^5.1.2:
-
version "5.1.2"
-
resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4"
-
integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==
-
dependencies:
-
is-glob "^4.0.1"
-
-
glob-parent@^6.0.1:
-
version "6.0.2"
-
resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3"
-
integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==
-
dependencies:
-
is-glob "^4.0.3"
-
-
glob@^7.0.0, glob@^7.1.3, glob@^7.1.6:
-
version "7.2.3"
-
resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b"
-
integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==
-
dependencies:
-
fs.realpath "^1.0.0"
-
inflight "^1.0.4"
-
inherits "2"
-
minimatch "^3.1.1"
-
once "^1.3.0"
-
path-is-absolute "^1.0.0"
-
-
glob@^8.0.3:
-
version "8.0.3"
-
resolved "https://registry.yarnpkg.com/glob/-/glob-8.0.3.tgz#415c6eb2deed9e502c68fa44a272e6da6eeca42e"
-
integrity sha512-ull455NHSHI/Y1FqGaaYFaLGkNMMJbavMrEGFXG/PGrg6y7sutWHUHrz6gy6WEBH6akM1M414dWKCNs+IhKdiQ==
-
dependencies:
-
fs.realpath "^1.0.0"
-
inflight "^1.0.4"
-
inherits "2"
-
minimatch "^5.0.1"
-
once "^1.3.0"
-
-
globals@^13.15.0:
-
version "13.17.0"
-
resolved "https://registry.yarnpkg.com/globals/-/globals-13.17.0.tgz#902eb1e680a41da93945adbdcb5a9f361ba69bd4"
-
integrity sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw==
-
dependencies:
-
type-fest "^0.20.2"
-
-
globby@^11.1.0:
-
version "11.1.0"
-
resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b"
-
integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==
-
dependencies:
-
array-union "^2.1.0"
-
dir-glob "^3.0.1"
-
fast-glob "^3.2.9"
-
ignore "^5.2.0"
-
merge2 "^1.4.1"
-
slash "^3.0.0"
-
-
graceful-fs@^4.1.2:
-
version "4.2.10"
-
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c"
-
integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==
-
-
grapheme-splitter@^1.0.4:
-
version "1.0.4"
-
resolved "https://registry.yarnpkg.com/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz#9cf3a665c6247479896834af35cf1dbb4400767e"
-
integrity sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==
-
-
has-bigints@^1.0.1, has-bigints@^1.0.2:
-
version "1.0.2"
-
resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa"
-
integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==
-
-
has-flag@^3.0.0:
-
version "3.0.0"
-
resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
-
integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==
-
-
has-flag@^4.0.0:
-
version "4.0.0"
-
resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
-
integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
-
-
has-property-descriptors@^1.0.0:
-
version "1.0.0"
-
resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861"
-
integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==
-
dependencies:
-
get-intrinsic "^1.1.1"
-
-
has-symbols@^1.0.2, has-symbols@^1.0.3:
-
version "1.0.3"
-
resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8"
-
integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==
-
-
has-tostringtag@^1.0.0:
-
version "1.0.0"
-
resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25"
-
integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==
-
dependencies:
-
has-symbols "^1.0.2"
-
-
has@^1.0.3:
-
version "1.0.3"
-
resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
-
integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
-
dependencies:
-
function-bind "^1.1.1"
-
-
hosted-git-info@^2.1.4:
-
version "2.8.9"
-
resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9"
-
integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==
-
-
human-signals@^3.0.1:
-
version "3.0.1"
-
resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-3.0.1.tgz#c740920859dafa50e5a3222da9d3bf4bb0e5eef5"
-
integrity sha512-rQLskxnM/5OCldHo+wNXbpVgDn5A17CUoKX+7Sokwaknlq7CdSnphy0W39GU8dw59XiCXmFXDg4fRuckQRKewQ==
-
-
husky-v4@^4.3.8:
-
version "4.3.8"
-
resolved "https://registry.yarnpkg.com/husky-v4/-/husky-v4-4.3.8.tgz#af3be56a8b62b941371b5190e265f76dd1af2e57"
-
integrity sha512-M7A9u/t6BnT/qbDzKb7SdXhr8qLTGTkqZL6YLDDM20jfCdmpIMEuO384LvYXSBcgv50oIgNWI/IaO3g4A4ShjA==
-
dependencies:
-
chalk "^4.0.0"
-
ci-info "^2.0.0"
-
compare-versions "^3.6.0"
-
cosmiconfig "^7.0.0"
-
find-versions "^4.0.0"
-
opencollective-postinstall "^2.0.2"
-
pkg-dir "^5.0.0"
-
please-upgrade-node "^3.2.0"
-
slash "^3.0.0"
-
which-pm-runs "^1.0.0"
-
-
ignore@^5.2.0:
-
version "5.2.0"
-
resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a"
-
integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==
-
-
import-fresh@^3.0.0, import-fresh@^3.2.1:
-
version "3.3.0"
-
resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b"
-
integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==
-
dependencies:
-
parent-module "^1.0.0"
-
resolve-from "^4.0.0"
-
-
imurmurhash@^0.1.4:
-
version "0.1.4"
-
resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
-
integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==
-
-
indent-string@^4.0.0:
-
version "4.0.0"
-
resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251"
-
integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==
-
-
inflight@^1.0.4:
-
version "1.0.6"
-
resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
-
integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==
-
dependencies:
-
once "^1.3.0"
-
wrappy "1"
-
-
inherits@2:
-
version "2.0.4"
-
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
-
integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
-
-
internal-slot@^1.0.3:
-
version "1.0.3"
-
resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c"
-
integrity sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==
-
dependencies:
-
get-intrinsic "^1.1.0"
-
has "^1.0.3"
-
side-channel "^1.0.4"
-
-
interpret@^1.0.0:
-
version "1.4.0"
-
resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.4.0.tgz#665ab8bc4da27a774a40584e812e3e0fa45b1a1e"
-
integrity sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==
-
-
is-arrayish@^0.2.1:
-
version "0.2.1"
-
resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
-
integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==
-
-
is-bigint@^1.0.1:
-
version "1.0.4"
-
resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3"
-
integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==
-
dependencies:
-
has-bigints "^1.0.1"
-
-
is-boolean-object@^1.1.0:
-
version "1.1.2"
-
resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719"
-
integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==
-
dependencies:
-
call-bind "^1.0.2"
-
has-tostringtag "^1.0.0"
-
-
is-builtin-module@^3.1.0:
-
version "3.2.0"
-
resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-3.2.0.tgz#bb0310dfe881f144ca83f30100ceb10cf58835e0"
-
integrity sha512-phDA4oSGt7vl1n5tJvTWooWWAsXLY+2xCnxNqvKhGEzujg+A43wPlPOyDg3C8XQHN+6k/JTQWJ/j0dQh/qr+Hw==
-
dependencies:
-
builtin-modules "^3.3.0"
-
-
is-callable@^1.1.4, is-callable@^1.2.4:
-
version "1.2.4"
-
resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.4.tgz#47301d58dd0259407865547853df6d61fe471945"
-
integrity sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==
-
-
is-core-module@^2.9.0:
-
version "2.10.0"
-
resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.10.0.tgz#9012ede0a91c69587e647514e1d5277019e728ed"
-
integrity sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg==
-
dependencies:
-
has "^1.0.3"
-
-
is-date-object@^1.0.1:
-
version "1.0.5"
-
resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f"
-
integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==
-
dependencies:
-
has-tostringtag "^1.0.0"
-
-
is-extglob@^2.1.1:
-
version "2.1.1"
-
resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
-
integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==
-
-
is-fullwidth-code-point@^3.0.0:
-
version "3.0.0"
-
resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d"
-
integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==
-
-
is-fullwidth-code-point@^4.0.0:
-
version "4.0.0"
-
resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz#fae3167c729e7463f8461ce512b080a49268aa88"
-
integrity sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==
-
-
is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3:
-
version "4.0.3"
-
resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084"
-
integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==
-
dependencies:
-
is-extglob "^2.1.1"
-
-
is-module@^1.0.0:
-
version "1.0.0"
-
resolved "https://registry.yarnpkg.com/is-module/-/is-module-1.0.0.tgz#3258fb69f78c14d5b815d664336b4cffb6441591"
-
integrity sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==
-
-
is-negative-zero@^2.0.2:
-
version "2.0.2"
-
resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150"
-
integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==
-
-
is-number-object@^1.0.4:
-
version "1.0.7"
-
resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc"
-
integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==
-
dependencies:
-
has-tostringtag "^1.0.0"
-
-
is-number@^7.0.0:
-
version "7.0.0"
-
resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
-
integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
-
-
is-reference@^1.2.1:
-
version "1.2.1"
-
resolved "https://registry.yarnpkg.com/is-reference/-/is-reference-1.2.1.tgz#8b2dac0b371f4bc994fdeaba9eb542d03002d0b7"
-
integrity sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==
-
dependencies:
-
"@types/estree" "*"
-
-
is-regex@^1.1.4:
-
version "1.1.4"
-
resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958"
-
integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==
-
dependencies:
-
call-bind "^1.0.2"
-
has-tostringtag "^1.0.0"
-
-
is-shared-array-buffer@^1.0.2:
-
version "1.0.2"
-
resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79"
-
integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==
-
dependencies:
-
call-bind "^1.0.2"
-
-
is-stream@^3.0.0:
-
version "3.0.0"
-
resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-3.0.0.tgz#e6bfd7aa6bef69f4f472ce9bb681e3e57b4319ac"
-
integrity sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==
-
-
is-string@^1.0.5, is-string@^1.0.7:
-
version "1.0.7"
-
resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd"
-
integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==
-
dependencies:
-
has-tostringtag "^1.0.0"
-
-
is-symbol@^1.0.2, is-symbol@^1.0.3:
-
version "1.0.4"
-
resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c"
-
integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==
-
dependencies:
-
has-symbols "^1.0.2"
-
-
is-weakref@^1.0.2:
-
version "1.0.2"
-
resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2"
-
integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==
-
dependencies:
-
call-bind "^1.0.2"
-
-
isexe@^2.0.0:
-
version "2.0.0"
-
resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
-
integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==
-
-
jest-worker@^26.2.1:
-
version "26.6.2"
-
resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-26.6.2.tgz#7f72cbc4d643c365e27b9fd775f9d0eaa9c7a8ed"
-
integrity sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==
-
dependencies:
-
"@types/node" "*"
-
merge-stream "^2.0.0"
-
supports-color "^7.0.0"
-
-
js-tokens@^4.0.0:
-
version "4.0.0"
-
resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
-
integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
-
-
js-yaml@^4.1.0:
-
version "4.1.0"
-
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602"
-
integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==
-
dependencies:
-
argparse "^2.0.1"
-
-
jsesc@~0.5.0:
-
version "0.5.0"
-
resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
-
integrity sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==
-
-
json-parse-better-errors@^1.0.1:
-
version "1.0.2"
-
resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9"
-
integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==
-
-
json-parse-even-better-errors@^2.3.0:
-
version "2.3.1"
-
resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d"
-
integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==
-
-
json-schema-traverse@^0.4.1:
-
version "0.4.1"
-
resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660"
-
integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==
-
-
json-stable-stringify-without-jsonify@^1.0.1:
-
version "1.0.1"
-
resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651"
-
integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==
-
-
levn@^0.4.1:
-
version "0.4.1"
-
resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade"
-
integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==
-
dependencies:
-
prelude-ls "^1.2.1"
-
type-check "~0.4.0"
-
-
lilconfig@2.0.5:
-
version "2.0.5"
-
resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.0.5.tgz#19e57fd06ccc3848fd1891655b5a447092225b25"
-
integrity sha512-xaYmXZtTHPAw5m+xLN8ab9C+3a8YmV3asNSPOATITbtwrfbwaLJj8h66H1WMIpALCkqsIzK3h7oQ+PdX+LQ9Eg==
-
-
lines-and-columns@^1.1.6:
-
version "1.2.4"
-
resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632"
-
integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==
-
-
lint-staged@^13.0.3:
-
version "13.0.3"
-
resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-13.0.3.tgz#d7cdf03a3830b327a2b63c6aec953d71d9dc48c6"
-
integrity sha512-9hmrwSCFroTSYLjflGI8Uk+GWAwMB4OlpU4bMJEAT5d/llQwtYKoim4bLOyLCuWFAhWEupE0vkIFqtw/WIsPug==
-
dependencies:
-
cli-truncate "^3.1.0"
-
colorette "^2.0.17"
-
commander "^9.3.0"
-
debug "^4.3.4"
-
execa "^6.1.0"
-
lilconfig "2.0.5"
-
listr2 "^4.0.5"
-
micromatch "^4.0.5"
-
normalize-path "^3.0.0"
-
object-inspect "^1.12.2"
-
pidtree "^0.6.0"
-
string-argv "^0.3.1"
-
yaml "^2.1.1"
-
-
listr2@^4.0.5:
-
version "4.0.5"
-
resolved "https://registry.yarnpkg.com/listr2/-/listr2-4.0.5.tgz#9dcc50221583e8b4c71c43f9c7dfd0ef546b75d5"
-
integrity sha512-juGHV1doQdpNT3GSTs9IUN43QJb7KHdF9uqg7Vufs/tG9VTzpFphqF4pm/ICdAABGQxsyNn9CiYA3StkI6jpwA==
-
dependencies:
-
cli-truncate "^2.1.0"
-
colorette "^2.0.16"
-
log-update "^4.0.0"
-
p-map "^4.0.0"
-
rfdc "^1.3.0"
-
rxjs "^7.5.5"
-
through "^2.3.8"
-
wrap-ansi "^7.0.0"
-
-
load-json-file@^4.0.0:
-
version "4.0.0"
-
resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b"
-
integrity sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==
-
dependencies:
-
graceful-fs "^4.1.2"
-
parse-json "^4.0.0"
-
pify "^3.0.0"
-
strip-bom "^3.0.0"
-
-
local-pkg@^0.4.2:
-
version "0.4.2"
-
resolved "https://registry.yarnpkg.com/local-pkg/-/local-pkg-0.4.2.tgz#13107310b77e74a0e513147a131a2ba288176c2f"
-
integrity sha512-mlERgSPrbxU3BP4qBqAvvwlgW4MTg78iwJdGGnv7kibKjWcJksrG3t6LB5lXI93wXRDvG4NpUgJFmTG4T6rdrg==
-
-
locate-path@^6.0.0:
-
version "6.0.0"
-
resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286"
-
integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==
-
dependencies:
-
p-locate "^5.0.0"
-
-
lodash.merge@^4.6.2:
-
version "4.6.2"
-
resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a"
-
integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==
-
-
lodash@^4.17.20:
-
version "4.17.21"
-
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
-
integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
-
-
log-update@^4.0.0:
-
version "4.0.0"
-
resolved "https://registry.yarnpkg.com/log-update/-/log-update-4.0.0.tgz#589ecd352471f2a1c0c570287543a64dfd20e0a1"
-
integrity sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==
-
dependencies:
-
ansi-escapes "^4.3.0"
-
cli-cursor "^3.1.0"
-
slice-ansi "^4.0.0"
-
wrap-ansi "^6.2.0"
-
-
loupe@^2.3.1:
-
version "2.3.4"
-
resolved "https://registry.yarnpkg.com/loupe/-/loupe-2.3.4.tgz#7e0b9bffc76f148f9be769cb1321d3dcf3cb25f3"
-
integrity sha512-OvKfgCC2Ndby6aSTREl5aCCPTNIzlDfQZvZxNUrBrihDhL3xcrYegTblhmEiCrg2kKQz4XsFIaemE5BF4ybSaQ==
-
dependencies:
-
get-func-name "^2.0.0"
-
-
lru-cache@^6.0.0:
-
version "6.0.0"
-
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94"
-
integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==
-
dependencies:
-
yallist "^4.0.0"
-
-
magic-string@^0.25.0, magic-string@^0.25.7:
-
version "0.25.9"
-
resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.25.9.tgz#de7f9faf91ef8a1c91d02c2e5314c8277dbcdd1c"
-
integrity sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==
-
dependencies:
-
sourcemap-codec "^1.4.8"
-
-
memorystream@^0.3.1:
-
version "0.3.1"
-
resolved "https://registry.yarnpkg.com/memorystream/-/memorystream-0.3.1.tgz#86d7090b30ce455d63fbae12dda51a47ddcaf9b2"
-
integrity sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==
-
-
merge-stream@^2.0.0:
-
version "2.0.0"
-
resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60"
-
integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==
-
-
merge2@^1.3.0, merge2@^1.4.1:
-
version "1.4.1"
-
resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae"
-
integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==
-
-
micromatch@^4.0.4, micromatch@^4.0.5:
-
version "4.0.5"
-
resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6"
-
integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==
-
dependencies:
-
braces "^3.0.2"
-
picomatch "^2.3.1"
-
-
mimic-fn@^2.1.0:
-
version "2.1.0"
-
resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b"
-
integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==
-
-
mimic-fn@^4.0.0:
-
version "4.0.0"
-
resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-4.0.0.tgz#60a90550d5cb0b239cca65d893b1a53b29871ecc"
-
integrity sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==
-
-
minimatch@^3.0.4, minimatch@^3.1.1, minimatch@^3.1.2:
-
version "3.1.2"
-
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b"
-
integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==
-
dependencies:
-
brace-expansion "^1.1.7"
-
-
minimatch@^5.0.1:
-
version "5.1.0"
-
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.0.tgz#1717b464f4971b144f6aabe8f2d0b8e4511e09c7"
-
integrity sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==
-
dependencies:
-
brace-expansion "^2.0.1"
-
-
minimist@^1.2.5:
-
version "1.2.6"
-
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44"
-
integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==
-
-
ms@2.1.2:
-
version "2.1.2"
-
resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
-
integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
-
-
nanoid@^3.3.4:
-
version "3.3.4"
-
resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.4.tgz#730b67e3cd09e2deacf03c027c81c9d9dbc5e8ab"
-
integrity sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==
-
-
natural-compare@^1.4.0:
-
version "1.4.0"
-
resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
-
integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==
-
-
nice-try@^1.0.4:
-
version "1.0.5"
-
resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366"
-
integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==
-
-
normalize-package-data@^2.3.2:
-
version "2.5.0"
-
resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8"
-
integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==
-
dependencies:
-
hosted-git-info "^2.1.4"
-
resolve "^1.10.0"
-
semver "2 || 3 || 4 || 5"
-
validate-npm-package-license "^3.0.1"
-
-
normalize-path@^3.0.0:
-
version "3.0.0"
-
resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
-
integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
-
-
npm-run-all@^4.1.5:
-
version "4.1.5"
-
resolved "https://registry.yarnpkg.com/npm-run-all/-/npm-run-all-4.1.5.tgz#04476202a15ee0e2e214080861bff12a51d98fba"
-
integrity sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==
-
dependencies:
-
ansi-styles "^3.2.1"
-
chalk "^2.4.1"
-
cross-spawn "^6.0.5"
-
memorystream "^0.3.1"
-
minimatch "^3.0.4"
-
pidtree "^0.3.0"
-
read-pkg "^3.0.0"
-
shell-quote "^1.6.1"
-
string.prototype.padend "^3.0.0"
-
-
npm-run-path@^5.1.0:
-
version "5.1.0"
-
resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-5.1.0.tgz#bc62f7f3f6952d9894bd08944ba011a6ee7b7e00"
-
integrity sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==
-
dependencies:
-
path-key "^4.0.0"
-
-
object-inspect@^1.12.0, object-inspect@^1.12.2, object-inspect@^1.9.0:
-
version "1.12.2"
-
resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.2.tgz#c0641f26394532f28ab8d796ab954e43c009a8ea"
-
integrity sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==
-
-
object-keys@^1.1.1:
-
version "1.1.1"
-
resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e"
-
integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
-
-
object.assign@^4.1.2:
-
version "4.1.3"
-
resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.3.tgz#d36b7700ddf0019abb6b1df1bb13f6445f79051f"
-
integrity sha512-ZFJnX3zltyjcYJL0RoCJuzb+11zWGyaDbjgxZbdV7rFEcHQuYxrZqhow67aA7xpes6LhojyFDaBKAFfogQrikA==
-
dependencies:
-
call-bind "^1.0.2"
-
define-properties "^1.1.4"
-
has-symbols "^1.0.3"
-
object-keys "^1.1.1"
-
-
once@^1.3.0:
-
version "1.4.0"
-
resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
-
integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==
-
dependencies:
-
wrappy "1"
-
-
onetime@^5.1.0:
-
version "5.1.2"
-
resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e"
-
integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==
-
dependencies:
-
mimic-fn "^2.1.0"
-
-
onetime@^6.0.0:
-
version "6.0.0"
-
resolved "https://registry.yarnpkg.com/onetime/-/onetime-6.0.0.tgz#7c24c18ed1fd2e9bca4bd26806a33613c77d34b4"
-
integrity sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==
-
dependencies:
-
mimic-fn "^4.0.0"
-
-
opencollective-postinstall@^2.0.2:
-
version "2.0.3"
-
resolved "https://registry.yarnpkg.com/opencollective-postinstall/-/opencollective-postinstall-2.0.3.tgz#7a0fff978f6dbfa4d006238fbac98ed4198c3259"
-
integrity sha512-8AV/sCtuzUeTo8gQK5qDZzARrulB3egtLzFgteqB2tcT4Mw7B8Kt7JcDHmltjz6FOAHsvTevk70gZEbhM4ZS9Q==
-
-
optionator@^0.9.1:
-
version "0.9.1"
-
resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499"
-
integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==
-
dependencies:
-
deep-is "^0.1.3"
-
fast-levenshtein "^2.0.6"
-
levn "^0.4.1"
-
prelude-ls "^1.2.1"
-
type-check "^0.4.0"
-
word-wrap "^1.2.3"
-
-
p-limit@^3.0.2:
-
version "3.1.0"
-
resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b"
-
integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==
-
dependencies:
-
yocto-queue "^0.1.0"
-
-
p-locate@^5.0.0:
-
version "5.0.0"
-
resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834"
-
integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==
-
dependencies:
-
p-limit "^3.0.2"
-
-
p-map@^4.0.0:
-
version "4.0.0"
-
resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b"
-
integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==
-
dependencies:
-
aggregate-error "^3.0.0"
-
-
parent-module@^1.0.0:
-
version "1.0.1"
-
resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2"
-
integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==
-
dependencies:
-
callsites "^3.0.0"
-
-
parse-json@^4.0.0:
-
version "4.0.0"
-
resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0"
-
integrity sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==
-
dependencies:
-
error-ex "^1.3.1"
-
json-parse-better-errors "^1.0.1"
-
-
parse-json@^5.0.0:
-
version "5.2.0"
-
resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd"
-
integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==
-
dependencies:
-
"@babel/code-frame" "^7.0.0"
-
error-ex "^1.3.1"
-
json-parse-even-better-errors "^2.3.0"
-
lines-and-columns "^1.1.6"
-
-
path-exists@^4.0.0:
-
version "4.0.0"
-
resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3"
-
integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==
-
-
path-is-absolute@^1.0.0:
-
version "1.0.1"
-
resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
-
integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==
-
-
path-key@^2.0.1:
-
version "2.0.1"
-
resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40"
-
integrity sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==
-
-
path-key@^3.1.0:
-
version "3.1.1"
-
resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375"
-
integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==
-
-
path-key@^4.0.0:
-
version "4.0.0"
-
resolved "https://registry.yarnpkg.com/path-key/-/path-key-4.0.0.tgz#295588dc3aee64154f877adb9d780b81c554bf18"
-
integrity sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==
-
-
path-parse@^1.0.7:
-
version "1.0.7"
-
resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
-
integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
-
-
path-type@^3.0.0:
-
version "3.0.0"
-
resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f"
-
integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==
-
dependencies:
-
pify "^3.0.0"
-
-
path-type@^4.0.0:
-
version "4.0.0"
-
resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b"
-
integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==
-
-
pathval@^1.1.1:
-
version "1.1.1"
-
resolved "https://registry.yarnpkg.com/pathval/-/pathval-1.1.1.tgz#8534e77a77ce7ac5a2512ea21e0fdb8fcf6c3d8d"
-
integrity sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==
-
-
picocolors@^1.0.0:
-
version "1.0.0"
-
resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c"
-
integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==
-
-
picomatch@^2.2.2, picomatch@^2.3.1:
-
version "2.3.1"
-
resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42"
-
integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==
-
-
pidtree@^0.3.0:
-
version "0.3.1"
-
resolved "https://registry.yarnpkg.com/pidtree/-/pidtree-0.3.1.tgz#ef09ac2cc0533df1f3250ccf2c4d366b0d12114a"
-
integrity sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==
-
-
pidtree@^0.6.0:
-
version "0.6.0"
-
resolved "https://registry.yarnpkg.com/pidtree/-/pidtree-0.6.0.tgz#90ad7b6d42d5841e69e0a2419ef38f8883aa057c"
-
integrity sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==
-
-
pify@^3.0.0:
-
version "3.0.0"
-
resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176"
-
integrity sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==
-
-
pkg-dir@^5.0.0:
-
version "5.0.0"
-
resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-5.0.0.tgz#a02d6aebe6ba133a928f74aec20bafdfe6b8e760"
-
integrity sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==
-
dependencies:
-
find-up "^5.0.0"
-
-
please-upgrade-node@^3.2.0:
-
version "3.2.0"
-
resolved "https://registry.yarnpkg.com/please-upgrade-node/-/please-upgrade-node-3.2.0.tgz#aeddd3f994c933e4ad98b99d9a556efa0e2fe942"
-
integrity sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==
-
dependencies:
-
semver-compare "^1.0.0"
-
-
postcss@^8.4.16:
-
version "8.4.16"
-
resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.16.tgz#33a1d675fac39941f5f445db0de4db2b6e01d43c"
-
integrity sha512-ipHE1XBvKzm5xI7hiHCZJCSugxvsdq2mPnsq5+UF+VHCjiBvtDrlxJfMBToWaP9D5XlgNmcFGqoHmUn0EYEaRQ==
-
dependencies:
-
nanoid "^3.3.4"
-
picocolors "^1.0.0"
-
source-map-js "^1.0.2"
-
-
prelude-ls@^1.2.1:
-
version "1.2.1"
-
resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396"
-
integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==
-
-
prettier-linter-helpers@^1.0.0:
-
version "1.0.0"
-
resolved "https://registry.yarnpkg.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz#d23d41fe1375646de2d0104d3454a3008802cf7b"
-
integrity sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==
-
dependencies:
-
fast-diff "^1.1.2"
-
-
prettier@^2.5.1, prettier@^2.7.1:
-
version "2.7.1"
-
resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.7.1.tgz#e235806850d057f97bb08368a4f7d899f7760c64"
-
integrity sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g==
-
-
punycode@^2.1.0:
-
version "2.1.1"
-
resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
-
integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==
-
-
queue-microtask@^1.2.2:
-
version "1.2.3"
-
resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243"
-
integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==
-
-
randombytes@^2.1.0:
-
version "2.1.0"
-
resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a"
-
integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==
-
dependencies:
-
safe-buffer "^5.1.0"
-
-
read-pkg@^3.0.0:
-
version "3.0.0"
-
resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389"
-
integrity sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==
-
dependencies:
-
load-json-file "^4.0.0"
-
normalize-package-data "^2.3.2"
-
path-type "^3.0.0"
-
-
rechoir@^0.6.2:
-
version "0.6.2"
-
resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384"
-
integrity sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==
-
dependencies:
-
resolve "^1.1.6"
-
-
regenerate-unicode-properties@^8.0.2:
-
version "8.2.0"
-
resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz#e5de7111d655e7ba60c057dbe9ff37c87e65cdec"
-
integrity sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA==
-
dependencies:
-
regenerate "^1.4.0"
-
-
regenerate@^1.4.0:
-
version "1.4.2"
-
resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a"
-
integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==
-
-
regexp.prototype.flags@^1.4.3:
-
version "1.4.3"
-
resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz#87cab30f80f66660181a3bb7bf5981a872b367ac"
-
integrity sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==
-
dependencies:
-
call-bind "^1.0.2"
-
define-properties "^1.1.3"
-
functions-have-names "^1.2.2"
-
-
regexpp@^3.2.0:
-
version "3.2.0"
-
resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2"
-
integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==
-
-
regexpu-core@4.5.4:
-
version "4.5.4"
-
resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.5.4.tgz#080d9d02289aa87fe1667a4f5136bc98a6aebaae"
-
integrity sha512-BtizvGtFQKGPUcTy56o3nk1bGRp4SZOTYrDtGNlqCQufptV5IkkLN6Emw+yunAJjzf+C9FQFtvq7IoA3+oMYHQ==
-
dependencies:
-
regenerate "^1.4.0"
-
regenerate-unicode-properties "^8.0.2"
-
regjsgen "^0.5.0"
-
regjsparser "^0.6.0"
-
unicode-match-property-ecmascript "^1.0.4"
-
unicode-match-property-value-ecmascript "^1.1.0"
-
-
regjsgen@^0.5.0:
-
version "0.5.2"
-
resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.2.tgz#92ff295fb1deecbf6ecdab2543d207e91aa33733"
-
integrity sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==
-
-
regjsparser@^0.6.0:
-
version "0.6.9"
-
resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.9.tgz#b489eef7c9a2ce43727627011429cf833a7183e6"
-
integrity sha512-ZqbNRz1SNjLAiYuwY0zoXW8Ne675IX5q+YHioAGbCw4X96Mjl2+dcX9B2ciaeyYjViDAfvIjFpQjJgLttTEERQ==
-
dependencies:
-
jsesc "~0.5.0"
-
-
resolve-from@^4.0.0:
-
version "4.0.0"
-
resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6"
-
integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
-
-
resolve@^1.1.6, resolve@^1.10.0, resolve@^1.17.0, resolve@^1.19.0, resolve@^1.22.1:
-
version "1.22.1"
-
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177"
-
integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==
-
dependencies:
-
is-core-module "^2.9.0"
-
path-parse "^1.0.7"
-
supports-preserve-symlinks-flag "^1.0.0"
-
-
restore-cursor@^3.1.0:
-
version "3.1.0"
-
resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e"
-
integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==
-
dependencies:
-
onetime "^5.1.0"
-
signal-exit "^3.0.2"
-
-
reusify@^1.0.4:
-
version "1.0.4"
-
resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76"
-
integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==
-
-
rfdc@^1.3.0:
-
version "1.3.0"
-
resolved "https://registry.yarnpkg.com/rfdc/-/rfdc-1.3.0.tgz#d0b7c441ab2720d05dc4cf26e01c89631d9da08b"
-
integrity sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==
-
-
rimraf@^3.0.2:
-
version "3.0.2"
-
resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a"
-
integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==
-
dependencies:
-
glob "^7.1.3"
-
-
rollup-plugin-terser@^7.0.2:
-
version "7.0.2"
-
resolved "https://registry.yarnpkg.com/rollup-plugin-terser/-/rollup-plugin-terser-7.0.2.tgz#e8fbba4869981b2dc35ae7e8a502d5c6c04d324d"
-
integrity sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==
-
dependencies:
-
"@babel/code-frame" "^7.10.4"
-
jest-worker "^26.2.1"
-
serialize-javascript "^4.0.0"
-
terser "^5.0.0"
-
-
rollup@^2.77.3, rollup@~2.78.0:
-
version "2.78.1"
-
resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.78.1.tgz#52fe3934d9c83cb4f7c4cb5fb75d88591be8648f"
-
integrity sha512-VeeCgtGi4P+o9hIg+xz4qQpRl6R401LWEXBmxYKOV4zlF82lyhgh2hTZnheFUbANE8l2A41F458iwj2vEYaXJg==
-
optionalDependencies:
-
fsevents "~2.3.2"
-
-
run-parallel@^1.1.9:
-
version "1.2.0"
-
resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee"
-
integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==
-
dependencies:
-
queue-microtask "^1.2.2"
-
-
rxjs@^7.5.5:
-
version "7.5.6"
-
resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.5.6.tgz#0446577557862afd6903517ce7cae79ecb9662bc"
-
integrity sha512-dnyv2/YsXhnm461G+R/Pe5bWP41Nm6LBXEYWI6eiFP4fiwx6WRI/CD0zbdVAudd9xwLEF2IDcKXLHit0FYjUzw==
-
dependencies:
-
tslib "^2.1.0"
-
-
safe-buffer@^5.1.0:
-
version "5.2.1"
-
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6"
-
integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==
-
-
semver-compare@^1.0.0:
-
version "1.0.0"
-
resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc"
-
integrity sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==
-
-
semver-regex@^3.1.2:
-
version "3.1.4"
-
resolved "https://registry.yarnpkg.com/semver-regex/-/semver-regex-3.1.4.tgz#13053c0d4aa11d070a2f2872b6b1e3ae1e1971b4"
-
integrity sha512-6IiqeZNgq01qGf0TId0t3NvKzSvUsjcpdEO3AQNeIjR6A2+ckTnQlDpl4qu1bjRv0RzN3FP9hzFmws3lKqRWkA==
-
-
"semver@2 || 3 || 4 || 5", semver@^5.5.0:
-
version "5.7.1"
-
resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
-
integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
-
-
semver@^7.3.7:
-
version "7.3.7"
-
resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.7.tgz#12c5b649afdbf9049707796e22a4028814ce523f"
-
integrity sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==
-
dependencies:
-
lru-cache "^6.0.0"
-
-
serialize-javascript@^4.0.0:
-
version "4.0.0"
-
resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-4.0.0.tgz#b525e1238489a5ecfc42afacc3fe99e666f4b1aa"
-
integrity sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==
-
dependencies:
-
randombytes "^2.1.0"
-
-
shebang-command@^1.2.0:
-
version "1.2.0"
-
resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
-
integrity sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==
-
dependencies:
-
shebang-regex "^1.0.0"
-
-
shebang-command@^2.0.0:
-
version "2.0.0"
-
resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea"
-
integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==
-
dependencies:
-
shebang-regex "^3.0.0"
-
-
shebang-regex@^1.0.0:
-
version "1.0.0"
-
resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
-
integrity sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==
-
-
shebang-regex@^3.0.0:
-
version "3.0.0"
-
resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172"
-
integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==
-
-
shell-quote@^1.6.1:
-
version "1.7.3"
-
resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.3.tgz#aa40edac170445b9a431e17bb62c0b881b9c4123"
-
integrity sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw==
-
-
shelljs@^0.8.4:
-
version "0.8.5"
-
resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.8.5.tgz#de055408d8361bed66c669d2f000538ced8ee20c"
-
integrity sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==
-
dependencies:
-
glob "^7.0.0"
-
interpret "^1.0.0"
-
rechoir "^0.6.2"
-
-
side-channel@^1.0.4:
-
version "1.0.4"
-
resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf"
-
integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==
-
dependencies:
-
call-bind "^1.0.0"
-
get-intrinsic "^1.0.2"
-
object-inspect "^1.9.0"
-
-
signal-exit@^3.0.2, signal-exit@^3.0.7:
-
version "3.0.7"
-
resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9"
-
integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==
-
-
slash@^3.0.0:
-
version "3.0.0"
-
resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634"
-
integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==
-
-
slice-ansi@^3.0.0:
-
version "3.0.0"
-
resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-3.0.0.tgz#31ddc10930a1b7e0b67b08c96c2f49b77a789787"
-
integrity sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==
-
dependencies:
-
ansi-styles "^4.0.0"
-
astral-regex "^2.0.0"
-
is-fullwidth-code-point "^3.0.0"
-
-
slice-ansi@^4.0.0:
-
version "4.0.0"
-
resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b"
-
integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==
-
dependencies:
-
ansi-styles "^4.0.0"
-
astral-regex "^2.0.0"
-
is-fullwidth-code-point "^3.0.0"
-
-
slice-ansi@^5.0.0:
-
version "5.0.0"
-
resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-5.0.0.tgz#b73063c57aa96f9cd881654b15294d95d285c42a"
-
integrity sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==
-
dependencies:
-
ansi-styles "^6.0.0"
-
is-fullwidth-code-point "^4.0.0"
-
-
source-map-js@^1.0.2:
-
version "1.0.2"
-
resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c"
-
integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==
-
-
source-map-support@~0.5.20:
-
version "0.5.21"
-
resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f"
-
integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==
-
dependencies:
-
buffer-from "^1.0.0"
-
source-map "^0.6.0"
-
-
source-map@^0.6.0:
-
version "0.6.1"
-
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
-
integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==
-
-
sourcemap-codec@^1.4.8:
-
version "1.4.8"
-
resolved "https://registry.yarnpkg.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz#ea804bd94857402e6992d05a38ef1ae35a9ab4c4"
-
integrity sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==
-
-
spdx-correct@^3.0.0:
-
version "3.1.1"
-
resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9"
-
integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==
-
dependencies:
-
spdx-expression-parse "^3.0.0"
-
spdx-license-ids "^3.0.0"
-
-
spdx-exceptions@^2.1.0:
-
version "2.3.0"
-
resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d"
-
integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==
-
-
spdx-expression-parse@^3.0.0:
-
version "3.0.1"
-
resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679"
-
integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==
-
dependencies:
-
spdx-exceptions "^2.1.0"
-
spdx-license-ids "^3.0.0"
-
-
spdx-license-ids@^3.0.0:
-
version "3.0.11"
-
resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.11.tgz#50c0d8c40a14ec1bf449bae69a0ea4685a9d9f95"
-
integrity sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g==
-
-
string-argv@^0.3.1:
-
version "0.3.1"
-
resolved "https://registry.yarnpkg.com/string-argv/-/string-argv-0.3.1.tgz#95e2fbec0427ae19184935f816d74aaa4c5c19da"
-
integrity sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==
-
-
string-width@^4.1.0, string-width@^4.2.0:
-
version "4.2.3"
-
resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
-
integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
-
dependencies:
-
emoji-regex "^8.0.0"
-
is-fullwidth-code-point "^3.0.0"
-
strip-ansi "^6.0.1"
-
-
string-width@^5.0.0:
-
version "5.1.2"
-
resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz#14f8daec6d81e7221d2a357e668cab73bdbca794"
-
integrity sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==
-
dependencies:
-
eastasianwidth "^0.2.0"
-
emoji-regex "^9.2.2"
-
strip-ansi "^7.0.1"
-
-
string.prototype.padend@^3.0.0:
-
version "3.1.3"
-
resolved "https://registry.yarnpkg.com/string.prototype.padend/-/string.prototype.padend-3.1.3.tgz#997a6de12c92c7cb34dc8a201a6c53d9bd88a5f1"
-
integrity sha512-jNIIeokznm8SD/TZISQsZKYu7RJyheFNt84DUPrh482GC8RVp2MKqm2O5oBRdGxbDQoXrhhWtPIWQOiy20svUg==
-
dependencies:
-
call-bind "^1.0.2"
-
define-properties "^1.1.3"
-
es-abstract "^1.19.1"
-
-
string.prototype.trimend@^1.0.5:
-
version "1.0.5"
-
resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz#914a65baaab25fbdd4ee291ca7dde57e869cb8d0"
-
integrity sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog==
-
dependencies:
-
call-bind "^1.0.2"
-
define-properties "^1.1.4"
-
es-abstract "^1.19.5"
-
-
string.prototype.trimstart@^1.0.5:
-
version "1.0.5"
-
resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz#5466d93ba58cfa2134839f81d7f42437e8c01fef"
-
integrity sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg==
-
dependencies:
-
call-bind "^1.0.2"
-
define-properties "^1.1.4"
-
es-abstract "^1.19.5"
-
-
strip-ansi@^6.0.0, strip-ansi@^6.0.1:
-
version "6.0.1"
-
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
-
integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
-
dependencies:
-
ansi-regex "^5.0.1"
-
-
strip-ansi@^7.0.1:
-
version "7.0.1"
-
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.0.1.tgz#61740a08ce36b61e50e65653f07060d000975fb2"
-
integrity sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==
-
dependencies:
-
ansi-regex "^6.0.1"
-
-
strip-bom@^3.0.0:
-
version "3.0.0"
-
resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
-
integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==
-
-
strip-final-newline@^3.0.0:
-
version "3.0.0"
-
resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-3.0.0.tgz#52894c313fbff318835280aed60ff71ebf12b8fd"
-
integrity sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==
-
-
strip-json-comments@^3.1.0, strip-json-comments@^3.1.1:
-
version "3.1.1"
-
resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006"
-
integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==
-
-
strip-literal@^0.4.1:
-
version "0.4.2"
-
resolved "https://registry.yarnpkg.com/strip-literal/-/strip-literal-0.4.2.tgz#4f9fa6c38bb157b924e9ace7155ebf8a2342cbcf"
-
integrity sha512-pv48ybn4iE1O9RLgCAN0iU4Xv7RlBTiit6DKmMiErbs9x1wH6vXBs45tWc0H5wUIF6TLTrKweqkmYF/iraQKNw==
-
dependencies:
-
acorn "^8.8.0"
-
-
supports-color@^5.3.0:
-
version "5.5.0"
-
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
-
integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
-
dependencies:
-
has-flag "^3.0.0"
-
-
supports-color@^7.0.0, supports-color@^7.1.0:
-
version "7.2.0"
-
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da"
-
integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==
-
dependencies:
-
has-flag "^4.0.0"
-
-
supports-preserve-symlinks-flag@^1.0.0:
-
version "1.0.0"
-
resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09"
-
integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==
-
-
terser@^5.0.0:
-
version "5.14.2"
-
resolved "https://registry.yarnpkg.com/terser/-/terser-5.14.2.tgz#9ac9f22b06994d736174f4091aa368db896f1c10"
-
integrity sha512-oL0rGeM/WFQCUd0y2QrWxYnq7tfSuKBiqTjRPWrRgB46WD/kiwHwF8T23z78H6Q6kGCuuHcPB+KULHRdxvVGQA==
-
dependencies:
-
"@jridgewell/source-map" "^0.3.2"
-
acorn "^8.5.0"
-
commander "^2.20.0"
-
source-map-support "~0.5.20"
-
-
text-table@^0.2.0:
-
version "0.2.0"
-
resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
-
integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==
-
-
through@^2.3.8:
-
version "2.3.8"
-
resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
-
integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==
-
-
tinybench@^2.1.5:
-
version "2.1.5"
-
resolved "https://registry.yarnpkg.com/tinybench/-/tinybench-2.1.5.tgz#6864341415ff0f912ed160cfd90b7f833ece674c"
-
integrity sha512-ak+PZZEuH3mw6CCFOgf5S90YH0MARnZNhxjhjguAmoJimEMAJuNip/rJRd6/wyylHItomVpKTzZk9zrhTrQCoQ==
-
-
tinypool@^0.3.0:
-
version "0.3.0"
-
resolved "https://registry.yarnpkg.com/tinypool/-/tinypool-0.3.0.tgz#c405d8b743509fc28ea4ca358433190be654f819"
-
integrity sha512-NX5KeqHOBZU6Bc0xj9Vr5Szbb1j8tUHIeD18s41aDJaPeC5QTdEhK0SpdpUrZlj2nv5cctNcSjaKNanXlfcVEQ==
-
-
tinyspy@^1.0.2:
-
version "1.0.2"
-
resolved "https://registry.yarnpkg.com/tinyspy/-/tinyspy-1.0.2.tgz#6da0b3918bfd56170fb3cd3a2b5ef832ee1dff0d"
-
integrity sha512-bSGlgwLBYf7PnUsQ6WOc6SJ3pGOcd+d8AA6EUnLDDM0kWEstC1JIlSZA3UNliDXhd9ABoS7hiRBDCu+XP/sf1Q==
-
-
to-regex-range@^5.0.1:
-
version "5.0.1"
-
resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4"
-
integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==
-
dependencies:
-
is-number "^7.0.0"
-
-
tslib@^1.8.1:
-
version "1.14.1"
-
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00"
-
integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
-
-
tslib@^2.1.0, tslib@^2.4.0:
-
version "2.4.0"
-
resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.0.tgz#7cecaa7f073ce680a05847aa77be941098f36dc3"
-
integrity sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==
-
-
tsutils@^3.21.0:
-
version "3.21.0"
-
resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623"
-
integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==
-
dependencies:
-
tslib "^1.8.1"
-
-
type-check@^0.4.0, type-check@~0.4.0:
-
version "0.4.0"
-
resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1"
-
integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==
-
dependencies:
-
prelude-ls "^1.2.1"
-
-
type-detect@^4.0.0, type-detect@^4.0.5:
-
version "4.0.8"
-
resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c"
-
integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==
-
-
type-fest@^0.20.2:
-
version "0.20.2"
-
resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4"
-
integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==
-
-
type-fest@^0.21.3:
-
version "0.21.3"
-
resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37"
-
integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==
-
-
typescript-compiler@^1.4.1-2:
-
version "1.4.1-2"
-
resolved "https://registry.yarnpkg.com/typescript-compiler/-/typescript-compiler-1.4.1-2.tgz#ba4f7db22d91534a1929d90009dce161eb72fd3f"
-
integrity sha512-EMopKmoAEJqA4XXRFGOb7eSBhmQMbBahW6P1Koayeatp0b4AW2q/bBqYWkpG7QVQc9HGQUiS4trx2ZHcnAaZUg==
-
-
typescript@^4.8.2:
-
version "4.8.2"
-
resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.8.2.tgz#e3b33d5ccfb5914e4eeab6699cf208adee3fd790"
-
integrity sha512-C0I1UsrrDHo2fYI5oaCGbSejwX4ch+9Y5jTQELvovfmFkK3HHSZJB8MSJcWLmCUBzQBchCrZ9rMRV6GuNrvGtw==
-
-
typescript@~4.4.4:
-
version "4.4.4"
-
resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.4.4.tgz#2cd01a1a1f160704d3101fd5a58ff0f9fcb8030c"
-
integrity sha512-DqGhF5IKoBl8WNf8C1gu8q0xZSInh9j1kJJMqT3a94w1JzVaBU4EXOSMrz9yDqMT0xt3selp83fuFMQ0uzv6qA==
-
-
unbox-primitive@^1.0.2:
-
version "1.0.2"
-
resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e"
-
integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==
-
dependencies:
-
call-bind "^1.0.2"
-
has-bigints "^1.0.2"
-
has-symbols "^1.0.3"
-
which-boxed-primitive "^1.0.2"
-
-
unicode-canonical-property-names-ecmascript@^1.0.4:
-
version "1.0.4"
-
resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818"
-
integrity sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ==
-
-
unicode-match-property-ecmascript@^1.0.4:
-
version "1.0.4"
-
resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz#8ed2a32569961bce9227d09cd3ffbb8fed5f020c"
-
integrity sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg==
-
dependencies:
-
unicode-canonical-property-names-ecmascript "^1.0.4"
-
unicode-property-aliases-ecmascript "^1.0.4"
-
-
unicode-match-property-value-ecmascript@^1.1.0:
-
version "1.2.0"
-
resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz#0d91f600eeeb3096aa962b1d6fc88876e64ea531"
-
integrity sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ==
-
-
unicode-property-aliases-ecmascript@^1.0.4:
-
version "1.1.0"
-
resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz#dd57a99f6207bedff4628abefb94c50db941c8f4"
-
integrity sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg==
-
-
uri-js@^4.2.2:
-
version "4.4.1"
-
resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e"
-
integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==
-
dependencies:
-
punycode "^2.1.0"
-
-
v8-compile-cache@^2.0.3:
-
version "2.3.0"
-
resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee"
-
integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==
-
-
validate-npm-package-license@^3.0.1:
-
version "3.0.4"
-
resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a"
-
integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==
-
dependencies:
-
spdx-correct "^3.0.0"
-
spdx-expression-parse "^3.0.0"
-
-
"vite@^2.9.12 || ^3.0.0-0":
-
version "3.1.3"
-
resolved "https://registry.yarnpkg.com/vite/-/vite-3.1.3.tgz#b2a0821c11aae124bb7618f8036913c689afcc59"
-
integrity sha512-/3XWiktaopByM5bd8dqvHxRt5EEgRikevnnrpND0gRfNkrMrPaGGexhtLCzv15RcCMtV2CLw+BPas8YFeSG0KA==
-
dependencies:
-
esbuild "^0.15.6"
-
postcss "^8.4.16"
-
resolve "^1.22.1"
-
rollup "~2.78.0"
-
optionalDependencies:
-
fsevents "~2.3.2"
-
-
vitest@^0.23.4:
-
version "0.23.4"
-
resolved "https://registry.yarnpkg.com/vitest/-/vitest-0.23.4.tgz#7ebea620f203f4df09a27ca17819dc9da61f88ef"
-
integrity sha512-iukBNWqQAv8EKDBUNntspLp9SfpaVFbmzmM0sNcnTxASQZMzRw3PsM6DMlsHiI+I6GeO5/sYDg3ecpC+SNFLrQ==
-
dependencies:
-
"@types/chai" "^4.3.3"
-
"@types/chai-subset" "^1.3.3"
-
"@types/node" "*"
-
chai "^4.3.6"
-
debug "^4.3.4"
-
local-pkg "^0.4.2"
-
strip-literal "^0.4.1"
-
tinybench "^2.1.5"
-
tinypool "^0.3.0"
-
tinyspy "^1.0.2"
-
vite "^2.9.12 || ^3.0.0-0"
-
-
which-boxed-primitive@^1.0.2:
-
version "1.0.2"
-
resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6"
-
integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==
-
dependencies:
-
is-bigint "^1.0.1"
-
is-boolean-object "^1.1.0"
-
is-number-object "^1.0.4"
-
is-string "^1.0.5"
-
is-symbol "^1.0.3"
-
-
which-pm-runs@^1.0.0:
-
version "1.1.0"
-
resolved "https://registry.yarnpkg.com/which-pm-runs/-/which-pm-runs-1.1.0.tgz#35ccf7b1a0fce87bd8b92a478c9d045785d3bf35"
-
integrity sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==
-
-
which@^1.2.9:
-
version "1.3.1"
-
resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a"
-
integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==
-
dependencies:
-
isexe "^2.0.0"
-
-
which@^2.0.1:
-
version "2.0.2"
-
resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1"
-
integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==
-
dependencies:
-
isexe "^2.0.0"
-
-
word-wrap@^1.2.3:
-
version "1.2.3"
-
resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c"
-
integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==
-
-
wrap-ansi@^6.2.0:
-
version "6.2.0"
-
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53"
-
integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==
-
dependencies:
-
ansi-styles "^4.0.0"
-
string-width "^4.1.0"
-
strip-ansi "^6.0.0"
-
-
wrap-ansi@^7.0.0:
-
version "7.0.0"
-
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
-
integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
-
dependencies:
-
ansi-styles "^4.0.0"
-
string-width "^4.1.0"
-
strip-ansi "^6.0.0"
-
-
wrappy@1:
-
version "1.0.2"
-
resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
-
integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==
-
-
yallist@^4.0.0:
-
version "4.0.0"
-
resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72"
-
integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==
-
-
yaml@^1.10.0:
-
version "1.10.2"
-
resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b"
-
integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==
-
-
yaml@^2.1.1:
-
version "2.1.1"
-
resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.1.1.tgz#1e06fb4ca46e60d9da07e4f786ea370ed3c3cfec"
-
integrity sha512-o96x3OPo8GjWeSLF+wOAbrPfhFOGY0W00GNaxCDv+9hkcDJEnev1yh8S7pgHF0ik6zc8sQLuL8hjHjJULZp8bw==
-
-
yocto-queue@^0.1.0:
-
version "0.1.0"
-
resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b"
-
integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==
-
-
zen-observable@^0.8.15:
-
version "0.8.15"
-
resolved "https://registry.yarnpkg.com/zen-observable/-/zen-observable-0.8.15.tgz#96415c512d8e3ffd920afd3889604e30b9eaac15"
-
integrity sha512-PQ2PC7R9rslx84ndNBZB/Dkv8V8fZEpk83RLgXtYd0fwUgEjseMn1Dgajh2x6S8QbZAFa9p2qVCEuYZNgve0dQ==