Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
nebula
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
exchain
nebula
Commits
366eb72a
Unverified
Commit
366eb72a
authored
Sep 14, 2023
by
mergify[bot]
Committed by
GitHub
Sep 14, 2023
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'develop' into inphi/txmgr-nonce
parents
097c4f3f
9758d096
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
112 additions
and
177 deletions
+112
-177
mighty-countries-drum.md
.changeset/mighty-countries-drum.md
+5
-0
smart-goats-camp.md
.changeset/smart-goats-camp.md
+5
-0
config.yml
.circleci/config.yml
+4
-0
types.ts
packages/sdk/src/interfaces/types.ts
+2
-0
chain-constants.ts
packages/sdk/src/utils/chain-constants.ts
+18
-0
pnpm-lock.yaml
pnpm-lock.yaml
+78
-177
No files found.
.changeset/mighty-countries-drum.md
0 → 100644
View file @
366eb72a
---
'
@eth-optimism/sdk'
:
patch
---
Adds Sepolia & OP Sepolia support to SDK
.changeset/smart-goats-camp.md
0 → 100644
View file @
366eb72a
---
'
@eth-optimism/contracts-bedrock'
:
patch
---
bumps sdk version to have access to sepolia deployments
.circleci/config.yml
View file @
366eb72a
...
@@ -863,6 +863,10 @@ jobs:
...
@@ -863,6 +863,10 @@ jobs:
name
:
Lint
name
:
Lint
command
:
golangci-lint run -E goimports,sqlclosecheck,bodyclose,asciicheck,misspell,errorlint --timeout 4m -e "errors.As" -e "errors.Is" ./...
command
:
golangci-lint run -E goimports,sqlclosecheck,bodyclose,asciicheck,misspell,errorlint --timeout 4m -e "errors.As" -e "errors.Is" ./...
working_directory
:
indexer
working_directory
:
indexer
-
run
:
name
:
Check generated code
command
:
npm run generate && git diff --exit-code
working_directory
:
indexer/api-ts
-
run
:
-
run
:
name
:
install geth
name
:
install geth
command
:
make install-geth
command
:
make install-geth
...
...
packages/sdk/src/interfaces/types.ts
View file @
366eb72a
...
@@ -15,6 +15,7 @@ import { IBridgeAdapter } from './bridge-adapter'
...
@@ -15,6 +15,7 @@ import { IBridgeAdapter } from './bridge-adapter'
export
enum
L1ChainID
{
export
enum
L1ChainID
{
MAINNET
=
1
,
MAINNET
=
1
,
GOERLI
=
5
,
GOERLI
=
5
,
SEPOLIA
=
11155111
,
HARDHAT_LOCAL
=
31337
,
HARDHAT_LOCAL
=
31337
,
BEDROCK_LOCAL_DEVNET
=
900
,
BEDROCK_LOCAL_DEVNET
=
900
,
}
}
...
@@ -25,6 +26,7 @@ export enum L1ChainID {
...
@@ -25,6 +26,7 @@ export enum L1ChainID {
export
enum
L2ChainID
{
export
enum
L2ChainID
{
OPTIMISM
=
10
,
OPTIMISM
=
10
,
OPTIMISM_GOERLI
=
420
,
OPTIMISM_GOERLI
=
420
,
OPTIMISM_SEPOLIA
=
11155420
,
OPTIMISM_HARDHAT_LOCAL
=
31337
,
OPTIMISM_HARDHAT_LOCAL
=
31337
,
OPTIMISM_HARDHAT_DEVNET
=
17
,
OPTIMISM_HARDHAT_DEVNET
=
17
,
OPTIMISM_BEDROCK_ALPHA_TESTNET
=
28528
,
OPTIMISM_BEDROCK_ALPHA_TESTNET
=
28528
,
...
...
packages/sdk/src/utils/chain-constants.ts
View file @
366eb72a
...
@@ -2,50 +2,62 @@ import { predeploys } from '@eth-optimism/core-utils'
...
@@ -2,50 +2,62 @@ import { predeploys } from '@eth-optimism/core-utils'
import
{
ethers
}
from
'
ethers
'
import
{
ethers
}
from
'
ethers
'
import
portalArtifactsMainnet
from
'
@eth-optimism/contracts-bedrock/deployments/mainnet/OptimismPortalProxy.json
'
import
portalArtifactsMainnet
from
'
@eth-optimism/contracts-bedrock/deployments/mainnet/OptimismPortalProxy.json
'
import
portalArtifactsGoerli
from
'
@eth-optimism/contracts-bedrock/deployments/goerli/OptimismPortalProxy.json
'
import
portalArtifactsGoerli
from
'
@eth-optimism/contracts-bedrock/deployments/goerli/OptimismPortalProxy.json
'
import
portalArtifactsSepolia
from
'
@eth-optimism/contracts-bedrock/deployments/sepolia/OptimismPortalProxy.json
'
import
l2OutputOracleArtifactsMainnet
from
'
@eth-optimism/contracts-bedrock/deployments/mainnet/L2OutputOracleProxy.json
'
import
l2OutputOracleArtifactsMainnet
from
'
@eth-optimism/contracts-bedrock/deployments/mainnet/L2OutputOracleProxy.json
'
import
l2OutputOracleArtifactsGoerli
from
'
@eth-optimism/contracts-bedrock/deployments/goerli/L2OutputOracleProxy.json
'
import
l2OutputOracleArtifactsGoerli
from
'
@eth-optimism/contracts-bedrock/deployments/goerli/L2OutputOracleProxy.json
'
import
l2OutputOracleArtifactsSepolia
from
'
@eth-optimism/contracts-bedrock/deployments/sepolia/L2OutputOracleProxy.json
'
import
addressManagerArtifactMainnet
from
'
@eth-optimism/contracts-bedrock/deployments/mainnet/AddressManager.json
'
import
addressManagerArtifactMainnet
from
'
@eth-optimism/contracts-bedrock/deployments/mainnet/AddressManager.json
'
import
addressManagerArtifactGoerli
from
'
@eth-optimism/contracts-bedrock/deployments/goerli/AddressManager.json
'
import
addressManagerArtifactGoerli
from
'
@eth-optimism/contracts-bedrock/deployments/goerli/AddressManager.json
'
import
addressManagerArtifactSepolia
from
'
@eth-optimism/contracts-bedrock/deployments/sepolia/AddressManager.json
'
import
l1StandardBridgeArtifactMainnet
from
'
@eth-optimism/contracts-bedrock/deployments/mainnet/L1StandardBridgeProxy.json
'
import
l1StandardBridgeArtifactMainnet
from
'
@eth-optimism/contracts-bedrock/deployments/mainnet/L1StandardBridgeProxy.json
'
import
l1StandardBridgeArtifactGoerli
from
'
@eth-optimism/contracts-bedrock/deployments/goerli/L1StandardBridgeProxy.json
'
import
l1StandardBridgeArtifactGoerli
from
'
@eth-optimism/contracts-bedrock/deployments/goerli/L1StandardBridgeProxy.json
'
import
l1StandardBridgeArtifactSepolia
from
'
@eth-optimism/contracts-bedrock/deployments/sepolia/L1StandardBridgeProxy.json
'
import
l1CrossDomainMessengerArtifactMainnet
from
'
@eth-optimism/contracts-bedrock/deployments/mainnet/L1CrossDomainMessengerProxy.json
'
import
l1CrossDomainMessengerArtifactMainnet
from
'
@eth-optimism/contracts-bedrock/deployments/mainnet/L1CrossDomainMessengerProxy.json
'
import
l1CrossDomainMessengerArtifactGoerli
from
'
@eth-optimism/contracts-bedrock/deployments/goerli/L1CrossDomainMessengerProxy.json
'
import
l1CrossDomainMessengerArtifactGoerli
from
'
@eth-optimism/contracts-bedrock/deployments/goerli/L1CrossDomainMessengerProxy.json
'
import
l1CrossDomainMessengerArtifactSepolia
from
'
@eth-optimism/contracts-bedrock/deployments/sepolia/L1CrossDomainMessengerProxy.json
'
const
portalAddresses
=
{
const
portalAddresses
=
{
mainnet
:
portalArtifactsMainnet
.
address
,
mainnet
:
portalArtifactsMainnet
.
address
,
goerli
:
portalArtifactsGoerli
.
address
,
goerli
:
portalArtifactsGoerli
.
address
,
sepolia
:
portalArtifactsSepolia
.
address
,
}
}
const
l2OutputOracleAddresses
=
{
const
l2OutputOracleAddresses
=
{
mainnet
:
l2OutputOracleArtifactsMainnet
.
address
,
mainnet
:
l2OutputOracleArtifactsMainnet
.
address
,
goerli
:
l2OutputOracleArtifactsGoerli
.
address
,
goerli
:
l2OutputOracleArtifactsGoerli
.
address
,
sepolia
:
l2OutputOracleArtifactsSepolia
.
address
,
}
}
const
addressManagerAddresses
=
{
const
addressManagerAddresses
=
{
mainnet
:
addressManagerArtifactMainnet
.
address
,
mainnet
:
addressManagerArtifactMainnet
.
address
,
goerli
:
addressManagerArtifactGoerli
.
address
,
goerli
:
addressManagerArtifactGoerli
.
address
,
sepolia
:
addressManagerArtifactSepolia
.
address
,
}
}
const
l1StandardBridgeAddresses
=
{
const
l1StandardBridgeAddresses
=
{
mainnet
:
l1StandardBridgeArtifactMainnet
.
address
,
mainnet
:
l1StandardBridgeArtifactMainnet
.
address
,
goerli
:
l1StandardBridgeArtifactGoerli
.
address
,
goerli
:
l1StandardBridgeArtifactGoerli
.
address
,
sepolia
:
l1StandardBridgeArtifactSepolia
.
address
,
}
}
const
l1CrossDomainMessengerAddresses
=
{
const
l1CrossDomainMessengerAddresses
=
{
mainnet
:
l1CrossDomainMessengerArtifactMainnet
.
address
,
mainnet
:
l1CrossDomainMessengerArtifactMainnet
.
address
,
goerli
:
l1CrossDomainMessengerArtifactGoerli
.
address
,
goerli
:
l1CrossDomainMessengerArtifactGoerli
.
address
,
sepolia
:
l1CrossDomainMessengerArtifactSepolia
.
address
,
}
}
// legacy
// legacy
const
stateCommitmentChainAddresses
=
{
const
stateCommitmentChainAddresses
=
{
mainnet
:
'
0xBe5dAb4A2e9cd0F27300dB4aB94BeE3A233AEB19
'
,
mainnet
:
'
0xBe5dAb4A2e9cd0F27300dB4aB94BeE3A233AEB19
'
,
goerli
:
'
0x9c945aC97Baf48cB784AbBB61399beB71aF7A378
'
,
goerli
:
'
0x9c945aC97Baf48cB784AbBB61399beB71aF7A378
'
,
sepolia
:
ethers
.
constants
.
AddressZero
,
}
}
// legacy
// legacy
const
canonicalTransactionChainAddresses
=
{
const
canonicalTransactionChainAddresses
=
{
mainnet
:
'
0x5E4e65926BA27467555EB562121fac00D24E9dD2
'
,
mainnet
:
'
0x5E4e65926BA27467555EB562121fac00D24E9dD2
'
,
goerli
:
'
0x607F755149cFEB3a14E1Dc3A4E2450Cde7dfb04D
'
,
goerli
:
'
0x607F755149cFEB3a14E1Dc3A4E2450Cde7dfb04D
'
,
sepolia
:
ethers
.
constants
.
AddressZero
,
}
}
import
{
import
{
...
@@ -67,6 +79,7 @@ export const DEPOSIT_CONFIRMATION_BLOCKS: {
...
@@ -67,6 +79,7 @@ export const DEPOSIT_CONFIRMATION_BLOCKS: {
}
=
{
}
=
{
[
L2ChainID
.
OPTIMISM
]:
50
as
const
,
[
L2ChainID
.
OPTIMISM
]:
50
as
const
,
[
L2ChainID
.
OPTIMISM_GOERLI
]:
12
as
const
,
[
L2ChainID
.
OPTIMISM_GOERLI
]:
12
as
const
,
[
L2ChainID
.
OPTIMISM_SEPOLIA
]:
12
as
const
,
[
L2ChainID
.
OPTIMISM_HARDHAT_LOCAL
]:
2
as
const
,
[
L2ChainID
.
OPTIMISM_HARDHAT_LOCAL
]:
2
as
const
,
[
L2ChainID
.
OPTIMISM_HARDHAT_DEVNET
]:
2
as
const
,
[
L2ChainID
.
OPTIMISM_HARDHAT_DEVNET
]:
2
as
const
,
[
L2ChainID
.
OPTIMISM_BEDROCK_ALPHA_TESTNET
]:
12
as
const
,
[
L2ChainID
.
OPTIMISM_BEDROCK_ALPHA_TESTNET
]:
12
as
const
,
...
@@ -81,6 +94,7 @@ export const CHAIN_BLOCK_TIMES: {
...
@@ -81,6 +94,7 @@ export const CHAIN_BLOCK_TIMES: {
}
=
{
}
=
{
[
L1ChainID
.
MAINNET
]:
13
as
const
,
[
L1ChainID
.
MAINNET
]:
13
as
const
,
[
L1ChainID
.
GOERLI
]:
15
as
const
,
[
L1ChainID
.
GOERLI
]:
15
as
const
,
[
L1ChainID
.
SEPOLIA
]:
15
as
const
,
[
L1ChainID
.
HARDHAT_LOCAL
]:
1
as
const
,
[
L1ChainID
.
HARDHAT_LOCAL
]:
1
as
const
,
[
L1ChainID
.
BEDROCK_LOCAL_DEVNET
]:
15
as
const
,
[
L1ChainID
.
BEDROCK_LOCAL_DEVNET
]:
15
as
const
,
}
}
...
@@ -137,6 +151,10 @@ export const CONTRACT_ADDRESSES: {
...
@@ -137,6 +151,10 @@ export const CONTRACT_ADDRESSES: {
l1
:
getL1ContractsByNetworkName
(
'
goerli
'
),
l1
:
getL1ContractsByNetworkName
(
'
goerli
'
),
l2
:
DEFAULT_L2_CONTRACT_ADDRESSES
,
l2
:
DEFAULT_L2_CONTRACT_ADDRESSES
,
},
},
[
L2ChainID
.
OPTIMISM_SEPOLIA
]:
{
l1
:
getL1ContractsByNetworkName
(
'
sepolia
'
),
l2
:
DEFAULT_L2_CONTRACT_ADDRESSES
,
},
[
L2ChainID
.
OPTIMISM_HARDHAT_LOCAL
]:
{
[
L2ChainID
.
OPTIMISM_HARDHAT_LOCAL
]:
{
l1
:
{
l1
:
{
AddressManager
:
'
0x5FbDB2315678afecb367f032d93F642f64180aa3
'
as
const
,
AddressManager
:
'
0x5FbDB2315678afecb367f032d93F642f64180aa3
'
as
const
,
...
...
pnpm-lock.yaml
View file @
366eb72a
...
@@ -17,7 +17,7 @@ importers:
...
@@ -17,7 +17,7 @@ importers:
devDependencies
:
devDependencies
:
'
@babel/eslint-parser'
:
'
@babel/eslint-parser'
:
specifier
:
^7.18.2
specifier
:
^7.18.2
version
:
7.22.15(@babel/core@7.22.10)(eslint@8.4
7
.0)
version
:
7.22.15(@babel/core@7.22.10)(eslint@8.4
9
.0)
'
@changesets/changelog-github'
:
'
@changesets/changelog-github'
:
specifier
:
^0.4.8
specifier
:
^0.4.8
version
:
0.4.8
version
:
0.4.8
...
@@ -35,13 +35,13 @@ importers:
...
@@ -35,13 +35,13 @@ importers:
version
:
10.0.1
version
:
10.0.1
'
@types/node'
:
'
@types/node'
:
specifier
:
^20.5.3
specifier
:
^20.5.3
version
:
20.
5.3
version
:
20.
6.0
'
@typescript-eslint/eslint-plugin'
:
'
@typescript-eslint/eslint-plugin'
:
specifier
:
^6.7.0
specifier
:
^6.7.0
version
:
6.7.0(@typescript-eslint/parser@5.60.1)(eslint@8.4
7
.0)(typescript@5.1.6)
version
:
6.7.0(@typescript-eslint/parser@5.60.1)(eslint@8.4
9
.0)(typescript@5.1.6)
'
@typescript-eslint/parser'
:
'
@typescript-eslint/parser'
:
specifier
:
^5.60.1
specifier
:
^5.60.1
version
:
5.60.1(eslint@8.4
7
.0)(typescript@5.1.6)
version
:
5.60.1(eslint@8.4
9
.0)(typescript@5.1.6)
chai
:
chai
:
specifier
:
^4.2.0
specifier
:
^4.2.0
version
:
4.3.7
version
:
4.3.7
...
@@ -53,37 +53,37 @@ importers:
...
@@ -53,37 +53,37 @@ importers:
version
:
2.2.1
version
:
2.2.1
eslint
:
eslint
:
specifier
:
^8.43.0
specifier
:
^8.43.0
version
:
8.4
7
.0
version
:
8.4
9
.0
eslint-config-prettier
:
eslint-config-prettier
:
specifier
:
^8.3.0
specifier
:
^8.3.0
version
:
8.3.0(eslint@8.4
7
.0)
version
:
8.3.0(eslint@8.4
9
.0)
eslint-config-standard
:
eslint-config-standard
:
specifier
:
^16.0.3
specifier
:
^16.0.3
version
:
16.0.3(eslint-plugin-import@2.28.1)(eslint-plugin-node@11.1.0)(eslint-plugin-promise@5.2.0)(eslint@8.4
7
.0)
version
:
16.0.3(eslint-plugin-import@2.28.1)(eslint-plugin-node@11.1.0)(eslint-plugin-promise@5.2.0)(eslint@8.4
9
.0)
eslint-plugin-import
:
eslint-plugin-import
:
specifier
:
^2.26.0
specifier
:
^2.26.0
version
:
2.28.1(@typescript-eslint/parser@5.60.1)(eslint@8.4
7
.0)
version
:
2.28.1(@typescript-eslint/parser@5.60.1)(eslint@8.4
9
.0)
eslint-plugin-jsdoc
:
eslint-plugin-jsdoc
:
specifier
:
^35.1.2
specifier
:
^35.1.2
version
:
35.5.1(eslint@8.4
7
.0)
version
:
35.5.1(eslint@8.4
9
.0)
eslint-plugin-node
:
eslint-plugin-node
:
specifier
:
^11.1.0
specifier
:
^11.1.0
version
:
11.1.0(eslint@8.4
7
.0)
version
:
11.1.0(eslint@8.4
9
.0)
eslint-plugin-prefer-arrow
:
eslint-plugin-prefer-arrow
:
specifier
:
^1.2.3
specifier
:
^1.2.3
version
:
1.2.3(eslint@8.4
7
.0)
version
:
1.2.3(eslint@8.4
9
.0)
eslint-plugin-prettier
:
eslint-plugin-prettier
:
specifier
:
^4.0.0
specifier
:
^4.0.0
version
:
4.2.1(eslint-config-prettier@8.3.0)(eslint@8.4
7
.0)(prettier@2.8.8)
version
:
4.2.1(eslint-config-prettier@8.3.0)(eslint@8.4
9
.0)(prettier@2.8.8)
eslint-plugin-promise
:
eslint-plugin-promise
:
specifier
:
^5.1.0
specifier
:
^5.1.0
version
:
5.2.0(eslint@8.4
7
.0)
version
:
5.2.0(eslint@8.4
9
.0)
eslint-plugin-react
:
eslint-plugin-react
:
specifier
:
^7.24.0
specifier
:
^7.24.0
version
:
7.33.2(eslint@8.4
7
.0)
version
:
7.33.2(eslint@8.4
9
.0)
eslint-plugin-unicorn
:
eslint-plugin-unicorn
:
specifier
:
^42.0.0
specifier
:
^42.0.0
version
:
42.0.0(eslint@8.4
7
.0)
version
:
42.0.0(eslint@8.4
9
.0)
husky
:
husky
:
specifier
:
^8.0.3
specifier
:
^8.0.3
version
:
8.0.3
version
:
8.0.3
...
@@ -333,7 +333,7 @@ importers:
...
@@ -333,7 +333,7 @@ importers:
version
:
5.1.6
version
:
5.1.6
vite
:
vite
:
specifier
:
^4.4.6
specifier
:
^4.4.6
version
:
4.4.6(@types/node@20.
5.3
)
version
:
4.4.6(@types/node@20.
6.0
)
vitest
:
vitest
:
specifier
:
^0.34.2
specifier
:
^0.34.2
version
:
0.34.2(jsdom@22.1.0)
version
:
0.34.2(jsdom@22.1.0)
...
@@ -427,7 +427,7 @@ importers:
...
@@ -427,7 +427,7 @@ importers:
version
:
1.3.1(typescript@5.1.6)
version
:
1.3.1(typescript@5.1.6)
vite
:
vite
:
specifier
:
^4.4.6
specifier
:
^4.4.6
version
:
4.4.6(@types/node@20.
5.3
)
version
:
4.4.6(@types/node@20.
6.0
)
vitest
:
vitest
:
specifier
:
^0.34.2
specifier
:
^0.34.2
version
:
0.34.2(jsdom@22.1.0)
version
:
0.34.2(jsdom@22.1.0)
...
@@ -558,7 +558,7 @@ importers:
...
@@ -558,7 +558,7 @@ importers:
version
:
1.6.0(typescript@5.1.6)(zod@3.22.0)
version
:
1.6.0(typescript@5.1.6)(zod@3.22.0)
vite
:
vite
:
specifier
:
^4.4.9
specifier
:
^4.4.9
version
:
4.4.9(@types/node@20.
5.3
)
version
:
4.4.9(@types/node@20.
6.0
)
vitest
:
vitest
:
specifier
:
^0.34.1
specifier
:
^0.34.1
version
:
0.34.1
version
:
0.34.1
...
@@ -623,7 +623,7 @@ packages:
...
@@ -623,7 +623,7 @@ packages:
-
supports-color
-
supports-color
dev
:
true
dev
:
true
/@babel/eslint-parser@7.22.15(@babel/core@7.22.10)(eslint@8.4
7
.0)
:
/@babel/eslint-parser@7.22.15(@babel/core@7.22.10)(eslint@8.4
9
.0)
:
resolution
:
{
integrity
:
sha512-yc8OOBIQk1EcRrpizuARSQS0TWAcOMpEJ1aafhNznaeYkeL+OhqnDObGFylB8ka8VFF/sZc+S4RzHyO+3LjQxg==
}
resolution
:
{
integrity
:
sha512-yc8OOBIQk1EcRrpizuARSQS0TWAcOMpEJ1aafhNznaeYkeL+OhqnDObGFylB8ka8VFF/sZc+S4RzHyO+3LjQxg==
}
engines
:
{
node
:
^10.13.0 || ^12.13.0 || >=14.0.0
}
engines
:
{
node
:
^10.13.0 || ^12.13.0 || >=14.0.0
}
peerDependencies
:
peerDependencies
:
...
@@ -632,7 +632,7 @@ packages:
...
@@ -632,7 +632,7 @@ packages:
dependencies
:
dependencies
:
'
@babel/core'
:
7.22.10
'
@babel/core'
:
7.22.10
'
@nicolo-ribaudo/eslint-scope-5-internals'
:
5.1.1-v1
'
@nicolo-ribaudo/eslint-scope-5-internals'
:
5.1.1-v1
eslint
:
8.4
7
.0
eslint
:
8.4
9
.0
eslint-visitor-keys
:
2.1.0
eslint-visitor-keys
:
2.1.0
semver
:
6.3.1
semver
:
6.3.1
dev
:
true
dev
:
true
...
@@ -1591,16 +1591,6 @@ packages:
...
@@ -1591,16 +1591,6 @@ packages:
dev
:
true
dev
:
true
optional
:
true
optional
:
true
/@eslint-community/eslint-utils@4.4.0(eslint@8.47.0)
:
resolution
:
{
integrity
:
sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==
}
engines
:
{
node
:
^12.22.0 || ^14.17.0 || >=16.0.0
}
peerDependencies
:
eslint
:
^6.0.0 || ^7.0.0 || >=8.0.0
dependencies
:
eslint
:
8.47.0
eslint-visitor-keys
:
3.4.3
dev
:
true
/@eslint-community/eslint-utils@4.4.0(eslint@8.49.0)
:
/@eslint-community/eslint-utils@4.4.0(eslint@8.49.0)
:
resolution
:
{
integrity
:
sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==
}
resolution
:
{
integrity
:
sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==
}
engines
:
{
node
:
^12.22.0 || ^14.17.0 || >=16.0.0
}
engines
:
{
node
:
^12.22.0 || ^14.17.0 || >=16.0.0
}
...
@@ -3789,7 +3779,7 @@ packages:
...
@@ -3789,7 +3779,7 @@ packages:
resolution
:
{
integrity
:
sha512-IO+MJPVhoqz+28h1qLAcBEH2+xHMK6MTyHJc7MTnnYb6wsoLR29POVGJ7LycmVXIqyy/4/2ShP5sUwTXuOwb/w==
}
resolution
:
{
integrity
:
sha512-IO+MJPVhoqz+28h1qLAcBEH2+xHMK6MTyHJc7MTnnYb6wsoLR29POVGJ7LycmVXIqyy/4/2ShP5sUwTXuOwb/w==
}
dependencies
:
dependencies
:
'
@types/minimatch'
:
5.1.2
'
@types/minimatch'
:
5.1.2
'
@types/node'
:
20.
5.3
'
@types/node'
:
20.
6.0
dev
:
true
dev
:
true
/@types/is-ci@3.0.0
:
/@types/is-ci@3.0.0
:
...
@@ -3858,7 +3848,7 @@ packages:
...
@@ -3858,7 +3848,7 @@ packages:
/@types/morgan@1.9.4
:
/@types/morgan@1.9.4
:
resolution
:
{
integrity
:
sha512-cXoc4k+6+YAllH3ZHmx4hf7La1dzUk6keTR4bF4b4Sc0mZxU/zK4wO7l+ZzezXm/jkYj/qC+uYGZrarZdIVvyQ==
}
resolution
:
{
integrity
:
sha512-cXoc4k+6+YAllH3ZHmx4hf7La1dzUk6keTR4bF4b4Sc0mZxU/zK4wO7l+ZzezXm/jkYj/qC+uYGZrarZdIVvyQ==
}
dependencies
:
dependencies
:
'
@types/node'
:
20.
5.3
'
@types/node'
:
20.
6.0
dev
:
true
dev
:
true
/@types/ms@0.7.31
:
/@types/ms@0.7.31
:
...
@@ -3882,10 +3872,6 @@ packages:
...
@@ -3882,10 +3872,6 @@ packages:
resolution
:
{
integrity
:
sha512-Mgq7eCtoTjT89FqNoTzzXg2XvCi5VMhRV6+I2aYanc6kQCBImeNaAYRs/DyoVqk1YEUJK5gN9VO7HRIdz4Wo3Q==
}
resolution
:
{
integrity
:
sha512-Mgq7eCtoTjT89FqNoTzzXg2XvCi5VMhRV6+I2aYanc6kQCBImeNaAYRs/DyoVqk1YEUJK5gN9VO7HRIdz4Wo3Q==
}
dev
:
true
dev
:
true
/@types/node@20.5.3
:
resolution
:
{
integrity
:
sha512-ITI7rbWczR8a/S6qjAW7DMqxqFMjjTo61qZVWJ1ubPvbIQsL5D/TvwjYEalM8Kthpe3hTzOGrF2TGbAu2uyqeA==
}
dev
:
true
/@types/node@20.6.0
:
/@types/node@20.6.0
:
resolution
:
{
integrity
:
sha512-najjVq5KN2vsH2U/xyh2opaSEz6cZMR2SetLIlxlj08nOcmPOemJmUK2o4kUzfLqfrWE0PIrNeE16XhYDd3nqg==
}
resolution
:
{
integrity
:
sha512-najjVq5KN2vsH2U/xyh2opaSEz6cZMR2SetLIlxlj08nOcmPOemJmUK2o4kUzfLqfrWE0PIrNeE16XhYDd3nqg==
}
...
@@ -4057,7 +4043,7 @@ packages:
...
@@ -4057,7 +4043,7 @@ packages:
'
@types/node'
:
20.6.0
'
@types/node'
:
20.6.0
dev
:
true
dev
:
true
/@typescript-eslint/eslint-plugin@6.7.0(@typescript-eslint/parser@5.60.1)(eslint@8.4
7
.0)(typescript@5.1.6)
:
/@typescript-eslint/eslint-plugin@6.7.0(@typescript-eslint/parser@5.60.1)(eslint@8.4
9
.0)(typescript@5.1.6)
:
resolution
:
{
integrity
:
sha512-gUqtknHm0TDs1LhY12K2NA3Rmlmp88jK9Tx8vGZMfHeNMLE3GH2e9TRub+y+SOjuYgtOmok+wt1AyDPZqxbNag==
}
resolution
:
{
integrity
:
sha512-gUqtknHm0TDs1LhY12K2NA3Rmlmp88jK9Tx8vGZMfHeNMLE3GH2e9TRub+y+SOjuYgtOmok+wt1AyDPZqxbNag==
}
engines
:
{
node
:
^16.0.0 || >=18.0.0
}
engines
:
{
node
:
^16.0.0 || >=18.0.0
}
peerDependencies
:
peerDependencies
:
...
@@ -4069,13 +4055,13 @@ packages:
...
@@ -4069,13 +4055,13 @@ packages:
optional
:
true
optional
:
true
dependencies
:
dependencies
:
'
@eslint-community/regexpp'
:
4.6.2
'
@eslint-community/regexpp'
:
4.6.2
'
@typescript-eslint/parser'
:
5.60.1(eslint@8.4
7
.0)(typescript@5.1.6)
'
@typescript-eslint/parser'
:
5.60.1(eslint@8.4
9
.0)(typescript@5.1.6)
'
@typescript-eslint/scope-manager'
:
6.7.0
'
@typescript-eslint/scope-manager'
:
6.7.0
'
@typescript-eslint/type-utils'
:
6.7.0(eslint@8.4
7
.0)(typescript@5.1.6)
'
@typescript-eslint/type-utils'
:
6.7.0(eslint@8.4
9
.0)(typescript@5.1.6)
'
@typescript-eslint/utils'
:
6.7.0(eslint@8.4
7
.0)(typescript@5.1.6)
'
@typescript-eslint/utils'
:
6.7.0(eslint@8.4
9
.0)(typescript@5.1.6)
'
@typescript-eslint/visitor-keys'
:
6.7.0
'
@typescript-eslint/visitor-keys'
:
6.7.0
debug
:
4.3.4(supports-color@8.1.1)
debug
:
4.3.4(supports-color@8.1.1)
eslint
:
8.4
7
.0
eslint
:
8.4
9
.0
graphemer
:
1.4.0
graphemer
:
1.4.0
ignore
:
5.2.4
ignore
:
5.2.4
natural-compare
:
1.4.0
natural-compare
:
1.4.0
...
@@ -4115,7 +4101,7 @@ packages:
...
@@ -4115,7 +4101,7 @@ packages:
-
supports-color
-
supports-color
dev
:
true
dev
:
true
/@typescript-eslint/parser@5.60.1(eslint@8.4
7
.0)(typescript@5.1.6)
:
/@typescript-eslint/parser@5.60.1(eslint@8.4
9
.0)(typescript@5.1.6)
:
resolution
:
{
integrity
:
sha512-pHWlc3alg2oSMGwsU/Is8hbm3XFbcrb6P5wIxcQW9NsYBfnrubl/GhVVD/Jm/t8HXhA2WncoIRfBtnCgRGV96Q==
}
resolution
:
{
integrity
:
sha512-pHWlc3alg2oSMGwsU/Is8hbm3XFbcrb6P5wIxcQW9NsYBfnrubl/GhVVD/Jm/t8HXhA2WncoIRfBtnCgRGV96Q==
}
engines
:
{
node
:
^12.22.0 || ^14.17.0 || >=16.0.0
}
engines
:
{
node
:
^12.22.0 || ^14.17.0 || >=16.0.0
}
peerDependencies
:
peerDependencies
:
...
@@ -4129,7 +4115,7 @@ packages:
...
@@ -4129,7 +4115,7 @@ packages:
'
@typescript-eslint/types'
:
5.60.1
'
@typescript-eslint/types'
:
5.60.1
'
@typescript-eslint/typescript-estree'
:
5.60.1(typescript@5.1.6)
'
@typescript-eslint/typescript-estree'
:
5.60.1(typescript@5.1.6)
debug
:
4.3.4(supports-color@8.1.1)
debug
:
4.3.4(supports-color@8.1.1)
eslint
:
8.4
7
.0
eslint
:
8.4
9
.0
typescript
:
5.1.6
typescript
:
5.1.6
transitivePeerDependencies
:
transitivePeerDependencies
:
-
supports-color
-
supports-color
...
@@ -4180,26 +4166,6 @@ packages:
...
@@ -4180,26 +4166,6 @@ packages:
'
@typescript-eslint/visitor-keys'
:
6.7.0
'
@typescript-eslint/visitor-keys'
:
6.7.0
dev
:
true
dev
:
true
/@typescript-eslint/type-utils@6.7.0(eslint@8.47.0)(typescript@5.1.6)
:
resolution
:
{
integrity
:
sha512-f/QabJgDAlpSz3qduCyQT0Fw7hHpmhOzY/Rv6zO3yO+HVIdPfIWhrQoAyG+uZVtWAIS85zAyzgAFfyEr+MgBpg==
}
engines
:
{
node
:
^16.0.0 || >=18.0.0
}
peerDependencies
:
eslint
:
^7.0.0 || ^8.0.0
typescript
:
'
*'
peerDependenciesMeta
:
typescript
:
optional
:
true
dependencies
:
'
@typescript-eslint/typescript-estree'
:
6.7.0(typescript@5.1.6)
'
@typescript-eslint/utils'
:
6.7.0(eslint@8.47.0)(typescript@5.1.6)
debug
:
4.3.4(supports-color@8.1.1)
eslint
:
8.47.0
ts-api-utils
:
1.0.1(typescript@5.1.6)
typescript
:
5.1.6
transitivePeerDependencies
:
-
supports-color
dev
:
true
/@typescript-eslint/type-utils@6.7.0(eslint@8.49.0)(typescript@5.1.6)
:
/@typescript-eslint/type-utils@6.7.0(eslint@8.49.0)(typescript@5.1.6)
:
resolution
:
{
integrity
:
sha512-f/QabJgDAlpSz3qduCyQT0Fw7hHpmhOzY/Rv6zO3yO+HVIdPfIWhrQoAyG+uZVtWAIS85zAyzgAFfyEr+MgBpg==
}
resolution
:
{
integrity
:
sha512-f/QabJgDAlpSz3qduCyQT0Fw7hHpmhOzY/Rv6zO3yO+HVIdPfIWhrQoAyG+uZVtWAIS85zAyzgAFfyEr+MgBpg==
}
engines
:
{
node
:
^16.0.0 || >=18.0.0
}
engines
:
{
node
:
^16.0.0 || >=18.0.0
}
...
@@ -4298,25 +4264,6 @@ packages:
...
@@ -4298,25 +4264,6 @@ packages:
-
supports-color
-
supports-color
dev
:
true
dev
:
true
/@typescript-eslint/utils@6.7.0(eslint@8.47.0)(typescript@5.1.6)
:
resolution
:
{
integrity
:
sha512-MfCq3cM0vh2slSikQYqK2Gq52gvOhe57vD2RM3V4gQRZYX4rDPnKLu5p6cm89+LJiGlwEXU8hkYxhqqEC/V3qA==
}
engines
:
{
node
:
^16.0.0 || >=18.0.0
}
peerDependencies
:
eslint
:
^7.0.0 || ^8.0.0
dependencies
:
'
@eslint-community/eslint-utils'
:
4.4.0(eslint@8.47.0)
'
@types/json-schema'
:
7.0.12
'
@types/semver'
:
7.5.0
'
@typescript-eslint/scope-manager'
:
6.7.0
'
@typescript-eslint/types'
:
6.7.0
'
@typescript-eslint/typescript-estree'
:
6.7.0(typescript@5.1.6)
eslint
:
8.47.0
semver
:
7.5.4
transitivePeerDependencies
:
-
supports-color
-
typescript
dev
:
true
/@typescript-eslint/utils@6.7.0(eslint@8.49.0)(typescript@5.1.6)
:
/@typescript-eslint/utils@6.7.0(eslint@8.49.0)(typescript@5.1.6)
:
resolution
:
{
integrity
:
sha512-MfCq3cM0vh2slSikQYqK2Gq52gvOhe57vD2RM3V4gQRZYX4rDPnKLu5p6cm89+LJiGlwEXU8hkYxhqqEC/V3qA==
}
resolution
:
{
integrity
:
sha512-MfCq3cM0vh2slSikQYqK2Gq52gvOhe57vD2RM3V4gQRZYX4rDPnKLu5p6cm89+LJiGlwEXU8hkYxhqqEC/V3qA==
}
engines
:
{
node
:
^16.0.0 || >=18.0.0
}
engines
:
{
node
:
^16.0.0 || >=18.0.0
}
...
@@ -7609,16 +7556,16 @@ packages:
...
@@ -7609,16 +7556,16 @@ packages:
engines
:
{
node
:
'
>=10'
}
engines
:
{
node
:
'
>=10'
}
dev
:
true
dev
:
true
/eslint-config-prettier@8.3.0(eslint@8.4
7
.0)
:
/eslint-config-prettier@8.3.0(eslint@8.4
9
.0)
:
resolution
:
{
integrity
:
sha512-BgZuLUSeKzvlL/VUjx/Yb787VQ26RU3gGjA3iiFvdsp/2bMfVIWUVP7tjxtjS0e+HP409cPlPvNkQloz8C91ew==
}
resolution
:
{
integrity
:
sha512-BgZuLUSeKzvlL/VUjx/Yb787VQ26RU3gGjA3iiFvdsp/2bMfVIWUVP7tjxtjS0e+HP409cPlPvNkQloz8C91ew==
}
hasBin
:
true
hasBin
:
true
peerDependencies
:
peerDependencies
:
eslint
:
'
>=7.0.0'
eslint
:
'
>=7.0.0'
dependencies
:
dependencies
:
eslint
:
8.4
7
.0
eslint
:
8.4
9
.0
dev
:
true
dev
:
true
/eslint-config-standard@16.0.3(eslint-plugin-import@2.28.1)(eslint-plugin-node@11.1.0)(eslint-plugin-promise@5.2.0)(eslint@8.4
7
.0)
:
/eslint-config-standard@16.0.3(eslint-plugin-import@2.28.1)(eslint-plugin-node@11.1.0)(eslint-plugin-promise@5.2.0)(eslint@8.4
9
.0)
:
resolution
:
{
integrity
:
sha512-x4fmJL5hGqNJKGHSjnLdgA6U6h1YW/G2dW9fA+cyVur4SK6lyue8+UgNKWlZtUDTXvgKDD/Oa3GQjmB5kjtVvg==
}
resolution
:
{
integrity
:
sha512-x4fmJL5hGqNJKGHSjnLdgA6U6h1YW/G2dW9fA+cyVur4SK6lyue8+UgNKWlZtUDTXvgKDD/Oa3GQjmB5kjtVvg==
}
peerDependencies
:
peerDependencies
:
eslint
:
^7.12.1
eslint
:
^7.12.1
...
@@ -7626,10 +7573,10 @@ packages:
...
@@ -7626,10 +7573,10 @@ packages:
eslint-plugin-node
:
^11.1.0
eslint-plugin-node
:
^11.1.0
eslint-plugin-promise
:
^4.2.1 || ^5.0.0
eslint-plugin-promise
:
^4.2.1 || ^5.0.0
dependencies
:
dependencies
:
eslint
:
8.4
7
.0
eslint
:
8.4
9
.0
eslint-plugin-import
:
2.28.1(@typescript-eslint/parser@5.60.1)(eslint@8.4
7
.0)
eslint-plugin-import
:
2.28.1(@typescript-eslint/parser@5.60.1)(eslint@8.4
9
.0)
eslint-plugin-node
:
11.1.0(eslint@8.4
7
.0)
eslint-plugin-node
:
11.1.0(eslint@8.4
9
.0)
eslint-plugin-promise
:
5.2.0(eslint@8.4
7
.0)
eslint-plugin-promise
:
5.2.0(eslint@8.4
9
.0)
dev
:
true
dev
:
true
/eslint-import-resolver-node@0.3.9
:
/eslint-import-resolver-node@0.3.9
:
...
@@ -7642,7 +7589,7 @@ packages:
...
@@ -7642,7 +7589,7 @@ packages:
-
supports-color
-
supports-color
dev
:
true
dev
:
true
/eslint-module-utils@2.8.0(@typescript-eslint/parser@5.60.1)(eslint-import-resolver-node@0.3.9)(eslint@8.4
7
.0)
:
/eslint-module-utils@2.8.0(@typescript-eslint/parser@5.60.1)(eslint-import-resolver-node@0.3.9)(eslint@8.4
9
.0)
:
resolution
:
{
integrity
:
sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==
}
resolution
:
{
integrity
:
sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==
}
engines
:
{
node
:
'
>=4'
}
engines
:
{
node
:
'
>=4'
}
peerDependencies
:
peerDependencies
:
...
@@ -7663,26 +7610,26 @@ packages:
...
@@ -7663,26 +7610,26 @@ packages:
eslint-import-resolver-webpack
:
eslint-import-resolver-webpack
:
optional
:
true
optional
:
true
dependencies
:
dependencies
:
'
@typescript-eslint/parser'
:
5.60.1(eslint@8.4
7
.0)(typescript@5.1.6)
'
@typescript-eslint/parser'
:
5.60.1(eslint@8.4
9
.0)(typescript@5.1.6)
debug
:
3.2.7
debug
:
3.2.7
eslint
:
8.4
7
.0
eslint
:
8.4
9
.0
eslint-import-resolver-node
:
0.3.9
eslint-import-resolver-node
:
0.3.9
transitivePeerDependencies
:
transitivePeerDependencies
:
-
supports-color
-
supports-color
dev
:
true
dev
:
true
/eslint-plugin-es@3.0.1(eslint@8.4
7
.0)
:
/eslint-plugin-es@3.0.1(eslint@8.4
9
.0)
:
resolution
:
{
integrity
:
sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==
}
resolution
:
{
integrity
:
sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==
}
engines
:
{
node
:
'
>=8.10.0'
}
engines
:
{
node
:
'
>=8.10.0'
}
peerDependencies
:
peerDependencies
:
eslint
:
'
>=4.19.1'
eslint
:
'
>=4.19.1'
dependencies
:
dependencies
:
eslint
:
8.4
7
.0
eslint
:
8.4
9
.0
eslint-utils
:
2.1.0
eslint-utils
:
2.1.0
regexpp
:
3.2.0
regexpp
:
3.2.0
dev
:
true
dev
:
true
/eslint-plugin-import@2.28.1(@typescript-eslint/parser@5.60.1)(eslint@8.4
7
.0)
:
/eslint-plugin-import@2.28.1(@typescript-eslint/parser@5.60.1)(eslint@8.4
9
.0)
:
resolution
:
{
integrity
:
sha512-9I9hFlITvOV55alzoKBI+K9q74kv0iKMeY6av5+umsNwayt59fz692daGyjR+oStBQgx6nwR9rXldDev3Clw+A==
}
resolution
:
{
integrity
:
sha512-9I9hFlITvOV55alzoKBI+K9q74kv0iKMeY6av5+umsNwayt59fz692daGyjR+oStBQgx6nwR9rXldDev3Clw+A==
}
engines
:
{
node
:
'
>=4'
}
engines
:
{
node
:
'
>=4'
}
peerDependencies
:
peerDependencies
:
...
@@ -7692,16 +7639,16 @@ packages:
...
@@ -7692,16 +7639,16 @@ packages:
'
@typescript-eslint/parser'
:
'
@typescript-eslint/parser'
:
optional
:
true
optional
:
true
dependencies
:
dependencies
:
'
@typescript-eslint/parser'
:
5.60.1(eslint@8.4
7
.0)(typescript@5.1.6)
'
@typescript-eslint/parser'
:
5.60.1(eslint@8.4
9
.0)(typescript@5.1.6)
array-includes
:
3.1.6
array-includes
:
3.1.6
array.prototype.findlastindex
:
1.2.2
array.prototype.findlastindex
:
1.2.2
array.prototype.flat
:
1.3.1
array.prototype.flat
:
1.3.1
array.prototype.flatmap
:
1.3.1
array.prototype.flatmap
:
1.3.1
debug
:
3.2.7
debug
:
3.2.7
doctrine
:
2.1.0
doctrine
:
2.1.0
eslint
:
8.4
7
.0
eslint
:
8.4
9
.0
eslint-import-resolver-node
:
0.3.9
eslint-import-resolver-node
:
0.3.9
eslint-module-utils
:
2.8.0(@typescript-eslint/parser@5.60.1)(eslint-import-resolver-node@0.3.9)(eslint@8.4
7
.0)
eslint-module-utils
:
2.8.0(@typescript-eslint/parser@5.60.1)(eslint-import-resolver-node@0.3.9)(eslint@8.4
9
.0)
has
:
1.0.3
has
:
1.0.3
is-core-module
:
2.13.0
is-core-module
:
2.13.0
is-glob
:
4.0.3
is-glob
:
4.0.3
...
@@ -7717,7 +7664,7 @@ packages:
...
@@ -7717,7 +7664,7 @@ packages:
-
supports-color
-
supports-color
dev
:
true
dev
:
true
/eslint-plugin-jsdoc@35.5.1(eslint@8.4
7
.0)
:
/eslint-plugin-jsdoc@35.5.1(eslint@8.4
9
.0)
:
resolution
:
{
integrity
:
sha512-pPYPWtsykwVEue1tYEyoppBj4dgF7XicF67tLLLraY6RQYBq7qMKjUHji19+hfiTtYKKBD0YfeK8hgjPAE5viw==
}
resolution
:
{
integrity
:
sha512-pPYPWtsykwVEue1tYEyoppBj4dgF7XicF67tLLLraY6RQYBq7qMKjUHji19+hfiTtYKKBD0YfeK8hgjPAE5viw==
}
engines
:
{
node
:
'
>=12'
}
engines
:
{
node
:
'
>=12'
}
peerDependencies
:
peerDependencies
:
...
@@ -7726,7 +7673,7 @@ packages:
...
@@ -7726,7 +7673,7 @@ packages:
'
@es-joy/jsdoccomment'
:
0.9.0-alpha.1
'
@es-joy/jsdoccomment'
:
0.9.0-alpha.1
comment-parser
:
1.1.6-beta.0
comment-parser
:
1.1.6-beta.0
debug
:
4.3.4(supports-color@8.1.1)
debug
:
4.3.4(supports-color@8.1.1)
eslint
:
8.4
7
.0
eslint
:
8.4
9
.0
esquery
:
1.4.0
esquery
:
1.4.0
jsdoc-type-pratt-parser
:
1.1.1
jsdoc-type-pratt-parser
:
1.1.1
lodash
:
4.17.21
lodash
:
4.17.21
...
@@ -7737,14 +7684,14 @@ packages:
...
@@ -7737,14 +7684,14 @@ packages:
-
supports-color
-
supports-color
dev
:
true
dev
:
true
/eslint-plugin-node@11.1.0(eslint@8.4
7
.0)
:
/eslint-plugin-node@11.1.0(eslint@8.4
9
.0)
:
resolution
:
{
integrity
:
sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==
}
resolution
:
{
integrity
:
sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==
}
engines
:
{
node
:
'
>=8.10.0'
}
engines
:
{
node
:
'
>=8.10.0'
}
peerDependencies
:
peerDependencies
:
eslint
:
'
>=5.16.0'
eslint
:
'
>=5.16.0'
dependencies
:
dependencies
:
eslint
:
8.4
7
.0
eslint
:
8.4
9
.0
eslint-plugin-es
:
3.0.1(eslint@8.4
7
.0)
eslint-plugin-es
:
3.0.1(eslint@8.4
9
.0)
eslint-utils
:
2.1.0
eslint-utils
:
2.1.0
ignore
:
5.2.4
ignore
:
5.2.4
minimatch
:
3.1.2
minimatch
:
3.1.2
...
@@ -7752,15 +7699,15 @@ packages:
...
@@ -7752,15 +7699,15 @@ packages:
semver
:
6.3.1
semver
:
6.3.1
dev
:
true
dev
:
true
/eslint-plugin-prefer-arrow@1.2.3(eslint@8.4
7
.0)
:
/eslint-plugin-prefer-arrow@1.2.3(eslint@8.4
9
.0)
:
resolution
:
{
integrity
:
sha512-J9I5PKCOJretVuiZRGvPQxCbllxGAV/viI20JO3LYblAodofBxyMnZAJ+WGeClHgANnSJberTNoFWWjrWKBuXQ==
}
resolution
:
{
integrity
:
sha512-J9I5PKCOJretVuiZRGvPQxCbllxGAV/viI20JO3LYblAodofBxyMnZAJ+WGeClHgANnSJberTNoFWWjrWKBuXQ==
}
peerDependencies
:
peerDependencies
:
eslint
:
'
>=2.0.0'
eslint
:
'
>=2.0.0'
dependencies
:
dependencies
:
eslint
:
8.4
7
.0
eslint
:
8.4
9
.0
dev
:
true
dev
:
true
/eslint-plugin-prettier@4.2.1(eslint-config-prettier@8.3.0)(eslint@8.4
7
.0)(prettier@2.8.8)
:
/eslint-plugin-prettier@4.2.1(eslint-config-prettier@8.3.0)(eslint@8.4
9
.0)(prettier@2.8.8)
:
resolution
:
{
integrity
:
sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==
}
resolution
:
{
integrity
:
sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==
}
engines
:
{
node
:
'
>=12.0.0'
}
engines
:
{
node
:
'
>=12.0.0'
}
peerDependencies
:
peerDependencies
:
...
@@ -7771,22 +7718,22 @@ packages:
...
@@ -7771,22 +7718,22 @@ packages:
eslint-config-prettier
:
eslint-config-prettier
:
optional
:
true
optional
:
true
dependencies
:
dependencies
:
eslint
:
8.4
7
.0
eslint
:
8.4
9
.0
eslint-config-prettier
:
8.3.0(eslint@8.4
7
.0)
eslint-config-prettier
:
8.3.0(eslint@8.4
9
.0)
prettier
:
2.8.8
prettier
:
2.8.8
prettier-linter-helpers
:
1.0.0
prettier-linter-helpers
:
1.0.0
dev
:
true
dev
:
true
/eslint-plugin-promise@5.2.0(eslint@8.4
7
.0)
:
/eslint-plugin-promise@5.2.0(eslint@8.4
9
.0)
:
resolution
:
{
integrity
:
sha512-SftLb1pUG01QYq2A/hGAWfDRXqYD82zE7j7TopDOyNdU+7SvvoXREls/+PRTY17vUXzXnZA/zfnyKgRH6x4JJw==
}
resolution
:
{
integrity
:
sha512-SftLb1pUG01QYq2A/hGAWfDRXqYD82zE7j7TopDOyNdU+7SvvoXREls/+PRTY17vUXzXnZA/zfnyKgRH6x4JJw==
}
engines
:
{
node
:
^10.12.0 || >=12.0.0
}
engines
:
{
node
:
^10.12.0 || >=12.0.0
}
peerDependencies
:
peerDependencies
:
eslint
:
^7.0.0
eslint
:
^7.0.0
dependencies
:
dependencies
:
eslint
:
8.4
7
.0
eslint
:
8.4
9
.0
dev
:
true
dev
:
true
/eslint-plugin-react@7.33.2(eslint@8.4
7
.0)
:
/eslint-plugin-react@7.33.2(eslint@8.4
9
.0)
:
resolution
:
{
integrity
:
sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==
}
resolution
:
{
integrity
:
sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==
}
engines
:
{
node
:
'
>=4'
}
engines
:
{
node
:
'
>=4'
}
peerDependencies
:
peerDependencies
:
...
@@ -7797,7 +7744,7 @@ packages:
...
@@ -7797,7 +7744,7 @@ packages:
array.prototype.tosorted
:
1.1.1
array.prototype.tosorted
:
1.1.1
doctrine
:
2.1.0
doctrine
:
2.1.0
es-iterator-helpers
:
1.0.13
es-iterator-helpers
:
1.0.13
eslint
:
8.4
7
.0
eslint
:
8.4
9
.0
estraverse
:
5.3.0
estraverse
:
5.3.0
jsx-ast-utils
:
3.2.0
jsx-ast-utils
:
3.2.0
minimatch
:
3.1.2
minimatch
:
3.1.2
...
@@ -7811,7 +7758,7 @@ packages:
...
@@ -7811,7 +7758,7 @@ packages:
string.prototype.matchall
:
4.0.8
string.prototype.matchall
:
4.0.8
dev
:
true
dev
:
true
/eslint-plugin-unicorn@42.0.0(eslint@8.4
7
.0)
:
/eslint-plugin-unicorn@42.0.0(eslint@8.4
9
.0)
:
resolution
:
{
integrity
:
sha512-ixBsbhgWuxVaNlPTT8AyfJMlhyC5flCJFjyK3oKE8TRrwBnaHvUbuIkCM1lqg8ryYrFStL/T557zfKzX4GKSlg==
}
resolution
:
{
integrity
:
sha512-ixBsbhgWuxVaNlPTT8AyfJMlhyC5flCJFjyK3oKE8TRrwBnaHvUbuIkCM1lqg8ryYrFStL/T557zfKzX4GKSlg==
}
engines
:
{
node
:
'
>=12'
}
engines
:
{
node
:
'
>=12'
}
peerDependencies
:
peerDependencies
:
...
@@ -7820,8 +7767,8 @@ packages:
...
@@ -7820,8 +7767,8 @@ packages:
'
@babel/helper-validator-identifier'
:
7.16.7
'
@babel/helper-validator-identifier'
:
7.16.7
ci-info
:
3.8.0
ci-info
:
3.8.0
clean-regexp
:
1.0.0
clean-regexp
:
1.0.0
eslint
:
8.4
7
.0
eslint
:
8.4
9
.0
eslint-utils
:
3.0.0(eslint@8.4
7
.0)
eslint-utils
:
3.0.0(eslint@8.4
9
.0)
esquery
:
1.4.0
esquery
:
1.4.0
indent-string
:
4.0.0
indent-string
:
4.0.0
is-builtin-module
:
3.1.0
is-builtin-module
:
3.1.0
...
@@ -7857,13 +7804,13 @@ packages:
...
@@ -7857,13 +7804,13 @@ packages:
eslint-visitor-keys
:
1.3.0
eslint-visitor-keys
:
1.3.0
dev
:
true
dev
:
true
/eslint-utils@3.0.0(eslint@8.4
7
.0)
:
/eslint-utils@3.0.0(eslint@8.4
9
.0)
:
resolution
:
{
integrity
:
sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==
}
resolution
:
{
integrity
:
sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==
}
engines
:
{
node
:
^10.0.0 || ^12.0.0 || >= 14.0.0
}
engines
:
{
node
:
^10.0.0 || ^12.0.0 || >= 14.0.0
}
peerDependencies
:
peerDependencies
:
eslint
:
'
>=5'
eslint
:
'
>=5'
dependencies
:
dependencies
:
eslint
:
8.4
7
.0
eslint
:
8.4
9
.0
eslint-visitor-keys
:
2.1.0
eslint-visitor-keys
:
2.1.0
dev
:
true
dev
:
true
...
@@ -7882,52 +7829,6 @@ packages:
...
@@ -7882,52 +7829,6 @@ packages:
engines
:
{
node
:
^12.22.0 || ^14.17.0 || >=16.0.0
}
engines
:
{
node
:
^12.22.0 || ^14.17.0 || >=16.0.0
}
dev
:
true
dev
:
true
/eslint@8.47.0
:
resolution
:
{
integrity
:
sha512-spUQWrdPt+pRVP1TTJLmfRNJJHHZryFmptzcafwSvHsceV81djHOdnEeDmkdotZyLNjDhrOasNK8nikkoG1O8Q==
}
engines
:
{
node
:
^12.22.0 || ^14.17.0 || >=16.0.0
}
hasBin
:
true
dependencies
:
'
@eslint-community/eslint-utils'
:
4.4.0(eslint@8.47.0)
'
@eslint-community/regexpp'
:
4.6.2
'
@eslint/eslintrc'
:
2.1.2
'
@eslint/js'
:
8.49.0
'
@humanwhocodes/config-array'
:
0.11.11
'
@humanwhocodes/module-importer'
:
1.0.1
'
@nodelib/fs.walk'
:
1.2.8
ajv
:
6.12.6
chalk
:
4.1.2
cross-spawn
:
7.0.3
debug
:
4.3.4(supports-color@8.1.1)
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.5.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.21.0
graphemer
:
1.4.0
ignore
:
5.2.4
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.3
strip-ansi
:
6.0.1
text-table
:
0.2.0
transitivePeerDependencies
:
-
supports-color
dev
:
true
/eslint@8.49.0
:
/eslint@8.49.0
:
resolution
:
{
integrity
:
sha512-jw03ENfm6VJI0jA9U+8H5zfl5b+FvuU3YYvZRdZHOlU2ggJkxrlkJH4HcDrZpj6YwD8kuYqvQM8LyesoazrSOQ==
}
resolution
:
{
integrity
:
sha512-jw03ENfm6VJI0jA9U+8H5zfl5b+FvuU3YYvZRdZHOlU2ggJkxrlkJH4HcDrZpj6YwD8kuYqvQM8LyesoazrSOQ==
}
engines
:
{
node
:
^12.22.0 || ^14.17.0 || >=16.0.0
}
engines
:
{
node
:
^12.22.0 || ^14.17.0 || >=16.0.0
}
...
@@ -14750,7 +14651,7 @@ packages:
...
@@ -14750,7 +14651,7 @@ packages:
-
zod
-
zod
dev
:
true
dev
:
true
/vite-node@0.34.1(@types/node@20.
5.3
)
:
/vite-node@0.34.1(@types/node@20.
6.0
)
:
resolution
:
{
integrity
:
sha512-odAZAL9xFMuAg8aWd7nSPT+hU8u2r9gU3LRm9QKjxBEF2rRdWpMuqkrkjvyVQEdNFiBctqr2Gg4uJYizm5Le6w==
}
resolution
:
{
integrity
:
sha512-odAZAL9xFMuAg8aWd7nSPT+hU8u2r9gU3LRm9QKjxBEF2rRdWpMuqkrkjvyVQEdNFiBctqr2Gg4uJYizm5Le6w==
}
engines
:
{
node
:
'
>=v14.18.0'
}
engines
:
{
node
:
'
>=v14.18.0'
}
hasBin
:
true
hasBin
:
true
...
@@ -14760,7 +14661,7 @@ packages:
...
@@ -14760,7 +14661,7 @@ packages:
mlly
:
1.4.0
mlly
:
1.4.0
pathe
:
1.1.1
pathe
:
1.1.1
picocolors
:
1.0.0
picocolors
:
1.0.0
vite
:
4.4.9(@types/node@20.
5.3
)
vite
:
4.4.9(@types/node@20.
6.0
)
transitivePeerDependencies
:
transitivePeerDependencies
:
-
'
@types/node'
-
'
@types/node'
-
less
-
less
...
@@ -14772,7 +14673,7 @@ packages:
...
@@ -14772,7 +14673,7 @@ packages:
-
terser
-
terser
dev
:
true
dev
:
true
/vite-node@0.34.2(@types/node@20.
5.3
)
:
/vite-node@0.34.2(@types/node@20.
6.0
)
:
resolution
:
{
integrity
:
sha512-JtW249Zm3FB+F7pQfH56uWSdlltCo1IOkZW5oHBzeQo0iX4jtC7o1t9aILMGd9kVekXBP2lfJBEQt9rBh07ebA==
}
resolution
:
{
integrity
:
sha512-JtW249Zm3FB+F7pQfH56uWSdlltCo1IOkZW5oHBzeQo0iX4jtC7o1t9aILMGd9kVekXBP2lfJBEQt9rBh07ebA==
}
engines
:
{
node
:
'
>=v14.18.0'
}
engines
:
{
node
:
'
>=v14.18.0'
}
hasBin
:
true
hasBin
:
true
...
@@ -14782,7 +14683,7 @@ packages:
...
@@ -14782,7 +14683,7 @@ packages:
mlly
:
1.4.0
mlly
:
1.4.0
pathe
:
1.1.1
pathe
:
1.1.1
picocolors
:
1.0.0
picocolors
:
1.0.0
vite
:
4.4.9(@types/node@20.
5.3
)
vite
:
4.4.9(@types/node@20.
6.0
)
transitivePeerDependencies
:
transitivePeerDependencies
:
-
'
@types/node'
-
'
@types/node'
-
less
-
less
...
@@ -14794,7 +14695,7 @@ packages:
...
@@ -14794,7 +14695,7 @@ packages:
-
terser
-
terser
dev
:
true
dev
:
true
/vite@4.4.6(@types/node@20.
5.3
)
:
/vite@4.4.6(@types/node@20.
6.0
)
:
resolution
:
{
integrity
:
sha512-EY6Mm8vJ++S3D4tNAckaZfw3JwG3wa794Vt70M6cNJ6NxT87yhq7EC8Rcap3ahyHdo8AhCmV9PTk+vG1HiYn1A==
}
resolution
:
{
integrity
:
sha512-EY6Mm8vJ++S3D4tNAckaZfw3JwG3wa794Vt70M6cNJ6NxT87yhq7EC8Rcap3ahyHdo8AhCmV9PTk+vG1HiYn1A==
}
engines
:
{
node
:
^14.18.0 || >=16.0.0
}
engines
:
{
node
:
^14.18.0 || >=16.0.0
}
hasBin
:
true
hasBin
:
true
...
@@ -14822,7 +14723,7 @@ packages:
...
@@ -14822,7 +14723,7 @@ packages:
terser
:
terser
:
optional
:
true
optional
:
true
dependencies
:
dependencies
:
'
@types/node'
:
20.
5.3
'
@types/node'
:
20.
6.0
esbuild
:
0.18.15
esbuild
:
0.18.15
postcss
:
8.4.27
postcss
:
8.4.27
rollup
:
3.26.3
rollup
:
3.26.3
...
@@ -14830,7 +14731,7 @@ packages:
...
@@ -14830,7 +14731,7 @@ packages:
fsevents
:
2.3.2
fsevents
:
2.3.2
dev
:
true
dev
:
true
/vite@4.4.9(@types/node@20.
5.3
)
:
/vite@4.4.9(@types/node@20.
6.0
)
:
resolution
:
{
integrity
:
sha512-2mbUn2LlUmNASWwSCNSJ/EG2HuSRTnVNaydp6vMCm5VIqJsjMfbIWtbH2kDuwUVW5mMUKKZvGPX/rqeqVvv1XA==
}
resolution
:
{
integrity
:
sha512-2mbUn2LlUmNASWwSCNSJ/EG2HuSRTnVNaydp6vMCm5VIqJsjMfbIWtbH2kDuwUVW5mMUKKZvGPX/rqeqVvv1XA==
}
engines
:
{
node
:
^14.18.0 || >=16.0.0
}
engines
:
{
node
:
^14.18.0 || >=16.0.0
}
hasBin
:
true
hasBin
:
true
...
@@ -14858,7 +14759,7 @@ packages:
...
@@ -14858,7 +14759,7 @@ packages:
terser
:
terser
:
optional
:
true
optional
:
true
dependencies
:
dependencies
:
'
@types/node'
:
20.
5.3
'
@types/node'
:
20.
6.0
esbuild
:
0.18.15
esbuild
:
0.18.15
postcss
:
8.4.27
postcss
:
8.4.27
rollup
:
3.28.0
rollup
:
3.28.0
...
@@ -14899,7 +14800,7 @@ packages:
...
@@ -14899,7 +14800,7 @@ packages:
dependencies
:
dependencies
:
'
@types/chai'
:
4.3.5
'
@types/chai'
:
4.3.5
'
@types/chai-subset'
:
1.3.3
'
@types/chai-subset'
:
1.3.3
'
@types/node'
:
20.
5.3
'
@types/node'
:
20.
6.0
'
@vitest/expect'
:
0.34.1
'
@vitest/expect'
:
0.34.1
'
@vitest/runner'
:
0.34.1
'
@vitest/runner'
:
0.34.1
'
@vitest/snapshot'
:
0.34.1
'
@vitest/snapshot'
:
0.34.1
...
@@ -14918,8 +14819,8 @@ packages:
...
@@ -14918,8 +14819,8 @@ packages:
strip-literal
:
1.0.1
strip-literal
:
1.0.1
tinybench
:
2.5.0
tinybench
:
2.5.0
tinypool
:
0.7.0
tinypool
:
0.7.0
vite
:
4.4.9(@types/node@20.
5.3
)
vite
:
4.4.9(@types/node@20.
6.0
)
vite-node
:
0.34.1(@types/node@20.
5.3
)
vite-node
:
0.34.1(@types/node@20.
6.0
)
why-is-node-running
:
2.2.2
why-is-node-running
:
2.2.2
transitivePeerDependencies
:
transitivePeerDependencies
:
-
less
-
less
...
@@ -14964,7 +14865,7 @@ packages:
...
@@ -14964,7 +14865,7 @@ packages:
dependencies
:
dependencies
:
'
@types/chai'
:
4.3.5
'
@types/chai'
:
4.3.5
'
@types/chai-subset'
:
1.3.3
'
@types/chai-subset'
:
1.3.3
'
@types/node'
:
20.
5.3
'
@types/node'
:
20.
6.0
'
@vitest/expect'
:
0.34.2
'
@vitest/expect'
:
0.34.2
'
@vitest/runner'
:
0.34.2
'
@vitest/runner'
:
0.34.2
'
@vitest/snapshot'
:
0.34.2
'
@vitest/snapshot'
:
0.34.2
...
@@ -14984,8 +14885,8 @@ packages:
...
@@ -14984,8 +14885,8 @@ packages:
strip-literal
:
1.0.1
strip-literal
:
1.0.1
tinybench
:
2.5.0
tinybench
:
2.5.0
tinypool
:
0.7.0
tinypool
:
0.7.0
vite
:
4.4.9(@types/node@20.
5.3
)
vite
:
4.4.9(@types/node@20.
6.0
)
vite-node
:
0.34.2(@types/node@20.
5.3
)
vite-node
:
0.34.2(@types/node@20.
6.0
)
why-is-node-running
:
2.2.2
why-is-node-running
:
2.2.2
transitivePeerDependencies
:
transitivePeerDependencies
:
-
less
-
less
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment