Fork of github.com/did-method-plc/did-method-plc

Compare changes

Choose any two refs to compare.

+35
go-didplc/Makefile
···
+
+
SHELL = /bin/bash
+
.SHELLFLAGS = -o pipefail -c
+
+
.PHONY: help
+
help: ## Print info about all commands
+
@echo "Commands:"
+
@echo
+
@grep -E '^[a-zA-Z0-9_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf " \033[01;32m%-20s\033[0m %s\n", $$1, $$2}'
+
+
#.PHONY: build
+
#build: ## Build all executables
+
# go build ./...
+
+
.PHONY: test
+
test: ## Run all tests
+
go test ./...
+
+
.PHONY: coverage-html
+
coverage-html: ## Generate test coverage report and open in browser
+
go test ./... -coverpkg=./... -coverprofile=test-coverage.out
+
go tool cover -html=test-coverage.out
+
+
.PHONY: lint
+
lint: ## Verify code style and run static checks
+
go vet ./...
+
test -z $(gofmt -l ./...)
+
+
.PHONY: fmt
+
fmt: ## Run syntax re-formatting (modify in place)
+
go fmt ./...
+
+
.PHONY: check
+
check: ## Compile everything, checking syntax (does not output binaries)
+
go build ./...
+11
go-didplc/README.md
···
+
+
`go-didplc`: did:plc in golang
+
==============================
+
+
This golang package will eventually be an implementation of the did:plc specification in golang, including at a minimum verification of DID documents from a PLC operation log.
+
+
## Developer Quickstart
+
+
Install golang. We are generally using v1.22+.
+
+
In this directory (`go-didplc/`) there is a Makefile with helpers for running tests, etc. Run `make help` to list available commands.
+1
spec
···
+
website/spec/
-458
spec/plc-server-openapi3.yaml
···
-
openapi: 3.0.0
-
info:
-
title: "did:plc Directory Server API"
-
version: 0.1
-
contact:
-
name: "Protocol Team at Bluesky"
-
email: "protocol@blueskyweb.xyz"
-
url: "https://web.plc.directory"
-
description: |
-
DID PLC is a self-authenticating [DID](https://www.w3.org/TR/did-core/) which is strongly-consistent, recoverable, and allows for key rotation.
-
-
The central directory server receives and persists self-signed operation logs for each DID, starting with a "genesis operation" which defined the DID identifier itself. This document describes the HTTP API for interacting with the directory server to resolve DID Document, fetch audit logs, and submit signed operations.
-
-
The HTTP API is permissionless, but only valid (correctly signed) operations are accepted. Reasonable rate-limits are applied, but they should not interfer with account recovery in most situations.
-
servers:
-
- url: https://plc.directory
-
-
paths:
-
/{did}:
-
get:
-
description: "Resolve DID Document for the indicated DID"
-
operationId: ResolveDid
-
parameters:
-
- name: did
-
in: path
-
required: true
-
schema:
-
type: string
-
responses:
-
'200':
-
description: "Success, returned DID Document"
-
content:
-
application/did+ld+json:
-
schema:
-
$ref: '#/components/schemas/DidDocument'
-
'404':
-
$ref: '#/components/responses/404DidNotFound'
-
'410':
-
$ref: '#/components/responses/410DidNotAvailable'
-
x-codeSamples:
-
- lang: Shell
-
label: curl
-
source: |
-
curl -s https://plc.directory/did:plc:pyc2ihzpelxtg4cdkfzbhcv4 | jq .
-
- lang: Python
-
label: Python
-
source: |
-
import requests
-
-
did = "did:plc:pyc2ihzpelxtg4cdkfzbhcv4"
-
resp = requests.get(f"https://plc.directory/{did}")
-
resp.raise_for_status()
-
print(resp.json())
-
post:
-
description: "Create new PLC Operation for the indicated DID"
-
operationId: CreatePlcOp
-
parameters:
-
- name: did
-
in: path
-
required: true
-
schema:
-
type: string
-
requestBody:
-
required: true
-
content:
-
application/json:
-
schema:
-
$ref: '#/components/schemas/Operation'
-
responses:
-
'200':
-
description: "Success, operation validated and persisted"
-
# TODO: what is returned here?
-
'400':
-
$ref: '#/components/responses/400BadOperation'
-
'404':
-
$ref: '#/components/responses/404DidNotFound'
-
'410':
-
$ref: '#/components/responses/410DidNotAvailable'
-
/{did}/log:
-
get:
-
description: "Get Current PLC Operation Chain"
-
operationId: GetPlcOpLog
-
parameters:
-
- name: did
-
in: path
-
required: true
-
schema:
-
type: string
-
responses:
-
'200':
-
description: "Success, retured operation log"
-
content:
-
application/json:
-
schema:
-
type: array
-
items:
-
$ref: '#/components/schemas/Operation'
-
'404':
-
$ref: '#/components/responses/404DidNotFound'
-
/{did}/log/audit:
-
get:
-
description: "Get PLC Operation Audit Log"
-
operationId: GetPlcAuditLog
-
parameters:
-
- name: did
-
in: path
-
required: true
-
schema:
-
type: string
-
responses:
-
'200':
-
description: "Success, retured audit log"
-
content:
-
application/json:
-
schema:
-
type: array
-
items:
-
$ref: '#/components/schemas/LogEntry'
-
'404':
-
$ref: '#/components/responses/404DidNotFound'
-
/{did}/log/last:
-
get:
-
description: "Get Latest PLC Operation"
-
operationId: GetLastOp
-
parameters:
-
- name: did
-
in: path
-
required: true
-
schema:
-
type: string
-
responses:
-
'200':
-
description: "Success, returned latest operation"
-
content:
-
application/json:
-
schema:
-
$ref: '#/components/schemas/LogEntry'
-
'404':
-
$ref: '#/components/responses/404DidNotFound'
-
/{did}/data:
-
get:
-
description: "Get Current PLC Data for the indicated DID"
-
operationId: GetPlcData
-
parameters:
-
- name: did
-
in: path
-
required: true
-
schema:
-
type: string
-
responses:
-
'200':
-
description: "Success, retured current PLC data"
-
# TODO: basically just an op, but missing some fields? sigh.
-
'404':
-
$ref: '#/components/responses/404DidNotFound'
-
'410':
-
$ref: '#/components/responses/410DidNotAvailable'
-
/export:
-
get:
-
description: "Bulk fetch PLC Operations for all DIDs, with pagination, in JSON Lines format"
-
operationId: Export
-
parameters:
-
- name: count
-
in: query
-
schema:
-
type: integer
-
default: 10
-
maximum: 1000
-
- name: after
-
in: query
-
schema:
-
type: string
-
format: date-time
-
description: "Return only operations after this indexed timestamp"
-
responses:
-
'200':
-
description: "Success, returned batch of operations"
-
content:
-
application/jsonlines:
-
description: "Newline-delimited JSON file, with a separate JSON object on each line"
-
schema:
-
$ref: '#/components/schemas/LogEntry'
-
'400':
-
$ref: '#/components/responses/400BadRequest'
-
-
components:
-
responses:
-
404DidNotFound:
-
description: "DID Not Found"
-
content:
-
application/json:
-
schema:
-
type: object
-
properties:
-
message:
-
type: string
-
example:
-
message: "DID not registered: did:plc:ewvi7nxzyoun6zhxrhs64oiz"
-
410DidNotAvailable:
-
description: "DID Not Available (Tombstone)"
-
content:
-
application/json:
-
schema:
-
type: object
-
properties:
-
message:
-
type: string
-
example:
-
message: "DID not available: did:plc:ewvi7nxzyoun6zhxrhs64oiz"
-
400BadOperation:
-
description: "Invalid PLC Operation"
-
content:
-
application/json:
-
schema:
-
type: object
-
properties:
-
message:
-
type: string
-
example:
-
message: "Invalid Signature"
-
400BadRequest:
-
description: "Bad Request"
-
content:
-
application/json:
-
schema:
-
type: object
-
properties:
-
message:
-
type: string
-
example:
-
message: "Invalid Query Parameter"
-
schemas:
-
Operation:
-
oneOf:
-
- $ref: '#/components/schemas/PlcOp'
-
- $ref: '#/components/schemas/TombstoneOp'
-
- $ref: '#/components/schemas/LegacyCreateOp'
-
discriminator:
-
propertyName: type
-
mapping:
-
plc_operation: '#/components/schemas/PlcOp'
-
plc_tombstone: '#/components/schemas/TombstoneOp'
-
create: '#/components/schemas/LegacyCreateOp'
-
PlcOp:
-
type: object
-
description: "Regular PLC operation. Can be a genesis operation (create DID, no 'prev' field), or a data update."
-
required:
-
- type
-
- rotationKeys
-
- verificationMethods
-
- alsoKnownAs
-
- services
-
- prev
-
- sig
-
properties:
-
type:
-
type: string
-
rotationKeys:
-
type: array
-
items:
-
type: string
-
description: "Ordered set (no duplicates) of cryptographic public keys in did:key format"
-
verificationMethods:
-
type: object
-
description: "Map (object) of application-specific cryptographic public keys in did:key format"
-
alsoKnownAs:
-
type: array
-
items:
-
type: string
-
description: "Ordered set (no duplicates) of aliases and names for this account, in the form of URIs"
-
services:
-
type: object
-
description: "Map (object) of application-specific service endpoints for this account"
-
prev:
-
type: string
-
nullable: true
-
description: "Strong reference (hash) of preceeding operation for this DID, in string CID format. Null for genesis operation"
-
sig:
-
type: string
-
description: "Cryptographic signature of this object, with base64 string encoding"
-
example:
-
type: "plc_operation"
-
services:
-
atproto_pds:
-
type: "AtprotoPersonalDataServer"
-
endpoint: "https://bsky.social"
-
alsoKnownAs:
-
- "at://atproto.com"
-
rotationKeys:
-
- "did:key:zQ3shhCGUqDKjStzuDxPkTxN6ujddP4RkEKJJouJGRRkaLGbg"
-
- "did:key:zQ3shpKnbdPx3g3CmPf5cRVTPe1HtSwVn5ish3wSnDPQCbLJK"
-
verificationMethods:
-
atproto: "did:key:zQ3shXjHeiBuRCKmM36cuYnm7YEMzhGnCmCyW92sRJ9pribSF"
-
-
TombstoneOp:
-
type: object
-
description: "Special operation which deactives (revokes) the DID. This is permanent once the recovery window expires."
-
required:
-
- type
-
- prev
-
- sig
-
properties:
-
type:
-
type: string
-
prev:
-
type: string
-
description: "Strong reference (hash) of preceeding operation for this DID, in string CID format"
-
sig:
-
type: string
-
description: "Cryptographic signature of this object, with base64 string encoding"
-
example:
-
type: "plc_tombstone"
-
prev: "bafyreid6awsb6lzc54zxaq2roijyvpbjp5d6mii2xyztn55yli7htyjgqy"
-
sig: "41iJmrPRUTIi24HBduzgoavjOibAx2yFJ2p1d7zTN6ZmMgjSaTF8dJf0HtdU4EBNUBTWq33PZyh5tyb1bJq3Fw"
-
-
LegacyCreateOp:
-
type: object
-
description: "Obsolete PLC genesis operations, which must still be supported to ensure all did:plc identifiers can be resolved correctly."
-
required:
-
- type
-
- signingKey
-
- recoveryKey
-
- handle
-
- service
-
- prev
-
- sig
-
properties:
-
type:
-
type: string
-
signingKey:
-
type: string
-
description: "atproto cryptographic public key in did:key format"
-
recoveryKey:
-
type: string
-
description: "PLC recovery cryptographic public key in did:key format"
-
handle:
-
type: string
-
description: "atproto handle as AT-URI (at://)"
-
service:
-
type: string
-
description: "atproto_pds service endpoint URL"
-
prev:
-
type: string
-
nullable: true
-
description: "Strong reference (hash) of preceeding operation for this DID, in string CID format"
-
sig:
-
type: string
-
description: "Cryptographic signature of this object, with base64 string encoding"
-
example:
-
type: "create"
-
signingKey: "did:key:zQ3shP5TBe1sQfSttXty15FAEHV1DZgcxRZNxvEWnPfLFwLxJ"
-
recoveryKey: "did:key:zQ3shhCGUqDKjStzuDxPkTxN6ujddP4RkEKJJouJGRRkaLGbg"
-
handle: "first-post.bsky.social"
-
service: "https://bsky.social"
-
prev: null
-
sig: "yvN4nQYWTZTDl9nKSSyC5EC3nsF5g4S56OmRg9G6_-pM6FCItV2U2u14riiMGyHiCD86l6O-1xC5MPwf8vVsRw"
-
-
LogEntry:
-
type: object
-
required:
-
- did
-
- operation
-
- cid
-
- nullified
-
- createdAt
-
properties:
-
did:
-
type: string
-
description: "DID that this operation applies to"
-
operation:
-
$ref: "#/components/schemas/Operation"
-
cid:
-
type: cid
-
description: "Hash of the operation, in string CID format"
-
nullified:
-
type: bool
-
description: "Whether this operation is included in the current operation chain, or has been overridden"
-
createdAt:
-
type: string
-
format: date-time
-
description: "Timestamp when this operation was received by the directory server"
-
example:
-
did: "did:plc:ewvi7nxzyoun6zhxrhs64oiz"
-
operation:
-
sig: "lza4at_jCtGo_TYgL5PC1ZNP7lhF4DV8H50LWHhvdHcB143x1wEwqZ43xvV36Pws6OOnJLJrkibEUFDFqkhIhg"
-
prev: null
-
type: "plc_operation"
-
services:
-
atproto_pds:
-
type: "AtprotoPersonalDataServer"
-
endpoint: "https://bsky.social"
-
alsoKnownAs:
-
- "at://atprotocol.bsky.social"
-
rotationKeys:
-
- "did:key:zQ3shhCGUqDKjStzuDxPkTxN6ujddP4RkEKJJouJGRRkaLGbg"
-
- "did:key:zQ3shpKnbdPx3g3CmPf5cRVTPe1HtSwVn5ish3wSnDPQCbLJK"
-
verificationMethods:
-
atproto: "did:key:zQ3shXjHeiBuRCKmM36cuYnm7YEMzhGnCmCyW92sRJ9pribSF"
-
cid: "bafyreibfvkh3n6odvdpwj54j4xxdsgnn4zo5utbyf7z7nfbyikhtygzjcq"
-
nullified: false
-
createdAt: "2023-04-26T06:19:25.508Z"
-
-
DidDocument:
-
type: object
-
required:
-
- id
-
properties:
-
id:
-
type: string
-
example: "did:plc:ewvi7nxzyoun6zhxrhs64oiz"
-
alsoKnownAs:
-
type: array
-
description: "Ordered set (no duplicates) of aliases and names for this account, in the form of URIs"
-
items:
-
type: string
-
example: "at://atproto.com"
-
verificationMethods:
-
type: array
-
items:
-
type: object
-
required:
-
- id
-
- type
-
- controller
-
- publicKeyMultibase
-
properties:
-
id:
-
type: string
-
type:
-
type: string
-
controller:
-
type: string
-
publicKeyMultibase:
-
type: string
-
example:
-
id: "#atproto"
-
type: "EcdsaSecp256k1VerificationKey2019"
-
controller: "did:plc:ewvi7nxzyoun6zhxrhs64oiz"
-
publicKeyMultibase: "zQYEBzXeuTM9UR3rfvNag6L3RNAs5pQZyYPsomTsgQhsxLdEgCrPTLgFna8yqCnxPpNT7DBk6Ym3dgPKNu86vt9GR"
-
service:
-
type: array
-
items:
-
type: object
-
required:
-
- id
-
- type
-
- serviceEndpoint
-
properties:
-
id:
-
type: string
-
type:
-
type: string
-
serviceEndpoint:
-
type: string
-
example:
-
id: "#atproto_pds"
-
type: "AtprotoPersonalDataServer"
-
serviceEndpoint: "https://bsky.social"
-392
spec/v0.1/did-plc.md
···
-
-
# `did:plc` Method Specification
-
-
**Version:** v0.1 (May 2023)
-
-
DID PLC is a self-authenticating [DID](https://www.w3.org/TR/did-core/) which is strongly-consistent, recoverable, and allows for key rotation.
-
-
An example DID is: `did:plc:ewvi7nxzyoun6zhxrhs64oiz`
-
-
Control over a `did:plc` identity rests in a set of reconfigurable rotation keys pairs. These keys can sign update operations to mutate the identity (including key rotations), with each operation referencing a prior version of the identity state by hash. Each identity starts from an initial genesis operation, and the hash of this initial object is what defines the DID itself (that is, the DID URI identifier string). A central directory server collects and validates operations, and maintains a transparent log of operations for each DID.
-
-
## How it works
-
-
The core data fields associated with an active `did:plc` identifier at any point in time are listed below. The encoding and structure differs somewhat from DID document formatting and semantics, but this information is sufficient to render a valid DID document.
-
-
- `did` (string): the full DID identifier
-
- `rotationKeys` (array of strings): priority-ordered list of public keys in `did:key` encoding. must include least 1 key and at most 5 keys, with no duplication. control of the DID identifier rests in these keys. not included in DID document.
-
- `verificationMethods` (map with string keys and values): a set service / public key mappings. the values are public keys `did:key` encoding; they get re-encoded in "multibase" form when rendered in DID document. the key strings should not include a `#` prefix; that will be added when rendering the DID document. used to generate `verificationMethods` of DID document. these keys do not have control over the DID document
-
- `alsoKnownAs` (array of strings): priority-ordered list of URIs which indicate other names or aliases associated with the DID identifier
-
- `services` (map with string keys; values are maps with `type` and `endpoint` string fields): a set of service / URL mappings. the key strings should not include a `#` prefix; that will be added when rendering the DID document.
-
-
Every update operation to the DID identifier, including the initial creation operation (the genesis operation), contains all of the above information, except for the `did` field. The DID itself is generated from a hash of the signed genesis operation (details described below), which makes the DID entirely self-certifying. Updates after initial creation contain a pointer to the most-recent previous operation (by hash).
-
-
Operations are signed and submitted to the central PLC directory server over an un-authenticated HTTP request. The PLC server validates operations against any and all existing operations on the DID (including signature validation, recovery time windows, etc), and either rejects the operation or accepts and permanently stores the operation, along with a server-generated timestamp.
-
-
A special operation type is a "tombstone", which clears all of the data fields and permanently deactivates the DID. Note that the usual recovery time window applies to tombstone operations.
-
-
Note that `rotationKeys` and `verificationMethods` (signing keys) may have public keys which are re-used across many accounts. There is not necessarily a one-to-one mapping between a DID and either rotation keys or signing keys.
-
-
Only `secp256k1` ("k256") and NIST P-256 ("p256") keys are currently supported, for both rotation and signing keys.
-
-
### Use with AT Protocol
-
-
The following information should be included for use with atproto:
-
-
- `verificationMethods`: an `atproto` entry with a "blessed" public key type, to be used as a signing key for authenticating updates to the account's repository. The signing key does not have any control over the DID identity unless also included in the `rotationKeys` list. Best practice is to maintain separation between rotation keys and atproto signing keys.
-
- `alsoKnownAs`: should include an `at://` URI indicating a handle (hostname) for the account. Note that the handle/DID mapping needs to be validated bi-directionally (via handle resolution), and needs to be re-verified periodically
-
- `services`: an `atproto_pds` entry with an `AtprotoPersonalDataServer` type and http/https URL `endpoint` indicating the account's current PDS hostname. for example, `https://pds.example.com` (no `/xrpc/` suffix needed).
-
-
### Operation Serialization, Signing, and Validation
-
-
There are a couple variations on the operation data object schema. The operations are also serialized both as simple JSON objects, or binary DAG-CBOR encoding for the purpose of hashing or signing.
-
-
A regular creation or update operation contains the following fields:
-
-
- `type` (string): with fixed value `plc_operation`
-
- `rotationKeys` (array of strings): as described above
-
- `verificationMethods` (mapping of string keys and values): as described above
-
- `alsoKnownAs` (array of strings): as described above
-
- `services` (mapping of string keys and object values): as described above
-
- `prev` (string, nullable): a CID hash pointer to a previous operation if an update, or `null` for a creation. If `null`, the key should actually be part of the object, with value `null`, not simply omitted. In DAG-CBOR encoding, the CID is string-encoded, not a binary IPLD "Link"
-
- `sig` (string): signature of the operation in `base64url` encoding
-
-
A tombstone operation contains:
-
-
- `type` (string): with fixed value `plc_tombstone`
-
- `prev` (string): same as above, but not nullable
-
- `sig` (string): signature of the operation (same as above)
-
-
There is also a deprecated legacy operation format, supported *only* for creation ("genesis") operations:
-
-
- `type` (string): with fixed value `create`
-
- `signingKey` (string): single `did:key` value (not an array of strings)
-
- `recoveryKey` (string): single `did:key` value (not an array of strings); and note "recovery" terminology, not "rotation"
-
- `handle` (string): single value, indicating atproto handle, instead of `alsoKnownAs`. bare handle, with no `at://` prefix
-
- `service` (string): single value, http/https URL of atproto PDS
-
- `prev` (null): always include, but always with value `null`
-
- `sig` (string): signature of the operation (same as above)
-
-
Legacy `create` operations are stored in the PLC registry and may be returned in responses, so validating software needs to support that format. Conversion of the legacy format to "regular" operation format is relatively straight-forward, but there exist many `did:plc` identifiers where the DID identifier itself is based on the hash of the old format, so they will unfortunately be around forever.
-
-
The process for signing and hashing operation objects is to first encode them in the DAG-CBOR binary serialization format. [DAG-CBOR](https://ipld.io/specs/codecs/dag-cbor/spec/) is a restricted subset of the Concise Binary Object Representation (CBOR), an IETF standard (RFC 8949), with semantics and value types similar to JSON.
-
-
As an anti-abuse mechanism, operations have a maximum size when encoded as DAG-CBOR. The current limit is 7500 bytes.
-
-
For signatures, the object is first encoded as DAG-CBOR *without* the `sig` field at all (as opposed to a `null` value in that field). Those bytes are signed, and then the signature bytes are encoded as a string using `base64url` encoding. The `sig` value is then populated with the string. In strongly typed programming languages it is a best practice to have distinct "signed" and "unsigned" types.
-
-
When working with signatures, note that ECDSA signatures are not necessarily *deterministic* or *unique*. That is, the same key signing the same bytes *might* generate the same signature every time, or it might generate a *different* signature every time, depending on the cryptographic library and configuration. In some cases it is also easy for a third party to take a valid signature and transform it in to a new, distinct signature, which also validates. Be sure to always use the "validate signature" routine from a cryptographic library, instead of re-signing bytes and directly comparing the signature bytes.
-
-
For `prev` references, the SHA-256 of the previous operation's bytes are encoded as a "[CID](https://github.com/multiformats/cid)", with the following parameters:
-
-
- CIDv1
-
- `base32` multibase encoding (prefix: `b`)
-
- `dag-cbor` multibase type (code: 0x71)
-
- `sha-256` multihash (code: 0x12)
-
-
Rotation keys are serialized as strings using [did:key](https://w3c-ccg.github.io/did-method-key/), and only `secp256k1` ("k256") and NIST P-256 ("p256") are currently supported.
-
-
The signing keys (`verificationMethods`) are also serialized using `did:key` in operations. When rendered in a DID document, signing keys are represented as objects, with the actual keys in multibase encoding, as required by the DID Core specification.
-
-
The DID itself is derived from the hash of the first operation in the log, called the "genesis" operation. The signed operation is encoded in DAG-CBOR; the bytes are hashed with SHA-256; the hash bytes are `base32`-encoded (not hex encoded) as a string; and that string is truncated to 24 chars to yield the "identifier" segment of the DID.
-
-
In pseudo-code:
-
`did:plc:${base32Encode(sha256(createOp)).slice(0,24)}`
-
-
### Identifier Syntax
-
-
The DID PLC method name is `plc`. The identifier part is 24 characters long, including only characters from the `base32` encoding set. An example is `did:plc:yk4dd2qkboz2yv6tpubpc6co`. This means:
-
-
- the overall identifier length is 32 characters
-
- the entire identifier is lower-case (and should be normalized to lower-case)
-
- the entire identifier is ASCII, and includes only the characters `a-z`, `0-9`, and `:` (and does not even use digits `0189`)
-
-
-
### Key Rotation & Account Recovery
-
-
Any key specified in `rotationKeys` has the ability to sign operations for the DID document.
-
-
The set of rotation keys for a DID is not included in the DID document. They are an internal detail of PLC, and are stored in the operation log.
-
-
Keys are listed in the `rotationKeys` field of operations in order of descending authority.
-
-
The PLC server provides a 72hr window during which a higher authority rotation key can "rewrite" history, clobbering any operations (or chain of operations) signed by a lower-authority rotation key.
-
-
To do so, that key must sign a new operation that points to the CID of the last "valid" operation - ie the fork point.
-
The PLC server will accept this recovery operation as long as:
-
-
- it is submitted within 72hrs of the referenced operation
-
- the key used for the signature has a lower index in the `rotationKeys` array than the key that signed the to-be-invalidated operation
-
-
-
### Privacy and Security Concerns
-
-
The full history of DID operations and updates, including timestamps, is permanently publicly accessible. This is true even after DID deactivation. It is important to recognize (and communicate to account holders) that any personally identifiable information (PII) encoded in `alsoKnownAs` URIs will be publicly visible even after DID deactivation, and can not be redacted or purged.
-
-
In the context of atproto, this includes the full history of handle updates and PDS locations (URLs) over time. To be explicit, it does not include any other account metadata such as email addresses or IP addresses. Handle history could potentially de-anonymize account holders if they switch handles between a known identity and an anonymous or pseudonymous identity.
-
-
The PLC server does not cross-validate `alsoKnownAs` or `service` entries in operations. This means that any DID can "claim" to have any identity, or to have an active account with any service (identified by URL). This data should *not* be trusted without bi-directionally verification, for example using handle resolution.
-
-
The timestamp metadata encoded in the PLC audit log could be cross-verified against network traffic or other information to de-anonymize account holders. It also makes the "identity creation date" public.
-
-
If "rotation" and "signing" keys are re-used across multiple account, it could reveal non-public identity details or relationships. For example, if two individuals cross-share rotation keys as a trusted backup, that information is public. If device-local recovery or signing keys are uniquely shared by two identifiers, that would indicate that those identities may actually be the same person.
-
-
-
#### PLC Server Trust Model
-
-
The PLC server has a public endpoint to receive operation objects from any client (without authentication). The server verifies operations, orders them according to recovery rules, and makes the log of operations publicly available.
-
-
The operation log is self-certifying, and contains all the information needed to construct (or verify) the the current state of the DID document.
-
-
Some trust is required in the PLC server. Its attacks are limited to:
-
-
- Denial of service: rejecting valid operations, or refusing to serve some information about the DID
-
- Misordering: In the event of a fork in DID document history, the server could choose to serve the "wrong" fork
-
-
-
### DID Creation
-
-
To summarize the process of creating a new `did:plc` identifier:
-
-
- collect values for all of the core data fields, including generating new secure key pairs if necessary
-
- construct an "unsigned" regular operation object. include a `prev` field with `null` value. do not use the deprecated/legacy operation format for new DID creations
-
- serialize the "unsigned" operation with DAG-CBOR, and sign the resulting bytes with one of the initial `rotationKeys`. encode the signature as `base64url`, and use that to construct a "signed" operation object
-
- serialize the "signed" operation with DAG-CBOR, take the SHA-256 hash of those bytes, and encode the hash bytes in `base32`. use the first 24 characters to generate DID value (`did:plc:<hashchars>`)
-
- serialize the "signed" operation as simple JSON, and submit it via HTTP POST to `https://plc.directory/:did`
-
- if the HTTP status code is successful, the DID has been registered
-
-
When "signing" using a "`rotationKey`", what is meant is to sign using the private key associated the public key in the `rotationKey` list.
-
-
### DID Update
-
-
To summarize the process of updating a new `did:plc` identifier:
-
-
- if the current DID state isn't known, fetch the current state from `https://plc.directory/:did/data`
-
- if the most recent valid DID operation CID (hash) isn't known, fetch the audit log from `https://plc.directory/:did/log/audit`, identify the most recent valid operation, and get the `cid` value. if this is a recovery operation, the relevant "valid" operation to fork from may not be the most recent in the audit log
-
- collect updated values for all of the core data fields, including generating new secure key pairs if necessary (eg, key rotation)
-
- construct an "unsigned" regular operation object. include a `prev` field with the CID (hash) of the previous valid operation
-
- serialize the "unsigned" operation with DAG-CBOR, and sign the resulting bytes with one of the previously-existing `rotationKeys`. encode the signature as `base64url`, and use that to construct a "signed" operation object
-
- serialize the "signed" operation as simple JSON, and submit it via HTTP POST to `https://plc.directory/:did`
-
- if the HTTP status code is successful, the DID has been updated
-
- the DID update may be nullified by a "rotation" operation during the recovery window (currently 72hr)
-
-
### DID Deactivation
-
-
To summarize the process of de-activating an existing `did:plc` identifier:
-
-
- if the most recent valid DID operation CID (hash) isn't known, fetch the audit log from `https://plc.directory/:did/log/audit`, identify the most recent valid operation, and get the `cid` value
-
- construct an "unsigned" tombstone operation object. include a `prev` field with the CID (hash) of the previous valid operation
-
- serialize the "unsigned" tombstone operation with DAG-CBOR, and sign the resulting bytes with one of the previously-existing `rotationKeys`. encode the signature as `base64url`, and use that to construct a "signed" tombstone operation object
-
- serialize the "signed" tombstone operation as simple JSON, and submit it via HTTP POST to `https://plc.directory/:did`
-
- if the HTTP status code is successful, the DID has been deactivated
-
- the DID deactivation may be nullified by a "rotation" operation during the recovery window (currently 72hr)
-
-
### DID Resolution
-
-
PLC DIDs are resolved to a DID document (JSON) by making simple HTTP GET request to the PLC server. The resolution endpoint is: `https://plc.directory/:did`
-
-
The PLC-specific state data (based on the most recent operation) can be fetched as a JSON object at: `https://plc.directory/:did/data`
-
-
-
### Audit Logs
-
-
As an additional check against abuse by the PLC server, and to promote resiliency, the set of all identifiers is enumerable, and the set of all operations for all identifiers (even "nullified" operations) can be enumerated and audited.
-
-
The log of currently-valid operations for a given DID, as JSON, can be found at: `https://plc.directory/:did/log/audit`
-
-
The audit history of a given DID (complete with timestamps and invalidated forked histories), as JSON, can be found at: `https://plc.directory/:did/log/audit`
-
-
To fully validate a DID document against the operation log:
-
-
- fetch the full audit log
-
- for the genesis operation, validate the DID
-
- note that the genesis operation may be in deprecated/legacy format, and should be encoded and verified in that format
-
- see the "DID Creation" section above for details
-
- for each operation in the log, validate signatures:
-
- identify the set of valid `rotationKeys` at that point of time: either the initial keys for a "genesis" operation, or the keys in the `prev` operation
-
- remove any `sig` field and serialize the "unsigned" operation with DAG-CBOR, yielding bytes
-
- decode the `base64url` `sig` field to bytes
-
- for each of the `rotationKeys`, attempt to verify the signature against the "unsigned" bytes
-
- if no key matches, there has been a trust violation; the PLC server should never have accepted the operation
-
- verify the correctness of "nullified" operations and the current active operation log using the rules around rotation keys and recovery windows
-
-
The complete log of operations for all DIDs on the PLC server can be enumerated efficiently:
-
-
- HTTP endpoint: `https://plc.directory/export`
-
- output format: [JSON lines](https://jsonlines.org/)
-
- `count` query parameter, as an integer, maximum 1000 lines per request
-
- `after` query parameter, based on `createdAt` timestamp, for pagination
-
-
-
## Example
-
-
```ts
-
// note: we use shorthand for keys for ease of reference, but consider them valid did:keys
-
-
// Genesis operation
-
const genesisOp = {
-
type: 'plc_operation',
-
verificationMethods: {
-
atproto: "did:key:zSigningKey"
-
},
-
rotationKeys: [
-
"did:key:zRecoveryKey",
-
"did:key:zRotationKey"
-
],
-
alsoKnownAs: [
-
"at://alice.test"
-
],
-
services: {
-
atproto_pds: {
-
type: "AtprotoPersonalDataServer",
-
endpoint: "https://example.test"
-
}
-
},
-
prev: null,
-
sig: 'sig_from_did:key:zRotationKey'
-
}
-
-
// Operation to update recovery key
-
const updateKeys = {
-
type: 'plc_operation',
-
verificationMethods: {
-
atproto: "did:key:zSigningKey"
-
},
-
rotationKeys: [
-
"did:key:zNewRecoveryKey",
-
"did:key:zRotationKey"
-
],
-
alsoKnownAs: [
-
"at://alice.test"
-
],
-
services: {
-
atproto_pds: {
-
type: "AtprotoPersonalDataServer",
-
endpoint: "https://example.test"
-
}
-
},
-
prev: CID(genesisOp),
-
sig: 'sig_from_did:key:zRotationKey'
-
}
-
-
// Invalid operation that will be rejected
-
// because did:key:zAttackerKey is not listed in rotationKeys
-
const invalidUpdate = {
-
type: 'plc_operation',
-
verificationMethods: {
-
atproto: "did:key:zAttackerKey"
-
},
-
rotationKeys: [
-
"did:key:zAttackerKey"
-
],
-
alsoKnownAs: [
-
"at://bob.test"
-
],
-
services: {
-
atproto_pds: {
-
type: "AtprotoPersonalDataServer",
-
endpoint: "https://example.test"
-
}
-
},
-
prev: CID(updateKeys),
-
sig: 'sig_from_did:key:zAttackerKey'
-
}
-
-
// Valid recovery operation that "undoes" updateKeys
-
const recoveryOp = {
-
type: 'plc_operation',
-
verificationMethods: {
-
atproto: "did:key:zSigningKey"
-
},
-
rotationKeys: [
-
"did:key:zRecoveryKey"
-
],
-
alsoKnownAs: [
-
"at://alice.test"
-
],
-
services: {
-
atproto_pds: {
-
type: "AtprotoPersonalDataServer",
-
endpoint: "https://example.test"
-
}
-
},
-
prev: CID(genesisOp),
-
sig: 'sig_from_did:key:zRecoveryKey'
-
}
-
```
-
-
## Presentation as DID Document
-
-
The following data:
-
-
```ts
-
{
-
did: 'did:plc:7iza6de2dwap2sbkpav7c6c6',
-
verificationMethods: {
-
atproto: 'did:key:zDnaeh9v2RmcMo13Du2d6pjUf5bZwtauYxj3n9dYjw4EZUAR7'
-
},
-
rotationKeys: [
-
'did:key:zDnaedvvAsDE6H3BDdBejpx9ve2Tz95cymyCAKF66JbyMh1Lt',
-
'did:key:zDnaeh9v2RmcMo13Du2d6pjUf5bZwtauYxj3n9dYjw4EZUAR7'
-
],
-
alsoKnownAs: [
-
'at://alice.test'
-
],
-
services: {
-
atproto_pds: {
-
type: "AtprotoPersonalDataServer",
-
endpoint: "https://example.test"
-
}
-
}
-
}
-
```
-
-
Will be presented as the following DID document:
-
-
```ts
-
{
-
'@context': [
-
'https://www.w3.org/ns/did/v1',
-
'https://w3id.org/security/suites/ecdsa-2019/v1'
-
],
-
id: 'did:plc:7iza6de2dwap2sbkpav7c6c6',
-
alsoKnownAs: [ 'at://alice.test' ],
-
verificationMethod: [
-
{
-
id: '#atproto',
-
type: 'EcdsaSecp256r1VerificationKey2019',
-
controller: 'did:plc:7iza6de2dwap2sbkpav7c6c6',
-
publicKeyMultibase: 'zSSa7w8s5aApu6td45gWTAAFkqCnaWY6ZsJ8DpyzDdYmVy4fARKqbn5F1UYBUMeVvYTBsoSoLvZnPdjd3pVHbmAHP'
-
}
-
],
-
service: [
-
{
-
id: '#atproto_pds',
-
type: 'AtprotoPersonalDataServer',
-
serviceEndpoint: 'https://example2.com'
-
}
-
]
-
}
-
```
-
-
## Possible Future Changes
-
-
The set of allowed ("blessed") public key cryptographic algorithms (aka, curves) may expanded over time, slowly. Likewise, support for additional blessed CID types and parameters may be expanded over time, slowly.
-
-
The recovery time window may become configurable, within constraints, as part of the DID metadata itself.
-
-
Support for "DID Controller Delegation" could be useful (eg, in the context of atproto PDS hosts), and may be incorporated.
-
-
In the context of atproto, support for multiple handles for the same DID is being considered, with a single primary handle. But no final decision has been made yet.
-
-
We welcome proposals for small additions to make `did:plc` more generic and reusable for applications other than atproto. But no promises: atproto will remain the focus for the near future.
-
-
We are enthusiastic about the prospect of moving governance of the `did:plc` method, and operation of registry servers, out of the sole control of Bluesky PBC. Audit log snapshots, mirroring, and automated third-party auditing have all been considered as mechanisms to mitigate the centralized nature of the PLC server.
-
-
The size of the `verificationMethods`, `alsoKnownAs`, and `service` mappings/arrays may be specifically constrained. And the maximum DAG-CBOR size may be constrained.
-
-
As an anti-abuse mechanisms, the PLC server load balancer restricts the number of HTTP requests per time window. The limits are generous, and operating large services or scraping the operation log should not run in to limits. Specific per-DID limits on operation rate may be introduced over time. For example, no more than N operations per DID per rotation key per 24 hour window.
-
-
A "DID PLC history explorer" web interface would make the public nature of the DID audit log more publicly understandable.
-
-
It is concievable that longer DID PLCs, with more of the SHA-256 characters, will be supported in the future. It is also concievable that a different hash algorithm would be allowed. Any such changes would allow existing DIDs in their existing syntax to continue being used.
+3
go-didplc/go.mod
···
+
module github.com/did-method-plc/did-method-plc/go-didplc
+
+
go 1.22.0
+1
go-didplc/main.go
···
+
package didplc
+2 -3
packages/server/src/routes.ts
···
import * as plc from '@did-plc/lib'
import { ServerError } from './error'
import { AppContext } from './context'
-
import { assertValidIncomingOp } from './constraints'
+
import { validateIncomingOp } from './constraints'
export const createRouter = (ctx: AppContext): express.Router => {
const router = express.Router()
···
// Update or create a DID doc
router.post('/:did', async function (req, res) {
const { did } = req.params
-
const op = req.body
-
assertValidIncomingOp(op)
+
const op = validateIncomingOp(req.body)
await ctx.db.validateAndAddOp(did, op)
res.sendStatus(200)
})
+1 -1
packages/lib/package.json
···
},
"dependencies": {
"@atproto/common": "0.3.0",
-
"@atproto/crypto": "0.3.0",
+
"@atproto/crypto": "0.4.3",
"@ipld/dag-cbor": "^7.0.3",
"axios": "^1.3.4",
"multiformats": "^9.6.4",
+1 -1
packages/server/package.json
···
},
"dependencies": {
"@atproto/common": "0.3.0",
-
"@atproto/crypto": "0.3.0",
+
"@atproto/crypto": "0.4.3",
"@did-plc/lib": "*",
"axios": "^1.3.4",
"cors": "^2.8.5",
+1 -1
LICENSE
···
Dual MIT/Apache-2.0 License
-
Copyright (c) 2022-2024 Bluesky PBC
+
Copyright (c) 2022-2025 Bluesky Social PBC
Except as otherwise noted in individual files, this software is licensed under the MIT license (<http://opensource.org/licenses/MIT>), or the Apache License, Version 2.0 (<http://www.apache.org/licenses/LICENSE-2.0>), at your option.
+1 -1
website/templates/base.html
···
<footer class="container-fluid">
<div class="container">
-
<small>Developed by <a href="https://bsky.social">Bluesky PBC</a> for <a href="https://atproto.com">atproto</a></small>
+
<small>Developed by <a href="https://bsky.social">Bluesky Social PBC</a> for <a href="https://atproto.com">atproto</a></small>
</div>
</footer>
{% endblock -%}
+1 -1
website/templates/home.html
···
<p>PLC is a method which implements the W3C Decentralized Identifier (DID) standard. This means it is interoperable and reusable by other applications and organization.</p>
-
<p>Bluesky PBC developed DID PLC when designing the AT Protocol (atproto) because we were not satisfied with any of the existing DID methods. We wanted a strongly consistent, highly available, recoverable, and cryptographically secure method with fast and cheap propagation of updates.</p>
+
<p>Bluesky Social PBC developed DID PLC when designing the AT Protocol (atproto) because we were not satisfied with any of the existing DID methods. We wanted a strongly consistent, highly available, recoverable, and cryptographically secure method with fast and cheap propagation of updates.</p>
<p>PLC stands for "Public Ledger of Credentials". The system has been in production use for several years, with over twelve million registered DIDs in the atproto network as of October 2024. We feel that the existing system provides value and is worth consideration as a persistent identifier for other applications. The system may evolve to add functionality or improve security, but will do so in a backwards-compatible manner so that existing DIDs will continue to resolve.</p>
+10 -5
packages/server/tests/server.test.ts
···
exoticSigningKeyFromTheFuture,
)
-
// check that we can still read back the did document
-
const doc = await client.getDocumentData(did2)
-
expect(doc.verificationMethods).toEqual({
-
atproto: exoticSigningKeyFromTheFuture,
-
})
+
// check that we can still read back the rendered did document
+
const doc = await client.getDocument(did2)
+
expect(doc.verificationMethod).toEqual([
+
{
+
id: did2 + '#atproto',
+
type: 'Multikey',
+
controller: did2,
+
publicKeyMultibase: exoticSigningKeyFromTheFuture.slice(8),
+
},
+
])
})
it('does not allow syntactically invalid verificationMethod keys', async () => {
+17 -5
packages/lib/src/document.ts
···
const verificationMethods: VerificationMethod[] = []
for (const [keyid, key] of Object.entries(data.verificationMethods)) {
const info = formatKeyAndContext(key)
-
if (!context.includes(info.context)) {
+
if (info.context && !context.includes(info.context)) {
context.push(info.context)
}
verificationMethods.push({
···
}
type KeyAndContext = {
-
context: string
+
context?: string
type: string
-
publicKeyMultibase
+
publicKeyMultibase: string
}
const formatKeyAndContext = (key: string): KeyAndContext => {
···
try {
keyInfo = crypto.parseDidKey(key)
} catch (err) {
-
throw new UnsupportedKeyError(key, err)
+
return {
+
// we can't specify a context for a key type we don't recognize
+
type: 'Multikey',
+
publicKeyMultibase: key.replace(/^(did:key:)/, ''),
+
}
}
const { jwtAlg } = keyInfo
···
publicKeyMultibase: key.replace(/^(did:key:)/, ''),
}
}
-
throw new UnsupportedKeyError(key, `Unsupported key type: ${jwtAlg}`)
+
+
// this codepath might seem unreachable/redundant, but it's possible
+
// parseDidKey() supports more key formats in future, before this function
+
// can be updated likewise
+
return {
+
// we can't specify a context for a key type we don't recognize
+
type: 'Multikey',
+
publicKeyMultibase: key.replace(/^(did:key:)/, ''),
+
}
}
+3 -3
packages/server/src/constraints.ts
···
const MAX_SERVICE_ENTRIES = 10
const MAX_SERVICE_TYPE_LENGTH = 256
const MAX_SERVICE_ENDPOINT_LENGTH = 512
-
const MAX_VERIF_METHOD_ENTRIES = 10
+
const MAX_VERIFICATION_METHOD_ENTRIES = 10
const MAX_ID_LENGTH = 32
const MAX_DID_KEY_LENGTH = 256 // k256 = 57, BLS12-381 = 143
···
}
}
const verifyMethods = Object.entries(op.verificationMethods)
-
if (verifyMethods.length > MAX_VERIF_METHOD_ENTRIES) {
+
if (verifyMethods.length > MAX_VERIFICATION_METHOD_ENTRIES) {
throw new ServerError(
400,
-
`Too many Verification Method entries (max ${MAX_VERIF_METHOD_ENTRIES})`,
+
`Too many Verification Method entries (max ${MAX_VERIFICATION_METHOD_ENTRIES})`,
)
}
for (const [id, key] of verifyMethods) {
+10
README.md
···
The signing keys (`verificationMethods`) are also serialized using `did:key` in operations. When rendered in a DID document, signing keys are represented as objects, with the actual keys in multibase encoding, as required by the DID Core specification.
+
Although `verificationMethods` signing keys can be of any key type (unlike rotation keys), they must still be syntactically valid. i.e. They must have a `did:key:` prefix, followed by a `base58btc` multibase string.
+
The DID itself is derived from the hash of the first operation in the log, called the "genesis" operation. The signed operation is encoded in DAG-CBOR; the bytes are hashed with SHA-256; the hash bytes are `base32`-encoded (not hex encoded) as a string; and that string is truncated to 24 chars to yield the "identifier" segment of the DID.
In pseudo-code:
···
- MIT license ([LICENSE-MIT](https://github.com/ipfs/kubo/blob/master/LICENSE-MIT) or http://opensource.org/licenses/MIT)
Downstream projects and users may chose either license, or both, at their discretion. The motivation for this dual-licensing is the additional software patent assurance provided by Apache 2.0.
+
+
## Changelog
+
+
### 2025-06-05
+
+
- `verificationMethods` keys may now use any syntactically-valid `did:key:`, regardless of key format (allowing e.g. `ed25519` keys). Rotation keys are not affected by this change, the original format constraints still apply.
+
+
- A total limit of 10 `verificationMethods` (per DID) has been added.
+1 -1
lerna.json
···
{
"packages": ["packages/*"],
-
"npmClient": "yarn",
+
"npmClient": "pnpm",
"useWorkspaces": true,
"version": "0.0.1"
}
+11208
pnpm-lock.yaml
···
+
lockfileVersion: '9.0'
+
+
settings:
+
autoInstallPeers: true
+
excludeLinksFromLockfile: false
+
+
importers:
+
+
.:
+
devDependencies:
+
'@babel/core':
+
specifier: ^7.18.6
+
version: 7.28.4
+
'@babel/preset-env':
+
specifier: ^7.18.6
+
version: 7.28.3(@babel/core@7.28.4)
+
'@npmcli/package-json':
+
specifier: ^3.0.0
+
version: 3.1.1
+
'@types/jest':
+
specifier: ^28.1.4
+
version: 28.1.8
+
'@types/node':
+
specifier: ^18.0.0
+
version: 18.19.127
+
'@typescript-eslint/eslint-plugin':
+
specifier: ^5.38.1
+
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.38.1
+
version: 5.62.0(eslint@8.57.1)(typescript@4.9.5)
+
babel-eslint:
+
specifier: ^10.1.0
+
version: 10.1.0(eslint@8.57.1)
+
babel-jest:
+
specifier: ^28.1.2
+
version: 28.1.3(@babel/core@7.28.4)
+
dotenv:
+
specifier: ^16.0.3
+
version: 16.6.1
+
esbuild:
+
specifier: ^0.14.48
+
version: 0.14.54
+
esbuild-node-externals:
+
specifier: ^1.5.0
+
version: 1.18.0(esbuild@0.14.54)
+
esbuild-plugin-copy:
+
specifier: ^1.6.0
+
version: 1.6.0(esbuild@0.14.54)
+
eslint:
+
specifier: ^8.24.0
+
version: 8.57.1
+
eslint-config-prettier:
+
specifier: ^8.5.0
+
version: 8.10.2(eslint@8.57.1)
+
jest:
+
specifier: ^28.1.2
+
version: 28.1.3(@types/node@18.19.127)(ts-node@10.9.2(@types/node@18.19.127)(typescript@4.9.5))
+
lerna:
+
specifier: ^4.0.0
+
version: 4.0.0(encoding@0.1.13)
+
npm-run-all:
+
specifier: ^4.1.5
+
version: 4.1.5
+
pino-pretty:
+
specifier: ^9.1.0
+
version: 9.4.1
+
prettier:
+
specifier: ^2.7.1
+
version: 2.8.8
+
prettier-config-standard:
+
specifier: ^5.0.0
+
version: 5.0.0(prettier@2.8.8)
+
ts-jest:
+
specifier: ^28.0.5
+
version: 28.0.8(@babel/core@7.28.4)(@jest/types@28.1.3)(babel-jest@28.1.3(@babel/core@7.28.4))(esbuild@0.14.54)(jest@28.1.3(@types/node@18.19.127)(ts-node@10.9.2(@types/node@18.19.127)(typescript@4.9.5)))(typescript@4.9.5)
+
ts-node:
+
specifier: ^10.8.2
+
version: 10.9.2(@types/node@18.19.127)(typescript@4.9.5)
+
typescript:
+
specifier: ^4.8.4
+
version: 4.9.5
+
+
packages/lib:
+
dependencies:
+
'@atproto/common':
+
specifier: 0.3.0
+
version: 0.3.0
+
'@atproto/crypto':
+
specifier: 0.4.3
+
version: 0.4.3
+
'@ipld/dag-cbor':
+
specifier: ^7.0.3
+
version: 7.0.3
+
axios:
+
specifier: ^1.3.4
+
version: 1.12.2
+
multiformats:
+
specifier: ^9.6.4
+
version: 9.9.0
+
uint8arrays:
+
specifier: 3.0.0
+
version: 3.0.0
+
zod:
+
specifier: ^3.21.4
+
version: 3.25.76
+
devDependencies:
+
eslint-plugin-prettier:
+
specifier: ^4.2.1
+
version: 4.2.5(eslint-config-prettier@8.10.2(eslint@8.57.1))(eslint@8.57.1)(prettier@2.8.8)
+
+
packages/server:
+
dependencies:
+
'@atproto/common':
+
specifier: 0.3.0
+
version: 0.3.0
+
'@atproto/crypto':
+
specifier: 0.4.3
+
version: 0.4.3
+
'@did-plc/lib':
+
specifier: '*'
+
version: 0.0.4
+
axios:
+
specifier: ^1.3.4
+
version: 1.12.2
+
cors:
+
specifier: ^2.8.5
+
version: 2.8.5
+
dotenv:
+
specifier: ^16.0.0
+
version: 16.6.1
+
express:
+
specifier: ^4.18.2
+
version: 4.21.2
+
express-async-errors:
+
specifier: ^3.1.1
+
version: 3.1.1(express@4.21.2)
+
http-terminator:
+
specifier: ^3.2.0
+
version: 3.2.0
+
kysely:
+
specifier: ^0.23.4
+
version: 0.23.5
+
multiformats:
+
specifier: ^9.6.4
+
version: 9.9.0
+
pg:
+
specifier: ^8.9.0
+
version: 8.16.3
+
pino:
+
specifier: ^8.11.0
+
version: 8.21.0
+
pino-http:
+
specifier: ^8.3.3
+
version: 8.6.1
+
devDependencies:
+
'@types/pg':
+
specifier: ^8.6.5
+
version: 8.15.5
+
eslint-plugin-prettier:
+
specifier: ^4.2.1
+
version: 4.2.5(eslint-config-prettier@8.10.2(eslint@8.57.1))(eslint@8.57.1)(prettier@2.8.8)
+
+
packages:
+
+
'@atproto/common-web@0.4.3':
+
resolution: {integrity: sha512-nRDINmSe4VycJzPo6fP/hEltBcULFxt9Kw7fQk6405FyAWZiTluYHlXOnU7GkQfeUK44OENG1qFTBcmCJ7e8pg==}
+
+
'@atproto/common@0.1.1':
+
resolution: {integrity: sha512-GYwot5wF/z8iYGSPjrLHuratLc0CVgovmwfJss7+BUOB6y2/Vw8+1Vw0n9DDI0gb5vmx3UI8z0uJgC8aa8yuJg==}
+
+
'@atproto/common@0.3.0':
+
resolution: {integrity: sha512-R5d50Da63wQdAYaHe+rne5nM/rSYIWBaDZtVKpluysG86U1rRIgrG4qEQ/tNDt6WzYcxKXkX4EOeVvGtav2twg==}
+
+
'@atproto/crypto@0.1.0':
+
resolution: {integrity: sha512-9xgFEPtsCiJEPt9o3HtJT30IdFTGw5cQRSJVIy5CFhqBA4vDLcdXiRDLCjkzHEVbtNCsHUW6CrlfOgbeLPcmcg==}
+
+
'@atproto/crypto@0.4.3':
+
resolution: {integrity: sha512-YSSUAvkx+ldpXw97NXZWfLx/prgh5YJ2K0BCw51JCJmXSRp6KhhwvOm4J+K/s5hwpssyuDCVTXknyS4PHwaK5g==}
+
+
'@babel/code-frame@7.27.1':
+
resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
+
engines: {node: '>=6.9.0'}
+
+
'@babel/compat-data@7.28.4':
+
resolution: {integrity: sha512-YsmSKC29MJwf0gF8Rjjrg5LQCmyh+j/nD8/eP7f+BeoQTKYqs9RoWbjGOdy0+1Ekr68RJZMUOPVQaQisnIo4Rw==}
+
engines: {node: '>=6.9.0'}
+
+
'@babel/core@7.28.4':
+
resolution: {integrity: sha512-2BCOP7TN8M+gVDj7/ht3hsaO/B/n5oDbiAyyvnRlNOs+u1o+JWNYTQrmpuNp1/Wq2gcFrI01JAW+paEKDMx/CA==}
+
engines: {node: '>=6.9.0'}
+
+
'@babel/generator@7.28.3':
+
resolution: {integrity: sha512-3lSpxGgvnmZznmBkCRnVREPUFJv2wrv9iAoFDvADJc0ypmdOxdUtcLeBgBJ6zE0PMeTKnxeQzyk0xTBq4Ep7zw==}
+
engines: {node: '>=6.9.0'}
+
+
'@babel/helper-annotate-as-pure@7.27.3':
+
resolution: {integrity: sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==}
+
engines: {node: '>=6.9.0'}
+
+
'@babel/helper-compilation-targets@7.27.2':
+
resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==}
+
engines: {node: '>=6.9.0'}
+
+
'@babel/helper-create-class-features-plugin@7.28.3':
+
resolution: {integrity: sha512-V9f6ZFIYSLNEbuGA/92uOvYsGCJNsuA8ESZ4ldc09bWk/j8H8TKiPw8Mk1eG6olpnO0ALHJmYfZvF4MEE4gajg==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0
+
+
'@babel/helper-create-regexp-features-plugin@7.27.1':
+
resolution: {integrity: sha512-uVDC72XVf8UbrH5qQTc18Agb8emwjTiZrQE11Nv3CuBEZmVvTwwE9CBUEvHku06gQCAyYf8Nv6ja1IN+6LMbxQ==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0
+
+
'@babel/helper-define-polyfill-provider@0.6.5':
+
resolution: {integrity: sha512-uJnGFcPsWQK8fvjgGP5LZUZZsYGIoPeRjSF5PGwrelYgq7Q15/Ft9NGFp1zglwgIv//W0uG4BevRuSJRyylZPg==}
+
peerDependencies:
+
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+
+
'@babel/helper-globals@7.28.0':
+
resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==}
+
engines: {node: '>=6.9.0'}
+
+
'@babel/helper-member-expression-to-functions@7.27.1':
+
resolution: {integrity: sha512-E5chM8eWjTp/aNoVpcbfM7mLxu9XGLWYise2eBKGQomAk/Mb4XoxyqXTZbuTohbsl8EKqdlMhnDI2CCLfcs9wA==}
+
engines: {node: '>=6.9.0'}
+
+
'@babel/helper-module-imports@7.27.1':
+
resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==}
+
engines: {node: '>=6.9.0'}
+
+
'@babel/helper-module-transforms@7.28.3':
+
resolution: {integrity: sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0
+
+
'@babel/helper-optimise-call-expression@7.27.1':
+
resolution: {integrity: sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==}
+
engines: {node: '>=6.9.0'}
+
+
'@babel/helper-plugin-utils@7.27.1':
+
resolution: {integrity: sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==}
+
engines: {node: '>=6.9.0'}
+
+
'@babel/helper-remap-async-to-generator@7.27.1':
+
resolution: {integrity: sha512-7fiA521aVw8lSPeI4ZOD3vRFkoqkJcS+z4hFo82bFSH/2tNd6eJ5qCVMS5OzDmZh/kaHQeBaeyxK6wljcPtveA==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0
+
+
'@babel/helper-replace-supers@7.27.1':
+
resolution: {integrity: sha512-7EHz6qDZc8RYS5ElPoShMheWvEgERonFCs7IAonWLLUTXW59DP14bCZt89/GKyreYn8g3S83m21FelHKbeDCKA==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0
+
+
'@babel/helper-skip-transparent-expression-wrappers@7.27.1':
+
resolution: {integrity: sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==}
+
engines: {node: '>=6.9.0'}
+
+
'@babel/helper-string-parser@7.27.1':
+
resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
+
engines: {node: '>=6.9.0'}
+
+
'@babel/helper-validator-identifier@7.27.1':
+
resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==}
+
engines: {node: '>=6.9.0'}
+
+
'@babel/helper-validator-option@7.27.1':
+
resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==}
+
engines: {node: '>=6.9.0'}
+
+
'@babel/helper-wrap-function@7.28.3':
+
resolution: {integrity: sha512-zdf983tNfLZFletc0RRXYrHrucBEg95NIFMkn6K9dbeMYnsgHaSBGcQqdsCSStG2PYwRre0Qc2NNSCXbG+xc6g==}
+
engines: {node: '>=6.9.0'}
+
+
'@babel/helpers@7.28.4':
+
resolution: {integrity: sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==}
+
engines: {node: '>=6.9.0'}
+
+
'@babel/parser@7.28.4':
+
resolution: {integrity: sha512-yZbBqeM6TkpP9du/I2pUZnJsRMGGvOuIrhjzC1AwHwW+6he4mni6Bp/m8ijn0iOuZuPI2BfkCoSRunpyjnrQKg==}
+
engines: {node: '>=6.0.0'}
+
hasBin: true
+
+
'@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.27.1':
+
resolution: {integrity: sha512-QPG3C9cCVRQLxAVwmefEmwdTanECuUBMQZ/ym5kiw3XKCGA7qkuQLcjWWHcrD/GKbn/WmJwaezfuuAOcyKlRPA==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0
+
+
'@babel/plugin-bugfix-safari-class-field-initializer-scope@7.27.1':
+
resolution: {integrity: sha512-qNeq3bCKnGgLkEXUuFry6dPlGfCdQNZbn7yUAPCInwAJHMU7THJfrBSozkcWq5sNM6RcF3S8XyQL2A52KNR9IA==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0
+
+
'@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1':
+
resolution: {integrity: sha512-g4L7OYun04N1WyqMNjldFwlfPCLVkgB54A/YCXICZYBsvJJE3kByKv9c9+R/nAfmIfjl2rKYLNyMHboYbZaWaA==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0
+
+
'@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1':
+
resolution: {integrity: sha512-oO02gcONcD5O1iTLi/6frMJBIwWEHceWGSGqrpCmEL8nogiS6J9PBlE48CaK20/Jx1LuRml9aDftLgdjXT8+Cw==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.13.0
+
+
'@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.28.3':
+
resolution: {integrity: sha512-b6YTX108evsvE4YgWyQ921ZAFFQm3Bn+CA3+ZXlNVnPhx+UfsVURoPjfGAPCjBgrqo30yX/C2nZGX96DxvR9Iw==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0
+
+
'@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2':
+
resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-syntax-async-generators@7.8.4':
+
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-syntax-bigint@7.8.3':
+
resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-syntax-class-properties@7.12.13':
+
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-syntax-class-static-block@7.14.5':
+
resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-syntax-import-assertions@7.27.1':
+
resolution: {integrity: sha512-UT/Jrhw57xg4ILHLFnzFpPDlMbcdEicaAtjPQpbj9wa8T4r5KVWCimHcL/460g8Ht0DMxDyjsLgiWSkVjnwPFg==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-syntax-import-attributes@7.27.1':
+
resolution: {integrity: sha512-oFT0FrKHgF53f4vOsZGi2Hh3I35PfSmVs4IBFLFj4dnafP+hIWDLg3VyKmUHfLoLHlyxY4C7DGtmHuJgn+IGww==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-syntax-import-meta@7.10.4':
+
resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-syntax-json-strings@7.8.3':
+
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-syntax-logical-assignment-operators@7.10.4':
+
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-syntax-nullish-coalescing-operator@7.8.3':
+
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-syntax-numeric-separator@7.10.4':
+
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-syntax-object-rest-spread@7.8.3':
+
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-syntax-optional-catch-binding@7.8.3':
+
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-syntax-optional-chaining@7.8.3':
+
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-syntax-private-property-in-object@7.14.5':
+
resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-syntax-top-level-await@7.14.5':
+
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-syntax-typescript@7.27.1':
+
resolution: {integrity: sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-syntax-unicode-sets-regex@7.18.6':
+
resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0
+
+
'@babel/plugin-transform-arrow-functions@7.27.1':
+
resolution: {integrity: sha512-8Z4TGic6xW70FKThA5HYEKKyBpOOsucTOD1DjU3fZxDg+K3zBJcXMFnt/4yQiZnf5+MiOMSXQ9PaEK/Ilh1DeA==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-transform-async-generator-functions@7.28.0':
+
resolution: {integrity: sha512-BEOdvX4+M765icNPZeidyADIvQ1m1gmunXufXxvRESy/jNNyfovIqUyE7MVgGBjWktCoJlzvFA1To2O4ymIO3Q==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-transform-async-to-generator@7.27.1':
+
resolution: {integrity: sha512-NREkZsZVJS4xmTr8qzE5y8AfIPqsdQfRuUiLRTEzb7Qii8iFWCyDKaUV2c0rCuh4ljDZ98ALHP/PetiBV2nddA==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-transform-block-scoped-functions@7.27.1':
+
resolution: {integrity: sha512-cnqkuOtZLapWYZUYM5rVIdv1nXYuFVIltZ6ZJ7nIj585QsjKM5dhL2Fu/lICXZ1OyIAFc7Qy+bvDAtTXqGrlhg==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-transform-block-scoping@7.28.4':
+
resolution: {integrity: sha512-1yxmvN0MJHOhPVmAsmoW5liWwoILobu/d/ShymZmj867bAdxGbehIrew1DuLpw2Ukv+qDSSPQdYW1dLNE7t11A==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-transform-class-properties@7.27.1':
+
resolution: {integrity: sha512-D0VcalChDMtuRvJIu3U/fwWjf8ZMykz5iZsg77Nuj821vCKI3zCyRLwRdWbsuJ/uRwZhZ002QtCqIkwC/ZkvbA==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-transform-class-static-block@7.28.3':
+
resolution: {integrity: sha512-LtPXlBbRoc4Njl/oh1CeD/3jC+atytbnf/UqLoqTDcEYGUPj022+rvfkbDYieUrSj3CaV4yHDByPE+T2HwfsJg==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.12.0
+
+
'@babel/plugin-transform-classes@7.28.4':
+
resolution: {integrity: sha512-cFOlhIYPBv/iBoc+KS3M6et2XPtbT2HiCRfBXWtfpc9OAyostldxIf9YAYB6ypURBBbx+Qv6nyrLzASfJe+hBA==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-transform-computed-properties@7.27.1':
+
resolution: {integrity: sha512-lj9PGWvMTVksbWiDT2tW68zGS/cyo4AkZ/QTp0sQT0mjPopCmrSkzxeXkznjqBxzDI6TclZhOJbBmbBLjuOZUw==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-transform-destructuring@7.28.0':
+
resolution: {integrity: sha512-v1nrSMBiKcodhsyJ4Gf+Z0U/yawmJDBOTpEB3mcQY52r9RIyPneGyAS/yM6seP/8I+mWI3elOMtT5dB8GJVs+A==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-transform-dotall-regex@7.27.1':
+
resolution: {integrity: sha512-gEbkDVGRvjj7+T1ivxrfgygpT7GUd4vmODtYpbs0gZATdkX8/iSnOtZSxiZnsgm1YjTgjI6VKBGSJJevkrclzw==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-transform-duplicate-keys@7.27.1':
+
resolution: {integrity: sha512-MTyJk98sHvSs+cvZ4nOauwTTG1JeonDjSGvGGUNHreGQns+Mpt6WX/dVzWBHgg+dYZhkC4X+zTDfkTU+Vy9y7Q==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.27.1':
+
resolution: {integrity: sha512-hkGcueTEzuhB30B3eJCbCYeCaaEQOmQR0AdvzpD4LoN0GXMWzzGSuRrxR2xTnCrvNbVwK9N6/jQ92GSLfiZWoQ==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0
+
+
'@babel/plugin-transform-dynamic-import@7.27.1':
+
resolution: {integrity: sha512-MHzkWQcEmjzzVW9j2q8LGjwGWpG2mjwaaB0BNQwst3FIjqsg8Ct/mIZlvSPJvfi9y2AC8mi/ktxbFVL9pZ1I4A==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-transform-explicit-resource-management@7.28.0':
+
resolution: {integrity: sha512-K8nhUcn3f6iB+P3gwCv/no7OdzOZQcKchW6N389V6PD8NUWKZHzndOd9sPDVbMoBsbmjMqlB4L9fm+fEFNVlwQ==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-transform-exponentiation-operator@7.27.1':
+
resolution: {integrity: sha512-uspvXnhHvGKf2r4VVtBpeFnuDWsJLQ6MF6lGJLC89jBR1uoVeqM416AZtTuhTezOfgHicpJQmoD5YUakO/YmXQ==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-transform-export-namespace-from@7.27.1':
+
resolution: {integrity: sha512-tQvHWSZ3/jH2xuq/vZDy0jNn+ZdXJeM8gHvX4lnJmsc3+50yPlWdZXIc5ay+umX+2/tJIqHqiEqcJvxlmIvRvQ==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-transform-for-of@7.27.1':
+
resolution: {integrity: sha512-BfbWFFEJFQzLCQ5N8VocnCtA8J1CLkNTe2Ms2wocj75dd6VpiqS5Z5quTYcUoo4Yq+DN0rtikODccuv7RU81sw==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-transform-function-name@7.27.1':
+
resolution: {integrity: sha512-1bQeydJF9Nr1eBCMMbC+hdwmRlsv5XYOMu03YSWFwNs0HsAmtSxxF1fyuYPqemVldVyFmlCU7w8UE14LupUSZQ==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-transform-json-strings@7.27.1':
+
resolution: {integrity: sha512-6WVLVJiTjqcQauBhn1LkICsR2H+zm62I3h9faTDKt1qP4jn2o72tSvqMwtGFKGTpojce0gJs+76eZ2uCHRZh0Q==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-transform-literals@7.27.1':
+
resolution: {integrity: sha512-0HCFSepIpLTkLcsi86GG3mTUzxV5jpmbv97hTETW3yzrAij8aqlD36toB1D0daVFJM8NK6GvKO0gslVQmm+zZA==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-transform-logical-assignment-operators@7.27.1':
+
resolution: {integrity: sha512-SJvDs5dXxiae4FbSL1aBJlG4wvl594N6YEVVn9e3JGulwioy6z3oPjx/sQBO3Y4NwUu5HNix6KJ3wBZoewcdbw==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-transform-member-expression-literals@7.27.1':
+
resolution: {integrity: sha512-hqoBX4dcZ1I33jCSWcXrP+1Ku7kdqXf1oeah7ooKOIiAdKQ+uqftgCFNOSzA5AMS2XIHEYeGFg4cKRCdpxzVOQ==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-transform-modules-amd@7.27.1':
+
resolution: {integrity: sha512-iCsytMg/N9/oFq6n+gFTvUYDZQOMK5kEdeYxmxt91fcJGycfxVP9CnrxoliM0oumFERba2i8ZtwRUCMhvP1LnA==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-transform-modules-commonjs@7.27.1':
+
resolution: {integrity: sha512-OJguuwlTYlN0gBZFRPqwOGNWssZjfIUdS7HMYtN8c1KmwpwHFBwTeFZrg9XZa+DFTitWOW5iTAG7tyCUPsCCyw==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-transform-modules-systemjs@7.27.1':
+
resolution: {integrity: sha512-w5N1XzsRbc0PQStASMksmUeqECuzKuTJer7kFagK8AXgpCMkeDMO5S+aaFb7A51ZYDF7XI34qsTX+fkHiIm5yA==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-transform-modules-umd@7.27.1':
+
resolution: {integrity: sha512-iQBE/xC5BV1OxJbp6WG7jq9IWiD+xxlZhLrdwpPkTX3ydmXdvoCpyfJN7acaIBZaOqTfr76pgzqBJflNbeRK+w==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-transform-named-capturing-groups-regex@7.27.1':
+
resolution: {integrity: sha512-SstR5JYy8ddZvD6MhV0tM/j16Qds4mIpJTOd1Yu9J9pJjH93bxHECF7pgtc28XvkzTD6Pxcm/0Z73Hvk7kb3Ng==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0
+
+
'@babel/plugin-transform-new-target@7.27.1':
+
resolution: {integrity: sha512-f6PiYeqXQ05lYq3TIfIDu/MtliKUbNwkGApPUvyo6+tc7uaR4cPjPe7DFPr15Uyycg2lZU6btZ575CuQoYh7MQ==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-transform-nullish-coalescing-operator@7.27.1':
+
resolution: {integrity: sha512-aGZh6xMo6q9vq1JGcw58lZ1Z0+i0xB2x0XaauNIUXd6O1xXc3RwoWEBlsTQrY4KQ9Jf0s5rgD6SiNkaUdJegTA==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-transform-numeric-separator@7.27.1':
+
resolution: {integrity: sha512-fdPKAcujuvEChxDBJ5c+0BTaS6revLV7CJL08e4m3de8qJfNIuCc2nc7XJYOjBoTMJeqSmwXJ0ypE14RCjLwaw==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-transform-object-rest-spread@7.28.4':
+
resolution: {integrity: sha512-373KA2HQzKhQCYiRVIRr+3MjpCObqzDlyrM6u4I201wL8Mp2wHf7uB8GhDwis03k2ti8Zr65Zyyqs1xOxUF/Ew==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-transform-object-super@7.27.1':
+
resolution: {integrity: sha512-SFy8S9plRPbIcxlJ8A6mT/CxFdJx/c04JEctz4jf8YZaVS2px34j7NXRrlGlHkN/M2gnpL37ZpGRGVFLd3l8Ng==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-transform-optional-catch-binding@7.27.1':
+
resolution: {integrity: sha512-txEAEKzYrHEX4xSZN4kJ+OfKXFVSWKB2ZxM9dpcE3wT7smwkNmXo5ORRlVzMVdJbD+Q8ILTgSD7959uj+3Dm3Q==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-transform-optional-chaining@7.27.1':
+
resolution: {integrity: sha512-BQmKPPIuc8EkZgNKsv0X4bPmOoayeu4F1YCwx2/CfmDSXDbp7GnzlUH+/ul5VGfRg1AoFPsrIThlEBj2xb4CAg==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-transform-parameters@7.27.7':
+
resolution: {integrity: sha512-qBkYTYCb76RRxUM6CcZA5KRu8K4SM8ajzVeUgVdMVO9NN9uI/GaVmBg/WKJJGnNokV9SY8FxNOVWGXzqzUidBg==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-transform-private-methods@7.27.1':
+
resolution: {integrity: sha512-10FVt+X55AjRAYI9BrdISN9/AQWHqldOeZDUoLyif1Kn05a56xVBXb8ZouL8pZ9jem8QpXaOt8TS7RHUIS+GPA==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-transform-private-property-in-object@7.27.1':
+
resolution: {integrity: sha512-5J+IhqTi1XPa0DXF83jYOaARrX+41gOewWbkPyjMNRDqgOCqdffGh8L3f/Ek5utaEBZExjSAzcyjmV9SSAWObQ==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-transform-property-literals@7.27.1':
+
resolution: {integrity: sha512-oThy3BCuCha8kDZ8ZkgOg2exvPYUlprMukKQXI1r1pJ47NCvxfkEy8vK+r/hT9nF0Aa4H1WUPZZjHTFtAhGfmQ==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-transform-regenerator@7.28.4':
+
resolution: {integrity: sha512-+ZEdQlBoRg9m2NnzvEeLgtvBMO4tkFBw5SQIUgLICgTrumLoU7lr+Oghi6km2PFj+dbUt2u1oby2w3BDO9YQnA==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-transform-regexp-modifiers@7.27.1':
+
resolution: {integrity: sha512-TtEciroaiODtXvLZv4rmfMhkCv8jx3wgKpL68PuiPh2M4fvz5jhsA7697N1gMvkvr/JTF13DrFYyEbY9U7cVPA==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0
+
+
'@babel/plugin-transform-reserved-words@7.27.1':
+
resolution: {integrity: sha512-V2ABPHIJX4kC7HegLkYoDpfg9PVmuWy/i6vUM5eGK22bx4YVFD3M5F0QQnWQoDs6AGsUWTVOopBiMFQgHaSkVw==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-transform-shorthand-properties@7.27.1':
+
resolution: {integrity: sha512-N/wH1vcn4oYawbJ13Y/FxcQrWk63jhfNa7jef0ih7PHSIHX2LB7GWE1rkPrOnka9kwMxb6hMl19p7lidA+EHmQ==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-transform-spread@7.27.1':
+
resolution: {integrity: sha512-kpb3HUqaILBJcRFVhFUs6Trdd4mkrzcGXss+6/mxUd273PfbWqSDHRzMT2234gIg2QYfAjvXLSquP1xECSg09Q==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-transform-sticky-regex@7.27.1':
+
resolution: {integrity: sha512-lhInBO5bi/Kowe2/aLdBAawijx+q1pQzicSgnkB6dUPc1+RC8QmJHKf2OjvU+NZWitguJHEaEmbV6VWEouT58g==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-transform-template-literals@7.27.1':
+
resolution: {integrity: sha512-fBJKiV7F2DxZUkg5EtHKXQdbsbURW3DZKQUWphDum0uRP6eHGGa/He9mc0mypL680pb+e/lDIthRohlv8NCHkg==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-transform-typeof-symbol@7.27.1':
+
resolution: {integrity: sha512-RiSILC+nRJM7FY5srIyc4/fGIwUhyDuuBSdWn4y6yT6gm652DpCHZjIipgn6B7MQ1ITOUnAKWixEUjQRIBIcLw==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-transform-unicode-escapes@7.27.1':
+
resolution: {integrity: sha512-Ysg4v6AmF26k9vpfFuTZg8HRfVWzsh1kVfowA23y9j/Gu6dOuahdUVhkLqpObp3JIv27MLSii6noRnuKN8H0Mg==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-transform-unicode-property-regex@7.27.1':
+
resolution: {integrity: sha512-uW20S39PnaTImxp39O5qFlHLS9LJEmANjMG7SxIhap8rCHqu0Ik+tLEPX5DKmHn6CsWQ7j3lix2tFOa5YtL12Q==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-transform-unicode-regex@7.27.1':
+
resolution: {integrity: sha512-xvINq24TRojDuyt6JGtHmkVkrfVV3FPT16uytxImLeBZqW3/H52yN+kM1MGuyPkIQxrzKwPHs5U/MP3qKyzkGw==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/plugin-transform-unicode-sets-regex@7.27.1':
+
resolution: {integrity: sha512-EtkOujbc4cgvb0mlpQefi4NTPBzhSIevblFevACNLUspmrALgmEBdL/XfnyyITfd8fKBZrZys92zOWcik7j9Tw==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0
+
+
'@babel/preset-env@7.28.3':
+
resolution: {integrity: sha512-ROiDcM+GbYVPYBOeCR6uBXKkQpBExLl8k9HO1ygXEyds39j+vCCsjmj7S8GOniZQlEs81QlkdJZe76IpLSiqpg==}
+
engines: {node: '>=6.9.0'}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0
+
+
'@babel/preset-modules@0.1.6-no-external-plugins':
+
resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==}
+
peerDependencies:
+
'@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
+
+
'@babel/template@7.27.2':
+
resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==}
+
engines: {node: '>=6.9.0'}
+
+
'@babel/traverse@7.28.4':
+
resolution: {integrity: sha512-YEzuboP2qvQavAcjgQNVgsvHIDv6ZpwXvcvjmyySP2DIMuByS/6ioU5G9pYrWHM6T2YDfc7xga9iNzYOs12CFQ==}
+
engines: {node: '>=6.9.0'}
+
+
'@babel/types@7.28.4':
+
resolution: {integrity: sha512-bkFqkLhh3pMBUQQkpVgWDWq/lqzc2678eUyDlTBhRqhCHFguYYGM0Efga7tYk4TogG/3x0EEl66/OQ+WGbWB/Q==}
+
engines: {node: '>=6.9.0'}
+
+
'@bcoe/v8-coverage@0.2.3':
+
resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==}
+
+
'@cbor-extract/cbor-extract-darwin-arm64@2.2.0':
+
resolution: {integrity: sha512-P7swiOAdF7aSi0H+tHtHtr6zrpF3aAq/W9FXx5HektRvLTM2O89xCyXF3pk7pLc7QpaY7AoaE8UowVf9QBdh3w==}
+
cpu: [arm64]
+
os: [darwin]
+
+
'@cbor-extract/cbor-extract-darwin-x64@2.2.0':
+
resolution: {integrity: sha512-1liF6fgowph0JxBbYnAS7ZlqNYLf000Qnj4KjqPNW4GViKrEql2MgZnAsExhY9LSy8dnvA4C0qHEBgPrll0z0w==}
+
cpu: [x64]
+
os: [darwin]
+
+
'@cbor-extract/cbor-extract-linux-arm64@2.2.0':
+
resolution: {integrity: sha512-rQvhNmDuhjTVXSPFLolmQ47/ydGOFXtbR7+wgkSY0bdOxCFept1hvg59uiLPT2fVDuJFuEy16EImo5tE2x3RsQ==}
+
cpu: [arm64]
+
os: [linux]
+
+
'@cbor-extract/cbor-extract-linux-arm@2.2.0':
+
resolution: {integrity: sha512-QeBcBXk964zOytiedMPQNZr7sg0TNavZeuUCD6ON4vEOU/25+pLhNN6EDIKJ9VLTKaZ7K7EaAriyYQ1NQ05s/Q==}
+
cpu: [arm]
+
os: [linux]
+
+
'@cbor-extract/cbor-extract-linux-x64@2.2.0':
+
resolution: {integrity: sha512-cWLAWtT3kNLHSvP4RKDzSTX9o0wvQEEAj4SKvhWuOVZxiDAeQazr9A+PSiRILK1VYMLeDml89ohxCnUNQNQNCw==}
+
cpu: [x64]
+
os: [linux]
+
+
'@cbor-extract/cbor-extract-win32-x64@2.2.0':
+
resolution: {integrity: sha512-l2M+Z8DO2vbvADOBNLbbh9y5ST1RY5sqkWOg/58GkUPBYou/cuNZ68SGQ644f1CvZ8kcOxyZtw06+dxWHIoN/w==}
+
cpu: [x64]
+
os: [win32]
+
+
'@cspotcode/source-map-support@0.8.1':
+
resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==}
+
engines: {node: '>=12'}
+
+
'@did-plc/lib@0.0.4':
+
resolution: {integrity: sha512-Omeawq3b8G/c/5CtkTtzovSOnWuvIuCI4GTJNrt1AmCskwEQV7zbX5d6km1mjJNbE0gHuQPTVqZxLVqetNbfwA==}
+
+
'@esbuild/linux-loong64@0.14.54':
+
resolution: {integrity: sha512-bZBrLAIX1kpWelV0XemxBZllyRmM6vgFQQG2GdNb+r3Fkp0FOh1NJSvekXDs7jq70k4euu1cryLMfU+mTXlEpw==}
+
engines: {node: '>=12'}
+
cpu: [loong64]
+
os: [linux]
+
+
'@eslint-community/eslint-utils@4.9.0':
+
resolution: {integrity: sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g==}
+
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}
+
+
'@gar/promisify@1.1.3':
+
resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==}
+
+
'@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
+
+
'@hutson/parse-repository-url@3.0.2':
+
resolution: {integrity: sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==}
+
engines: {node: '>=6.9.0'}
+
+
'@ipld/dag-cbor@7.0.3':
+
resolution: {integrity: sha512-1VVh2huHsuohdXC1bGJNE8WR72slZ9XE2T3wbBBq31dm7ZBatmKLLxrB+XAqafxfRFjv08RZmj/W/ZqaM13AuA==}
+
+
'@isaacs/cliui@8.0.2':
+
resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
+
engines: {node: '>=12'}
+
+
'@istanbuljs/load-nyc-config@1.1.0':
+
resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==}
+
engines: {node: '>=8'}
+
+
'@istanbuljs/schema@0.1.3':
+
resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==}
+
engines: {node: '>=8'}
+
+
'@jest/console@28.1.3':
+
resolution: {integrity: sha512-QPAkP5EwKdK/bxIr6C1I4Vs0rm2nHiANzj/Z5X2JQkrZo6IqvC4ldZ9K95tF0HdidhA8Bo6egxSzUFPYKcEXLw==}
+
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+
+
'@jest/core@28.1.3':
+
resolution: {integrity: sha512-CIKBrlaKOzA7YG19BEqCw3SLIsEwjZkeJzf5bdooVnW4bH5cktqe3JX+G2YV1aK5vP8N9na1IGWFzYaTp6k6NA==}
+
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+
peerDependencies:
+
node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
+
peerDependenciesMeta:
+
node-notifier:
+
optional: true
+
+
'@jest/environment@28.1.3':
+
resolution: {integrity: sha512-1bf40cMFTEkKyEf585R9Iz1WayDjHoHqvts0XFYEqyKM3cFWDpeMoqKKTAF9LSYQModPUlh8FKptoM2YcMWAXA==}
+
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+
+
'@jest/expect-utils@28.1.3':
+
resolution: {integrity: sha512-wvbi9LUrHJLn3NlDW6wF2hvIMtd4JUl2QNVrjq+IBSHirgfrR3o9RnVtxzdEGO2n9JyIWwHnLfby5KzqBGg2YA==}
+
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+
+
'@jest/expect@28.1.3':
+
resolution: {integrity: sha512-lzc8CpUbSoE4dqT0U+g1qODQjBRHPpCPXissXD4mS9+sWQdmmpeJ9zSH1rS1HEkrsMN0fb7nKrJ9giAR1d3wBw==}
+
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+
+
'@jest/fake-timers@28.1.3':
+
resolution: {integrity: sha512-D/wOkL2POHv52h+ok5Oj/1gOG9HSywdoPtFsRCUmlCILXNn5eIWmcnd3DIiWlJnpGvQtmajqBP95Ei0EimxfLw==}
+
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+
+
'@jest/globals@28.1.3':
+
resolution: {integrity: sha512-XFU4P4phyryCXu1pbcqMO0GSQcYe1IsalYCDzRNyhetyeyxMcIxa11qPNDpVNLeretItNqEmYYQn1UYz/5x1NA==}
+
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+
+
'@jest/reporters@28.1.3':
+
resolution: {integrity: sha512-JuAy7wkxQZVNU/V6g9xKzCGC5LVXx9FDcABKsSXp5MiKPEE2144a/vXTEDoyzjUpZKfVwp08Wqg5A4WfTMAzjg==}
+
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+
peerDependencies:
+
node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
+
peerDependenciesMeta:
+
node-notifier:
+
optional: true
+
+
'@jest/schemas@28.1.3':
+
resolution: {integrity: sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==}
+
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+
+
'@jest/source-map@28.1.2':
+
resolution: {integrity: sha512-cV8Lx3BeStJb8ipPHnqVw/IM2VCMWO3crWZzYodSIkxXnRcXJipCdx1JCK0K5MsJJouZQTH73mzf4vgxRaH9ww==}
+
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+
+
'@jest/test-result@28.1.3':
+
resolution: {integrity: sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==}
+
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+
+
'@jest/test-sequencer@28.1.3':
+
resolution: {integrity: sha512-NIMPEqqa59MWnDi1kvXXpYbqsfQmSJsIbnd85mdVGkiDfQ9WQQTXOLsvISUfonmnBT+w85WEgneCigEEdHDFxw==}
+
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+
+
'@jest/transform@28.1.3':
+
resolution: {integrity: sha512-u5dT5di+oFI6hfcLOHGTAfmUxFRrjK+vnaP0kkVow9Md/M7V/MxqQMOz/VV25UZO8pzeA9PjfTpOu6BDuwSPQA==}
+
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+
+
'@jest/types@28.1.3':
+
resolution: {integrity: sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==}
+
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+
+
'@jridgewell/gen-mapping@0.3.13':
+
resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
+
+
'@jridgewell/remapping@2.3.5':
+
resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==}
+
+
'@jridgewell/resolve-uri@3.1.2':
+
resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
+
engines: {node: '>=6.0.0'}
+
+
'@jridgewell/sourcemap-codec@1.5.5':
+
resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
+
+
'@jridgewell/trace-mapping@0.3.31':
+
resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
+
+
'@jridgewell/trace-mapping@0.3.9':
+
resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==}
+
+
'@lerna/add@4.0.0':
+
resolution: {integrity: sha512-cpmAH1iS3k8JBxNvnMqrGTTjbY/ZAiKa1ChJzFevMYY3eeqbvhsBKnBcxjRXtdrJ6bd3dCQM+ZtK+0i682Fhng==}
+
engines: {node: '>= 10.18.0'}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
'@lerna/bootstrap@4.0.0':
+
resolution: {integrity: sha512-RkS7UbeM2vu+kJnHzxNRCLvoOP9yGNgkzRdy4UV2hNalD7EP41bLvRVOwRYQ7fhc2QcbhnKNdOBihYRL0LcKtw==}
+
engines: {node: '>= 10.18.0'}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
'@lerna/changed@4.0.0':
+
resolution: {integrity: sha512-cD+KuPRp6qiPOD+BO6S6SN5cARspIaWSOqGBpGnYzLb4uWT8Vk4JzKyYtc8ym1DIwyoFXHosXt8+GDAgR8QrgQ==}
+
engines: {node: '>= 10.18.0'}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
'@lerna/check-working-tree@4.0.0':
+
resolution: {integrity: sha512-/++bxM43jYJCshBiKP5cRlCTwSJdRSxVmcDAXM+1oUewlZJVSVlnks5eO0uLxokVFvLhHlC5kHMc7gbVFPHv6Q==}
+
engines: {node: '>= 10.18.0'}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
'@lerna/child-process@4.0.0':
+
resolution: {integrity: sha512-XtCnmCT9eyVsUUHx6y/CTBYdV9g2Cr/VxyseTWBgfIur92/YKClfEtJTbOh94jRT62hlKLqSvux/UhxXVh613Q==}
+
engines: {node: '>= 10.18.0'}
+
+
'@lerna/clean@4.0.0':
+
resolution: {integrity: sha512-uugG2iN9k45ITx2jtd8nEOoAtca8hNlDCUM0N3lFgU/b1mEQYAPRkqr1qs4FLRl/Y50ZJ41wUz1eazS+d/0osA==}
+
engines: {node: '>= 10.18.0'}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
'@lerna/cli@4.0.0':
+
resolution: {integrity: sha512-Neaw3GzFrwZiRZv2g7g6NwFjs3er1vhraIniEs0jjVLPMNC4eata0na3GfE5yibkM/9d3gZdmihhZdZ3EBdvYA==}
+
engines: {node: '>= 10.18.0'}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
'@lerna/collect-uncommitted@4.0.0':
+
resolution: {integrity: sha512-ufSTfHZzbx69YNj7KXQ3o66V4RC76ffOjwLX0q/ab//61bObJ41n03SiQEhSlmpP+gmFbTJ3/7pTe04AHX9m/g==}
+
engines: {node: '>= 10.18.0'}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
'@lerna/collect-updates@4.0.0':
+
resolution: {integrity: sha512-bnNGpaj4zuxsEkyaCZLka9s7nMs58uZoxrRIPJ+nrmrZYp1V5rrd+7/NYTuunOhY2ug1sTBvTAxj3NZQ+JKnOw==}
+
engines: {node: '>= 10.18.0'}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
'@lerna/command@4.0.0':
+
resolution: {integrity: sha512-LM9g3rt5FsPNFqIHUeRwWXLNHJ5NKzOwmVKZ8anSp4e1SPrv2HNc1V02/9QyDDZK/w+5POXH5lxZUI1CHaOK/A==}
+
engines: {node: '>= 10.18.0'}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
'@lerna/conventional-commits@4.0.0':
+
resolution: {integrity: sha512-CSUQRjJHFrH8eBn7+wegZLV3OrNc0Y1FehYfYGhjLE2SIfpCL4bmfu/ViYuHh9YjwHaA+4SX6d3hR+xkeseKmw==}
+
engines: {node: '>= 10.18.0'}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
'@lerna/create-symlink@4.0.0':
+
resolution: {integrity: sha512-I0phtKJJdafUiDwm7BBlEUOtogmu8+taxq6PtIrxZbllV9hWg59qkpuIsiFp+no7nfRVuaasNYHwNUhDAVQBig==}
+
engines: {node: '>= 10.18.0'}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
'@lerna/create@4.0.0':
+
resolution: {integrity: sha512-mVOB1niKByEUfxlbKTM1UNECWAjwUdiioIbRQZEeEabtjCL69r9rscIsjlGyhGWCfsdAG5wfq4t47nlDXdLLag==}
+
engines: {node: '>= 10.18.0'}
+
+
'@lerna/describe-ref@4.0.0':
+
resolution: {integrity: sha512-eTU5+xC4C5Gcgz+Ey4Qiw9nV2B4JJbMulsYJMW8QjGcGh8zudib7Sduj6urgZXUYNyhYpRs+teci9M2J8u+UvQ==}
+
engines: {node: '>= 10.18.0'}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
'@lerna/diff@4.0.0':
+
resolution: {integrity: sha512-jYPKprQVg41+MUMxx6cwtqsNm0Yxx9GDEwdiPLwcUTFx+/qKCEwifKNJ1oGIPBxyEHX2PFCOjkK39lHoj2qiag==}
+
engines: {node: '>= 10.18.0'}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
'@lerna/exec@4.0.0':
+
resolution: {integrity: sha512-VGXtL/b/JfY84NB98VWZpIExfhLOzy0ozm/0XaS4a2SmkAJc5CeUfrhvHxxkxiTBLkU+iVQUyYEoAT0ulQ8PCw==}
+
engines: {node: '>= 10.18.0'}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
'@lerna/filter-options@4.0.0':
+
resolution: {integrity: sha512-vV2ANOeZhOqM0rzXnYcFFCJ/kBWy/3OA58irXih9AMTAlQLymWAK0akWybl++sUJ4HB9Hx12TOqaXbYS2NM5uw==}
+
engines: {node: '>= 10.18.0'}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
'@lerna/filter-packages@4.0.0':
+
resolution: {integrity: sha512-+4AJIkK7iIiOaqCiVTYJxh/I9qikk4XjNQLhE3kixaqgMuHl1NQ99qXRR0OZqAWB9mh8Z1HA9bM5K1HZLBTOqA==}
+
engines: {node: '>= 10.18.0'}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
'@lerna/get-npm-exec-opts@4.0.0':
+
resolution: {integrity: sha512-yvmkerU31CTWS2c7DvmAWmZVeclPBqI7gPVr5VATUKNWJ/zmVcU4PqbYoLu92I9Qc4gY1TuUplMNdNuZTSL7IQ==}
+
engines: {node: '>= 10.18.0'}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
'@lerna/get-packed@4.0.0':
+
resolution: {integrity: sha512-rfWONRsEIGyPJTxFzC8ECb3ZbsDXJbfqWYyeeQQDrJRPnEJErlltRLPLgC2QWbxFgFPsoDLeQmFHJnf0iDfd8w==}
+
engines: {node: '>= 10.18.0'}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
'@lerna/github-client@4.0.0':
+
resolution: {integrity: sha512-2jhsldZtTKXYUBnOm23Lb0Fx8G4qfSXF9y7UpyUgWUj+YZYd+cFxSuorwQIgk5P4XXrtVhsUesIsli+BYSThiw==}
+
engines: {node: '>= 10.18.0'}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
'@lerna/gitlab-client@4.0.0':
+
resolution: {integrity: sha512-OMUpGSkeDWFf7BxGHlkbb35T7YHqVFCwBPSIR6wRsszY8PAzCYahtH3IaJzEJyUg6vmZsNl0FSr3pdA2skhxqA==}
+
engines: {node: '>= 10.18.0'}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
'@lerna/global-options@4.0.0':
+
resolution: {integrity: sha512-TRMR8afAHxuYBHK7F++Ogop2a82xQjoGna1dvPOY6ltj/pEx59pdgcJfYcynYqMkFIk8bhLJJN9/ndIfX29FTQ==}
+
engines: {node: '>= 10.18.0'}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
'@lerna/has-npm-version@4.0.0':
+
resolution: {integrity: sha512-LQ3U6XFH8ZmLCsvsgq1zNDqka0Xzjq5ibVN+igAI5ccRWNaUsE/OcmsyMr50xAtNQMYMzmpw5GVLAivT2/YzCg==}
+
engines: {node: '>= 10.18.0'}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
'@lerna/import@4.0.0':
+
resolution: {integrity: sha512-FaIhd+4aiBousKNqC7TX1Uhe97eNKf5/SC7c5WZANVWtC7aBWdmswwDt3usrzCNpj6/Wwr9EtEbYROzxKH8ffg==}
+
engines: {node: '>= 10.18.0'}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
'@lerna/info@4.0.0':
+
resolution: {integrity: sha512-8Uboa12kaCSZEn4XRfPz5KU9XXoexSPS4oeYGj76s2UQb1O1GdnEyfjyNWoUl1KlJ2i/8nxUskpXIftoFYH0/Q==}
+
engines: {node: '>= 10.18.0'}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
'@lerna/init@4.0.0':
+
resolution: {integrity: sha512-wY6kygop0BCXupzWj5eLvTUqdR7vIAm0OgyV9WHpMYQGfs1V22jhztt8mtjCloD/O0nEe4tJhdG62XU5aYmPNQ==}
+
engines: {node: '>= 10.18.0'}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
'@lerna/link@4.0.0':
+
resolution: {integrity: sha512-KlvPi7XTAcVOByfaLlOeYOfkkDcd+bejpHMCd1KcArcFTwijOwXOVi24DYomIeHvy6HsX/IUquJ4PPUJIeB4+w==}
+
engines: {node: '>= 10.18.0'}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
'@lerna/list@4.0.0':
+
resolution: {integrity: sha512-L2B5m3P+U4Bif5PultR4TI+KtW+SArwq1i75QZ78mRYxPc0U/piau1DbLOmwrdqr99wzM49t0Dlvl6twd7GHFg==}
+
engines: {node: '>= 10.18.0'}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
'@lerna/listable@4.0.0':
+
resolution: {integrity: sha512-/rPOSDKsOHs5/PBLINZOkRIX1joOXUXEtyUs5DHLM8q6/RP668x/1lFhw6Dx7/U+L0+tbkpGtZ1Yt0LewCLgeQ==}
+
engines: {node: '>= 10.18.0'}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
'@lerna/log-packed@4.0.0':
+
resolution: {integrity: sha512-+dpCiWbdzgMAtpajLToy9PO713IHoE6GV/aizXycAyA07QlqnkpaBNZ8DW84gHdM1j79TWockGJo9PybVhrrZQ==}
+
engines: {node: '>= 10.18.0'}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
'@lerna/npm-conf@4.0.0':
+
resolution: {integrity: sha512-uS7H02yQNq3oejgjxAxqq/jhwGEE0W0ntr8vM3EfpCW1F/wZruwQw+7bleJQ9vUBjmdXST//tk8mXzr5+JXCfw==}
+
engines: {node: '>= 10.18.0'}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
'@lerna/npm-dist-tag@4.0.0':
+
resolution: {integrity: sha512-F20sg28FMYTgXqEQihgoqSfwmq+Id3zT23CnOwD+XQMPSy9IzyLf1fFVH319vXIw6NF6Pgs4JZN2Qty6/CQXGw==}
+
engines: {node: '>= 10.18.0'}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
'@lerna/npm-install@4.0.0':
+
resolution: {integrity: sha512-aKNxq2j3bCH3eXl3Fmu4D54s/YLL9WSwV8W7X2O25r98wzrO38AUN6AB9EtmAx+LV/SP15et7Yueg9vSaanRWg==}
+
engines: {node: '>= 10.18.0'}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
'@lerna/npm-publish@4.0.0':
+
resolution: {integrity: sha512-vQb7yAPRo5G5r77DRjHITc9piR9gvEKWrmfCH7wkfBnGWEqu7n8/4bFQ7lhnkujvc8RXOsYpvbMQkNfkYibD/w==}
+
engines: {node: '>= 10.18.0'}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
'@lerna/npm-run-script@4.0.0':
+
resolution: {integrity: sha512-Jmyh9/IwXJjOXqKfIgtxi0bxi1pUeKe5bD3S81tkcy+kyng/GNj9WSqD5ZggoNP2NP//s4CLDAtUYLdP7CU9rA==}
+
engines: {node: '>= 10.18.0'}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
'@lerna/otplease@4.0.0':
+
resolution: {integrity: sha512-Sgzbqdk1GH4psNiT6hk+BhjOfIr/5KhGBk86CEfHNJTk9BK4aZYyJD4lpDbDdMjIV4g03G7pYoqHzH765T4fxw==}
+
engines: {node: '>= 10.18.0'}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
'@lerna/output@4.0.0':
+
resolution: {integrity: sha512-Un1sHtO1AD7buDQrpnaYTi2EG6sLF+KOPEAMxeUYG5qG3khTs2Zgzq5WE3dt2N/bKh7naESt20JjIW6tBELP0w==}
+
engines: {node: '>= 10.18.0'}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
'@lerna/pack-directory@4.0.0':
+
resolution: {integrity: sha512-NJrmZNmBHS+5aM+T8N6FVbaKFScVqKlQFJNY2k7nsJ/uklNKsLLl6VhTQBPwMTbf6Tf7l6bcKzpy7aePuq9UiQ==}
+
engines: {node: '>= 10.18.0'}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
'@lerna/package-graph@4.0.0':
+
resolution: {integrity: sha512-QED2ZCTkfXMKFoTGoccwUzjHtZMSf3UKX14A4/kYyBms9xfFsesCZ6SLI5YeySEgcul8iuIWfQFZqRw+Qrjraw==}
+
engines: {node: '>= 10.18.0'}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
'@lerna/package@4.0.0':
+
resolution: {integrity: sha512-l0M/izok6FlyyitxiQKr+gZLVFnvxRQdNhzmQ6nRnN9dvBJWn+IxxpM+cLqGACatTnyo9LDzNTOj2Db3+s0s8Q==}
+
engines: {node: '>= 10.18.0'}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
'@lerna/prerelease-id-from-version@4.0.0':
+
resolution: {integrity: sha512-GQqguzETdsYRxOSmdFZ6zDBXDErIETWOqomLERRY54f4p+tk4aJjoVdd9xKwehC9TBfIFvlRbL1V9uQGHh1opg==}
+
engines: {node: '>= 10.18.0'}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
'@lerna/profiler@4.0.0':
+
resolution: {integrity: sha512-/BaEbqnVh1LgW/+qz8wCuI+obzi5/vRE8nlhjPzdEzdmWmZXuCKyWSEzAyHOJWw1ntwMiww5dZHhFQABuoFz9Q==}
+
engines: {node: '>= 10.18.0'}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
'@lerna/project@4.0.0':
+
resolution: {integrity: sha512-o0MlVbDkD5qRPkFKlBZsXZjoNTWPyuL58564nSfZJ6JYNmgAptnWPB2dQlAc7HWRZkmnC2fCkEdoU+jioPavbg==}
+
engines: {node: '>= 10.18.0'}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
'@lerna/prompt@4.0.0':
+
resolution: {integrity: sha512-4Ig46oCH1TH5M7YyTt53fT6TuaKMgqUUaqdgxvp6HP6jtdak6+amcsqB8YGz2eQnw/sdxunx84DfI9XpoLj4bQ==}
+
engines: {node: '>= 10.18.0'}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
'@lerna/publish@4.0.0':
+
resolution: {integrity: sha512-K8jpqjHrChH22qtkytA5GRKIVFEtqBF6JWj1I8dWZtHs4Jywn8yB1jQ3BAMLhqmDJjWJtRck0KXhQQKzDK2UPg==}
+
engines: {node: '>= 10.18.0'}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
'@lerna/pulse-till-done@4.0.0':
+
resolution: {integrity: sha512-Frb4F7QGckaybRhbF7aosLsJ5e9WuH7h0KUkjlzSByVycxY91UZgaEIVjS2oN9wQLrheLMHl6SiFY0/Pvo0Cxg==}
+
engines: {node: '>= 10.18.0'}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
'@lerna/query-graph@4.0.0':
+
resolution: {integrity: sha512-YlP6yI3tM4WbBmL9GCmNDoeQyzcyg1e4W96y/PKMZa5GbyUvkS2+Jc2kwPD+5KcXou3wQZxSPzR3Te5OenaDdg==}
+
engines: {node: '>= 10.18.0'}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
'@lerna/resolve-symlink@4.0.0':
+
resolution: {integrity: sha512-RtX8VEUzqT+uLSCohx8zgmjc6zjyRlh6i/helxtZTMmc4+6O4FS9q5LJas2uGO2wKvBlhcD6siibGt7dIC3xZA==}
+
engines: {node: '>= 10.18.0'}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
'@lerna/rimraf-dir@4.0.0':
+
resolution: {integrity: sha512-QNH9ABWk9mcMJh2/muD9iYWBk1oQd40y6oH+f3wwmVGKYU5YJD//+zMiBI13jxZRtwBx0vmBZzkBkK1dR11cBg==}
+
engines: {node: '>= 10.18.0'}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
'@lerna/run-lifecycle@4.0.0':
+
resolution: {integrity: sha512-IwxxsajjCQQEJAeAaxF8QdEixfI7eLKNm4GHhXHrgBu185JcwScFZrj9Bs+PFKxwb+gNLR4iI5rpUdY8Y0UdGQ==}
+
engines: {node: '>= 10.18.0'}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
'@lerna/run-topologically@4.0.0':
+
resolution: {integrity: sha512-EVZw9hGwo+5yp+VL94+NXRYisqgAlj0jWKWtAIynDCpghRxCE5GMO3xrQLmQgqkpUl9ZxQFpICgYv5DW4DksQA==}
+
engines: {node: '>= 10.18.0'}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
'@lerna/run@4.0.0':
+
resolution: {integrity: sha512-9giulCOzlMPzcZS/6Eov6pxE9gNTyaXk0Man+iCIdGJNMrCnW7Dme0Z229WWP/UoxDKg71F2tMsVVGDiRd8fFQ==}
+
engines: {node: '>= 10.18.0'}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
'@lerna/symlink-binary@4.0.0':
+
resolution: {integrity: sha512-zualodWC4q1QQc1pkz969hcFeWXOsVYZC5AWVtAPTDfLl+TwM7eG/O6oP+Rr3fFowspxo6b1TQ6sYfDV6HXNWA==}
+
engines: {node: '>= 10.18.0'}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
'@lerna/symlink-dependencies@4.0.0':
+
resolution: {integrity: sha512-BABo0MjeUHNAe2FNGty1eantWp8u83BHSeIMPDxNq0MuW2K3CiQRaeWT3EGPAzXpGt0+hVzBrA6+OT0GPn7Yuw==}
+
engines: {node: '>= 10.18.0'}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
'@lerna/timer@4.0.0':
+
resolution: {integrity: sha512-WFsnlaE7SdOvjuyd05oKt8Leg3ENHICnvX3uYKKdByA+S3g+TCz38JsNs7OUZVt+ba63nC2nbXDlUnuT2Xbsfg==}
+
engines: {node: '>= 10.18.0'}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
'@lerna/validation-error@4.0.0':
+
resolution: {integrity: sha512-1rBOM5/koiVWlRi3V6dB863E1YzJS8v41UtsHgMr6gB2ncJ2LsQtMKlJpi3voqcgh41H8UsPXR58RrrpPpufyw==}
+
engines: {node: '>= 10.18.0'}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
'@lerna/version@4.0.0':
+
resolution: {integrity: sha512-otUgiqs5W9zGWJZSCCMRV/2Zm2A9q9JwSDS7s/tlKq4mWCYriWo7+wsHEA/nPTMDyYyBO5oyZDj+3X50KDUzeA==}
+
engines: {node: '>= 10.18.0'}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
'@lerna/write-log-file@4.0.0':
+
resolution: {integrity: sha512-XRG5BloiArpXRakcnPHmEHJp+4AtnhRtpDIHSghmXD5EichI1uD73J7FgPp30mm2pDRq3FdqB0NbwSEsJ9xFQg==}
+
engines: {node: '>= 10.18.0'}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
'@noble/curves@1.9.7':
+
resolution: {integrity: sha512-gbKGcRUYIjA3/zCCNaWDciTMFI0dCkvou3TL8Zmy5Nc7sJ47a0jtOeZoTaMxkuqRo9cRhjOdZJXegxYE5FN/xw==}
+
engines: {node: ^14.21.3 || >=16}
+
+
'@noble/hashes@1.8.0':
+
resolution: {integrity: sha512-jCs9ldd7NwzpgXDIf6P3+NrHh9/sD6CQdxHyjQI+h/6rDNo88ypBxxz45UDuZHz9r3tNz7N/VInSVoVdtXEI4A==}
+
engines: {node: ^14.21.3 || >=16}
+
+
'@noble/secp256k1@1.7.2':
+
resolution: {integrity: sha512-/qzwYl5eFLH8OWIecQWM31qld2g1NfjgylK+TNhqtaUKP37Nm+Y+z30Fjhw0Ct8p9yCQEm2N3W/AckdIb3SMcQ==}
+
+
'@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'}
+
+
'@npmcli/ci-detect@1.4.0':
+
resolution: {integrity: sha512-3BGrt6FLjqM6br5AhWRKTr3u5GIVkjRYeAFrMp3HjnfICrg4xOrVRwFavKT6tsp++bq5dluL5t8ME/Nha/6c1Q==}
+
deprecated: this package has been deprecated, use `ci-info` instead
+
+
'@npmcli/fs@1.1.1':
+
resolution: {integrity: sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==}
+
+
'@npmcli/git@2.1.0':
+
resolution: {integrity: sha512-/hBFX/QG1b+N7PZBFs0bi+evgRZcK9nWBxQKZkGoXUT5hJSwl5c4d7y8/hm+NQZRPhQ67RzFaj5UM9YeyKoryw==}
+
+
'@npmcli/git@4.1.0':
+
resolution: {integrity: sha512-9hwoB3gStVfa0N31ymBmrX+GuDGdVA/QWShZVqE0HK2Af+7QGGrCTbZia/SW0ImUTjTne7SP91qxDmtXvDHRPQ==}
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+
+
'@npmcli/installed-package-contents@1.0.7':
+
resolution: {integrity: sha512-9rufe0wnJusCQoLpV9ZPKIVP55itrM5BxOXs10DmdbRfgWtHy1LDyskbwRnBghuB0PrF7pNPOqREVtpz4HqzKw==}
+
engines: {node: '>= 10'}
+
hasBin: true
+
+
'@npmcli/move-file@1.1.2':
+
resolution: {integrity: sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==}
+
engines: {node: '>=10'}
+
deprecated: This functionality has been moved to @npmcli/fs
+
+
'@npmcli/node-gyp@1.0.3':
+
resolution: {integrity: sha512-fnkhw+fmX65kiLqk6E3BFLXNC26rUhK90zVwe2yncPliVT/Qos3xjhTLE59Df8KnPlcwIERXKVlU1bXoUQ+liA==}
+
+
'@npmcli/package-json@3.1.1':
+
resolution: {integrity: sha512-+UW0UWOYFKCkvszLoTwrYGrjNrT8tI5Ckeb/h+Z1y1fsNJEctl7HmerA5j2FgmoqFaLI2gsA1X9KgMFqx/bRmA==}
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+
+
'@npmcli/promise-spawn@1.3.2':
+
resolution: {integrity: sha512-QyAGYo/Fbj4MXeGdJcFzZ+FkDkomfRBrPM+9QYJSg+PxgAUL+LU3FneQk37rKR2/zjqkCV1BLHccX98wRXG3Sg==}
+
+
'@npmcli/promise-spawn@6.0.2':
+
resolution: {integrity: sha512-gGq0NJkIGSwdbUt4yhdF8ZrmkGKVz9vAdVzpOfnom+V8PLSmSOVhZwbNvZZS1EYcJN5hzzKBxmmVVAInM6HQLg==}
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+
+
'@npmcli/run-script@1.8.6':
+
resolution: {integrity: sha512-e42bVZnC6VluBZBAFEr3YrdqSspG3bgilyg4nSLBJ7TRGNCzxHa92XAHxQBLYg0BmgwO4b2mf3h/l5EkEWRn3g==}
+
+
'@octokit/auth-token@2.5.0':
+
resolution: {integrity: sha512-r5FVUJCOLl19AxiuZD2VRZ/ORjp/4IN98Of6YJoJOkY75CIBuYfmiNHGrDwXr+aLGG55igl9QrxX3hbiXlLb+g==}
+
+
'@octokit/core@3.6.0':
+
resolution: {integrity: sha512-7RKRKuA4xTjMhY+eG3jthb3hlZCsOwg3rztWh75Xc+ShDWOfDDATWbeZpAHBNRpm4Tv9WgBMOy1zEJYXG6NJ7Q==}
+
+
'@octokit/endpoint@6.0.12':
+
resolution: {integrity: sha512-lF3puPwkQWGfkMClXb4k/eUT/nZKQfxinRWJrdZaJO85Dqwo/G0yOC434Jr2ojwafWJMYqFGFa5ms4jJUgujdA==}
+
+
'@octokit/graphql@4.8.0':
+
resolution: {integrity: sha512-0gv+qLSBLKF0z8TKaSKTsS39scVKF9dbMxJpj3U0vC7wjNWFuIpL/z76Qe2fiuCbDRcJSavkXsVtMS6/dtQQsg==}
+
+
'@octokit/openapi-types@12.11.0':
+
resolution: {integrity: sha512-VsXyi8peyRq9PqIz/tpqiL2w3w80OgVMwBHltTml3LmVvXiphgeqmY9mvBw9Wu7e0QWk/fqD37ux8yP5uVekyQ==}
+
+
'@octokit/plugin-enterprise-rest@6.0.1':
+
resolution: {integrity: sha512-93uGjlhUD+iNg1iWhUENAtJata6w5nE+V4urXOAlIXdco6xNZtUSfYY8dzp3Udy74aqO/B5UZL80x/YMa5PKRw==}
+
+
'@octokit/plugin-paginate-rest@2.21.3':
+
resolution: {integrity: sha512-aCZTEf0y2h3OLbrgKkrfFdjRL6eSOo8komneVQJnYecAxIej7Bafor2xhuDJOIFau4pk0i/P28/XgtbyPF0ZHw==}
+
peerDependencies:
+
'@octokit/core': '>=2'
+
+
'@octokit/plugin-request-log@1.0.4':
+
resolution: {integrity: sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==}
+
peerDependencies:
+
'@octokit/core': '>=3'
+
+
'@octokit/plugin-rest-endpoint-methods@5.16.2':
+
resolution: {integrity: sha512-8QFz29Fg5jDuTPXVtey05BLm7OB+M8fnvE64RNegzX7U+5NUXcOcnpTIK0YfSHBg8gYd0oxIq3IZTe9SfPZiRw==}
+
peerDependencies:
+
'@octokit/core': '>=3'
+
+
'@octokit/request-error@2.1.0':
+
resolution: {integrity: sha512-1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg==}
+
+
'@octokit/request@5.6.3':
+
resolution: {integrity: sha512-bFJl0I1KVc9jYTe9tdGGpAMPy32dLBXXo1dS/YwSCTL/2nd9XeHsY616RE3HPXDVk+a+dBuzyz5YdlXwcDTr2A==}
+
+
'@octokit/rest@18.12.0':
+
resolution: {integrity: sha512-gDPiOHlyGavxr72y0guQEhLsemgVjwRePayJ+FcKc2SJqKUbxbkvf5kAZEWA/MKvsfYlQAMVzNJE3ezQcxMJ2Q==}
+
+
'@octokit/types@6.41.0':
+
resolution: {integrity: sha512-eJ2jbzjdijiL3B4PrSQaSjuF2sPEQPVCPzBvTHJD9Nz+9dw2SGH4K4xeQJ77YfTq5bRQ+bD8wT11JbeDPmxmGg==}
+
+
'@pkgjs/parseargs@0.11.0':
+
resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
+
engines: {node: '>=14'}
+
+
'@sinclair/typebox@0.24.51':
+
resolution: {integrity: sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==}
+
+
'@sinonjs/commons@1.8.6':
+
resolution: {integrity: sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==}
+
+
'@sinonjs/fake-timers@9.1.2':
+
resolution: {integrity: sha512-BPS4ynJW/o92PUR4wgriz2Ud5gpST5vz6GQfMixEDK0Z8ZCUv2M7SkBLykH56T++Xs+8ln9zTGbOvNGIe02/jw==}
+
+
'@tootallnate/once@1.1.2':
+
resolution: {integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==}
+
engines: {node: '>= 6'}
+
+
'@tsconfig/node10@1.0.11':
+
resolution: {integrity: sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==}
+
+
'@tsconfig/node12@1.0.11':
+
resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==}
+
+
'@tsconfig/node14@1.0.3':
+
resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==}
+
+
'@tsconfig/node16@1.0.4':
+
resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==}
+
+
'@types/babel__core@7.20.5':
+
resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==}
+
+
'@types/babel__generator@7.27.0':
+
resolution: {integrity: sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==}
+
+
'@types/babel__template@7.4.4':
+
resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==}
+
+
'@types/babel__traverse@7.28.0':
+
resolution: {integrity: sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==}
+
+
'@types/graceful-fs@4.1.9':
+
resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==}
+
+
'@types/istanbul-lib-coverage@2.0.6':
+
resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==}
+
+
'@types/istanbul-lib-report@3.0.3':
+
resolution: {integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==}
+
+
'@types/istanbul-reports@3.0.4':
+
resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==}
+
+
'@types/jest@28.1.8':
+
resolution: {integrity: sha512-8TJkV++s7B6XqnDrzR1m/TT0A0h948Pnl/097veySPN67VRAgQ4gZ7n2KfJo2rVq6njQjdxU3GCCyDvAeuHoiw==}
+
+
'@types/json-schema@7.0.15':
+
resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
+
+
'@types/minimatch@3.0.5':
+
resolution: {integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==}
+
+
'@types/minimist@1.2.5':
+
resolution: {integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==}
+
+
'@types/node@18.19.127':
+
resolution: {integrity: sha512-gSjxjrnKXML/yo0BO099uPixMqfpJU0TKYjpfLU7TrtA2WWDki412Np/RSTPRil1saKBhvVVKzVx/p/6p94nVA==}
+
+
'@types/normalize-package-data@2.4.4':
+
resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==}
+
+
'@types/parse-json@4.0.2':
+
resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==}
+
+
'@types/pg@8.15.5':
+
resolution: {integrity: sha512-LF7lF6zWEKxuT3/OR8wAZGzkg4ENGXFNyiV/JeOt9z5B+0ZVwbql9McqX5c/WStFq1GaGso7H1AzP/qSzmlCKQ==}
+
+
'@types/prettier@2.7.3':
+
resolution: {integrity: sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==}
+
+
'@types/semver@7.7.1':
+
resolution: {integrity: sha512-FmgJfu+MOcQ370SD0ev7EI8TlCAfKYU+B4m5T3yXc1CiRN94g/SZPtsCkk506aUDtlMnFZvasDwHHUcZUEaYuA==}
+
+
'@types/stack-utils@2.0.3':
+
resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==}
+
+
'@types/yargs-parser@21.0.3':
+
resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==}
+
+
'@types/yargs@17.0.33':
+
resolution: {integrity: sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==}
+
+
'@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==}
+
+
JSONStream@1.3.5:
+
resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==}
+
hasBin: true
+
+
abbrev@1.1.1:
+
resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==}
+
+
abort-controller@3.0.0:
+
resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==}
+
engines: {node: '>=6.5'}
+
+
accepts@1.3.8:
+
resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==}
+
engines: {node: '>= 0.6'}
+
+
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@8.15.0:
+
resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==}
+
engines: {node: '>=0.4.0'}
+
hasBin: true
+
+
add-stream@1.0.0:
+
resolution: {integrity: sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ==}
+
+
agent-base@6.0.2:
+
resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==}
+
engines: {node: '>= 6.0.0'}
+
+
agentkeepalive@4.6.0:
+
resolution: {integrity: sha512-kja8j7PjmncONqaTsB8fQ+wE2mSU2DJ9D4XKoJ5PFWIdRMa6SLSN1ff4mOr4jCbfRSsxR4keIiySJU0N9T5hIQ==}
+
engines: {node: '>= 8.0.0'}
+
+
aggregate-error@3.1.0:
+
resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==}
+
engines: {node: '>=8'}
+
+
ajv@6.12.6:
+
resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
+
+
ansi-escapes@4.3.2:
+
resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==}
+
engines: {node: '>=8'}
+
+
ansi-regex@2.1.1:
+
resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==}
+
engines: {node: '>=0.10.0'}
+
+
ansi-regex@5.0.1:
+
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
+
engines: {node: '>=8'}
+
+
ansi-regex@6.2.2:
+
resolution: {integrity: sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==}
+
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.3:
+
resolution: {integrity: sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==}
+
engines: {node: '>=12'}
+
+
anymatch@3.1.3:
+
resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
+
engines: {node: '>= 8'}
+
+
aproba@1.2.0:
+
resolution: {integrity: sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==}
+
+
aproba@2.1.0:
+
resolution: {integrity: sha512-tLIEcj5GuR2RSTnxNKdkK0dJ/GrC7P38sUkiDmDuHfsHmbagTFAxDVIBltoklXEVIQ/f14IL8IMJ5pn9Hez1Ew==}
+
+
are-we-there-yet@1.1.7:
+
resolution: {integrity: sha512-nxwy40TuMiUGqMyRHgCSWZ9FM4VAoRP4xUYSTv5ImRog+h9yISPbVH7H8fASCIzYn9wlEv4zvFL7uKDMCFQm3g==}
+
deprecated: This package is no longer supported.
+
+
arg@4.1.3:
+
resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==}
+
+
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-differ@3.0.0:
+
resolution: {integrity: sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==}
+
engines: {node: '>=8'}
+
+
array-flatten@1.1.1:
+
resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==}
+
+
array-ify@1.0.0:
+
resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==}
+
+
array-union@2.1.0:
+
resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
+
engines: {node: '>=8'}
+
+
array.prototype.reduce@1.0.8:
+
resolution: {integrity: sha512-DwuEqgXFBwbmZSRqt3BpQigWNUoqw9Ml2dTWdF3B2zQlQX4OeUE0zyuzX0fX0IbTvjdkZbcBTU3idgpO78qkTw==}
+
engines: {node: '>= 0.4'}
+
+
arraybuffer.prototype.slice@1.0.4:
+
resolution: {integrity: sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==}
+
engines: {node: '>= 0.4'}
+
+
arrify@1.0.1:
+
resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==}
+
engines: {node: '>=0.10.0'}
+
+
arrify@2.0.1:
+
resolution: {integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==}
+
engines: {node: '>=8'}
+
+
asap@2.0.6:
+
resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==}
+
+
asn1@0.2.6:
+
resolution: {integrity: sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==}
+
+
assert-plus@1.0.0:
+
resolution: {integrity: sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==}
+
engines: {node: '>=0.8'}
+
+
async-function@1.0.0:
+
resolution: {integrity: sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==}
+
engines: {node: '>= 0.4'}
+
+
asynckit@0.4.0:
+
resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
+
+
at-least-node@1.0.0:
+
resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==}
+
engines: {node: '>= 4.0.0'}
+
+
atomic-sleep@1.0.0:
+
resolution: {integrity: sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==}
+
engines: {node: '>=8.0.0'}
+
+
available-typed-arrays@1.0.7:
+
resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
+
engines: {node: '>= 0.4'}
+
+
aws-sign2@0.7.0:
+
resolution: {integrity: sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==}
+
+
aws4@1.13.2:
+
resolution: {integrity: sha512-lHe62zvbTB5eEABUVi/AwVh0ZKY9rMMDhmm+eeyuuUQbQ3+J+fONVQOZyj+DdrvD4BY33uYniyRJ4UJIaSKAfw==}
+
+
axios@1.12.2:
+
resolution: {integrity: sha512-vMJzPewAlRyOgxV2dU0Cuz2O8zzzx9VYtbJOaBgXFeLc4IV/Eg50n4LowmehOOR61S8ZMpc2K5Sa7g6A4jfkUw==}
+
+
babel-eslint@10.1.0:
+
resolution: {integrity: sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg==}
+
engines: {node: '>=6'}
+
deprecated: babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.
+
peerDependencies:
+
eslint: '>= 4.12.1'
+
+
babel-jest@28.1.3:
+
resolution: {integrity: sha512-epUaPOEWMk3cWX0M/sPvCHHCe9fMFAa/9hXEgKP8nFfNl/jlGkE9ucq9NqkZGXLDduCJYS0UvSlPUwC0S+rH6Q==}
+
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+
peerDependencies:
+
'@babel/core': ^7.8.0
+
+
babel-plugin-istanbul@6.1.1:
+
resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==}
+
engines: {node: '>=8'}
+
+
babel-plugin-jest-hoist@28.1.3:
+
resolution: {integrity: sha512-Ys3tUKAmfnkRUpPdpa98eYrAR0nV+sSFUZZEGuQ2EbFd1y4SOLtD5QDNHAq+bb9a+bbXvYQC4b+ID/THIMcU6Q==}
+
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+
+
babel-plugin-polyfill-corejs2@0.4.14:
+
resolution: {integrity: sha512-Co2Y9wX854ts6U8gAAPXfn0GmAyctHuK8n0Yhfjd6t30g7yvKjspvvOo9yG+z52PZRgFErt7Ka2pYnXCjLKEpg==}
+
peerDependencies:
+
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+
+
babel-plugin-polyfill-corejs3@0.13.0:
+
resolution: {integrity: sha512-U+GNwMdSFgzVmfhNm8GJUX88AadB3uo9KpJqS3FaqNIPKgySuvMb+bHPsOmmuWyIcuqZj/pzt1RUIUZns4y2+A==}
+
peerDependencies:
+
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+
+
babel-plugin-polyfill-regenerator@0.6.5:
+
resolution: {integrity: sha512-ISqQ2frbiNU9vIJkzg7dlPpznPZ4jOiUQ1uSmB0fEHeowtN3COYRsXr/xexn64NpU13P06jc/L5TgiJXOgrbEg==}
+
peerDependencies:
+
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+
+
babel-preset-current-node-syntax@1.2.0:
+
resolution: {integrity: sha512-E/VlAEzRrsLEb2+dv8yp3bo4scof3l9nR4lrld+Iy5NyVqgVYUJnDAmunkhPMisRI32Qc4iRiz425d8vM++2fg==}
+
peerDependencies:
+
'@babel/core': ^7.0.0 || ^8.0.0-0
+
+
babel-preset-jest@28.1.3:
+
resolution: {integrity: sha512-L+fupJvlWAHbQfn74coNX3zf60LXMJsezNvvx8eIh7iOR1luJ1poxYgQk1F8PYtNq/6QODDHCqsSnTFSWC491A==}
+
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+
peerDependencies:
+
'@babel/core': ^7.0.0
+
+
balanced-match@1.0.2:
+
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
+
+
base64-js@1.5.1:
+
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
+
+
baseline-browser-mapping@2.8.6:
+
resolution: {integrity: sha512-wrH5NNqren/QMtKUEEJf7z86YjfqW/2uw3IL3/xpqZUC95SSVIFXYQeeGjL6FT/X68IROu6RMehZQS5foy2BXw==}
+
hasBin: true
+
+
bcrypt-pbkdf@1.0.2:
+
resolution: {integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==}
+
+
before-after-hook@2.2.3:
+
resolution: {integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==}
+
+
big-integer@1.6.52:
+
resolution: {integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==}
+
engines: {node: '>=0.6'}
+
+
body-parser@1.20.3:
+
resolution: {integrity: sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==}
+
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
+
+
brace-expansion@1.1.12:
+
resolution: {integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==}
+
+
brace-expansion@2.0.2:
+
resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==}
+
+
braces@3.0.3:
+
resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
+
engines: {node: '>=8'}
+
+
browserslist@4.26.2:
+
resolution: {integrity: sha512-ECFzp6uFOSB+dcZ5BK/IBaGWssbSYBHvuMeMt3MMFyhI0Z8SqGgEkBLARgpRH3hutIgPVsALcMwbDrJqPxQ65A==}
+
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
+
hasBin: true
+
+
bs-logger@0.2.6:
+
resolution: {integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==}
+
engines: {node: '>= 6'}
+
+
bser@2.1.1:
+
resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==}
+
+
buffer-from@1.1.2:
+
resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
+
+
buffer@6.0.3:
+
resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==}
+
+
builtins@1.0.3:
+
resolution: {integrity: sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ==}
+
+
byline@5.0.0:
+
resolution: {integrity: sha512-s6webAy+R4SR8XVuJWt2V2rGvhnrhxN+9S15GNuTK3wKPOXFF6RNc+8ug2XhH+2s4f+uudG4kUVYmYOQWL2g0Q==}
+
engines: {node: '>=0.10.0'}
+
+
byte-size@7.0.1:
+
resolution: {integrity: sha512-crQdqyCwhokxwV1UyDzLZanhkugAgft7vt0qbbdt60C6Zf3CAiGmtUCylbtYwrU6loOUw3euGrNtW1J651ot1A==}
+
engines: {node: '>=10'}
+
+
bytes@3.1.2:
+
resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
+
engines: {node: '>= 0.8'}
+
+
cacache@15.3.0:
+
resolution: {integrity: sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==}
+
engines: {node: '>= 10'}
+
+
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'}
+
+
callsites@3.1.0:
+
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
+
engines: {node: '>=6'}
+
+
camelcase-keys@6.2.2:
+
resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==}
+
engines: {node: '>=8'}
+
+
camelcase@5.3.1:
+
resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==}
+
engines: {node: '>=6'}
+
+
camelcase@6.3.0:
+
resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
+
engines: {node: '>=10'}
+
+
caniuse-lite@1.0.30001743:
+
resolution: {integrity: sha512-e6Ojr7RV14Un7dz6ASD0aZDmQPT/A+eZU+nuTNfjqmRrmkmQlnTNWH0SKmqagx9PeW87UVqapSurtAXifmtdmw==}
+
+
caseless@0.12.0:
+
resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==}
+
+
cbor-extract@2.2.0:
+
resolution: {integrity: sha512-Ig1zM66BjLfTXpNgKpvBePq271BPOvu8MR0Jl080yG7Jsl+wAZunfrwiwA+9ruzm/WEdIV5QF/bjDZTqyAIVHA==}
+
hasBin: true
+
+
cbor-x@1.6.0:
+
resolution: {integrity: sha512-0kareyRwHSkL6ws5VXHEf8uY1liitysCVJjlmhaLG+IXLqhSaOO+t63coaso7yjwEzWZzLy8fJo06gZDVQM9Qg==}
+
+
cborg@1.10.2:
+
resolution: {integrity: sha512-b3tFPA9pUr2zCUiCfRd2+wok2/LBSNUMKOuRRok+WlvvAgEt/PlbgPTsZUcwCOs53IJvLgTp0eotwtosE6njug==}
+
hasBin: true
+
+
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'}
+
+
char-regex@1.0.2:
+
resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==}
+
engines: {node: '>=10'}
+
+
chardet@0.7.0:
+
resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==}
+
+
chownr@1.1.4:
+
resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==}
+
+
chownr@2.0.0:
+
resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==}
+
engines: {node: '>=10'}
+
+
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==}
+
+
clean-stack@2.2.0:
+
resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==}
+
engines: {node: '>=6'}
+
+
cli-cursor@3.1.0:
+
resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==}
+
engines: {node: '>=8'}
+
+
cli-width@3.0.0:
+
resolution: {integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==}
+
engines: {node: '>= 10'}
+
+
cliui@7.0.4:
+
resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==}
+
+
cliui@8.0.1:
+
resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
+
engines: {node: '>=12'}
+
+
clone-deep@4.0.1:
+
resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==}
+
engines: {node: '>=6'}
+
+
clone@1.0.4:
+
resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==}
+
engines: {node: '>=0.8'}
+
+
cmd-shim@4.1.0:
+
resolution: {integrity: sha512-lb9L7EM4I/ZRVuljLPEtUJOP+xiQVknZ4ZMpMgEp4JzNldPb27HU03hi6K1/6CoIuit/Zm/LQXySErFeXxDprw==}
+
engines: {node: '>=10'}
+
+
co@4.6.0:
+
resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==}
+
engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'}
+
+
code-point-at@1.1.0:
+
resolution: {integrity: sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==}
+
engines: {node: '>=0.10.0'}
+
+
collect-v8-coverage@1.0.2:
+
resolution: {integrity: sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==}
+
+
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==}
+
+
columnify@1.6.0:
+
resolution: {integrity: sha512-lomjuFZKfM6MSAnV9aCZC9sc0qGbmZdfygNv+nCpqVkSKdCxCklLtd16O0EILGkImHw9ZpHkAnHaB+8Zxq5W6Q==}
+
engines: {node: '>=8.0.0'}
+
+
combined-stream@1.0.8:
+
resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
+
engines: {node: '>= 0.8'}
+
+
compare-func@2.0.0:
+
resolution: {integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==}
+
+
concat-map@0.0.1:
+
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
+
+
concat-stream@2.0.0:
+
resolution: {integrity: sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==}
+
engines: {'0': node >= 6.0}
+
+
config-chain@1.1.13:
+
resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==}
+
+
console-control-strings@1.1.0:
+
resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==}
+
+
content-disposition@0.5.4:
+
resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==}
+
engines: {node: '>= 0.6'}
+
+
content-type@1.0.5:
+
resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==}
+
engines: {node: '>= 0.6'}
+
+
conventional-changelog-angular@5.0.13:
+
resolution: {integrity: sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA==}
+
engines: {node: '>=10'}
+
+
conventional-changelog-core@4.2.4:
+
resolution: {integrity: sha512-gDVS+zVJHE2v4SLc6B0sLsPiloR0ygU7HaDW14aNJE1v4SlqJPILPl/aJC7YdtRE4CybBf8gDwObBvKha8Xlyg==}
+
engines: {node: '>=10'}
+
+
conventional-changelog-preset-loader@2.3.4:
+
resolution: {integrity: sha512-GEKRWkrSAZeTq5+YjUZOYxdHq+ci4dNwHvpaBC3+ENalzFWuCWa9EZXSuZBpkr72sMdKB+1fyDV4takK1Lf58g==}
+
engines: {node: '>=10'}
+
+
conventional-changelog-writer@5.0.1:
+
resolution: {integrity: sha512-5WsuKUfxW7suLblAbFnxAcrvf6r+0b7GvNaWUwUIk0bXMnENP/PEieGKVUQrjPqwPT4o3EPAASBXiY6iHooLOQ==}
+
engines: {node: '>=10'}
+
hasBin: true
+
+
conventional-commits-filter@2.0.7:
+
resolution: {integrity: sha512-ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA==}
+
engines: {node: '>=10'}
+
+
conventional-commits-parser@3.2.4:
+
resolution: {integrity: sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==}
+
engines: {node: '>=10'}
+
hasBin: true
+
+
conventional-recommended-bump@6.1.0:
+
resolution: {integrity: sha512-uiApbSiNGM/kkdL9GTOLAqC4hbptObFo4wW2QRyHsKciGAfQuLU1ShZ1BIVI/+K2BE/W1AWYQMCXAsv4dyKPaw==}
+
engines: {node: '>=10'}
+
hasBin: true
+
+
convert-source-map@1.9.0:
+
resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==}
+
+
convert-source-map@2.0.0:
+
resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
+
+
cookie-signature@1.0.6:
+
resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==}
+
+
cookie@0.7.1:
+
resolution: {integrity: sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==}
+
engines: {node: '>= 0.6'}
+
+
core-js-compat@3.45.1:
+
resolution: {integrity: sha512-tqTt5T4PzsMIZ430XGviK4vzYSoeNJ6CXODi6c/voxOT6IZqBht5/EKaSNnYiEjjRYxjVz7DQIsOsY0XNi8PIA==}
+
+
core-util-is@1.0.2:
+
resolution: {integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==}
+
+
core-util-is@1.0.3:
+
resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
+
+
cors@2.8.5:
+
resolution: {integrity: sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==}
+
engines: {node: '>= 0.10'}
+
+
cosmiconfig@7.1.0:
+
resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==}
+
engines: {node: '>=10'}
+
+
create-require@1.1.1:
+
resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==}
+
+
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'}
+
+
dargs@7.0.0:
+
resolution: {integrity: sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==}
+
engines: {node: '>=8'}
+
+
dashdash@1.14.1:
+
resolution: {integrity: sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==}
+
engines: {node: '>=0.10'}
+
+
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'}
+
+
dateformat@3.0.3:
+
resolution: {integrity: sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==}
+
+
dateformat@4.6.3:
+
resolution: {integrity: sha512-2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA==}
+
+
debug@2.6.9:
+
resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
+
peerDependencies:
+
supports-color: '*'
+
peerDependenciesMeta:
+
supports-color:
+
optional: true
+
+
debug@4.4.3:
+
resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
+
engines: {node: '>=6.0'}
+
peerDependencies:
+
supports-color: '*'
+
peerDependenciesMeta:
+
supports-color:
+
optional: true
+
+
debuglog@1.0.1:
+
resolution: {integrity: sha512-syBZ+rnAK3EgMsH2aYEOLUW7mZSY9Gb+0wUMCFsZvcmiz+HigA0LOcq/HoQqVuGG+EKykunc7QG2bzrponfaSw==}
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+
decamelize-keys@1.1.1:
+
resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==}
+
engines: {node: '>=0.10.0'}
+
+
decamelize@1.2.0:
+
resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==}
+
engines: {node: '>=0.10.0'}
+
+
decode-uri-component@0.2.2:
+
resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==}
+
engines: {node: '>=0.10'}
+
+
dedent@0.7.0:
+
resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==}
+
+
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'}
+
+
defaults@1.0.4:
+
resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==}
+
+
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'}
+
+
delay@5.0.0:
+
resolution: {integrity: sha512-ReEBKkIfe4ya47wlPYf/gu5ib6yUG0/Aez0JQZQz94kiWtRQvZIQbTiehsnwHvLSWJnQdhVeqYue7Id1dKr0qw==}
+
engines: {node: '>=10'}
+
+
delayed-stream@1.0.0:
+
resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
+
engines: {node: '>=0.4.0'}
+
+
delegates@1.0.0:
+
resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==}
+
+
depd@2.0.0:
+
resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==}
+
engines: {node: '>= 0.8'}
+
+
deprecation@2.3.1:
+
resolution: {integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==}
+
+
destroy@1.2.0:
+
resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==}
+
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
+
+
detect-indent@5.0.0:
+
resolution: {integrity: sha512-rlpvsxUtM0PQvy9iZe640/IWwWYyBsTApREbA1pHOpmOUIl9MkP/U4z7vTtg4Oaojvqhxt7sdufnT0EzGaR31g==}
+
engines: {node: '>=4'}
+
+
detect-indent@6.1.0:
+
resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==}
+
engines: {node: '>=8'}
+
+
detect-libc@2.1.0:
+
resolution: {integrity: sha512-vEtk+OcP7VBRtQZ1EJ3bdgzSfBjgnEalLTp5zjJrS+2Z1w2KZly4SBdac/WDU3hhsNAZ9E8SC96ME4Ey8MZ7cg==}
+
engines: {node: '>=8'}
+
+
detect-newline@3.1.0:
+
resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==}
+
engines: {node: '>=8'}
+
+
dezalgo@1.0.4:
+
resolution: {integrity: sha512-rXSP0bf+5n0Qonsb+SVVfNfIsimO4HEtmnIpPHY8Q1UCzKlQrDMfdobr8nJOOsRgWCyMRqeSBQzmWUMq7zvVig==}
+
+
diff-sequences@28.1.1:
+
resolution: {integrity: sha512-FU0iFaH/E23a+a718l8Qa/19bF9p06kgE0KipMOMadwa3SjnaElKzPaUC0vnibs6/B/9ni97s61mcejk8W1fQw==}
+
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+
+
diff@4.0.2:
+
resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==}
+
engines: {node: '>=0.3.1'}
+
+
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'}
+
+
dot-prop@5.3.0:
+
resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==}
+
engines: {node: '>=8'}
+
+
dot-prop@6.0.1:
+
resolution: {integrity: sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA==}
+
engines: {node: '>=10'}
+
+
dotenv@16.6.1:
+
resolution: {integrity: sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow==}
+
engines: {node: '>=12'}
+
+
dunder-proto@1.0.1:
+
resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
+
engines: {node: '>= 0.4'}
+
+
duplexer@0.1.2:
+
resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==}
+
+
eastasianwidth@0.2.0:
+
resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
+
+
ecc-jsbn@0.1.2:
+
resolution: {integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==}
+
+
ee-first@1.1.1:
+
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
+
+
electron-to-chromium@1.5.223:
+
resolution: {integrity: sha512-qKm55ic6nbEmagFlTFczML33rF90aU+WtrJ9MdTCThrcvDNdUHN4p6QfVN78U06ZmguqXIyMPyYhw2TrbDUwPQ==}
+
+
emittery@0.10.2:
+
resolution: {integrity: sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==}
+
engines: {node: '>=12'}
+
+
emoji-regex@8.0.0:
+
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
+
+
emoji-regex@9.2.2:
+
resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
+
+
encodeurl@1.0.2:
+
resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==}
+
engines: {node: '>= 0.8'}
+
+
encodeurl@2.0.0:
+
resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==}
+
engines: {node: '>= 0.8'}
+
+
encoding@0.1.13:
+
resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==}
+
+
end-of-stream@1.4.5:
+
resolution: {integrity: sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==}
+
+
env-paths@2.2.1:
+
resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==}
+
engines: {node: '>=6'}
+
+
envinfo@7.14.0:
+
resolution: {integrity: sha512-CO40UI41xDQzhLB1hWyqUKgFhs250pNcGbyGKe1l/e4FSaI/+YE4IMG76GDt0In67WLPACIITC+sOi08x4wIvg==}
+
engines: {node: '>=4'}
+
hasBin: true
+
+
err-code@2.0.3:
+
resolution: {integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==}
+
+
error-ex@1.3.4:
+
resolution: {integrity: sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==}
+
+
es-abstract@1.24.0:
+
resolution: {integrity: sha512-WSzPgsdLtTcQwm4CROfS5ju2Wa1QQcVeT37jFjYzdFz1r9ahadC8B8/a4qxJxM+09F18iumCdRmlr96ZYkQvEg==}
+
engines: {node: '>= 0.4'}
+
+
es-array-method-boxes-properly@1.0.0:
+
resolution: {integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==}
+
+
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-android-64@0.14.54:
+
resolution: {integrity: sha512-Tz2++Aqqz0rJ7kYBfz+iqyE3QMycD4vk7LBRyWaAVFgFtQ/O8EJOnVmTOiDWYZ/uYzB4kvP+bqejYdVKzE5lAQ==}
+
engines: {node: '>=12'}
+
cpu: [x64]
+
os: [android]
+
+
esbuild-android-arm64@0.14.54:
+
resolution: {integrity: sha512-F9E+/QDi9sSkLaClO8SOV6etqPd+5DgJje1F9lOWoNncDdOBL2YF59IhsWATSt0TLZbYCf3pNlTHvVV5VfHdvg==}
+
engines: {node: '>=12'}
+
cpu: [arm64]
+
os: [android]
+
+
esbuild-darwin-64@0.14.54:
+
resolution: {integrity: sha512-jtdKWV3nBviOd5v4hOpkVmpxsBy90CGzebpbO9beiqUYVMBtSc0AL9zGftFuBon7PNDcdvNCEuQqw2x0wP9yug==}
+
engines: {node: '>=12'}
+
cpu: [x64]
+
os: [darwin]
+
+
esbuild-darwin-arm64@0.14.54:
+
resolution: {integrity: sha512-OPafJHD2oUPyvJMrsCvDGkRrVCar5aVyHfWGQzY1dWnzErjrDuSETxwA2HSsyg2jORLY8yBfzc1MIpUkXlctmw==}
+
engines: {node: '>=12'}
+
cpu: [arm64]
+
os: [darwin]
+
+
esbuild-freebsd-64@0.14.54:
+
resolution: {integrity: sha512-OKwd4gmwHqOTp4mOGZKe/XUlbDJ4Q9TjX0hMPIDBUWWu/kwhBAudJdBoxnjNf9ocIB6GN6CPowYpR/hRCbSYAg==}
+
engines: {node: '>=12'}
+
cpu: [x64]
+
os: [freebsd]
+
+
esbuild-freebsd-arm64@0.14.54:
+
resolution: {integrity: sha512-sFwueGr7OvIFiQT6WeG0jRLjkjdqWWSrfbVwZp8iMP+8UHEHRBvlaxL6IuKNDwAozNUmbb8nIMXa7oAOARGs1Q==}
+
engines: {node: '>=12'}
+
cpu: [arm64]
+
os: [freebsd]
+
+
esbuild-linux-32@0.14.54:
+
resolution: {integrity: sha512-1ZuY+JDI//WmklKlBgJnglpUL1owm2OX+8E1syCD6UAxcMM/XoWd76OHSjl/0MR0LisSAXDqgjT3uJqT67O3qw==}
+
engines: {node: '>=12'}
+
cpu: [ia32]
+
os: [linux]
+
+
esbuild-linux-64@0.14.54:
+
resolution: {integrity: sha512-EgjAgH5HwTbtNsTqQOXWApBaPVdDn7XcK+/PtJwZLT1UmpLoznPd8c5CxqsH2dQK3j05YsB3L17T8vE7cp4cCg==}
+
engines: {node: '>=12'}
+
cpu: [x64]
+
os: [linux]
+
+
esbuild-linux-arm64@0.14.54:
+
resolution: {integrity: sha512-WL71L+0Rwv+Gv/HTmxTEmpv0UgmxYa5ftZILVi2QmZBgX3q7+tDeOQNqGtdXSdsL8TQi1vIaVFHUPDe0O0kdig==}
+
engines: {node: '>=12'}
+
cpu: [arm64]
+
os: [linux]
+
+
esbuild-linux-arm@0.14.54:
+
resolution: {integrity: sha512-qqz/SjemQhVMTnvcLGoLOdFpCYbz4v4fUo+TfsWG+1aOu70/80RV6bgNpR2JCrppV2moUQkww+6bWxXRL9YMGw==}
+
engines: {node: '>=12'}
+
cpu: [arm]
+
os: [linux]
+
+
esbuild-linux-mips64le@0.14.54:
+
resolution: {integrity: sha512-qTHGQB8D1etd0u1+sB6p0ikLKRVuCWhYQhAHRPkO+OF3I/iSlTKNNS0Lh2Oc0g0UFGguaFZZiPJdJey3AGpAlw==}
+
engines: {node: '>=12'}
+
cpu: [mips64el]
+
os: [linux]
+
+
esbuild-linux-ppc64le@0.14.54:
+
resolution: {integrity: sha512-j3OMlzHiqwZBDPRCDFKcx595XVfOfOnv68Ax3U4UKZ3MTYQB5Yz3X1mn5GnodEVYzhtZgxEBidLWeIs8FDSfrQ==}
+
engines: {node: '>=12'}
+
cpu: [ppc64]
+
os: [linux]
+
+
esbuild-linux-riscv64@0.14.54:
+
resolution: {integrity: sha512-y7Vt7Wl9dkOGZjxQZnDAqqn+XOqFD7IMWiewY5SPlNlzMX39ocPQlOaoxvT4FllA5viyV26/QzHtvTjVNOxHZg==}
+
engines: {node: '>=12'}
+
cpu: [riscv64]
+
os: [linux]
+
+
esbuild-linux-s390x@0.14.54:
+
resolution: {integrity: sha512-zaHpW9dziAsi7lRcyV4r8dhfG1qBidQWUXweUjnw+lliChJqQr+6XD71K41oEIC3Mx1KStovEmlzm+MkGZHnHA==}
+
engines: {node: '>=12'}
+
cpu: [s390x]
+
os: [linux]
+
+
esbuild-netbsd-64@0.14.54:
+
resolution: {integrity: sha512-PR01lmIMnfJTgeU9VJTDY9ZerDWVFIUzAtJuDHwwceppW7cQWjBBqP48NdeRtoP04/AtO9a7w3viI+PIDr6d+w==}
+
engines: {node: '>=12'}
+
cpu: [x64]
+
os: [netbsd]
+
+
esbuild-node-externals@1.18.0:
+
resolution: {integrity: sha512-suFVX3SzZlXrGIS9Yqx+ZaHL4w1p0e/j7dQbOM9zk8SfFpnAGnDplHUKXIf9kcPEAfZRL66JuYeVSVlsSEQ5Eg==}
+
engines: {node: '>=12'}
+
peerDependencies:
+
esbuild: 0.12 - 0.25
+
+
esbuild-openbsd-64@0.14.54:
+
resolution: {integrity: sha512-Qyk7ikT2o7Wu76UsvvDS5q0amJvmRzDyVlL0qf5VLsLchjCa1+IAvd8kTBgUxD7VBUUVgItLkk609ZHUc1oCaw==}
+
engines: {node: '>=12'}
+
cpu: [x64]
+
os: [openbsd]
+
+
esbuild-plugin-copy@1.6.0:
+
resolution: {integrity: sha512-wN1paBCoE0yRBl9ZY3ZSD6SxGE4Yfr0Em7zh2yTbJv1JaHEIR3FYYN7HU6F+j/peSaGZJNSORSGxJ5QX1a1Sgg==}
+
peerDependencies:
+
esbuild: '>= 0.14.0'
+
+
esbuild-sunos-64@0.14.54:
+
resolution: {integrity: sha512-28GZ24KmMSeKi5ueWzMcco6EBHStL3B6ubM7M51RmPwXQGLe0teBGJocmWhgwccA1GeFXqxzILIxXpHbl9Q/Kw==}
+
engines: {node: '>=12'}
+
cpu: [x64]
+
os: [sunos]
+
+
esbuild-windows-32@0.14.54:
+
resolution: {integrity: sha512-T+rdZW19ql9MjS7pixmZYVObd9G7kcaZo+sETqNH4RCkuuYSuv9AGHUVnPoP9hhuE1WM1ZimHz1CIBHBboLU7w==}
+
engines: {node: '>=12'}
+
cpu: [ia32]
+
os: [win32]
+
+
esbuild-windows-64@0.14.54:
+
resolution: {integrity: sha512-AoHTRBUuYwXtZhjXZbA1pGfTo8cJo3vZIcWGLiUcTNgHpJJMC1rVA44ZereBHMJtotyN71S8Qw0npiCIkW96cQ==}
+
engines: {node: '>=12'}
+
cpu: [x64]
+
os: [win32]
+
+
esbuild-windows-arm64@0.14.54:
+
resolution: {integrity: sha512-M0kuUvXhot1zOISQGXwWn6YtS+Y/1RT9WrVIOywZnJHo3jCDyewAc79aKNQWFCQm+xNHVTq9h8dZKvygoXQQRg==}
+
engines: {node: '>=12'}
+
cpu: [arm64]
+
os: [win32]
+
+
esbuild@0.14.54:
+
resolution: {integrity: sha512-Cy9llcy8DvET5uznocPyqL3BFRrFXSVqbgpMJ9Wz8oVjZlh/zUSNbPRbov0VX7VxN2JH1Oa0uNxZ7eLRb62pJA==}
+
engines: {node: '>=12'}
+
hasBin: true
+
+
escalade@3.2.0:
+
resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
+
engines: {node: '>=6'}
+
+
escape-html@1.0.3:
+
resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
+
+
escape-string-regexp@1.0.5:
+
resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
+
engines: {node: '>=0.8.0'}
+
+
escape-string-regexp@2.0.0:
+
resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==}
+
engines: {node: '>=8'}
+
+
escape-string-regexp@4.0.0:
+
resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
+
engines: {node: '>=10'}
+
+
eslint-config-prettier@8.10.2:
+
resolution: {integrity: sha512-/IGJ6+Dka158JnP5n5YFMOszjDWrXggGz1LaK/guZq9vZTmniaKlHcsscvkAhn9y4U+BU3JuUdYvtAMcv30y4A==}
+
hasBin: true
+
peerDependencies:
+
eslint: '>=7.0.0'
+
+
eslint-plugin-prettier@4.2.5:
+
resolution: {integrity: sha512-9Ni+xgemM2IWLq6aXEpP2+V/V30GeA/46Ar629vcMqVPodFFWC9skHu/D1phvuqtS8bJCFnNf01/qcmqYEwNfg==}
+
engines: {node: '>=12.0.0'}
+
peerDependencies:
+
eslint: '>=7.28.0'
+
eslint-config-prettier: '*'
+
prettier: '>=2.0.0'
+
peerDependenciesMeta:
+
eslint-config-prettier:
+
optional: true
+
+
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@1.3.0:
+
resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==}
+
engines: {node: '>=4'}
+
+
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'}
+
+
esutils@2.0.3:
+
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
+
engines: {node: '>=0.10.0'}
+
+
etag@1.8.1:
+
resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==}
+
engines: {node: '>= 0.6'}
+
+
event-target-shim@5.0.1:
+
resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==}
+
engines: {node: '>=6'}
+
+
eventemitter3@4.0.7:
+
resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
+
+
events@3.3.0:
+
resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
+
engines: {node: '>=0.8.x'}
+
+
execa@5.1.1:
+
resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==}
+
engines: {node: '>=10'}
+
+
exit@0.1.2:
+
resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==}
+
engines: {node: '>= 0.8.0'}
+
+
expect@28.1.3:
+
resolution: {integrity: sha512-eEh0xn8HlsuOBxFgIss+2mX85VAS4Qy3OSkjV7rlBWljtA4oWH37glVGyOZSZvErDT/yBywZdPGwCXuTvSG85g==}
+
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+
+
express-async-errors@3.1.1:
+
resolution: {integrity: sha512-h6aK1da4tpqWSbyCa3FxB/V6Ehd4EEB15zyQq9qe75OZBp0krinNKuH4rAY+S/U/2I36vdLAUFSjQJ+TFmODng==}
+
peerDependencies:
+
express: ^4.16.2
+
+
express@4.21.2:
+
resolution: {integrity: sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==}
+
engines: {node: '>= 0.10.0'}
+
+
extend@3.0.2:
+
resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==}
+
+
external-editor@3.1.0:
+
resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==}
+
engines: {node: '>=4'}
+
+
extsprintf@1.3.0:
+
resolution: {integrity: sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==}
+
engines: {'0': node >=0.6.0}
+
+
fast-copy@3.0.2:
+
resolution: {integrity: sha512-dl0O9Vhju8IrcLndv2eU4ldt1ftXMqqfgN4H1cpmGV7P6jeB9FwpN9a2c8DPGE1Ys88rNUJVYDHq73CGAGOPfQ==}
+
+
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==}
+
+
fast-printf@1.6.10:
+
resolution: {integrity: sha512-GwTgG9O4FVIdShhbVF3JxOgSBY2+ePGsu2V/UONgoCPzF9VY6ZdBMKsHKCYQHZwNk3qNouUolRDsgVxcVA5G1w==}
+
engines: {node: '>=10.0'}
+
+
fast-redact@3.5.0:
+
resolution: {integrity: sha512-dwsoQlS7h9hMeYUq1W++23NDcBLV4KqONnITDV9DjfS3q1SgDGVrBdvvTLUotWtPSD7asWDV9/CmsZPy8Hf70A==}
+
engines: {node: '>=6'}
+
+
fast-safe-stringify@2.1.1:
+
resolution: {integrity: sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==}
+
+
fastq@1.19.1:
+
resolution: {integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==}
+
+
fb-watchman@2.0.2:
+
resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==}
+
+
figures@3.2.0:
+
resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==}
+
engines: {node: '>=8'}
+
+
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'}
+
+
filter-obj@1.1.0:
+
resolution: {integrity: sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==}
+
engines: {node: '>=0.10.0'}
+
+
finalhandler@1.3.1:
+
resolution: {integrity: sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==}
+
engines: {node: '>= 0.8'}
+
+
find-up@2.1.0:
+
resolution: {integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==}
+
engines: {node: '>=4'}
+
+
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'}
+
+
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==}
+
+
follow-redirects@1.15.11:
+
resolution: {integrity: sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==}
+
engines: {node: '>=4.0'}
+
peerDependencies:
+
debug: '*'
+
peerDependenciesMeta:
+
debug:
+
optional: 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'}
+
+
forever-agent@0.6.1:
+
resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==}
+
+
form-data@2.3.3:
+
resolution: {integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==}
+
engines: {node: '>= 0.12'}
+
+
form-data@4.0.4:
+
resolution: {integrity: sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow==}
+
engines: {node: '>= 6'}
+
+
forwarded@0.2.0:
+
resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==}
+
engines: {node: '>= 0.6'}
+
+
fresh@0.5.2:
+
resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==}
+
engines: {node: '>= 0.6'}
+
+
fs-extra@10.1.0:
+
resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==}
+
engines: {node: '>=12'}
+
+
fs-extra@9.1.0:
+
resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==}
+
engines: {node: '>=10'}
+
+
fs-minipass@1.2.7:
+
resolution: {integrity: sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA==}
+
+
fs-minipass@2.1.0:
+
resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==}
+
engines: {node: '>= 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==}
+
+
gauge@2.7.4:
+
resolution: {integrity: sha512-14x4kjc6lkD3ltw589k0NrPD6cCNTD6CWoVUNpB85+DrtONoZn+Rug6xZU5RvSC4+TZPxA5AnBibQYAvZn41Hg==}
+
deprecated: This package is no longer supported.
+
+
gensync@1.0.0-beta.2:
+
resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
+
engines: {node: '>=6.9.0'}
+
+
get-caller-file@2.0.5:
+
resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
+
engines: {node: 6.* || 8.* || >= 10.*}
+
+
get-intrinsic@1.3.0:
+
resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
+
engines: {node: '>= 0.4'}
+
+
get-package-type@0.1.0:
+
resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==}
+
engines: {node: '>=8.0.0'}
+
+
get-pkg-repo@4.2.1:
+
resolution: {integrity: sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA==}
+
engines: {node: '>=6.9.0'}
+
hasBin: true
+
+
get-port@5.1.1:
+
resolution: {integrity: sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==}
+
engines: {node: '>=8'}
+
+
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-symbol-description@1.1.0:
+
resolution: {integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==}
+
engines: {node: '>= 0.4'}
+
+
getpass@0.1.7:
+
resolution: {integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==}
+
+
git-raw-commits@2.0.11:
+
resolution: {integrity: sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==}
+
engines: {node: '>=10'}
+
hasBin: true
+
+
git-remote-origin-url@2.0.0:
+
resolution: {integrity: sha512-eU+GGrZgccNJcsDH5LkXR3PB9M958hxc7sbA8DFJjrv9j4L2P/eZfKhM+QD6wyzpiv+b1BpK0XrYCxkovtjSLw==}
+
engines: {node: '>=4'}
+
+
git-semver-tags@4.1.1:
+
resolution: {integrity: sha512-OWyMt5zBe7xFs8vglMmhM9lRQzCWL3WjHtxNNfJTMngGym7pC1kh8sP6jevfydJ6LP3ZvGxfb6ABYgPUM0mtsA==}
+
engines: {node: '>=10'}
+
hasBin: true
+
+
git-up@4.0.5:
+
resolution: {integrity: sha512-YUvVDg/vX3d0syBsk/CKUTib0srcQME0JyHkL5BaYdwLsiCslPWmDSi8PUMo9pXYjrryMcmsCoCgsTpSCJEQaA==}
+
+
git-url-parse@11.6.0:
+
resolution: {integrity: sha512-WWUxvJs5HsyHL6L08wOusa/IXYtMuCAhrMmnTjQPpBU0TTHyDhnOATNH3xNQz7YOQUsqIIPTGr4xiVti1Hsk5g==}
+
+
gitconfiglocal@1.0.0:
+
resolution: {integrity: sha512-spLUXeTAVHxDtKsJc8FkFVgFtMdEN9qPGpL23VfSHx4fP4+Ds097IXLvymbnDH8FnmxX5Nr9bPw3A+AQ6mWEaQ==}
+
+
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==}
+
+
handlebars@4.7.8:
+
resolution: {integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==}
+
engines: {node: '>=0.4.7'}
+
hasBin: true
+
+
har-schema@2.0.0:
+
resolution: {integrity: sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==}
+
engines: {node: '>=4'}
+
+
har-validator@5.1.5:
+
resolution: {integrity: sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==}
+
engines: {node: '>=6'}
+
deprecated: this library is no longer supported
+
+
hard-rejection@2.1.0:
+
resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==}
+
engines: {node: '>=6'}
+
+
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'}
+
+
has-unicode@2.0.1:
+
resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==}
+
+
hasown@2.0.2:
+
resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
+
engines: {node: '>= 0.4'}
+
+
help-me@4.2.0:
+
resolution: {integrity: sha512-TAOnTB8Tz5Dw8penUuzHVrKNKlCIbwwbHnXraNJxPwf8LRtE2HlM84RYuezMFcwOJmoYOCWVDyJ8TQGxn9PgxA==}
+
+
hosted-git-info@2.8.9:
+
resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==}
+
+
hosted-git-info@4.1.0:
+
resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==}
+
engines: {node: '>=10'}
+
+
hosted-git-info@6.1.3:
+
resolution: {integrity: sha512-HVJyzUrLIL1c0QmviVh5E8VGyUS7xCFPS6yydaVd1UegW+ibV/CohqTH9MkOLDp5o+rb82DMo77PTuc9F/8GKw==}
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+
+
html-escaper@2.0.2:
+
resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==}
+
+
http-cache-semantics@4.2.0:
+
resolution: {integrity: sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==}
+
+
http-errors@2.0.0:
+
resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==}
+
engines: {node: '>= 0.8'}
+
+
http-proxy-agent@4.0.1:
+
resolution: {integrity: sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==}
+
engines: {node: '>= 6'}
+
+
http-signature@1.2.0:
+
resolution: {integrity: sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==}
+
engines: {node: '>=0.8', npm: '>=1.3.7'}
+
+
http-terminator@3.2.0:
+
resolution: {integrity: sha512-JLjck1EzPaWjsmIf8bziM3p9fgR1Y3JoUKAkyYEbZmFrIvJM6I8vVJfBGWlEtV9IWOvzNnaTtjuwZeBY2kwB4g==}
+
engines: {node: '>=14'}
+
+
https-proxy-agent@5.0.1:
+
resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==}
+
engines: {node: '>= 6'}
+
+
human-signals@2.1.0:
+
resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==}
+
engines: {node: '>=10.17.0'}
+
+
humanize-ms@1.2.1:
+
resolution: {integrity: sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==}
+
+
iconv-lite@0.4.24:
+
resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==}
+
engines: {node: '>=0.10.0'}
+
+
iconv-lite@0.6.3:
+
resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==}
+
engines: {node: '>=0.10.0'}
+
+
ieee754@1.2.1:
+
resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
+
+
ignore-walk@3.0.4:
+
resolution: {integrity: sha512-PY6Ii8o1jMRA1z4F2hRkH/xN59ox43DavKvD3oDpfurRlOJyAHpifIwpbdv1n4jt4ov0jSpw3kQ4GhJnpBL6WQ==}
+
+
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'}
+
+
import-local@3.2.0:
+
resolution: {integrity: sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==}
+
engines: {node: '>=8'}
+
hasBin: true
+
+
imurmurhash@0.1.4:
+
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
+
engines: {node: '>=0.8.19'}
+
+
indent-string@4.0.0:
+
resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==}
+
engines: {node: '>=8'}
+
+
infer-owner@1.0.4:
+
resolution: {integrity: sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==}
+
+
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==}
+
+
ini@1.3.8:
+
resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
+
+
init-package-json@2.0.5:
+
resolution: {integrity: sha512-u1uGAtEFu3VA6HNl/yUWw57jmKEMx8SKOxHhxjGnOFUiIlFnohKDFg4ZrPpv9wWqk44nDxGJAtqjdQFm+9XXQA==}
+
engines: {node: '>=10'}
+
+
inquirer@7.3.3:
+
resolution: {integrity: sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==}
+
engines: {node: '>=8.0.0'}
+
+
internal-slot@1.1.0:
+
resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==}
+
engines: {node: '>= 0.4'}
+
+
ip-address@10.0.1:
+
resolution: {integrity: sha512-NWv9YLW4PoW2B7xtzaS3NCot75m6nK7Icdv0o3lfMceJVRfSoQwqD4wEH5rLwoKJwUiZ/rfpiVBhnaF0FK4HoA==}
+
engines: {node: '>= 12'}
+
+
ipaddr.js@1.9.1:
+
resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
+
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-ci@2.0.0:
+
resolution: {integrity: sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==}
+
hasBin: true
+
+
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@1.0.0:
+
resolution: {integrity: sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==}
+
engines: {node: '>=0.10.0'}
+
+
is-fullwidth-code-point@3.0.0:
+
resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
+
engines: {node: '>=8'}
+
+
is-generator-fn@2.1.0:
+
resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==}
+
engines: {node: '>=6'}
+
+
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-lambda@1.0.1:
+
resolution: {integrity: sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==}
+
+
is-map@2.0.3:
+
resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==}
+
engines: {node: '>= 0.4'}
+
+
is-negative-zero@2.0.3:
+
resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==}
+
engines: {node: '>= 0.4'}
+
+
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-obj@2.0.0:
+
resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==}
+
engines: {node: '>=8'}
+
+
is-path-inside@3.0.3:
+
resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
+
engines: {node: '>=8'}
+
+
is-plain-obj@1.1.0:
+
resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==}
+
engines: {node: '>=0.10.0'}
+
+
is-plain-obj@2.1.0:
+
resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==}
+
engines: {node: '>=8'}
+
+
is-plain-object@2.0.4:
+
resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==}
+
engines: {node: '>=0.10.0'}
+
+
is-plain-object@5.0.0:
+
resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==}
+
engines: {node: '>=0.10.0'}
+
+
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-ssh@1.4.1:
+
resolution: {integrity: sha512-JNeu1wQsHjyHgn9NcWTaXq6zWSR6hqE0++zhfZlkFBbScNkyvxCdeV8sRkSBaeLKxmbpR21brail63ACNxJ0Tg==}
+
+
is-stream@2.0.1:
+
resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
+
engines: {node: '>=8'}
+
+
is-string@1.1.1:
+
resolution: {integrity: sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==}
+
engines: {node: '>= 0.4'}
+
+
is-symbol@1.1.1:
+
resolution: {integrity: sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==}
+
engines: {node: '>= 0.4'}
+
+
is-text-path@1.0.1:
+
resolution: {integrity: sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==}
+
engines: {node: '>=0.10.0'}
+
+
is-typed-array@1.1.15:
+
resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==}
+
engines: {node: '>= 0.4'}
+
+
is-typedarray@1.0.0:
+
resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==}
+
+
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'}
+
+
isarray@1.0.0:
+
resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==}
+
+
isarray@2.0.5:
+
resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==}
+
+
isexe@2.0.0:
+
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
+
+
isobject@3.0.1:
+
resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==}
+
engines: {node: '>=0.10.0'}
+
+
isstream@0.1.2:
+
resolution: {integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==}
+
+
istanbul-lib-coverage@3.2.2:
+
resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==}
+
engines: {node: '>=8'}
+
+
istanbul-lib-instrument@5.2.1:
+
resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==}
+
engines: {node: '>=8'}
+
+
istanbul-lib-report@3.0.1:
+
resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==}
+
engines: {node: '>=10'}
+
+
istanbul-lib-source-maps@4.0.1:
+
resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==}
+
engines: {node: '>=10'}
+
+
istanbul-reports@3.2.0:
+
resolution: {integrity: sha512-HGYWWS/ehqTV3xN10i23tkPkpH46MLCIMFNCaaKNavAXTF1RkqxawEPtnjnGZ6XKSInBKkiOA5BKS+aZiY3AvA==}
+
engines: {node: '>=8'}
+
+
jackspeak@3.4.3:
+
resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==}
+
+
jest-changed-files@28.1.3:
+
resolution: {integrity: sha512-esaOfUWJXk2nfZt9SPyC8gA1kNfdKLkQWyzsMlqq8msYSlNKfmZxfRgZn4Cd4MGVUF+7v6dBs0d5TOAKa7iIiA==}
+
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+
+
jest-circus@28.1.3:
+
resolution: {integrity: sha512-cZ+eS5zc79MBwt+IhQhiEp0OeBddpc1n8MBo1nMB8A7oPMKEO+Sre+wHaLJexQUj9Ya/8NOBY0RESUgYjB6fow==}
+
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+
+
jest-cli@28.1.3:
+
resolution: {integrity: sha512-roY3kvrv57Azn1yPgdTebPAXvdR2xfezaKKYzVxZ6It/5NCxzJym6tUI5P1zkdWhfUYkxEI9uZWcQdaFLo8mJQ==}
+
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+
hasBin: true
+
peerDependencies:
+
node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
+
peerDependenciesMeta:
+
node-notifier:
+
optional: true
+
+
jest-config@28.1.3:
+
resolution: {integrity: sha512-MG3INjByJ0J4AsNBm7T3hsuxKQqFIiRo/AUqb1q9LRKI5UU6Aar9JHbr9Ivn1TVwfUD9KirRoM/T6u8XlcQPHQ==}
+
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+
peerDependencies:
+
'@types/node': '*'
+
ts-node: '>=9.0.0'
+
peerDependenciesMeta:
+
'@types/node':
+
optional: true
+
ts-node:
+
optional: true
+
+
jest-diff@28.1.3:
+
resolution: {integrity: sha512-8RqP1B/OXzjjTWkqMX67iqgwBVJRgCyKD3L9nq+6ZqJMdvjE8RgHktqZ6jNrkdMT+dJuYNI3rhQpxaz7drJHfw==}
+
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+
+
jest-docblock@28.1.1:
+
resolution: {integrity: sha512-3wayBVNiOYx0cwAbl9rwm5kKFP8yHH3d/fkEaL02NPTkDojPtheGB7HZSFY4wzX+DxyrvhXz0KSCVksmCknCuA==}
+
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+
+
jest-each@28.1.3:
+
resolution: {integrity: sha512-arT1z4sg2yABU5uogObVPvSlSMQlDA48owx07BDPAiasW0yYpYHYOo4HHLz9q0BVzDVU4hILFjzJw0So9aCL/g==}
+
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+
+
jest-environment-node@28.1.3:
+
resolution: {integrity: sha512-ugP6XOhEpjAEhGYvp5Xj989ns5cB1K6ZdjBYuS30umT4CQEETaxSiPcZ/E1kFktX4GkrcM4qu07IIlDYX1gp+A==}
+
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+
+
jest-get-type@28.0.2:
+
resolution: {integrity: sha512-ioj2w9/DxSYHfOm5lJKCdcAmPJzQXmbM/Url3rhlghrPvT3tt+7a/+oXc9azkKmLvoiXjtV83bEWqi+vs5nlPA==}
+
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+
+
jest-haste-map@28.1.3:
+
resolution: {integrity: sha512-3S+RQWDXccXDKSWnkHa/dPwt+2qwA8CJzR61w3FoYCvoo3Pn8tvGcysmMF0Bj0EX5RYvAI2EIvC57OmotfdtKA==}
+
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+
+
jest-leak-detector@28.1.3:
+
resolution: {integrity: sha512-WFVJhnQsiKtDEo5lG2mM0v40QWnBM+zMdHHyJs8AWZ7J0QZJS59MsyKeJHWhpBZBH32S48FOVvGyOFT1h0DlqA==}
+
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+
+
jest-matcher-utils@28.1.3:
+
resolution: {integrity: sha512-kQeJ7qHemKfbzKoGjHHrRKH6atgxMk8Enkk2iPQ3XwO6oE/KYD8lMYOziCkeSB9G4adPM4nR1DE8Tf5JeWH6Bw==}
+
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+
+
jest-message-util@28.1.3:
+
resolution: {integrity: sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g==}
+
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+
+
jest-mock@28.1.3:
+
resolution: {integrity: sha512-o3J2jr6dMMWYVH4Lh/NKmDXdosrsJgi4AviS8oXLujcjpCMBb1FMsblDnOXKZKfSiHLxYub1eS0IHuRXsio9eA==}
+
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+
+
jest-pnp-resolver@1.2.3:
+
resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==}
+
engines: {node: '>=6'}
+
peerDependencies:
+
jest-resolve: '*'
+
peerDependenciesMeta:
+
jest-resolve:
+
optional: true
+
+
jest-regex-util@28.0.2:
+
resolution: {integrity: sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==}
+
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+
+
jest-resolve-dependencies@28.1.3:
+
resolution: {integrity: sha512-qa0QO2Q0XzQoNPouMbCc7Bvtsem8eQgVPNkwn9LnS+R2n8DaVDPL/U1gngC0LTl1RYXJU0uJa2BMC2DbTfFrHA==}
+
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+
+
jest-resolve@28.1.3:
+
resolution: {integrity: sha512-Z1W3tTjE6QaNI90qo/BJpfnvpxtaFTFw5CDgwpyE/Kz8U/06N1Hjf4ia9quUhCh39qIGWF1ZuxFiBiJQwSEYKQ==}
+
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+
+
jest-runner@28.1.3:
+
resolution: {integrity: sha512-GkMw4D/0USd62OVO0oEgjn23TM+YJa2U2Wu5zz9xsQB1MxWKDOlrnykPxnMsN0tnJllfLPinHTka61u0QhaxBA==}
+
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+
+
jest-runtime@28.1.3:
+
resolution: {integrity: sha512-NU+881ScBQQLc1JHG5eJGU7Ui3kLKrmwCPPtYsJtBykixrM2OhVQlpMmFWJjMyDfdkGgBMNjXCGB/ebzsgNGQw==}
+
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+
+
jest-snapshot@28.1.3:
+
resolution: {integrity: sha512-4lzMgtiNlc3DU/8lZfmqxN3AYD6GGLbl+72rdBpXvcV+whX7mDrREzkPdp2RnmfIiWBg1YbuFSkXduF2JcafJg==}
+
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+
+
jest-util@28.1.3:
+
resolution: {integrity: sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==}
+
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+
+
jest-validate@28.1.3:
+
resolution: {integrity: sha512-SZbOGBWEsaTxBGCOpsRWlXlvNkvTkY0XxRfh7zYmvd8uL5Qzyg0CHAXiXKROflh801quA6+/DsT4ODDthOC/OA==}
+
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+
+
jest-watcher@28.1.3:
+
resolution: {integrity: sha512-t4qcqj9hze+jviFPUN3YAtAEeFnr/azITXQEMARf5cMwKY2SMBRnCQTXLixTl20OR6mLh9KLMrgVJgJISym+1g==}
+
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+
+
jest-worker@28.1.3:
+
resolution: {integrity: sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==}
+
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+
+
jest@28.1.3:
+
resolution: {integrity: sha512-N4GT5on8UkZgH0O5LUavMRV1EDEhNTL0KEfRmDIeZHSV7p2XgLoY9t9VDUgL6o+yfdgYHVxuz81G8oB9VG5uyA==}
+
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+
hasBin: true
+
peerDependencies:
+
node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
+
peerDependenciesMeta:
+
node-notifier:
+
optional: true
+
+
joycon@3.1.1:
+
resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==}
+
engines: {node: '>=10'}
+
+
js-tokens@4.0.0:
+
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
+
+
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
+
+
jsbn@0.1.1:
+
resolution: {integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==}
+
+
jsesc@3.1.0:
+
resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
+
engines: {node: '>=6'}
+
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-parse-even-better-errors@3.0.2:
+
resolution: {integrity: sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==}
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+
+
json-schema-traverse@0.4.1:
+
resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
+
+
json-schema@0.4.0:
+
resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==}
+
+
json-stable-stringify-without-jsonify@1.0.1:
+
resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
+
+
json-stringify-safe@5.0.1:
+
resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==}
+
+
json5@2.2.3:
+
resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
+
engines: {node: '>=6'}
+
hasBin: true
+
+
jsonfile@6.2.0:
+
resolution: {integrity: sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==}
+
+
jsonparse@1.3.1:
+
resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==}
+
engines: {'0': node >= 0.2.0}
+
+
jsprim@1.4.2:
+
resolution: {integrity: sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==}
+
engines: {node: '>=0.6.0'}
+
+
keyv@4.5.4:
+
resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
+
+
kind-of@6.0.3:
+
resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==}
+
engines: {node: '>=0.10.0'}
+
+
kleur@3.0.3:
+
resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==}
+
engines: {node: '>=6'}
+
+
kysely@0.23.5:
+
resolution: {integrity: sha512-TH+b56pVXQq0tsyooYLeNfV11j6ih7D50dyN8tkM0e7ndiUH28Nziojiog3qRFlmEj9XePYdZUrNJ2079Qjdow==}
+
engines: {node: '>=14.0.0'}
+
+
lerna@4.0.0:
+
resolution: {integrity: sha512-DD/i1znurfOmNJb0OBw66NmNqiM8kF6uIrzrJ0wGE3VNdzeOhz9ziWLYiRaZDGGwgbcjOo6eIfcx9O5Qynz+kg==}
+
engines: {node: '>= 10.18.0'}
+
hasBin: true
+
+
leven@3.1.0:
+
resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==}
+
engines: {node: '>=6'}
+
+
levn@0.4.1:
+
resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
+
engines: {node: '>= 0.8.0'}
+
+
libnpmaccess@4.0.3:
+
resolution: {integrity: sha512-sPeTSNImksm8O2b6/pf3ikv4N567ERYEpeKRPSmqlNt1dTZbvgpJIzg5vAhXHpw2ISBsELFRelk0jEahj1c6nQ==}
+
engines: {node: '>=10'}
+
+
libnpmpublish@4.0.2:
+
resolution: {integrity: sha512-+AD7A2zbVeGRCFI2aO//oUmapCwy7GHqPXFJh3qpToSRNU+tXKJ2YFUgjt04LPPAf2dlEH95s6EhIHM1J7bmOw==}
+
engines: {node: '>=10'}
+
+
lines-and-columns@1.2.4:
+
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
+
+
load-json-file@4.0.0:
+
resolution: {integrity: sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==}
+
engines: {node: '>=4'}
+
+
load-json-file@6.2.0:
+
resolution: {integrity: sha512-gUD/epcRms75Cw8RT1pUdHugZYM5ce64ucs2GEISABwkRsOQr0q2wm/MV2TKThycIe5e0ytRweW2RZxclogCdQ==}
+
engines: {node: '>=8'}
+
+
locate-path@2.0.0:
+
resolution: {integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==}
+
engines: {node: '>=4'}
+
+
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._reinterpolate@3.0.0:
+
resolution: {integrity: sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==}
+
+
lodash.debounce@4.0.8:
+
resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==}
+
+
lodash.ismatch@4.4.0:
+
resolution: {integrity: sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g==}
+
+
lodash.memoize@4.1.2:
+
resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==}
+
+
lodash.merge@4.6.2:
+
resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
+
+
lodash.template@4.5.0:
+
resolution: {integrity: sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==}
+
deprecated: This package is deprecated. Use https://socket.dev/npm/package/eta instead.
+
+
lodash.templatesettings@4.2.0:
+
resolution: {integrity: sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==}
+
+
lodash@4.17.21:
+
resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
+
+
lru-cache@10.4.3:
+
resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
+
+
lru-cache@5.1.1:
+
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
+
+
lru-cache@6.0.0:
+
resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
+
engines: {node: '>=10'}
+
+
lru-cache@7.18.3:
+
resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==}
+
engines: {node: '>=12'}
+
+
make-dir@2.1.0:
+
resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==}
+
engines: {node: '>=6'}
+
+
make-dir@3.1.0:
+
resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==}
+
engines: {node: '>=8'}
+
+
make-dir@4.0.0:
+
resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==}
+
engines: {node: '>=10'}
+
+
make-error@1.3.6:
+
resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==}
+
+
make-fetch-happen@8.0.14:
+
resolution: {integrity: sha512-EsS89h6l4vbfJEtBZnENTOFk8mCRpY5ru36Xe5bcX1KYIli2mkSHqoFsp5O1wMDvTJJzxe/4THpCTtygjeeGWQ==}
+
engines: {node: '>= 10'}
+
+
make-fetch-happen@9.1.0:
+
resolution: {integrity: sha512-+zopwDy7DNknmwPQplem5lAZX/eCOzSvSNNcSKm5eVwTkOBzoktEfXsa9L23J/GIRhxRsaxzkPEhrJEpE2F4Gg==}
+
engines: {node: '>= 10'}
+
+
makeerror@1.0.12:
+
resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==}
+
+
map-obj@1.0.1:
+
resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==}
+
engines: {node: '>=0.10.0'}
+
+
map-obj@4.3.0:
+
resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==}
+
engines: {node: '>=8'}
+
+
math-intrinsics@1.1.0:
+
resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
+
engines: {node: '>= 0.4'}
+
+
media-typer@0.3.0:
+
resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==}
+
engines: {node: '>= 0.6'}
+
+
memorystream@0.3.1:
+
resolution: {integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==}
+
engines: {node: '>= 0.10.0'}
+
+
meow@8.1.2:
+
resolution: {integrity: sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==}
+
engines: {node: '>=10'}
+
+
merge-descriptors@1.0.3:
+
resolution: {integrity: sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==}
+
+
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'}
+
+
methods@1.1.2:
+
resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==}
+
engines: {node: '>= 0.6'}
+
+
micromatch@4.0.8:
+
resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
+
engines: {node: '>=8.6'}
+
+
mime-db@1.52.0:
+
resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
+
engines: {node: '>= 0.6'}
+
+
mime-types@2.1.35:
+
resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
+
engines: {node: '>= 0.6'}
+
+
mime@1.6.0:
+
resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==}
+
engines: {node: '>=4'}
+
hasBin: true
+
+
mimic-fn@2.1.0:
+
resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
+
engines: {node: '>=6'}
+
+
min-indent@1.0.1:
+
resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==}
+
engines: {node: '>=4'}
+
+
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-options@4.1.0:
+
resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==}
+
engines: {node: '>= 6'}
+
+
minimist@1.2.8:
+
resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
+
+
minipass-collect@1.0.2:
+
resolution: {integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==}
+
engines: {node: '>= 8'}
+
+
minipass-fetch@1.4.1:
+
resolution: {integrity: sha512-CGH1eblLq26Y15+Azk7ey4xh0J/XfJfrCox5LDJiKqI2Q2iwOLOKrlmIaODiSQS8d18jalF6y2K2ePUm0CmShw==}
+
engines: {node: '>=8'}
+
+
minipass-flush@1.0.5:
+
resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==}
+
engines: {node: '>= 8'}
+
+
minipass-json-stream@1.0.2:
+
resolution: {integrity: sha512-myxeeTm57lYs8pH2nxPzmEEg8DGIgW+9mv6D4JZD2pa81I/OBjeU7PtICXV6c9eRGTA5JMDsuIPUZRCyBMYNhg==}
+
+
minipass-pipeline@1.2.4:
+
resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==}
+
engines: {node: '>=8'}
+
+
minipass-sized@1.0.3:
+
resolution: {integrity: sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==}
+
engines: {node: '>=8'}
+
+
minipass@2.9.0:
+
resolution: {integrity: sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==}
+
+
minipass@3.3.6:
+
resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==}
+
engines: {node: '>=8'}
+
+
minipass@5.0.0:
+
resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==}
+
engines: {node: '>=8'}
+
+
minipass@7.1.2:
+
resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
+
engines: {node: '>=16 || 14 >=14.17'}
+
+
minizlib@1.3.3:
+
resolution: {integrity: sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q==}
+
+
minizlib@2.1.2:
+
resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==}
+
engines: {node: '>= 8'}
+
+
mkdirp-infer-owner@2.0.0:
+
resolution: {integrity: sha512-sdqtiFt3lkOaYvTXSRIUjkIdPTcxgv5+fgqYE/5qgwdw12cOrAuzzgzvVExIkH/ul1oeHN3bCLOWSG3XOqbKKw==}
+
engines: {node: '>=10'}
+
+
mkdirp@0.5.6:
+
resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==}
+
hasBin: true
+
+
mkdirp@1.0.4:
+
resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==}
+
engines: {node: '>=10'}
+
hasBin: true
+
+
modify-values@1.0.1:
+
resolution: {integrity: sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==}
+
engines: {node: '>=0.10.0'}
+
+
ms@2.0.0:
+
resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
+
+
ms@2.1.3:
+
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
+
+
multiformats@9.9.0:
+
resolution: {integrity: sha512-HoMUjhH9T8DDBNT+6xzkrd9ga/XiBI4xLr58LJACwK6G3HTOPeMz4nB4KJs33L2BelrIJa7P0VuNaVF3hMYfjg==}
+
+
multimatch@5.0.0:
+
resolution: {integrity: sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA==}
+
engines: {node: '>=10'}
+
+
mute-stream@0.0.8:
+
resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==}
+
+
natural-compare-lite@1.4.0:
+
resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==}
+
+
natural-compare@1.4.0:
+
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
+
+
negotiator@0.6.3:
+
resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==}
+
engines: {node: '>= 0.6'}
+
+
negotiator@0.6.4:
+
resolution: {integrity: sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==}
+
engines: {node: '>= 0.6'}
+
+
neo-async@2.6.2:
+
resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
+
+
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
+
+
node-gyp-build-optional-packages@5.1.1:
+
resolution: {integrity: sha512-+P72GAjVAbTxjjwUmwjVrqrdZROD4nf8KgpBoDxqXXTiYZZt/ud60dE5yvCSr9lRO8e8yv6kgJIC0K0PfZFVQw==}
+
hasBin: true
+
+
node-gyp@5.1.1:
+
resolution: {integrity: sha512-WH0WKGi+a4i4DUt2mHnvocex/xPLp9pYt5R6M2JdFB7pJ7Z34hveZ4nDTGTiLXCkitA9T8HFZjhinBCiVHYcWw==}
+
engines: {node: '>= 6.0.0'}
+
hasBin: true
+
+
node-gyp@7.1.2:
+
resolution: {integrity: sha512-CbpcIo7C3eMu3dL1c3d0xw449fHIGALIJsRP4DDPHpyiW8vcriNY7ubh9TE4zEKfSxscY7PjeFnshE7h75ynjQ==}
+
engines: {node: '>= 10.12.0'}
+
hasBin: true
+
+
node-int64@0.4.0:
+
resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==}
+
+
node-releases@2.0.21:
+
resolution: {integrity: sha512-5b0pgg78U3hwXkCM8Z9b2FJdPZlr9Psr9V2gQPESdGHqbntyFJKFW4r5TeWGFzafGY3hzs1JC62VEQMbl1JFkw==}
+
+
nopt@4.0.3:
+
resolution: {integrity: sha512-CvaGwVMztSMJLOeXPrez7fyfObdZqNUK1cPAEzLHrTybIua9pMdmmPR5YwtfNftIOMv3DPUhFaxsZMNTQO20Kg==}
+
hasBin: true
+
+
nopt@5.0.0:
+
resolution: {integrity: sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==}
+
engines: {node: '>=6'}
+
hasBin: true
+
+
normalize-package-data@2.5.0:
+
resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==}
+
+
normalize-package-data@3.0.3:
+
resolution: {integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==}
+
engines: {node: '>=10'}
+
+
normalize-package-data@5.0.0:
+
resolution: {integrity: sha512-h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q==}
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+
+
normalize-path@3.0.0:
+
resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
+
engines: {node: '>=0.10.0'}
+
+
normalize-url@6.1.0:
+
resolution: {integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==}
+
engines: {node: '>=10'}
+
+
npm-bundled@1.1.2:
+
resolution: {integrity: sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ==}
+
+
npm-install-checks@4.0.0:
+
resolution: {integrity: sha512-09OmyDkNLYwqKPOnbI8exiOZU2GVVmQp7tgez2BPi5OZC8M82elDAps7sxC4l//uSUtotWqoEIDwjRvWH4qz8w==}
+
engines: {node: '>=10'}
+
+
npm-install-checks@6.3.0:
+
resolution: {integrity: sha512-W29RiK/xtpCGqn6f3ixfRYGk+zRyr+Ew9F2E20BfXxT5/euLdA/Nm7fO7OeTGuAmTs30cpgInyJ0cYe708YTZw==}
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+
+
npm-lifecycle@3.1.5:
+
resolution: {integrity: sha512-lDLVkjfZmvmfvpvBzA4vzee9cn+Me4orq0QF8glbswJVEbIcSNWib7qGOffolysc3teCqbbPZZkzbr3GQZTL1g==}
+
deprecated: The lifecycle script runner used in npm is now @npmcli/run-script. Please use that module moving forward
+
+
npm-normalize-package-bin@1.0.1:
+
resolution: {integrity: sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==}
+
+
npm-normalize-package-bin@3.0.1:
+
resolution: {integrity: sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==}
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+
+
npm-package-arg@10.1.0:
+
resolution: {integrity: sha512-uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA==}
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+
+
npm-package-arg@8.1.5:
+
resolution: {integrity: sha512-LhgZrg0n0VgvzVdSm1oiZworPbTxYHUJCgtsJW8mGvlDpxTM1vSJc3m5QZeUkhAHIzbz3VCHd/R4osi1L1Tg/Q==}
+
engines: {node: '>=10'}
+
+
npm-packlist@2.2.2:
+
resolution: {integrity: sha512-Jt01acDvJRhJGthnUJVF/w6gumWOZxO7IkpY/lsX9//zqQgnF7OJaxgQXcerd4uQOLu7W5bkb4mChL9mdfm+Zg==}
+
engines: {node: '>=10'}
+
hasBin: true
+
+
npm-pick-manifest@6.1.1:
+
resolution: {integrity: sha512-dBsdBtORT84S8V8UTad1WlUyKIY9iMsAmqxHbLdeEeBNMLQDlDWWra3wYUx9EBEIiG/YwAy0XyNHDd2goAsfuA==}
+
+
npm-pick-manifest@8.0.2:
+
resolution: {integrity: sha512-1dKY+86/AIiq1tkKVD3l0WI+Gd3vkknVGAggsFeBkTvbhMQ1OND/LKkYv4JtXPKUJ8bOTCyLiqEg2P6QNdK+Gg==}
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+
+
npm-registry-fetch@11.0.0:
+
resolution: {integrity: sha512-jmlgSxoDNuhAtxUIG6pVwwtz840i994dL14FoNVZisrmZW5kWd63IUTNv1m/hyRSGSqWjCUp/YZlS1BJyNp9XA==}
+
engines: {node: '>=10'}
+
+
npm-registry-fetch@9.0.0:
+
resolution: {integrity: sha512-PuFYYtnQ8IyVl6ib9d3PepeehcUeHN9IO5N/iCRhyg9tStQcqGQBRVHmfmMWPDERU3KwZoHFvbJ4FPXPspvzbA==}
+
engines: {node: '>=10'}
+
+
npm-run-all@4.1.5:
+
resolution: {integrity: sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==}
+
engines: {node: '>= 4'}
+
hasBin: true
+
+
npm-run-path@4.0.1:
+
resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
+
engines: {node: '>=8'}
+
+
npmlog@4.1.2:
+
resolution: {integrity: sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==}
+
deprecated: This package is no longer supported.
+
+
number-is-nan@1.0.1:
+
resolution: {integrity: sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==}
+
engines: {node: '>=0.10.0'}
+
+
oauth-sign@0.9.0:
+
resolution: {integrity: sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==}
+
+
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'}
+
+
object.getownpropertydescriptors@2.1.8:
+
resolution: {integrity: sha512-qkHIGe4q0lSYMv0XI4SsBTJz3WaURhLvd0lKSgtVuOsJ2krg4SgMw3PIRQFMp07yi++UR3se2mkcLqsBNpBb/A==}
+
engines: {node: '>= 0.8'}
+
+
on-exit-leak-free@2.1.2:
+
resolution: {integrity: sha512-0eJJY6hXLGf1udHwfNftBqH+g73EU4B504nZeKpz1sYRKafAghwxEJunB2O7rDZkL4PGfsMVnTXZ2EjibbqcsA==}
+
engines: {node: '>=14.0.0'}
+
+
on-finished@2.4.1:
+
resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
+
engines: {node: '>= 0.8'}
+
+
once@1.4.0:
+
resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
+
+
one-webcrypto@1.0.3:
+
resolution: {integrity: sha512-fu9ywBVBPx0gS9K0etIROTiCkvI5S1TDjFsYFb3rC1ewFxeOqsbzq7aIMBHsYfrTHBcGXJaONXXjTl8B01cW1Q==}
+
+
onetime@5.1.2:
+
resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==}
+
engines: {node: '>=6'}
+
+
optionator@0.9.4:
+
resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
+
engines: {node: '>= 0.8.0'}
+
+
os-homedir@1.0.2:
+
resolution: {integrity: sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==}
+
engines: {node: '>=0.10.0'}
+
+
os-tmpdir@1.0.2:
+
resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==}
+
engines: {node: '>=0.10.0'}
+
+
osenv@0.1.5:
+
resolution: {integrity: sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==}
+
deprecated: This package is no longer supported.
+
+
own-keys@1.0.1:
+
resolution: {integrity: sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==}
+
engines: {node: '>= 0.4'}
+
+
p-finally@1.0.0:
+
resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==}
+
engines: {node: '>=4'}
+
+
p-limit@1.3.0:
+
resolution: {integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==}
+
engines: {node: '>=4'}
+
+
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-locate@2.0.0:
+
resolution: {integrity: sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==}
+
engines: {node: '>=4'}
+
+
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-series@2.1.0:
+
resolution: {integrity: sha512-RpYIIK1zXSNEOdwxcfe7FdvGcs7+y5n8rifMhMNWvaxRNMPINJHF5GDeuVxWqnfrcHPSCnp7Oo5yNXHId9Av2Q==}
+
engines: {node: '>=8'}
+
+
p-map@4.0.0:
+
resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==}
+
engines: {node: '>=10'}
+
+
p-pipe@3.1.0:
+
resolution: {integrity: sha512-08pj8ATpzMR0Y80x50yJHn37NF6vjrqHutASaX5LiH5npS9XPvrUmscd9MF5R4fuYRHOxQR1FfMIlF7AzwoPqw==}
+
engines: {node: '>=8'}
+
+
p-queue@6.6.2:
+
resolution: {integrity: sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==}
+
engines: {node: '>=8'}
+
+
p-reduce@2.1.0:
+
resolution: {integrity: sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==}
+
engines: {node: '>=8'}
+
+
p-timeout@3.2.0:
+
resolution: {integrity: sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==}
+
engines: {node: '>=8'}
+
+
p-try@1.0.0:
+
resolution: {integrity: sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==}
+
engines: {node: '>=4'}
+
+
p-try@2.2.0:
+
resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
+
engines: {node: '>=6'}
+
+
p-wait-for@3.2.0:
+
resolution: {integrity: sha512-wpgERjNkLrBiFmkMEjuZJEWKKDrNfHCKA1OhyN1wg1FrLkULbviEy6py1AyJUgZ72YWFbZ38FIpnqvVqAlDUwA==}
+
engines: {node: '>=8'}
+
+
p-waterfall@2.1.1:
+
resolution: {integrity: sha512-RRTnDb2TBG/epPRI2yYXsimO0v3BXC8Yd3ogr1545IaqKK17VGhbWVeGGN+XfCm/08OK8635nH31c8bATkHuSw==}
+
engines: {node: '>=8'}
+
+
package-json-from-dist@1.0.1:
+
resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==}
+
+
pacote@11.3.5:
+
resolution: {integrity: sha512-fT375Yczn4zi+6Hkk2TBe1x1sP8FgFsEIZ2/iWaXY2r/NkhDJfxbcn5paz1+RTFCyNf+dPnaoBDJoAxXSU8Bkg==}
+
engines: {node: '>=10'}
+
hasBin: true
+
+
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'}
+
+
parse-path@4.0.4:
+
resolution: {integrity: sha512-Z2lWUis7jlmXC1jeOG9giRO2+FsuyNipeQ43HAjqAZjwSe3SEf+q/84FGPHoso3kyntbxa4c4i77t3m6fGf8cw==}
+
+
parse-url@6.0.5:
+
resolution: {integrity: sha512-e35AeLTSIlkw/5GFq70IN7po8fmDUjpDPY1rIK+VubRfsUvBonjQ+PBZG+vWMACnQSmNlvl524IucoDmcioMxA==}
+
+
parseurl@1.3.3:
+
resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
+
engines: {node: '>= 0.8'}
+
+
path-exists@3.0.0:
+
resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==}
+
engines: {node: '>=4'}
+
+
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-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-to-regexp@0.1.12:
+
resolution: {integrity: sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==}
+
+
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'}
+
+
performance-now@2.1.0:
+
resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==}
+
+
pg-cloudflare@1.2.7:
+
resolution: {integrity: sha512-YgCtzMH0ptvZJslLM1ffsY4EuGaU0cx4XSdXLRFae8bPP4dS5xL1tNB3k2o/N64cHJpwU7dxKli/nZ2lUa5fLg==}
+
+
pg-connection-string@2.9.1:
+
resolution: {integrity: sha512-nkc6NpDcvPVpZXxrreI/FOtX3XemeLl8E0qFr6F2Lrm/I8WOnaWNhIPK2Z7OHpw7gh5XJThi6j6ppgNoaT1w4w==}
+
+
pg-int8@1.0.1:
+
resolution: {integrity: sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw==}
+
engines: {node: '>=4.0.0'}
+
+
pg-pool@3.10.1:
+
resolution: {integrity: sha512-Tu8jMlcX+9d8+QVzKIvM/uJtp07PKr82IUOYEphaWcoBhIYkoHpLXN3qO59nAI11ripznDsEzEv8nUxBVWajGg==}
+
peerDependencies:
+
pg: '>=8.0'
+
+
pg-protocol@1.10.3:
+
resolution: {integrity: sha512-6DIBgBQaTKDJyxnXaLiLR8wBpQQcGWuAESkRBX/t6OwA8YsqP+iVSiond2EDy6Y/dsGk8rh/jtax3js5NeV7JQ==}
+
+
pg-types@2.2.0:
+
resolution: {integrity: sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA==}
+
engines: {node: '>=4'}
+
+
pg@8.16.3:
+
resolution: {integrity: sha512-enxc1h0jA/aq5oSDMvqyW3q89ra6XIIDZgCX9vkMrnz5DFTw/Ny3Li2lFQ+pt3L6MCgm/5o2o8HW9hiJji+xvw==}
+
engines: {node: '>= 16.0.0'}
+
peerDependencies:
+
pg-native: '>=3.0.1'
+
peerDependenciesMeta:
+
pg-native:
+
optional: true
+
+
pgpass@1.0.5:
+
resolution: {integrity: sha512-FdW9r/jQZhSeohs1Z3sI1yxFQNFvMcnmfuj4WBMUTxOrAyLMaTcE1aAMBiTlbMNaXvBCQuVi0R7hd8udDSP7ug==}
+
+
picocolors@1.1.1:
+
resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
+
+
picomatch@2.3.1:
+
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
+
engines: {node: '>=8.6'}
+
+
pidtree@0.3.1:
+
resolution: {integrity: sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==}
+
engines: {node: '>=0.10'}
+
hasBin: true
+
+
pify@2.3.0:
+
resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
+
engines: {node: '>=0.10.0'}
+
+
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'}
+
+
pify@5.0.0:
+
resolution: {integrity: sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==}
+
engines: {node: '>=10'}
+
+
pino-abstract-transport@1.2.0:
+
resolution: {integrity: sha512-Guhh8EZfPCfH+PMXAb6rKOjGQEoy0xlAIn+irODG5kgfYV+BQ0rGYYWTIel3P5mmyXqkYkPmdIkywsn6QKUR1Q==}
+
+
pino-http@8.6.1:
+
resolution: {integrity: sha512-J0hiJgUExtBXP2BjrK4VB305tHXS31sCmWJ9XJo2wPkLHa1NFPuW4V9wjG27PAc2fmBCigiNhQKpvrx+kntBPA==}
+
+
pino-pretty@9.4.1:
+
resolution: {integrity: sha512-loWr5SNawVycvY//hamIzyz3Fh5OSpvkcO13MwdDW+eKIGylobPLqnVGTDwDXkdmpJd1BhEG+qhDw09h6SqJiQ==}
+
hasBin: true
+
+
pino-std-serializers@6.2.2:
+
resolution: {integrity: sha512-cHjPPsE+vhj/tnhCy/wiMh3M3z3h/j15zHQX+S9GkTBgqJuTuJzYJ4gUyACLhDaJ7kk9ba9iRDmbH2tJU03OiA==}
+
+
pino@8.21.0:
+
resolution: {integrity: sha512-ip4qdzjkAyDDZklUaZkcRFb2iA118H9SgRh8yzTkSQK8HilsOJF7rSY8HoW5+I0M46AZgX/pxbprf2vvzQCE0Q==}
+
hasBin: true
+
+
pirates@4.0.7:
+
resolution: {integrity: sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==}
+
engines: {node: '>= 6'}
+
+
pkg-dir@4.2.0:
+
resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==}
+
engines: {node: '>=8'}
+
+
possible-typed-array-names@1.1.0:
+
resolution: {integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==}
+
engines: {node: '>= 0.4'}
+
+
postgres-array@2.0.0:
+
resolution: {integrity: sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==}
+
engines: {node: '>=4'}
+
+
postgres-bytea@1.0.0:
+
resolution: {integrity: sha512-xy3pmLuQqRBZBXDULy7KbaitYqLcmxigw14Q5sj8QBVLqEwXfeybIKVWiqAXTlcvdvb0+xkOtDbfQMOf4lST1w==}
+
engines: {node: '>=0.10.0'}
+
+
postgres-date@1.0.7:
+
resolution: {integrity: sha512-suDmjLVQg78nMK2UZ454hAG+OAW+HQPZ6n++TNDUX+L0+uUlLywnoxJKDou51Zm+zTCjrCl0Nq6J9C5hP9vK/Q==}
+
engines: {node: '>=0.10.0'}
+
+
postgres-interval@1.2.0:
+
resolution: {integrity: sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ==}
+
engines: {node: '>=0.10.0'}
+
+
prelude-ls@1.2.1:
+
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
+
engines: {node: '>= 0.8.0'}
+
+
prettier-config-standard@5.0.0:
+
resolution: {integrity: sha512-QK252QwCxlsak8Zx+rPKZU31UdbRcu9iUk9X1ONYtLSO221OgvV9TlKoTf6iPDZtvF3vE2mkgzFIEgSUcGELSQ==}
+
peerDependencies:
+
prettier: ^2.4.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@28.1.3:
+
resolution: {integrity: sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==}
+
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+
+
proc-log@3.0.0:
+
resolution: {integrity: sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==}
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+
+
process-nextick-args@2.0.1:
+
resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
+
+
process-warning@3.0.0:
+
resolution: {integrity: sha512-mqn0kFRl0EoqhnL0GQ0veqFHyIN1yig9RHh/InzORTUiZHFRAur+aMtRkELNwGs9aNwKS6tg/An4NYBPGwvtzQ==}
+
+
process@0.11.10:
+
resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==}
+
engines: {node: '>= 0.6.0'}
+
+
promise-inflight@1.0.1:
+
resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==}
+
peerDependencies:
+
bluebird: '*'
+
peerDependenciesMeta:
+
bluebird:
+
optional: true
+
+
promise-retry@2.0.1:
+
resolution: {integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==}
+
engines: {node: '>=10'}
+
+
prompts@2.4.2:
+
resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==}
+
engines: {node: '>= 6'}
+
+
promzard@0.3.0:
+
resolution: {integrity: sha512-JZeYqd7UAcHCwI+sTOeUDYkvEU+1bQ7iE0UT1MgB/tERkAPkesW46MrpIySzODi+owTjZtiF8Ay5j9m60KmMBw==}
+
+
proto-list@1.2.4:
+
resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==}
+
+
protocols@1.4.8:
+
resolution: {integrity: sha512-IgjKyaUSjsROSO8/D49Ab7hP8mJgTYcqApOqdPhLoPxAplXmkp+zRvsrSQjFn5by0rhm4VH0GAUELIPpx7B1yg==}
+
+
protocols@2.0.2:
+
resolution: {integrity: sha512-hHVTzba3wboROl0/aWRRG9dMytgH6ow//STBZh43l/wQgmMhYhOFi0EHWAPtoCz9IAUymsyP0TSBHkhgMEGNnQ==}
+
+
proxy-addr@2.0.7:
+
resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==}
+
engines: {node: '>= 0.10'}
+
+
proxy-from-env@1.1.0:
+
resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
+
+
psl@1.15.0:
+
resolution: {integrity: sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w==}
+
+
pump@3.0.3:
+
resolution: {integrity: sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==}
+
+
punycode@2.3.1:
+
resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
+
engines: {node: '>=6'}
+
+
q@1.5.1:
+
resolution: {integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==}
+
engines: {node: '>=0.6.0', teleport: '>=0.2.0'}
+
deprecated: |-
+
You or someone you depend on is using Q, the JavaScript Promise library that gave JavaScript developers strong feelings about promises. They can almost certainly migrate to the native JavaScript promise now. Thank you literally everyone for joining me in this bet against the odds. Be excellent to each other.
+
+
(For a CapTP with native promises, see @endo/eventual-send and @endo/captp)
+
+
qs@6.13.0:
+
resolution: {integrity: sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==}
+
engines: {node: '>=0.6'}
+
+
qs@6.14.0:
+
resolution: {integrity: sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w==}
+
engines: {node: '>=0.6'}
+
+
qs@6.5.3:
+
resolution: {integrity: sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==}
+
engines: {node: '>=0.6'}
+
+
query-string@6.14.1:
+
resolution: {integrity: sha512-XDxAeVmpfu1/6IjyT/gXHOl+S0vQ9owggJ30hhWKdHAsNPOcasn5o9BW0eejZqL2e4vMjhAxoW3jVHcD6mbcYw==}
+
engines: {node: '>=6'}
+
+
queue-microtask@1.2.3:
+
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
+
+
quick-format-unescaped@4.0.4:
+
resolution: {integrity: sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==}
+
+
quick-lru@4.0.1:
+
resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==}
+
engines: {node: '>=8'}
+
+
range-parser@1.2.1:
+
resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==}
+
engines: {node: '>= 0.6'}
+
+
raw-body@2.5.2:
+
resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==}
+
engines: {node: '>= 0.8'}
+
+
react-is@18.3.1:
+
resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==}
+
+
read-cmd-shim@2.0.0:
+
resolution: {integrity: sha512-HJpV9bQpkl6KwjxlJcBoqu9Ba0PQg8TqSNIOrulGt54a0uup0HtevreFHzYzkm0lpnleRdNBzXznKrgxglEHQw==}
+
+
read-package-json-fast@2.0.3:
+
resolution: {integrity: sha512-W/BKtbL+dUjTuRL2vziuYhp76s5HZ9qQhd/dKfWIZveD0O40453QNyZhC0e63lqZrAQ4jiOapVoeJ7JrszenQQ==}
+
engines: {node: '>=10'}
+
+
read-package-json@2.1.2:
+
resolution: {integrity: sha512-D1KmuLQr6ZSJS0tW8hf3WGpRlwszJOXZ3E8Yd/DNRaM5d+1wVRZdHlpGBLAuovjr28LbWvjpWkBHMxpRGGjzNA==}
+
deprecated: This package is no longer supported. Please use @npmcli/package-json instead.
+
+
read-package-json@3.0.1:
+
resolution: {integrity: sha512-aLcPqxovhJTVJcsnROuuzQvv6oziQx4zd3JvG0vGCL5MjTONUc4uJ90zCBC6R7W7oUKBNoR/F8pkyfVwlbxqng==}
+
engines: {node: '>=10'}
+
deprecated: This package is no longer supported. Please use @npmcli/package-json instead.
+
+
read-package-json@4.1.2:
+
resolution: {integrity: sha512-Dqer4pqzamDE2O4M55xp1qZMuLPqi4ldk2ya648FOMHRjwMzFhuxVrG04wd0c38IsvkVdr3vgHI6z+QTPdAjrQ==}
+
engines: {node: '>=10'}
+
deprecated: This package is no longer supported. Please use @npmcli/package-json instead.
+
+
read-package-tree@5.3.1:
+
resolution: {integrity: sha512-mLUDsD5JVtlZxjSlPPx1RETkNjjvQYuweKwNVt1Sn8kP5Jh44pvYuUHCp6xSVDZWbNxVxG5lyZJ921aJH61sTw==}
+
deprecated: The functionality that this package provided is now in @npmcli/arborist
+
+
read-pkg-up@3.0.0:
+
resolution: {integrity: sha512-YFzFrVvpC6frF1sz8psoHDBGF7fLPc+llq/8NB43oagqWkx8ar5zYtsTORtOjw9W2RHLpWP+zTWwBvf1bCmcSw==}
+
engines: {node: '>=4'}
+
+
read-pkg-up@7.0.1:
+
resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==}
+
engines: {node: '>=8'}
+
+
read-pkg@3.0.0:
+
resolution: {integrity: sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==}
+
engines: {node: '>=4'}
+
+
read-pkg@5.2.0:
+
resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==}
+
engines: {node: '>=8'}
+
+
read@1.0.7:
+
resolution: {integrity: sha512-rSOKNYUmaxy0om1BNjMN4ezNT6VKK+2xF4GBhc81mkH7L60i6dp8qPYrkndNLT3QPphoII3maL9PVC9XmhHwVQ==}
+
engines: {node: '>=0.8'}
+
+
readable-stream@2.3.8:
+
resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==}
+
+
readable-stream@3.6.2:
+
resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
+
engines: {node: '>= 6'}
+
+
readable-stream@4.7.0:
+
resolution: {integrity: sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg==}
+
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+
+
readdir-scoped-modules@1.1.0:
+
resolution: {integrity: sha512-asaikDeqAQg7JifRsZn1NJZXo9E+VwlyCfbkZhwyISinqk5zNS6266HS5kah6P0SaQKGF6SkNnZVHUzHFYxYDw==}
+
deprecated: This functionality has been moved to @npmcli/fs
+
+
real-require@0.2.0:
+
resolution: {integrity: sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==}
+
engines: {node: '>= 12.13.0'}
+
+
redent@3.0.0:
+
resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==}
+
engines: {node: '>=8'}
+
+
reflect.getprototypeof@1.0.10:
+
resolution: {integrity: sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==}
+
engines: {node: '>= 0.4'}
+
+
regenerate-unicode-properties@10.2.2:
+
resolution: {integrity: sha512-m03P+zhBeQd1RGnYxrGyDAPpWX/epKirLrp8e3qevZdVkKtnCrjjWczIbYc8+xd6vcTStVlqfycTx1KR4LOr0g==}
+
engines: {node: '>=4'}
+
+
regenerate@1.4.2:
+
resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==}
+
+
regexp.prototype.flags@1.5.4:
+
resolution: {integrity: sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==}
+
engines: {node: '>= 0.4'}
+
+
regexpu-core@6.4.0:
+
resolution: {integrity: sha512-0ghuzq67LI9bLXpOX/ISfve/Mq33a4aFRzoQYhnnok1JOFpmE/A2TBGkNVenOGEeSBCjIiWcc6MVOG5HEQv0sA==}
+
engines: {node: '>=4'}
+
+
regjsgen@0.8.0:
+
resolution: {integrity: sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==}
+
+
regjsparser@0.13.0:
+
resolution: {integrity: sha512-NZQZdC5wOE/H3UT28fVGL+ikOZcEzfMGk/c3iN9UGxzWHMa1op7274oyiUVrAG4B2EuFhus8SvkaYnhvW92p9Q==}
+
hasBin: true
+
+
request@2.88.2:
+
resolution: {integrity: sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==}
+
engines: {node: '>= 6'}
+
deprecated: request has been deprecated, see https://github.com/request/request/issues/3142
+
+
require-directory@2.1.1:
+
resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
+
engines: {node: '>=0.10.0'}
+
+
resolve-cwd@3.0.0:
+
resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==}
+
engines: {node: '>=8'}
+
+
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.exports@1.1.1:
+
resolution: {integrity: sha512-/NtpHNDN7jWhAaQ9BvBUYZ6YTXsRBgfqWFWP7BZBaoMJO/I3G5OFzvTuWNlZC3aPjins1F+TNrLKsGbH4rfsRQ==}
+
engines: {node: '>=10'}
+
+
resolve@1.22.10:
+
resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==}
+
engines: {node: '>= 0.4'}
+
hasBin: true
+
+
restore-cursor@3.1.0:
+
resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==}
+
engines: {node: '>=8'}
+
+
retry@0.12.0:
+
resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==}
+
engines: {node: '>= 4'}
+
+
reusify@1.1.0:
+
resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==}
+
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
+
+
rimraf@2.7.1:
+
resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==}
+
deprecated: Rimraf versions prior to v4 are no longer supported
+
hasBin: true
+
+
rimraf@3.0.2:
+
resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
+
deprecated: Rimraf versions prior to v4 are no longer supported
+
hasBin: true
+
+
roarr@7.21.1:
+
resolution: {integrity: sha512-3niqt5bXFY1InKU8HKWqqYTYjtrBaxBMnXELXCXUYgtNYGUtZM5rB46HIC430AyacL95iEniGf7RgqsesykLmQ==}
+
engines: {node: '>=18.0'}
+
+
run-async@2.4.1:
+
resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==}
+
engines: {node: '>=0.12.0'}
+
+
run-parallel@1.2.0:
+
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
+
+
rxjs@6.6.7:
+
resolution: {integrity: sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==}
+
engines: {npm: '>=2.0.0'}
+
+
safe-array-concat@1.1.3:
+
resolution: {integrity: sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==}
+
engines: {node: '>=0.4'}
+
+
safe-buffer@5.1.2:
+
resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==}
+
+
safe-buffer@5.2.1:
+
resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
+
+
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'}
+
+
safe-stable-stringify@2.5.0:
+
resolution: {integrity: sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==}
+
engines: {node: '>=10'}
+
+
safer-buffer@2.1.2:
+
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
+
+
secure-json-parse@2.7.0:
+
resolution: {integrity: sha512-6aU+Rwsezw7VR8/nyvKTx8QpWH9FrcYiXXlqC4z5d5XQBDRqtbfsRjnwGyqbi3gddNtWHuEk9OANUotL26qKUw==}
+
+
semver-compare@1.0.0:
+
resolution: {integrity: sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==}
+
+
semver@5.7.2:
+
resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==}
+
hasBin: true
+
+
semver@6.3.1:
+
resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
+
hasBin: true
+
+
semver@7.7.2:
+
resolution: {integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==}
+
engines: {node: '>=10'}
+
hasBin: true
+
+
send@0.19.0:
+
resolution: {integrity: sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==}
+
engines: {node: '>= 0.8.0'}
+
+
serve-static@1.16.2:
+
resolution: {integrity: sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==}
+
engines: {node: '>= 0.8.0'}
+
+
set-blocking@2.0.0:
+
resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==}
+
+
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'}
+
+
setprototypeof@1.2.0:
+
resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==}
+
+
shallow-clone@3.0.1:
+
resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==}
+
engines: {node: '>=8'}
+
+
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.3:
+
resolution: {integrity: sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw==}
+
engines: {node: '>= 0.4'}
+
+
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'}
+
+
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'}
+
+
sisteransi@1.0.5:
+
resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
+
+
slash@3.0.0:
+
resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
+
engines: {node: '>=8'}
+
+
slide@1.1.6:
+
resolution: {integrity: sha512-NwrtjCg+lZoqhFU8fOwl4ay2ei8PaqCBOUV3/ektPY9trO1yQ1oXEfmHAhKArUVUr/hOHvy5f6AdP17dCM0zMw==}
+
+
smart-buffer@4.2.0:
+
resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==}
+
engines: {node: '>= 6.0.0', npm: '>= 3.0.0'}
+
+
socks-proxy-agent@5.0.1:
+
resolution: {integrity: sha512-vZdmnjb9a2Tz6WEQVIurybSwElwPxMZaIc7PzqbJTrezcKNznv6giT7J7tZDZ1BojVaa1jvO/UiUdhDVB0ACoQ==}
+
engines: {node: '>= 6'}
+
+
socks-proxy-agent@6.2.1:
+
resolution: {integrity: sha512-a6KW9G+6B3nWZ1yB8G7pJwL3ggLy1uTzKAgCb7ttblwqdz9fMGJUuTy3uFzEP48FAs9FLILlmzDlE2JJhVQaXQ==}
+
engines: {node: '>= 10'}
+
+
socks@2.8.7:
+
resolution: {integrity: sha512-HLpt+uLy/pxB+bum/9DzAgiKS8CX1EvbWxI4zlmgGCExImLdiad2iCwXT5Z4c9c3Eq8rP2318mPW2c+QbtjK8A==}
+
engines: {node: '>= 10.0.0', npm: '>= 3.0.0'}
+
+
sonic-boom@3.8.1:
+
resolution: {integrity: sha512-y4Z8LCDBuum+PBP3lSV7RHrXscqksve/bi0as7mhwVnBW+/wUqKT/2Kb7um8yqcFy0duYbbPxzt89Zy2nOCaxg==}
+
+
sort-keys@2.0.0:
+
resolution: {integrity: sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==}
+
engines: {node: '>=4'}
+
+
sort-keys@4.2.0:
+
resolution: {integrity: sha512-aUYIEU/UviqPgc8mHR6IW1EGxkAXpeRETYcrzg8cLAvUPZcpAlleSXHV2mY7G12GphSH6Gzv+4MMVSSkbdteHg==}
+
engines: {node: '>=8'}
+
+
source-map-support@0.5.13:
+
resolution: {integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==}
+
+
source-map@0.6.1:
+
resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
+
engines: {node: '>=0.10.0'}
+
+
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.22:
+
resolution: {integrity: sha512-4PRT4nh1EImPbt2jASOKHX7PB7I+e4IWNLvkKFDxNhJlfjbYlleYQh285Z/3mPTHSAK/AvdMmw5BNNuYH8ShgQ==}
+
+
split-on-first@1.1.0:
+
resolution: {integrity: sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==}
+
engines: {node: '>=6'}
+
+
split2@3.2.2:
+
resolution: {integrity: sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==}
+
+
split2@4.2.0:
+
resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==}
+
engines: {node: '>= 10.x'}
+
+
split@1.0.1:
+
resolution: {integrity: sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==}
+
+
sprintf-js@1.0.3:
+
resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
+
+
sshpk@1.18.0:
+
resolution: {integrity: sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==}
+
engines: {node: '>=0.10.0'}
+
hasBin: true
+
+
ssri@8.0.1:
+
resolution: {integrity: sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==}
+
engines: {node: '>= 8'}
+
+
stack-utils@2.0.6:
+
resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==}
+
engines: {node: '>=10'}
+
+
statuses@2.0.1:
+
resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==}
+
engines: {node: '>= 0.8'}
+
+
stop-iteration-iterator@1.1.0:
+
resolution: {integrity: sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==}
+
engines: {node: '>= 0.4'}
+
+
strict-uri-encode@2.0.0:
+
resolution: {integrity: sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==}
+
engines: {node: '>=4'}
+
+
string-length@4.0.2:
+
resolution: {integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==}
+
engines: {node: '>=10'}
+
+
string-width@1.0.2:
+
resolution: {integrity: sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==}
+
engines: {node: '>=0.10.0'}
+
+
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'}
+
+
string_decoder@1.1.1:
+
resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==}
+
+
string_decoder@1.3.0:
+
resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
+
+
strip-ansi@3.0.1:
+
resolution: {integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==}
+
engines: {node: '>=0.10.0'}
+
+
strip-ansi@6.0.1:
+
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
+
engines: {node: '>=8'}
+
+
strip-ansi@7.1.2:
+
resolution: {integrity: sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==}
+
engines: {node: '>=12'}
+
+
strip-bom@3.0.0:
+
resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==}
+
engines: {node: '>=4'}
+
+
strip-bom@4.0.0:
+
resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==}
+
engines: {node: '>=8'}
+
+
strip-final-newline@2.0.0:
+
resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==}
+
engines: {node: '>=6'}
+
+
strip-indent@3.0.0:
+
resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==}
+
engines: {node: '>=8'}
+
+
strip-json-comments@3.1.1:
+
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
+
engines: {node: '>=8'}
+
+
strong-log-transformer@2.1.0:
+
resolution: {integrity: sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==}
+
engines: {node: '>=4'}
+
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-color@8.1.1:
+
resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==}
+
engines: {node: '>=10'}
+
+
supports-hyperlinks@2.3.0:
+
resolution: {integrity: sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==}
+
engines: {node: '>=8'}
+
+
supports-preserve-symlinks-flag@1.0.0:
+
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
+
engines: {node: '>= 0.4'}
+
+
tar@4.4.19:
+
resolution: {integrity: sha512-a20gEsvHnWe0ygBY8JbxoM4w3SJdhc7ZAuxkLqh+nvNQN2IOt0B5lLgM490X5Hl8FF0dl0tOf2ewFYAlIFgzVA==}
+
engines: {node: '>=4.5'}
+
+
tar@6.2.1:
+
resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==}
+
engines: {node: '>=10'}
+
+
temp-dir@1.0.0:
+
resolution: {integrity: sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==}
+
engines: {node: '>=4'}
+
+
temp-write@4.0.0:
+
resolution: {integrity: sha512-HIeWmj77uOOHb0QX7siN3OtwV3CTntquin6TNVg6SHOqCP3hYKmox90eeFOGaY1MqJ9WYDDjkyZrW6qS5AWpbw==}
+
engines: {node: '>=8'}
+
+
terminal-link@2.1.1:
+
resolution: {integrity: sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==}
+
engines: {node: '>=8'}
+
+
test-exclude@6.0.0:
+
resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==}
+
engines: {node: '>=8'}
+
+
text-extensions@1.9.0:
+
resolution: {integrity: sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==}
+
engines: {node: '>=0.10'}
+
+
text-table@0.2.0:
+
resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
+
+
thread-stream@2.7.0:
+
resolution: {integrity: sha512-qQiRWsU/wvNolI6tbbCKd9iKaTnCXsTwVxhhKM6nctPdujTyztjlbUkUTUymidWcMnZ5pWR0ej4a0tjsW021vw==}
+
+
through2@2.0.5:
+
resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==}
+
+
through2@4.0.2:
+
resolution: {integrity: sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==}
+
+
through@2.3.8:
+
resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==}
+
+
tmp@0.0.33:
+
resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==}
+
engines: {node: '>=0.6.0'}
+
+
tmpl@1.0.5:
+
resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==}
+
+
to-regex-range@5.0.1:
+
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
+
engines: {node: '>=8.0'}
+
+
toidentifier@1.0.1:
+
resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
+
engines: {node: '>=0.6'}
+
+
tough-cookie@2.5.0:
+
resolution: {integrity: sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==}
+
engines: {node: '>=0.8'}
+
+
tr46@0.0.3:
+
resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
+
+
tr46@2.1.0:
+
resolution: {integrity: sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==}
+
engines: {node: '>=8'}
+
+
trim-newlines@3.0.1:
+
resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==}
+
engines: {node: '>=8'}
+
+
ts-jest@28.0.8:
+
resolution: {integrity: sha512-5FaG0lXmRPzApix8oFG8RKjAz4ehtm8yMKOTy5HX3fY6W8kmvOrmcY0hKDElW52FJov+clhUbrKAqofnj4mXTg==}
+
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+
hasBin: true
+
peerDependencies:
+
'@babel/core': '>=7.0.0-beta.0 <8'
+
'@jest/types': ^28.0.0
+
babel-jest: ^28.0.0
+
esbuild: '*'
+
jest: ^28.0.0
+
typescript: '>=4.3'
+
peerDependenciesMeta:
+
'@babel/core':
+
optional: true
+
'@jest/types':
+
optional: true
+
babel-jest:
+
optional: true
+
esbuild:
+
optional: true
+
+
ts-node@10.9.2:
+
resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==}
+
hasBin: true
+
peerDependencies:
+
'@swc/core': '>=1.2.50'
+
'@swc/wasm': '>=1.2.50'
+
'@types/node': '*'
+
typescript: '>=2.7'
+
peerDependenciesMeta:
+
'@swc/core':
+
optional: true
+
'@swc/wasm':
+
optional: true
+
+
tslib@1.14.1:
+
resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
+
+
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'
+
+
tunnel-agent@0.6.0:
+
resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==}
+
+
tweetnacl@0.14.5:
+
resolution: {integrity: sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==}
+
+
type-check@0.4.0:
+
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
+
engines: {node: '>= 0.8.0'}
+
+
type-detect@4.0.8:
+
resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==}
+
engines: {node: '>=4'}
+
+
type-fest@0.18.1:
+
resolution: {integrity: sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==}
+
engines: {node: '>=10'}
+
+
type-fest@0.20.2:
+
resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
+
engines: {node: '>=10'}
+
+
type-fest@0.21.3:
+
resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==}
+
engines: {node: '>=10'}
+
+
type-fest@0.4.1:
+
resolution: {integrity: sha512-IwzA/LSfD2vC1/YDYMv/zHP4rDF1usCwllsDpbolT3D4fUepIO7f9K70jjmUewU/LmGUKJcwcVtDCpnKk4BPMw==}
+
engines: {node: '>=6'}
+
+
type-fest@0.6.0:
+
resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==}
+
engines: {node: '>=8'}
+
+
type-fest@0.8.1:
+
resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==}
+
engines: {node: '>=8'}
+
+
type-fest@2.19.0:
+
resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==}
+
engines: {node: '>=12.20'}
+
+
type-is@1.6.18:
+
resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==}
+
engines: {node: '>= 0.6'}
+
+
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'}
+
+
typedarray-to-buffer@3.1.5:
+
resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==}
+
+
typedarray@0.0.6:
+
resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==}
+
+
typescript@4.9.5:
+
resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==}
+
engines: {node: '>=4.2.0'}
+
hasBin: true
+
+
uglify-js@3.19.3:
+
resolution: {integrity: sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==}
+
engines: {node: '>=0.8.0'}
+
hasBin: true
+
+
uid-number@0.0.6:
+
resolution: {integrity: sha512-c461FXIljswCuscZn67xq9PpszkPT6RjheWFQTgCyabJrTUozElanb0YEqv2UGgk247YpcJkFBuSGNvBlpXM9w==}
+
deprecated: This package is no longer supported.
+
+
uint8arrays@3.0.0:
+
resolution: {integrity: sha512-HRCx0q6O9Bfbp+HHSfQQKD7wU70+lydKVt4EghkdOvlK/NlrF90z+eXV34mUd48rNvVJXwkrMSPpCATkct8fJA==}
+
+
umask@1.1.0:
+
resolution: {integrity: sha512-lE/rxOhmiScJu9L6RTNVgB/zZbF+vGC0/p6D3xnkAePI2o0sMyFG966iR5Ki50OI/0mNi2yaRnxfLsPmEZF/JA==}
+
+
unbox-primitive@1.1.0:
+
resolution: {integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==}
+
engines: {node: '>= 0.4'}
+
+
undici-types@5.26.5:
+
resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==}
+
+
unicode-canonical-property-names-ecmascript@2.0.1:
+
resolution: {integrity: sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==}
+
engines: {node: '>=4'}
+
+
unicode-match-property-ecmascript@2.0.0:
+
resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==}
+
engines: {node: '>=4'}
+
+
unicode-match-property-value-ecmascript@2.2.1:
+
resolution: {integrity: sha512-JQ84qTuMg4nVkx8ga4A16a1epI9H6uTXAknqxkGF/aFfRLw1xC/Bp24HNLaZhHSkWd3+84t8iXnp1J0kYcZHhg==}
+
engines: {node: '>=4'}
+
+
unicode-property-aliases-ecmascript@2.2.0:
+
resolution: {integrity: sha512-hpbDzxUY9BFwX+UeBnxv3Sh1q7HFxj48DTmXchNgRa46lO8uj3/1iEn3MiNUYTg1g9ctIqXCCERn8gYZhHC5lQ==}
+
engines: {node: '>=4'}
+
+
unique-filename@1.1.1:
+
resolution: {integrity: sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==}
+
+
unique-slug@2.0.2:
+
resolution: {integrity: sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==}
+
+
universal-user-agent@6.0.1:
+
resolution: {integrity: sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==}
+
+
universalify@2.0.1:
+
resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}
+
engines: {node: '>= 10.0.0'}
+
+
unpipe@1.0.0:
+
resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
+
engines: {node: '>= 0.8'}
+
+
upath@2.0.1:
+
resolution: {integrity: sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==}
+
engines: {node: '>=4'}
+
+
update-browserslist-db@1.1.3:
+
resolution: {integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==}
+
hasBin: true
+
peerDependencies:
+
browserslist: '>= 4.21.0'
+
+
uri-js@4.4.1:
+
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
+
+
util-deprecate@1.0.2:
+
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
+
+
util-promisify@2.1.0:
+
resolution: {integrity: sha512-K+5eQPYs14b3+E+hmE2J6gCZ4JmMl9DbYS6BeP2CHq6WMuNxErxf5B/n0fz85L8zUuoO6rIzNNmIQDu/j+1OcA==}
+
+
utils-merge@1.0.1:
+
resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==}
+
engines: {node: '>= 0.4.0'}
+
+
uuid@3.4.0:
+
resolution: {integrity: sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==}
+
deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.
+
hasBin: true
+
+
v8-compile-cache-lib@3.0.1:
+
resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==}
+
+
v8-to-istanbul@9.3.0:
+
resolution: {integrity: sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==}
+
engines: {node: '>=10.12.0'}
+
+
validate-npm-package-license@3.0.4:
+
resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==}
+
+
validate-npm-package-name@3.0.0:
+
resolution: {integrity: sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw==}
+
+
validate-npm-package-name@5.0.1:
+
resolution: {integrity: sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==}
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+
+
vary@1.1.2:
+
resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
+
engines: {node: '>= 0.8'}
+
+
verror@1.10.0:
+
resolution: {integrity: sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==}
+
engines: {'0': node >=0.6.0}
+
+
walker@1.0.8:
+
resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==}
+
+
wcwidth@1.0.1:
+
resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==}
+
+
webidl-conversions@3.0.1:
+
resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
+
+
webidl-conversions@6.1.0:
+
resolution: {integrity: sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==}
+
engines: {node: '>=10.4'}
+
+
whatwg-url@5.0.0:
+
resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
+
+
whatwg-url@8.7.0:
+
resolution: {integrity: sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==}
+
engines: {node: '>=10'}
+
+
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-typed-array@1.1.19:
+
resolution: {integrity: sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==}
+
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
+
+
which@3.0.1:
+
resolution: {integrity: sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==}
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+
hasBin: true
+
+
wide-align@1.1.5:
+
resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==}
+
+
word-wrap@1.2.5:
+
resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
+
engines: {node: '>=0.10.0'}
+
+
wordwrap@1.0.0:
+
resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==}
+
+
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==}
+
+
write-file-atomic@2.4.3:
+
resolution: {integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==}
+
+
write-file-atomic@3.0.3:
+
resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==}
+
+
write-file-atomic@4.0.2:
+
resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==}
+
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
+
+
write-json-file@3.2.0:
+
resolution: {integrity: sha512-3xZqT7Byc2uORAatYiP3DHUUAVEkNOswEWNs9H5KXiicRTvzYzYqKjYc4G7p+8pltvAw641lVByKVtMpf+4sYQ==}
+
engines: {node: '>=6'}
+
+
write-json-file@4.3.0:
+
resolution: {integrity: sha512-PxiShnxf0IlnQuMYOPPhPkhExoCQuTUNPOa/2JWCYTmBquU9njyyDuwRKN26IZBlp4yn1nt+Agh2HOOBl+55HQ==}
+
engines: {node: '>=8.3'}
+
+
write-pkg@4.0.0:
+
resolution: {integrity: sha512-v2UQ+50TNf2rNHJ8NyWttfm/EJUBWMJcx6ZTYZr6Qp52uuegWw/lBkCtCbnYZEmPRNL61m+u67dAmGxo+HTULA==}
+
engines: {node: '>=8'}
+
+
xtend@4.0.2:
+
resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==}
+
engines: {node: '>=0.4'}
+
+
y18n@5.0.8:
+
resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
+
engines: {node: '>=10'}
+
+
yallist@3.1.1:
+
resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
+
+
yallist@4.0.0:
+
resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
+
+
yaml@1.10.2:
+
resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}
+
engines: {node: '>= 6'}
+
+
yargs-parser@20.2.4:
+
resolution: {integrity: sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==}
+
engines: {node: '>=10'}
+
+
yargs-parser@20.2.9:
+
resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==}
+
engines: {node: '>=10'}
+
+
yargs-parser@21.1.1:
+
resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
+
engines: {node: '>=12'}
+
+
yargs@16.2.0:
+
resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==}
+
engines: {node: '>=10'}
+
+
yargs@17.7.2:
+
resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
+
engines: {node: '>=12'}
+
+
yn@3.1.1:
+
resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==}
+
engines: {node: '>=6'}
+
+
yocto-queue@0.1.0:
+
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
+
engines: {node: '>=10'}
+
+
zod@3.25.76:
+
resolution: {integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==}
+
+
snapshots:
+
+
'@atproto/common-web@0.4.3':
+
dependencies:
+
graphemer: 1.4.0
+
multiformats: 9.9.0
+
uint8arrays: 3.0.0
+
zod: 3.25.76
+
+
'@atproto/common@0.1.1':
+
dependencies:
+
'@ipld/dag-cbor': 7.0.3
+
multiformats: 9.9.0
+
pino: 8.21.0
+
zod: 3.25.76
+
+
'@atproto/common@0.3.0':
+
dependencies:
+
'@atproto/common-web': 0.4.3
+
'@ipld/dag-cbor': 7.0.3
+
cbor-x: 1.6.0
+
multiformats: 9.9.0
+
pino: 8.21.0
+
+
'@atproto/crypto@0.1.0':
+
dependencies:
+
'@noble/secp256k1': 1.7.2
+
big-integer: 1.6.52
+
multiformats: 9.9.0
+
one-webcrypto: 1.0.3
+
uint8arrays: 3.0.0
+
+
'@atproto/crypto@0.4.3':
+
dependencies:
+
'@noble/curves': 1.9.7
+
'@noble/hashes': 1.8.0
+
uint8arrays: 3.0.0
+
+
'@babel/code-frame@7.27.1':
+
dependencies:
+
'@babel/helper-validator-identifier': 7.27.1
+
js-tokens: 4.0.0
+
picocolors: 1.1.1
+
+
'@babel/compat-data@7.28.4': {}
+
+
'@babel/core@7.28.4':
+
dependencies:
+
'@babel/code-frame': 7.27.1
+
'@babel/generator': 7.28.3
+
'@babel/helper-compilation-targets': 7.27.2
+
'@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.4)
+
'@babel/helpers': 7.28.4
+
'@babel/parser': 7.28.4
+
'@babel/template': 7.27.2
+
'@babel/traverse': 7.28.4
+
'@babel/types': 7.28.4
+
'@jridgewell/remapping': 2.3.5
+
convert-source-map: 2.0.0
+
debug: 4.4.3
+
gensync: 1.0.0-beta.2
+
json5: 2.2.3
+
semver: 6.3.1
+
transitivePeerDependencies:
+
- supports-color
+
+
'@babel/generator@7.28.3':
+
dependencies:
+
'@babel/parser': 7.28.4
+
'@babel/types': 7.28.4
+
'@jridgewell/gen-mapping': 0.3.13
+
'@jridgewell/trace-mapping': 0.3.31
+
jsesc: 3.1.0
+
+
'@babel/helper-annotate-as-pure@7.27.3':
+
dependencies:
+
'@babel/types': 7.28.4
+
+
'@babel/helper-compilation-targets@7.27.2':
+
dependencies:
+
'@babel/compat-data': 7.28.4
+
'@babel/helper-validator-option': 7.27.1
+
browserslist: 4.26.2
+
lru-cache: 5.1.1
+
semver: 6.3.1
+
+
'@babel/helper-create-class-features-plugin@7.28.3(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-annotate-as-pure': 7.27.3
+
'@babel/helper-member-expression-to-functions': 7.27.1
+
'@babel/helper-optimise-call-expression': 7.27.1
+
'@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.4)
+
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
+
'@babel/traverse': 7.28.4
+
semver: 6.3.1
+
transitivePeerDependencies:
+
- supports-color
+
+
'@babel/helper-create-regexp-features-plugin@7.27.1(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-annotate-as-pure': 7.27.3
+
regexpu-core: 6.4.0
+
semver: 6.3.1
+
+
'@babel/helper-define-polyfill-provider@0.6.5(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-compilation-targets': 7.27.2
+
'@babel/helper-plugin-utils': 7.27.1
+
debug: 4.4.3
+
lodash.debounce: 4.0.8
+
resolve: 1.22.10
+
transitivePeerDependencies:
+
- supports-color
+
+
'@babel/helper-globals@7.28.0': {}
+
+
'@babel/helper-member-expression-to-functions@7.27.1':
+
dependencies:
+
'@babel/traverse': 7.28.4
+
'@babel/types': 7.28.4
+
transitivePeerDependencies:
+
- supports-color
+
+
'@babel/helper-module-imports@7.27.1':
+
dependencies:
+
'@babel/traverse': 7.28.4
+
'@babel/types': 7.28.4
+
transitivePeerDependencies:
+
- supports-color
+
+
'@babel/helper-module-transforms@7.28.3(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-module-imports': 7.27.1
+
'@babel/helper-validator-identifier': 7.27.1
+
'@babel/traverse': 7.28.4
+
transitivePeerDependencies:
+
- supports-color
+
+
'@babel/helper-optimise-call-expression@7.27.1':
+
dependencies:
+
'@babel/types': 7.28.4
+
+
'@babel/helper-plugin-utils@7.27.1': {}
+
+
'@babel/helper-remap-async-to-generator@7.27.1(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-annotate-as-pure': 7.27.3
+
'@babel/helper-wrap-function': 7.28.3
+
'@babel/traverse': 7.28.4
+
transitivePeerDependencies:
+
- supports-color
+
+
'@babel/helper-replace-supers@7.27.1(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-member-expression-to-functions': 7.27.1
+
'@babel/helper-optimise-call-expression': 7.27.1
+
'@babel/traverse': 7.28.4
+
transitivePeerDependencies:
+
- supports-color
+
+
'@babel/helper-skip-transparent-expression-wrappers@7.27.1':
+
dependencies:
+
'@babel/traverse': 7.28.4
+
'@babel/types': 7.28.4
+
transitivePeerDependencies:
+
- supports-color
+
+
'@babel/helper-string-parser@7.27.1': {}
+
+
'@babel/helper-validator-identifier@7.27.1': {}
+
+
'@babel/helper-validator-option@7.27.1': {}
+
+
'@babel/helper-wrap-function@7.28.3':
+
dependencies:
+
'@babel/template': 7.27.2
+
'@babel/traverse': 7.28.4
+
'@babel/types': 7.28.4
+
transitivePeerDependencies:
+
- supports-color
+
+
'@babel/helpers@7.28.4':
+
dependencies:
+
'@babel/template': 7.27.2
+
'@babel/types': 7.28.4
+
+
'@babel/parser@7.28.4':
+
dependencies:
+
'@babel/types': 7.28.4
+
+
'@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.27.1(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-plugin-utils': 7.27.1
+
'@babel/traverse': 7.28.4
+
transitivePeerDependencies:
+
- supports-color
+
+
'@babel/plugin-bugfix-safari-class-field-initializer-scope@7.27.1(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-plugin-utils': 7.27.1
+
+
'@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-plugin-utils': 7.27.1
+
+
'@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-plugin-utils': 7.27.1
+
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
+
'@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.28.4)
+
transitivePeerDependencies:
+
- supports-color
+
+
'@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.28.3(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-plugin-utils': 7.27.1
+
'@babel/traverse': 7.28.4
+
transitivePeerDependencies:
+
- supports-color
+
+
'@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
+
'@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-plugin-utils': 7.27.1
+
+
'@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-plugin-utils': 7.27.1
+
+
'@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-plugin-utils': 7.27.1
+
+
'@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-plugin-utils': 7.27.1
+
+
'@babel/plugin-syntax-import-assertions@7.27.1(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-plugin-utils': 7.27.1
+
+
'@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-plugin-utils': 7.27.1
+
+
'@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-plugin-utils': 7.27.1
+
+
'@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-plugin-utils': 7.27.1
+
+
'@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-plugin-utils': 7.27.1
+
+
'@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-plugin-utils': 7.27.1
+
+
'@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-plugin-utils': 7.27.1
+
+
'@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-plugin-utils': 7.27.1
+
+
'@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-plugin-utils': 7.27.1
+
+
'@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-plugin-utils': 7.27.1
+
+
'@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-plugin-utils': 7.27.1
+
+
'@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-plugin-utils': 7.27.1
+
+
'@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-plugin-utils': 7.27.1
+
+
'@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4)
+
'@babel/helper-plugin-utils': 7.27.1
+
+
'@babel/plugin-transform-arrow-functions@7.27.1(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-plugin-utils': 7.27.1
+
+
'@babel/plugin-transform-async-generator-functions@7.28.0(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-plugin-utils': 7.27.1
+
'@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.28.4)
+
'@babel/traverse': 7.28.4
+
transitivePeerDependencies:
+
- supports-color
+
+
'@babel/plugin-transform-async-to-generator@7.27.1(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-module-imports': 7.27.1
+
'@babel/helper-plugin-utils': 7.27.1
+
'@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.28.4)
+
transitivePeerDependencies:
+
- supports-color
+
+
'@babel/plugin-transform-block-scoped-functions@7.27.1(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-plugin-utils': 7.27.1
+
+
'@babel/plugin-transform-block-scoping@7.28.4(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-plugin-utils': 7.27.1
+
+
'@babel/plugin-transform-class-properties@7.27.1(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.4)
+
'@babel/helper-plugin-utils': 7.27.1
+
transitivePeerDependencies:
+
- supports-color
+
+
'@babel/plugin-transform-class-static-block@7.28.3(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.4)
+
'@babel/helper-plugin-utils': 7.27.1
+
transitivePeerDependencies:
+
- supports-color
+
+
'@babel/plugin-transform-classes@7.28.4(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-annotate-as-pure': 7.27.3
+
'@babel/helper-compilation-targets': 7.27.2
+
'@babel/helper-globals': 7.28.0
+
'@babel/helper-plugin-utils': 7.27.1
+
'@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.4)
+
'@babel/traverse': 7.28.4
+
transitivePeerDependencies:
+
- supports-color
+
+
'@babel/plugin-transform-computed-properties@7.27.1(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-plugin-utils': 7.27.1
+
'@babel/template': 7.27.2
+
+
'@babel/plugin-transform-destructuring@7.28.0(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-plugin-utils': 7.27.1
+
'@babel/traverse': 7.28.4
+
transitivePeerDependencies:
+
- supports-color
+
+
'@babel/plugin-transform-dotall-regex@7.27.1(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4)
+
'@babel/helper-plugin-utils': 7.27.1
+
+
'@babel/plugin-transform-duplicate-keys@7.27.1(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-plugin-utils': 7.27.1
+
+
'@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.27.1(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4)
+
'@babel/helper-plugin-utils': 7.27.1
+
+
'@babel/plugin-transform-dynamic-import@7.27.1(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-plugin-utils': 7.27.1
+
+
'@babel/plugin-transform-explicit-resource-management@7.28.0(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-plugin-utils': 7.27.1
+
'@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.28.4)
+
transitivePeerDependencies:
+
- supports-color
+
+
'@babel/plugin-transform-exponentiation-operator@7.27.1(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-plugin-utils': 7.27.1
+
+
'@babel/plugin-transform-export-namespace-from@7.27.1(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-plugin-utils': 7.27.1
+
+
'@babel/plugin-transform-for-of@7.27.1(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-plugin-utils': 7.27.1
+
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
+
transitivePeerDependencies:
+
- supports-color
+
+
'@babel/plugin-transform-function-name@7.27.1(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-compilation-targets': 7.27.2
+
'@babel/helper-plugin-utils': 7.27.1
+
'@babel/traverse': 7.28.4
+
transitivePeerDependencies:
+
- supports-color
+
+
'@babel/plugin-transform-json-strings@7.27.1(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-plugin-utils': 7.27.1
+
+
'@babel/plugin-transform-literals@7.27.1(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-plugin-utils': 7.27.1
+
+
'@babel/plugin-transform-logical-assignment-operators@7.27.1(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-plugin-utils': 7.27.1
+
+
'@babel/plugin-transform-member-expression-literals@7.27.1(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-plugin-utils': 7.27.1
+
+
'@babel/plugin-transform-modules-amd@7.27.1(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.4)
+
'@babel/helper-plugin-utils': 7.27.1
+
transitivePeerDependencies:
+
- supports-color
+
+
'@babel/plugin-transform-modules-commonjs@7.27.1(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.4)
+
'@babel/helper-plugin-utils': 7.27.1
+
transitivePeerDependencies:
+
- supports-color
+
+
'@babel/plugin-transform-modules-systemjs@7.27.1(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.4)
+
'@babel/helper-plugin-utils': 7.27.1
+
'@babel/helper-validator-identifier': 7.27.1
+
'@babel/traverse': 7.28.4
+
transitivePeerDependencies:
+
- supports-color
+
+
'@babel/plugin-transform-modules-umd@7.27.1(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.4)
+
'@babel/helper-plugin-utils': 7.27.1
+
transitivePeerDependencies:
+
- supports-color
+
+
'@babel/plugin-transform-named-capturing-groups-regex@7.27.1(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4)
+
'@babel/helper-plugin-utils': 7.27.1
+
+
'@babel/plugin-transform-new-target@7.27.1(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-plugin-utils': 7.27.1
+
+
'@babel/plugin-transform-nullish-coalescing-operator@7.27.1(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-plugin-utils': 7.27.1
+
+
'@babel/plugin-transform-numeric-separator@7.27.1(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-plugin-utils': 7.27.1
+
+
'@babel/plugin-transform-object-rest-spread@7.28.4(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-compilation-targets': 7.27.2
+
'@babel/helper-plugin-utils': 7.27.1
+
'@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.28.4)
+
'@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.28.4)
+
'@babel/traverse': 7.28.4
+
transitivePeerDependencies:
+
- supports-color
+
+
'@babel/plugin-transform-object-super@7.27.1(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-plugin-utils': 7.27.1
+
'@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.4)
+
transitivePeerDependencies:
+
- supports-color
+
+
'@babel/plugin-transform-optional-catch-binding@7.27.1(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-plugin-utils': 7.27.1
+
+
'@babel/plugin-transform-optional-chaining@7.27.1(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-plugin-utils': 7.27.1
+
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
+
transitivePeerDependencies:
+
- supports-color
+
+
'@babel/plugin-transform-parameters@7.27.7(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-plugin-utils': 7.27.1
+
+
'@babel/plugin-transform-private-methods@7.27.1(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.4)
+
'@babel/helper-plugin-utils': 7.27.1
+
transitivePeerDependencies:
+
- supports-color
+
+
'@babel/plugin-transform-private-property-in-object@7.27.1(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-annotate-as-pure': 7.27.3
+
'@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.4)
+
'@babel/helper-plugin-utils': 7.27.1
+
transitivePeerDependencies:
+
- supports-color
+
+
'@babel/plugin-transform-property-literals@7.27.1(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-plugin-utils': 7.27.1
+
+
'@babel/plugin-transform-regenerator@7.28.4(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-plugin-utils': 7.27.1
+
+
'@babel/plugin-transform-regexp-modifiers@7.27.1(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4)
+
'@babel/helper-plugin-utils': 7.27.1
+
+
'@babel/plugin-transform-reserved-words@7.27.1(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-plugin-utils': 7.27.1
+
+
'@babel/plugin-transform-shorthand-properties@7.27.1(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-plugin-utils': 7.27.1
+
+
'@babel/plugin-transform-spread@7.27.1(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-plugin-utils': 7.27.1
+
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
+
transitivePeerDependencies:
+
- supports-color
+
+
'@babel/plugin-transform-sticky-regex@7.27.1(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-plugin-utils': 7.27.1
+
+
'@babel/plugin-transform-template-literals@7.27.1(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-plugin-utils': 7.27.1
+
+
'@babel/plugin-transform-typeof-symbol@7.27.1(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-plugin-utils': 7.27.1
+
+
'@babel/plugin-transform-unicode-escapes@7.27.1(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-plugin-utils': 7.27.1
+
+
'@babel/plugin-transform-unicode-property-regex@7.27.1(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4)
+
'@babel/helper-plugin-utils': 7.27.1
+
+
'@babel/plugin-transform-unicode-regex@7.27.1(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4)
+
'@babel/helper-plugin-utils': 7.27.1
+
+
'@babel/plugin-transform-unicode-sets-regex@7.27.1(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4)
+
'@babel/helper-plugin-utils': 7.27.1
+
+
'@babel/preset-env@7.28.3(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/compat-data': 7.28.4
+
'@babel/core': 7.28.4
+
'@babel/helper-compilation-targets': 7.27.2
+
'@babel/helper-plugin-utils': 7.27.1
+
'@babel/helper-validator-option': 7.27.1
+
'@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.27.1(@babel/core@7.28.4)
+
'@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.27.1(@babel/core@7.28.4)
+
'@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.27.1(@babel/core@7.28.4)
+
'@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.27.1(@babel/core@7.28.4)
+
'@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.28.3(@babel/core@7.28.4)
+
'@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.28.4)
+
'@babel/plugin-syntax-import-assertions': 7.27.1(@babel/core@7.28.4)
+
'@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.28.4)
+
'@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.28.4)
+
'@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.28.4)
+
'@babel/plugin-transform-async-generator-functions': 7.28.0(@babel/core@7.28.4)
+
'@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.28.4)
+
'@babel/plugin-transform-block-scoped-functions': 7.27.1(@babel/core@7.28.4)
+
'@babel/plugin-transform-block-scoping': 7.28.4(@babel/core@7.28.4)
+
'@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.28.4)
+
'@babel/plugin-transform-class-static-block': 7.28.3(@babel/core@7.28.4)
+
'@babel/plugin-transform-classes': 7.28.4(@babel/core@7.28.4)
+
'@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.28.4)
+
'@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.28.4)
+
'@babel/plugin-transform-dotall-regex': 7.27.1(@babel/core@7.28.4)
+
'@babel/plugin-transform-duplicate-keys': 7.27.1(@babel/core@7.28.4)
+
'@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.27.1(@babel/core@7.28.4)
+
'@babel/plugin-transform-dynamic-import': 7.27.1(@babel/core@7.28.4)
+
'@babel/plugin-transform-explicit-resource-management': 7.28.0(@babel/core@7.28.4)
+
'@babel/plugin-transform-exponentiation-operator': 7.27.1(@babel/core@7.28.4)
+
'@babel/plugin-transform-export-namespace-from': 7.27.1(@babel/core@7.28.4)
+
'@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.28.4)
+
'@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.28.4)
+
'@babel/plugin-transform-json-strings': 7.27.1(@babel/core@7.28.4)
+
'@babel/plugin-transform-literals': 7.27.1(@babel/core@7.28.4)
+
'@babel/plugin-transform-logical-assignment-operators': 7.27.1(@babel/core@7.28.4)
+
'@babel/plugin-transform-member-expression-literals': 7.27.1(@babel/core@7.28.4)
+
'@babel/plugin-transform-modules-amd': 7.27.1(@babel/core@7.28.4)
+
'@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.28.4)
+
'@babel/plugin-transform-modules-systemjs': 7.27.1(@babel/core@7.28.4)
+
'@babel/plugin-transform-modules-umd': 7.27.1(@babel/core@7.28.4)
+
'@babel/plugin-transform-named-capturing-groups-regex': 7.27.1(@babel/core@7.28.4)
+
'@babel/plugin-transform-new-target': 7.27.1(@babel/core@7.28.4)
+
'@babel/plugin-transform-nullish-coalescing-operator': 7.27.1(@babel/core@7.28.4)
+
'@babel/plugin-transform-numeric-separator': 7.27.1(@babel/core@7.28.4)
+
'@babel/plugin-transform-object-rest-spread': 7.28.4(@babel/core@7.28.4)
+
'@babel/plugin-transform-object-super': 7.27.1(@babel/core@7.28.4)
+
'@babel/plugin-transform-optional-catch-binding': 7.27.1(@babel/core@7.28.4)
+
'@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.28.4)
+
'@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.28.4)
+
'@babel/plugin-transform-private-methods': 7.27.1(@babel/core@7.28.4)
+
'@babel/plugin-transform-private-property-in-object': 7.27.1(@babel/core@7.28.4)
+
'@babel/plugin-transform-property-literals': 7.27.1(@babel/core@7.28.4)
+
'@babel/plugin-transform-regenerator': 7.28.4(@babel/core@7.28.4)
+
'@babel/plugin-transform-regexp-modifiers': 7.27.1(@babel/core@7.28.4)
+
'@babel/plugin-transform-reserved-words': 7.27.1(@babel/core@7.28.4)
+
'@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.28.4)
+
'@babel/plugin-transform-spread': 7.27.1(@babel/core@7.28.4)
+
'@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.28.4)
+
'@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.28.4)
+
'@babel/plugin-transform-typeof-symbol': 7.27.1(@babel/core@7.28.4)
+
'@babel/plugin-transform-unicode-escapes': 7.27.1(@babel/core@7.28.4)
+
'@babel/plugin-transform-unicode-property-regex': 7.27.1(@babel/core@7.28.4)
+
'@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.28.4)
+
'@babel/plugin-transform-unicode-sets-regex': 7.27.1(@babel/core@7.28.4)
+
'@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.28.4)
+
babel-plugin-polyfill-corejs2: 0.4.14(@babel/core@7.28.4)
+
babel-plugin-polyfill-corejs3: 0.13.0(@babel/core@7.28.4)
+
babel-plugin-polyfill-regenerator: 0.6.5(@babel/core@7.28.4)
+
core-js-compat: 3.45.1
+
semver: 6.3.1
+
transitivePeerDependencies:
+
- supports-color
+
+
'@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.28.4)':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-plugin-utils': 7.27.1
+
'@babel/types': 7.28.4
+
esutils: 2.0.3
+
+
'@babel/template@7.27.2':
+
dependencies:
+
'@babel/code-frame': 7.27.1
+
'@babel/parser': 7.28.4
+
'@babel/types': 7.28.4
+
+
'@babel/traverse@7.28.4':
+
dependencies:
+
'@babel/code-frame': 7.27.1
+
'@babel/generator': 7.28.3
+
'@babel/helper-globals': 7.28.0
+
'@babel/parser': 7.28.4
+
'@babel/template': 7.27.2
+
'@babel/types': 7.28.4
+
debug: 4.4.3
+
transitivePeerDependencies:
+
- supports-color
+
+
'@babel/types@7.28.4':
+
dependencies:
+
'@babel/helper-string-parser': 7.27.1
+
'@babel/helper-validator-identifier': 7.27.1
+
+
'@bcoe/v8-coverage@0.2.3': {}
+
+
'@cbor-extract/cbor-extract-darwin-arm64@2.2.0':
+
optional: true
+
+
'@cbor-extract/cbor-extract-darwin-x64@2.2.0':
+
optional: true
+
+
'@cbor-extract/cbor-extract-linux-arm64@2.2.0':
+
optional: true
+
+
'@cbor-extract/cbor-extract-linux-arm@2.2.0':
+
optional: true
+
+
'@cbor-extract/cbor-extract-linux-x64@2.2.0':
+
optional: true
+
+
'@cbor-extract/cbor-extract-win32-x64@2.2.0':
+
optional: true
+
+
'@cspotcode/source-map-support@0.8.1':
+
dependencies:
+
'@jridgewell/trace-mapping': 0.3.9
+
+
'@did-plc/lib@0.0.4':
+
dependencies:
+
'@atproto/common': 0.1.1
+
'@atproto/crypto': 0.1.0
+
'@ipld/dag-cbor': 7.0.3
+
axios: 1.12.2
+
multiformats: 9.9.0
+
uint8arrays: 3.0.0
+
zod: 3.25.76
+
transitivePeerDependencies:
+
- debug
+
+
'@esbuild/linux-loong64@0.14.54':
+
optional: true
+
+
'@eslint-community/eslint-utils@4.9.0(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.3
+
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': {}
+
+
'@gar/promisify@1.1.3': {}
+
+
'@humanwhocodes/config-array@0.13.0':
+
dependencies:
+
'@humanwhocodes/object-schema': 2.0.3
+
debug: 4.4.3
+
minimatch: 3.1.2
+
transitivePeerDependencies:
+
- supports-color
+
+
'@humanwhocodes/module-importer@1.0.1': {}
+
+
'@humanwhocodes/object-schema@2.0.3': {}
+
+
'@hutson/parse-repository-url@3.0.2': {}
+
+
'@ipld/dag-cbor@7.0.3':
+
dependencies:
+
cborg: 1.10.2
+
multiformats: 9.9.0
+
+
'@isaacs/cliui@8.0.2':
+
dependencies:
+
string-width: 5.1.2
+
string-width-cjs: string-width@4.2.3
+
strip-ansi: 7.1.2
+
strip-ansi-cjs: strip-ansi@6.0.1
+
wrap-ansi: 8.1.0
+
wrap-ansi-cjs: wrap-ansi@7.0.0
+
+
'@istanbuljs/load-nyc-config@1.1.0':
+
dependencies:
+
camelcase: 5.3.1
+
find-up: 4.1.0
+
get-package-type: 0.1.0
+
js-yaml: 3.14.1
+
resolve-from: 5.0.0
+
+
'@istanbuljs/schema@0.1.3': {}
+
+
'@jest/console@28.1.3':
+
dependencies:
+
'@jest/types': 28.1.3
+
'@types/node': 18.19.127
+
chalk: 4.1.2
+
jest-message-util: 28.1.3
+
jest-util: 28.1.3
+
slash: 3.0.0
+
+
'@jest/core@28.1.3(ts-node@10.9.2(@types/node@18.19.127)(typescript@4.9.5))':
+
dependencies:
+
'@jest/console': 28.1.3
+
'@jest/reporters': 28.1.3
+
'@jest/test-result': 28.1.3
+
'@jest/transform': 28.1.3
+
'@jest/types': 28.1.3
+
'@types/node': 18.19.127
+
ansi-escapes: 4.3.2
+
chalk: 4.1.2
+
ci-info: 3.9.0
+
exit: 0.1.2
+
graceful-fs: 4.2.11
+
jest-changed-files: 28.1.3
+
jest-config: 28.1.3(@types/node@18.19.127)(ts-node@10.9.2(@types/node@18.19.127)(typescript@4.9.5))
+
jest-haste-map: 28.1.3
+
jest-message-util: 28.1.3
+
jest-regex-util: 28.0.2
+
jest-resolve: 28.1.3
+
jest-resolve-dependencies: 28.1.3
+
jest-runner: 28.1.3
+
jest-runtime: 28.1.3
+
jest-snapshot: 28.1.3
+
jest-util: 28.1.3
+
jest-validate: 28.1.3
+
jest-watcher: 28.1.3
+
micromatch: 4.0.8
+
pretty-format: 28.1.3
+
rimraf: 3.0.2
+
slash: 3.0.0
+
strip-ansi: 6.0.1
+
transitivePeerDependencies:
+
- supports-color
+
- ts-node
+
+
'@jest/environment@28.1.3':
+
dependencies:
+
'@jest/fake-timers': 28.1.3
+
'@jest/types': 28.1.3
+
'@types/node': 18.19.127
+
jest-mock: 28.1.3
+
+
'@jest/expect-utils@28.1.3':
+
dependencies:
+
jest-get-type: 28.0.2
+
+
'@jest/expect@28.1.3':
+
dependencies:
+
expect: 28.1.3
+
jest-snapshot: 28.1.3
+
transitivePeerDependencies:
+
- supports-color
+
+
'@jest/fake-timers@28.1.3':
+
dependencies:
+
'@jest/types': 28.1.3
+
'@sinonjs/fake-timers': 9.1.2
+
'@types/node': 18.19.127
+
jest-message-util: 28.1.3
+
jest-mock: 28.1.3
+
jest-util: 28.1.3
+
+
'@jest/globals@28.1.3':
+
dependencies:
+
'@jest/environment': 28.1.3
+
'@jest/expect': 28.1.3
+
'@jest/types': 28.1.3
+
transitivePeerDependencies:
+
- supports-color
+
+
'@jest/reporters@28.1.3':
+
dependencies:
+
'@bcoe/v8-coverage': 0.2.3
+
'@jest/console': 28.1.3
+
'@jest/test-result': 28.1.3
+
'@jest/transform': 28.1.3
+
'@jest/types': 28.1.3
+
'@jridgewell/trace-mapping': 0.3.31
+
'@types/node': 18.19.127
+
chalk: 4.1.2
+
collect-v8-coverage: 1.0.2
+
exit: 0.1.2
+
glob: 7.2.3
+
graceful-fs: 4.2.11
+
istanbul-lib-coverage: 3.2.2
+
istanbul-lib-instrument: 5.2.1
+
istanbul-lib-report: 3.0.1
+
istanbul-lib-source-maps: 4.0.1
+
istanbul-reports: 3.2.0
+
jest-message-util: 28.1.3
+
jest-util: 28.1.3
+
jest-worker: 28.1.3
+
slash: 3.0.0
+
string-length: 4.0.2
+
strip-ansi: 6.0.1
+
terminal-link: 2.1.1
+
v8-to-istanbul: 9.3.0
+
transitivePeerDependencies:
+
- supports-color
+
+
'@jest/schemas@28.1.3':
+
dependencies:
+
'@sinclair/typebox': 0.24.51
+
+
'@jest/source-map@28.1.2':
+
dependencies:
+
'@jridgewell/trace-mapping': 0.3.31
+
callsites: 3.1.0
+
graceful-fs: 4.2.11
+
+
'@jest/test-result@28.1.3':
+
dependencies:
+
'@jest/console': 28.1.3
+
'@jest/types': 28.1.3
+
'@types/istanbul-lib-coverage': 2.0.6
+
collect-v8-coverage: 1.0.2
+
+
'@jest/test-sequencer@28.1.3':
+
dependencies:
+
'@jest/test-result': 28.1.3
+
graceful-fs: 4.2.11
+
jest-haste-map: 28.1.3
+
slash: 3.0.0
+
+
'@jest/transform@28.1.3':
+
dependencies:
+
'@babel/core': 7.28.4
+
'@jest/types': 28.1.3
+
'@jridgewell/trace-mapping': 0.3.31
+
babel-plugin-istanbul: 6.1.1
+
chalk: 4.1.2
+
convert-source-map: 1.9.0
+
fast-json-stable-stringify: 2.1.0
+
graceful-fs: 4.2.11
+
jest-haste-map: 28.1.3
+
jest-regex-util: 28.0.2
+
jest-util: 28.1.3
+
micromatch: 4.0.8
+
pirates: 4.0.7
+
slash: 3.0.0
+
write-file-atomic: 4.0.2
+
transitivePeerDependencies:
+
- supports-color
+
+
'@jest/types@28.1.3':
+
dependencies:
+
'@jest/schemas': 28.1.3
+
'@types/istanbul-lib-coverage': 2.0.6
+
'@types/istanbul-reports': 3.0.4
+
'@types/node': 18.19.127
+
'@types/yargs': 17.0.33
+
chalk: 4.1.2
+
+
'@jridgewell/gen-mapping@0.3.13':
+
dependencies:
+
'@jridgewell/sourcemap-codec': 1.5.5
+
'@jridgewell/trace-mapping': 0.3.31
+
+
'@jridgewell/remapping@2.3.5':
+
dependencies:
+
'@jridgewell/gen-mapping': 0.3.13
+
'@jridgewell/trace-mapping': 0.3.31
+
+
'@jridgewell/resolve-uri@3.1.2': {}
+
+
'@jridgewell/sourcemap-codec@1.5.5': {}
+
+
'@jridgewell/trace-mapping@0.3.31':
+
dependencies:
+
'@jridgewell/resolve-uri': 3.1.2
+
'@jridgewell/sourcemap-codec': 1.5.5
+
+
'@jridgewell/trace-mapping@0.3.9':
+
dependencies:
+
'@jridgewell/resolve-uri': 3.1.2
+
'@jridgewell/sourcemap-codec': 1.5.5
+
+
'@lerna/add@4.0.0':
+
dependencies:
+
'@lerna/bootstrap': 4.0.0
+
'@lerna/command': 4.0.0
+
'@lerna/filter-options': 4.0.0
+
'@lerna/npm-conf': 4.0.0
+
'@lerna/validation-error': 4.0.0
+
dedent: 0.7.0
+
npm-package-arg: 8.1.5
+
p-map: 4.0.0
+
pacote: 11.3.5
+
semver: 7.7.2
+
transitivePeerDependencies:
+
- bluebird
+
- supports-color
+
+
'@lerna/bootstrap@4.0.0':
+
dependencies:
+
'@lerna/command': 4.0.0
+
'@lerna/filter-options': 4.0.0
+
'@lerna/has-npm-version': 4.0.0
+
'@lerna/npm-install': 4.0.0
+
'@lerna/package-graph': 4.0.0
+
'@lerna/pulse-till-done': 4.0.0
+
'@lerna/rimraf-dir': 4.0.0
+
'@lerna/run-lifecycle': 4.0.0
+
'@lerna/run-topologically': 4.0.0
+
'@lerna/symlink-binary': 4.0.0
+
'@lerna/symlink-dependencies': 4.0.0
+
'@lerna/validation-error': 4.0.0
+
dedent: 0.7.0
+
get-port: 5.1.1
+
multimatch: 5.0.0
+
npm-package-arg: 8.1.5
+
npmlog: 4.1.2
+
p-map: 4.0.0
+
p-map-series: 2.1.0
+
p-waterfall: 2.1.1
+
read-package-tree: 5.3.1
+
semver: 7.7.2
+
+
'@lerna/changed@4.0.0':
+
dependencies:
+
'@lerna/collect-updates': 4.0.0
+
'@lerna/command': 4.0.0
+
'@lerna/listable': 4.0.0
+
'@lerna/output': 4.0.0
+
+
'@lerna/check-working-tree@4.0.0':
+
dependencies:
+
'@lerna/collect-uncommitted': 4.0.0
+
'@lerna/describe-ref': 4.0.0
+
'@lerna/validation-error': 4.0.0
+
+
'@lerna/child-process@4.0.0':
+
dependencies:
+
chalk: 4.1.2
+
execa: 5.1.1
+
strong-log-transformer: 2.1.0
+
+
'@lerna/clean@4.0.0':
+
dependencies:
+
'@lerna/command': 4.0.0
+
'@lerna/filter-options': 4.0.0
+
'@lerna/prompt': 4.0.0
+
'@lerna/pulse-till-done': 4.0.0
+
'@lerna/rimraf-dir': 4.0.0
+
p-map: 4.0.0
+
p-map-series: 2.1.0
+
p-waterfall: 2.1.1
+
+
'@lerna/cli@4.0.0':
+
dependencies:
+
'@lerna/global-options': 4.0.0
+
dedent: 0.7.0
+
npmlog: 4.1.2
+
yargs: 16.2.0
+
+
'@lerna/collect-uncommitted@4.0.0':
+
dependencies:
+
'@lerna/child-process': 4.0.0
+
chalk: 4.1.2
+
npmlog: 4.1.2
+
+
'@lerna/collect-updates@4.0.0':
+
dependencies:
+
'@lerna/child-process': 4.0.0
+
'@lerna/describe-ref': 4.0.0
+
minimatch: 3.1.2
+
npmlog: 4.1.2
+
slash: 3.0.0
+
+
'@lerna/command@4.0.0':
+
dependencies:
+
'@lerna/child-process': 4.0.0
+
'@lerna/package-graph': 4.0.0
+
'@lerna/project': 4.0.0
+
'@lerna/validation-error': 4.0.0
+
'@lerna/write-log-file': 4.0.0
+
clone-deep: 4.0.1
+
dedent: 0.7.0
+
execa: 5.1.1
+
is-ci: 2.0.0
+
npmlog: 4.1.2
+
+
'@lerna/conventional-commits@4.0.0':
+
dependencies:
+
'@lerna/validation-error': 4.0.0
+
conventional-changelog-angular: 5.0.13
+
conventional-changelog-core: 4.2.4
+
conventional-recommended-bump: 6.1.0
+
fs-extra: 9.1.0
+
get-stream: 6.0.1
+
lodash.template: 4.5.0
+
npm-package-arg: 8.1.5
+
npmlog: 4.1.2
+
pify: 5.0.0
+
semver: 7.7.2
+
+
'@lerna/create-symlink@4.0.0':
+
dependencies:
+
cmd-shim: 4.1.0
+
fs-extra: 9.1.0
+
npmlog: 4.1.2
+
+
'@lerna/create@4.0.0':
+
dependencies:
+
'@lerna/child-process': 4.0.0
+
'@lerna/command': 4.0.0
+
'@lerna/npm-conf': 4.0.0
+
'@lerna/validation-error': 4.0.0
+
dedent: 0.7.0
+
fs-extra: 9.1.0
+
globby: 11.1.0
+
init-package-json: 2.0.5
+
npm-package-arg: 8.1.5
+
p-reduce: 2.1.0
+
pacote: 11.3.5
+
pify: 5.0.0
+
semver: 7.7.2
+
slash: 3.0.0
+
validate-npm-package-license: 3.0.4
+
validate-npm-package-name: 3.0.0
+
whatwg-url: 8.7.0
+
yargs-parser: 20.2.4
+
transitivePeerDependencies:
+
- bluebird
+
- supports-color
+
+
'@lerna/describe-ref@4.0.0':
+
dependencies:
+
'@lerna/child-process': 4.0.0
+
npmlog: 4.1.2
+
+
'@lerna/diff@4.0.0':
+
dependencies:
+
'@lerna/child-process': 4.0.0
+
'@lerna/command': 4.0.0
+
'@lerna/validation-error': 4.0.0
+
npmlog: 4.1.2
+
+
'@lerna/exec@4.0.0':
+
dependencies:
+
'@lerna/child-process': 4.0.0
+
'@lerna/command': 4.0.0
+
'@lerna/filter-options': 4.0.0
+
'@lerna/profiler': 4.0.0
+
'@lerna/run-topologically': 4.0.0
+
'@lerna/validation-error': 4.0.0
+
p-map: 4.0.0
+
+
'@lerna/filter-options@4.0.0':
+
dependencies:
+
'@lerna/collect-updates': 4.0.0
+
'@lerna/filter-packages': 4.0.0
+
dedent: 0.7.0
+
npmlog: 4.1.2
+
+
'@lerna/filter-packages@4.0.0':
+
dependencies:
+
'@lerna/validation-error': 4.0.0
+
multimatch: 5.0.0
+
npmlog: 4.1.2
+
+
'@lerna/get-npm-exec-opts@4.0.0':
+
dependencies:
+
npmlog: 4.1.2
+
+
'@lerna/get-packed@4.0.0':
+
dependencies:
+
fs-extra: 9.1.0
+
ssri: 8.0.1
+
tar: 6.2.1
+
+
'@lerna/github-client@4.0.0(encoding@0.1.13)':
+
dependencies:
+
'@lerna/child-process': 4.0.0
+
'@octokit/plugin-enterprise-rest': 6.0.1
+
'@octokit/rest': 18.12.0(encoding@0.1.13)
+
git-url-parse: 11.6.0
+
npmlog: 4.1.2
+
transitivePeerDependencies:
+
- encoding
+
+
'@lerna/gitlab-client@4.0.0(encoding@0.1.13)':
+
dependencies:
+
node-fetch: 2.7.0(encoding@0.1.13)
+
npmlog: 4.1.2
+
whatwg-url: 8.7.0
+
transitivePeerDependencies:
+
- encoding
+
+
'@lerna/global-options@4.0.0': {}
+
+
'@lerna/has-npm-version@4.0.0':
+
dependencies:
+
'@lerna/child-process': 4.0.0
+
semver: 7.7.2
+
+
'@lerna/import@4.0.0':
+
dependencies:
+
'@lerna/child-process': 4.0.0
+
'@lerna/command': 4.0.0
+
'@lerna/prompt': 4.0.0
+
'@lerna/pulse-till-done': 4.0.0
+
'@lerna/validation-error': 4.0.0
+
dedent: 0.7.0
+
fs-extra: 9.1.0
+
p-map-series: 2.1.0
+
+
'@lerna/info@4.0.0':
+
dependencies:
+
'@lerna/command': 4.0.0
+
'@lerna/output': 4.0.0
+
envinfo: 7.14.0
+
+
'@lerna/init@4.0.0':
+
dependencies:
+
'@lerna/child-process': 4.0.0
+
'@lerna/command': 4.0.0
+
fs-extra: 9.1.0
+
p-map: 4.0.0
+
write-json-file: 4.3.0
+
+
'@lerna/link@4.0.0':
+
dependencies:
+
'@lerna/command': 4.0.0
+
'@lerna/package-graph': 4.0.0
+
'@lerna/symlink-dependencies': 4.0.0
+
p-map: 4.0.0
+
slash: 3.0.0
+
+
'@lerna/list@4.0.0':
+
dependencies:
+
'@lerna/command': 4.0.0
+
'@lerna/filter-options': 4.0.0
+
'@lerna/listable': 4.0.0
+
'@lerna/output': 4.0.0
+
+
'@lerna/listable@4.0.0':
+
dependencies:
+
'@lerna/query-graph': 4.0.0
+
chalk: 4.1.2
+
columnify: 1.6.0
+
+
'@lerna/log-packed@4.0.0':
+
dependencies:
+
byte-size: 7.0.1
+
columnify: 1.6.0
+
has-unicode: 2.0.1
+
npmlog: 4.1.2
+
+
'@lerna/npm-conf@4.0.0':
+
dependencies:
+
config-chain: 1.1.13
+
pify: 5.0.0
+
+
'@lerna/npm-dist-tag@4.0.0':
+
dependencies:
+
'@lerna/otplease': 4.0.0
+
npm-package-arg: 8.1.5
+
npm-registry-fetch: 9.0.0
+
npmlog: 4.1.2
+
transitivePeerDependencies:
+
- bluebird
+
- supports-color
+
+
'@lerna/npm-install@4.0.0':
+
dependencies:
+
'@lerna/child-process': 4.0.0
+
'@lerna/get-npm-exec-opts': 4.0.0
+
fs-extra: 9.1.0
+
npm-package-arg: 8.1.5
+
npmlog: 4.1.2
+
signal-exit: 3.0.7
+
write-pkg: 4.0.0
+
+
'@lerna/npm-publish@4.0.0':
+
dependencies:
+
'@lerna/otplease': 4.0.0
+
'@lerna/run-lifecycle': 4.0.0
+
fs-extra: 9.1.0
+
libnpmpublish: 4.0.2
+
npm-package-arg: 8.1.5
+
npmlog: 4.1.2
+
pify: 5.0.0
+
read-package-json: 3.0.1
+
transitivePeerDependencies:
+
- bluebird
+
- supports-color
+
+
'@lerna/npm-run-script@4.0.0':
+
dependencies:
+
'@lerna/child-process': 4.0.0
+
'@lerna/get-npm-exec-opts': 4.0.0
+
npmlog: 4.1.2
+
+
'@lerna/otplease@4.0.0':
+
dependencies:
+
'@lerna/prompt': 4.0.0
+
+
'@lerna/output@4.0.0':
+
dependencies:
+
npmlog: 4.1.2
+
+
'@lerna/pack-directory@4.0.0':
+
dependencies:
+
'@lerna/get-packed': 4.0.0
+
'@lerna/package': 4.0.0
+
'@lerna/run-lifecycle': 4.0.0
+
npm-packlist: 2.2.2
+
npmlog: 4.1.2
+
tar: 6.2.1
+
temp-write: 4.0.0
+
+
'@lerna/package-graph@4.0.0':
+
dependencies:
+
'@lerna/prerelease-id-from-version': 4.0.0
+
'@lerna/validation-error': 4.0.0
+
npm-package-arg: 8.1.5
+
npmlog: 4.1.2
+
semver: 7.7.2
+
+
'@lerna/package@4.0.0':
+
dependencies:
+
load-json-file: 6.2.0
+
npm-package-arg: 8.1.5
+
write-pkg: 4.0.0
+
+
'@lerna/prerelease-id-from-version@4.0.0':
+
dependencies:
+
semver: 7.7.2
+
+
'@lerna/profiler@4.0.0':
+
dependencies:
+
fs-extra: 9.1.0
+
npmlog: 4.1.2
+
upath: 2.0.1
+
+
'@lerna/project@4.0.0':
+
dependencies:
+
'@lerna/package': 4.0.0
+
'@lerna/validation-error': 4.0.0
+
cosmiconfig: 7.1.0
+
dedent: 0.7.0
+
dot-prop: 6.0.1
+
glob-parent: 5.1.2
+
globby: 11.1.0
+
load-json-file: 6.2.0
+
npmlog: 4.1.2
+
p-map: 4.0.0
+
resolve-from: 5.0.0
+
write-json-file: 4.3.0
+
+
'@lerna/prompt@4.0.0':
+
dependencies:
+
inquirer: 7.3.3
+
npmlog: 4.1.2
+
+
'@lerna/publish@4.0.0(encoding@0.1.13)':
+
dependencies:
+
'@lerna/check-working-tree': 4.0.0
+
'@lerna/child-process': 4.0.0
+
'@lerna/collect-updates': 4.0.0
+
'@lerna/command': 4.0.0
+
'@lerna/describe-ref': 4.0.0
+
'@lerna/log-packed': 4.0.0
+
'@lerna/npm-conf': 4.0.0
+
'@lerna/npm-dist-tag': 4.0.0
+
'@lerna/npm-publish': 4.0.0
+
'@lerna/otplease': 4.0.0
+
'@lerna/output': 4.0.0
+
'@lerna/pack-directory': 4.0.0
+
'@lerna/prerelease-id-from-version': 4.0.0
+
'@lerna/prompt': 4.0.0
+
'@lerna/pulse-till-done': 4.0.0
+
'@lerna/run-lifecycle': 4.0.0
+
'@lerna/run-topologically': 4.0.0
+
'@lerna/validation-error': 4.0.0
+
'@lerna/version': 4.0.0(encoding@0.1.13)
+
fs-extra: 9.1.0
+
libnpmaccess: 4.0.3
+
npm-package-arg: 8.1.5
+
npm-registry-fetch: 9.0.0
+
npmlog: 4.1.2
+
p-map: 4.0.0
+
p-pipe: 3.1.0
+
pacote: 11.3.5
+
semver: 7.7.2
+
transitivePeerDependencies:
+
- bluebird
+
- encoding
+
- supports-color
+
+
'@lerna/pulse-till-done@4.0.0':
+
dependencies:
+
npmlog: 4.1.2
+
+
'@lerna/query-graph@4.0.0':
+
dependencies:
+
'@lerna/package-graph': 4.0.0
+
+
'@lerna/resolve-symlink@4.0.0':
+
dependencies:
+
fs-extra: 9.1.0
+
npmlog: 4.1.2
+
read-cmd-shim: 2.0.0
+
+
'@lerna/rimraf-dir@4.0.0':
+
dependencies:
+
'@lerna/child-process': 4.0.0
+
npmlog: 4.1.2
+
path-exists: 4.0.0
+
rimraf: 3.0.2
+
+
'@lerna/run-lifecycle@4.0.0':
+
dependencies:
+
'@lerna/npm-conf': 4.0.0
+
npm-lifecycle: 3.1.5
+
npmlog: 4.1.2
+
+
'@lerna/run-topologically@4.0.0':
+
dependencies:
+
'@lerna/query-graph': 4.0.0
+
p-queue: 6.6.2
+
+
'@lerna/run@4.0.0':
+
dependencies:
+
'@lerna/command': 4.0.0
+
'@lerna/filter-options': 4.0.0
+
'@lerna/npm-run-script': 4.0.0
+
'@lerna/output': 4.0.0
+
'@lerna/profiler': 4.0.0
+
'@lerna/run-topologically': 4.0.0
+
'@lerna/timer': 4.0.0
+
'@lerna/validation-error': 4.0.0
+
p-map: 4.0.0
+
+
'@lerna/symlink-binary@4.0.0':
+
dependencies:
+
'@lerna/create-symlink': 4.0.0
+
'@lerna/package': 4.0.0
+
fs-extra: 9.1.0
+
p-map: 4.0.0
+
+
'@lerna/symlink-dependencies@4.0.0':
+
dependencies:
+
'@lerna/create-symlink': 4.0.0
+
'@lerna/resolve-symlink': 4.0.0
+
'@lerna/symlink-binary': 4.0.0
+
fs-extra: 9.1.0
+
p-map: 4.0.0
+
p-map-series: 2.1.0
+
+
'@lerna/timer@4.0.0': {}
+
+
'@lerna/validation-error@4.0.0':
+
dependencies:
+
npmlog: 4.1.2
+
+
'@lerna/version@4.0.0(encoding@0.1.13)':
+
dependencies:
+
'@lerna/check-working-tree': 4.0.0
+
'@lerna/child-process': 4.0.0
+
'@lerna/collect-updates': 4.0.0
+
'@lerna/command': 4.0.0
+
'@lerna/conventional-commits': 4.0.0
+
'@lerna/github-client': 4.0.0(encoding@0.1.13)
+
'@lerna/gitlab-client': 4.0.0(encoding@0.1.13)
+
'@lerna/output': 4.0.0
+
'@lerna/prerelease-id-from-version': 4.0.0
+
'@lerna/prompt': 4.0.0
+
'@lerna/run-lifecycle': 4.0.0
+
'@lerna/run-topologically': 4.0.0
+
'@lerna/validation-error': 4.0.0
+
chalk: 4.1.2
+
dedent: 0.7.0
+
load-json-file: 6.2.0
+
minimatch: 3.1.2
+
npmlog: 4.1.2
+
p-map: 4.0.0
+
p-pipe: 3.1.0
+
p-reduce: 2.1.0
+
p-waterfall: 2.1.1
+
semver: 7.7.2
+
slash: 3.0.0
+
temp-write: 4.0.0
+
write-json-file: 4.3.0
+
transitivePeerDependencies:
+
- encoding
+
+
'@lerna/write-log-file@4.0.0':
+
dependencies:
+
npmlog: 4.1.2
+
write-file-atomic: 3.0.3
+
+
'@noble/curves@1.9.7':
+
dependencies:
+
'@noble/hashes': 1.8.0
+
+
'@noble/hashes@1.8.0': {}
+
+
'@noble/secp256k1@1.7.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
+
+
'@npmcli/ci-detect@1.4.0': {}
+
+
'@npmcli/fs@1.1.1':
+
dependencies:
+
'@gar/promisify': 1.1.3
+
semver: 7.7.2
+
+
'@npmcli/git@2.1.0':
+
dependencies:
+
'@npmcli/promise-spawn': 1.3.2
+
lru-cache: 6.0.0
+
mkdirp: 1.0.4
+
npm-pick-manifest: 6.1.1
+
promise-inflight: 1.0.1
+
promise-retry: 2.0.1
+
semver: 7.7.2
+
which: 2.0.2
+
transitivePeerDependencies:
+
- bluebird
+
+
'@npmcli/git@4.1.0':
+
dependencies:
+
'@npmcli/promise-spawn': 6.0.2
+
lru-cache: 7.18.3
+
npm-pick-manifest: 8.0.2
+
proc-log: 3.0.0
+
promise-inflight: 1.0.1
+
promise-retry: 2.0.1
+
semver: 7.7.2
+
which: 3.0.1
+
transitivePeerDependencies:
+
- bluebird
+
+
'@npmcli/installed-package-contents@1.0.7':
+
dependencies:
+
npm-bundled: 1.1.2
+
npm-normalize-package-bin: 1.0.1
+
+
'@npmcli/move-file@1.1.2':
+
dependencies:
+
mkdirp: 1.0.4
+
rimraf: 3.0.2
+
+
'@npmcli/node-gyp@1.0.3': {}
+
+
'@npmcli/package-json@3.1.1':
+
dependencies:
+
'@npmcli/git': 4.1.0
+
glob: 10.4.5
+
json-parse-even-better-errors: 3.0.2
+
normalize-package-data: 5.0.0
+
npm-normalize-package-bin: 3.0.1
+
proc-log: 3.0.0
+
transitivePeerDependencies:
+
- bluebird
+
+
'@npmcli/promise-spawn@1.3.2':
+
dependencies:
+
infer-owner: 1.0.4
+
+
'@npmcli/promise-spawn@6.0.2':
+
dependencies:
+
which: 3.0.1
+
+
'@npmcli/run-script@1.8.6':
+
dependencies:
+
'@npmcli/node-gyp': 1.0.3
+
'@npmcli/promise-spawn': 1.3.2
+
node-gyp: 7.1.2
+
read-package-json-fast: 2.0.3
+
+
'@octokit/auth-token@2.5.0':
+
dependencies:
+
'@octokit/types': 6.41.0
+
+
'@octokit/core@3.6.0(encoding@0.1.13)':
+
dependencies:
+
'@octokit/auth-token': 2.5.0
+
'@octokit/graphql': 4.8.0(encoding@0.1.13)
+
'@octokit/request': 5.6.3(encoding@0.1.13)
+
'@octokit/request-error': 2.1.0
+
'@octokit/types': 6.41.0
+
before-after-hook: 2.2.3
+
universal-user-agent: 6.0.1
+
transitivePeerDependencies:
+
- encoding
+
+
'@octokit/endpoint@6.0.12':
+
dependencies:
+
'@octokit/types': 6.41.0
+
is-plain-object: 5.0.0
+
universal-user-agent: 6.0.1
+
+
'@octokit/graphql@4.8.0(encoding@0.1.13)':
+
dependencies:
+
'@octokit/request': 5.6.3(encoding@0.1.13)
+
'@octokit/types': 6.41.0
+
universal-user-agent: 6.0.1
+
transitivePeerDependencies:
+
- encoding
+
+
'@octokit/openapi-types@12.11.0': {}
+
+
'@octokit/plugin-enterprise-rest@6.0.1': {}
+
+
'@octokit/plugin-paginate-rest@2.21.3(@octokit/core@3.6.0(encoding@0.1.13))':
+
dependencies:
+
'@octokit/core': 3.6.0(encoding@0.1.13)
+
'@octokit/types': 6.41.0
+
+
'@octokit/plugin-request-log@1.0.4(@octokit/core@3.6.0(encoding@0.1.13))':
+
dependencies:
+
'@octokit/core': 3.6.0(encoding@0.1.13)
+
+
'@octokit/plugin-rest-endpoint-methods@5.16.2(@octokit/core@3.6.0(encoding@0.1.13))':
+
dependencies:
+
'@octokit/core': 3.6.0(encoding@0.1.13)
+
'@octokit/types': 6.41.0
+
deprecation: 2.3.1
+
+
'@octokit/request-error@2.1.0':
+
dependencies:
+
'@octokit/types': 6.41.0
+
deprecation: 2.3.1
+
once: 1.4.0
+
+
'@octokit/request@5.6.3(encoding@0.1.13)':
+
dependencies:
+
'@octokit/endpoint': 6.0.12
+
'@octokit/request-error': 2.1.0
+
'@octokit/types': 6.41.0
+
is-plain-object: 5.0.0
+
node-fetch: 2.7.0(encoding@0.1.13)
+
universal-user-agent: 6.0.1
+
transitivePeerDependencies:
+
- encoding
+
+
'@octokit/rest@18.12.0(encoding@0.1.13)':
+
dependencies:
+
'@octokit/core': 3.6.0(encoding@0.1.13)
+
'@octokit/plugin-paginate-rest': 2.21.3(@octokit/core@3.6.0(encoding@0.1.13))
+
'@octokit/plugin-request-log': 1.0.4(@octokit/core@3.6.0(encoding@0.1.13))
+
'@octokit/plugin-rest-endpoint-methods': 5.16.2(@octokit/core@3.6.0(encoding@0.1.13))
+
transitivePeerDependencies:
+
- encoding
+
+
'@octokit/types@6.41.0':
+
dependencies:
+
'@octokit/openapi-types': 12.11.0
+
+
'@pkgjs/parseargs@0.11.0':
+
optional: true
+
+
'@sinclair/typebox@0.24.51': {}
+
+
'@sinonjs/commons@1.8.6':
+
dependencies:
+
type-detect: 4.0.8
+
+
'@sinonjs/fake-timers@9.1.2':
+
dependencies:
+
'@sinonjs/commons': 1.8.6
+
+
'@tootallnate/once@1.1.2': {}
+
+
'@tsconfig/node10@1.0.11': {}
+
+
'@tsconfig/node12@1.0.11': {}
+
+
'@tsconfig/node14@1.0.3': {}
+
+
'@tsconfig/node16@1.0.4': {}
+
+
'@types/babel__core@7.20.5':
+
dependencies:
+
'@babel/parser': 7.28.4
+
'@babel/types': 7.28.4
+
'@types/babel__generator': 7.27.0
+
'@types/babel__template': 7.4.4
+
'@types/babel__traverse': 7.28.0
+
+
'@types/babel__generator@7.27.0':
+
dependencies:
+
'@babel/types': 7.28.4
+
+
'@types/babel__template@7.4.4':
+
dependencies:
+
'@babel/parser': 7.28.4
+
'@babel/types': 7.28.4
+
+
'@types/babel__traverse@7.28.0':
+
dependencies:
+
'@babel/types': 7.28.4
+
+
'@types/graceful-fs@4.1.9':
+
dependencies:
+
'@types/node': 18.19.127
+
+
'@types/istanbul-lib-coverage@2.0.6': {}
+
+
'@types/istanbul-lib-report@3.0.3':
+
dependencies:
+
'@types/istanbul-lib-coverage': 2.0.6
+
+
'@types/istanbul-reports@3.0.4':
+
dependencies:
+
'@types/istanbul-lib-report': 3.0.3
+
+
'@types/jest@28.1.8':
+
dependencies:
+
expect: 28.1.3
+
pretty-format: 28.1.3
+
+
'@types/json-schema@7.0.15': {}
+
+
'@types/minimatch@3.0.5': {}
+
+
'@types/minimist@1.2.5': {}
+
+
'@types/node@18.19.127':
+
dependencies:
+
undici-types: 5.26.5
+
+
'@types/normalize-package-data@2.4.4': {}
+
+
'@types/parse-json@4.0.2': {}
+
+
'@types/pg@8.15.5':
+
dependencies:
+
'@types/node': 18.19.127
+
pg-protocol: 1.10.3
+
pg-types: 2.2.0
+
+
'@types/prettier@2.7.3': {}
+
+
'@types/semver@7.7.1': {}
+
+
'@types/stack-utils@2.0.3': {}
+
+
'@types/yargs-parser@21.0.3': {}
+
+
'@types/yargs@17.0.33':
+
dependencies:
+
'@types/yargs-parser': 21.0.3
+
+
'@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.3
+
eslint: 8.57.1
+
graphemer: 1.4.0
+
ignore: 5.3.2
+
natural-compare-lite: 1.4.0
+
semver: 7.7.2
+
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.3
+
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.3
+
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.3
+
globby: 11.1.0
+
is-glob: 4.0.3
+
semver: 7.7.2
+
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.9.0(eslint@8.57.1)
+
'@types/json-schema': 7.0.15
+
'@types/semver': 7.7.1
+
'@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.2
+
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': {}
+
+
JSONStream@1.3.5:
+
dependencies:
+
jsonparse: 1.3.1
+
through: 2.3.8
+
+
abbrev@1.1.1: {}
+
+
abort-controller@3.0.0:
+
dependencies:
+
event-target-shim: 5.0.1
+
+
accepts@1.3.8:
+
dependencies:
+
mime-types: 2.1.35
+
negotiator: 0.6.3
+
+
acorn-jsx@5.3.2(acorn@8.15.0):
+
dependencies:
+
acorn: 8.15.0
+
+
acorn-walk@8.3.4:
+
dependencies:
+
acorn: 8.15.0
+
+
acorn@8.15.0: {}
+
+
add-stream@1.0.0: {}
+
+
agent-base@6.0.2:
+
dependencies:
+
debug: 4.4.3
+
transitivePeerDependencies:
+
- supports-color
+
+
agentkeepalive@4.6.0:
+
dependencies:
+
humanize-ms: 1.2.1
+
+
aggregate-error@3.1.0:
+
dependencies:
+
clean-stack: 2.2.0
+
indent-string: 4.0.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-escapes@4.3.2:
+
dependencies:
+
type-fest: 0.21.3
+
+
ansi-regex@2.1.1: {}
+
+
ansi-regex@5.0.1: {}
+
+
ansi-regex@6.2.2: {}
+
+
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.3: {}
+
+
anymatch@3.1.3:
+
dependencies:
+
normalize-path: 3.0.0
+
picomatch: 2.3.1
+
+
aproba@1.2.0: {}
+
+
aproba@2.1.0: {}
+
+
are-we-there-yet@1.1.7:
+
dependencies:
+
delegates: 1.0.0
+
readable-stream: 2.3.8
+
+
arg@4.1.3: {}
+
+
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-differ@3.0.0: {}
+
+
array-flatten@1.1.1: {}
+
+
array-ify@1.0.0: {}
+
+
array-union@2.1.0: {}
+
+
array.prototype.reduce@1.0.8:
+
dependencies:
+
call-bind: 1.0.8
+
call-bound: 1.0.4
+
define-properties: 1.2.1
+
es-abstract: 1.24.0
+
es-array-method-boxes-properly: 1.0.0
+
es-errors: 1.3.0
+
es-object-atoms: 1.1.1
+
is-string: 1.1.1
+
+
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.24.0
+
es-errors: 1.3.0
+
get-intrinsic: 1.3.0
+
is-array-buffer: 3.0.5
+
+
arrify@1.0.1: {}
+
+
arrify@2.0.1: {}
+
+
asap@2.0.6: {}
+
+
asn1@0.2.6:
+
dependencies:
+
safer-buffer: 2.1.2
+
+
assert-plus@1.0.0: {}
+
+
async-function@1.0.0: {}
+
+
asynckit@0.4.0: {}
+
+
at-least-node@1.0.0: {}
+
+
atomic-sleep@1.0.0: {}
+
+
available-typed-arrays@1.0.7:
+
dependencies:
+
possible-typed-array-names: 1.1.0
+
+
aws-sign2@0.7.0: {}
+
+
aws4@1.13.2: {}
+
+
axios@1.12.2:
+
dependencies:
+
follow-redirects: 1.15.11
+
form-data: 4.0.4
+
proxy-from-env: 1.1.0
+
transitivePeerDependencies:
+
- debug
+
+
babel-eslint@10.1.0(eslint@8.57.1):
+
dependencies:
+
'@babel/code-frame': 7.27.1
+
'@babel/parser': 7.28.4
+
'@babel/traverse': 7.28.4
+
'@babel/types': 7.28.4
+
eslint: 8.57.1
+
eslint-visitor-keys: 1.3.0
+
resolve: 1.22.10
+
transitivePeerDependencies:
+
- supports-color
+
+
babel-jest@28.1.3(@babel/core@7.28.4):
+
dependencies:
+
'@babel/core': 7.28.4
+
'@jest/transform': 28.1.3
+
'@types/babel__core': 7.20.5
+
babel-plugin-istanbul: 6.1.1
+
babel-preset-jest: 28.1.3(@babel/core@7.28.4)
+
chalk: 4.1.2
+
graceful-fs: 4.2.11
+
slash: 3.0.0
+
transitivePeerDependencies:
+
- supports-color
+
+
babel-plugin-istanbul@6.1.1:
+
dependencies:
+
'@babel/helper-plugin-utils': 7.27.1
+
'@istanbuljs/load-nyc-config': 1.1.0
+
'@istanbuljs/schema': 0.1.3
+
istanbul-lib-instrument: 5.2.1
+
test-exclude: 6.0.0
+
transitivePeerDependencies:
+
- supports-color
+
+
babel-plugin-jest-hoist@28.1.3:
+
dependencies:
+
'@babel/template': 7.27.2
+
'@babel/types': 7.28.4
+
'@types/babel__core': 7.20.5
+
'@types/babel__traverse': 7.28.0
+
+
babel-plugin-polyfill-corejs2@0.4.14(@babel/core@7.28.4):
+
dependencies:
+
'@babel/compat-data': 7.28.4
+
'@babel/core': 7.28.4
+
'@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.4)
+
semver: 6.3.1
+
transitivePeerDependencies:
+
- supports-color
+
+
babel-plugin-polyfill-corejs3@0.13.0(@babel/core@7.28.4):
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.4)
+
core-js-compat: 3.45.1
+
transitivePeerDependencies:
+
- supports-color
+
+
babel-plugin-polyfill-regenerator@0.6.5(@babel/core@7.28.4):
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.4)
+
transitivePeerDependencies:
+
- supports-color
+
+
babel-preset-current-node-syntax@1.2.0(@babel/core@7.28.4):
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.28.4)
+
'@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.28.4)
+
'@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.28.4)
+
'@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.28.4)
+
'@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.28.4)
+
'@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.28.4)
+
'@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.28.4)
+
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.28.4)
+
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.28.4)
+
'@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.28.4)
+
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.28.4)
+
'@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.28.4)
+
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.28.4)
+
'@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.28.4)
+
'@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.28.4)
+
+
babel-preset-jest@28.1.3(@babel/core@7.28.4):
+
dependencies:
+
'@babel/core': 7.28.4
+
babel-plugin-jest-hoist: 28.1.3
+
babel-preset-current-node-syntax: 1.2.0(@babel/core@7.28.4)
+
+
balanced-match@1.0.2: {}
+
+
base64-js@1.5.1: {}
+
+
baseline-browser-mapping@2.8.6: {}
+
+
bcrypt-pbkdf@1.0.2:
+
dependencies:
+
tweetnacl: 0.14.5
+
+
before-after-hook@2.2.3: {}
+
+
big-integer@1.6.52: {}
+
+
body-parser@1.20.3:
+
dependencies:
+
bytes: 3.1.2
+
content-type: 1.0.5
+
debug: 2.6.9
+
depd: 2.0.0
+
destroy: 1.2.0
+
http-errors: 2.0.0
+
iconv-lite: 0.4.24
+
on-finished: 2.4.1
+
qs: 6.13.0
+
raw-body: 2.5.2
+
type-is: 1.6.18
+
unpipe: 1.0.0
+
transitivePeerDependencies:
+
- supports-color
+
+
brace-expansion@1.1.12:
+
dependencies:
+
balanced-match: 1.0.2
+
concat-map: 0.0.1
+
+
brace-expansion@2.0.2:
+
dependencies:
+
balanced-match: 1.0.2
+
+
braces@3.0.3:
+
dependencies:
+
fill-range: 7.1.1
+
+
browserslist@4.26.2:
+
dependencies:
+
baseline-browser-mapping: 2.8.6
+
caniuse-lite: 1.0.30001743
+
electron-to-chromium: 1.5.223
+
node-releases: 2.0.21
+
update-browserslist-db: 1.1.3(browserslist@4.26.2)
+
+
bs-logger@0.2.6:
+
dependencies:
+
fast-json-stable-stringify: 2.1.0
+
+
bser@2.1.1:
+
dependencies:
+
node-int64: 0.4.0
+
+
buffer-from@1.1.2: {}
+
+
buffer@6.0.3:
+
dependencies:
+
base64-js: 1.5.1
+
ieee754: 1.2.1
+
+
builtins@1.0.3: {}
+
+
byline@5.0.0: {}
+
+
byte-size@7.0.1: {}
+
+
bytes@3.1.2: {}
+
+
cacache@15.3.0:
+
dependencies:
+
'@npmcli/fs': 1.1.1
+
'@npmcli/move-file': 1.1.2
+
chownr: 2.0.0
+
fs-minipass: 2.1.0
+
glob: 7.2.3
+
infer-owner: 1.0.4
+
lru-cache: 6.0.0
+
minipass: 3.3.6
+
minipass-collect: 1.0.2
+
minipass-flush: 1.0.5
+
minipass-pipeline: 1.2.4
+
mkdirp: 1.0.4
+
p-map: 4.0.0
+
promise-inflight: 1.0.1
+
rimraf: 3.0.2
+
ssri: 8.0.1
+
tar: 6.2.1
+
unique-filename: 1.1.1
+
transitivePeerDependencies:
+
- bluebird
+
+
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
+
+
callsites@3.1.0: {}
+
+
camelcase-keys@6.2.2:
+
dependencies:
+
camelcase: 5.3.1
+
map-obj: 4.3.0
+
quick-lru: 4.0.1
+
+
camelcase@5.3.1: {}
+
+
camelcase@6.3.0: {}
+
+
caniuse-lite@1.0.30001743: {}
+
+
caseless@0.12.0: {}
+
+
cbor-extract@2.2.0:
+
dependencies:
+
node-gyp-build-optional-packages: 5.1.1
+
optionalDependencies:
+
'@cbor-extract/cbor-extract-darwin-arm64': 2.2.0
+
'@cbor-extract/cbor-extract-darwin-x64': 2.2.0
+
'@cbor-extract/cbor-extract-linux-arm': 2.2.0
+
'@cbor-extract/cbor-extract-linux-arm64': 2.2.0
+
'@cbor-extract/cbor-extract-linux-x64': 2.2.0
+
'@cbor-extract/cbor-extract-win32-x64': 2.2.0
+
optional: true
+
+
cbor-x@1.6.0:
+
optionalDependencies:
+
cbor-extract: 2.2.0
+
+
cborg@1.10.2: {}
+
+
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
+
+
char-regex@1.0.2: {}
+
+
chardet@0.7.0: {}
+
+
chownr@1.1.4: {}
+
+
chownr@2.0.0: {}
+
+
ci-info@2.0.0: {}
+
+
ci-info@3.9.0: {}
+
+
cjs-module-lexer@1.4.3: {}
+
+
clean-stack@2.2.0: {}
+
+
cli-cursor@3.1.0:
+
dependencies:
+
restore-cursor: 3.1.0
+
+
cli-width@3.0.0: {}
+
+
cliui@7.0.4:
+
dependencies:
+
string-width: 4.2.3
+
strip-ansi: 6.0.1
+
wrap-ansi: 7.0.0
+
+
cliui@8.0.1:
+
dependencies:
+
string-width: 4.2.3
+
strip-ansi: 6.0.1
+
wrap-ansi: 7.0.0
+
+
clone-deep@4.0.1:
+
dependencies:
+
is-plain-object: 2.0.4
+
kind-of: 6.0.3
+
shallow-clone: 3.0.1
+
+
clone@1.0.4: {}
+
+
cmd-shim@4.1.0:
+
dependencies:
+
mkdirp-infer-owner: 2.0.0
+
+
co@4.6.0: {}
+
+
code-point-at@1.1.0: {}
+
+
collect-v8-coverage@1.0.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: {}
+
+
columnify@1.6.0:
+
dependencies:
+
strip-ansi: 6.0.1
+
wcwidth: 1.0.1
+
+
combined-stream@1.0.8:
+
dependencies:
+
delayed-stream: 1.0.0
+
+
compare-func@2.0.0:
+
dependencies:
+
array-ify: 1.0.0
+
dot-prop: 5.3.0
+
+
concat-map@0.0.1: {}
+
+
concat-stream@2.0.0:
+
dependencies:
+
buffer-from: 1.1.2
+
inherits: 2.0.4
+
readable-stream: 3.6.2
+
typedarray: 0.0.6
+
+
config-chain@1.1.13:
+
dependencies:
+
ini: 1.3.8
+
proto-list: 1.2.4
+
+
console-control-strings@1.1.0: {}
+
+
content-disposition@0.5.4:
+
dependencies:
+
safe-buffer: 5.2.1
+
+
content-type@1.0.5: {}
+
+
conventional-changelog-angular@5.0.13:
+
dependencies:
+
compare-func: 2.0.0
+
q: 1.5.1
+
+
conventional-changelog-core@4.2.4:
+
dependencies:
+
add-stream: 1.0.0
+
conventional-changelog-writer: 5.0.1
+
conventional-commits-parser: 3.2.4
+
dateformat: 3.0.3
+
get-pkg-repo: 4.2.1
+
git-raw-commits: 2.0.11
+
git-remote-origin-url: 2.0.0
+
git-semver-tags: 4.1.1
+
lodash: 4.17.21
+
normalize-package-data: 3.0.3
+
q: 1.5.1
+
read-pkg: 3.0.0
+
read-pkg-up: 3.0.0
+
through2: 4.0.2
+
+
conventional-changelog-preset-loader@2.3.4: {}
+
+
conventional-changelog-writer@5.0.1:
+
dependencies:
+
conventional-commits-filter: 2.0.7
+
dateformat: 3.0.3
+
handlebars: 4.7.8
+
json-stringify-safe: 5.0.1
+
lodash: 4.17.21
+
meow: 8.1.2
+
semver: 6.3.1
+
split: 1.0.1
+
through2: 4.0.2
+
+
conventional-commits-filter@2.0.7:
+
dependencies:
+
lodash.ismatch: 4.4.0
+
modify-values: 1.0.1
+
+
conventional-commits-parser@3.2.4:
+
dependencies:
+
JSONStream: 1.3.5
+
is-text-path: 1.0.1
+
lodash: 4.17.21
+
meow: 8.1.2
+
split2: 3.2.2
+
through2: 4.0.2
+
+
conventional-recommended-bump@6.1.0:
+
dependencies:
+
concat-stream: 2.0.0
+
conventional-changelog-preset-loader: 2.3.4
+
conventional-commits-filter: 2.0.7
+
conventional-commits-parser: 3.2.4
+
git-raw-commits: 2.0.11
+
git-semver-tags: 4.1.1
+
meow: 8.1.2
+
q: 1.5.1
+
+
convert-source-map@1.9.0: {}
+
+
convert-source-map@2.0.0: {}
+
+
cookie-signature@1.0.6: {}
+
+
cookie@0.7.1: {}
+
+
core-js-compat@3.45.1:
+
dependencies:
+
browserslist: 4.26.2
+
+
core-util-is@1.0.2: {}
+
+
core-util-is@1.0.3: {}
+
+
cors@2.8.5:
+
dependencies:
+
object-assign: 4.1.1
+
vary: 1.1.2
+
+
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
+
+
create-require@1.1.1: {}
+
+
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
+
+
dargs@7.0.0: {}
+
+
dashdash@1.14.1:
+
dependencies:
+
assert-plus: 1.0.0
+
+
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
+
+
dateformat@3.0.3: {}
+
+
dateformat@4.6.3: {}
+
+
debug@2.6.9:
+
dependencies:
+
ms: 2.0.0
+
+
debug@4.4.3:
+
dependencies:
+
ms: 2.1.3
+
+
debuglog@1.0.1: {}
+
+
decamelize-keys@1.1.1:
+
dependencies:
+
decamelize: 1.2.0
+
map-obj: 1.0.1
+
+
decamelize@1.2.0: {}
+
+
decode-uri-component@0.2.2: {}
+
+
dedent@0.7.0: {}
+
+
deep-is@0.1.4: {}
+
+
deepmerge@4.3.1: {}
+
+
defaults@1.0.4:
+
dependencies:
+
clone: 1.0.4
+
+
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
+
+
delay@5.0.0: {}
+
+
delayed-stream@1.0.0: {}
+
+
delegates@1.0.0: {}
+
+
depd@2.0.0: {}
+
+
deprecation@2.3.1: {}
+
+
destroy@1.2.0: {}
+
+
detect-indent@5.0.0: {}
+
+
detect-indent@6.1.0: {}
+
+
detect-libc@2.1.0:
+
optional: true
+
+
detect-newline@3.1.0: {}
+
+
dezalgo@1.0.4:
+
dependencies:
+
asap: 2.0.6
+
wrappy: 1.0.2
+
+
diff-sequences@28.1.1: {}
+
+
diff@4.0.2: {}
+
+
dir-glob@3.0.1:
+
dependencies:
+
path-type: 4.0.0
+
+
doctrine@3.0.0:
+
dependencies:
+
esutils: 2.0.3
+
+
dot-prop@5.3.0:
+
dependencies:
+
is-obj: 2.0.0
+
+
dot-prop@6.0.1:
+
dependencies:
+
is-obj: 2.0.0
+
+
dotenv@16.6.1: {}
+
+
dunder-proto@1.0.1:
+
dependencies:
+
call-bind-apply-helpers: 1.0.2
+
es-errors: 1.3.0
+
gopd: 1.2.0
+
+
duplexer@0.1.2: {}
+
+
eastasianwidth@0.2.0: {}
+
+
ecc-jsbn@0.1.2:
+
dependencies:
+
jsbn: 0.1.1
+
safer-buffer: 2.1.2
+
+
ee-first@1.1.1: {}
+
+
electron-to-chromium@1.5.223: {}
+
+
emittery@0.10.2: {}
+
+
emoji-regex@8.0.0: {}
+
+
emoji-regex@9.2.2: {}
+
+
encodeurl@1.0.2: {}
+
+
encodeurl@2.0.0: {}
+
+
encoding@0.1.13:
+
dependencies:
+
iconv-lite: 0.6.3
+
optional: true
+
+
end-of-stream@1.4.5:
+
dependencies:
+
once: 1.4.0
+
+
env-paths@2.2.1: {}
+
+
envinfo@7.14.0: {}
+
+
err-code@2.0.3: {}
+
+
error-ex@1.3.4:
+
dependencies:
+
is-arrayish: 0.2.1
+
+
es-abstract@1.24.0:
+
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-negative-zero: 2.0.3
+
is-regex: 1.2.1
+
is-set: 2.0.3
+
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
+
stop-iteration-iterator: 1.1.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.19
+
+
es-array-method-boxes-properly@1.0.0: {}
+
+
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-android-64@0.14.54:
+
optional: true
+
+
esbuild-android-arm64@0.14.54:
+
optional: true
+
+
esbuild-darwin-64@0.14.54:
+
optional: true
+
+
esbuild-darwin-arm64@0.14.54:
+
optional: true
+
+
esbuild-freebsd-64@0.14.54:
+
optional: true
+
+
esbuild-freebsd-arm64@0.14.54:
+
optional: true
+
+
esbuild-linux-32@0.14.54:
+
optional: true
+
+
esbuild-linux-64@0.14.54:
+
optional: true
+
+
esbuild-linux-arm64@0.14.54:
+
optional: true
+
+
esbuild-linux-arm@0.14.54:
+
optional: true
+
+
esbuild-linux-mips64le@0.14.54:
+
optional: true
+
+
esbuild-linux-ppc64le@0.14.54:
+
optional: true
+
+
esbuild-linux-riscv64@0.14.54:
+
optional: true
+
+
esbuild-linux-s390x@0.14.54:
+
optional: true
+
+
esbuild-netbsd-64@0.14.54:
+
optional: true
+
+
esbuild-node-externals@1.18.0(esbuild@0.14.54):
+
dependencies:
+
esbuild: 0.14.54
+
find-up: 5.0.0
+
+
esbuild-openbsd-64@0.14.54:
+
optional: true
+
+
esbuild-plugin-copy@1.6.0(esbuild@0.14.54):
+
dependencies:
+
chalk: 4.1.2
+
esbuild: 0.14.54
+
fs-extra: 10.1.0
+
globby: 11.1.0
+
+
esbuild-sunos-64@0.14.54:
+
optional: true
+
+
esbuild-windows-32@0.14.54:
+
optional: true
+
+
esbuild-windows-64@0.14.54:
+
optional: true
+
+
esbuild-windows-arm64@0.14.54:
+
optional: true
+
+
esbuild@0.14.54:
+
optionalDependencies:
+
'@esbuild/linux-loong64': 0.14.54
+
esbuild-android-64: 0.14.54
+
esbuild-android-arm64: 0.14.54
+
esbuild-darwin-64: 0.14.54
+
esbuild-darwin-arm64: 0.14.54
+
esbuild-freebsd-64: 0.14.54
+
esbuild-freebsd-arm64: 0.14.54
+
esbuild-linux-32: 0.14.54
+
esbuild-linux-64: 0.14.54
+
esbuild-linux-arm: 0.14.54
+
esbuild-linux-arm64: 0.14.54
+
esbuild-linux-mips64le: 0.14.54
+
esbuild-linux-ppc64le: 0.14.54
+
esbuild-linux-riscv64: 0.14.54
+
esbuild-linux-s390x: 0.14.54
+
esbuild-netbsd-64: 0.14.54
+
esbuild-openbsd-64: 0.14.54
+
esbuild-sunos-64: 0.14.54
+
esbuild-windows-32: 0.14.54
+
esbuild-windows-64: 0.14.54
+
esbuild-windows-arm64: 0.14.54
+
+
escalade@3.2.0: {}
+
+
escape-html@1.0.3: {}
+
+
escape-string-regexp@1.0.5: {}
+
+
escape-string-regexp@2.0.0: {}
+
+
escape-string-regexp@4.0.0: {}
+
+
eslint-config-prettier@8.10.2(eslint@8.57.1):
+
dependencies:
+
eslint: 8.57.1
+
+
eslint-plugin-prettier@4.2.5(eslint-config-prettier@8.10.2(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.2(eslint@8.57.1)
+
+
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@1.3.0: {}
+
+
eslint-visitor-keys@3.4.3: {}
+
+
eslint@8.57.1:
+
dependencies:
+
'@eslint-community/eslint-utils': 4.9.0(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.3
+
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.15.0
+
acorn-jsx: 5.3.2(acorn@8.15.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: {}
+
+
esutils@2.0.3: {}
+
+
etag@1.8.1: {}
+
+
event-target-shim@5.0.1: {}
+
+
eventemitter3@4.0.7: {}
+
+
events@3.3.0: {}
+
+
execa@5.1.1:
+
dependencies:
+
cross-spawn: 7.0.6
+
get-stream: 6.0.1
+
human-signals: 2.1.0
+
is-stream: 2.0.1
+
merge-stream: 2.0.0
+
npm-run-path: 4.0.1
+
onetime: 5.1.2
+
signal-exit: 3.0.7
+
strip-final-newline: 2.0.0
+
+
exit@0.1.2: {}
+
+
expect@28.1.3:
+
dependencies:
+
'@jest/expect-utils': 28.1.3
+
jest-get-type: 28.0.2
+
jest-matcher-utils: 28.1.3
+
jest-message-util: 28.1.3
+
jest-util: 28.1.3
+
+
express-async-errors@3.1.1(express@4.21.2):
+
dependencies:
+
express: 4.21.2
+
+
express@4.21.2:
+
dependencies:
+
accepts: 1.3.8
+
array-flatten: 1.1.1
+
body-parser: 1.20.3
+
content-disposition: 0.5.4
+
content-type: 1.0.5
+
cookie: 0.7.1
+
cookie-signature: 1.0.6
+
debug: 2.6.9
+
depd: 2.0.0
+
encodeurl: 2.0.0
+
escape-html: 1.0.3
+
etag: 1.8.1
+
finalhandler: 1.3.1
+
fresh: 0.5.2
+
http-errors: 2.0.0
+
merge-descriptors: 1.0.3
+
methods: 1.1.2
+
on-finished: 2.4.1
+
parseurl: 1.3.3
+
path-to-regexp: 0.1.12
+
proxy-addr: 2.0.7
+
qs: 6.13.0
+
range-parser: 1.2.1
+
safe-buffer: 5.2.1
+
send: 0.19.0
+
serve-static: 1.16.2
+
setprototypeof: 1.2.0
+
statuses: 2.0.1
+
type-is: 1.6.18
+
utils-merge: 1.0.1
+
vary: 1.1.2
+
transitivePeerDependencies:
+
- supports-color
+
+
extend@3.0.2: {}
+
+
external-editor@3.1.0:
+
dependencies:
+
chardet: 0.7.0
+
iconv-lite: 0.4.24
+
tmp: 0.0.33
+
+
extsprintf@1.3.0: {}
+
+
fast-copy@3.0.2: {}
+
+
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: {}
+
+
fast-printf@1.6.10: {}
+
+
fast-redact@3.5.0: {}
+
+
fast-safe-stringify@2.1.1: {}
+
+
fastq@1.19.1:
+
dependencies:
+
reusify: 1.1.0
+
+
fb-watchman@2.0.2:
+
dependencies:
+
bser: 2.1.1
+
+
figures@3.2.0:
+
dependencies:
+
escape-string-regexp: 1.0.5
+
+
file-entry-cache@6.0.1:
+
dependencies:
+
flat-cache: 3.2.0
+
+
fill-range@7.1.1:
+
dependencies:
+
to-regex-range: 5.0.1
+
+
filter-obj@1.1.0: {}
+
+
finalhandler@1.3.1:
+
dependencies:
+
debug: 2.6.9
+
encodeurl: 2.0.0
+
escape-html: 1.0.3
+
on-finished: 2.4.1
+
parseurl: 1.3.3
+
statuses: 2.0.1
+
unpipe: 1.0.0
+
transitivePeerDependencies:
+
- supports-color
+
+
find-up@2.1.0:
+
dependencies:
+
locate-path: 2.0.0
+
+
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
+
+
flat-cache@3.2.0:
+
dependencies:
+
flatted: 3.3.3
+
keyv: 4.5.4
+
rimraf: 3.0.2
+
+
flatted@3.3.3: {}
+
+
follow-redirects@1.15.11: {}
+
+
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
+
+
forever-agent@0.6.1: {}
+
+
form-data@2.3.3:
+
dependencies:
+
asynckit: 0.4.0
+
combined-stream: 1.0.8
+
mime-types: 2.1.35
+
+
form-data@4.0.4:
+
dependencies:
+
asynckit: 0.4.0
+
combined-stream: 1.0.8
+
es-set-tostringtag: 2.1.0
+
hasown: 2.0.2
+
mime-types: 2.1.35
+
+
forwarded@0.2.0: {}
+
+
fresh@0.5.2: {}
+
+
fs-extra@10.1.0:
+
dependencies:
+
graceful-fs: 4.2.11
+
jsonfile: 6.2.0
+
universalify: 2.0.1
+
+
fs-extra@9.1.0:
+
dependencies:
+
at-least-node: 1.0.0
+
graceful-fs: 4.2.11
+
jsonfile: 6.2.0
+
universalify: 2.0.1
+
+
fs-minipass@1.2.7:
+
dependencies:
+
minipass: 2.9.0
+
+
fs-minipass@2.1.0:
+
dependencies:
+
minipass: 3.3.6
+
+
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: {}
+
+
gauge@2.7.4:
+
dependencies:
+
aproba: 1.2.0
+
console-control-strings: 1.1.0
+
has-unicode: 2.0.1
+
object-assign: 4.1.1
+
signal-exit: 3.0.7
+
string-width: 1.0.2
+
strip-ansi: 3.0.1
+
wide-align: 1.1.5
+
+
gensync@1.0.0-beta.2: {}
+
+
get-caller-file@2.0.5: {}
+
+
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-package-type@0.1.0: {}
+
+
get-pkg-repo@4.2.1:
+
dependencies:
+
'@hutson/parse-repository-url': 3.0.2
+
hosted-git-info: 4.1.0
+
through2: 2.0.5
+
yargs: 16.2.0
+
+
get-port@5.1.1: {}
+
+
get-proto@1.0.1:
+
dependencies:
+
dunder-proto: 1.0.1
+
es-object-atoms: 1.1.1
+
+
get-stream@6.0.1: {}
+
+
get-symbol-description@1.1.0:
+
dependencies:
+
call-bound: 1.0.4
+
es-errors: 1.3.0
+
get-intrinsic: 1.3.0
+
+
getpass@0.1.7:
+
dependencies:
+
assert-plus: 1.0.0
+
+
git-raw-commits@2.0.11:
+
dependencies:
+
dargs: 7.0.0
+
lodash: 4.17.21
+
meow: 8.1.2
+
split2: 3.2.2
+
through2: 4.0.2
+
+
git-remote-origin-url@2.0.0:
+
dependencies:
+
gitconfiglocal: 1.0.0
+
pify: 2.3.0
+
+
git-semver-tags@4.1.1:
+
dependencies:
+
meow: 8.1.2
+
semver: 6.3.1
+
+
git-up@4.0.5:
+
dependencies:
+
is-ssh: 1.4.1
+
parse-url: 6.0.5
+
+
git-url-parse@11.6.0:
+
dependencies:
+
git-up: 4.0.5
+
+
gitconfiglocal@1.0.0:
+
dependencies:
+
ini: 1.3.8
+
+
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: {}
+
+
handlebars@4.7.8:
+
dependencies:
+
minimist: 1.2.8
+
neo-async: 2.6.2
+
source-map: 0.6.1
+
wordwrap: 1.0.0
+
optionalDependencies:
+
uglify-js: 3.19.3
+
+
har-schema@2.0.0: {}
+
+
har-validator@5.1.5:
+
dependencies:
+
ajv: 6.12.6
+
har-schema: 2.0.0
+
+
hard-rejection@2.1.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
+
+
has-unicode@2.0.1: {}
+
+
hasown@2.0.2:
+
dependencies:
+
function-bind: 1.1.2
+
+
help-me@4.2.0:
+
dependencies:
+
glob: 8.1.0
+
readable-stream: 3.6.2
+
+
hosted-git-info@2.8.9: {}
+
+
hosted-git-info@4.1.0:
+
dependencies:
+
lru-cache: 6.0.0
+
+
hosted-git-info@6.1.3:
+
dependencies:
+
lru-cache: 7.18.3
+
+
html-escaper@2.0.2: {}
+
+
http-cache-semantics@4.2.0: {}
+
+
http-errors@2.0.0:
+
dependencies:
+
depd: 2.0.0
+
inherits: 2.0.4
+
setprototypeof: 1.2.0
+
statuses: 2.0.1
+
toidentifier: 1.0.1
+
+
http-proxy-agent@4.0.1:
+
dependencies:
+
'@tootallnate/once': 1.1.2
+
agent-base: 6.0.2
+
debug: 4.4.3
+
transitivePeerDependencies:
+
- supports-color
+
+
http-signature@1.2.0:
+
dependencies:
+
assert-plus: 1.0.0
+
jsprim: 1.4.2
+
sshpk: 1.18.0
+
+
http-terminator@3.2.0:
+
dependencies:
+
delay: 5.0.0
+
p-wait-for: 3.2.0
+
roarr: 7.21.1
+
type-fest: 2.19.0
+
+
https-proxy-agent@5.0.1:
+
dependencies:
+
agent-base: 6.0.2
+
debug: 4.4.3
+
transitivePeerDependencies:
+
- supports-color
+
+
human-signals@2.1.0: {}
+
+
humanize-ms@1.2.1:
+
dependencies:
+
ms: 2.1.3
+
+
iconv-lite@0.4.24:
+
dependencies:
+
safer-buffer: 2.1.2
+
+
iconv-lite@0.6.3:
+
dependencies:
+
safer-buffer: 2.1.2
+
optional: true
+
+
ieee754@1.2.1: {}
+
+
ignore-walk@3.0.4:
+
dependencies:
+
minimatch: 3.1.2
+
+
ignore@5.3.2: {}
+
+
import-fresh@3.3.1:
+
dependencies:
+
parent-module: 1.0.1
+
resolve-from: 4.0.0
+
+
import-local@3.2.0:
+
dependencies:
+
pkg-dir: 4.2.0
+
resolve-cwd: 3.0.0
+
+
imurmurhash@0.1.4: {}
+
+
indent-string@4.0.0: {}
+
+
infer-owner@1.0.4: {}
+
+
inflight@1.0.6:
+
dependencies:
+
once: 1.4.0
+
wrappy: 1.0.2
+
+
inherits@2.0.4: {}
+
+
ini@1.3.8: {}
+
+
init-package-json@2.0.5:
+
dependencies:
+
npm-package-arg: 8.1.5
+
promzard: 0.3.0
+
read: 1.0.7
+
read-package-json: 4.1.2
+
semver: 7.7.2
+
validate-npm-package-license: 3.0.4
+
validate-npm-package-name: 3.0.0
+
+
inquirer@7.3.3:
+
dependencies:
+
ansi-escapes: 4.3.2
+
chalk: 4.1.2
+
cli-cursor: 3.1.0
+
cli-width: 3.0.0
+
external-editor: 3.1.0
+
figures: 3.2.0
+
lodash: 4.17.21
+
mute-stream: 0.0.8
+
run-async: 2.4.1
+
rxjs: 6.6.7
+
string-width: 4.2.3
+
strip-ansi: 6.0.1
+
through: 2.3.8
+
+
internal-slot@1.1.0:
+
dependencies:
+
es-errors: 1.3.0
+
hasown: 2.0.2
+
side-channel: 1.1.0
+
+
ip-address@10.0.1: {}
+
+
ipaddr.js@1.9.1: {}
+
+
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-ci@2.0.0:
+
dependencies:
+
ci-info: 2.0.0
+
+
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@1.0.0:
+
dependencies:
+
number-is-nan: 1.0.1
+
+
is-fullwidth-code-point@3.0.0: {}
+
+
is-generator-fn@2.1.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-lambda@1.0.1: {}
+
+
is-map@2.0.3: {}
+
+
is-negative-zero@2.0.3: {}
+
+
is-number-object@1.1.1:
+
dependencies:
+
call-bound: 1.0.4
+
has-tostringtag: 1.0.2
+
+
is-number@7.0.0: {}
+
+
is-obj@2.0.0: {}
+
+
is-path-inside@3.0.3: {}
+
+
is-plain-obj@1.1.0: {}
+
+
is-plain-obj@2.1.0: {}
+
+
is-plain-object@2.0.4:
+
dependencies:
+
isobject: 3.0.1
+
+
is-plain-object@5.0.0: {}
+
+
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-ssh@1.4.1:
+
dependencies:
+
protocols: 2.0.2
+
+
is-stream@2.0.1: {}
+
+
is-string@1.1.1:
+
dependencies:
+
call-bound: 1.0.4
+
has-tostringtag: 1.0.2
+
+
is-symbol@1.1.1:
+
dependencies:
+
call-bound: 1.0.4
+
has-symbols: 1.1.0
+
safe-regex-test: 1.1.0
+
+
is-text-path@1.0.1:
+
dependencies:
+
text-extensions: 1.9.0
+
+
is-typed-array@1.1.15:
+
dependencies:
+
which-typed-array: 1.1.19
+
+
is-typedarray@1.0.0: {}
+
+
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
+
+
isarray@1.0.0: {}
+
+
isarray@2.0.5: {}
+
+
isexe@2.0.0: {}
+
+
isobject@3.0.1: {}
+
+
isstream@0.1.2: {}
+
+
istanbul-lib-coverage@3.2.2: {}
+
+
istanbul-lib-instrument@5.2.1:
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/parser': 7.28.4
+
'@istanbuljs/schema': 0.1.3
+
istanbul-lib-coverage: 3.2.2
+
semver: 6.3.1
+
transitivePeerDependencies:
+
- supports-color
+
+
istanbul-lib-report@3.0.1:
+
dependencies:
+
istanbul-lib-coverage: 3.2.2
+
make-dir: 4.0.0
+
supports-color: 7.2.0
+
+
istanbul-lib-source-maps@4.0.1:
+
dependencies:
+
debug: 4.4.3
+
istanbul-lib-coverage: 3.2.2
+
source-map: 0.6.1
+
transitivePeerDependencies:
+
- supports-color
+
+
istanbul-reports@3.2.0:
+
dependencies:
+
html-escaper: 2.0.2
+
istanbul-lib-report: 3.0.1
+
+
jackspeak@3.4.3:
+
dependencies:
+
'@isaacs/cliui': 8.0.2
+
optionalDependencies:
+
'@pkgjs/parseargs': 0.11.0
+
+
jest-changed-files@28.1.3:
+
dependencies:
+
execa: 5.1.1
+
p-limit: 3.1.0
+
+
jest-circus@28.1.3:
+
dependencies:
+
'@jest/environment': 28.1.3
+
'@jest/expect': 28.1.3
+
'@jest/test-result': 28.1.3
+
'@jest/types': 28.1.3
+
'@types/node': 18.19.127
+
chalk: 4.1.2
+
co: 4.6.0
+
dedent: 0.7.0
+
is-generator-fn: 2.1.0
+
jest-each: 28.1.3
+
jest-matcher-utils: 28.1.3
+
jest-message-util: 28.1.3
+
jest-runtime: 28.1.3
+
jest-snapshot: 28.1.3
+
jest-util: 28.1.3
+
p-limit: 3.1.0
+
pretty-format: 28.1.3
+
slash: 3.0.0
+
stack-utils: 2.0.6
+
transitivePeerDependencies:
+
- supports-color
+
+
jest-cli@28.1.3(@types/node@18.19.127)(ts-node@10.9.2(@types/node@18.19.127)(typescript@4.9.5)):
+
dependencies:
+
'@jest/core': 28.1.3(ts-node@10.9.2(@types/node@18.19.127)(typescript@4.9.5))
+
'@jest/test-result': 28.1.3
+
'@jest/types': 28.1.3
+
chalk: 4.1.2
+
exit: 0.1.2
+
graceful-fs: 4.2.11
+
import-local: 3.2.0
+
jest-config: 28.1.3(@types/node@18.19.127)(ts-node@10.9.2(@types/node@18.19.127)(typescript@4.9.5))
+
jest-util: 28.1.3
+
jest-validate: 28.1.3
+
prompts: 2.4.2
+
yargs: 17.7.2
+
transitivePeerDependencies:
+
- '@types/node'
+
- supports-color
+
- ts-node
+
+
jest-config@28.1.3(@types/node@18.19.127)(ts-node@10.9.2(@types/node@18.19.127)(typescript@4.9.5)):
+
dependencies:
+
'@babel/core': 7.28.4
+
'@jest/test-sequencer': 28.1.3
+
'@jest/types': 28.1.3
+
babel-jest: 28.1.3(@babel/core@7.28.4)
+
chalk: 4.1.2
+
ci-info: 3.9.0
+
deepmerge: 4.3.1
+
glob: 7.2.3
+
graceful-fs: 4.2.11
+
jest-circus: 28.1.3
+
jest-environment-node: 28.1.3
+
jest-get-type: 28.0.2
+
jest-regex-util: 28.0.2
+
jest-resolve: 28.1.3
+
jest-runner: 28.1.3
+
jest-util: 28.1.3
+
jest-validate: 28.1.3
+
micromatch: 4.0.8
+
parse-json: 5.2.0
+
pretty-format: 28.1.3
+
slash: 3.0.0
+
strip-json-comments: 3.1.1
+
optionalDependencies:
+
'@types/node': 18.19.127
+
ts-node: 10.9.2(@types/node@18.19.127)(typescript@4.9.5)
+
transitivePeerDependencies:
+
- supports-color
+
+
jest-diff@28.1.3:
+
dependencies:
+
chalk: 4.1.2
+
diff-sequences: 28.1.1
+
jest-get-type: 28.0.2
+
pretty-format: 28.1.3
+
+
jest-docblock@28.1.1:
+
dependencies:
+
detect-newline: 3.1.0
+
+
jest-each@28.1.3:
+
dependencies:
+
'@jest/types': 28.1.3
+
chalk: 4.1.2
+
jest-get-type: 28.0.2
+
jest-util: 28.1.3
+
pretty-format: 28.1.3
+
+
jest-environment-node@28.1.3:
+
dependencies:
+
'@jest/environment': 28.1.3
+
'@jest/fake-timers': 28.1.3
+
'@jest/types': 28.1.3
+
'@types/node': 18.19.127
+
jest-mock: 28.1.3
+
jest-util: 28.1.3
+
+
jest-get-type@28.0.2: {}
+
+
jest-haste-map@28.1.3:
+
dependencies:
+
'@jest/types': 28.1.3
+
'@types/graceful-fs': 4.1.9
+
'@types/node': 18.19.127
+
anymatch: 3.1.3
+
fb-watchman: 2.0.2
+
graceful-fs: 4.2.11
+
jest-regex-util: 28.0.2
+
jest-util: 28.1.3
+
jest-worker: 28.1.3
+
micromatch: 4.0.8
+
walker: 1.0.8
+
optionalDependencies:
+
fsevents: 2.3.3
+
+
jest-leak-detector@28.1.3:
+
dependencies:
+
jest-get-type: 28.0.2
+
pretty-format: 28.1.3
+
+
jest-matcher-utils@28.1.3:
+
dependencies:
+
chalk: 4.1.2
+
jest-diff: 28.1.3
+
jest-get-type: 28.0.2
+
pretty-format: 28.1.3
+
+
jest-message-util@28.1.3:
+
dependencies:
+
'@babel/code-frame': 7.27.1
+
'@jest/types': 28.1.3
+
'@types/stack-utils': 2.0.3
+
chalk: 4.1.2
+
graceful-fs: 4.2.11
+
micromatch: 4.0.8
+
pretty-format: 28.1.3
+
slash: 3.0.0
+
stack-utils: 2.0.6
+
+
jest-mock@28.1.3:
+
dependencies:
+
'@jest/types': 28.1.3
+
'@types/node': 18.19.127
+
+
jest-pnp-resolver@1.2.3(jest-resolve@28.1.3):
+
optionalDependencies:
+
jest-resolve: 28.1.3
+
+
jest-regex-util@28.0.2: {}
+
+
jest-resolve-dependencies@28.1.3:
+
dependencies:
+
jest-regex-util: 28.0.2
+
jest-snapshot: 28.1.3
+
transitivePeerDependencies:
+
- supports-color
+
+
jest-resolve@28.1.3:
+
dependencies:
+
chalk: 4.1.2
+
graceful-fs: 4.2.11
+
jest-haste-map: 28.1.3
+
jest-pnp-resolver: 1.2.3(jest-resolve@28.1.3)
+
jest-util: 28.1.3
+
jest-validate: 28.1.3
+
resolve: 1.22.10
+
resolve.exports: 1.1.1
+
slash: 3.0.0
+
+
jest-runner@28.1.3:
+
dependencies:
+
'@jest/console': 28.1.3
+
'@jest/environment': 28.1.3
+
'@jest/test-result': 28.1.3
+
'@jest/transform': 28.1.3
+
'@jest/types': 28.1.3
+
'@types/node': 18.19.127
+
chalk: 4.1.2
+
emittery: 0.10.2
+
graceful-fs: 4.2.11
+
jest-docblock: 28.1.1
+
jest-environment-node: 28.1.3
+
jest-haste-map: 28.1.3
+
jest-leak-detector: 28.1.3
+
jest-message-util: 28.1.3
+
jest-resolve: 28.1.3
+
jest-runtime: 28.1.3
+
jest-util: 28.1.3
+
jest-watcher: 28.1.3
+
jest-worker: 28.1.3
+
p-limit: 3.1.0
+
source-map-support: 0.5.13
+
transitivePeerDependencies:
+
- supports-color
+
+
jest-runtime@28.1.3:
+
dependencies:
+
'@jest/environment': 28.1.3
+
'@jest/fake-timers': 28.1.3
+
'@jest/globals': 28.1.3
+
'@jest/source-map': 28.1.2
+
'@jest/test-result': 28.1.3
+
'@jest/transform': 28.1.3
+
'@jest/types': 28.1.3
+
chalk: 4.1.2
+
cjs-module-lexer: 1.4.3
+
collect-v8-coverage: 1.0.2
+
execa: 5.1.1
+
glob: 7.2.3
+
graceful-fs: 4.2.11
+
jest-haste-map: 28.1.3
+
jest-message-util: 28.1.3
+
jest-mock: 28.1.3
+
jest-regex-util: 28.0.2
+
jest-resolve: 28.1.3
+
jest-snapshot: 28.1.3
+
jest-util: 28.1.3
+
slash: 3.0.0
+
strip-bom: 4.0.0
+
transitivePeerDependencies:
+
- supports-color
+
+
jest-snapshot@28.1.3:
+
dependencies:
+
'@babel/core': 7.28.4
+
'@babel/generator': 7.28.3
+
'@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.28.4)
+
'@babel/traverse': 7.28.4
+
'@babel/types': 7.28.4
+
'@jest/expect-utils': 28.1.3
+
'@jest/transform': 28.1.3
+
'@jest/types': 28.1.3
+
'@types/babel__traverse': 7.28.0
+
'@types/prettier': 2.7.3
+
babel-preset-current-node-syntax: 1.2.0(@babel/core@7.28.4)
+
chalk: 4.1.2
+
expect: 28.1.3
+
graceful-fs: 4.2.11
+
jest-diff: 28.1.3
+
jest-get-type: 28.0.2
+
jest-haste-map: 28.1.3
+
jest-matcher-utils: 28.1.3
+
jest-message-util: 28.1.3
+
jest-util: 28.1.3
+
natural-compare: 1.4.0
+
pretty-format: 28.1.3
+
semver: 7.7.2
+
transitivePeerDependencies:
+
- supports-color
+
+
jest-util@28.1.3:
+
dependencies:
+
'@jest/types': 28.1.3
+
'@types/node': 18.19.127
+
chalk: 4.1.2
+
ci-info: 3.9.0
+
graceful-fs: 4.2.11
+
picomatch: 2.3.1
+
+
jest-validate@28.1.3:
+
dependencies:
+
'@jest/types': 28.1.3
+
camelcase: 6.3.0
+
chalk: 4.1.2
+
jest-get-type: 28.0.2
+
leven: 3.1.0
+
pretty-format: 28.1.3
+
+
jest-watcher@28.1.3:
+
dependencies:
+
'@jest/test-result': 28.1.3
+
'@jest/types': 28.1.3
+
'@types/node': 18.19.127
+
ansi-escapes: 4.3.2
+
chalk: 4.1.2
+
emittery: 0.10.2
+
jest-util: 28.1.3
+
string-length: 4.0.2
+
+
jest-worker@28.1.3:
+
dependencies:
+
'@types/node': 18.19.127
+
merge-stream: 2.0.0
+
supports-color: 8.1.1
+
+
jest@28.1.3(@types/node@18.19.127)(ts-node@10.9.2(@types/node@18.19.127)(typescript@4.9.5)):
+
dependencies:
+
'@jest/core': 28.1.3(ts-node@10.9.2(@types/node@18.19.127)(typescript@4.9.5))
+
'@jest/types': 28.1.3
+
import-local: 3.2.0
+
jest-cli: 28.1.3(@types/node@18.19.127)(ts-node@10.9.2(@types/node@18.19.127)(typescript@4.9.5))
+
transitivePeerDependencies:
+
- '@types/node'
+
- supports-color
+
- ts-node
+
+
joycon@3.1.1: {}
+
+
js-tokens@4.0.0: {}
+
+
js-yaml@3.14.1:
+
dependencies:
+
argparse: 1.0.10
+
esprima: 4.0.1
+
+
js-yaml@4.1.0:
+
dependencies:
+
argparse: 2.0.1
+
+
jsbn@0.1.1: {}
+
+
jsesc@3.1.0: {}
+
+
json-buffer@3.0.1: {}
+
+
json-parse-better-errors@1.0.2: {}
+
+
json-parse-even-better-errors@2.3.1: {}
+
+
json-parse-even-better-errors@3.0.2: {}
+
+
json-schema-traverse@0.4.1: {}
+
+
json-schema@0.4.0: {}
+
+
json-stable-stringify-without-jsonify@1.0.1: {}
+
+
json-stringify-safe@5.0.1: {}
+
+
json5@2.2.3: {}
+
+
jsonfile@6.2.0:
+
dependencies:
+
universalify: 2.0.1
+
optionalDependencies:
+
graceful-fs: 4.2.11
+
+
jsonparse@1.3.1: {}
+
+
jsprim@1.4.2:
+
dependencies:
+
assert-plus: 1.0.0
+
extsprintf: 1.3.0
+
json-schema: 0.4.0
+
verror: 1.10.0
+
+
keyv@4.5.4:
+
dependencies:
+
json-buffer: 3.0.1
+
+
kind-of@6.0.3: {}
+
+
kleur@3.0.3: {}
+
+
kysely@0.23.5: {}
+
+
lerna@4.0.0(encoding@0.1.13):
+
dependencies:
+
'@lerna/add': 4.0.0
+
'@lerna/bootstrap': 4.0.0
+
'@lerna/changed': 4.0.0
+
'@lerna/clean': 4.0.0
+
'@lerna/cli': 4.0.0
+
'@lerna/create': 4.0.0
+
'@lerna/diff': 4.0.0
+
'@lerna/exec': 4.0.0
+
'@lerna/import': 4.0.0
+
'@lerna/info': 4.0.0
+
'@lerna/init': 4.0.0
+
'@lerna/link': 4.0.0
+
'@lerna/list': 4.0.0
+
'@lerna/publish': 4.0.0(encoding@0.1.13)
+
'@lerna/run': 4.0.0
+
'@lerna/version': 4.0.0(encoding@0.1.13)
+
import-local: 3.2.0
+
npmlog: 4.1.2
+
transitivePeerDependencies:
+
- bluebird
+
- encoding
+
- supports-color
+
+
leven@3.1.0: {}
+
+
levn@0.4.1:
+
dependencies:
+
prelude-ls: 1.2.1
+
type-check: 0.4.0
+
+
libnpmaccess@4.0.3:
+
dependencies:
+
aproba: 2.1.0
+
minipass: 3.3.6
+
npm-package-arg: 8.1.5
+
npm-registry-fetch: 11.0.0
+
transitivePeerDependencies:
+
- bluebird
+
- supports-color
+
+
libnpmpublish@4.0.2:
+
dependencies:
+
normalize-package-data: 3.0.3
+
npm-package-arg: 8.1.5
+
npm-registry-fetch: 11.0.0
+
semver: 7.7.2
+
ssri: 8.0.1
+
transitivePeerDependencies:
+
- bluebird
+
- supports-color
+
+
lines-and-columns@1.2.4: {}
+
+
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
+
+
load-json-file@6.2.0:
+
dependencies:
+
graceful-fs: 4.2.11
+
parse-json: 5.2.0
+
strip-bom: 4.0.0
+
type-fest: 0.6.0
+
+
locate-path@2.0.0:
+
dependencies:
+
p-locate: 2.0.0
+
path-exists: 3.0.0
+
+
locate-path@5.0.0:
+
dependencies:
+
p-locate: 4.1.0
+
+
locate-path@6.0.0:
+
dependencies:
+
p-locate: 5.0.0
+
+
lodash._reinterpolate@3.0.0: {}
+
+
lodash.debounce@4.0.8: {}
+
+
lodash.ismatch@4.4.0: {}
+
+
lodash.memoize@4.1.2: {}
+
+
lodash.merge@4.6.2: {}
+
+
lodash.template@4.5.0:
+
dependencies:
+
lodash._reinterpolate: 3.0.0
+
lodash.templatesettings: 4.2.0
+
+
lodash.templatesettings@4.2.0:
+
dependencies:
+
lodash._reinterpolate: 3.0.0
+
+
lodash@4.17.21: {}
+
+
lru-cache@10.4.3: {}
+
+
lru-cache@5.1.1:
+
dependencies:
+
yallist: 3.1.1
+
+
lru-cache@6.0.0:
+
dependencies:
+
yallist: 4.0.0
+
+
lru-cache@7.18.3: {}
+
+
make-dir@2.1.0:
+
dependencies:
+
pify: 4.0.1
+
semver: 5.7.2
+
+
make-dir@3.1.0:
+
dependencies:
+
semver: 6.3.1
+
+
make-dir@4.0.0:
+
dependencies:
+
semver: 7.7.2
+
+
make-error@1.3.6: {}
+
+
make-fetch-happen@8.0.14:
+
dependencies:
+
agentkeepalive: 4.6.0
+
cacache: 15.3.0
+
http-cache-semantics: 4.2.0
+
http-proxy-agent: 4.0.1
+
https-proxy-agent: 5.0.1
+
is-lambda: 1.0.1
+
lru-cache: 6.0.0
+
minipass: 3.3.6
+
minipass-collect: 1.0.2
+
minipass-fetch: 1.4.1
+
minipass-flush: 1.0.5
+
minipass-pipeline: 1.2.4
+
promise-retry: 2.0.1
+
socks-proxy-agent: 5.0.1
+
ssri: 8.0.1
+
transitivePeerDependencies:
+
- bluebird
+
- supports-color
+
+
make-fetch-happen@9.1.0:
+
dependencies:
+
agentkeepalive: 4.6.0
+
cacache: 15.3.0
+
http-cache-semantics: 4.2.0
+
http-proxy-agent: 4.0.1
+
https-proxy-agent: 5.0.1
+
is-lambda: 1.0.1
+
lru-cache: 6.0.0
+
minipass: 3.3.6
+
minipass-collect: 1.0.2
+
minipass-fetch: 1.4.1
+
minipass-flush: 1.0.5
+
minipass-pipeline: 1.2.4
+
negotiator: 0.6.4
+
promise-retry: 2.0.1
+
socks-proxy-agent: 6.2.1
+
ssri: 8.0.1
+
transitivePeerDependencies:
+
- bluebird
+
- supports-color
+
+
makeerror@1.0.12:
+
dependencies:
+
tmpl: 1.0.5
+
+
map-obj@1.0.1: {}
+
+
map-obj@4.3.0: {}
+
+
math-intrinsics@1.1.0: {}
+
+
media-typer@0.3.0: {}
+
+
memorystream@0.3.1: {}
+
+
meow@8.1.2:
+
dependencies:
+
'@types/minimist': 1.2.5
+
camelcase-keys: 6.2.2
+
decamelize-keys: 1.1.1
+
hard-rejection: 2.1.0
+
minimist-options: 4.1.0
+
normalize-package-data: 3.0.3
+
read-pkg-up: 7.0.1
+
redent: 3.0.0
+
trim-newlines: 3.0.1
+
type-fest: 0.18.1
+
yargs-parser: 20.2.9
+
+
merge-descriptors@1.0.3: {}
+
+
merge-stream@2.0.0: {}
+
+
merge2@1.4.1: {}
+
+
methods@1.1.2: {}
+
+
micromatch@4.0.8:
+
dependencies:
+
braces: 3.0.3
+
picomatch: 2.3.1
+
+
mime-db@1.52.0: {}
+
+
mime-types@2.1.35:
+
dependencies:
+
mime-db: 1.52.0
+
+
mime@1.6.0: {}
+
+
mimic-fn@2.1.0: {}
+
+
min-indent@1.0.1: {}
+
+
minimatch@3.1.2:
+
dependencies:
+
brace-expansion: 1.1.12
+
+
minimatch@5.1.6:
+
dependencies:
+
brace-expansion: 2.0.2
+
+
minimatch@9.0.5:
+
dependencies:
+
brace-expansion: 2.0.2
+
+
minimist-options@4.1.0:
+
dependencies:
+
arrify: 1.0.1
+
is-plain-obj: 1.1.0
+
kind-of: 6.0.3
+
+
minimist@1.2.8: {}
+
+
minipass-collect@1.0.2:
+
dependencies:
+
minipass: 3.3.6
+
+
minipass-fetch@1.4.1:
+
dependencies:
+
minipass: 3.3.6
+
minipass-sized: 1.0.3
+
minizlib: 2.1.2
+
optionalDependencies:
+
encoding: 0.1.13
+
+
minipass-flush@1.0.5:
+
dependencies:
+
minipass: 3.3.6
+
+
minipass-json-stream@1.0.2:
+
dependencies:
+
jsonparse: 1.3.1
+
minipass: 3.3.6
+
+
minipass-pipeline@1.2.4:
+
dependencies:
+
minipass: 3.3.6
+
+
minipass-sized@1.0.3:
+
dependencies:
+
minipass: 3.3.6
+
+
minipass@2.9.0:
+
dependencies:
+
safe-buffer: 5.2.1
+
yallist: 3.1.1
+
+
minipass@3.3.6:
+
dependencies:
+
yallist: 4.0.0
+
+
minipass@5.0.0: {}
+
+
minipass@7.1.2: {}
+
+
minizlib@1.3.3:
+
dependencies:
+
minipass: 2.9.0
+
+
minizlib@2.1.2:
+
dependencies:
+
minipass: 3.3.6
+
yallist: 4.0.0
+
+
mkdirp-infer-owner@2.0.0:
+
dependencies:
+
chownr: 2.0.0
+
infer-owner: 1.0.4
+
mkdirp: 1.0.4
+
+
mkdirp@0.5.6:
+
dependencies:
+
minimist: 1.2.8
+
+
mkdirp@1.0.4: {}
+
+
modify-values@1.0.1: {}
+
+
ms@2.0.0: {}
+
+
ms@2.1.3: {}
+
+
multiformats@9.9.0: {}
+
+
multimatch@5.0.0:
+
dependencies:
+
'@types/minimatch': 3.0.5
+
array-differ: 3.0.0
+
array-union: 2.1.0
+
arrify: 2.0.1
+
minimatch: 3.1.2
+
+
mute-stream@0.0.8: {}
+
+
natural-compare-lite@1.4.0: {}
+
+
natural-compare@1.4.0: {}
+
+
negotiator@0.6.3: {}
+
+
negotiator@0.6.4: {}
+
+
neo-async@2.6.2: {}
+
+
nice-try@1.0.5: {}
+
+
node-fetch@2.7.0(encoding@0.1.13):
+
dependencies:
+
whatwg-url: 5.0.0
+
optionalDependencies:
+
encoding: 0.1.13
+
+
node-gyp-build-optional-packages@5.1.1:
+
dependencies:
+
detect-libc: 2.1.0
+
optional: true
+
+
node-gyp@5.1.1:
+
dependencies:
+
env-paths: 2.2.1
+
glob: 7.2.3
+
graceful-fs: 4.2.11
+
mkdirp: 0.5.6
+
nopt: 4.0.3
+
npmlog: 4.1.2
+
request: 2.88.2
+
rimraf: 2.7.1
+
semver: 5.7.2
+
tar: 4.4.19
+
which: 1.3.1
+
+
node-gyp@7.1.2:
+
dependencies:
+
env-paths: 2.2.1
+
glob: 7.2.3
+
graceful-fs: 4.2.11
+
nopt: 5.0.0
+
npmlog: 4.1.2
+
request: 2.88.2
+
rimraf: 3.0.2
+
semver: 7.7.2
+
tar: 6.2.1
+
which: 2.0.2
+
+
node-int64@0.4.0: {}
+
+
node-releases@2.0.21: {}
+
+
nopt@4.0.3:
+
dependencies:
+
abbrev: 1.1.1
+
osenv: 0.1.5
+
+
nopt@5.0.0:
+
dependencies:
+
abbrev: 1.1.1
+
+
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
+
+
normalize-package-data@3.0.3:
+
dependencies:
+
hosted-git-info: 4.1.0
+
is-core-module: 2.16.1
+
semver: 7.7.2
+
validate-npm-package-license: 3.0.4
+
+
normalize-package-data@5.0.0:
+
dependencies:
+
hosted-git-info: 6.1.3
+
is-core-module: 2.16.1
+
semver: 7.7.2
+
validate-npm-package-license: 3.0.4
+
+
normalize-path@3.0.0: {}
+
+
normalize-url@6.1.0: {}
+
+
npm-bundled@1.1.2:
+
dependencies:
+
npm-normalize-package-bin: 1.0.1
+
+
npm-install-checks@4.0.0:
+
dependencies:
+
semver: 7.7.2
+
+
npm-install-checks@6.3.0:
+
dependencies:
+
semver: 7.7.2
+
+
npm-lifecycle@3.1.5:
+
dependencies:
+
byline: 5.0.0
+
graceful-fs: 4.2.11
+
node-gyp: 5.1.1
+
resolve-from: 4.0.0
+
slide: 1.1.6
+
uid-number: 0.0.6
+
umask: 1.1.0
+
which: 1.3.1
+
+
npm-normalize-package-bin@1.0.1: {}
+
+
npm-normalize-package-bin@3.0.1: {}
+
+
npm-package-arg@10.1.0:
+
dependencies:
+
hosted-git-info: 6.1.3
+
proc-log: 3.0.0
+
semver: 7.7.2
+
validate-npm-package-name: 5.0.1
+
+
npm-package-arg@8.1.5:
+
dependencies:
+
hosted-git-info: 4.1.0
+
semver: 7.7.2
+
validate-npm-package-name: 3.0.0
+
+
npm-packlist@2.2.2:
+
dependencies:
+
glob: 7.2.3
+
ignore-walk: 3.0.4
+
npm-bundled: 1.1.2
+
npm-normalize-package-bin: 1.0.1
+
+
npm-pick-manifest@6.1.1:
+
dependencies:
+
npm-install-checks: 4.0.0
+
npm-normalize-package-bin: 1.0.1
+
npm-package-arg: 8.1.5
+
semver: 7.7.2
+
+
npm-pick-manifest@8.0.2:
+
dependencies:
+
npm-install-checks: 6.3.0
+
npm-normalize-package-bin: 3.0.1
+
npm-package-arg: 10.1.0
+
semver: 7.7.2
+
+
npm-registry-fetch@11.0.0:
+
dependencies:
+
make-fetch-happen: 9.1.0
+
minipass: 3.3.6
+
minipass-fetch: 1.4.1
+
minipass-json-stream: 1.0.2
+
minizlib: 2.1.2
+
npm-package-arg: 8.1.5
+
transitivePeerDependencies:
+
- bluebird
+
- supports-color
+
+
npm-registry-fetch@9.0.0:
+
dependencies:
+
'@npmcli/ci-detect': 1.4.0
+
lru-cache: 6.0.0
+
make-fetch-happen: 8.0.14
+
minipass: 3.3.6
+
minipass-fetch: 1.4.1
+
minipass-json-stream: 1.0.2
+
minizlib: 2.1.2
+
npm-package-arg: 8.1.5
+
transitivePeerDependencies:
+
- bluebird
+
- supports-color
+
+
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.3
+
string.prototype.padend: 3.1.6
+
+
npm-run-path@4.0.1:
+
dependencies:
+
path-key: 3.1.1
+
+
npmlog@4.1.2:
+
dependencies:
+
are-we-there-yet: 1.1.7
+
console-control-strings: 1.1.0
+
gauge: 2.7.4
+
set-blocking: 2.0.0
+
+
number-is-nan@1.0.1: {}
+
+
oauth-sign@0.9.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
+
+
object.getownpropertydescriptors@2.1.8:
+
dependencies:
+
array.prototype.reduce: 1.0.8
+
call-bind: 1.0.8
+
define-properties: 1.2.1
+
es-abstract: 1.24.0
+
es-object-atoms: 1.1.1
+
gopd: 1.2.0
+
safe-array-concat: 1.1.3
+
+
on-exit-leak-free@2.1.2: {}
+
+
on-finished@2.4.1:
+
dependencies:
+
ee-first: 1.1.1
+
+
once@1.4.0:
+
dependencies:
+
wrappy: 1.0.2
+
+
one-webcrypto@1.0.3: {}
+
+
onetime@5.1.2:
+
dependencies:
+
mimic-fn: 2.1.0
+
+
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
+
+
os-homedir@1.0.2: {}
+
+
os-tmpdir@1.0.2: {}
+
+
osenv@0.1.5:
+
dependencies:
+
os-homedir: 1.0.2
+
os-tmpdir: 1.0.2
+
+
own-keys@1.0.1:
+
dependencies:
+
get-intrinsic: 1.3.0
+
object-keys: 1.1.1
+
safe-push-apply: 1.0.0
+
+
p-finally@1.0.0: {}
+
+
p-limit@1.3.0:
+
dependencies:
+
p-try: 1.0.0
+
+
p-limit@2.3.0:
+
dependencies:
+
p-try: 2.2.0
+
+
p-limit@3.1.0:
+
dependencies:
+
yocto-queue: 0.1.0
+
+
p-locate@2.0.0:
+
dependencies:
+
p-limit: 1.3.0
+
+
p-locate@4.1.0:
+
dependencies:
+
p-limit: 2.3.0
+
+
p-locate@5.0.0:
+
dependencies:
+
p-limit: 3.1.0
+
+
p-map-series@2.1.0: {}
+
+
p-map@4.0.0:
+
dependencies:
+
aggregate-error: 3.1.0
+
+
p-pipe@3.1.0: {}
+
+
p-queue@6.6.2:
+
dependencies:
+
eventemitter3: 4.0.7
+
p-timeout: 3.2.0
+
+
p-reduce@2.1.0: {}
+
+
p-timeout@3.2.0:
+
dependencies:
+
p-finally: 1.0.0
+
+
p-try@1.0.0: {}
+
+
p-try@2.2.0: {}
+
+
p-wait-for@3.2.0:
+
dependencies:
+
p-timeout: 3.2.0
+
+
p-waterfall@2.1.1:
+
dependencies:
+
p-reduce: 2.1.0
+
+
package-json-from-dist@1.0.1: {}
+
+
pacote@11.3.5:
+
dependencies:
+
'@npmcli/git': 2.1.0
+
'@npmcli/installed-package-contents': 1.0.7
+
'@npmcli/promise-spawn': 1.3.2
+
'@npmcli/run-script': 1.8.6
+
cacache: 15.3.0
+
chownr: 2.0.0
+
fs-minipass: 2.1.0
+
infer-owner: 1.0.4
+
minipass: 3.3.6
+
mkdirp: 1.0.4
+
npm-package-arg: 8.1.5
+
npm-packlist: 2.2.2
+
npm-pick-manifest: 6.1.1
+
npm-registry-fetch: 11.0.0
+
promise-retry: 2.0.1
+
read-package-json-fast: 2.0.3
+
rimraf: 3.0.2
+
ssri: 8.0.1
+
tar: 6.2.1
+
transitivePeerDependencies:
+
- bluebird
+
- supports-color
+
+
parent-module@1.0.1:
+
dependencies:
+
callsites: 3.1.0
+
+
parse-json@4.0.0:
+
dependencies:
+
error-ex: 1.3.4
+
json-parse-better-errors: 1.0.2
+
+
parse-json@5.2.0:
+
dependencies:
+
'@babel/code-frame': 7.27.1
+
error-ex: 1.3.4
+
json-parse-even-better-errors: 2.3.1
+
lines-and-columns: 1.2.4
+
+
parse-path@4.0.4:
+
dependencies:
+
is-ssh: 1.4.1
+
protocols: 1.4.8
+
qs: 6.14.0
+
query-string: 6.14.1
+
+
parse-url@6.0.5:
+
dependencies:
+
is-ssh: 1.4.1
+
normalize-url: 6.1.0
+
parse-path: 4.0.4
+
protocols: 1.4.8
+
+
parseurl@1.3.3: {}
+
+
path-exists@3.0.0: {}
+
+
path-exists@4.0.0: {}
+
+
path-is-absolute@1.0.1: {}
+
+
path-key@2.0.1: {}
+
+
path-key@3.1.1: {}
+
+
path-parse@1.0.7: {}
+
+
path-scurry@1.11.1:
+
dependencies:
+
lru-cache: 10.4.3
+
minipass: 7.1.2
+
+
path-to-regexp@0.1.12: {}
+
+
path-type@3.0.0:
+
dependencies:
+
pify: 3.0.0
+
+
path-type@4.0.0: {}
+
+
performance-now@2.1.0: {}
+
+
pg-cloudflare@1.2.7:
+
optional: true
+
+
pg-connection-string@2.9.1: {}
+
+
pg-int8@1.0.1: {}
+
+
pg-pool@3.10.1(pg@8.16.3):
+
dependencies:
+
pg: 8.16.3
+
+
pg-protocol@1.10.3: {}
+
+
pg-types@2.2.0:
+
dependencies:
+
pg-int8: 1.0.1
+
postgres-array: 2.0.0
+
postgres-bytea: 1.0.0
+
postgres-date: 1.0.7
+
postgres-interval: 1.2.0
+
+
pg@8.16.3:
+
dependencies:
+
pg-connection-string: 2.9.1
+
pg-pool: 3.10.1(pg@8.16.3)
+
pg-protocol: 1.10.3
+
pg-types: 2.2.0
+
pgpass: 1.0.5
+
optionalDependencies:
+
pg-cloudflare: 1.2.7
+
+
pgpass@1.0.5:
+
dependencies:
+
split2: 4.2.0
+
+
picocolors@1.1.1: {}
+
+
picomatch@2.3.1: {}
+
+
pidtree@0.3.1: {}
+
+
pify@2.3.0: {}
+
+
pify@3.0.0: {}
+
+
pify@4.0.1: {}
+
+
pify@5.0.0: {}
+
+
pino-abstract-transport@1.2.0:
+
dependencies:
+
readable-stream: 4.7.0
+
split2: 4.2.0
+
+
pino-http@8.6.1:
+
dependencies:
+
get-caller-file: 2.0.5
+
pino: 8.21.0
+
pino-std-serializers: 6.2.2
+
process-warning: 3.0.0
+
+
pino-pretty@9.4.1:
+
dependencies:
+
colorette: 2.0.20
+
dateformat: 4.6.3
+
fast-copy: 3.0.2
+
fast-safe-stringify: 2.1.1
+
help-me: 4.2.0
+
joycon: 3.1.1
+
minimist: 1.2.8
+
on-exit-leak-free: 2.1.2
+
pino-abstract-transport: 1.2.0
+
pump: 3.0.3
+
readable-stream: 4.7.0
+
secure-json-parse: 2.7.0
+
sonic-boom: 3.8.1
+
strip-json-comments: 3.1.1
+
+
pino-std-serializers@6.2.2: {}
+
+
pino@8.21.0:
+
dependencies:
+
atomic-sleep: 1.0.0
+
fast-redact: 3.5.0
+
on-exit-leak-free: 2.1.2
+
pino-abstract-transport: 1.2.0
+
pino-std-serializers: 6.2.2
+
process-warning: 3.0.0
+
quick-format-unescaped: 4.0.4
+
real-require: 0.2.0
+
safe-stable-stringify: 2.5.0
+
sonic-boom: 3.8.1
+
thread-stream: 2.7.0
+
+
pirates@4.0.7: {}
+
+
pkg-dir@4.2.0:
+
dependencies:
+
find-up: 4.1.0
+
+
possible-typed-array-names@1.1.0: {}
+
+
postgres-array@2.0.0: {}
+
+
postgres-bytea@1.0.0: {}
+
+
postgres-date@1.0.7: {}
+
+
postgres-interval@1.2.0:
+
dependencies:
+
xtend: 4.0.2
+
+
prelude-ls@1.2.1: {}
+
+
prettier-config-standard@5.0.0(prettier@2.8.8):
+
dependencies:
+
prettier: 2.8.8
+
+
prettier-linter-helpers@1.0.0:
+
dependencies:
+
fast-diff: 1.3.0
+
+
prettier@2.8.8: {}
+
+
pretty-format@28.1.3:
+
dependencies:
+
'@jest/schemas': 28.1.3
+
ansi-regex: 5.0.1
+
ansi-styles: 5.2.0
+
react-is: 18.3.1
+
+
proc-log@3.0.0: {}
+
+
process-nextick-args@2.0.1: {}
+
+
process-warning@3.0.0: {}
+
+
process@0.11.10: {}
+
+
promise-inflight@1.0.1: {}
+
+
promise-retry@2.0.1:
+
dependencies:
+
err-code: 2.0.3
+
retry: 0.12.0
+
+
prompts@2.4.2:
+
dependencies:
+
kleur: 3.0.3
+
sisteransi: 1.0.5
+
+
promzard@0.3.0:
+
dependencies:
+
read: 1.0.7
+
+
proto-list@1.2.4: {}
+
+
protocols@1.4.8: {}
+
+
protocols@2.0.2: {}
+
+
proxy-addr@2.0.7:
+
dependencies:
+
forwarded: 0.2.0
+
ipaddr.js: 1.9.1
+
+
proxy-from-env@1.1.0: {}
+
+
psl@1.15.0:
+
dependencies:
+
punycode: 2.3.1
+
+
pump@3.0.3:
+
dependencies:
+
end-of-stream: 1.4.5
+
once: 1.4.0
+
+
punycode@2.3.1: {}
+
+
q@1.5.1: {}
+
+
qs@6.13.0:
+
dependencies:
+
side-channel: 1.1.0
+
+
qs@6.14.0:
+
dependencies:
+
side-channel: 1.1.0
+
+
qs@6.5.3: {}
+
+
query-string@6.14.1:
+
dependencies:
+
decode-uri-component: 0.2.2
+
filter-obj: 1.1.0
+
split-on-first: 1.1.0
+
strict-uri-encode: 2.0.0
+
+
queue-microtask@1.2.3: {}
+
+
quick-format-unescaped@4.0.4: {}
+
+
quick-lru@4.0.1: {}
+
+
range-parser@1.2.1: {}
+
+
raw-body@2.5.2:
+
dependencies:
+
bytes: 3.1.2
+
http-errors: 2.0.0
+
iconv-lite: 0.4.24
+
unpipe: 1.0.0
+
+
react-is@18.3.1: {}
+
+
read-cmd-shim@2.0.0: {}
+
+
read-package-json-fast@2.0.3:
+
dependencies:
+
json-parse-even-better-errors: 2.3.1
+
npm-normalize-package-bin: 1.0.1
+
+
read-package-json@2.1.2:
+
dependencies:
+
glob: 7.2.3
+
json-parse-even-better-errors: 2.3.1
+
normalize-package-data: 2.5.0
+
npm-normalize-package-bin: 1.0.1
+
+
read-package-json@3.0.1:
+
dependencies:
+
glob: 7.2.3
+
json-parse-even-better-errors: 2.3.1
+
normalize-package-data: 3.0.3
+
npm-normalize-package-bin: 1.0.1
+
+
read-package-json@4.1.2:
+
dependencies:
+
glob: 7.2.3
+
json-parse-even-better-errors: 2.3.1
+
normalize-package-data: 3.0.3
+
npm-normalize-package-bin: 1.0.1
+
+
read-package-tree@5.3.1:
+
dependencies:
+
read-package-json: 2.1.2
+
readdir-scoped-modules: 1.1.0
+
util-promisify: 2.1.0
+
+
read-pkg-up@3.0.0:
+
dependencies:
+
find-up: 2.1.0
+
read-pkg: 3.0.0
+
+
read-pkg-up@7.0.1:
+
dependencies:
+
find-up: 4.1.0
+
read-pkg: 5.2.0
+
type-fest: 0.8.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-pkg@5.2.0:
+
dependencies:
+
'@types/normalize-package-data': 2.4.4
+
normalize-package-data: 2.5.0
+
parse-json: 5.2.0
+
type-fest: 0.6.0
+
+
read@1.0.7:
+
dependencies:
+
mute-stream: 0.0.8
+
+
readable-stream@2.3.8:
+
dependencies:
+
core-util-is: 1.0.3
+
inherits: 2.0.4
+
isarray: 1.0.0
+
process-nextick-args: 2.0.1
+
safe-buffer: 5.1.2
+
string_decoder: 1.1.1
+
util-deprecate: 1.0.2
+
+
readable-stream@3.6.2:
+
dependencies:
+
inherits: 2.0.4
+
string_decoder: 1.3.0
+
util-deprecate: 1.0.2
+
+
readable-stream@4.7.0:
+
dependencies:
+
abort-controller: 3.0.0
+
buffer: 6.0.3
+
events: 3.3.0
+
process: 0.11.10
+
string_decoder: 1.3.0
+
+
readdir-scoped-modules@1.1.0:
+
dependencies:
+
debuglog: 1.0.1
+
dezalgo: 1.0.4
+
graceful-fs: 4.2.11
+
once: 1.4.0
+
+
real-require@0.2.0: {}
+
+
redent@3.0.0:
+
dependencies:
+
indent-string: 4.0.0
+
strip-indent: 3.0.0
+
+
reflect.getprototypeof@1.0.10:
+
dependencies:
+
call-bind: 1.0.8
+
define-properties: 1.2.1
+
es-abstract: 1.24.0
+
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@10.2.2:
+
dependencies:
+
regenerate: 1.4.2
+
+
regenerate@1.4.2: {}
+
+
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@6.4.0:
+
dependencies:
+
regenerate: 1.4.2
+
regenerate-unicode-properties: 10.2.2
+
regjsgen: 0.8.0
+
regjsparser: 0.13.0
+
unicode-match-property-ecmascript: 2.0.0
+
unicode-match-property-value-ecmascript: 2.2.1
+
+
regjsgen@0.8.0: {}
+
+
regjsparser@0.13.0:
+
dependencies:
+
jsesc: 3.1.0
+
+
request@2.88.2:
+
dependencies:
+
aws-sign2: 0.7.0
+
aws4: 1.13.2
+
caseless: 0.12.0
+
combined-stream: 1.0.8
+
extend: 3.0.2
+
forever-agent: 0.6.1
+
form-data: 2.3.3
+
har-validator: 5.1.5
+
http-signature: 1.2.0
+
is-typedarray: 1.0.0
+
isstream: 0.1.2
+
json-stringify-safe: 5.0.1
+
mime-types: 2.1.35
+
oauth-sign: 0.9.0
+
performance-now: 2.1.0
+
qs: 6.5.3
+
safe-buffer: 5.2.1
+
tough-cookie: 2.5.0
+
tunnel-agent: 0.6.0
+
uuid: 3.4.0
+
+
require-directory@2.1.1: {}
+
+
resolve-cwd@3.0.0:
+
dependencies:
+
resolve-from: 5.0.0
+
+
resolve-from@4.0.0: {}
+
+
resolve-from@5.0.0: {}
+
+
resolve.exports@1.1.1: {}
+
+
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@3.1.0:
+
dependencies:
+
onetime: 5.1.2
+
signal-exit: 3.0.7
+
+
retry@0.12.0: {}
+
+
reusify@1.1.0: {}
+
+
rimraf@2.7.1:
+
dependencies:
+
glob: 7.2.3
+
+
rimraf@3.0.2:
+
dependencies:
+
glob: 7.2.3
+
+
roarr@7.21.1:
+
dependencies:
+
fast-printf: 1.6.10
+
safe-stable-stringify: 2.5.0
+
semver-compare: 1.0.0
+
+
run-async@2.4.1: {}
+
+
run-parallel@1.2.0:
+
dependencies:
+
queue-microtask: 1.2.3
+
+
rxjs@6.6.7:
+
dependencies:
+
tslib: 1.14.1
+
+
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-buffer@5.1.2: {}
+
+
safe-buffer@5.2.1: {}
+
+
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
+
+
safe-stable-stringify@2.5.0: {}
+
+
safer-buffer@2.1.2: {}
+
+
secure-json-parse@2.7.0: {}
+
+
semver-compare@1.0.0: {}
+
+
semver@5.7.2: {}
+
+
semver@6.3.1: {}
+
+
semver@7.7.2: {}
+
+
send@0.19.0:
+
dependencies:
+
debug: 2.6.9
+
depd: 2.0.0
+
destroy: 1.2.0
+
encodeurl: 1.0.2
+
escape-html: 1.0.3
+
etag: 1.8.1
+
fresh: 0.5.2
+
http-errors: 2.0.0
+
mime: 1.6.0
+
ms: 2.1.3
+
on-finished: 2.4.1
+
range-parser: 1.2.1
+
statuses: 2.0.1
+
transitivePeerDependencies:
+
- supports-color
+
+
serve-static@1.16.2:
+
dependencies:
+
encodeurl: 2.0.0
+
escape-html: 1.0.3
+
parseurl: 1.3.3
+
send: 0.19.0
+
transitivePeerDependencies:
+
- supports-color
+
+
set-blocking@2.0.0: {}
+
+
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
+
+
setprototypeof@1.2.0: {}
+
+
shallow-clone@3.0.1:
+
dependencies:
+
kind-of: 6.0.3
+
+
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.3: {}
+
+
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
+
+
signal-exit@3.0.7: {}
+
+
signal-exit@4.1.0: {}
+
+
sisteransi@1.0.5: {}
+
+
slash@3.0.0: {}
+
+
slide@1.1.6: {}
+
+
smart-buffer@4.2.0: {}
+
+
socks-proxy-agent@5.0.1:
+
dependencies:
+
agent-base: 6.0.2
+
debug: 4.4.3
+
socks: 2.8.7
+
transitivePeerDependencies:
+
- supports-color
+
+
socks-proxy-agent@6.2.1:
+
dependencies:
+
agent-base: 6.0.2
+
debug: 4.4.3
+
socks: 2.8.7
+
transitivePeerDependencies:
+
- supports-color
+
+
socks@2.8.7:
+
dependencies:
+
ip-address: 10.0.1
+
smart-buffer: 4.2.0
+
+
sonic-boom@3.8.1:
+
dependencies:
+
atomic-sleep: 1.0.0
+
+
sort-keys@2.0.0:
+
dependencies:
+
is-plain-obj: 1.1.0
+
+
sort-keys@4.2.0:
+
dependencies:
+
is-plain-obj: 2.1.0
+
+
source-map-support@0.5.13:
+
dependencies:
+
buffer-from: 1.1.2
+
source-map: 0.6.1
+
+
source-map@0.6.1: {}
+
+
spdx-correct@3.2.0:
+
dependencies:
+
spdx-expression-parse: 3.0.1
+
spdx-license-ids: 3.0.22
+
+
spdx-exceptions@2.5.0: {}
+
+
spdx-expression-parse@3.0.1:
+
dependencies:
+
spdx-exceptions: 2.5.0
+
spdx-license-ids: 3.0.22
+
+
spdx-license-ids@3.0.22: {}
+
+
split-on-first@1.1.0: {}
+
+
split2@3.2.2:
+
dependencies:
+
readable-stream: 3.6.2
+
+
split2@4.2.0: {}
+
+
split@1.0.1:
+
dependencies:
+
through: 2.3.8
+
+
sprintf-js@1.0.3: {}
+
+
sshpk@1.18.0:
+
dependencies:
+
asn1: 0.2.6
+
assert-plus: 1.0.0
+
bcrypt-pbkdf: 1.0.2
+
dashdash: 1.14.1
+
ecc-jsbn: 0.1.2
+
getpass: 0.1.7
+
jsbn: 0.1.1
+
safer-buffer: 2.1.2
+
tweetnacl: 0.14.5
+
+
ssri@8.0.1:
+
dependencies:
+
minipass: 3.3.6
+
+
stack-utils@2.0.6:
+
dependencies:
+
escape-string-regexp: 2.0.0
+
+
statuses@2.0.1: {}
+
+
stop-iteration-iterator@1.1.0:
+
dependencies:
+
es-errors: 1.3.0
+
internal-slot: 1.1.0
+
+
strict-uri-encode@2.0.0: {}
+
+
string-length@4.0.2:
+
dependencies:
+
char-regex: 1.0.2
+
strip-ansi: 6.0.1
+
+
string-width@1.0.2:
+
dependencies:
+
code-point-at: 1.1.0
+
is-fullwidth-code-point: 1.0.0
+
strip-ansi: 3.0.1
+
+
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.2
+
+
string.prototype.padend@3.1.6:
+
dependencies:
+
call-bind: 1.0.8
+
define-properties: 1.2.1
+
es-abstract: 1.24.0
+
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.24.0
+
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
+
+
string_decoder@1.1.1:
+
dependencies:
+
safe-buffer: 5.1.2
+
+
string_decoder@1.3.0:
+
dependencies:
+
safe-buffer: 5.2.1
+
+
strip-ansi@3.0.1:
+
dependencies:
+
ansi-regex: 2.1.1
+
+
strip-ansi@6.0.1:
+
dependencies:
+
ansi-regex: 5.0.1
+
+
strip-ansi@7.1.2:
+
dependencies:
+
ansi-regex: 6.2.2
+
+
strip-bom@3.0.0: {}
+
+
strip-bom@4.0.0: {}
+
+
strip-final-newline@2.0.0: {}
+
+
strip-indent@3.0.0:
+
dependencies:
+
min-indent: 1.0.1
+
+
strip-json-comments@3.1.1: {}
+
+
strong-log-transformer@2.1.0:
+
dependencies:
+
duplexer: 0.1.2
+
minimist: 1.2.8
+
through: 2.3.8
+
+
supports-color@5.5.0:
+
dependencies:
+
has-flag: 3.0.0
+
+
supports-color@7.2.0:
+
dependencies:
+
has-flag: 4.0.0
+
+
supports-color@8.1.1:
+
dependencies:
+
has-flag: 4.0.0
+
+
supports-hyperlinks@2.3.0:
+
dependencies:
+
has-flag: 4.0.0
+
supports-color: 7.2.0
+
+
supports-preserve-symlinks-flag@1.0.0: {}
+
+
tar@4.4.19:
+
dependencies:
+
chownr: 1.1.4
+
fs-minipass: 1.2.7
+
minipass: 2.9.0
+
minizlib: 1.3.3
+
mkdirp: 0.5.6
+
safe-buffer: 5.2.1
+
yallist: 3.1.1
+
+
tar@6.2.1:
+
dependencies:
+
chownr: 2.0.0
+
fs-minipass: 2.1.0
+
minipass: 5.0.0
+
minizlib: 2.1.2
+
mkdirp: 1.0.4
+
yallist: 4.0.0
+
+
temp-dir@1.0.0: {}
+
+
temp-write@4.0.0:
+
dependencies:
+
graceful-fs: 4.2.11
+
is-stream: 2.0.1
+
make-dir: 3.1.0
+
temp-dir: 1.0.0
+
uuid: 3.4.0
+
+
terminal-link@2.1.1:
+
dependencies:
+
ansi-escapes: 4.3.2
+
supports-hyperlinks: 2.3.0
+
+
test-exclude@6.0.0:
+
dependencies:
+
'@istanbuljs/schema': 0.1.3
+
glob: 7.2.3
+
minimatch: 3.1.2
+
+
text-extensions@1.9.0: {}
+
+
text-table@0.2.0: {}
+
+
thread-stream@2.7.0:
+
dependencies:
+
real-require: 0.2.0
+
+
through2@2.0.5:
+
dependencies:
+
readable-stream: 2.3.8
+
xtend: 4.0.2
+
+
through2@4.0.2:
+
dependencies:
+
readable-stream: 3.6.2
+
+
through@2.3.8: {}
+
+
tmp@0.0.33:
+
dependencies:
+
os-tmpdir: 1.0.2
+
+
tmpl@1.0.5: {}
+
+
to-regex-range@5.0.1:
+
dependencies:
+
is-number: 7.0.0
+
+
toidentifier@1.0.1: {}
+
+
tough-cookie@2.5.0:
+
dependencies:
+
psl: 1.15.0
+
punycode: 2.3.1
+
+
tr46@0.0.3: {}
+
+
tr46@2.1.0:
+
dependencies:
+
punycode: 2.3.1
+
+
trim-newlines@3.0.1: {}
+
+
ts-jest@28.0.8(@babel/core@7.28.4)(@jest/types@28.1.3)(babel-jest@28.1.3(@babel/core@7.28.4))(esbuild@0.14.54)(jest@28.1.3(@types/node@18.19.127)(ts-node@10.9.2(@types/node@18.19.127)(typescript@4.9.5)))(typescript@4.9.5):
+
dependencies:
+
bs-logger: 0.2.6
+
fast-json-stable-stringify: 2.1.0
+
jest: 28.1.3(@types/node@18.19.127)(ts-node@10.9.2(@types/node@18.19.127)(typescript@4.9.5))
+
jest-util: 28.1.3
+
json5: 2.2.3
+
lodash.memoize: 4.1.2
+
make-error: 1.3.6
+
semver: 7.7.2
+
typescript: 4.9.5
+
yargs-parser: 21.1.1
+
optionalDependencies:
+
'@babel/core': 7.28.4
+
'@jest/types': 28.1.3
+
babel-jest: 28.1.3(@babel/core@7.28.4)
+
esbuild: 0.14.54
+
+
ts-node@10.9.2(@types/node@18.19.127)(typescript@4.9.5):
+
dependencies:
+
'@cspotcode/source-map-support': 0.8.1
+
'@tsconfig/node10': 1.0.11
+
'@tsconfig/node12': 1.0.11
+
'@tsconfig/node14': 1.0.3
+
'@tsconfig/node16': 1.0.4
+
'@types/node': 18.19.127
+
acorn: 8.15.0
+
acorn-walk: 8.3.4
+
arg: 4.1.3
+
create-require: 1.1.1
+
diff: 4.0.2
+
make-error: 1.3.6
+
typescript: 4.9.5
+
v8-compile-cache-lib: 3.0.1
+
yn: 3.1.1
+
+
tslib@1.14.1: {}
+
+
tsutils@3.21.0(typescript@4.9.5):
+
dependencies:
+
tslib: 1.14.1
+
typescript: 4.9.5
+
+
tunnel-agent@0.6.0:
+
dependencies:
+
safe-buffer: 5.2.1
+
+
tweetnacl@0.14.5: {}
+
+
type-check@0.4.0:
+
dependencies:
+
prelude-ls: 1.2.1
+
+
type-detect@4.0.8: {}
+
+
type-fest@0.18.1: {}
+
+
type-fest@0.20.2: {}
+
+
type-fest@0.21.3: {}
+
+
type-fest@0.4.1: {}
+
+
type-fest@0.6.0: {}
+
+
type-fest@0.8.1: {}
+
+
type-fest@2.19.0: {}
+
+
type-is@1.6.18:
+
dependencies:
+
media-typer: 0.3.0
+
mime-types: 2.1.35
+
+
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
+
+
typedarray-to-buffer@3.1.5:
+
dependencies:
+
is-typedarray: 1.0.0
+
+
typedarray@0.0.6: {}
+
+
typescript@4.9.5: {}
+
+
uglify-js@3.19.3:
+
optional: true
+
+
uid-number@0.0.6: {}
+
+
uint8arrays@3.0.0:
+
dependencies:
+
multiformats: 9.9.0
+
+
umask@1.1.0: {}
+
+
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@5.26.5: {}
+
+
unicode-canonical-property-names-ecmascript@2.0.1: {}
+
+
unicode-match-property-ecmascript@2.0.0:
+
dependencies:
+
unicode-canonical-property-names-ecmascript: 2.0.1
+
unicode-property-aliases-ecmascript: 2.2.0
+
+
unicode-match-property-value-ecmascript@2.2.1: {}
+
+
unicode-property-aliases-ecmascript@2.2.0: {}
+
+
unique-filename@1.1.1:
+
dependencies:
+
unique-slug: 2.0.2
+
+
unique-slug@2.0.2:
+
dependencies:
+
imurmurhash: 0.1.4
+
+
universal-user-agent@6.0.1: {}
+
+
universalify@2.0.1: {}
+
+
unpipe@1.0.0: {}
+
+
upath@2.0.1: {}
+
+
update-browserslist-db@1.1.3(browserslist@4.26.2):
+
dependencies:
+
browserslist: 4.26.2
+
escalade: 3.2.0
+
picocolors: 1.1.1
+
+
uri-js@4.4.1:
+
dependencies:
+
punycode: 2.3.1
+
+
util-deprecate@1.0.2: {}
+
+
util-promisify@2.1.0:
+
dependencies:
+
object.getownpropertydescriptors: 2.1.8
+
+
utils-merge@1.0.1: {}
+
+
uuid@3.4.0: {}
+
+
v8-compile-cache-lib@3.0.1: {}
+
+
v8-to-istanbul@9.3.0:
+
dependencies:
+
'@jridgewell/trace-mapping': 0.3.31
+
'@types/istanbul-lib-coverage': 2.0.6
+
convert-source-map: 2.0.0
+
+
validate-npm-package-license@3.0.4:
+
dependencies:
+
spdx-correct: 3.2.0
+
spdx-expression-parse: 3.0.1
+
+
validate-npm-package-name@3.0.0:
+
dependencies:
+
builtins: 1.0.3
+
+
validate-npm-package-name@5.0.1: {}
+
+
vary@1.1.2: {}
+
+
verror@1.10.0:
+
dependencies:
+
assert-plus: 1.0.0
+
core-util-is: 1.0.2
+
extsprintf: 1.3.0
+
+
walker@1.0.8:
+
dependencies:
+
makeerror: 1.0.12
+
+
wcwidth@1.0.1:
+
dependencies:
+
defaults: 1.0.4
+
+
webidl-conversions@3.0.1: {}
+
+
webidl-conversions@6.1.0: {}
+
+
whatwg-url@5.0.0:
+
dependencies:
+
tr46: 0.0.3
+
webidl-conversions: 3.0.1
+
+
whatwg-url@8.7.0:
+
dependencies:
+
lodash: 4.17.21
+
tr46: 2.1.0
+
webidl-conversions: 6.1.0
+
+
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.19
+
+
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-typed-array@1.1.19:
+
dependencies:
+
available-typed-arrays: 1.0.7
+
call-bind: 1.0.8
+
call-bound: 1.0.4
+
for-each: 0.3.5
+
get-proto: 1.0.1
+
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
+
+
which@3.0.1:
+
dependencies:
+
isexe: 2.0.0
+
+
wide-align@1.1.5:
+
dependencies:
+
string-width: 1.0.2
+
+
word-wrap@1.2.5: {}
+
+
wordwrap@1.0.0: {}
+
+
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.3
+
string-width: 5.1.2
+
strip-ansi: 7.1.2
+
+
wrappy@1.0.2: {}
+
+
write-file-atomic@2.4.3:
+
dependencies:
+
graceful-fs: 4.2.11
+
imurmurhash: 0.1.4
+
signal-exit: 3.0.7
+
+
write-file-atomic@3.0.3:
+
dependencies:
+
imurmurhash: 0.1.4
+
is-typedarray: 1.0.0
+
signal-exit: 3.0.7
+
typedarray-to-buffer: 3.1.5
+
+
write-file-atomic@4.0.2:
+
dependencies:
+
imurmurhash: 0.1.4
+
signal-exit: 3.0.7
+
+
write-json-file@3.2.0:
+
dependencies:
+
detect-indent: 5.0.0
+
graceful-fs: 4.2.11
+
make-dir: 2.1.0
+
pify: 4.0.1
+
sort-keys: 2.0.0
+
write-file-atomic: 2.4.3
+
+
write-json-file@4.3.0:
+
dependencies:
+
detect-indent: 6.1.0
+
graceful-fs: 4.2.11
+
is-plain-obj: 2.1.0
+
make-dir: 3.1.0
+
sort-keys: 4.2.0
+
write-file-atomic: 3.0.3
+
+
write-pkg@4.0.0:
+
dependencies:
+
sort-keys: 2.0.0
+
type-fest: 0.4.1
+
write-json-file: 3.2.0
+
+
xtend@4.0.2: {}
+
+
y18n@5.0.8: {}
+
+
yallist@3.1.1: {}
+
+
yallist@4.0.0: {}
+
+
yaml@1.10.2: {}
+
+
yargs-parser@20.2.4: {}
+
+
yargs-parser@20.2.9: {}
+
+
yargs-parser@21.1.1: {}
+
+
yargs@16.2.0:
+
dependencies:
+
cliui: 7.0.4
+
escalade: 3.2.0
+
get-caller-file: 2.0.5
+
require-directory: 2.1.1
+
string-width: 4.2.3
+
y18n: 5.0.8
+
yargs-parser: 20.2.9
+
+
yargs@17.7.2:
+
dependencies:
+
cliui: 8.0.1
+
escalade: 3.2.0
+
get-caller-file: 2.0.5
+
require-directory: 2.1.1
+
string-width: 4.2.3
+
y18n: 5.0.8
+
yargs-parser: 21.1.1
+
+
yn@3.1.1: {}
+
+
yocto-queue@0.1.0: {}
+
+
zod@3.25.76: {}
+2
pnpm-workspace.yaml
···
+
packages:
+
- 'packages/*'