diff --git a/.husky/pre-commit b/.husky/pre-commit
index 06c2b40..72c4429 100644
--- a/.husky/pre-commit
+++ b/.husky/pre-commit
@@ -1,5 +1 @@
-#!/bin/sh
-
-. "$(dirname "$0")/_/husky.sh"
-
npm test
diff --git a/.husky/pre-push b/.husky/pre-push
index 952f7e3..d6cb288 100644
--- a/.husky/pre-push
+++ b/.husky/pre-push
@@ -1,5 +1 @@
-#!/bin/sh
-
-. "$(dirname "$0")/_/husky.sh"
-
npm run build
diff --git a/.parcelrc b/.parcelrc
new file mode 100644
index 0000000..a8f22fc
--- /dev/null
+++ b/.parcelrc
@@ -0,0 +1,8 @@
+{
+ "extends": "@parcel/config-default",
+ "transformers": {
+ "*.{ts,tsx}": [
+ "@parcel/transformer-typescript-tsc"
+ ]
+ }
+}
diff --git a/ReadMe.md b/ReadMe.md
index 74b1523..3f4769a 100644
--- a/ReadMe.md
+++ b/ReadMe.md
@@ -10,6 +10,13 @@ Just define your **Data models** & **Client HTTP methods**, then leave rest of t
[][5]
+## Versions
+
+| SemVer | status | ES decorator | MobX |
+| :-------: | :----------: | :----------: | :---------: |
+| `>=0.7.0` | ✅developing | stage-3 | `>=6.11` |
+| `<0.7.0` | ❌deprecated | stage-2 | `>=4 <6.11` |
+
## Usage
### Simple List
@@ -65,15 +72,13 @@ export default new RepositoryModel();
Use [WebCell][6] as an Example
```tsx
-import { WebCell, component, observer, createCell } from 'web-cell';
+import { component, observer } from 'web-cell';
import repositoryStore from '../model/Repository';
-@component({
- tagName: 'repository-page'
-})
+@component({ tagName: 'repository-page' })
@observer
-export class RepositoryPage extends WebCell() {
+export class RepositoryPage extends HTMLElement {
connectedCallback() {
repositoryStore.getList();
}
@@ -88,7 +93,7 @@ export class RepositoryPage extends WebCell() {
return (
{currentPage.map(({ full_name, html_url }) => (
- -
+
-
{full_name}
diff --git a/package.json b/package.json
index c5b9d57..0fd0657 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "mobx-restful",
- "version": "0.6.12",
+ "version": "0.7.0-rc.0",
"license": "LGPL-3.0",
"author": "shiy2008@gmail.com",
"description": "MobX SDK for RESTful API",
@@ -26,35 +26,35 @@
"types": "dist/index.d.ts",
"main": "dist/index.js",
"dependencies": {
- "@swc/helpers": "^0.5.2",
- "class-validator": "^0.14.0",
- "koajax": "^0.9.4",
- "reflect-metadata": "^0.1.13",
- "regenerator-runtime": "^0.14.0",
+ "@swc/helpers": "^0.5.3",
+ "koajax": "^0.9.6",
+ "regenerator-runtime": "^0.14.1",
"web-utility": "^4.1.3"
},
"peerDependencies": {
- "mobx": ">=4"
+ "mobx": ">=6.11"
},
"devDependencies": {
- "@octokit/openapi-types": "^19.0.0",
- "@parcel/packager-ts": "~2.9.3",
- "@parcel/transformer-typescript-types": "~2.9.3",
- "@types/jest": "^29.5.5",
- "@types/node": "^18.18.1",
- "dotenv": "^16.3.1",
- "husky": "^8.0.3",
+ "@octokit/openapi-types": "^19.1.0",
+ "@parcel/config-default": "^2.11.0",
+ "@parcel/packager-ts": "~2.11.0",
+ "@parcel/transformer-typescript-tsc": "^2.11.0",
+ "@parcel/transformer-typescript-types": "~2.11.0",
+ "@types/jest": "^29.5.11",
+ "@types/node": "^18.19.10",
+ "dotenv": "^16.4.1",
+ "husky": "^9.0.6",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
- "lint-staged": "^14.0.1",
- "mobx": "^6.10.2",
- "open-cli": "^7.2.0",
- "parcel": "~2.9.3",
- "prettier": "^3.0.3",
- "ts-jest": "^29.1.1",
- "typedoc": "^0.25.1",
- "typedoc-plugin-mdn-links": "^3.1.0",
- "typescript": "~5.2.2"
+ "lint-staged": "^15.2.0",
+ "mobx": "^6.12.0",
+ "open-cli": "^8.0.0",
+ "parcel": "~2.11.0",
+ "prettier": "^3.2.4",
+ "ts-jest": "^29.1.2",
+ "typedoc": "^0.25.7",
+ "typedoc-plugin-mdn-links": "^3.1.14",
+ "typescript": "~5.3.3"
},
"prettier": {
"singleQuote": true,
@@ -79,10 +79,10 @@
}
},
"scripts": {
- "prepare": "husky install",
+ "prepare": "husky",
"test": "lint-staged && jest",
"pack-dist": "tsc --emitDeclarationOnly && parcel build",
- "build": "rm -rf dist/ docs/ && typedoc source/ && npm run pack-dist",
+ "build": "rm -rf .parcel-cache/ dist/ docs/ && typedoc source/ && npm run pack-dist",
"start": "typedoc source/ && open-cli docs/index.html",
"prepublishOnly": "npm test && npm run build"
}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 5c34a16..976444b 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -6,79 +6,79 @@ settings:
dependencies:
'@swc/helpers':
- specifier: ^0.5.2
- version: 0.5.2
- class-validator:
- specifier: ^0.14.0
- version: 0.14.0
+ specifier: ^0.5.3
+ version: 0.5.3
koajax:
- specifier: ^0.9.4
- version: 0.9.4(typescript@5.2.2)
- reflect-metadata:
- specifier: ^0.1.13
- version: 0.1.13
+ specifier: ^0.9.6
+ version: 0.9.6(typescript@5.3.3)
regenerator-runtime:
- specifier: ^0.14.0
- version: 0.14.0
+ specifier: ^0.14.1
+ version: 0.14.1
web-utility:
specifier: ^4.1.3
- version: 4.1.3(typescript@5.2.2)
+ version: 4.1.3(typescript@5.3.3)
devDependencies:
'@octokit/openapi-types':
- specifier: ^19.0.0
- version: 19.0.0
+ specifier: ^19.1.0
+ version: 19.1.0
+ '@parcel/config-default':
+ specifier: ^2.11.0
+ version: 2.11.0(@parcel/core@2.11.0)(@swc/helpers@0.5.3)(typescript@5.3.3)
'@parcel/packager-ts':
- specifier: ~2.9.3
- version: 2.9.3
+ specifier: ~2.11.0
+ version: 2.11.0
+ '@parcel/transformer-typescript-tsc':
+ specifier: ^2.11.0
+ version: 2.11.0(typescript@5.3.3)
'@parcel/transformer-typescript-types':
- specifier: ~2.9.3
- version: 2.9.3(typescript@5.2.2)
+ specifier: ~2.11.0
+ version: 2.11.0(typescript@5.3.3)
'@types/jest':
- specifier: ^29.5.5
- version: 29.5.5
+ specifier: ^29.5.11
+ version: 29.5.11
'@types/node':
- specifier: ^18.18.1
- version: 18.18.1
+ specifier: ^18.19.10
+ version: 18.19.10
dotenv:
- specifier: ^16.3.1
- version: 16.3.1
+ specifier: ^16.4.1
+ version: 16.4.1
husky:
- specifier: ^8.0.3
- version: 8.0.3
+ specifier: ^9.0.6
+ version: 9.0.6
jest:
specifier: ^29.7.0
- version: 29.7.0(@types/node@18.18.1)
+ version: 29.7.0(@types/node@18.19.10)
jest-environment-jsdom:
specifier: ^29.7.0
version: 29.7.0
lint-staged:
- specifier: ^14.0.1
- version: 14.0.1
+ specifier: ^15.2.0
+ version: 15.2.0
mobx:
- specifier: ^6.10.2
- version: 6.10.2
+ specifier: ^6.12.0
+ version: 6.12.0
open-cli:
- specifier: ^7.2.0
- version: 7.2.0
+ specifier: ^8.0.0
+ version: 8.0.0
parcel:
- specifier: ~2.9.3
- version: 2.9.3(@swc/helpers@0.5.2)(typescript@5.2.2)
+ specifier: ~2.11.0
+ version: 2.11.0(@swc/helpers@0.5.3)(typescript@5.3.3)
prettier:
- specifier: ^3.0.3
- version: 3.0.3
+ specifier: ^3.2.4
+ version: 3.2.4
ts-jest:
- specifier: ^29.1.1
- version: 29.1.1(jest@29.7.0)(typescript@5.2.2)
+ specifier: ^29.1.2
+ version: 29.1.2(jest@29.7.0)(typescript@5.3.3)
typedoc:
- specifier: ^0.25.1
- version: 0.25.1(typescript@5.2.2)
+ specifier: ^0.25.7
+ version: 0.25.7(typescript@5.3.3)
typedoc-plugin-mdn-links:
- specifier: ^3.1.0
- version: 3.1.0(typedoc@0.25.1)
+ specifier: ^3.1.14
+ version: 3.1.14(typedoc@0.25.7)
typescript:
- specifier: ~5.2.2
- version: 5.2.2
+ specifier: ~5.3.3
+ version: 5.3.3
packages:
@@ -87,7 +87,7 @@ packages:
engines: {node: '>=6.0.0'}
dependencies:
'@jridgewell/gen-mapping': 0.3.3
- '@jridgewell/trace-mapping': 0.3.19
+ '@jridgewell/trace-mapping': 0.3.20
dev: true
/@babel/code-frame@7.22.13:
@@ -98,24 +98,24 @@ packages:
chalk: 2.4.2
dev: true
- /@babel/compat-data@7.22.20:
- resolution: {integrity: sha512-BQYjKbpXjoXwFW5jGqiizJQQT/aC7pFm9Ok1OWssonuguICi264lbgMzRp2ZMmRSlfkX6DsWDDcsrctK8Rwfiw==}
+ /@babel/compat-data@7.23.2:
+ resolution: {integrity: sha512-0S9TQMmDHlqAZ2ITT95irXKfxN9bncq8ZCoJhun3nHL/lLUxd2NKBJYoNGWH7S0hz6fRQwWlAWn/ILM0C70KZQ==}
engines: {node: '>=6.9.0'}
dev: true
- /@babel/core@7.23.0:
- resolution: {integrity: sha512-97z/ju/Jy1rZmDxybphrBuI+jtJjFVoz7Mr9yUQVVVi+DNZE333uFQeMOqcCIy1x3WYBIbWftUSLmbNXNT7qFQ==}
+ /@babel/core@7.23.2:
+ resolution: {integrity: sha512-n7s51eWdaWZ3vGT2tD4T7J6eJs3QoBXydv7vkUM06Bf1cbVD2Kc2UrkzhiQwobfV7NwOnQXYL7UBJ5VPU+RGoQ==}
engines: {node: '>=6.9.0'}
dependencies:
'@ampproject/remapping': 2.2.1
'@babel/code-frame': 7.22.13
'@babel/generator': 7.23.0
'@babel/helper-compilation-targets': 7.22.15
- '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.0)
- '@babel/helpers': 7.23.1
+ '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.2)
+ '@babel/helpers': 7.23.2
'@babel/parser': 7.23.0
'@babel/template': 7.22.15
- '@babel/traverse': 7.23.0
+ '@babel/traverse': 7.23.2
'@babel/types': 7.23.0
convert-source-map: 2.0.0
debug: 4.3.4
@@ -132,7 +132,7 @@ packages:
dependencies:
'@babel/types': 7.23.0
'@jridgewell/gen-mapping': 0.3.3
- '@jridgewell/trace-mapping': 0.3.19
+ '@jridgewell/trace-mapping': 0.3.20
jsesc: 2.5.2
dev: true
@@ -140,7 +140,7 @@ packages:
resolution: {integrity: sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/compat-data': 7.22.20
+ '@babel/compat-data': 7.23.2
'@babel/helper-validator-option': 7.22.15
browserslist: 4.22.1
lru-cache: 5.1.1
@@ -174,13 +174,13 @@ packages:
'@babel/types': 7.23.0
dev: true
- /@babel/helper-module-transforms@7.23.0(@babel/core@7.23.0):
+ /@babel/helper-module-transforms@7.23.0(@babel/core@7.23.2):
resolution: {integrity: sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.0
+ '@babel/core': 7.23.2
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-module-imports': 7.22.15
'@babel/helper-simple-access': 7.22.5
@@ -222,12 +222,12 @@ packages:
engines: {node: '>=6.9.0'}
dev: true
- /@babel/helpers@7.23.1:
- resolution: {integrity: sha512-chNpneuK18yW5Oxsr+t553UZzzAs3aZnFm4bxhebsNTeshrC95yA7l5yl7GBAG+JG1rF0F7zzD2EixK9mWSDoA==}
+ /@babel/helpers@7.23.2:
+ resolution: {integrity: sha512-lzchcp8SjTSVe/fPmLwtWVBFC7+Tbn8LGHDVfDp9JGxpAY5opSaEFgt8UQvrnECWOTdji2mOWMz1rOhkHscmGQ==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.22.15
- '@babel/traverse': 7.23.0
+ '@babel/traverse': 7.23.2
'@babel/types': 7.23.0
transitivePeerDependencies:
- supports-color
@@ -250,132 +250,132 @@ packages:
'@babel/types': 7.23.0
dev: true
- /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.0):
+ /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.2):
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.0
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.23.0):
+ /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.23.2):
resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.0
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.0):
+ /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.2):
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.0
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.0):
+ /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.2):
resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.0
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.0):
+ /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.2):
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.0
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.23.0):
+ /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.23.2):
resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.0
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.0):
+ /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.2):
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.0
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.0):
+ /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.2):
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.0
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.0):
+ /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.2):
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.0
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.0):
+ /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.2):
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.0
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.0):
+ /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.2):
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.0
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.0):
+ /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.2):
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.0
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.0):
+ /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.2):
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.0
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.23.0):
+ /@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.23.2):
resolution: {integrity: sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.0
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -388,8 +388,8 @@ packages:
'@babel/types': 7.23.0
dev: true
- /@babel/traverse@7.23.0:
- resolution: {integrity: sha512-t/QaEvyIoIkwzpiZ7aoSKK8kObQYeF7T2v+dazAYCb8SXtp58zEVkWW7zAnju8FNKNdr4ScAOEDmMItbyOmEYw==}
+ /@babel/traverse@7.23.2:
+ resolution: {integrity: sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.22.13
@@ -440,7 +440,7 @@ packages:
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jest/types': 29.6.3
- '@types/node': 18.18.1
+ '@types/node': 18.19.10
chalk: 4.1.2
jest-message-util: 29.7.0
jest-util: 29.7.0
@@ -461,14 +461,14 @@ packages:
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 18.18.1
+ '@types/node': 18.19.10
ansi-escapes: 4.3.2
chalk: 4.1.2
- ci-info: 3.8.0
+ ci-info: 3.9.0
exit: 0.1.2
graceful-fs: 4.2.11
jest-changed-files: 29.7.0
- jest-config: 29.7.0(@types/node@18.18.1)
+ jest-config: 29.7.0(@types/node@18.19.10)
jest-haste-map: 29.7.0
jest-message-util: 29.7.0
jest-regex-util: 29.6.3
@@ -496,7 +496,7 @@ packages:
dependencies:
'@jest/fake-timers': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 18.18.1
+ '@types/node': 18.19.10
jest-mock: 29.7.0
dev: true
@@ -523,7 +523,7 @@ packages:
dependencies:
'@jest/types': 29.6.3
'@sinonjs/fake-timers': 10.3.0
- '@types/node': 18.18.1
+ '@types/node': 18.19.10
jest-message-util: 29.7.0
jest-mock: 29.7.0
jest-util: 29.7.0
@@ -555,15 +555,15 @@ packages:
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@jridgewell/trace-mapping': 0.3.19
- '@types/node': 18.18.1
+ '@jridgewell/trace-mapping': 0.3.20
+ '@types/node': 18.19.10
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.0
- istanbul-lib-instrument: 6.0.0
+ istanbul-lib-instrument: 6.0.1
istanbul-lib-report: 3.0.1
istanbul-lib-source-maps: 4.0.1
istanbul-reports: 3.1.6
@@ -573,7 +573,7 @@ packages:
slash: 3.0.0
string-length: 4.0.2
strip-ansi: 6.0.1
- v8-to-istanbul: 9.1.0
+ v8-to-istanbul: 9.1.3
transitivePeerDependencies:
- supports-color
dev: true
@@ -589,7 +589,7 @@ packages:
resolution: {integrity: sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jridgewell/trace-mapping': 0.3.19
+ '@jridgewell/trace-mapping': 0.3.20
callsites: 3.1.0
graceful-fs: 4.2.11
dev: true
@@ -600,7 +600,7 @@ packages:
dependencies:
'@jest/console': 29.7.0
'@jest/types': 29.6.3
- '@types/istanbul-lib-coverage': 2.0.4
+ '@types/istanbul-lib-coverage': 2.0.5
collect-v8-coverage: 1.0.2
dev: true
@@ -618,9 +618,9 @@ packages:
resolution: {integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@babel/core': 7.23.0
+ '@babel/core': 7.23.2
'@jest/types': 29.6.3
- '@jridgewell/trace-mapping': 0.3.19
+ '@jridgewell/trace-mapping': 0.3.20
babel-plugin-istanbul: 6.1.1
chalk: 4.1.2
convert-source-map: 2.0.0
@@ -642,10 +642,10 @@ packages:
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jest/schemas': 29.6.3
- '@types/istanbul-lib-coverage': 2.0.4
- '@types/istanbul-reports': 3.0.2
- '@types/node': 18.18.1
- '@types/yargs': 17.0.26
+ '@types/istanbul-lib-coverage': 2.0.5
+ '@types/istanbul-reports': 3.0.3
+ '@types/node': 18.19.10
+ '@types/yargs': 17.0.29
chalk: 4.1.2
dev: true
@@ -655,7 +655,7 @@ packages:
dependencies:
'@jridgewell/set-array': 1.1.2
'@jridgewell/sourcemap-codec': 1.4.15
- '@jridgewell/trace-mapping': 0.3.19
+ '@jridgewell/trace-mapping': 0.3.20
dev: true
/@jridgewell/resolve-uri@3.1.1:
@@ -672,8 +672,8 @@ packages:
resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
dev: true
- /@jridgewell/trace-mapping@0.3.19:
- resolution: {integrity: sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==}
+ /@jridgewell/trace-mapping@0.3.20:
+ resolution: {integrity: sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==}
dependencies:
'@jridgewell/resolve-uri': 3.1.1
'@jridgewell/sourcemap-codec': 1.4.15
@@ -683,54 +683,54 @@ packages:
resolution: {integrity: sha512-XPIN3cYDXsoJI/oDWoR2tD++juVrhgIago9xyKhZ7IhGlzdDM9QgC8D8saKNCz5pindGcznFr2HBSsEQSWnSjw==}
dev: true
- /@lezer/lr@1.3.12:
- resolution: {integrity: sha512-5nwY1JzCueUdRtlMBnlf1SUi69iGCq2ABq7WQFQMkn/kxPvoACAEnTp4P17CtXxYr7WCwtYPLL2AEvxKPuF1OQ==}
+ /@lezer/lr@1.3.14:
+ resolution: {integrity: sha512-z5mY4LStlA3yL7aHT/rqgG614cfcvklS+8oFRFBYrs4YaWLJyKKM4+nN6KopToX0o9Hj6zmH6M5kinOYuy06ug==}
dependencies:
'@lezer/common': 1.1.0
dev: true
- /@lmdb/lmdb-darwin-arm64@2.7.11:
- resolution: {integrity: sha512-r6+vYq2vKzE+vgj/rNVRMwAevq0+ZR9IeMFIqcSga+wMtMdXQ27KqQ7uS99/yXASg29bos7yHP3yk4x6Iio0lw==}
+ /@lmdb/lmdb-darwin-arm64@2.8.5:
+ resolution: {integrity: sha512-KPDeVScZgA1oq0CiPBcOa3kHIqU+pTOwRFDIhxvmf8CTNvqdZQYp5cCKW0bUk69VygB2PuTiINFWbY78aR2pQw==}
cpu: [arm64]
os: [darwin]
requiresBuild: true
dev: true
optional: true
- /@lmdb/lmdb-darwin-x64@2.7.11:
- resolution: {integrity: sha512-jhj1aB4K8ycRL1HOQT5OtzlqOq70jxUQEWRN9Gqh3TIDN30dxXtiHi6EWF516tzw6v2+3QqhDMJh8O6DtTGG8Q==}
+ /@lmdb/lmdb-darwin-x64@2.8.5:
+ resolution: {integrity: sha512-w/sLhN4T7MW1nB3R/U8WK5BgQLz904wh+/SmA2jD8NnF7BLLoUgflCNxOeSPOWp8geP6nP/+VjWzZVip7rZ1ug==}
cpu: [x64]
os: [darwin]
requiresBuild: true
dev: true
optional: true
- /@lmdb/lmdb-linux-arm64@2.7.11:
- resolution: {integrity: sha512-7xGEfPPbmVJWcY2Nzqo11B9Nfxs+BAsiiaY/OcT4aaTDdykKeCjvKMQJA3KXCtZ1AtiC9ljyGLi+BfUwdulY5A==}
+ /@lmdb/lmdb-linux-arm64@2.8.5:
+ resolution: {integrity: sha512-vtbZRHH5UDlL01TT5jB576Zox3+hdyogvpcbvVJlmU5PdL3c5V7cj1EODdh1CHPksRl+cws/58ugEHi8bcj4Ww==}
cpu: [arm64]
os: [linux]
requiresBuild: true
dev: true
optional: true
- /@lmdb/lmdb-linux-arm@2.7.11:
- resolution: {integrity: sha512-dHfLFVSrw/v5X5lkwp0Vl7+NFpEeEYKfMG2DpdFJnnG1RgHQZngZxCaBagFoaJGykRpd2DYF1AeuXBFrAUAXfw==}
+ /@lmdb/lmdb-linux-arm@2.8.5:
+ resolution: {integrity: sha512-c0TGMbm2M55pwTDIfkDLB6BpIsgxV4PjYck2HiOX+cy/JWiBXz32lYbarPqejKs9Flm7YVAKSILUducU9g2RVg==}
cpu: [arm]
os: [linux]
requiresBuild: true
dev: true
optional: true
- /@lmdb/lmdb-linux-x64@2.7.11:
- resolution: {integrity: sha512-vUKI3JrREMQsXX8q0Eq5zX2FlYCKWMmLiCyyJNfZK0Uyf14RBg9VtB3ObQ41b4swYh2EWaltasWVe93Y8+KDng==}
+ /@lmdb/lmdb-linux-x64@2.8.5:
+ resolution: {integrity: sha512-Xkc8IUx9aEhP0zvgeKy7IQ3ReX2N8N1L0WPcQwnZweWmOuKfwpS3GRIYqLtK5za/w3E60zhFfNdS+3pBZPytqQ==}
cpu: [x64]
os: [linux]
requiresBuild: true
dev: true
optional: true
- /@lmdb/lmdb-win32-x64@2.7.11:
- resolution: {integrity: sha512-BJwkHlSUgtB+Ei52Ai32M1AOMerSlzyIGA/KC4dAGL+GGwVMdwG8HGCOA2TxP3KjhbgDPMYkv7bt/NmOmRIFng==}
+ /@lmdb/lmdb-win32-x64@2.8.5:
+ resolution: {integrity: sha512-4wvrf5BgnR8RpogHhtpCPJMKBmvyZPhhUtEwMJbXh0ni2BucpfF07jlmyM11zRqQ2XIq6PbC2j7W7UCCcm1rRQ==}
cpu: [x64]
os: [win32]
requiresBuild: true
@@ -742,7 +742,7 @@ packages:
engines: {node: '>=12.0.0'}
dependencies:
'@lezer/common': 1.1.0
- '@lezer/lr': 1.3.12
+ '@lezer/lr': 1.3.14
json5: 2.2.3
dev: true
@@ -794,85 +794,90 @@ packages:
dev: true
optional: true
- /@octokit/openapi-types@19.0.0:
- resolution: {integrity: sha512-PclQ6JGMTE9iUStpzMkwLCISFn/wDeRjkZFIKALpvJQNBGwDoYYi2fFvuHwssoQ1rXI5mfh6jgTgWuddeUzfWw==}
+ /@octokit/openapi-types@19.1.0:
+ resolution: {integrity: sha512-6G+ywGClliGQwRsjvqVYpklIfa7oRPA0vyhPQG/1Feh+B+wU0vGH1JiJ5T25d3g1JZYBHzR2qefLi9x8Gt+cpw==}
dev: true
- /@parcel/bundler-default@2.9.3:
- resolution: {integrity: sha512-JjJK8dq39/UO/MWI/4SCbB1t/qgpQRFnFDetAAAezQ8oN++b24u1fkMDa/xqQGjbuPmGeTds5zxGgYs7id7PYg==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/bundler-default@2.11.0:
+ resolution: {integrity: sha512-ZIs0865Lp871ZK83k5I9L4DeeE26muNMrHa7j8bvls6fKBJKAn8djrhfU4XOLyziU4aAOobcPwXU0+npWqs52g==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/diagnostic': 2.9.3
- '@parcel/graph': 2.9.3
- '@parcel/hash': 2.9.3
- '@parcel/plugin': 2.9.3
- '@parcel/utils': 2.9.3
+ '@parcel/diagnostic': 2.11.0
+ '@parcel/graph': 3.1.0
+ '@parcel/plugin': 2.11.0
+ '@parcel/rust': 2.11.0
+ '@parcel/utils': 2.11.0
nullthrows: 1.1.1
+ transitivePeerDependencies:
+ - '@parcel/core'
dev: true
- /@parcel/cache@2.9.3(@parcel/core@2.9.3):
- resolution: {integrity: sha512-Bj/H2uAJJSXtysG7E/x4EgTrE2hXmm7td/bc97K8M9N7+vQjxf7xb0ebgqe84ePVMkj4MVQSMEJkEucXVx4b0Q==}
+ /@parcel/cache@2.11.0(@parcel/core@2.11.0):
+ resolution: {integrity: sha512-RSSkGNjO00lJPyftzaC9eaNVs4jMjPSAm0VJNWQ9JSm2n4A9BzQtTFAt1vhJOzzW1UsQvvBge9DdfkB7a2gIOw==}
engines: {node: '>= 12.0.0'}
peerDependencies:
- '@parcel/core': ^2.9.3
+ '@parcel/core': ^2.11.0
dependencies:
- '@parcel/core': 2.9.3
- '@parcel/fs': 2.9.3(@parcel/core@2.9.3)
- '@parcel/logger': 2.9.3
- '@parcel/utils': 2.9.3
- lmdb: 2.7.11
+ '@parcel/core': 2.11.0
+ '@parcel/fs': 2.11.0(@parcel/core@2.11.0)
+ '@parcel/logger': 2.11.0
+ '@parcel/utils': 2.11.0
+ lmdb: 2.8.5
dev: true
- /@parcel/codeframe@2.9.3:
- resolution: {integrity: sha512-z7yTyD6h3dvduaFoHpNqur74/2yDWL++33rjQjIjCaXREBN6dKHoMGMizzo/i4vbiI1p9dDox2FIDEHCMQxqdA==}
+ /@parcel/codeframe@2.11.0:
+ resolution: {integrity: sha512-YHs9g/i5af/sd/JrWAojU9YFbKffcJ3Tx2EJaK0ME8OJsye91UaI/3lxSUYLmJG9e4WLNJtqci8V5FBMz//ZPg==}
engines: {node: '>= 12.0.0'}
dependencies:
chalk: 4.1.2
dev: true
- /@parcel/compressor-raw@2.9.3:
- resolution: {integrity: sha512-jz3t4/ICMsHEqgiTmv5i1DJva2k5QRpZlBELVxfY+QElJTVe8edKJ0TiKcBxh2hx7sm4aUigGmp7JiqqHRRYmA==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/compressor-raw@2.11.0:
+ resolution: {integrity: sha512-RArhBPRTCfz77soX2IECH09NUd76UBWujXiPRcXGPIHK+C3L1cRuzsNcA39QeSb3thz3b99JcozMJ1nkC2Bsgw==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/plugin': 2.9.3
+ '@parcel/plugin': 2.11.0
+ transitivePeerDependencies:
+ - '@parcel/core'
dev: true
- /@parcel/config-default@2.9.3(@parcel/core@2.9.3)(@swc/helpers@0.5.2)(typescript@5.2.2):
- resolution: {integrity: sha512-tqN5tF7QnVABDZAu76co5E6N8mA9n8bxiWdK4xYyINYFIEHgX172oRTqXTnhEMjlMrdmASxvnGlbaPBaVnrCTw==}
+ /@parcel/config-default@2.11.0(@parcel/core@2.11.0)(@swc/helpers@0.5.3)(typescript@5.3.3):
+ resolution: {integrity: sha512-1e2+qcZkm5/0f4eI20p/DemcYiSxq9d/eyjpTXA7PulJaHbL1wonwUAuy3mvnAvDnLOJmAk/obDVgX1ZfxMGtg==}
peerDependencies:
- '@parcel/core': ^2.9.3
- dependencies:
- '@parcel/bundler-default': 2.9.3
- '@parcel/compressor-raw': 2.9.3
- '@parcel/core': 2.9.3
- '@parcel/namer-default': 2.9.3
- '@parcel/optimizer-css': 2.9.3
- '@parcel/optimizer-htmlnano': 2.9.3(typescript@5.2.2)
- '@parcel/optimizer-image': 2.9.3(@parcel/core@2.9.3)
- '@parcel/optimizer-svgo': 2.9.3
- '@parcel/optimizer-swc': 2.9.3(@swc/helpers@0.5.2)
- '@parcel/packager-css': 2.9.3
- '@parcel/packager-html': 2.9.3
- '@parcel/packager-js': 2.9.3
- '@parcel/packager-raw': 2.9.3
- '@parcel/packager-svg': 2.9.3
- '@parcel/reporter-dev-server': 2.9.3
- '@parcel/resolver-default': 2.9.3(@parcel/core@2.9.3)
- '@parcel/runtime-browser-hmr': 2.9.3
- '@parcel/runtime-js': 2.9.3
- '@parcel/runtime-react-refresh': 2.9.3
- '@parcel/runtime-service-worker': 2.9.3
- '@parcel/transformer-babel': 2.9.3
- '@parcel/transformer-css': 2.9.3
- '@parcel/transformer-html': 2.9.3
- '@parcel/transformer-image': 2.9.3(@parcel/core@2.9.3)
- '@parcel/transformer-js': 2.9.3(@parcel/core@2.9.3)
- '@parcel/transformer-json': 2.9.3
- '@parcel/transformer-postcss': 2.9.3
- '@parcel/transformer-posthtml': 2.9.3
- '@parcel/transformer-raw': 2.9.3
- '@parcel/transformer-react-refresh-wrap': 2.9.3
- '@parcel/transformer-svg': 2.9.3
+ '@parcel/core': ^2.11.0
+ dependencies:
+ '@parcel/bundler-default': 2.11.0
+ '@parcel/compressor-raw': 2.11.0
+ '@parcel/core': 2.11.0
+ '@parcel/namer-default': 2.11.0
+ '@parcel/optimizer-css': 2.11.0
+ '@parcel/optimizer-htmlnano': 2.11.0(typescript@5.3.3)
+ '@parcel/optimizer-image': 2.11.0(@parcel/core@2.11.0)
+ '@parcel/optimizer-svgo': 2.11.0
+ '@parcel/optimizer-swc': 2.11.0(@swc/helpers@0.5.3)
+ '@parcel/packager-css': 2.11.0
+ '@parcel/packager-html': 2.11.0
+ '@parcel/packager-js': 2.11.0
+ '@parcel/packager-raw': 2.11.0
+ '@parcel/packager-svg': 2.11.0
+ '@parcel/packager-wasm': 2.11.0
+ '@parcel/reporter-dev-server': 2.11.0
+ '@parcel/resolver-default': 2.11.0(@parcel/core@2.11.0)
+ '@parcel/runtime-browser-hmr': 2.11.0
+ '@parcel/runtime-js': 2.11.0
+ '@parcel/runtime-react-refresh': 2.11.0
+ '@parcel/runtime-service-worker': 2.11.0
+ '@parcel/transformer-babel': 2.11.0
+ '@parcel/transformer-css': 2.11.0
+ '@parcel/transformer-html': 2.11.0
+ '@parcel/transformer-image': 2.11.0(@parcel/core@2.11.0)
+ '@parcel/transformer-js': 2.11.0(@parcel/core@2.11.0)
+ '@parcel/transformer-json': 2.11.0
+ '@parcel/transformer-postcss': 2.11.0
+ '@parcel/transformer-posthtml': 2.11.0
+ '@parcel/transformer-raw': 2.11.0
+ '@parcel/transformer-react-refresh-wrap': 2.11.0
+ '@parcel/transformer-svg': 2.11.0
transitivePeerDependencies:
- '@swc/helpers'
- cssnano
@@ -885,25 +890,25 @@ packages:
- uncss
dev: true
- /@parcel/core@2.9.3:
- resolution: {integrity: sha512-4KlM1Zr/jpsqWuMXr2zmGsaOUs1zMMFh9vfCNKRZkptf+uk8I3sugHbNdo+F5B+4e2yMuOEb1zgAmvJLeuH6ww==}
+ /@parcel/core@2.11.0:
+ resolution: {integrity: sha512-Npe0S6hVaqWEwRL+HI7gtOYOaoE5bJQZTgUDhsDoppWbau51jOlRYOZTXuvRK/jxXnze4/S1sdM24xBYAQ5qkw==}
engines: {node: '>= 12.0.0'}
dependencies:
'@mischnic/json-sourcemap': 0.1.1
- '@parcel/cache': 2.9.3(@parcel/core@2.9.3)
- '@parcel/diagnostic': 2.9.3
- '@parcel/events': 2.9.3
- '@parcel/fs': 2.9.3(@parcel/core@2.9.3)
- '@parcel/graph': 2.9.3
- '@parcel/hash': 2.9.3
- '@parcel/logger': 2.9.3
- '@parcel/package-manager': 2.9.3(@parcel/core@2.9.3)
- '@parcel/plugin': 2.9.3
- '@parcel/profiler': 2.9.3
+ '@parcel/cache': 2.11.0(@parcel/core@2.11.0)
+ '@parcel/diagnostic': 2.11.0
+ '@parcel/events': 2.11.0
+ '@parcel/fs': 2.11.0(@parcel/core@2.11.0)
+ '@parcel/graph': 3.1.0
+ '@parcel/logger': 2.11.0
+ '@parcel/package-manager': 2.11.0(@parcel/core@2.11.0)
+ '@parcel/plugin': 2.11.0
+ '@parcel/profiler': 2.11.0
+ '@parcel/rust': 2.11.0
'@parcel/source-map': 2.1.1
- '@parcel/types': 2.9.3
- '@parcel/utils': 2.9.3
- '@parcel/workers': 2.9.3(@parcel/core@2.9.3)
+ '@parcel/types': 2.11.0
+ '@parcel/utils': 2.11.0
+ '@parcel/workers': 2.11.0(@parcel/core@2.11.0)
abortcontroller-polyfill: 1.7.5
base-x: 3.0.9
browserslist: 4.22.1
@@ -916,113 +921,107 @@ packages:
semver: 7.5.4
dev: true
- /@parcel/diagnostic@2.9.3:
- resolution: {integrity: sha512-6jxBdyB3D7gP4iE66ghUGntWt2v64E6EbD4AetZk+hNJpgudOOPsKTovcMi/i7I4V0qD7WXSF4tvkZUoac0jwA==}
+ /@parcel/diagnostic@2.11.0:
+ resolution: {integrity: sha512-4dJmOXVL5YGGQRRsQosQbSRONBcboB71mSwaeaEgz3pPdq9QXVPLACkGe/jTXSqa3OnAHu3g5vQLpE1g5xqBqw==}
engines: {node: '>= 12.0.0'}
dependencies:
'@mischnic/json-sourcemap': 0.1.1
nullthrows: 1.1.1
dev: true
- /@parcel/events@2.9.3:
- resolution: {integrity: sha512-K0Scx+Bx9f9p1vuShMzNwIgiaZUkxEnexaKYHYemJrM7pMAqxIuIqhnvwurRCsZOVLUJPDDNJ626cWTc5vIq+A==}
+ /@parcel/events@2.11.0:
+ resolution: {integrity: sha512-K6SOjOrQsz1GdNl2qKBktq7KJ3Q3yxK8WXdmQYo10wG39dr051xtMb38aqieTp4eVhL8Yaq2iJgGkdr11fuBnA==}
engines: {node: '>= 12.0.0'}
dev: true
- /@parcel/fs-search@2.9.3:
- resolution: {integrity: sha512-nsNz3bsOpwS+jphcd+XjZL3F3PDq9lik0O8HPm5f6LYkqKWT+u/kgQzA8OkAHCR3q96LGiHxUywHPEBc27vI4Q==}
- engines: {node: '>= 12.0.0'}
- dev: true
-
- /@parcel/fs@2.9.3(@parcel/core@2.9.3):
- resolution: {integrity: sha512-/PrRKgCRw22G7rNPSpgN3Q+i2nIkZWuvIOAdMG4KWXC4XLp8C9jarNaWd5QEQ75amjhQSl3oUzABzkdCtkKrgg==}
+ /@parcel/fs@2.11.0(@parcel/core@2.11.0):
+ resolution: {integrity: sha512-zWckdnnovdrgdFX4QYuQV4bbKCsh6IYCkmwaB4yp47rhw1MP0lkBINLt4yFPHBxWXOpElCfxjL+z69c9xJQRBQ==}
engines: {node: '>= 12.0.0'}
peerDependencies:
- '@parcel/core': ^2.9.3
+ '@parcel/core': ^2.11.0
dependencies:
- '@parcel/core': 2.9.3
- '@parcel/fs-search': 2.9.3
- '@parcel/types': 2.9.3
- '@parcel/utils': 2.9.3
+ '@parcel/core': 2.11.0
+ '@parcel/rust': 2.11.0
+ '@parcel/types': 2.11.0
+ '@parcel/utils': 2.11.0
'@parcel/watcher': 2.3.0
- '@parcel/workers': 2.9.3(@parcel/core@2.9.3)
+ '@parcel/workers': 2.11.0(@parcel/core@2.11.0)
dev: true
- /@parcel/graph@2.9.3:
- resolution: {integrity: sha512-3LmRJmF8+OprAr6zJT3X2s8WAhLKkrhi6RsFlMWHifGU5ED1PFcJWFbOwJvSjcAhMQJP0fErcFIK1Ludv3Vm3g==}
+ /@parcel/graph@3.1.0:
+ resolution: {integrity: sha512-d1dTW5C7A52HgDtoXlyvlET1ypSlmIxSIZOJ1xp3R9L9hgo3h1u3jHNyaoTe/WPkGVe2QnFxh0h+UibVJhu9vg==}
engines: {node: '>= 12.0.0'}
dependencies:
nullthrows: 1.1.1
dev: true
- /@parcel/hash@2.9.3:
- resolution: {integrity: sha512-qlH5B85XLzVAeijgKPjm1gQu35LoRYX/8igsjnN8vOlbc3O8BYAUIutU58fbHbtE8MJPbxQQUw7tkTjeoujcQQ==}
- engines: {node: '>= 12.0.0'}
- dependencies:
- xxhash-wasm: 0.4.2
- dev: true
-
- /@parcel/logger@2.9.3:
- resolution: {integrity: sha512-5FNBszcV6ilGFcijEOvoNVG6IUJGsnMiaEnGQs7Fvc1dktTjEddnoQbIYhcSZL63wEmzBZOgkT5yDMajJ/41jw==}
+ /@parcel/logger@2.11.0:
+ resolution: {integrity: sha512-HtMEdCq3LKnvv4T2CIskcqlf2gpBvHMm3pkeUFB/hc/7hW/hE1k6/HA2VOQvc0tBsaMpmEx7PCrfrH56usQSyA==}
engines: {node: '>= 12.0.0'}
dependencies:
- '@parcel/diagnostic': 2.9.3
- '@parcel/events': 2.9.3
+ '@parcel/diagnostic': 2.11.0
+ '@parcel/events': 2.11.0
dev: true
- /@parcel/markdown-ansi@2.9.3:
- resolution: {integrity: sha512-/Q4X8F2aN8UNjAJrQ5NfK2OmZf6shry9DqetUSEndQ0fHonk78WKt6LT0zSKEBEW/bB/bXk6mNMsCup6L8ibjQ==}
+ /@parcel/markdown-ansi@2.11.0:
+ resolution: {integrity: sha512-YA60EWbXi6cLOIzcwRC2wijotPauOGQbUi0vSbu0O6/mjQ68kWCMGz0hwZjDRQcPypQVJEIvTgMymLbvumxwhg==}
engines: {node: '>= 12.0.0'}
dependencies:
chalk: 4.1.2
dev: true
- /@parcel/namer-default@2.9.3:
- resolution: {integrity: sha512-1ynFEcap48/Ngzwwn318eLYpLUwijuuZoXQPCsEQ21OOIOtfhFQJaPwXTsw6kRitshKq76P2aafE0BioGSqxcA==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/namer-default@2.11.0:
+ resolution: {integrity: sha512-DEwBSKSClg4DA2xAWimYkw9bFi7MFb9TdT7/TYZStMTsfYHPWOyyjGR7aVr3Ra4wNb+XX6g4rR41yp3HD6KO7A==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/diagnostic': 2.9.3
- '@parcel/plugin': 2.9.3
+ '@parcel/diagnostic': 2.11.0
+ '@parcel/plugin': 2.11.0
nullthrows: 1.1.1
+ transitivePeerDependencies:
+ - '@parcel/core'
dev: true
- /@parcel/node-resolver-core@3.0.3(@parcel/core@2.9.3):
- resolution: {integrity: sha512-AjxNcZVHHJoNT/A99PKIdFtwvoze8PAiC3yz8E/dRggrDIOboUEodeQYV5Aq++aK76uz/iOP0tST2T8A5rhb1A==}
+ /@parcel/node-resolver-core@3.2.0(@parcel/core@2.11.0):
+ resolution: {integrity: sha512-XJRSxCkNbGFWjfmwFdcQZ/qlzWZd35qLtvLz2va8euGL7M5OMEQOv7dsvEhl0R+CC2zcnfFzZwxk78q6ezs8AQ==}
engines: {node: '>= 12.0.0'}
dependencies:
'@mischnic/json-sourcemap': 0.1.1
- '@parcel/diagnostic': 2.9.3
- '@parcel/fs': 2.9.3(@parcel/core@2.9.3)
- '@parcel/utils': 2.9.3
+ '@parcel/diagnostic': 2.11.0
+ '@parcel/fs': 2.11.0(@parcel/core@2.11.0)
+ '@parcel/rust': 2.11.0
+ '@parcel/utils': 2.11.0
nullthrows: 1.1.1
semver: 7.5.4
transitivePeerDependencies:
- '@parcel/core'
dev: true
- /@parcel/optimizer-css@2.9.3:
- resolution: {integrity: sha512-RK1QwcSdWDNUsFvuLy0hgnYKtPQebzCb0vPPzqs6LhL+vqUu9utOyRycGaQffHCkHVQP6zGlN+KFssd7YtFGhA==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/optimizer-css@2.11.0:
+ resolution: {integrity: sha512-bV97PRxshHV3dMwOpLRgcP1QNhrVWh6VVDfm2gmWULpvsjoykcPS6vrCFksY5CpQsSvNHqJBzQjWS8FubUI76w==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/diagnostic': 2.9.3
- '@parcel/plugin': 2.9.3
+ '@parcel/diagnostic': 2.11.0
+ '@parcel/plugin': 2.11.0
'@parcel/source-map': 2.1.1
- '@parcel/utils': 2.9.3
+ '@parcel/utils': 2.11.0
browserslist: 4.22.1
- lightningcss: 1.22.0
+ lightningcss: 1.23.0
nullthrows: 1.1.1
+ transitivePeerDependencies:
+ - '@parcel/core'
dev: true
- /@parcel/optimizer-htmlnano@2.9.3(typescript@5.2.2):
- resolution: {integrity: sha512-9g/KBck3c6DokmJfvJ5zpHFBiCSolaGrcsTGx8C3YPdCTVTI9P1TDCwUxvAr4LjpcIRSa82wlLCI+nF6sSgxKA==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/optimizer-htmlnano@2.11.0(typescript@5.3.3):
+ resolution: {integrity: sha512-c20pz4EFF5DNFmqYgptlIj49eT6xjGLkDTdHH3RRzxKovuSXWfYSPs3GED3ZsjVuQyjNQif+/MAk9547F7hrdQ==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/plugin': 2.9.3
- htmlnano: 2.0.4(svgo@2.8.0)(typescript@5.2.2)
+ '@parcel/plugin': 2.11.0
+ htmlnano: 2.1.0(svgo@2.8.0)(typescript@5.3.3)
nullthrows: 1.1.1
posthtml: 0.16.6
svgo: 2.8.0
transitivePeerDependencies:
+ - '@parcel/core'
- cssnano
- postcss
- purgecss
@@ -1033,213 +1032,253 @@ packages:
- uncss
dev: true
- /@parcel/optimizer-image@2.9.3(@parcel/core@2.9.3):
- resolution: {integrity: sha512-530YzthE7kmecnNhPbkAK+26yQNt69pfJrgE0Ev0BZaM1Wu2+33nki7o8qvkTkikhPrurEJLGIXt1qKmbKvCbA==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/optimizer-image@2.11.0(@parcel/core@2.11.0):
+ resolution: {integrity: sha512-jCaJww5QFG2GuNzYW8nlSW+Ea+Cv47TRnOPJNquFIajgfTLJ5ddsWbaNal0GQsL8yNiCBKWd1AV4W0RH9tG0Jg==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
peerDependencies:
- '@parcel/core': ^2.9.3
+ '@parcel/core': ^2.11.0
dependencies:
- '@parcel/core': 2.9.3
- '@parcel/diagnostic': 2.9.3
- '@parcel/plugin': 2.9.3
- '@parcel/utils': 2.9.3
- '@parcel/workers': 2.9.3(@parcel/core@2.9.3)
+ '@parcel/core': 2.11.0
+ '@parcel/diagnostic': 2.11.0
+ '@parcel/plugin': 2.11.0
+ '@parcel/rust': 2.11.0
+ '@parcel/utils': 2.11.0
+ '@parcel/workers': 2.11.0(@parcel/core@2.11.0)
dev: true
- /@parcel/optimizer-svgo@2.9.3:
- resolution: {integrity: sha512-ytQS0wY5JJhWU4mL0wfhYDUuHcfuw+Gy2+JcnTm1t1AZXHlOTbU6EzRWNqBShsgXjvdrQQXizAe3B6GFFlFJVQ==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/optimizer-svgo@2.11.0:
+ resolution: {integrity: sha512-TQpvfBhjV2IsuFHXUolbDS6XWB3DDR2rYTlqlA8LMmuOY7jQd9Bnkl4JnapzWm/bRuzRlzdGjjVCPGL8iShFvA==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/diagnostic': 2.9.3
- '@parcel/plugin': 2.9.3
- '@parcel/utils': 2.9.3
+ '@parcel/diagnostic': 2.11.0
+ '@parcel/plugin': 2.11.0
+ '@parcel/utils': 2.11.0
svgo: 2.8.0
+ transitivePeerDependencies:
+ - '@parcel/core'
dev: true
- /@parcel/optimizer-swc@2.9.3(@swc/helpers@0.5.2):
- resolution: {integrity: sha512-GQINNeqtdpL1ombq/Cpwi6IBk02wKJ/JJbYbyfHtk8lxlq13soenpwOlzJ5T9D2fdG+FUhai9NxpN5Ss4lNoAg==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/optimizer-swc@2.11.0(@swc/helpers@0.5.3):
+ resolution: {integrity: sha512-ftf42F3JyZxJb6nnLlgNGyNQ273YOla4dFGH/tWC8iTwObHUpWe7cMbCGcrSJBvAlsLkZfLpFNAXFxUgxdKyHQ==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/diagnostic': 2.9.3
- '@parcel/plugin': 2.9.3
+ '@parcel/diagnostic': 2.11.0
+ '@parcel/plugin': 2.11.0
'@parcel/source-map': 2.1.1
- '@parcel/utils': 2.9.3
- '@swc/core': 1.3.91(@swc/helpers@0.5.2)
+ '@parcel/utils': 2.11.0
+ '@swc/core': 1.3.95(@swc/helpers@0.5.3)
nullthrows: 1.1.1
transitivePeerDependencies:
+ - '@parcel/core'
- '@swc/helpers'
dev: true
- /@parcel/package-manager@2.9.3(@parcel/core@2.9.3):
- resolution: {integrity: sha512-NH6omcNTEupDmW4Lm1e4NUYBjdqkURxgZ4CNESESInHJe6tblVhNB8Rpr1ar7zDar7cly9ILr8P6N3Ei7bTEjg==}
+ /@parcel/package-manager@2.11.0(@parcel/core@2.11.0):
+ resolution: {integrity: sha512-QzdsrUYlAwIzb8by7WJjqYnbR1MoMKWbtE1MXUeYsZbFusV8B6pOH+lwqNJKS/BFtddZMRPYFueZS2N2fwzjig==}
engines: {node: '>= 12.0.0'}
peerDependencies:
- '@parcel/core': ^2.9.3
- dependencies:
- '@parcel/core': 2.9.3
- '@parcel/diagnostic': 2.9.3
- '@parcel/fs': 2.9.3(@parcel/core@2.9.3)
- '@parcel/logger': 2.9.3
- '@parcel/node-resolver-core': 3.0.3(@parcel/core@2.9.3)
- '@parcel/types': 2.9.3
- '@parcel/utils': 2.9.3
- '@parcel/workers': 2.9.3(@parcel/core@2.9.3)
+ '@parcel/core': ^2.11.0
+ dependencies:
+ '@parcel/core': 2.11.0
+ '@parcel/diagnostic': 2.11.0
+ '@parcel/fs': 2.11.0(@parcel/core@2.11.0)
+ '@parcel/logger': 2.11.0
+ '@parcel/node-resolver-core': 3.2.0(@parcel/core@2.11.0)
+ '@parcel/types': 2.11.0
+ '@parcel/utils': 2.11.0
+ '@parcel/workers': 2.11.0(@parcel/core@2.11.0)
semver: 7.5.4
dev: true
- /@parcel/packager-css@2.9.3:
- resolution: {integrity: sha512-mePiWiYZOULY6e1RdAIJyRoYqXqGci0srOaVZYaP7mnrzvJgA63kaZFFsDiEWghunQpMUuUjM2x/vQVHzxmhKQ==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/packager-css@2.11.0:
+ resolution: {integrity: sha512-AyIxsp4eL8c22vp2oO2hSRnr3hSVNkARNZc9DG6uXxCc2Is5tUEX0I4PwxWnAx0EI44l+3zX/o414zT8yV9wwQ==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/diagnostic': 2.9.3
- '@parcel/plugin': 2.9.3
+ '@parcel/diagnostic': 2.11.0
+ '@parcel/plugin': 2.11.0
'@parcel/source-map': 2.1.1
- '@parcel/utils': 2.9.3
+ '@parcel/utils': 2.11.0
nullthrows: 1.1.1
+ transitivePeerDependencies:
+ - '@parcel/core'
dev: true
- /@parcel/packager-html@2.9.3:
- resolution: {integrity: sha512-0Ex+O0EaZf9APNERRNGgGto02hFJ6f5RQEvRWBK55WAV1rXeU+kpjC0c0qZvnUaUtXfpWMsEBkevJCwDkUMeMg==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/packager-html@2.11.0:
+ resolution: {integrity: sha512-ho5AQ70naTV8IqkKIbKtK+jsXQ5TJfFgtBvmJlyB3YydRMbIc+3g4G0xgIvf15V4uCMw9Md0Sv1W65nQXHPQoA==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/plugin': 2.9.3
- '@parcel/types': 2.9.3
- '@parcel/utils': 2.9.3
+ '@parcel/plugin': 2.11.0
+ '@parcel/types': 2.11.0
+ '@parcel/utils': 2.11.0
nullthrows: 1.1.1
posthtml: 0.16.6
+ transitivePeerDependencies:
+ - '@parcel/core'
dev: true
- /@parcel/packager-js@2.9.3:
- resolution: {integrity: sha512-V5xwkoE3zQ3R+WqAWhA1KGQ791FvJeW6KonOlMI1q76Djjgox68hhObqcLu66AmYNhR2R/wUpkP18hP2z8dSFw==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/packager-js@2.11.0:
+ resolution: {integrity: sha512-SxjCsd0xQfg5H73YtVJj9VOpr9s0rwMsSoeykjkatbkEla9NsZajsUkd/bfYf+/0WvEKOrB8oUBo15HkGOgKug==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/diagnostic': 2.9.3
- '@parcel/hash': 2.9.3
- '@parcel/plugin': 2.9.3
+ '@parcel/diagnostic': 2.11.0
+ '@parcel/plugin': 2.11.0
+ '@parcel/rust': 2.11.0
'@parcel/source-map': 2.1.1
- '@parcel/utils': 2.9.3
- globals: 13.22.0
+ '@parcel/types': 2.11.0
+ '@parcel/utils': 2.11.0
+ globals: 13.23.0
nullthrows: 1.1.1
+ transitivePeerDependencies:
+ - '@parcel/core'
dev: true
- /@parcel/packager-raw@2.9.3:
- resolution: {integrity: sha512-oPQTNoYanQ2DdJyL61uPYK2py83rKOT8YVh2QWAx0zsSli6Kiy64U3+xOCYWgDVCrHw9+9NpQMuAdSiFg4cq8g==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/packager-raw@2.11.0:
+ resolution: {integrity: sha512-2/0JQ8DZrz7cVNXwD6OYoUUtSSnlr4dsz8ZkpFDKsBJhvMHtC78Sq+1EDixDGOMiUcalSEjNsoHtkpq9uNh+Xw==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/plugin': 2.9.3
+ '@parcel/plugin': 2.11.0
+ transitivePeerDependencies:
+ - '@parcel/core'
dev: true
- /@parcel/packager-svg@2.9.3:
- resolution: {integrity: sha512-p/Ya6UO9DAkaCUFxfFGyeHZDp9YPAlpdnh1OChuwqSFOXFjjeXuoK4KLT+ZRalVBo2Jo8xF70oKMZw4MVvaL7Q==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/packager-svg@2.11.0:
+ resolution: {integrity: sha512-2wQBkzLwcaWFGWz8TP+bgsXgiueWPzrjKsWugWdDfq0FbXh8XVeR/599qnus3RFHZy4cH6L6yq/7zxcljtxK8A==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/plugin': 2.9.3
- '@parcel/types': 2.9.3
- '@parcel/utils': 2.9.3
+ '@parcel/plugin': 2.11.0
+ '@parcel/types': 2.11.0
+ '@parcel/utils': 2.11.0
posthtml: 0.16.6
+ transitivePeerDependencies:
+ - '@parcel/core'
+ dev: true
+
+ /@parcel/packager-ts@2.11.0:
+ resolution: {integrity: sha512-j9TxAz65nHYo/c2aEwGcPUE2F6qOenr6vm1YR8jHnahrW9LEPXkZjSJA1i85Hs+ihAQKpSatMJzO5RojBgcevw==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
+ dependencies:
+ '@parcel/plugin': 2.11.0
+ transitivePeerDependencies:
+ - '@parcel/core'
dev: true
- /@parcel/packager-ts@2.9.3:
- resolution: {integrity: sha512-Vd9dm1FqaFDw/kWCh95zgGS08HvIpSLg5Aa+AIhFiM0G+kpRSItcBSNJVwC7JKmLk1rmQhmQKoCKX26+nvyAzA==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/packager-wasm@2.11.0:
+ resolution: {integrity: sha512-tTy4EbDXeeiZ0oB7L2FWaHSD1mbmYZP6R5HXqkvc5dECGUKPU5Jz6ek2C5AM+HfQdQLKXPQ/Xw3eJnI/AmctVg==}
+ engines: {node: '>=12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/plugin': 2.9.3
+ '@parcel/plugin': 2.11.0
transitivePeerDependencies:
- '@parcel/core'
dev: true
- /@parcel/plugin@2.9.3:
- resolution: {integrity: sha512-qN85Gqr2GMuxX1dT1mnuO9hOcvlEv1lrYrCxn7CJN2nUhbwcfG+LEvcrCzCOJ6XtIHm+ZBV9h9p7FfoPLvpw+g==}
+ /@parcel/plugin@2.11.0:
+ resolution: {integrity: sha512-9npuKBlhnPn7oeUpLJGecceg16GkXbvzbr6MNSZiHhkx3IBeITHQXlZnp2zAjUOFreNsYOfifwEF2S4KsARfBQ==}
engines: {node: '>= 12.0.0'}
dependencies:
- '@parcel/types': 2.9.3
+ '@parcel/types': 2.11.0
transitivePeerDependencies:
- '@parcel/core'
dev: true
- /@parcel/profiler@2.9.3:
- resolution: {integrity: sha512-pyHc9lw8VZDfgZoeZWZU9J0CVEv1Zw9O5+e0DJPDPHuXJYr72ZAOhbljtU3owWKAeW+++Q2AZWkbUGEOjI/e6g==}
+ /@parcel/profiler@2.11.0:
+ resolution: {integrity: sha512-s10SS09prOdwnaAcjK8M5zO8o+zPJJW5oOqXPNdf6KH4NGD/ue7iOk2xM8QLw6ulSwxE7NDt++lyfW3AXgCZwg==}
engines: {node: '>= 12.0.0'}
dependencies:
- '@parcel/diagnostic': 2.9.3
- '@parcel/events': 2.9.3
+ '@parcel/diagnostic': 2.11.0
+ '@parcel/events': 2.11.0
chrome-trace-event: 1.0.3
dev: true
- /@parcel/reporter-cli@2.9.3:
- resolution: {integrity: sha512-pZiEvQpuXFuQBafMHxkDmwH8CnnK9sWHwa3bSbsnt385aUahtE8dpY0LKt+K1zfB6degKoczN6aWVj9WycQuZQ==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/reporter-cli@2.11.0:
+ resolution: {integrity: sha512-hY0iO0f+LifgJHDUIjGQJnxLFSkk2jlbfy+kIaft5oI3/IM+UljecfGO+14XH8mYlqRXXPsT09TJe8ZKQzp4ZQ==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/plugin': 2.9.3
- '@parcel/types': 2.9.3
- '@parcel/utils': 2.9.3
+ '@parcel/plugin': 2.11.0
+ '@parcel/types': 2.11.0
+ '@parcel/utils': 2.11.0
chalk: 4.1.2
+ cli-progress: 3.12.0
term-size: 2.2.1
dev: true
- /@parcel/reporter-dev-server@2.9.3:
- resolution: {integrity: sha512-s6eboxdLEtRSvG52xi9IiNbcPKC0XMVmvTckieue2EqGDbDcaHQoHmmwkk0rNq0/Z/UxelGcQXoIYC/0xq3ykQ==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/reporter-dev-server@2.11.0:
+ resolution: {integrity: sha512-T4ue1+oLFNdcd9maw8QWQuxzOS2kX2jOrSvYKwYd9oGnqiAr1rpiHYYKJhHng+PF5ybwWkj8dUJfGh2NoQysJA==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/plugin': 2.9.3
- '@parcel/utils': 2.9.3
+ '@parcel/plugin': 2.11.0
+ '@parcel/utils': 2.11.0
+ transitivePeerDependencies:
+ - '@parcel/core'
dev: true
- /@parcel/reporter-tracer@2.9.3:
- resolution: {integrity: sha512-9cXpKWk0m6d6d+4+TlAdOe8XIPaFEIKGWMWG+5SFAQE08u3olet4PSvd49F4+ZZo5ftRE7YI3j6xNbXvJT8KGw==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/reporter-tracer@2.11.0:
+ resolution: {integrity: sha512-33q4ftO26OPWHkUpEm0bzzSjW2kHEh6q/JFePwf8W6APTQVruj4mV46+Fh6rxX42ixs92K/QoiE0gYgWZQVDHA==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/plugin': 2.9.3
- '@parcel/utils': 2.9.3
+ '@parcel/plugin': 2.11.0
+ '@parcel/utils': 2.11.0
chrome-trace-event: 1.0.3
nullthrows: 1.1.1
dev: true
- /@parcel/resolver-default@2.9.3(@parcel/core@2.9.3):
- resolution: {integrity: sha512-8ESJk1COKvDzkmOnppNXoDamNMlYVIvrKc2RuFPmp8nKVj47R6NwMgvwxEaatyPzvkmyTpq5RvG9I3HFc+r4Cw==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/resolver-default@2.11.0(@parcel/core@2.11.0):
+ resolution: {integrity: sha512-suZNN2lE5W48LPTwAbG7gnj1IeubkCVEm0XspWXcXUtCzglimNJ8PVVBGx171o5CqDpdbGF3AqHjG9N3uOwXag==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/node-resolver-core': 3.0.3(@parcel/core@2.9.3)
- '@parcel/plugin': 2.9.3
+ '@parcel/node-resolver-core': 3.2.0(@parcel/core@2.11.0)
+ '@parcel/plugin': 2.11.0
transitivePeerDependencies:
- '@parcel/core'
dev: true
- /@parcel/runtime-browser-hmr@2.9.3:
- resolution: {integrity: sha512-EgiDIDrVAWpz7bOzWXqVinQkaFjLwT34wsonpXAbuI7f7r00d52vNAQC9AMu+pTijA3gyKoJ+Q4NWPMZf7ACDA==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/runtime-browser-hmr@2.11.0:
+ resolution: {integrity: sha512-uVwNBtoLMrlPHLvRS05BVhLseduMOpZT36yiIjS0YSBJcC6/otI9AY7ZiDPYmrB5xTqM0R+D554JhPaJHCuocw==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/plugin': 2.9.3
- '@parcel/utils': 2.9.3
+ '@parcel/plugin': 2.11.0
+ '@parcel/utils': 2.11.0
+ transitivePeerDependencies:
+ - '@parcel/core'
dev: true
- /@parcel/runtime-js@2.9.3:
- resolution: {integrity: sha512-EvIy+qXcKnB5qxHhe96zmJpSAViNVXHfQI5RSdZ2a7CPwORwhTI+zPNT9sb7xb/WwFw/WuTTgzT40b41DceU6Q==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/runtime-js@2.11.0:
+ resolution: {integrity: sha512-fH3nJoexINz7s4cDzp0Vjsx0k1pMYSa5ch38LbbNqCKTermy0pS0zZuvgfLfHFFP+AMRpFQenrF7h7N3bgDmHw==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/diagnostic': 2.9.3
- '@parcel/plugin': 2.9.3
- '@parcel/utils': 2.9.3
+ '@parcel/diagnostic': 2.11.0
+ '@parcel/plugin': 2.11.0
+ '@parcel/utils': 2.11.0
nullthrows: 1.1.1
+ transitivePeerDependencies:
+ - '@parcel/core'
dev: true
- /@parcel/runtime-react-refresh@2.9.3:
- resolution: {integrity: sha512-XBgryZQIyCmi6JwEfMUCmINB3l1TpTp9a2iFxmYNpzHlqj4Ve0saKaqWOVRLvC945ZovWIBzcSW2IYqWKGtbAA==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/runtime-react-refresh@2.11.0:
+ resolution: {integrity: sha512-Kfnc7gLjhoephLMnjABrkIkzVfzPrpJlxiJFIleY2Fm57YhmCfKsEYxm3lHOutNaYl1VArW0LKClPH/VHG9vfQ==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/plugin': 2.9.3
- '@parcel/utils': 2.9.3
+ '@parcel/plugin': 2.11.0
+ '@parcel/utils': 2.11.0
react-error-overlay: 6.0.9
react-refresh: 0.9.0
+ transitivePeerDependencies:
+ - '@parcel/core'
dev: true
- /@parcel/runtime-service-worker@2.9.3:
- resolution: {integrity: sha512-qLJLqv1mMdWL7gyh8aKBFFAuEiJkhUUgLKpdn6eSfH/R7kTtb76WnOwqUrhvEI9bZFUM/8Pa1bzJnPpqSOM+Sw==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/runtime-service-worker@2.11.0:
+ resolution: {integrity: sha512-c8MaSpSbXIKuN5sA/g4UsrsH1BtBZ6Em+eSxt9AYbdPtWrW+qwCioNVZj9lugBRUzDMjVfJz0yK59nS42hABvw==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/plugin': 2.9.3
- '@parcel/utils': 2.9.3
+ '@parcel/plugin': 2.11.0
+ '@parcel/utils': 2.11.0
nullthrows: 1.1.1
+ transitivePeerDependencies:
+ - '@parcel/core'
+ dev: true
+
+ /@parcel/rust@2.11.0:
+ resolution: {integrity: sha512-UkLWdHOD8Md2YmJDPsqd3yIs9chhdl/ATfV/B/xdPKGmqtNouYpDCRlq+WxMt3mLoYgHEg9UwrWLTebo2rr2iQ==}
+ engines: {node: '>= 12.0.0'}
dev: true
/@parcel/source-map@2.1.1:
@@ -1249,195 +1288,228 @@ packages:
detect-libc: 1.0.3
dev: true
- /@parcel/transformer-babel@2.9.3:
- resolution: {integrity: sha512-pURtEsnsp3h6tOBDuzh9wRvVtw4PgIlqwAArIWdrG7iwqOUYv9D8ME4+ePWEu7MQWAp58hv9pTJtqWv4T+Sq8A==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/transformer-babel@2.11.0:
+ resolution: {integrity: sha512-WKGblnp7r426VG+cpeQzc6dj/30EoUaYwyl4OEaigQSJizyuPWTBWTz6FUw+ih1/sg37h+D1BIh9C2FsVzpzbw==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/diagnostic': 2.9.3
- '@parcel/plugin': 2.9.3
+ '@parcel/diagnostic': 2.11.0
+ '@parcel/plugin': 2.11.0
'@parcel/source-map': 2.1.1
- '@parcel/utils': 2.9.3
+ '@parcel/utils': 2.11.0
browserslist: 4.22.1
json5: 2.2.3
nullthrows: 1.1.1
semver: 7.5.4
+ transitivePeerDependencies:
+ - '@parcel/core'
dev: true
- /@parcel/transformer-css@2.9.3:
- resolution: {integrity: sha512-duWMdbEBBPjg3fQdXF16iWIdThetDZvCs2TpUD7xOlXH6kR0V5BJy8ONFT15u1RCqIV9hSNGaS3v3I9YRNY5zQ==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/transformer-css@2.11.0:
+ resolution: {integrity: sha512-nFmBulF/ErNoafO87JbVrBavjBMNwE/kahbCRVxc2Mvlphz4F4lBW4eDRS5l4xBqFJaNkHr9R55ehLBBilF4Jw==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/diagnostic': 2.9.3
- '@parcel/plugin': 2.9.3
+ '@parcel/diagnostic': 2.11.0
+ '@parcel/plugin': 2.11.0
'@parcel/source-map': 2.1.1
- '@parcel/utils': 2.9.3
+ '@parcel/utils': 2.11.0
browserslist: 4.22.1
- lightningcss: 1.22.0
+ lightningcss: 1.23.0
nullthrows: 1.1.1
+ transitivePeerDependencies:
+ - '@parcel/core'
dev: true
- /@parcel/transformer-html@2.9.3:
- resolution: {integrity: sha512-0NU4omcHzFXA1seqftAXA2KNZaMByoKaNdXnLgBgtCGDiYvOcL+6xGHgY6pw9LvOh5um10KI5TxSIMILoI7VtA==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/transformer-html@2.11.0:
+ resolution: {integrity: sha512-90vp7mbvvfqPr9XIINpMcELtywj56f1bxfOkLQgWU1bm22H0FT3i5dqdac++2My0IGDvMwhAEjQfbn4pA579NQ==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/diagnostic': 2.9.3
- '@parcel/hash': 2.9.3
- '@parcel/plugin': 2.9.3
+ '@parcel/diagnostic': 2.11.0
+ '@parcel/plugin': 2.11.0
+ '@parcel/rust': 2.11.0
nullthrows: 1.1.1
posthtml: 0.16.6
posthtml-parser: 0.10.2
posthtml-render: 3.0.0
semver: 7.5.4
srcset: 4.0.0
+ transitivePeerDependencies:
+ - '@parcel/core'
dev: true
- /@parcel/transformer-image@2.9.3(@parcel/core@2.9.3):
- resolution: {integrity: sha512-7CEe35RaPadQzLIuxzTtIxnItvOoy46hcbXtOdDt6lmVa4omuOygZYRIya2lsGIP4JHvAaALMb5nt99a1uTwJg==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/transformer-image@2.11.0(@parcel/core@2.11.0):
+ resolution: {integrity: sha512-QiZj18UHf3lVFsi65Vz8YbS3ydx9Pe9x8ktMxE1oh9qpznN8lD7gE/Z9DxuTZB84EZ9pKytKwcv5WGXP25xIFg==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
peerDependencies:
- '@parcel/core': ^2.9.3
+ '@parcel/core': ^2.11.0
dependencies:
- '@parcel/core': 2.9.3
- '@parcel/plugin': 2.9.3
- '@parcel/utils': 2.9.3
- '@parcel/workers': 2.9.3(@parcel/core@2.9.3)
+ '@parcel/core': 2.11.0
+ '@parcel/plugin': 2.11.0
+ '@parcel/utils': 2.11.0
+ '@parcel/workers': 2.11.0(@parcel/core@2.11.0)
nullthrows: 1.1.1
dev: true
- /@parcel/transformer-js@2.9.3(@parcel/core@2.9.3):
- resolution: {integrity: sha512-Z2MVVg5FYcPOfxlUwxqb5l9yjTMEqE3KI3zq2MBRUme6AV07KxLmCDF23b6glzZlHWQUE8MXzYCTAkOPCcPz+Q==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/transformer-js@2.11.0(@parcel/core@2.11.0):
+ resolution: {integrity: sha512-G1sv0n8/fJqHqwUs0iVnVdmRY0Kh8kWaDkuWcU/GJBHMGhUnLXKdNwxX2Av9UdBL14bU1nTINfr9qOfnQotXWg==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
peerDependencies:
- '@parcel/core': ^2.9.3
+ '@parcel/core': ^2.11.0
dependencies:
- '@parcel/core': 2.9.3
- '@parcel/diagnostic': 2.9.3
- '@parcel/plugin': 2.9.3
+ '@parcel/core': 2.11.0
+ '@parcel/diagnostic': 2.11.0
+ '@parcel/plugin': 2.11.0
+ '@parcel/rust': 2.11.0
'@parcel/source-map': 2.1.1
- '@parcel/utils': 2.9.3
- '@parcel/workers': 2.9.3(@parcel/core@2.9.3)
- '@swc/helpers': 0.5.2
+ '@parcel/utils': 2.11.0
+ '@parcel/workers': 2.11.0(@parcel/core@2.11.0)
+ '@swc/helpers': 0.5.3
browserslist: 4.22.1
nullthrows: 1.1.1
regenerator-runtime: 0.13.11
semver: 7.5.4
dev: true
- /@parcel/transformer-json@2.9.3:
- resolution: {integrity: sha512-yNL27dbOLhkkrjaQjiQ7Im9VOxmkfuuSNSmS0rA3gEjVcm07SLKRzWkAaPnyx44Lb6bzyOTWwVrb9aMmxgADpA==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/transformer-json@2.11.0:
+ resolution: {integrity: sha512-Wt/wgSBaRWmPL4gpvjkV0bCBRxFOtsuLNzsm8vYA5poxTFhuLY+AoyQ8S2+xXU4VxwBfdppfIr2Ny3SwGs8xbQ==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/plugin': 2.9.3
+ '@parcel/plugin': 2.11.0
json5: 2.2.3
+ transitivePeerDependencies:
+ - '@parcel/core'
dev: true
- /@parcel/transformer-postcss@2.9.3:
- resolution: {integrity: sha512-HoDvPqKzhpmvMmHqQhDnt8F1vH61m6plpGiYaYnYv2Om4HHi5ZIq9bO+9QLBnTKfaZ7ndYSefTKOxTYElg7wyw==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/transformer-postcss@2.11.0:
+ resolution: {integrity: sha512-Ugy8XHBaUptGotsvwzq7gPCvkCopTIqqZ0JZ40Jmy9slGms8wnx06pNHA1Be/RcJwkJ2TbSu+7ncZdgmP5x5GQ==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/diagnostic': 2.9.3
- '@parcel/hash': 2.9.3
- '@parcel/plugin': 2.9.3
- '@parcel/utils': 2.9.3
+ '@parcel/diagnostic': 2.11.0
+ '@parcel/plugin': 2.11.0
+ '@parcel/rust': 2.11.0
+ '@parcel/utils': 2.11.0
clone: 2.1.2
nullthrows: 1.1.1
postcss-value-parser: 4.2.0
semver: 7.5.4
+ transitivePeerDependencies:
+ - '@parcel/core'
dev: true
- /@parcel/transformer-posthtml@2.9.3:
- resolution: {integrity: sha512-2fQGgrzRmaqbWf3y2/T6xhqrNjzqMMKksqJzvc8TMfK6f2kg3Ddjv158eaSW2JdkV39aY7tvAOn5f1uzo74BMA==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/transformer-posthtml@2.11.0:
+ resolution: {integrity: sha512-dMK4p1RRAoIJEjK/Wz9GOLqwHqdD/VQDhMPk+6sUKp5zf2MhSohUstpp5gKsSZivCM3PS2f8k9rgroacJ/ReuA==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/plugin': 2.9.3
- '@parcel/utils': 2.9.3
+ '@parcel/plugin': 2.11.0
+ '@parcel/utils': 2.11.0
nullthrows: 1.1.1
posthtml: 0.16.6
posthtml-parser: 0.10.2
posthtml-render: 3.0.0
semver: 7.5.4
+ transitivePeerDependencies:
+ - '@parcel/core'
dev: true
- /@parcel/transformer-raw@2.9.3:
- resolution: {integrity: sha512-oqdPzMC9QzWRbY9J6TZEqltknjno+dY24QWqf8ondmdF2+W+/2mRDu59hhCzQrqUHgTq4FewowRZmSfpzHxwaQ==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/transformer-raw@2.11.0:
+ resolution: {integrity: sha512-2ltp3TgS+cxEqSM1vk5gDtJrYx4KMuRRtbSgSvkdldyOgPhflnLU3/HRz72hXSNGqYOV0/JN0+ocsfPnqR00ug==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/plugin': 2.9.3
+ '@parcel/plugin': 2.11.0
+ transitivePeerDependencies:
+ - '@parcel/core'
dev: true
- /@parcel/transformer-react-refresh-wrap@2.9.3:
- resolution: {integrity: sha512-cb9NyU6oJlDblFIlzqIE8AkvRQVGl2IwJNKwD4PdE7Y6sq2okGEPG4hOw3k/Y9JVjM4/2pUORqvjSRhWwd9oVQ==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/transformer-react-refresh-wrap@2.11.0:
+ resolution: {integrity: sha512-6pY0CdIgIpXC6XpsDWizf+zLgiuEsJ106HjWLwF7/R72BrvDhLPZ6jRu4UTrnd6bM89KahPw9fZZzjKoA5Efcw==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/plugin': 2.9.3
- '@parcel/utils': 2.9.3
+ '@parcel/plugin': 2.11.0
+ '@parcel/utils': 2.11.0
react-refresh: 0.9.0
+ transitivePeerDependencies:
+ - '@parcel/core'
dev: true
- /@parcel/transformer-svg@2.9.3:
- resolution: {integrity: sha512-ypmE+dzB09IMCdEAkOsSxq1dEIm2A3h67nAFz4qbfHbwNgXBUuy/jB3ZMwXN/cO0f7SBh/Ap8Jhq6vmGqB5tWw==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/transformer-svg@2.11.0:
+ resolution: {integrity: sha512-GrTNi04OoQSXsyrB7FqQPeYREscEXFhIBPkyQ0q7WDG/yYynWljiA0kwITCtMjPfv2EDVks292dvM3EcnERRIA==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/diagnostic': 2.9.3
- '@parcel/hash': 2.9.3
- '@parcel/plugin': 2.9.3
+ '@parcel/diagnostic': 2.11.0
+ '@parcel/plugin': 2.11.0
+ '@parcel/rust': 2.11.0
nullthrows: 1.1.1
posthtml: 0.16.6
posthtml-parser: 0.10.2
posthtml-render: 3.0.0
semver: 7.5.4
+ transitivePeerDependencies:
+ - '@parcel/core'
+ dev: true
+
+ /@parcel/transformer-typescript-tsc@2.11.0(typescript@5.3.3):
+ resolution: {integrity: sha512-ELDYqWGCaBv9GqrFmSQxBbdZIUN/LkkUfSAgf0OPFpM2XEEsAqeJdXxwvwkucxR7MkIfpsnCIPRKlILmALlwrQ==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
+ peerDependencies:
+ typescript: '>=3.0.0'
+ dependencies:
+ '@parcel/plugin': 2.11.0
+ '@parcel/source-map': 2.1.1
+ '@parcel/ts-utils': 2.11.0(typescript@5.3.3)
+ typescript: 5.3.3
+ transitivePeerDependencies:
+ - '@parcel/core'
dev: true
- /@parcel/transformer-typescript-types@2.9.3(typescript@5.2.2):
- resolution: {integrity: sha512-W+Ze3aUTdZuBQokXlkEQ/1hUApUm6VRyYzPqEs9jcqCqU8mv18i5ZGAz4bMuIJOBprp7M2wt10SJJx/SC1pl1A==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/transformer-typescript-types@2.11.0(typescript@5.3.3):
+ resolution: {integrity: sha512-d9iTDMtFyAZkqxMGguBNGD6q9QKvLd0deUs7Ax8jdhYMjxwAEGU48mg8vjPjumItgA/2mD4ptMJjQB25mtetfA==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
peerDependencies:
typescript: '>=3.0.0'
dependencies:
- '@parcel/diagnostic': 2.9.3
- '@parcel/plugin': 2.9.3
+ '@parcel/diagnostic': 2.11.0
+ '@parcel/plugin': 2.11.0
'@parcel/source-map': 2.1.1
- '@parcel/ts-utils': 2.9.3(typescript@5.2.2)
- '@parcel/utils': 2.9.3
+ '@parcel/ts-utils': 2.11.0(typescript@5.3.3)
+ '@parcel/utils': 2.11.0
nullthrows: 1.1.1
- typescript: 5.2.2
+ typescript: 5.3.3
transitivePeerDependencies:
- '@parcel/core'
dev: true
- /@parcel/ts-utils@2.9.3(typescript@5.2.2):
- resolution: {integrity: sha512-MiQoXFV8I4IWZT/q5yolKN/gnEY5gZfGB2X7W9WHJbRgyjlT/A5cPERXzVBj6mc3/VM1GdZJz76w637GUcQhow==}
+ /@parcel/ts-utils@2.11.0(typescript@5.3.3):
+ resolution: {integrity: sha512-przIVpyuyAk1enpbbjVxn146dY25L1qcD/qU5HOCK8oH3ddQ0n1RgpXT9HKVpqteOnQIHDupUrZLArK6aqEnwA==}
engines: {node: '>= 12.0.0'}
peerDependencies:
typescript: '>=3.0.0'
dependencies:
nullthrows: 1.1.1
- typescript: 5.2.2
+ typescript: 5.3.3
dev: true
- /@parcel/types@2.9.3:
- resolution: {integrity: sha512-NSNY8sYtRhvF1SqhnIGgGvJocyWt1K8Tnw5cVepm0g38ywtX6mwkBvMkmeehXkII4mSUn+frD9wGsydTunezvA==}
+ /@parcel/types@2.11.0:
+ resolution: {integrity: sha512-lN5XlfV9b1s2rli8q1LqsLtu+D4ZwNI3sKmNcL/3tohSfQcF2EgF+MaiANGo9VzXOzoWFHt4dqWjO4OcdyC5tg==}
dependencies:
- '@parcel/cache': 2.9.3(@parcel/core@2.9.3)
- '@parcel/diagnostic': 2.9.3
- '@parcel/fs': 2.9.3(@parcel/core@2.9.3)
- '@parcel/package-manager': 2.9.3(@parcel/core@2.9.3)
+ '@parcel/cache': 2.11.0(@parcel/core@2.11.0)
+ '@parcel/diagnostic': 2.11.0
+ '@parcel/fs': 2.11.0(@parcel/core@2.11.0)
+ '@parcel/package-manager': 2.11.0(@parcel/core@2.11.0)
'@parcel/source-map': 2.1.1
- '@parcel/workers': 2.9.3(@parcel/core@2.9.3)
+ '@parcel/workers': 2.11.0(@parcel/core@2.11.0)
utility-types: 3.10.0
transitivePeerDependencies:
- '@parcel/core'
dev: true
- /@parcel/utils@2.9.3:
- resolution: {integrity: sha512-cesanjtj/oLehW8Waq9JFPmAImhoiHX03ihc3JTWkrvJYSbD7wYKCDgPAM3JiRAqvh1LZ6P699uITrYWNoRLUg==}
+ /@parcel/utils@2.11.0:
+ resolution: {integrity: sha512-AcL70cXlIyE7eQdvjQbYxegN5l+skqvlJllxTWg4YkIZe9p8Gmv74jLAeLWh5F+IGl5WRn0TSy9JhNJjIMQGwQ==}
engines: {node: '>= 12.0.0'}
dependencies:
- '@parcel/codeframe': 2.9.3
- '@parcel/diagnostic': 2.9.3
- '@parcel/hash': 2.9.3
- '@parcel/logger': 2.9.3
- '@parcel/markdown-ansi': 2.9.3
+ '@parcel/codeframe': 2.11.0
+ '@parcel/diagnostic': 2.11.0
+ '@parcel/logger': 2.11.0
+ '@parcel/markdown-ansi': 2.11.0
+ '@parcel/rust': 2.11.0
'@parcel/source-map': 2.1.1
chalk: 4.1.2
nullthrows: 1.1.1
@@ -1574,18 +1646,18 @@ packages:
'@parcel/watcher-win32-x64': 2.3.0
dev: true
- /@parcel/workers@2.9.3(@parcel/core@2.9.3):
- resolution: {integrity: sha512-zRrDuZJzTevrrwElYosFztgldhqW6G9q5zOeQXfVQFkkEJCNfg36ixeiofKRU8uu2x+j+T6216mhMNB6HiuY+w==}
+ /@parcel/workers@2.11.0(@parcel/core@2.11.0):
+ resolution: {integrity: sha512-wjybqdSy6Nk0N9iBGsFcp7739W2zvx0WGfVxPVShqhz46pIkPOiFF/iSn+kFu5EmMKTRWeUif42+a6rRZ7pCnQ==}
engines: {node: '>= 12.0.0'}
peerDependencies:
- '@parcel/core': ^2.9.3
- dependencies:
- '@parcel/core': 2.9.3
- '@parcel/diagnostic': 2.9.3
- '@parcel/logger': 2.9.3
- '@parcel/profiler': 2.9.3
- '@parcel/types': 2.9.3
- '@parcel/utils': 2.9.3
+ '@parcel/core': ^2.11.0
+ dependencies:
+ '@parcel/core': 2.11.0
+ '@parcel/diagnostic': 2.11.0
+ '@parcel/logger': 2.11.0
+ '@parcel/profiler': 2.11.0
+ '@parcel/types': 2.11.0
+ '@parcel/utils': 2.11.0
nullthrows: 1.1.1
dev: true
@@ -1605,8 +1677,8 @@ packages:
'@sinonjs/commons': 3.0.0
dev: true
- /@swc/core-darwin-arm64@1.3.91:
- resolution: {integrity: sha512-7kHGiQ1he5khcEeJuHDmLZPM3rRL/ith5OTmV6bOPsoHi46kLeixORW+ts1opC3tC9vu6xbk16xgX0QAJchc1w==}
+ /@swc/core-darwin-arm64@1.3.95:
+ resolution: {integrity: sha512-VAuBAP3MNetO/yBIBzvorUXq7lUBwhfpJxYViSxyluMwtoQDhE/XWN598TWMwMl1ZuImb56d7eUsuFdjgY7pJw==}
engines: {node: '>=10'}
cpu: [arm64]
os: [darwin]
@@ -1614,8 +1686,8 @@ packages:
dev: true
optional: true
- /@swc/core-darwin-x64@1.3.91:
- resolution: {integrity: sha512-8SpU18FbFpZDVzsHsAwdI1thF/picQGxq9UFxa8W+T9SDnbsqwFJv/6RqKJeJoDV6qFdl2OLjuO0OL7xrp0qnQ==}
+ /@swc/core-darwin-x64@1.3.95:
+ resolution: {integrity: sha512-20vF2rvUsN98zGLZc+dsEdHvLoCuiYq/1B+TDeE4oolgTFDmI1jKO+m44PzWjYtKGU9QR95sZ6r/uec0QC5O4Q==}
engines: {node: '>=10'}
cpu: [x64]
os: [darwin]
@@ -1623,8 +1695,8 @@ packages:
dev: true
optional: true
- /@swc/core-linux-arm-gnueabihf@1.3.91:
- resolution: {integrity: sha512-fOq4Cy8UbwX1yf0WB0d8hWZaIKCnPtPGguRqdXGLfwvhjZ9SIErT6PnmGTGRbQCNCIkOZWHKyTU0r8t2dN3haQ==}
+ /@swc/core-linux-arm-gnueabihf@1.3.95:
+ resolution: {integrity: sha512-oEudEM8PST1MRNGs+zu0cx5i9uP8TsLE4/L9HHrS07Ck0RJ3DCj3O2fU832nmLe2QxnAGPwBpSO9FntLfOiWEQ==}
engines: {node: '>=10'}
cpu: [arm]
os: [linux]
@@ -1632,8 +1704,8 @@ packages:
dev: true
optional: true
- /@swc/core-linux-arm64-gnu@1.3.91:
- resolution: {integrity: sha512-fki4ioRP/Esy4vdp8T34RCV+V9dqkRmOt763pf74pdiyFV2dPLXa5lnw/XvR1RTfPGknrYgjEQLCfZlReTryRw==}
+ /@swc/core-linux-arm64-gnu@1.3.95:
+ resolution: {integrity: sha512-pIhFI+cuC1aYg+0NAPxwT/VRb32f2ia8oGxUjQR6aJg65gLkUYQzdwuUmpMtFR2WVf7WVFYxUnjo4UyMuyh3ng==}
engines: {node: '>=10'}
cpu: [arm64]
os: [linux]
@@ -1641,8 +1713,8 @@ packages:
dev: true
optional: true
- /@swc/core-linux-arm64-musl@1.3.91:
- resolution: {integrity: sha512-XrG+DUUqNtfVLcJ20imby7fpBwQNG5VsEQBzQndSonPyUOa2YkTbBb60YDondfQGDABopuHH8gHN8o2H2/VCnQ==}
+ /@swc/core-linux-arm64-musl@1.3.95:
+ resolution: {integrity: sha512-ZpbTr+QZDT4OPJfjPAmScqdKKaT+wGurvMU5AhxLaf85DuL8HwUwwlL0n1oLieLc47DwIJEMuKQkYhXMqmJHlg==}
engines: {node: '>=10'}
cpu: [arm64]
os: [linux]
@@ -1650,8 +1722,8 @@ packages:
dev: true
optional: true
- /@swc/core-linux-x64-gnu@1.3.91:
- resolution: {integrity: sha512-d11bYhX+YPBr/Frcjc6eVn3C0LuS/9U1Li9EmQ+6s9EpYtYRl2ygSlC8eueLbaiazBnCVYFnc8bU4o0kc5B9sw==}
+ /@swc/core-linux-x64-gnu@1.3.95:
+ resolution: {integrity: sha512-n9SuHEFtdfSJ+sHdNXNRuIOVprB8nbsz+08apKfdo4lEKq6IIPBBAk5kVhPhkjmg2dFVHVo4Tr/OHXM1tzWCCw==}
engines: {node: '>=10'}
cpu: [x64]
os: [linux]
@@ -1659,8 +1731,8 @@ packages:
dev: true
optional: true
- /@swc/core-linux-x64-musl@1.3.91:
- resolution: {integrity: sha512-2SRp5Dke2P4jCQePkDx9trkkTstnRpZJVw5r3jvYdk0zeO6iC4+ZPvvoWXJLigqQv/fZnIiSUfJ6ssOoaEqTzQ==}
+ /@swc/core-linux-x64-musl@1.3.95:
+ resolution: {integrity: sha512-L1JrVlsXU3LC0WwmVnMK9HrOT2uhHahAoPNMJnZQpc18a0paO9fqifPG8M/HjNRffMUXR199G/phJsf326UvVg==}
engines: {node: '>=10'}
cpu: [x64]
os: [linux]
@@ -1668,8 +1740,8 @@ packages:
dev: true
optional: true
- /@swc/core-win32-arm64-msvc@1.3.91:
- resolution: {integrity: sha512-l9qKXikOxj42UIjbeZpz9xtBmr736jOMqInNP8mVF2/U+ws5sI8zJjcOFFtfis4ru7vWCXhB1wtltdlJYO2vGA==}
+ /@swc/core-win32-arm64-msvc@1.3.95:
+ resolution: {integrity: sha512-YaP4x/aZbUyNdqCBpC2zL8b8n58MEpOUpmOIZK6G1SxGi+2ENht7gs7+iXpWPc0sy7X3YPKmSWMAuui0h8lgAA==}
engines: {node: '>=10'}
cpu: [arm64]
os: [win32]
@@ -1677,8 +1749,8 @@ packages:
dev: true
optional: true
- /@swc/core-win32-ia32-msvc@1.3.91:
- resolution: {integrity: sha512-+s+52O0QVPmzOgjEe/rcb0AK6q/J7EHKwAyJCu/FaYO9df5ovE0HJjSKP6HAF0dGPO5hkENrXuNGujofUH9vtQ==}
+ /@swc/core-win32-ia32-msvc@1.3.95:
+ resolution: {integrity: sha512-w0u3HI916zT4BC/57gOd+AwAEjXeUlQbGJ9H4p/gzs1zkSHtoDQghVUNy3n/ZKp9KFod/95cA8mbVF9t1+6epQ==}
engines: {node: '>=10'}
cpu: [ia32]
os: [win32]
@@ -1686,8 +1758,8 @@ packages:
dev: true
optional: true
- /@swc/core-win32-x64-msvc@1.3.91:
- resolution: {integrity: sha512-7u9HDQhjUC3Gv43EFW84dZtduWCSa4MgltK+Sp9zEGti6WXqDPu/ESjvDsQEVYTBEMEvZs/xVAXPgLVHorV5nQ==}
+ /@swc/core-win32-x64-msvc@1.3.95:
+ resolution: {integrity: sha512-5RGnMt0S6gg4Gc6QtPUJ3Qs9Un4sKqccEzgH/tj7V/DVTJwKdnBKxFZfgQ34OR2Zpz7zGOn889xwsFVXspVWNA==}
engines: {node: '>=10'}
cpu: [x64]
os: [win32]
@@ -1695,8 +1767,8 @@ packages:
dev: true
optional: true
- /@swc/core@1.3.91(@swc/helpers@0.5.2):
- resolution: {integrity: sha512-r950d0fdlZ8qbSDyvApn3HyCojiZE8xpgJzQvypeMi32dalYwugdJKWyLB55JIGMRGJ8+lmVvY4MPGkSR3kXgA==}
+ /@swc/core@1.3.95(@swc/helpers@0.5.3):
+ resolution: {integrity: sha512-PMrNeuqIusq9DPDooV3FfNEbZuTu5jKAc04N3Hm6Uk2Fl49cqElLFQ4xvl4qDmVDz97n3n/C1RE0/f6WyGPEiA==}
engines: {node: '>=10'}
requiresBuild: true
peerDependencies:
@@ -1706,40 +1778,27 @@ packages:
optional: true
dependencies:
'@swc/counter': 0.1.2
- '@swc/helpers': 0.5.2
+ '@swc/helpers': 0.5.3
'@swc/types': 0.1.5
optionalDependencies:
- '@swc/core-darwin-arm64': 1.3.91
- '@swc/core-darwin-x64': 1.3.91
- '@swc/core-linux-arm-gnueabihf': 1.3.91
- '@swc/core-linux-arm64-gnu': 1.3.91
- '@swc/core-linux-arm64-musl': 1.3.91
- '@swc/core-linux-x64-gnu': 1.3.91
- '@swc/core-linux-x64-musl': 1.3.91
- '@swc/core-win32-arm64-msvc': 1.3.91
- '@swc/core-win32-ia32-msvc': 1.3.91
- '@swc/core-win32-x64-msvc': 1.3.91
+ '@swc/core-darwin-arm64': 1.3.95
+ '@swc/core-darwin-x64': 1.3.95
+ '@swc/core-linux-arm-gnueabihf': 1.3.95
+ '@swc/core-linux-arm64-gnu': 1.3.95
+ '@swc/core-linux-arm64-musl': 1.3.95
+ '@swc/core-linux-x64-gnu': 1.3.95
+ '@swc/core-linux-x64-musl': 1.3.95
+ '@swc/core-win32-arm64-msvc': 1.3.95
+ '@swc/core-win32-ia32-msvc': 1.3.95
+ '@swc/core-win32-x64-msvc': 1.3.95
dev: true
/@swc/counter@0.1.2:
resolution: {integrity: sha512-9F4ys4C74eSTEUNndnER3VJ15oru2NumfQxS8geE+f3eB5xvfxpWyqE5XlVnxb/R14uoXi6SLbBwwiDSkv+XEw==}
dev: true
- /@swc/helpers@0.4.14:
- resolution: {integrity: sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==}
- dependencies:
- tslib: 2.6.2
- dev: false
-
- /@swc/helpers@0.4.36:
- resolution: {integrity: sha512-5lxnyLEYFskErRPenYItLRSge5DjrJngYKdVjRSrWfza9G6KkgHEXi0vUZiyUeMU5JfXH1YnvXZzSp8ul88o2Q==}
- dependencies:
- legacy-swc-helpers: /@swc/helpers@0.4.14
- tslib: 2.6.2
- dev: false
-
- /@swc/helpers@0.5.2:
- resolution: {integrity: sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==}
+ /@swc/helpers@0.5.3:
+ resolution: {integrity: sha512-FaruWX6KdudYloq1AHD/4nU+UsMTdNE8CKyrseXWEcgjDAbvkwJg2QGPAnfIJLIWsjZOSPLOAykK6fuYp4vp4A==}
dependencies:
tslib: 2.6.2
@@ -1761,59 +1820,59 @@ packages:
engines: {node: '>=10.13.0'}
dev: true
- /@types/babel__core@7.20.2:
- resolution: {integrity: sha512-pNpr1T1xLUc2l3xJKuPtsEky3ybxN3m4fJkknfIpTCTfIZCDW57oAg+EfCgIIp2rvCe0Wn++/FfodDS4YXxBwA==}
+ /@types/babel__core@7.20.3:
+ resolution: {integrity: sha512-54fjTSeSHwfan8AyHWrKbfBWiEUrNTZsUwPTDSNaaP1QDQIZbeNUg3a59E9D+375MzUw/x1vx2/0F5LBz+AeYA==}
dependencies:
'@babel/parser': 7.23.0
'@babel/types': 7.23.0
- '@types/babel__generator': 7.6.5
- '@types/babel__template': 7.4.2
- '@types/babel__traverse': 7.20.2
+ '@types/babel__generator': 7.6.6
+ '@types/babel__template': 7.4.3
+ '@types/babel__traverse': 7.20.3
dev: true
- /@types/babel__generator@7.6.5:
- resolution: {integrity: sha512-h9yIuWbJKdOPLJTbmSpPzkF67e659PbQDba7ifWm5BJ8xTv+sDmS7rFmywkWOvXedGTivCdeGSIIX8WLcRTz8w==}
+ /@types/babel__generator@7.6.6:
+ resolution: {integrity: sha512-66BXMKb/sUWbMdBNdMvajU7i/44RkrA3z/Yt1c7R5xejt8qh84iU54yUWCtm0QwGJlDcf/gg4zd/x4mpLAlb/w==}
dependencies:
'@babel/types': 7.23.0
dev: true
- /@types/babel__template@7.4.2:
- resolution: {integrity: sha512-/AVzPICMhMOMYoSx9MoKpGDKdBRsIXMNByh1PXSZoa+v6ZoLa8xxtsT/uLQ/NJm0XVAWl/BvId4MlDeXJaeIZQ==}
+ /@types/babel__template@7.4.3:
+ resolution: {integrity: sha512-ciwyCLeuRfxboZ4isgdNZi/tkt06m8Tw6uGbBSBgWrnnZGNXiEyM27xc/PjXGQLqlZ6ylbgHMnm7ccF9tCkOeQ==}
dependencies:
'@babel/parser': 7.23.0
'@babel/types': 7.23.0
dev: true
- /@types/babel__traverse@7.20.2:
- resolution: {integrity: sha512-ojlGK1Hsfce93J0+kn3H5R73elidKUaZonirN33GSmgTUMpzI/MIFfSpF3haANe3G1bEBS9/9/QEqwTzwqFsKw==}
+ /@types/babel__traverse@7.20.3:
+ resolution: {integrity: sha512-Lsh766rGEFbaxMIDH7Qa+Yha8cMVI3qAK6CHt3OR0YfxOIn5Z54iHiyDRycHrBqeIiqGa20Kpsv1cavfBKkRSw==}
dependencies:
'@babel/types': 7.23.0
dev: true
- /@types/graceful-fs@4.1.7:
- resolution: {integrity: sha512-MhzcwU8aUygZroVwL2jeYk6JisJrPl/oov/gsgGCue9mkgl9wjGbzReYQClxiUgFDnib9FuHqTndccKeZKxTRw==}
+ /@types/graceful-fs@4.1.8:
+ resolution: {integrity: sha512-NhRH7YzWq8WiNKVavKPBmtLYZHxNY19Hh+az28O/phfp68CF45pMFud+ZzJ8ewnxnC5smIdF3dqFeiSUQ5I+pw==}
dependencies:
- '@types/node': 18.18.1
+ '@types/node': 18.19.10
dev: true
- /@types/istanbul-lib-coverage@2.0.4:
- resolution: {integrity: sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==}
+ /@types/istanbul-lib-coverage@2.0.5:
+ resolution: {integrity: sha512-zONci81DZYCZjiLe0r6equvZut0b+dBRPBN5kBDjsONnutYNtJMoWQ9uR2RkL1gLG9NMTzvf+29e5RFfPbeKhQ==}
dev: true
- /@types/istanbul-lib-report@3.0.1:
- resolution: {integrity: sha512-gPQuzaPR5h/djlAv2apEG1HVOyj1IUs7GpfMZixU0/0KXT3pm64ylHuMUI1/Akh+sq/iikxg6Z2j+fcMDXaaTQ==}
+ /@types/istanbul-lib-report@3.0.2:
+ resolution: {integrity: sha512-8toY6FgdltSdONav1XtUHl4LN1yTmLza+EuDazb/fEmRNCwjyqNVIQWs2IfC74IqjHkREs/nQ2FWq5kZU9IC0w==}
dependencies:
- '@types/istanbul-lib-coverage': 2.0.4
+ '@types/istanbul-lib-coverage': 2.0.5
dev: true
- /@types/istanbul-reports@3.0.2:
- resolution: {integrity: sha512-kv43F9eb3Lhj+lr/Hn6OcLCs/sSM8bt+fIaP11rCYngfV6NVjzWXJ17owQtDQTL9tQ8WSLUrGsSJ6rJz0F1w1A==}
+ /@types/istanbul-reports@3.0.3:
+ resolution: {integrity: sha512-1nESsePMBlf0RPRffLZi5ujYh7IH1BWL4y9pr+Bn3cJBdxz+RTP8bUFljLz9HvzhhOSWKdyBZ4DIivdL6rvgZg==}
dependencies:
- '@types/istanbul-lib-report': 3.0.1
+ '@types/istanbul-lib-report': 3.0.2
dev: true
- /@types/jest@29.5.5:
- resolution: {integrity: sha512-ebylz2hnsWR9mYvmBFbXJXr+33UPc4+ZdxyDXh5w0FlPBTfCVN3wPL+kuOiQt3xvrK419v7XWeAs+AeOksafXg==}
+ /@types/jest@29.5.11:
+ resolution: {integrity: sha512-S2mHmYIVe13vrm6q4kN6fLYYAka15ALQki/vgDC3mIukEOx8WJlv0kQPM+d4w8Gp6u0uSdKND04IlTXBv0rwnQ==}
dependencies:
expect: 29.7.0
pretty-format: 29.7.0
@@ -1822,43 +1881,33 @@ packages:
/@types/jsdom@20.0.1:
resolution: {integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==}
dependencies:
- '@types/node': 18.18.1
- '@types/tough-cookie': 4.0.3
+ '@types/node': 18.19.10
+ '@types/tough-cookie': 4.0.4
parse5: 7.1.2
dev: true
- /@types/minimist@1.2.3:
- resolution: {integrity: sha512-ZYFzrvyWUNhaPomn80dsMNgMeXxNWZBdkuG/hWlUvXvbdUH8ZERNBGXnU87McuGcWDsyzX2aChCv/SVN348k3A==}
- dev: true
-
- /@types/node@18.18.1:
- resolution: {integrity: sha512-3G42sxmm0fF2+Vtb9TJQpnjmP+uKlWvFa8KoEGquh4gqRmoUG/N0ufuhikw6HEsdG2G2oIKhog1GCTfz9v5NdQ==}
+ /@types/node@18.19.10:
+ resolution: {integrity: sha512-IZD8kAM02AW1HRDTPOlz3npFava678pr8Ie9Vp8uRhBROXAv8MXT2pCnGZZAKYdromsNQLHQcfWQ6EOatVLtqA==}
+ dependencies:
+ undici-types: 5.26.5
dev: true
- /@types/normalize-package-data@2.4.2:
- resolution: {integrity: sha512-lqa4UEhhv/2sjjIQgjX8B+RBjj47eo0mzGasklVJ78UKGQY1r0VpB9XHDaZZO9qzEFDdy4MrXLuEaSmPrPSe/A==}
+ /@types/stack-utils@2.0.2:
+ resolution: {integrity: sha512-g7CK9nHdwjK2n0ymT2CW698FuWJRIx+RP6embAzZ2Qi8/ilIrA1Imt2LVSeHUzKvpoi7BhmmQcXz95eS0f2JXw==}
dev: true
- /@types/stack-utils@2.0.1:
- resolution: {integrity: sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==}
+ /@types/tough-cookie@4.0.4:
+ resolution: {integrity: sha512-95Sfz4nvMAb0Nl9DTxN3j64adfwfbBPEYq14VN7zT5J5O2M9V6iZMIIQU1U+pJyl9agHYHNCqhCXgyEtIRRa5A==}
dev: true
- /@types/tough-cookie@4.0.3:
- resolution: {integrity: sha512-THo502dA5PzG/sfQH+42Lw3fvmYkceefOspdCwpHRul8ik2Jv1K8I5OZz1AT3/rs46kwgMCe9bSBmDLYkkOMGg==}
+ /@types/yargs-parser@21.0.2:
+ resolution: {integrity: sha512-5qcvofLPbfjmBfKaLfj/+f+Sbd6pN4zl7w7VSVI5uz7m9QZTuB2aZAa2uo1wHFBNN2x6g/SoTkXmd8mQnQF2Cw==}
dev: true
- /@types/validator@13.11.2:
- resolution: {integrity: sha512-nIKVVQKT6kGKysnNt+xLobr+pFJNssJRi2s034wgWeFBUx01fI8BeHTW2TcRp7VcFu9QCYG8IlChTuovcm0oKQ==}
- dev: false
-
- /@types/yargs-parser@21.0.1:
- resolution: {integrity: sha512-axdPBuLuEJt0c4yI5OZssC19K2Mq1uKdrfZBzuxLvaztgqUtFYZUNw7lETExPYJR9jdEoIg4mb7RQKRQzOkeGQ==}
- dev: true
-
- /@types/yargs@17.0.26:
- resolution: {integrity: sha512-Y3vDy2X6zw/ZCumcwLpdhM5L7jmyGpmBCTYMHDLqT2IKVMYRRLdv6ZakA+wxhra6Z/3bwhNbNl9bDGXaFU+6rw==}
+ /@types/yargs@17.0.29:
+ resolution: {integrity: sha512-nacjqA3ee9zRF/++a3FUY1suHTFKZeHba2n8WeDw9cCVdmzmHpIxyzOJBcpHvvEmS8E9KqWlSnWHUkOrkhWcvA==}
dependencies:
- '@types/yargs-parser': 21.0.1
+ '@types/yargs-parser': 21.0.2
dev: true
/abab@2.0.6:
@@ -1872,17 +1921,17 @@ packages:
/acorn-globals@7.0.1:
resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==}
dependencies:
- acorn: 8.10.0
- acorn-walk: 8.2.0
+ acorn: 8.11.2
+ acorn-walk: 8.3.0
dev: true
- /acorn-walk@8.2.0:
- resolution: {integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==}
+ /acorn-walk@8.3.0:
+ resolution: {integrity: sha512-FS7hV565M5l1R08MXqo8odwMTB02C2UqzB17RVgu9EyuYFBqJZ3/ZY97sQD5FewVu1UyDFc1yztUDrAwT0EypA==}
engines: {node: '>=0.4.0'}
dev: true
- /acorn@8.10.0:
- resolution: {integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==}
+ /acorn@8.11.2:
+ resolution: {integrity: sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==}
engines: {node: '>=0.4.0'}
hasBin: true
dev: true
@@ -1903,11 +1952,11 @@ packages:
type-fest: 0.21.3
dev: true
- /ansi-escapes@5.0.0:
- resolution: {integrity: sha512-5GFMVX8HqE/TB+FuBJGuO5XG0WrsA6ptUqoODaT/n9mmUaZFkqnBueB4leqGBCmrUHnCnC4PCZTCd0E7QQ83bA==}
- engines: {node: '>=12'}
+ /ansi-escapes@6.2.0:
+ resolution: {integrity: sha512-kzRaCqXnpzWs+3z5ABPQiVke+iq0KXkHo8xiWV4RPTi5Yli0l97BEQuhXV1s7+aSU/fu1kUuxgS4MsQ0fRuygw==}
+ engines: {node: '>=14.16'}
dependencies:
- type-fest: 1.4.0
+ type-fest: 3.13.1
dev: true
/ansi-regex@5.0.1:
@@ -1966,26 +2015,21 @@ packages:
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
dev: true
- /arrify@1.0.1:
- resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==}
- engines: {node: '>=0.10.0'}
- dev: true
-
/asynckit@0.4.0:
resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
dev: true
- /babel-jest@29.7.0(@babel/core@7.23.0):
+ /babel-jest@29.7.0(@babel/core@7.23.2):
resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
'@babel/core': ^7.8.0
dependencies:
- '@babel/core': 7.23.0
+ '@babel/core': 7.23.2
'@jest/transform': 29.7.0
- '@types/babel__core': 7.20.2
+ '@types/babel__core': 7.20.3
babel-plugin-istanbul: 6.1.1
- babel-preset-jest: 29.6.3(@babel/core@7.23.0)
+ babel-preset-jest: 29.6.3(@babel/core@7.23.2)
chalk: 4.1.2
graceful-fs: 4.2.11
slash: 3.0.0
@@ -2012,39 +2056,39 @@ packages:
dependencies:
'@babel/template': 7.22.15
'@babel/types': 7.23.0
- '@types/babel__core': 7.20.2
- '@types/babel__traverse': 7.20.2
+ '@types/babel__core': 7.20.3
+ '@types/babel__traverse': 7.20.3
dev: true
- /babel-preset-current-node-syntax@1.0.1(@babel/core@7.23.0):
+ /babel-preset-current-node-syntax@1.0.1(@babel/core@7.23.2):
resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.0
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.0)
- '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.23.0)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.0)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.0)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.0)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.0)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.0)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.0)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.0)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.0)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.0)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.0)
- dev: true
-
- /babel-preset-jest@29.6.3(@babel/core@7.23.0):
+ '@babel/core': 7.23.2
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.2)
+ '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.2)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.2)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.2)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.2)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.2)
+ dev: true
+
+ /babel-preset-jest@29.6.3(@babel/core@7.23.2):
resolution: {integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.0
+ '@babel/core': 7.23.2
babel-plugin-jest-hoist: 29.6.3
- babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.0)
+ babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.2)
dev: true
/balanced-match@1.0.2:
@@ -2057,22 +2101,10 @@ packages:
safe-buffer: 5.2.1
dev: true
- /big-integer@1.6.51:
- resolution: {integrity: sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==}
- engines: {node: '>=0.6'}
- dev: true
-
/boolbase@1.0.0:
resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
dev: true
- /bplist-parser@0.2.0:
- resolution: {integrity: sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==}
- engines: {node: '>= 5.10.0'}
- dependencies:
- big-integer: 1.6.51
- dev: true
-
/brace-expansion@1.1.11:
resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
dependencies:
@@ -2098,8 +2130,8 @@ packages:
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
dependencies:
- caniuse-lite: 1.0.30001541
- electron-to-chromium: 1.4.537
+ caniuse-lite: 1.0.30001559
+ electron-to-chromium: 1.4.575
node-releases: 2.0.13
update-browserslist-db: 1.0.13(browserslist@4.22.1)
dev: true
@@ -2121,11 +2153,11 @@ packages:
resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
dev: true
- /bundle-name@3.0.0:
- resolution: {integrity: sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==}
- engines: {node: '>=12'}
+ /bundle-name@4.1.0:
+ resolution: {integrity: sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==}
+ engines: {node: '>=18'}
dependencies:
- run-applescript: 5.0.0
+ run-applescript: 7.0.0
dev: true
/callsites@3.1.0:
@@ -2133,16 +2165,6 @@ packages:
engines: {node: '>=6'}
dev: true
- /camelcase-keys@8.0.2:
- resolution: {integrity: sha512-qMKdlOfsjlezMqxkUGGMaWWs17i2HoL15tM+wtx8ld4nLrUwU58TFdvyGOz/piNP842KeO8yXvggVQSdQ828NA==}
- engines: {node: '>=14.16'}
- dependencies:
- camelcase: 7.0.1
- map-obj: 4.3.0
- quick-lru: 6.1.2
- type-fest: 2.19.0
- dev: true
-
/camelcase@5.3.1:
resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==}
engines: {node: '>=6'}
@@ -2153,13 +2175,8 @@ packages:
engines: {node: '>=10'}
dev: true
- /camelcase@7.0.1:
- resolution: {integrity: sha512-xlx1yCK2Oc1APsPXDL2LdlNP6+uu8OCDdhOBSVT279M/S+y75O30C2VuD8T2ogdePBBl7PfPF4504tnLgX3zfw==}
- engines: {node: '>=14.16'}
- dev: true
-
- /caniuse-lite@1.0.30001541:
- resolution: {integrity: sha512-bLOsqxDgTqUBkzxbNlSBt8annkDpQB9NdzdTbO2ooJ+eC/IQcvDspDc058g84ejCelF7vHUx57KIOjEecOHXaw==}
+ /caniuse-lite@1.0.30001559:
+ resolution: {integrity: sha512-cPiMKZgqgkg5LY3/ntGeLFUpi6tzddBNS58A4tnTgQw1zON7u2sZMU7SzOeVH4tj20++9ggL+V6FDOFMTaFFYA==}
dev: true
/chalk@2.4.2:
@@ -2194,8 +2211,8 @@ packages:
engines: {node: '>=6.0'}
dev: true
- /ci-info@3.8.0:
- resolution: {integrity: sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==}
+ /ci-info@3.9.0:
+ resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==}
engines: {node: '>=8'}
dev: true
@@ -2203,14 +2220,6 @@ packages:
resolution: {integrity: sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==}
dev: true
- /class-validator@0.14.0:
- resolution: {integrity: sha512-ct3ltplN8I9fOwUd8GrP8UQixwff129BkEtuWDKL5W45cQuLd19xqmTLu5ge78YDm/fdje6FMt0hGOhl0lii3A==}
- dependencies:
- '@types/validator': 13.11.2
- libphonenumber-js: 1.10.45
- validator: 13.11.0
- dev: false
-
/cli-cursor@4.0.0:
resolution: {integrity: sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
@@ -2218,12 +2227,19 @@ packages:
restore-cursor: 4.0.0
dev: true
- /cli-truncate@3.1.0:
- resolution: {integrity: sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ /cli-progress@3.12.0:
+ resolution: {integrity: sha512-tRkV3HJ1ASwm19THiiLIXLO7Im7wlTuKnvkYaTkyoAPefqjNg7W7DHKUlGRxy9vxDvbyCYQkQozvptuMkGCg8A==}
+ engines: {node: '>=4'}
+ dependencies:
+ string-width: 4.2.3
+ dev: true
+
+ /cli-truncate@4.0.0:
+ resolution: {integrity: sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA==}
+ engines: {node: '>=18'}
dependencies:
slice-ansi: 5.0.0
- string-width: 5.1.2
+ string-width: 7.1.0
dev: true
/cliui@8.0.1:
@@ -2281,8 +2297,8 @@ packages:
delayed-stream: 1.0.0
dev: true
- /commander@11.0.0:
- resolution: {integrity: sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ==}
+ /commander@11.1.0:
+ resolution: {integrity: sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==}
engines: {node: '>=16'}
dev: true
@@ -2295,15 +2311,11 @@ packages:
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
dev: true
- /convert-source-map@1.9.0:
- resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==}
- dev: true
-
/convert-source-map@2.0.0:
resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
dev: true
- /cosmiconfig@8.3.6(typescript@5.2.2):
+ /cosmiconfig@8.3.6(typescript@5.3.3):
resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==}
engines: {node: '>=14'}
peerDependencies:
@@ -2316,10 +2328,10 @@ packages:
js-yaml: 4.1.0
parse-json: 5.2.0
path-type: 4.0.0
- typescript: 5.2.2
+ typescript: 5.3.3
dev: true
- /create-jest@29.7.0(@types/node@18.18.1):
+ /create-jest@29.7.0(@types/node@18.19.10):
resolution: {integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
hasBin: true
@@ -2328,7 +2340,7 @@ packages:
chalk: 4.1.2
exit: 0.1.2
graceful-fs: 4.2.11
- jest-config: 29.7.0(@types/node@18.18.1)
+ jest-config: 29.7.0(@types/node@18.19.10)
jest-util: 29.7.0
prompts: 2.4.2
transitivePeerDependencies:
@@ -2420,24 +2432,6 @@ packages:
ms: 2.1.2
dev: true
- /decamelize-keys@1.1.1:
- resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==}
- engines: {node: '>=0.10.0'}
- dependencies:
- decamelize: 1.2.0
- map-obj: 1.0.1
- dev: true
-
- /decamelize@1.2.0:
- resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==}
- engines: {node: '>=0.10.0'}
- dev: true
-
- /decamelize@6.0.0:
- resolution: {integrity: sha512-Fv96DCsdOgB6mdGl67MT5JaTNKRzrzill5OH5s8bjYJXVlcXyPYGyPsUkWyGV5p1TXI5esYIYMMeDJL0hEIwaA==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- dev: true
-
/decimal.js@10.4.3:
resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==}
dev: true
@@ -2456,22 +2450,17 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
- /default-browser-id@3.0.0:
- resolution: {integrity: sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==}
- engines: {node: '>=12'}
- dependencies:
- bplist-parser: 0.2.0
- untildify: 4.0.0
+ /default-browser-id@5.0.0:
+ resolution: {integrity: sha512-A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA==}
+ engines: {node: '>=18'}
dev: true
- /default-browser@4.0.0:
- resolution: {integrity: sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA==}
- engines: {node: '>=14.16'}
+ /default-browser@5.2.1:
+ resolution: {integrity: sha512-WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg==}
+ engines: {node: '>=18'}
dependencies:
- bundle-name: 3.0.0
- default-browser-id: 3.0.0
- execa: 7.2.0
- titleize: 3.0.0
+ bundle-name: 4.1.0
+ default-browser-id: 5.0.0
dev: true
/define-lazy-prop@3.0.0:
@@ -2490,6 +2479,11 @@ packages:
hasBin: true
dev: true
+ /detect-libc@2.0.2:
+ resolution: {integrity: sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==}
+ engines: {node: '>=8'}
+ dev: true
+
/detect-newline@3.1.0:
resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==}
engines: {node: '>=8'}
@@ -2538,8 +2532,8 @@ packages:
resolution: {integrity: sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==}
dev: true
- /dotenv@16.3.1:
- resolution: {integrity: sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==}
+ /dotenv@16.4.1:
+ resolution: {integrity: sha512-CjA3y+Dr3FyFDOAMnxZEGtnW9KBR2M0JvvUtXNW+dYJL5ROWxP9DUHCwgFqpMk0OXCc0ljhaNTr2w/kutYIcHQ==}
engines: {node: '>=12'}
dev: true
@@ -2548,16 +2542,12 @@ packages:
engines: {node: '>=6'}
dev: true
- /eastasianwidth@0.2.0:
- resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
- dev: true
-
- /electron-to-chromium@1.4.537:
- resolution: {integrity: sha512-W1+g9qs9hviII0HAwOdehGYkr+zt7KKdmCcJcjH0mYg6oL8+ioT3Skjmt7BLoAQqXhjf40AXd+HlR4oAWMlXjA==}
+ /electron-to-chromium@1.4.575:
+ resolution: {integrity: sha512-kY2BGyvgAHiX899oF6xLXSIf99bAvvdPhDoJwG77nxCSyWYuRH6e9a9a3gpXBvCs6lj4dQZJkfnW2hdKWHEISg==}
dev: true
- /element-internals-polyfill@1.3.8:
- resolution: {integrity: sha512-nymTA/NftVOlS6UjLCL8lKUm8MEgt6TXntQqGGKt+er4dzS9eU88zaGUHLTYVgdfifQ8JQFGbQERMvxse5GMrA==}
+ /element-internals-polyfill@1.3.9:
+ resolution: {integrity: sha512-ti2fHL8rXbz5/pu50Nu45EXvORWtx1g1xWUQuZORkszbvCxosPEeHDeGzfvaaooXJNXNblogMP4atl680r9WyQ==}
dev: false
/emittery@0.13.1:
@@ -2565,12 +2555,12 @@ packages:
engines: {node: '>=12'}
dev: true
- /emoji-regex@8.0.0:
- resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
+ /emoji-regex@10.3.0:
+ resolution: {integrity: sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw==}
dev: true
- /emoji-regex@9.2.2:
- resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
+ /emoji-regex@8.0.0:
+ resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
dev: true
/entities@2.2.0:
@@ -2655,18 +2645,18 @@ packages:
strip-final-newline: 2.0.0
dev: true
- /execa@7.2.0:
- resolution: {integrity: sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==}
- engines: {node: ^14.18.0 || ^16.14.0 || >=18.0.0}
+ /execa@8.0.1:
+ resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==}
+ engines: {node: '>=16.17'}
dependencies:
cross-spawn: 7.0.3
- get-stream: 6.0.1
- human-signals: 4.3.1
+ get-stream: 8.0.1
+ human-signals: 5.0.0
is-stream: 3.0.0
merge-stream: 2.0.0
npm-run-path: 5.1.0
onetime: 6.0.0
- signal-exit: 3.0.7
+ signal-exit: 4.1.0
strip-final-newline: 3.0.0
dev: true
@@ -2696,8 +2686,8 @@ packages:
bser: 2.1.1
dev: true
- /file-type@18.5.0:
- resolution: {integrity: sha512-yvpl5U868+V6PqXHMmsESpg6unQ5GfnPssl4dxdJudBrr9qy7Fddt7EVX1VLlddFfe8Gj9N7goCZH22FXuSQXQ==}
+ /file-type@18.7.0:
+ resolution: {integrity: sha512-ihHtXRzXEziMrQ56VSgU7wkxh55iNchFkosu7Y9/S+tXHdKyrGjVK0ujbqNnsxzea+78MaLhN6PGmfYSAv1ACw==}
engines: {node: '>=14.16'}
dependencies:
readable-web-to-node-stream: 3.0.2
@@ -2720,14 +2710,6 @@ packages:
path-exists: 4.0.0
dev: true
- /find-up@6.3.0:
- resolution: {integrity: sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- dependencies:
- locate-path: 7.2.0
- path-exists: 5.0.0
- dev: true
-
/form-data@4.0.0:
resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==}
engines: {node: '>= 6'}
@@ -2749,8 +2731,8 @@ packages:
dev: true
optional: true
- /function-bind@1.1.1:
- resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==}
+ /function-bind@1.1.2:
+ resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
dev: true
/gensync@1.0.0-beta.2:
@@ -2763,6 +2745,11 @@ packages:
engines: {node: 6.* || 8.* || >= 10.*}
dev: true
+ /get-east-asian-width@1.2.0:
+ resolution: {integrity: sha512-2nk+7SIVb14QrgXFHcm84tD4bKQz0RxPuMT8Ag5KPOq7J5fEmAg0UbXdTOSHqNuHSU28k55qnceesxXRZGzKWA==}
+ engines: {node: '>=18'}
+ dev: true
+
/get-package-type@0.1.0:
resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==}
engines: {node: '>=8.0.0'}
@@ -2783,6 +2770,11 @@ packages:
engines: {node: '>=10'}
dev: true
+ /get-stream@8.0.1:
+ resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==}
+ engines: {node: '>=16'}
+ dev: true
+
/glob@7.2.3:
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
dependencies:
@@ -2799,8 +2791,8 @@ packages:
engines: {node: '>=4'}
dev: true
- /globals@13.22.0:
- resolution: {integrity: sha512-H1Ddc/PbZHTDVJSnj8kWptIRSD6AM3pK+mKytuIVF4uoBV7rshFlhhvA58ceJ5wp3Er58w6zj7bykMpYXt3ETw==}
+ /globals@13.23.0:
+ resolution: {integrity: sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==}
engines: {node: '>=8'}
dependencies:
type-fest: 0.20.2
@@ -2810,11 +2802,6 @@ packages:
resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
dev: true
- /hard-rejection@2.1.0:
- resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==}
- engines: {node: '>=6'}
- dev: true
-
/has-flag@3.0.0:
resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
engines: {node: '>=4'}
@@ -2825,25 +2812,11 @@ packages:
engines: {node: '>=8'}
dev: true
- /has@1.0.3:
- resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==}
- engines: {node: '>= 0.4.0'}
- dependencies:
- function-bind: 1.1.1
- dev: true
-
- /hosted-git-info@4.1.0:
- resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==}
- engines: {node: '>=10'}
- dependencies:
- lru-cache: 6.0.0
- dev: true
-
- /hosted-git-info@5.2.1:
- resolution: {integrity: sha512-xIcQYMnhcx2Nr4JTjsFmwwnr9vldugPy9uVm0o87bjqqWMv9GaqsTeT+i99wTl0mk1uLxJtHxLb8kymqTENQsw==}
- engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
+ /hasown@2.0.0:
+ resolution: {integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==}
+ engines: {node: '>= 0.4'}
dependencies:
- lru-cache: 7.18.3
+ function-bind: 1.1.2
dev: true
/html-encoding-sniffer@3.0.0:
@@ -2857,8 +2830,8 @@ packages:
resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==}
dev: true
- /htmlnano@2.0.4(svgo@2.8.0)(typescript@5.2.2):
- resolution: {integrity: sha512-WGCkyGFwjKW1GeCBsPYacMvaMnZtFJ0zIRnC2NCddkA+IOEhTqskXrS7lep+3yYZw/nQ3dW1UAX4yA/GJyR8BA==}
+ /htmlnano@2.1.0(svgo@2.8.0)(typescript@5.3.3):
+ resolution: {integrity: sha512-jVGRE0Ep9byMBKEu0Vxgl8dhXYOUk0iNQ2pjsG+BcRB0u0oDF5A9p/iBGMg/PGKYUyMD0OAGu8dVT5Lzj8S58g==}
peerDependencies:
cssnano: ^6.0.0
postcss: ^8.3.11
@@ -2886,7 +2859,7 @@ packages:
uncss:
optional: true
dependencies:
- cosmiconfig: 8.3.6(typescript@5.2.2)
+ cosmiconfig: 8.3.6(typescript@5.3.3)
posthtml: 0.16.6
svgo: 2.8.0
timsort: 0.3.0
@@ -2929,14 +2902,14 @@ packages:
engines: {node: '>=10.17.0'}
dev: true
- /human-signals@4.3.1:
- resolution: {integrity: sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==}
- engines: {node: '>=14.18.0'}
+ /human-signals@5.0.0:
+ resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==}
+ engines: {node: '>=16.17.0'}
dev: true
- /husky@8.0.3:
- resolution: {integrity: sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==}
- engines: {node: '>=14'}
+ /husky@9.0.6:
+ resolution: {integrity: sha512-EEuw/rfTiMjOfuL7pGO/i9otg1u36TXxqjIA6D9qxVjd/UXoDOsLor/BSFf5hTK50shwzCU3aVVwdXDp/lp7RA==}
+ engines: {node: '>=18'}
hasBin: true
dev: true
@@ -2973,11 +2946,6 @@ packages:
engines: {node: '>=0.8.19'}
dev: true
- /indent-string@5.0.0:
- resolution: {integrity: sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==}
- engines: {node: '>=12'}
- dev: true
-
/inflight@1.0.6:
resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
dependencies:
@@ -2993,16 +2961,10 @@ packages:
resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
dev: true
- /is-core-module@2.13.0:
- resolution: {integrity: sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==}
+ /is-core-module@2.13.1:
+ resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==}
dependencies:
- has: 1.0.3
- dev: true
-
- /is-docker@2.2.1:
- resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==}
- engines: {node: '>=8'}
- hasBin: true
+ hasown: 2.0.0
dev: true
/is-docker@3.0.0:
@@ -3026,6 +2988,13 @@ packages:
engines: {node: '>=12'}
dev: true
+ /is-fullwidth-code-point@5.0.0:
+ resolution: {integrity: sha512-OVa3u9kkBbw7b8Xw5F9P+D/T9X+Z4+JruYVNapTjPYZYUznQ5YfWeFkOj606XYYW8yugTfC8Pj0hYqvi4ryAhA==}
+ engines: {node: '>=18'}
+ dependencies:
+ get-east-asian-width: 1.2.0
+ dev: true
+
/is-generator-fn@2.1.0:
resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==}
engines: {node: '>=6'}
@@ -3055,11 +3024,6 @@ packages:
engines: {node: '>=0.12.0'}
dev: true
- /is-plain-obj@1.1.0:
- resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==}
- engines: {node: '>=0.10.0'}
- dev: true
-
/is-potential-custom-element-name@1.0.1:
resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==}
dev: true
@@ -3074,11 +3038,11 @@ packages:
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dev: true
- /is-wsl@2.2.0:
- resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==}
- engines: {node: '>=8'}
+ /is-wsl@3.1.0:
+ resolution: {integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==}
+ engines: {node: '>=16'}
dependencies:
- is-docker: 2.2.1
+ is-inside-container: 1.0.0
dev: true
/isexe@2.0.0:
@@ -3094,7 +3058,7 @@ packages:
resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==}
engines: {node: '>=8'}
dependencies:
- '@babel/core': 7.23.0
+ '@babel/core': 7.23.2
'@babel/parser': 7.23.0
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.0
@@ -3103,11 +3067,11 @@ packages:
- supports-color
dev: true
- /istanbul-lib-instrument@6.0.0:
- resolution: {integrity: sha512-x58orMzEVfzPUKqlbLd1hXCnySCxKdDKa6Rjg97CwuLLRI4g3FHTdnExu1OqffVFay6zeMW+T6/DowFLndWnIw==}
+ /istanbul-lib-instrument@6.0.1:
+ resolution: {integrity: sha512-EAMEJBsYuyyztxMxW3g7ugGPkrZsV57v0Hmv3mm1uQsmB+QnZuepg731CRaIgeUVSdmsTngOkSnauNF8p7FIhA==}
engines: {node: '>=10'}
dependencies:
- '@babel/core': 7.23.0
+ '@babel/core': 7.23.2
'@babel/parser': 7.23.0
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.0
@@ -3144,10 +3108,10 @@ packages:
istanbul-lib-report: 3.0.1
dev: true
- /iterable-observer@1.0.0:
- resolution: {integrity: sha512-DV9Cuh50EKRQ87V1L92E8R/rrEeowO78a86VDzvG350khRhjNAvkQMLxZ/02MOvoJeMl7NqU0Y4Y9z6xLOjS7g==}
+ /iterable-observer@1.0.1:
+ resolution: {integrity: sha512-qy2Kuf1drKVmWgWaRsqdM8EHanAW4xS37j1nFdVP07qiN0Mj4D5sl9dYA8mZJdX/d3De4bhZoFuVWXvcOM1usg==}
dependencies:
- '@swc/helpers': 0.4.36
+ '@swc/helpers': 0.5.3
dev: false
/jest-changed-files@29.7.0:
@@ -3167,7 +3131,7 @@ packages:
'@jest/expect': 29.7.0
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 18.18.1
+ '@types/node': 18.19.10
chalk: 4.1.2
co: 4.6.0
dedent: 1.5.1
@@ -3188,7 +3152,7 @@ packages:
- supports-color
dev: true
- /jest-cli@29.7.0(@types/node@18.18.1):
+ /jest-cli@29.7.0(@types/node@18.19.10):
resolution: {integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
hasBin: true
@@ -3202,10 +3166,10 @@ packages:
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
chalk: 4.1.2
- create-jest: 29.7.0(@types/node@18.18.1)
+ create-jest: 29.7.0(@types/node@18.19.10)
exit: 0.1.2
import-local: 3.1.0
- jest-config: 29.7.0(@types/node@18.18.1)
+ jest-config: 29.7.0(@types/node@18.19.10)
jest-util: 29.7.0
jest-validate: 29.7.0
yargs: 17.7.2
@@ -3216,7 +3180,7 @@ packages:
- ts-node
dev: true
- /jest-config@29.7.0(@types/node@18.18.1):
+ /jest-config@29.7.0(@types/node@18.19.10):
resolution: {integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
@@ -3228,13 +3192,13 @@ packages:
ts-node:
optional: true
dependencies:
- '@babel/core': 7.23.0
+ '@babel/core': 7.23.2
'@jest/test-sequencer': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 18.18.1
- babel-jest: 29.7.0(@babel/core@7.23.0)
+ '@types/node': 18.19.10
+ babel-jest: 29.7.0(@babel/core@7.23.2)
chalk: 4.1.2
- ci-info: 3.8.0
+ ci-info: 3.9.0
deepmerge: 4.3.1
glob: 7.2.3
graceful-fs: 4.2.11
@@ -3297,7 +3261,7 @@ packages:
'@jest/fake-timers': 29.7.0
'@jest/types': 29.6.3
'@types/jsdom': 20.0.1
- '@types/node': 18.18.1
+ '@types/node': 18.19.10
jest-mock: 29.7.0
jest-util: 29.7.0
jsdom: 20.0.3
@@ -3314,7 +3278,7 @@ packages:
'@jest/environment': 29.7.0
'@jest/fake-timers': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 18.18.1
+ '@types/node': 18.19.10
jest-mock: 29.7.0
jest-util: 29.7.0
dev: true
@@ -3329,8 +3293,8 @@ packages:
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jest/types': 29.6.3
- '@types/graceful-fs': 4.1.7
- '@types/node': 18.18.1
+ '@types/graceful-fs': 4.1.8
+ '@types/node': 18.19.10
anymatch: 3.1.3
fb-watchman: 2.0.2
graceful-fs: 4.2.11
@@ -3367,7 +3331,7 @@ packages:
dependencies:
'@babel/code-frame': 7.22.13
'@jest/types': 29.6.3
- '@types/stack-utils': 2.0.1
+ '@types/stack-utils': 2.0.2
chalk: 4.1.2
graceful-fs: 4.2.11
micromatch: 4.0.5
@@ -3381,7 +3345,7 @@ packages:
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jest/types': 29.6.3
- '@types/node': 18.18.1
+ '@types/node': 18.19.10
jest-util: 29.7.0
dev: true
@@ -3422,7 +3386,7 @@ packages:
jest-pnp-resolver: 1.2.3(jest-resolve@29.7.0)
jest-util: 29.7.0
jest-validate: 29.7.0
- resolve: 1.22.6
+ resolve: 1.22.8
resolve.exports: 2.0.2
slash: 3.0.0
dev: true
@@ -3436,7 +3400,7 @@ packages:
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 18.18.1
+ '@types/node': 18.19.10
chalk: 4.1.2
emittery: 0.13.1
graceful-fs: 4.2.11
@@ -3467,7 +3431,7 @@ packages:
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 18.18.1
+ '@types/node': 18.19.10
chalk: 4.1.2
cjs-module-lexer: 1.2.3
collect-v8-coverage: 1.0.2
@@ -3490,15 +3454,15 @@ packages:
resolution: {integrity: sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@babel/core': 7.23.0
+ '@babel/core': 7.23.2
'@babel/generator': 7.23.0
- '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.0)
- '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.23.2)
'@babel/types': 7.23.0
'@jest/expect-utils': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.0)
+ babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.2)
chalk: 4.1.2
expect: 29.7.0
graceful-fs: 4.2.11
@@ -3519,9 +3483,9 @@ packages:
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jest/types': 29.6.3
- '@types/node': 18.18.1
+ '@types/node': 18.19.10
chalk: 4.1.2
- ci-info: 3.8.0
+ ci-info: 3.9.0
graceful-fs: 4.2.11
picomatch: 2.3.1
dev: true
@@ -3544,7 +3508,7 @@ packages:
dependencies:
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 18.18.1
+ '@types/node': 18.19.10
ansi-escapes: 4.3.2
chalk: 4.1.2
emittery: 0.13.1
@@ -3556,13 +3520,13 @@ packages:
resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@types/node': 18.18.1
+ '@types/node': 18.19.10
jest-util: 29.7.0
merge-stream: 2.0.0
supports-color: 8.1.1
dev: true
- /jest@29.7.0(@types/node@18.18.1):
+ /jest@29.7.0(@types/node@18.19.10):
resolution: {integrity: sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
hasBin: true
@@ -3575,7 +3539,7 @@ packages:
'@jest/core': 29.7.0
'@jest/types': 29.6.3
import-local: 3.1.0
- jest-cli: 29.7.0(@types/node@18.18.1)
+ jest-cli: 29.7.0(@types/node@18.19.10)
transitivePeerDependencies:
- '@types/node'
- babel-plugin-macros
@@ -3612,7 +3576,7 @@ packages:
optional: true
dependencies:
abab: 2.0.6
- acorn: 8.10.0
+ acorn: 8.11.2
acorn-globals: 7.0.1
cssom: 0.5.0
cssstyle: 2.3.0
@@ -3663,25 +3627,20 @@ packages:
resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==}
dev: true
- /kind-of@6.0.3:
- resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==}
- engines: {node: '>=0.10.0'}
- dev: true
-
/kleur@3.0.3:
resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==}
engines: {node: '>=6'}
dev: true
- /koajax@0.9.4(typescript@5.2.2):
- resolution: {integrity: sha512-uwS2ggrzcZ3KkO0MST8rVdFwT2McwnmxPc9DiiWibjnb4Zcl25YeupGkcNd226hhHp9FJYm5QjHAruL8NZ97qg==}
+ /koajax@0.9.6(typescript@5.3.3):
+ resolution: {integrity: sha512-Cv5HH7igfN7HEGLwRzu4TEzXLTm3QSpbR48Gif9dhPPBNKZ8ELS1bbh3Dik1s83vpKnnjC+DcFU8ql+LwNg3tQ==}
peerDependencies:
jsdom: '>=21'
dependencies:
- '@swc/helpers': 0.5.2
- iterable-observer: 1.0.0
- regenerator-runtime: 0.14.0
- web-utility: 4.1.3(typescript@5.2.2)
+ '@swc/helpers': 0.5.3
+ iterable-observer: 1.0.1
+ regenerator-runtime: 0.14.1
+ web-utility: 4.1.3(typescript@5.3.3)
transitivePeerDependencies:
- typescript
dev: false
@@ -3691,12 +3650,8 @@ packages:
engines: {node: '>=6'}
dev: true
- /libphonenumber-js@1.10.45:
- resolution: {integrity: sha512-eeHcvGafEYCaKB4fo2uBINfG7j7PcGwBHUaTVfbwl/6KcjCgIKNlIOsSXVRp9BH10NQwmvvk+nQ1e/Yp4BGB7w==}
- dev: false
-
- /lightningcss-darwin-arm64@1.22.0:
- resolution: {integrity: sha512-aH2be3nNny+It5YEVm8tBSSdRlBVWQV8m2oJ7dESiYRzyY/E/bQUe2xlw5caaMuhlM9aoTMtOH25yzMhir0qPg==}
+ /lightningcss-darwin-arm64@1.23.0:
+ resolution: {integrity: sha512-kl4Pk3Q2lnE6AJ7Qaij47KNEfY2/UXRZBT/zqGA24B8qwkgllr/j7rclKOf1axcslNXvvUdztjo4Xqh39Yq1aA==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [darwin]
@@ -3704,8 +3659,8 @@ packages:
dev: true
optional: true
- /lightningcss-darwin-x64@1.22.0:
- resolution: {integrity: sha512-9KHRFA0Y6mNxRHeoQMp0YaI0R0O2kOgUlYPRjuasU4d+pI8NRhVn9bt0yX9VPs5ibWX1RbDViSPtGJvYYrfVAQ==}
+ /lightningcss-darwin-x64@1.23.0:
+ resolution: {integrity: sha512-KeRFCNoYfDdcolcFXvokVw+PXCapd2yHS1Diko1z1BhRz/nQuD5XyZmxjWdhmhN/zj5sH8YvWsp0/lPLVzqKpg==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [darwin]
@@ -3713,8 +3668,8 @@ packages:
dev: true
optional: true
- /lightningcss-freebsd-x64@1.22.0:
- resolution: {integrity: sha512-xaYL3xperGwD85rQioDb52ozF3NAJb+9wrge3jD9lxGffplu0Mn35rXMptB8Uc2N9Mw1i3Bvl7+z1evlqVl7ww==}
+ /lightningcss-freebsd-x64@1.23.0:
+ resolution: {integrity: sha512-xhnhf0bWPuZxcqknvMDRFFo2TInrmQRWZGB0f6YoAsZX8Y+epfjHeeOIGCfAmgF0DgZxHwYc8mIR5tQU9/+ROA==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [freebsd]
@@ -3722,8 +3677,8 @@ packages:
dev: true
optional: true
- /lightningcss-linux-arm-gnueabihf@1.22.0:
- resolution: {integrity: sha512-epQGvXIjOuxrZpMpMnRjK54ZqzhiHhCPLtHvw2fb6NeK2kK9YtF0wqmeTBiQ1AkbWfnnXGTstYaFNiadNK+StQ==}
+ /lightningcss-linux-arm-gnueabihf@1.23.0:
+ resolution: {integrity: sha512-fBamf/bULvmWft9uuX+bZske236pUZEoUlaHNBjnueaCTJ/xd8eXgb0cEc7S5o0Nn6kxlauMBnqJpF70Bgq3zg==}
engines: {node: '>= 12.0.0'}
cpu: [arm]
os: [linux]
@@ -3731,8 +3686,8 @@ packages:
dev: true
optional: true
- /lightningcss-linux-arm64-gnu@1.22.0:
- resolution: {integrity: sha512-AArGtKSY4DGTA8xP8SDyNyKtpsUl1Rzq6FW4JomeyUQ4nBrR71uPChksTpj3gmWuGhZeRKLeCUI1DBid/zhChg==}
+ /lightningcss-linux-arm64-gnu@1.23.0:
+ resolution: {integrity: sha512-RS7sY77yVLOmZD6xW2uEHByYHhQi5JYWmgVumYY85BfNoVI3DupXSlzbw+b45A9NnVKq45+oXkiN6ouMMtTwfg==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [linux]
@@ -3740,8 +3695,8 @@ packages:
dev: true
optional: true
- /lightningcss-linux-arm64-musl@1.22.0:
- resolution: {integrity: sha512-RRraNgP8hnBPhInTTUdlFm+z16C/ghbxBG51Sw00hd7HUyKmEUKRozyc5od+/N6pOrX/bIh5vIbtMXIxsos0lg==}
+ /lightningcss-linux-arm64-musl@1.23.0:
+ resolution: {integrity: sha512-cU00LGb6GUXCwof6ACgSMKo3q7XYbsyTj0WsKHLi1nw7pV0NCq8nFTn6ZRBYLoKiV8t+jWl0Hv8KkgymmK5L5g==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [linux]
@@ -3749,8 +3704,8 @@ packages:
dev: true
optional: true
- /lightningcss-linux-x64-gnu@1.22.0:
- resolution: {integrity: sha512-grdrhYGRi2KrR+bsXJVI0myRADqyA7ekprGxiuK5QRNkv7kj3Yq1fERDNyzZvjisHwKUi29sYMClscbtl+/Zpw==}
+ /lightningcss-linux-x64-gnu@1.23.0:
+ resolution: {integrity: sha512-q4jdx5+5NfB0/qMbXbOmuC6oo7caPnFghJbIAV90cXZqgV8Am3miZhC4p+sQVdacqxfd+3nrle4C8icR3p1AYw==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [linux]
@@ -3758,8 +3713,8 @@ packages:
dev: true
optional: true
- /lightningcss-linux-x64-musl@1.22.0:
- resolution: {integrity: sha512-t5f90X+iQUtIyR56oXIHMBUyQFX/zwmPt72E6Dane3P8KNGlkijTg2I75XVQS860gNoEFzV7Mm5ArRRA7u5CAQ==}
+ /lightningcss-linux-x64-musl@1.23.0:
+ resolution: {integrity: sha512-G9Ri3qpmF4qef2CV/80dADHKXRAQeQXpQTLx7AiQrBYQHqBjB75oxqj06FCIe5g4hNCqLPnM9fsO4CyiT1sFSQ==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [linux]
@@ -3767,8 +3722,8 @@ packages:
dev: true
optional: true
- /lightningcss-win32-x64-msvc@1.22.0:
- resolution: {integrity: sha512-64HTDtOOZE9PUCZJiZZQpyqXBbdby1lnztBccnqh+NtbKxjnGzP92R2ngcgeuqMPecMNqNWxgoWgTGpC+yN5Sw==}
+ /lightningcss-win32-x64-msvc@1.23.0:
+ resolution: {integrity: sha512-1rcBDJLU+obPPJM6qR5fgBUiCdZwZLafZM5f9kwjFLkb/UBNIzmae39uCSmh71nzPCTXZqHbvwu23OWnWEz+eg==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [win32]
@@ -3776,86 +3731,80 @@ packages:
dev: true
optional: true
- /lightningcss@1.22.0:
- resolution: {integrity: sha512-+z0qvwRVzs4XGRXelnWRNwqsXUx8k3bSkbP8vD42kYKSk3z9OM2P3e/gagT7ei/gwh8DTS80LZOFZV6lm8Z8Fg==}
+ /lightningcss@1.23.0:
+ resolution: {integrity: sha512-SEArWKMHhqn/0QzOtclIwH5pXIYQOUEkF8DgICd/105O+GCgd7jxjNod/QPnBCSWvpRHQBGVz5fQ9uScby03zA==}
engines: {node: '>= 12.0.0'}
dependencies:
detect-libc: 1.0.3
optionalDependencies:
- lightningcss-darwin-arm64: 1.22.0
- lightningcss-darwin-x64: 1.22.0
- lightningcss-freebsd-x64: 1.22.0
- lightningcss-linux-arm-gnueabihf: 1.22.0
- lightningcss-linux-arm64-gnu: 1.22.0
- lightningcss-linux-arm64-musl: 1.22.0
- lightningcss-linux-x64-gnu: 1.22.0
- lightningcss-linux-x64-musl: 1.22.0
- lightningcss-win32-x64-msvc: 1.22.0
- dev: true
-
- /lilconfig@2.1.0:
- resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
- engines: {node: '>=10'}
+ lightningcss-darwin-arm64: 1.23.0
+ lightningcss-darwin-x64: 1.23.0
+ lightningcss-freebsd-x64: 1.23.0
+ lightningcss-linux-arm-gnueabihf: 1.23.0
+ lightningcss-linux-arm64-gnu: 1.23.0
+ lightningcss-linux-arm64-musl: 1.23.0
+ lightningcss-linux-x64-gnu: 1.23.0
+ lightningcss-linux-x64-musl: 1.23.0
+ lightningcss-win32-x64-msvc: 1.23.0
+ dev: true
+
+ /lilconfig@3.0.0:
+ resolution: {integrity: sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==}
+ engines: {node: '>=14'}
dev: true
/lines-and-columns@1.2.4:
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
dev: true
- /lint-staged@14.0.1:
- resolution: {integrity: sha512-Mw0cL6HXnHN1ag0mN/Dg4g6sr8uf8sn98w2Oc1ECtFto9tvRF7nkXGJRbx8gPlHyoR0pLyBr2lQHbWwmUHe1Sw==}
- engines: {node: ^16.14.0 || >=18.0.0}
+ /lint-staged@15.2.0:
+ resolution: {integrity: sha512-TFZzUEV00f+2YLaVPWBWGAMq7So6yQx+GG8YRMDeOEIf95Zn5RyiLMsEiX4KTNl9vq/w+NqRJkLA1kPIo15ufQ==}
+ engines: {node: '>=18.12.0'}
hasBin: true
dependencies:
chalk: 5.3.0
- commander: 11.0.0
+ commander: 11.1.0
debug: 4.3.4
- execa: 7.2.0
- lilconfig: 2.1.0
- listr2: 6.6.1
+ execa: 8.0.1
+ lilconfig: 3.0.0
+ listr2: 8.0.0
micromatch: 4.0.5
pidtree: 0.6.0
string-argv: 0.3.2
- yaml: 2.3.1
+ yaml: 2.3.4
transitivePeerDependencies:
- - enquirer
- supports-color
dev: true
- /listr2@6.6.1:
- resolution: {integrity: sha512-+rAXGHh0fkEWdXBmX+L6mmfmXmXvDGEKzkjxO+8mP3+nI/r/CWznVBvsibXdxda9Zz0OW2e2ikphN3OwCT/jSg==}
- engines: {node: '>=16.0.0'}
- peerDependencies:
- enquirer: '>= 2.3.0 < 3'
- peerDependenciesMeta:
- enquirer:
- optional: true
+ /listr2@8.0.0:
+ resolution: {integrity: sha512-u8cusxAcyqAiQ2RhYvV7kRKNLgUvtObIbhOX2NCXqvp1UU32xIg5CT22ykS2TPKJXZWJwtK3IKLiqAGlGNE+Zg==}
+ engines: {node: '>=18.0.0'}
dependencies:
- cli-truncate: 3.1.0
+ cli-truncate: 4.0.0
colorette: 2.0.20
eventemitter3: 5.0.1
- log-update: 5.0.1
+ log-update: 6.0.0
rfdc: 1.3.0
- wrap-ansi: 8.1.0
+ wrap-ansi: 9.0.0
dev: true
- /lmdb@2.7.11:
- resolution: {integrity: sha512-x9bD4hVp7PFLUoELL8RglbNXhAMt5CYhkmss+CEau9KlNoilsTzNi9QDsPZb3KMpOGZXG6jmXhW3bBxE2XVztw==}
+ /lmdb@2.8.5:
+ resolution: {integrity: sha512-9bMdFfc80S+vSldBmG3HOuLVHnxRdNTlpzR6QDnzqCQtCzGUEAGTzBKYMeIM+I/sU4oZfgbcbS7X7F65/z/oxQ==}
hasBin: true
requiresBuild: true
dependencies:
- msgpackr: 1.8.5
- node-addon-api: 4.3.0
- node-gyp-build-optional-packages: 5.0.6
+ msgpackr: 1.9.9
+ node-addon-api: 6.1.0
+ node-gyp-build-optional-packages: 5.1.1
ordered-binary: 1.4.1
weak-lru-cache: 1.2.2
optionalDependencies:
- '@lmdb/lmdb-darwin-arm64': 2.7.11
- '@lmdb/lmdb-darwin-x64': 2.7.11
- '@lmdb/lmdb-linux-arm': 2.7.11
- '@lmdb/lmdb-linux-arm64': 2.7.11
- '@lmdb/lmdb-linux-x64': 2.7.11
- '@lmdb/lmdb-win32-x64': 2.7.11
+ '@lmdb/lmdb-darwin-arm64': 2.8.5
+ '@lmdb/lmdb-darwin-x64': 2.8.5
+ '@lmdb/lmdb-linux-arm': 2.8.5
+ '@lmdb/lmdb-linux-arm64': 2.8.5
+ '@lmdb/lmdb-linux-x64': 2.8.5
+ '@lmdb/lmdb-win32-x64': 2.8.5
dev: true
/locate-path@5.0.0:
@@ -3865,26 +3814,19 @@ packages:
p-locate: 4.1.0
dev: true
- /locate-path@7.2.0:
- resolution: {integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- dependencies:
- p-locate: 6.0.0
- dev: true
-
/lodash.memoize@4.1.2:
resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==}
dev: true
- /log-update@5.0.1:
- resolution: {integrity: sha512-5UtUDQ/6edw4ofyljDNcOVJQ4c7OjDro4h3y8e1GQL5iYElYclVHJ3zeWchylvMaKnDbDilC8irOVyexnA/Slw==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ /log-update@6.0.0:
+ resolution: {integrity: sha512-niTvB4gqvtof056rRIrTZvjNYE4rCUzO6X/X+kYjd7WFxXeJ0NwEFnRxX6ehkvv3jTwrXnNdtAak5XYZuIyPFw==}
+ engines: {node: '>=18'}
dependencies:
- ansi-escapes: 5.0.0
+ ansi-escapes: 6.2.0
cli-cursor: 4.0.0
- slice-ansi: 5.0.0
+ slice-ansi: 7.1.0
strip-ansi: 7.1.0
- wrap-ansi: 8.1.0
+ wrap-ansi: 9.0.0
dev: true
/lru-cache@5.1.1:
@@ -3900,11 +3842,6 @@ packages:
yallist: 4.0.0
dev: true
- /lru-cache@7.18.3:
- resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==}
- engines: {node: '>=12'}
- dev: true
-
/lunr@2.3.9:
resolution: {integrity: sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow==}
dev: true
@@ -3926,16 +3863,6 @@ packages:
tmpl: 1.0.5
dev: true
- /map-obj@1.0.1:
- resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==}
- engines: {node: '>=0.10.0'}
- dev: true
-
- /map-obj@4.3.0:
- resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==}
- engines: {node: '>=8'}
- dev: true
-
/marked@4.3.0:
resolution: {integrity: sha512-PRsaiG84bK+AMvxziE/lCFss8juXjNaWzVbN5tXAm4XjeaS9NAHhop+PjQxz2A9h8Q4M/xGmzP8vqNwy6JeK0A==}
engines: {node: '>= 12'}
@@ -3946,22 +3873,9 @@ packages:
resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==}
dev: true
- /meow@11.0.0:
- resolution: {integrity: sha512-Cl0yeeIrko6d94KpUo1M+0X1sB14ikoaqlIGuTH1fW4I+E3+YljL54/hb/BWmVfrV9tTV9zU04+xjw08Fh2WkA==}
- engines: {node: '>=14.16'}
- dependencies:
- '@types/minimist': 1.2.3
- camelcase-keys: 8.0.2
- decamelize: 6.0.0
- decamelize-keys: 1.1.1
- hard-rejection: 2.1.0
- minimist-options: 4.1.0
- normalize-package-data: 4.0.1
- read-pkg-up: 9.1.0
- redent: 4.0.0
- trim-newlines: 4.1.1
- type-fest: 3.13.1
- yargs-parser: 21.1.1
+ /meow@12.1.1:
+ resolution: {integrity: sha512-BhXM0Au22RwUneMPwSCnyhTOizdWoIEPU9sp0Aqa1PnDMR5Wv2FGXYDjuzJEIX+Eo2Rb8xuYe5jrnm5QowQFkw==}
+ engines: {node: '>=16.10'}
dev: true
/merge-stream@2.0.0:
@@ -3998,11 +3912,6 @@ packages:
engines: {node: '>=12'}
dev: true
- /min-indent@1.0.1:
- resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==}
- engines: {node: '>=4'}
- dev: true
-
/minimatch@3.1.2:
resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
dependencies:
@@ -4016,17 +3925,8 @@ packages:
brace-expansion: 2.0.1
dev: true
- /minimist-options@4.1.0:
- resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==}
- engines: {node: '>= 6'}
- dependencies:
- arrify: 1.0.1
- is-plain-obj: 1.1.0
- kind-of: 6.0.3
- dev: true
-
- /mobx@6.10.2:
- resolution: {integrity: sha512-B1UGC3ieK3boCjnMEcZSwxqRDMdzX65H/8zOHbuTY8ZhvrIjTUoLRR2TP2bPqIgYRfb3+dUigu8yMZufNjn0LQ==}
+ /mobx@6.12.0:
+ resolution: {integrity: sha512-Mn6CN6meXEnMa0a5u6a5+RKrqRedHBhZGd15AWLk9O6uFY4KYHzImdt8JI8WODo1bjTSRnwXhJox+FCUZhCKCQ==}
dev: true
/ms@2.1.2:
@@ -4049,12 +3949,6 @@ packages:
dev: true
optional: true
- /msgpackr@1.8.5:
- resolution: {integrity: sha512-mpPs3qqTug6ahbblkThoUY2DQdNXcm4IapwOS3Vm/87vmpzLVelvp9h3It1y9l1VPpiFLV11vfOXnmeEwiIXwg==}
- optionalDependencies:
- msgpackr-extract: 3.0.2
- dev: true
-
/msgpackr@1.9.9:
resolution: {integrity: sha512-sbn6mioS2w0lq1O6PpGtsv6Gy8roWM+o3o4Sqjd6DudrL/nOugY+KyJUimoWzHnf9OkO0T6broHFnYE/R05t9A==}
optionalDependencies:
@@ -4065,19 +3959,14 @@ packages:
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
dev: true
- /node-addon-api@4.3.0:
- resolution: {integrity: sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ==}
+ /node-addon-api@6.1.0:
+ resolution: {integrity: sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==}
dev: true
/node-addon-api@7.0.0:
resolution: {integrity: sha512-vgbBJTS4m5/KkE16t5Ly0WW9hz46swAstv0hYYwMtbG7AznRhNyfLRe8HZAiWIpcHzoO7HxhLuBQj9rJ/Ho0ZA==}
dev: true
- /node-gyp-build-optional-packages@5.0.6:
- resolution: {integrity: sha512-2ZJErHG4du9G3/8IWl/l9Bp5BBFy63rno5GVmjQijvTuUZKsl6g8RB4KH/x3NLcV5ZBb4GsXmAuTYr6dRml3Gw==}
- hasBin: true
- dev: true
-
/node-gyp-build-optional-packages@5.0.7:
resolution: {integrity: sha512-YlCCc6Wffkx0kHkmam79GKvDQ6x+QZkMjFGrIMxgFNILFvGSbCp2fCBC55pGTT9gVaz8Na5CLmxt/urtzRv36w==}
hasBin: true
@@ -4085,6 +3974,13 @@ packages:
dev: true
optional: true
+ /node-gyp-build-optional-packages@5.1.1:
+ resolution: {integrity: sha512-+P72GAjVAbTxjjwUmwjVrqrdZROD4nf8KgpBoDxqXXTiYZZt/ud60dE5yvCSr9lRO8e8yv6kgJIC0K0PfZFVQw==}
+ hasBin: true
+ dependencies:
+ detect-libc: 2.0.2
+ dev: true
+
/node-int64@0.4.0:
resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==}
dev: true
@@ -4093,26 +3989,6 @@ packages:
resolution: {integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==}
dev: true
- /normalize-package-data@3.0.3:
- resolution: {integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==}
- engines: {node: '>=10'}
- dependencies:
- hosted-git-info: 4.1.0
- is-core-module: 2.13.0
- semver: 7.5.4
- validate-npm-package-license: 3.0.4
- dev: true
-
- /normalize-package-data@4.0.1:
- resolution: {integrity: sha512-EBk5QKKuocMJhB3BILuKhmaPjI8vNRSpIfO9woLC6NyHVkKKdVEdAO1mrT0ZfxNR1lKwCcTkuZfmGIFdizZ8Pg==}
- engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
- dependencies:
- hosted-git-info: 5.2.1
- is-core-module: 2.13.0
- semver: 7.5.4
- validate-npm-package-license: 3.0.4
- dev: true
-
/normalize-path@3.0.0:
resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
engines: {node: '>=0.10.0'}
@@ -4166,26 +4042,26 @@ packages:
mimic-fn: 4.0.0
dev: true
- /open-cli@7.2.0:
- resolution: {integrity: sha512-1ANJc8oJ92FiaNZ0o2Hw4WBvDJoXs1P74aFMtpAvlbkIPV4uPcQvDz7V6kMOrsZkmB4tglrHVMlLQaafuUuxXg==}
- engines: {node: '>=14.16'}
+ /open-cli@8.0.0:
+ resolution: {integrity: sha512-3muD3BbfLyzl+aMVSEfn2FfOqGdPYR0O4KNnxXsLEPE2q9OSjBfJAaB6XKbrUzLgymoSMejvb5jpXJfru/Ko2A==}
+ engines: {node: '>=18'}
hasBin: true
dependencies:
- file-type: 18.5.0
+ file-type: 18.7.0
get-stdin: 9.0.0
- meow: 11.0.0
- open: 9.1.0
+ meow: 12.1.1
+ open: 10.0.3
tempy: 3.1.0
dev: true
- /open@9.1.0:
- resolution: {integrity: sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==}
- engines: {node: '>=14.16'}
+ /open@10.0.3:
+ resolution: {integrity: sha512-dtbI5oW7987hwC9qjJTyABldTaa19SuyJse1QboWv3b0qCcrrLNVDqBx1XgELAjh9QTVQaP/C5b1nhQebd1H2A==}
+ engines: {node: '>=18'}
dependencies:
- default-browser: 4.0.0
+ default-browser: 5.2.1
define-lazy-prop: 3.0.0
is-inside-container: 1.0.0
- is-wsl: 2.2.0
+ is-wsl: 3.1.0
dev: true
/ordered-binary@1.4.1:
@@ -4206,13 +4082,6 @@ packages:
yocto-queue: 0.1.0
dev: true
- /p-limit@4.0.0:
- resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- dependencies:
- yocto-queue: 1.0.0
- dev: true
-
/p-locate@4.1.0:
resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==}
engines: {node: '>=8'}
@@ -4220,37 +4089,30 @@ packages:
p-limit: 2.3.0
dev: true
- /p-locate@6.0.0:
- resolution: {integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- dependencies:
- p-limit: 4.0.0
- dev: true
-
/p-try@2.2.0:
resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
engines: {node: '>=6'}
dev: true
- /parcel@2.9.3(@swc/helpers@0.5.2)(typescript@5.2.2):
- resolution: {integrity: sha512-2GTVocFkwblV/TIg9AmT7TI2fO4xdWkyN8aFUEVtiVNWt96GTR3FgQyHFValfCbcj1k9Xf962Ws2hYXYUr9k1Q==}
+ /parcel@2.11.0(@swc/helpers@0.5.3)(typescript@5.3.3):
+ resolution: {integrity: sha512-H/RI1/DmuOkL8RuG/EpNPvtzrbF+7jA/R56ydEEm+lqFbYktKB4COR7JXdHkZXRgbSJyimrFB8d0r9+SaRnj0Q==}
engines: {node: '>= 12.0.0'}
hasBin: true
peerDependenciesMeta:
'@parcel/core':
optional: true
dependencies:
- '@parcel/config-default': 2.9.3(@parcel/core@2.9.3)(@swc/helpers@0.5.2)(typescript@5.2.2)
- '@parcel/core': 2.9.3
- '@parcel/diagnostic': 2.9.3
- '@parcel/events': 2.9.3
- '@parcel/fs': 2.9.3(@parcel/core@2.9.3)
- '@parcel/logger': 2.9.3
- '@parcel/package-manager': 2.9.3(@parcel/core@2.9.3)
- '@parcel/reporter-cli': 2.9.3
- '@parcel/reporter-dev-server': 2.9.3
- '@parcel/reporter-tracer': 2.9.3
- '@parcel/utils': 2.9.3
+ '@parcel/config-default': 2.11.0(@parcel/core@2.11.0)(@swc/helpers@0.5.3)(typescript@5.3.3)
+ '@parcel/core': 2.11.0
+ '@parcel/diagnostic': 2.11.0
+ '@parcel/events': 2.11.0
+ '@parcel/fs': 2.11.0(@parcel/core@2.11.0)
+ '@parcel/logger': 2.11.0
+ '@parcel/package-manager': 2.11.0(@parcel/core@2.11.0)
+ '@parcel/reporter-cli': 2.11.0
+ '@parcel/reporter-dev-server': 2.11.0
+ '@parcel/reporter-tracer': 2.11.0
+ '@parcel/utils': 2.11.0
chalk: 4.1.2
commander: 7.2.0
get-port: 4.2.0
@@ -4294,11 +4156,6 @@ packages:
engines: {node: '>=8'}
dev: true
- /path-exists@5.0.0:
- resolution: {integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- dev: true
-
/path-is-absolute@1.0.1:
resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
engines: {node: '>=0.10.0'}
@@ -4388,8 +4245,8 @@ packages:
posthtml-render: 3.0.0
dev: true
- /prettier@3.0.3:
- resolution: {integrity: sha512-L/4pUDMxcNa8R/EthV08Zt42WBO4h1rarVtK0K+QJG0X187OLo7l699jWw0GKuwzkPQ//jMFA/8Xm6Fh3J/DAg==}
+ /prettier@3.2.4:
+ resolution: {integrity: sha512-FWu1oLHKCrtpO1ypU6J0SbK2d9Ckwysq6bHj/uaCP26DxrPpppCLQRGVuqAxSTvhF00AcvDRyYrLNW7ocBhFFQ==}
engines: {node: '>=14'}
hasBin: true
dev: true
@@ -4415,8 +4272,8 @@ packages:
resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==}
dev: true
- /punycode@2.3.0:
- resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==}
+ /punycode@2.3.1:
+ resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
engines: {node: '>=6'}
dev: true
@@ -4428,11 +4285,6 @@ packages:
resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==}
dev: true
- /quick-lru@6.1.2:
- resolution: {integrity: sha512-AAFUA5O1d83pIHEhJwWCq/RQcRukCkn/NSm2QsTEMle5f2hP0ChI2+3Xb051PZCkLryI/Ir1MVKviT2FIloaTQ==}
- engines: {node: '>=12'}
- dev: true
-
/react-error-overlay@6.0.9:
resolution: {integrity: sha512-nQTTcUu+ATDbrSD1BZHr5kgSD4oF8OFjxun8uAaL8RwPBacGBNPf/yAuVVdx17N8XNzRDMrZ9XcKZHCjPW+9ew==}
dev: true
@@ -4446,25 +4298,6 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
- /read-pkg-up@9.1.0:
- resolution: {integrity: sha512-vaMRR1AC1nrd5CQM0PhlRsO5oc2AAigqr7cCrZ/MW/Rsaflz4RlgzkpL4qoU/z1F6wrbd85iFv1OQj/y5RdGvg==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- dependencies:
- find-up: 6.3.0
- read-pkg: 7.1.0
- type-fest: 2.19.0
- dev: true
-
- /read-pkg@7.1.0:
- resolution: {integrity: sha512-5iOehe+WF75IccPc30bWTbpdDQLOCc3Uu8bi3Dte3Eueij81yx1Mrufk8qBx/YAbR4uL1FdUr+7BKXDwEtisXg==}
- engines: {node: '>=12.20'}
- dependencies:
- '@types/normalize-package-data': 2.4.2
- normalize-package-data: 3.0.3
- parse-json: 5.2.0
- type-fest: 2.19.0
- dev: true
-
/readable-stream@3.6.2:
resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
engines: {node: '>= 6'}
@@ -4481,24 +4314,12 @@ packages:
readable-stream: 3.6.2
dev: true
- /redent@4.0.0:
- resolution: {integrity: sha512-tYkDkVVtYkSVhuQ4zBgfvciymHaeuel+zFKXShfDnFP5SyVEP7qo70Rf1jTOTCx3vGNAbnEi/xFkcfQVMIBWag==}
- engines: {node: '>=12'}
- dependencies:
- indent-string: 5.0.0
- strip-indent: 4.0.0
- dev: true
-
- /reflect-metadata@0.1.13:
- resolution: {integrity: sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg==}
- dev: false
-
/regenerator-runtime@0.13.11:
resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==}
dev: true
- /regenerator-runtime@0.14.0:
- resolution: {integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==}
+ /regenerator-runtime@0.14.1:
+ resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==}
dev: false
/require-directory@2.1.1:
@@ -4532,11 +4353,11 @@ packages:
engines: {node: '>=10'}
dev: true
- /resolve@1.22.6:
- resolution: {integrity: sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw==}
+ /resolve@1.22.8:
+ resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}
hasBin: true
dependencies:
- is-core-module: 2.13.0
+ is-core-module: 2.13.1
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
dev: true
@@ -4553,11 +4374,9 @@ packages:
resolution: {integrity: sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==}
dev: true
- /run-applescript@5.0.0:
- resolution: {integrity: sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==}
- engines: {node: '>=12'}
- dependencies:
- execa: 5.1.1
+ /run-applescript@7.0.0:
+ resolution: {integrity: sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==}
+ engines: {node: '>=18'}
dev: true
/safe-buffer@5.2.1:
@@ -4600,8 +4419,8 @@ packages:
engines: {node: '>=8'}
dev: true
- /shiki@0.14.4:
- resolution: {integrity: sha512-IXCRip2IQzKwxArNNq1S+On4KPML3Yyn8Zzs/xRgcgOWIr8ntIK3IKzjFPfjy/7kt9ZMjc+FItfqHRBg8b6tNQ==}
+ /shiki@0.14.7:
+ resolution: {integrity: sha512-dNPAPrxSc87ua2sKJ3H5dQ/6ZaY8RNnaAqK+t0eG7p0Soi2ydiqbGOTaZCqaYvA/uZYfS1LJnemt3Q+mSfcPCg==}
dependencies:
ansi-sequence-parser: 1.1.1
jsonc-parser: 3.2.0
@@ -4613,6 +4432,11 @@ packages:
resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
dev: true
+ /signal-exit@4.1.0:
+ resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
+ engines: {node: '>=14'}
+ dev: true
+
/sisteransi@1.0.5:
resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
dev: true
@@ -4630,6 +4454,14 @@ packages:
is-fullwidth-code-point: 4.0.0
dev: true
+ /slice-ansi@7.1.0:
+ resolution: {integrity: sha512-bSiSngZ/jWeX93BqeIAbImyTbEihizcwNjFoRUIY/T1wWQsfsm2Vw1agPKylXvQTU7iASGdHhyqRlqQzfz+Htg==}
+ engines: {node: '>=18'}
+ dependencies:
+ ansi-styles: 6.2.1
+ is-fullwidth-code-point: 5.0.0
+ dev: true
+
/source-map-support@0.5.13:
resolution: {integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==}
dependencies:
@@ -4642,28 +4474,6 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
- /spdx-correct@3.2.0:
- resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==}
- dependencies:
- spdx-expression-parse: 3.0.1
- spdx-license-ids: 3.0.15
- dev: true
-
- /spdx-exceptions@2.3.0:
- resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==}
- dev: true
-
- /spdx-expression-parse@3.0.1:
- resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==}
- dependencies:
- spdx-exceptions: 2.3.0
- spdx-license-ids: 3.0.15
- dev: true
-
- /spdx-license-ids@3.0.15:
- resolution: {integrity: sha512-lpT8hSQp9jAKp9mhtBU4Xjon8LPGBvLIuBiSVhMEtmLecTh2mO0tlqrAMp47tBXzMr13NJMQ2lf7RpQGLJ3HsQ==}
- dev: true
-
/sprintf-js@1.0.3:
resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
dev: true
@@ -4707,12 +4517,12 @@ packages:
strip-ansi: 6.0.1
dev: true
- /string-width@5.1.2:
- resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
- engines: {node: '>=12'}
+ /string-width@7.1.0:
+ resolution: {integrity: sha512-SEIJCWiX7Kg4c129n48aDRwLbFb2LJmXXFrWBG4NGaRtMQ3myKPKbwrD1BKqQn74oCoNMBVrfDEr5M9YxCsrkw==}
+ engines: {node: '>=18'}
dependencies:
- eastasianwidth: 0.2.0
- emoji-regex: 9.2.2
+ emoji-regex: 10.3.0
+ get-east-asian-width: 1.2.0
strip-ansi: 7.1.0
dev: true
@@ -4751,13 +4561,6 @@ packages:
engines: {node: '>=12'}
dev: true
- /strip-indent@4.0.0:
- resolution: {integrity: sha512-mnVSV2l+Zv6BLpSD/8V87CW/y9EmmbYzGCIavsnsI6/nwn26DwffM/yztm30Z/I2DY9wdS3vXVCMnHDgZaVNoA==}
- engines: {node: '>=12'}
- dependencies:
- min-indent: 1.0.1
- dev: true
-
/strip-json-comments@3.1.1:
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
engines: {node: '>=8'}
@@ -4848,11 +4651,6 @@ packages:
resolution: {integrity: sha512-qsdtZH+vMoCARQtyod4imc2nIJwg9Cc7lPRrw9CzF8ZKR0khdr8+2nX80PBhET3tcyTtJDxAffGh2rXH4tyU8A==}
dev: true
- /titleize@3.0.0:
- resolution: {integrity: sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==}
- engines: {node: '>=12'}
- dev: true
-
/tmpl@1.0.5:
resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==}
dev: true
@@ -4882,7 +4680,7 @@ packages:
engines: {node: '>=6'}
dependencies:
psl: 1.9.0
- punycode: 2.3.0
+ punycode: 2.3.1
universalify: 0.2.0
url-parse: 1.5.10
dev: true
@@ -4891,17 +4689,12 @@ packages:
resolution: {integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==}
engines: {node: '>=12'}
dependencies:
- punycode: 2.3.0
- dev: true
-
- /trim-newlines@4.1.1:
- resolution: {integrity: sha512-jRKj0n0jXWo6kh62nA5TEh3+4igKDXLvzBJcPpiizP7oOolUrYIxmVBG9TOtHYFHoddUk6YvAkGeGoSVTXfQXQ==}
- engines: {node: '>=12'}
+ punycode: 2.3.1
dev: true
- /ts-jest@29.1.1(jest@29.7.0)(typescript@5.2.2):
- resolution: {integrity: sha512-D6xjnnbP17cC85nliwGiL+tpoKN0StpgE0TeOjXQTU6MVCfsB4v7aW05CgQ/1OywGb0x/oy9hHFnN+sczTiRaA==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ /ts-jest@29.1.2(jest@29.7.0)(typescript@5.3.3):
+ resolution: {integrity: sha512-br6GJoH/WUX4pu7FbZXuWGKGNDuU7b8Uj77g/Sp7puZV6EXzuByl6JrECvm0MzVzSTkSHWTihsXt+5XYER5b+g==}
+ engines: {node: ^16.10.0 || ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
'@babel/core': '>=7.0.0-beta.0 <8'
@@ -4922,13 +4715,13 @@ packages:
dependencies:
bs-logger: 0.2.6
fast-json-stable-stringify: 2.1.0
- jest: 29.7.0(@types/node@18.18.1)
+ jest: 29.7.0(@types/node@18.19.10)
jest-util: 29.7.0
json5: 2.2.3
lodash.memoize: 4.1.2
make-error: 1.3.6
semver: 7.5.4
- typescript: 5.2.2
+ typescript: 5.3.3
yargs-parser: 21.1.1
dev: true
@@ -4965,33 +4758,37 @@ packages:
engines: {node: '>=14.16'}
dev: true
- /typedoc-plugin-mdn-links@3.1.0(typedoc@0.25.1):
- resolution: {integrity: sha512-4uwnkvywPFV3UVx7WXpIWTHJdXH1rlE2e4a1WsSwCFYKqJxgTmyapv3ZxJtbSl1dvnb6jmuMNSqKEPz77Gs2OA==}
+ /typedoc-plugin-mdn-links@3.1.14(typedoc@0.25.7):
+ resolution: {integrity: sha512-zPnzIHvMChiuS4BvI4mbs89HwS6HSPE+q7rPRliJCeIkQYqW7YaTXuBwbUQFPg++02KNUY0IMp0MFvouoi1Qgw==}
peerDependencies:
typedoc: '>= 0.23.14 || 0.24.x || 0.25.x'
dependencies:
- typedoc: 0.25.1(typescript@5.2.2)
+ typedoc: 0.25.7(typescript@5.3.3)
dev: true
- /typedoc@0.25.1(typescript@5.2.2):
- resolution: {integrity: sha512-c2ye3YUtGIadxN2O6YwPEXgrZcvhlZ6HlhWZ8jQRNzwLPn2ylhdGqdR8HbyDRyALP8J6lmSANILCkkIdNPFxqA==}
+ /typedoc@0.25.7(typescript@5.3.3):
+ resolution: {integrity: sha512-m6A6JjQRg39p2ZVRIN3NKXgrN8vzlHhOS+r9ymUYtcUP/TIQPvWSq7YgE5ZjASfv5Vd5BW5xrir6Gm2XNNcOow==}
engines: {node: '>= 16'}
hasBin: true
peerDependencies:
- typescript: 4.6.x || 4.7.x || 4.8.x || 4.9.x || 5.0.x || 5.1.x || 5.2.x
+ typescript: 4.6.x || 4.7.x || 4.8.x || 4.9.x || 5.0.x || 5.1.x || 5.2.x || 5.3.x
dependencies:
lunr: 2.3.9
marked: 4.3.0
minimatch: 9.0.3
- shiki: 0.14.4
- typescript: 5.2.2
+ shiki: 0.14.7
+ typescript: 5.3.3
dev: true
- /typescript@5.2.2:
- resolution: {integrity: sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==}
+ /typescript@5.3.3:
+ resolution: {integrity: sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==}
engines: {node: '>=14.17'}
hasBin: true
+ /undici-types@5.26.5:
+ resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==}
+ dev: true
+
/unique-string@3.0.0:
resolution: {integrity: sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==}
engines: {node: '>=12'}
@@ -5004,11 +4801,6 @@ packages:
engines: {node: '>= 4.0.0'}
dev: true
- /untildify@4.0.0:
- resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==}
- engines: {node: '>=8'}
- dev: true
-
/update-browserslist-db@1.0.13(browserslist@4.22.1):
resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==}
hasBin: true
@@ -5036,27 +4828,15 @@ packages:
engines: {node: '>= 4'}
dev: true
- /v8-to-istanbul@9.1.0:
- resolution: {integrity: sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==}
+ /v8-to-istanbul@9.1.3:
+ resolution: {integrity: sha512-9lDD+EVI2fjFsMWXc6dy5JJzBsVTcQ2fVkfBvncZ6xJWG9wtBhOldG+mHkSL0+V1K/xgZz0JDO5UT5hFwHUghg==}
engines: {node: '>=10.12.0'}
dependencies:
- '@jridgewell/trace-mapping': 0.3.19
- '@types/istanbul-lib-coverage': 2.0.4
- convert-source-map: 1.9.0
- dev: true
-
- /validate-npm-package-license@3.0.4:
- resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==}
- dependencies:
- spdx-correct: 3.2.0
- spdx-expression-parse: 3.0.1
+ '@jridgewell/trace-mapping': 0.3.20
+ '@types/istanbul-lib-coverage': 2.0.5
+ convert-source-map: 2.0.0
dev: true
- /validator@13.11.0:
- resolution: {integrity: sha512-Ii+sehpSfZy+At5nPdnyMhx78fEoPDkR2XW/zimHEL3MyGJQOCQ7WeP20jPYRz7ZCpcKLB21NxuXHF3bxjStBQ==}
- engines: {node: '>= 0.10'}
- dev: false
-
/vscode-oniguruma@1.7.0:
resolution: {integrity: sha512-L9WMGRfrjOhgHSdOYgCt/yRMsXzLDJSL7BPrOZt73gU0iWO4mpqzqQzOz5srxqTvMBaR0XZTSrVWo4j55Rc6cA==}
dev: true
@@ -5082,15 +4862,15 @@ packages:
resolution: {integrity: sha512-DEAoo25RfSYMuTGc9vPJzZcZullwIqRDSI9LOy+fkCJPi6hykCnfKaXTuPBDuXAUcqHXyOgFtHNp/kB2FjYHbw==}
dev: true
- /web-utility@4.1.3(typescript@5.2.2):
+ /web-utility@4.1.3(typescript@5.3.3):
resolution: {integrity: sha512-NLk7jXW/3WKMXxr/THwRilzjjsGmK78nSZJShzcDSwmAmyzKLkG28kxSVX8hw9Eynp+dOKAjeK/CB/kLZec6rQ==}
peerDependencies:
typescript: '>=4.1'
dependencies:
- '@swc/helpers': 0.5.2
- element-internals-polyfill: 1.3.8
- regenerator-runtime: 0.14.0
- typescript: 5.2.2
+ '@swc/helpers': 0.5.3
+ element-internals-polyfill: 1.3.9
+ regenerator-runtime: 0.14.1
+ typescript: 5.3.3
dev: false
/webidl-conversions@7.0.0:
@@ -5135,12 +4915,12 @@ packages:
strip-ansi: 6.0.1
dev: true
- /wrap-ansi@8.1.0:
- resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
- engines: {node: '>=12'}
+ /wrap-ansi@9.0.0:
+ resolution: {integrity: sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==}
+ engines: {node: '>=18'}
dependencies:
ansi-styles: 6.2.1
- string-width: 5.1.2
+ string-width: 7.1.0
strip-ansi: 7.1.0
dev: true
@@ -5178,10 +4958,6 @@ packages:
resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==}
dev: true
- /xxhash-wasm@0.4.2:
- resolution: {integrity: sha512-/eyHVRJQCirEkSZ1agRSCwriMhwlyUcFkXD5TPVSLP+IPzjsqMVzZwdoczLp1SoQU0R3dxz1RpIK+4YNQbCVOA==}
- dev: true
-
/y18n@5.0.8:
resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
engines: {node: '>=10'}
@@ -5195,8 +4971,8 @@ packages:
resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
dev: true
- /yaml@2.3.1:
- resolution: {integrity: sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==}
+ /yaml@2.3.4:
+ resolution: {integrity: sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==}
engines: {node: '>= 14'}
dev: true
@@ -5222,8 +4998,3 @@ packages:
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
engines: {node: '>=10'}
dev: true
-
- /yocto-queue@1.0.0:
- resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==}
- engines: {node: '>=12.20'}
- dev: true
diff --git a/source/Base.ts b/source/Base.ts
index 899e17d..db7dfe1 100644
--- a/source/Base.ts
+++ b/source/Base.ts
@@ -1,25 +1,13 @@
-import { Constructor } from 'web-utility';
+import { Constructor, TypeKeys } from 'web-utility';
import { observable, action } from 'mobx';
-import * as MobX from 'mobx';
-import {
- IDType,
- DataObject,
- NewData,
- InvalidMessage,
- RESTClient,
- toggle
-} from './utility';
+import { IDType, DataObject, NewData, RESTClient } from './utility';
export abstract class BaseModel {
- constructor() {
- MobX.makeObservable?.(this);
- }
-
@observable
- downloading = 0;
+ accessor downloading = 0;
@observable
- uploading = 0;
+ accessor uploading = 0;
@action
clear() {
@@ -27,24 +15,49 @@ export abstract class BaseModel {
}
}
+export function toggle(
+ property: TypeKeys
+) {
+ return (
+ origin: (...data: any[]) => Promise,
+ {}: ClassMethodDecoratorContext
+ ) =>
+ async function (this: T, ...data: any[]) {
+ var value = Reflect.get(this, property);
+
+ Reflect.set(
+ this,
+ property,
+ typeof value === 'number' ? ++value : true
+ );
+
+ try {
+ return await origin.apply(this, data);
+ } finally {
+ value = Reflect.get(this, property);
+
+ Reflect.set(
+ this,
+ property,
+ typeof value === 'number' ? --value : false
+ );
+ }
+ };
+}
+
/**
* This basic class is a middle class, which isn't for direct using
*/
export abstract class BaseListModel extends BaseModel {
- constructor() {
- super();
- MobX.makeObservable?.(this);
- }
-
abstract client: RESTClient;
abstract baseURI: string;
indexKey: keyof D = 'id';
@observable
- currentOne = {} as D;
+ accessor currentOne = {} as D;
- @observable
- validity: InvalidMessage = {};
+ // @observable
+ // validity: InvalidMessage = {};
static createNested(parentId: IDType) {
const Model = this as unknown as Constructor>;
@@ -59,7 +72,7 @@ export abstract class BaseListModel extends BaseModel {
@action
clearCurrent() {
this.currentOne = {} as D;
- this.validity = {};
+ // this.validity = {};
}
clear() {
diff --git a/source/List.ts b/source/List.ts
index 620a031..f4d4d7b 100644
--- a/source/List.ts
+++ b/source/List.ts
@@ -8,8 +8,8 @@ import {
splitArray
} from 'web-utility';
-import { BaseListModel } from './Base';
-import { DataObject, IDType, NewData, toggle } from './utility';
+import { BaseListModel, toggle } from './Base';
+import { DataObject, IDType, NewData } from './utility';
export type Filter = Partial>;
@@ -32,19 +32,19 @@ export abstract class ListModel<
}
@observable
- pageIndex = 0;
+ accessor pageIndex = 0;
@observable
- pageSize = 10;
+ accessor pageSize = 10;
@observable
- filter = {} as F;
+ accessor filter = {} as F;
@observable
- totalCount?: number = undefined;
+ accessor totalCount: number | undefined;
@observable
- pageList: D[][] = [];
+ accessor pageList: D[][] = [];
@computed
get currentPage() {
@@ -83,7 +83,7 @@ export abstract class ListModel<
}
@observable
- statistic: Statistic = {};
+ accessor statistic: Statistic = {};
@action
clearList() {
diff --git a/source/utility/index.ts b/source/utility/index.ts
index 643b450..0e477aa 100644
--- a/source/utility/index.ts
+++ b/source/utility/index.ts
@@ -1,2 +1,3 @@
export * from './type';
-export * from './decorator';
+// disabled without shipped https://github.com/tc39/proposal-class-method-parameter-decorators
+// export * from './decorator';
diff --git a/test/Base.spec.ts b/test/Base.spec.ts
index 4ffdbda..278a015 100644
--- a/test/Base.spec.ts
+++ b/test/Base.spec.ts
@@ -1,7 +1,6 @@
import { sleep } from 'web-utility';
-import { toggle } from '../source/utility';
-import { BaseModel, BaseListModel } from '../source/Base';
+import { toggle, BaseModel, BaseListModel } from '../source/Base';
import { client } from './service';
describe('Base model', () => {
diff --git a/test/decorator.spec.ts b/test/decorator.spec.ts_
similarity index 100%
rename from test/decorator.spec.ts
rename to test/decorator.spec.ts_
diff --git a/tsconfig.json b/tsconfig.json
index 4a032d3..88cb8a0 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -1,14 +1,13 @@
{
"compilerOptions": {
- "target": "ES5",
+ "target": "ES6",
"module": "ES6",
"moduleResolution": "Node",
"esModuleInterop": true,
"downlevelIteration": true,
- "experimentalDecorators": true,
- "emitDecoratorMetadata": true,
+ "useDefineForClassFields": true,
"skipLibCheck": true,
- "lib": ["ES2022", "DOM", "DOM.Iterable"],
+ "lib": ["ES2023", "DOM", "DOM.Iterable"],
"declaration": true,
"outDir": "dist"
},
diff --git a/wrapper/Strapi/.npmrc b/wrapper/Strapi/.npmrc
new file mode 100644
index 0000000..8638f02
--- /dev/null
+++ b/wrapper/Strapi/.npmrc
@@ -0,0 +1 @@
+auto-install-peers = false
diff --git a/wrapper/Strapi/.parcelrc b/wrapper/Strapi/.parcelrc
new file mode 100644
index 0000000..a8f22fc
--- /dev/null
+++ b/wrapper/Strapi/.parcelrc
@@ -0,0 +1,8 @@
+{
+ "extends": "@parcel/config-default",
+ "transformers": {
+ "*.{ts,tsx}": [
+ "@parcel/transformer-typescript-tsc"
+ ]
+ }
+}
diff --git a/wrapper/Strapi/ReadMe.md b/wrapper/Strapi/ReadMe.md
index 25c9f10..ac499ea 100644
--- a/wrapper/Strapi/ReadMe.md
+++ b/wrapper/Strapi/ReadMe.md
@@ -10,8 +10,11 @@
## Version
-1. ~~Strapi v3: [`master`][6] branch~~ (deprecated)
-2. Strapi v4: current branch
+| SemVer | branch | status | ES decorator | MobX | Strapi |
+| :----------: | :------: | :----------: | :----------: | :---------: | :----: |
+| `>=0.5` | `main` | ✅developing | stage-3 | `>=6.11` | v4 |
+| `>=0.3 <0.5` | `main` | ❌deprecated | stage-2 | `>=4 <6.11` | v4 |
+| `<0.3` | `master` | ❌deprecated | stage-2 | `>=4 <6` | v3 |
## Usage
diff --git a/wrapper/Strapi/package.json b/wrapper/Strapi/package.json
index 9804383..ee3354f 100644
--- a/wrapper/Strapi/package.json
+++ b/wrapper/Strapi/package.json
@@ -1,6 +1,6 @@
{
"name": "mobx-strapi",
- "version": "0.4.5",
+ "version": "0.5.0",
"license": "LGPL-3.0",
"author": "shiy2008@gmail.com",
"description": "MobX SDK for Strapi headless CMS",
@@ -20,22 +20,24 @@
"types": "dist/index.d.ts",
"main": "dist/index.js",
"dependencies": {
- "@swc/helpers": "^0.5.2",
- "mobx-restful": "^0.6.11",
+ "@swc/helpers": "^0.5.3",
+ "mobx-restful": "^0.7.0-rc.0",
"qs": "^6.11.2",
- "regenerator-runtime": "^0.14.0",
+ "regenerator-runtime": "^0.14.1",
"web-utility": "^4.1.3"
},
"peerDependencies": {
- "mobx": ">=4 <6"
+ "mobx": ">=6.11"
},
"devDependencies": {
- "@parcel/packager-ts": "~2.9.3",
- "@parcel/transformer-typescript-types": "~2.9.3",
- "@types/qs": "^6.9.8",
- "mobx": "^6.10.2",
- "parcel": "~2.9.3",
- "typescript": "~5.2.2"
+ "@parcel/config-default": "^2.11.0",
+ "@parcel/packager-ts": "~2.11.0",
+ "@parcel/transformer-typescript-tsc": "^2.11.0",
+ "@parcel/transformer-typescript-types": "~2.11.0",
+ "@types/qs": "^6.9.11",
+ "mobx": "^6.12.0",
+ "parcel": "~2.11.0",
+ "typescript": "~5.3.3"
},
"browserslist": "> 0.5%, last 2 versions, not dead, IE 11",
"targets": {
@@ -44,7 +46,7 @@
}
},
"scripts": {
- "build": "rm -rf dist/ && parcel build",
+ "build": "rm -rf .parcel-cache/ dist/ && parcel build",
"prepublishOnly": "npm run build"
}
}
diff --git a/wrapper/Strapi/pnpm-lock.yaml b/wrapper/Strapi/pnpm-lock.yaml
index fe6bbbc..41e20aa 100644
--- a/wrapper/Strapi/pnpm-lock.yaml
+++ b/wrapper/Strapi/pnpm-lock.yaml
@@ -1,53 +1,59 @@
lockfileVersion: '6.0'
settings:
- autoInstallPeers: true
+ autoInstallPeers: false
excludeLinksFromLockfile: false
dependencies:
'@swc/helpers':
- specifier: ^0.5.2
- version: 0.5.2
+ specifier: ^0.5.3
+ version: 0.5.3
mobx-restful:
- specifier: ^0.6.11
- version: 0.6.11(jsdom@22.1.0)(mobx@6.10.2)(typescript@5.2.2)
+ specifier: ^0.7.0-rc.0
+ version: 0.7.0-rc.0(mobx@6.12.0)(typescript@5.3.3)
qs:
specifier: ^6.11.2
version: 6.11.2
regenerator-runtime:
- specifier: ^0.14.0
- version: 0.14.0
+ specifier: ^0.14.1
+ version: 0.14.1
web-utility:
specifier: ^4.1.3
- version: 4.1.3(typescript@5.2.2)
+ version: 4.1.3(typescript@5.3.3)
devDependencies:
+ '@parcel/config-default':
+ specifier: ^2.11.0
+ version: 2.11.0(@parcel/core@2.11.0)(@swc/helpers@0.5.3)(typescript@5.3.3)
'@parcel/packager-ts':
- specifier: ~2.9.3
- version: 2.9.3(@parcel/core@2.9.3)
+ specifier: ~2.11.0
+ version: 2.11.0
+ '@parcel/transformer-typescript-tsc':
+ specifier: ^2.11.0
+ version: 2.11.0(typescript@5.3.3)
'@parcel/transformer-typescript-types':
- specifier: ~2.9.3
- version: 2.9.3(@parcel/core@2.9.3)(typescript@5.2.2)
+ specifier: ~2.11.0
+ version: 2.11.0(typescript@5.3.3)
'@types/qs':
- specifier: ^6.9.8
- version: 6.9.8
+ specifier: ^6.9.11
+ version: 6.9.11
mobx:
- specifier: ^6.10.2
- version: 6.10.2
+ specifier: ^6.12.0
+ version: 6.12.0
parcel:
- specifier: ~2.9.3
- version: 2.9.3(@swc/helpers@0.5.2)(typescript@5.2.2)
+ specifier: ~2.11.0
+ version: 2.11.0(@swc/helpers@0.5.3)(typescript@5.3.3)
typescript:
- specifier: ~5.2.2
- version: 5.2.2
+ specifier: ~5.3.3
+ version: 5.3.3
packages:
- /@babel/code-frame@7.22.13:
- resolution: {integrity: sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==}
+ /@babel/code-frame@7.23.5:
+ resolution: {integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/highlight': 7.22.20
+ '@babel/highlight': 7.23.4
chalk: 2.4.2
dev: true
@@ -56,8 +62,8 @@ packages:
engines: {node: '>=6.9.0'}
dev: true
- /@babel/highlight@7.22.20:
- resolution: {integrity: sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==}
+ /@babel/highlight@7.23.4:
+ resolution: {integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-validator-identifier': 7.22.20
@@ -65,58 +71,58 @@ packages:
js-tokens: 4.0.0
dev: true
- /@lezer/common@1.1.0:
- resolution: {integrity: sha512-XPIN3cYDXsoJI/oDWoR2tD++juVrhgIago9xyKhZ7IhGlzdDM9QgC8D8saKNCz5pindGcznFr2HBSsEQSWnSjw==}
+ /@lezer/common@1.2.1:
+ resolution: {integrity: sha512-yemX0ZD2xS/73llMZIK6KplkjIjf2EvAHcinDi/TfJ9hS25G0388+ClHt6/3but0oOxinTcQHJLDXh6w1crzFQ==}
dev: true
- /@lezer/lr@1.3.12:
- resolution: {integrity: sha512-5nwY1JzCueUdRtlMBnlf1SUi69iGCq2ABq7WQFQMkn/kxPvoACAEnTp4P17CtXxYr7WCwtYPLL2AEvxKPuF1OQ==}
+ /@lezer/lr@1.4.0:
+ resolution: {integrity: sha512-Wst46p51km8gH0ZUmeNrtpRYmdlRHUpN1DQd3GFAyKANi8WVz8c2jHYTf1CVScFaCjQw1iO3ZZdqGDxQPRErTg==}
dependencies:
- '@lezer/common': 1.1.0
+ '@lezer/common': 1.2.1
dev: true
- /@lmdb/lmdb-darwin-arm64@2.7.11:
- resolution: {integrity: sha512-r6+vYq2vKzE+vgj/rNVRMwAevq0+ZR9IeMFIqcSga+wMtMdXQ27KqQ7uS99/yXASg29bos7yHP3yk4x6Iio0lw==}
+ /@lmdb/lmdb-darwin-arm64@2.8.5:
+ resolution: {integrity: sha512-KPDeVScZgA1oq0CiPBcOa3kHIqU+pTOwRFDIhxvmf8CTNvqdZQYp5cCKW0bUk69VygB2PuTiINFWbY78aR2pQw==}
cpu: [arm64]
os: [darwin]
requiresBuild: true
dev: true
optional: true
- /@lmdb/lmdb-darwin-x64@2.7.11:
- resolution: {integrity: sha512-jhj1aB4K8ycRL1HOQT5OtzlqOq70jxUQEWRN9Gqh3TIDN30dxXtiHi6EWF516tzw6v2+3QqhDMJh8O6DtTGG8Q==}
+ /@lmdb/lmdb-darwin-x64@2.8.5:
+ resolution: {integrity: sha512-w/sLhN4T7MW1nB3R/U8WK5BgQLz904wh+/SmA2jD8NnF7BLLoUgflCNxOeSPOWp8geP6nP/+VjWzZVip7rZ1ug==}
cpu: [x64]
os: [darwin]
requiresBuild: true
dev: true
optional: true
- /@lmdb/lmdb-linux-arm64@2.7.11:
- resolution: {integrity: sha512-7xGEfPPbmVJWcY2Nzqo11B9Nfxs+BAsiiaY/OcT4aaTDdykKeCjvKMQJA3KXCtZ1AtiC9ljyGLi+BfUwdulY5A==}
+ /@lmdb/lmdb-linux-arm64@2.8.5:
+ resolution: {integrity: sha512-vtbZRHH5UDlL01TT5jB576Zox3+hdyogvpcbvVJlmU5PdL3c5V7cj1EODdh1CHPksRl+cws/58ugEHi8bcj4Ww==}
cpu: [arm64]
os: [linux]
requiresBuild: true
dev: true
optional: true
- /@lmdb/lmdb-linux-arm@2.7.11:
- resolution: {integrity: sha512-dHfLFVSrw/v5X5lkwp0Vl7+NFpEeEYKfMG2DpdFJnnG1RgHQZngZxCaBagFoaJGykRpd2DYF1AeuXBFrAUAXfw==}
+ /@lmdb/lmdb-linux-arm@2.8.5:
+ resolution: {integrity: sha512-c0TGMbm2M55pwTDIfkDLB6BpIsgxV4PjYck2HiOX+cy/JWiBXz32lYbarPqejKs9Flm7YVAKSILUducU9g2RVg==}
cpu: [arm]
os: [linux]
requiresBuild: true
dev: true
optional: true
- /@lmdb/lmdb-linux-x64@2.7.11:
- resolution: {integrity: sha512-vUKI3JrREMQsXX8q0Eq5zX2FlYCKWMmLiCyyJNfZK0Uyf14RBg9VtB3ObQ41b4swYh2EWaltasWVe93Y8+KDng==}
+ /@lmdb/lmdb-linux-x64@2.8.5:
+ resolution: {integrity: sha512-Xkc8IUx9aEhP0zvgeKy7IQ3ReX2N8N1L0WPcQwnZweWmOuKfwpS3GRIYqLtK5za/w3E60zhFfNdS+3pBZPytqQ==}
cpu: [x64]
os: [linux]
requiresBuild: true
dev: true
optional: true
- /@lmdb/lmdb-win32-x64@2.7.11:
- resolution: {integrity: sha512-BJwkHlSUgtB+Ei52Ai32M1AOMerSlzyIGA/KC4dAGL+GGwVMdwG8HGCOA2TxP3KjhbgDPMYkv7bt/NmOmRIFng==}
+ /@lmdb/lmdb-win32-x64@2.8.5:
+ resolution: {integrity: sha512-4wvrf5BgnR8RpogHhtpCPJMKBmvyZPhhUtEwMJbXh0ni2BucpfF07jlmyM11zRqQ2XIq6PbC2j7W7UCCcm1rRQ==}
cpu: [x64]
os: [win32]
requiresBuild: true
@@ -127,8 +133,8 @@ packages:
resolution: {integrity: sha512-iA7+tyVqfrATAIsIRWQG+a7ZLLD0VaOCKV2Wd/v4mqIU3J9c4jx9p7S0nw1XH3gJCKNBOOwACOPYYSUu9pgT+w==}
engines: {node: '>=12.0.0'}
dependencies:
- '@lezer/common': 1.1.0
- '@lezer/lr': 1.3.12
+ '@lezer/common': 1.2.1
+ '@lezer/lr': 1.4.0
json5: 2.2.3
dev: true
@@ -180,85 +186,86 @@ packages:
dev: true
optional: true
- /@parcel/bundler-default@2.9.3(@parcel/core@2.9.3):
- resolution: {integrity: sha512-JjJK8dq39/UO/MWI/4SCbB1t/qgpQRFnFDetAAAezQ8oN++b24u1fkMDa/xqQGjbuPmGeTds5zxGgYs7id7PYg==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/bundler-default@2.11.0:
+ resolution: {integrity: sha512-ZIs0865Lp871ZK83k5I9L4DeeE26muNMrHa7j8bvls6fKBJKAn8djrhfU4XOLyziU4aAOobcPwXU0+npWqs52g==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/diagnostic': 2.9.3
- '@parcel/graph': 2.9.3
- '@parcel/hash': 2.9.3
- '@parcel/plugin': 2.9.3(@parcel/core@2.9.3)
- '@parcel/utils': 2.9.3
+ '@parcel/diagnostic': 2.11.0
+ '@parcel/graph': 3.1.0
+ '@parcel/plugin': 2.11.0
+ '@parcel/rust': 2.11.0
+ '@parcel/utils': 2.11.0
nullthrows: 1.1.1
transitivePeerDependencies:
- '@parcel/core'
dev: true
- /@parcel/cache@2.9.3(@parcel/core@2.9.3):
- resolution: {integrity: sha512-Bj/H2uAJJSXtysG7E/x4EgTrE2hXmm7td/bc97K8M9N7+vQjxf7xb0ebgqe84ePVMkj4MVQSMEJkEucXVx4b0Q==}
+ /@parcel/cache@2.11.0(@parcel/core@2.11.0):
+ resolution: {integrity: sha512-RSSkGNjO00lJPyftzaC9eaNVs4jMjPSAm0VJNWQ9JSm2n4A9BzQtTFAt1vhJOzzW1UsQvvBge9DdfkB7a2gIOw==}
engines: {node: '>= 12.0.0'}
peerDependencies:
- '@parcel/core': ^2.9.3
+ '@parcel/core': ^2.11.0
dependencies:
- '@parcel/core': 2.9.3
- '@parcel/fs': 2.9.3(@parcel/core@2.9.3)
- '@parcel/logger': 2.9.3
- '@parcel/utils': 2.9.3
- lmdb: 2.7.11
+ '@parcel/core': 2.11.0
+ '@parcel/fs': 2.11.0(@parcel/core@2.11.0)
+ '@parcel/logger': 2.11.0
+ '@parcel/utils': 2.11.0
+ lmdb: 2.8.5
dev: true
- /@parcel/codeframe@2.9.3:
- resolution: {integrity: sha512-z7yTyD6h3dvduaFoHpNqur74/2yDWL++33rjQjIjCaXREBN6dKHoMGMizzo/i4vbiI1p9dDox2FIDEHCMQxqdA==}
+ /@parcel/codeframe@2.11.0:
+ resolution: {integrity: sha512-YHs9g/i5af/sd/JrWAojU9YFbKffcJ3Tx2EJaK0ME8OJsye91UaI/3lxSUYLmJG9e4WLNJtqci8V5FBMz//ZPg==}
engines: {node: '>= 12.0.0'}
dependencies:
chalk: 4.1.2
dev: true
- /@parcel/compressor-raw@2.9.3(@parcel/core@2.9.3):
- resolution: {integrity: sha512-jz3t4/ICMsHEqgiTmv5i1DJva2k5QRpZlBELVxfY+QElJTVe8edKJ0TiKcBxh2hx7sm4aUigGmp7JiqqHRRYmA==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/compressor-raw@2.11.0:
+ resolution: {integrity: sha512-RArhBPRTCfz77soX2IECH09NUd76UBWujXiPRcXGPIHK+C3L1cRuzsNcA39QeSb3thz3b99JcozMJ1nkC2Bsgw==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/plugin': 2.9.3(@parcel/core@2.9.3)
+ '@parcel/plugin': 2.11.0
transitivePeerDependencies:
- '@parcel/core'
dev: true
- /@parcel/config-default@2.9.3(@parcel/core@2.9.3)(@swc/helpers@0.5.2)(typescript@5.2.2):
- resolution: {integrity: sha512-tqN5tF7QnVABDZAu76co5E6N8mA9n8bxiWdK4xYyINYFIEHgX172oRTqXTnhEMjlMrdmASxvnGlbaPBaVnrCTw==}
+ /@parcel/config-default@2.11.0(@parcel/core@2.11.0)(@swc/helpers@0.5.3)(typescript@5.3.3):
+ resolution: {integrity: sha512-1e2+qcZkm5/0f4eI20p/DemcYiSxq9d/eyjpTXA7PulJaHbL1wonwUAuy3mvnAvDnLOJmAk/obDVgX1ZfxMGtg==}
peerDependencies:
- '@parcel/core': ^2.9.3
- dependencies:
- '@parcel/bundler-default': 2.9.3(@parcel/core@2.9.3)
- '@parcel/compressor-raw': 2.9.3(@parcel/core@2.9.3)
- '@parcel/core': 2.9.3
- '@parcel/namer-default': 2.9.3(@parcel/core@2.9.3)
- '@parcel/optimizer-css': 2.9.3(@parcel/core@2.9.3)
- '@parcel/optimizer-htmlnano': 2.9.3(@parcel/core@2.9.3)(typescript@5.2.2)
- '@parcel/optimizer-image': 2.9.3(@parcel/core@2.9.3)
- '@parcel/optimizer-svgo': 2.9.3(@parcel/core@2.9.3)
- '@parcel/optimizer-swc': 2.9.3(@parcel/core@2.9.3)(@swc/helpers@0.5.2)
- '@parcel/packager-css': 2.9.3(@parcel/core@2.9.3)
- '@parcel/packager-html': 2.9.3(@parcel/core@2.9.3)
- '@parcel/packager-js': 2.9.3(@parcel/core@2.9.3)
- '@parcel/packager-raw': 2.9.3(@parcel/core@2.9.3)
- '@parcel/packager-svg': 2.9.3(@parcel/core@2.9.3)
- '@parcel/reporter-dev-server': 2.9.3(@parcel/core@2.9.3)
- '@parcel/resolver-default': 2.9.3(@parcel/core@2.9.3)
- '@parcel/runtime-browser-hmr': 2.9.3(@parcel/core@2.9.3)
- '@parcel/runtime-js': 2.9.3(@parcel/core@2.9.3)
- '@parcel/runtime-react-refresh': 2.9.3(@parcel/core@2.9.3)
- '@parcel/runtime-service-worker': 2.9.3(@parcel/core@2.9.3)
- '@parcel/transformer-babel': 2.9.3(@parcel/core@2.9.3)
- '@parcel/transformer-css': 2.9.3(@parcel/core@2.9.3)
- '@parcel/transformer-html': 2.9.3(@parcel/core@2.9.3)
- '@parcel/transformer-image': 2.9.3(@parcel/core@2.9.3)
- '@parcel/transformer-js': 2.9.3(@parcel/core@2.9.3)
- '@parcel/transformer-json': 2.9.3(@parcel/core@2.9.3)
- '@parcel/transformer-postcss': 2.9.3(@parcel/core@2.9.3)
- '@parcel/transformer-posthtml': 2.9.3(@parcel/core@2.9.3)
- '@parcel/transformer-raw': 2.9.3(@parcel/core@2.9.3)
- '@parcel/transformer-react-refresh-wrap': 2.9.3(@parcel/core@2.9.3)
- '@parcel/transformer-svg': 2.9.3(@parcel/core@2.9.3)
+ '@parcel/core': ^2.11.0
+ dependencies:
+ '@parcel/bundler-default': 2.11.0
+ '@parcel/compressor-raw': 2.11.0
+ '@parcel/core': 2.11.0
+ '@parcel/namer-default': 2.11.0
+ '@parcel/optimizer-css': 2.11.0
+ '@parcel/optimizer-htmlnano': 2.11.0(typescript@5.3.3)
+ '@parcel/optimizer-image': 2.11.0(@parcel/core@2.11.0)
+ '@parcel/optimizer-svgo': 2.11.0
+ '@parcel/optimizer-swc': 2.11.0(@swc/helpers@0.5.3)
+ '@parcel/packager-css': 2.11.0
+ '@parcel/packager-html': 2.11.0
+ '@parcel/packager-js': 2.11.0
+ '@parcel/packager-raw': 2.11.0
+ '@parcel/packager-svg': 2.11.0
+ '@parcel/packager-wasm': 2.11.0
+ '@parcel/reporter-dev-server': 2.11.0
+ '@parcel/resolver-default': 2.11.0(@parcel/core@2.11.0)
+ '@parcel/runtime-browser-hmr': 2.11.0
+ '@parcel/runtime-js': 2.11.0
+ '@parcel/runtime-react-refresh': 2.11.0
+ '@parcel/runtime-service-worker': 2.11.0
+ '@parcel/transformer-babel': 2.11.0
+ '@parcel/transformer-css': 2.11.0
+ '@parcel/transformer-html': 2.11.0
+ '@parcel/transformer-image': 2.11.0(@parcel/core@2.11.0)
+ '@parcel/transformer-js': 2.11.0(@parcel/core@2.11.0)
+ '@parcel/transformer-json': 2.11.0
+ '@parcel/transformer-postcss': 2.11.0
+ '@parcel/transformer-posthtml': 2.11.0
+ '@parcel/transformer-raw': 2.11.0
+ '@parcel/transformer-react-refresh-wrap': 2.11.0
+ '@parcel/transformer-svg': 2.11.0
transitivePeerDependencies:
- '@swc/helpers'
- cssnano
@@ -271,144 +278,133 @@ packages:
- uncss
dev: true
- /@parcel/core@2.9.3:
- resolution: {integrity: sha512-4KlM1Zr/jpsqWuMXr2zmGsaOUs1zMMFh9vfCNKRZkptf+uk8I3sugHbNdo+F5B+4e2yMuOEb1zgAmvJLeuH6ww==}
+ /@parcel/core@2.11.0:
+ resolution: {integrity: sha512-Npe0S6hVaqWEwRL+HI7gtOYOaoE5bJQZTgUDhsDoppWbau51jOlRYOZTXuvRK/jxXnze4/S1sdM24xBYAQ5qkw==}
engines: {node: '>= 12.0.0'}
dependencies:
'@mischnic/json-sourcemap': 0.1.1
- '@parcel/cache': 2.9.3(@parcel/core@2.9.3)
- '@parcel/diagnostic': 2.9.3
- '@parcel/events': 2.9.3
- '@parcel/fs': 2.9.3(@parcel/core@2.9.3)
- '@parcel/graph': 2.9.3
- '@parcel/hash': 2.9.3
- '@parcel/logger': 2.9.3
- '@parcel/package-manager': 2.9.3(@parcel/core@2.9.3)
- '@parcel/plugin': 2.9.3(@parcel/core@2.9.3)
- '@parcel/profiler': 2.9.3
+ '@parcel/cache': 2.11.0(@parcel/core@2.11.0)
+ '@parcel/diagnostic': 2.11.0
+ '@parcel/events': 2.11.0
+ '@parcel/fs': 2.11.0(@parcel/core@2.11.0)
+ '@parcel/graph': 3.1.0
+ '@parcel/logger': 2.11.0
+ '@parcel/package-manager': 2.11.0(@parcel/core@2.11.0)
+ '@parcel/plugin': 2.11.0
+ '@parcel/profiler': 2.11.0
+ '@parcel/rust': 2.11.0
'@parcel/source-map': 2.1.1
- '@parcel/types': 2.9.3(@parcel/core@2.9.3)
- '@parcel/utils': 2.9.3
- '@parcel/workers': 2.9.3(@parcel/core@2.9.3)
+ '@parcel/types': 2.11.0
+ '@parcel/utils': 2.11.0
+ '@parcel/workers': 2.11.0(@parcel/core@2.11.0)
abortcontroller-polyfill: 1.7.5
base-x: 3.0.9
- browserslist: 4.22.1
+ browserslist: 4.22.3
clone: 2.1.2
dotenv: 7.0.0
dotenv-expand: 5.1.0
json5: 2.2.3
- msgpackr: 1.9.9
+ msgpackr: 1.10.1
nullthrows: 1.1.1
semver: 7.5.4
dev: true
- /@parcel/diagnostic@2.9.3:
- resolution: {integrity: sha512-6jxBdyB3D7gP4iE66ghUGntWt2v64E6EbD4AetZk+hNJpgudOOPsKTovcMi/i7I4V0qD7WXSF4tvkZUoac0jwA==}
+ /@parcel/diagnostic@2.11.0:
+ resolution: {integrity: sha512-4dJmOXVL5YGGQRRsQosQbSRONBcboB71mSwaeaEgz3pPdq9QXVPLACkGe/jTXSqa3OnAHu3g5vQLpE1g5xqBqw==}
engines: {node: '>= 12.0.0'}
dependencies:
'@mischnic/json-sourcemap': 0.1.1
nullthrows: 1.1.1
dev: true
- /@parcel/events@2.9.3:
- resolution: {integrity: sha512-K0Scx+Bx9f9p1vuShMzNwIgiaZUkxEnexaKYHYemJrM7pMAqxIuIqhnvwurRCsZOVLUJPDDNJ626cWTc5vIq+A==}
+ /@parcel/events@2.11.0:
+ resolution: {integrity: sha512-K6SOjOrQsz1GdNl2qKBktq7KJ3Q3yxK8WXdmQYo10wG39dr051xtMb38aqieTp4eVhL8Yaq2iJgGkdr11fuBnA==}
engines: {node: '>= 12.0.0'}
dev: true
- /@parcel/fs-search@2.9.3:
- resolution: {integrity: sha512-nsNz3bsOpwS+jphcd+XjZL3F3PDq9lik0O8HPm5f6LYkqKWT+u/kgQzA8OkAHCR3q96LGiHxUywHPEBc27vI4Q==}
- engines: {node: '>= 12.0.0'}
- dev: true
-
- /@parcel/fs@2.9.3(@parcel/core@2.9.3):
- resolution: {integrity: sha512-/PrRKgCRw22G7rNPSpgN3Q+i2nIkZWuvIOAdMG4KWXC4XLp8C9jarNaWd5QEQ75amjhQSl3oUzABzkdCtkKrgg==}
+ /@parcel/fs@2.11.0(@parcel/core@2.11.0):
+ resolution: {integrity: sha512-zWckdnnovdrgdFX4QYuQV4bbKCsh6IYCkmwaB4yp47rhw1MP0lkBINLt4yFPHBxWXOpElCfxjL+z69c9xJQRBQ==}
engines: {node: '>= 12.0.0'}
peerDependencies:
- '@parcel/core': ^2.9.3
+ '@parcel/core': ^2.11.0
dependencies:
- '@parcel/core': 2.9.3
- '@parcel/fs-search': 2.9.3
- '@parcel/types': 2.9.3(@parcel/core@2.9.3)
- '@parcel/utils': 2.9.3
- '@parcel/watcher': 2.3.0
- '@parcel/workers': 2.9.3(@parcel/core@2.9.3)
+ '@parcel/core': 2.11.0
+ '@parcel/rust': 2.11.0
+ '@parcel/types': 2.11.0
+ '@parcel/utils': 2.11.0
+ '@parcel/watcher': 2.4.0
+ '@parcel/workers': 2.11.0(@parcel/core@2.11.0)
dev: true
- /@parcel/graph@2.9.3:
- resolution: {integrity: sha512-3LmRJmF8+OprAr6zJT3X2s8WAhLKkrhi6RsFlMWHifGU5ED1PFcJWFbOwJvSjcAhMQJP0fErcFIK1Ludv3Vm3g==}
+ /@parcel/graph@3.1.0:
+ resolution: {integrity: sha512-d1dTW5C7A52HgDtoXlyvlET1ypSlmIxSIZOJ1xp3R9L9hgo3h1u3jHNyaoTe/WPkGVe2QnFxh0h+UibVJhu9vg==}
engines: {node: '>= 12.0.0'}
dependencies:
nullthrows: 1.1.1
dev: true
- /@parcel/hash@2.9.3:
- resolution: {integrity: sha512-qlH5B85XLzVAeijgKPjm1gQu35LoRYX/8igsjnN8vOlbc3O8BYAUIutU58fbHbtE8MJPbxQQUw7tkTjeoujcQQ==}
- engines: {node: '>= 12.0.0'}
- dependencies:
- xxhash-wasm: 0.4.2
- dev: true
-
- /@parcel/logger@2.9.3:
- resolution: {integrity: sha512-5FNBszcV6ilGFcijEOvoNVG6IUJGsnMiaEnGQs7Fvc1dktTjEddnoQbIYhcSZL63wEmzBZOgkT5yDMajJ/41jw==}
+ /@parcel/logger@2.11.0:
+ resolution: {integrity: sha512-HtMEdCq3LKnvv4T2CIskcqlf2gpBvHMm3pkeUFB/hc/7hW/hE1k6/HA2VOQvc0tBsaMpmEx7PCrfrH56usQSyA==}
engines: {node: '>= 12.0.0'}
dependencies:
- '@parcel/diagnostic': 2.9.3
- '@parcel/events': 2.9.3
+ '@parcel/diagnostic': 2.11.0
+ '@parcel/events': 2.11.0
dev: true
- /@parcel/markdown-ansi@2.9.3:
- resolution: {integrity: sha512-/Q4X8F2aN8UNjAJrQ5NfK2OmZf6shry9DqetUSEndQ0fHonk78WKt6LT0zSKEBEW/bB/bXk6mNMsCup6L8ibjQ==}
+ /@parcel/markdown-ansi@2.11.0:
+ resolution: {integrity: sha512-YA60EWbXi6cLOIzcwRC2wijotPauOGQbUi0vSbu0O6/mjQ68kWCMGz0hwZjDRQcPypQVJEIvTgMymLbvumxwhg==}
engines: {node: '>= 12.0.0'}
dependencies:
chalk: 4.1.2
dev: true
- /@parcel/namer-default@2.9.3(@parcel/core@2.9.3):
- resolution: {integrity: sha512-1ynFEcap48/Ngzwwn318eLYpLUwijuuZoXQPCsEQ21OOIOtfhFQJaPwXTsw6kRitshKq76P2aafE0BioGSqxcA==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/namer-default@2.11.0:
+ resolution: {integrity: sha512-DEwBSKSClg4DA2xAWimYkw9bFi7MFb9TdT7/TYZStMTsfYHPWOyyjGR7aVr3Ra4wNb+XX6g4rR41yp3HD6KO7A==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/diagnostic': 2.9.3
- '@parcel/plugin': 2.9.3(@parcel/core@2.9.3)
+ '@parcel/diagnostic': 2.11.0
+ '@parcel/plugin': 2.11.0
nullthrows: 1.1.1
transitivePeerDependencies:
- '@parcel/core'
dev: true
- /@parcel/node-resolver-core@3.0.3(@parcel/core@2.9.3):
- resolution: {integrity: sha512-AjxNcZVHHJoNT/A99PKIdFtwvoze8PAiC3yz8E/dRggrDIOboUEodeQYV5Aq++aK76uz/iOP0tST2T8A5rhb1A==}
+ /@parcel/node-resolver-core@3.2.0(@parcel/core@2.11.0):
+ resolution: {integrity: sha512-XJRSxCkNbGFWjfmwFdcQZ/qlzWZd35qLtvLz2va8euGL7M5OMEQOv7dsvEhl0R+CC2zcnfFzZwxk78q6ezs8AQ==}
engines: {node: '>= 12.0.0'}
dependencies:
'@mischnic/json-sourcemap': 0.1.1
- '@parcel/diagnostic': 2.9.3
- '@parcel/fs': 2.9.3(@parcel/core@2.9.3)
- '@parcel/utils': 2.9.3
+ '@parcel/diagnostic': 2.11.0
+ '@parcel/fs': 2.11.0(@parcel/core@2.11.0)
+ '@parcel/rust': 2.11.0
+ '@parcel/utils': 2.11.0
nullthrows: 1.1.1
semver: 7.5.4
transitivePeerDependencies:
- '@parcel/core'
dev: true
- /@parcel/optimizer-css@2.9.3(@parcel/core@2.9.3):
- resolution: {integrity: sha512-RK1QwcSdWDNUsFvuLy0hgnYKtPQebzCb0vPPzqs6LhL+vqUu9utOyRycGaQffHCkHVQP6zGlN+KFssd7YtFGhA==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/optimizer-css@2.11.0:
+ resolution: {integrity: sha512-bV97PRxshHV3dMwOpLRgcP1QNhrVWh6VVDfm2gmWULpvsjoykcPS6vrCFksY5CpQsSvNHqJBzQjWS8FubUI76w==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/diagnostic': 2.9.3
- '@parcel/plugin': 2.9.3(@parcel/core@2.9.3)
+ '@parcel/diagnostic': 2.11.0
+ '@parcel/plugin': 2.11.0
'@parcel/source-map': 2.1.1
- '@parcel/utils': 2.9.3
- browserslist: 4.22.1
- lightningcss: 1.22.0
+ '@parcel/utils': 2.11.0
+ browserslist: 4.22.3
+ lightningcss: 1.23.0
nullthrows: 1.1.1
transitivePeerDependencies:
- '@parcel/core'
dev: true
- /@parcel/optimizer-htmlnano@2.9.3(@parcel/core@2.9.3)(typescript@5.2.2):
- resolution: {integrity: sha512-9g/KBck3c6DokmJfvJ5zpHFBiCSolaGrcsTGx8C3YPdCTVTI9P1TDCwUxvAr4LjpcIRSa82wlLCI+nF6sSgxKA==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/optimizer-htmlnano@2.11.0(typescript@5.3.3):
+ resolution: {integrity: sha512-c20pz4EFF5DNFmqYgptlIj49eT6xjGLkDTdHH3RRzxKovuSXWfYSPs3GED3ZsjVuQyjNQif+/MAk9547F7hrdQ==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/plugin': 2.9.3(@parcel/core@2.9.3)
- htmlnano: 2.0.4(svgo@2.8.0)(typescript@5.2.2)
+ '@parcel/plugin': 2.11.0
+ htmlnano: 2.1.0(svgo@2.8.0)(typescript@5.3.3)
nullthrows: 1.1.1
posthtml: 0.16.6
svgo: 2.8.0
@@ -424,242 +420,255 @@ packages:
- uncss
dev: true
- /@parcel/optimizer-image@2.9.3(@parcel/core@2.9.3):
- resolution: {integrity: sha512-530YzthE7kmecnNhPbkAK+26yQNt69pfJrgE0Ev0BZaM1Wu2+33nki7o8qvkTkikhPrurEJLGIXt1qKmbKvCbA==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/optimizer-image@2.11.0(@parcel/core@2.11.0):
+ resolution: {integrity: sha512-jCaJww5QFG2GuNzYW8nlSW+Ea+Cv47TRnOPJNquFIajgfTLJ5ddsWbaNal0GQsL8yNiCBKWd1AV4W0RH9tG0Jg==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
peerDependencies:
- '@parcel/core': ^2.9.3
+ '@parcel/core': ^2.11.0
dependencies:
- '@parcel/core': 2.9.3
- '@parcel/diagnostic': 2.9.3
- '@parcel/plugin': 2.9.3(@parcel/core@2.9.3)
- '@parcel/utils': 2.9.3
- '@parcel/workers': 2.9.3(@parcel/core@2.9.3)
+ '@parcel/core': 2.11.0
+ '@parcel/diagnostic': 2.11.0
+ '@parcel/plugin': 2.11.0
+ '@parcel/rust': 2.11.0
+ '@parcel/utils': 2.11.0
+ '@parcel/workers': 2.11.0(@parcel/core@2.11.0)
dev: true
- /@parcel/optimizer-svgo@2.9.3(@parcel/core@2.9.3):
- resolution: {integrity: sha512-ytQS0wY5JJhWU4mL0wfhYDUuHcfuw+Gy2+JcnTm1t1AZXHlOTbU6EzRWNqBShsgXjvdrQQXizAe3B6GFFlFJVQ==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/optimizer-svgo@2.11.0:
+ resolution: {integrity: sha512-TQpvfBhjV2IsuFHXUolbDS6XWB3DDR2rYTlqlA8LMmuOY7jQd9Bnkl4JnapzWm/bRuzRlzdGjjVCPGL8iShFvA==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/diagnostic': 2.9.3
- '@parcel/plugin': 2.9.3(@parcel/core@2.9.3)
- '@parcel/utils': 2.9.3
+ '@parcel/diagnostic': 2.11.0
+ '@parcel/plugin': 2.11.0
+ '@parcel/utils': 2.11.0
svgo: 2.8.0
transitivePeerDependencies:
- '@parcel/core'
dev: true
- /@parcel/optimizer-swc@2.9.3(@parcel/core@2.9.3)(@swc/helpers@0.5.2):
- resolution: {integrity: sha512-GQINNeqtdpL1ombq/Cpwi6IBk02wKJ/JJbYbyfHtk8lxlq13soenpwOlzJ5T9D2fdG+FUhai9NxpN5Ss4lNoAg==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/optimizer-swc@2.11.0(@swc/helpers@0.5.3):
+ resolution: {integrity: sha512-ftf42F3JyZxJb6nnLlgNGyNQ273YOla4dFGH/tWC8iTwObHUpWe7cMbCGcrSJBvAlsLkZfLpFNAXFxUgxdKyHQ==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/diagnostic': 2.9.3
- '@parcel/plugin': 2.9.3(@parcel/core@2.9.3)
+ '@parcel/diagnostic': 2.11.0
+ '@parcel/plugin': 2.11.0
'@parcel/source-map': 2.1.1
- '@parcel/utils': 2.9.3
- '@swc/core': 1.3.91(@swc/helpers@0.5.2)
+ '@parcel/utils': 2.11.0
+ '@swc/core': 1.3.107(@swc/helpers@0.5.3)
nullthrows: 1.1.1
transitivePeerDependencies:
- '@parcel/core'
- '@swc/helpers'
dev: true
- /@parcel/package-manager@2.9.3(@parcel/core@2.9.3):
- resolution: {integrity: sha512-NH6omcNTEupDmW4Lm1e4NUYBjdqkURxgZ4CNESESInHJe6tblVhNB8Rpr1ar7zDar7cly9ILr8P6N3Ei7bTEjg==}
+ /@parcel/package-manager@2.11.0(@parcel/core@2.11.0):
+ resolution: {integrity: sha512-QzdsrUYlAwIzb8by7WJjqYnbR1MoMKWbtE1MXUeYsZbFusV8B6pOH+lwqNJKS/BFtddZMRPYFueZS2N2fwzjig==}
engines: {node: '>= 12.0.0'}
peerDependencies:
- '@parcel/core': ^2.9.3
- dependencies:
- '@parcel/core': 2.9.3
- '@parcel/diagnostic': 2.9.3
- '@parcel/fs': 2.9.3(@parcel/core@2.9.3)
- '@parcel/logger': 2.9.3
- '@parcel/node-resolver-core': 3.0.3(@parcel/core@2.9.3)
- '@parcel/types': 2.9.3(@parcel/core@2.9.3)
- '@parcel/utils': 2.9.3
- '@parcel/workers': 2.9.3(@parcel/core@2.9.3)
+ '@parcel/core': ^2.11.0
+ dependencies:
+ '@parcel/core': 2.11.0
+ '@parcel/diagnostic': 2.11.0
+ '@parcel/fs': 2.11.0(@parcel/core@2.11.0)
+ '@parcel/logger': 2.11.0
+ '@parcel/node-resolver-core': 3.2.0(@parcel/core@2.11.0)
+ '@parcel/types': 2.11.0
+ '@parcel/utils': 2.11.0
+ '@parcel/workers': 2.11.0(@parcel/core@2.11.0)
semver: 7.5.4
dev: true
- /@parcel/packager-css@2.9.3(@parcel/core@2.9.3):
- resolution: {integrity: sha512-mePiWiYZOULY6e1RdAIJyRoYqXqGci0srOaVZYaP7mnrzvJgA63kaZFFsDiEWghunQpMUuUjM2x/vQVHzxmhKQ==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/packager-css@2.11.0:
+ resolution: {integrity: sha512-AyIxsp4eL8c22vp2oO2hSRnr3hSVNkARNZc9DG6uXxCc2Is5tUEX0I4PwxWnAx0EI44l+3zX/o414zT8yV9wwQ==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/diagnostic': 2.9.3
- '@parcel/plugin': 2.9.3(@parcel/core@2.9.3)
+ '@parcel/diagnostic': 2.11.0
+ '@parcel/plugin': 2.11.0
'@parcel/source-map': 2.1.1
- '@parcel/utils': 2.9.3
+ '@parcel/utils': 2.11.0
nullthrows: 1.1.1
transitivePeerDependencies:
- '@parcel/core'
dev: true
- /@parcel/packager-html@2.9.3(@parcel/core@2.9.3):
- resolution: {integrity: sha512-0Ex+O0EaZf9APNERRNGgGto02hFJ6f5RQEvRWBK55WAV1rXeU+kpjC0c0qZvnUaUtXfpWMsEBkevJCwDkUMeMg==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/packager-html@2.11.0:
+ resolution: {integrity: sha512-ho5AQ70naTV8IqkKIbKtK+jsXQ5TJfFgtBvmJlyB3YydRMbIc+3g4G0xgIvf15V4uCMw9Md0Sv1W65nQXHPQoA==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/plugin': 2.9.3(@parcel/core@2.9.3)
- '@parcel/types': 2.9.3(@parcel/core@2.9.3)
- '@parcel/utils': 2.9.3
+ '@parcel/plugin': 2.11.0
+ '@parcel/types': 2.11.0
+ '@parcel/utils': 2.11.0
nullthrows: 1.1.1
posthtml: 0.16.6
transitivePeerDependencies:
- '@parcel/core'
dev: true
- /@parcel/packager-js@2.9.3(@parcel/core@2.9.3):
- resolution: {integrity: sha512-V5xwkoE3zQ3R+WqAWhA1KGQ791FvJeW6KonOlMI1q76Djjgox68hhObqcLu66AmYNhR2R/wUpkP18hP2z8dSFw==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/packager-js@2.11.0:
+ resolution: {integrity: sha512-SxjCsd0xQfg5H73YtVJj9VOpr9s0rwMsSoeykjkatbkEla9NsZajsUkd/bfYf+/0WvEKOrB8oUBo15HkGOgKug==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/diagnostic': 2.9.3
- '@parcel/hash': 2.9.3
- '@parcel/plugin': 2.9.3(@parcel/core@2.9.3)
+ '@parcel/diagnostic': 2.11.0
+ '@parcel/plugin': 2.11.0
+ '@parcel/rust': 2.11.0
'@parcel/source-map': 2.1.1
- '@parcel/utils': 2.9.3
- globals: 13.22.0
+ '@parcel/types': 2.11.0
+ '@parcel/utils': 2.11.0
+ globals: 13.24.0
nullthrows: 1.1.1
transitivePeerDependencies:
- '@parcel/core'
dev: true
- /@parcel/packager-raw@2.9.3(@parcel/core@2.9.3):
- resolution: {integrity: sha512-oPQTNoYanQ2DdJyL61uPYK2py83rKOT8YVh2QWAx0zsSli6Kiy64U3+xOCYWgDVCrHw9+9NpQMuAdSiFg4cq8g==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/packager-raw@2.11.0:
+ resolution: {integrity: sha512-2/0JQ8DZrz7cVNXwD6OYoUUtSSnlr4dsz8ZkpFDKsBJhvMHtC78Sq+1EDixDGOMiUcalSEjNsoHtkpq9uNh+Xw==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/plugin': 2.9.3(@parcel/core@2.9.3)
+ '@parcel/plugin': 2.11.0
transitivePeerDependencies:
- '@parcel/core'
dev: true
- /@parcel/packager-svg@2.9.3(@parcel/core@2.9.3):
- resolution: {integrity: sha512-p/Ya6UO9DAkaCUFxfFGyeHZDp9YPAlpdnh1OChuwqSFOXFjjeXuoK4KLT+ZRalVBo2Jo8xF70oKMZw4MVvaL7Q==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/packager-svg@2.11.0:
+ resolution: {integrity: sha512-2wQBkzLwcaWFGWz8TP+bgsXgiueWPzrjKsWugWdDfq0FbXh8XVeR/599qnus3RFHZy4cH6L6yq/7zxcljtxK8A==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/plugin': 2.9.3(@parcel/core@2.9.3)
- '@parcel/types': 2.9.3(@parcel/core@2.9.3)
- '@parcel/utils': 2.9.3
+ '@parcel/plugin': 2.11.0
+ '@parcel/types': 2.11.0
+ '@parcel/utils': 2.11.0
posthtml: 0.16.6
transitivePeerDependencies:
- '@parcel/core'
dev: true
- /@parcel/packager-ts@2.9.3(@parcel/core@2.9.3):
- resolution: {integrity: sha512-Vd9dm1FqaFDw/kWCh95zgGS08HvIpSLg5Aa+AIhFiM0G+kpRSItcBSNJVwC7JKmLk1rmQhmQKoCKX26+nvyAzA==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/packager-ts@2.11.0:
+ resolution: {integrity: sha512-j9TxAz65nHYo/c2aEwGcPUE2F6qOenr6vm1YR8jHnahrW9LEPXkZjSJA1i85Hs+ihAQKpSatMJzO5RojBgcevw==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/plugin': 2.9.3(@parcel/core@2.9.3)
+ '@parcel/plugin': 2.11.0
transitivePeerDependencies:
- '@parcel/core'
dev: true
- /@parcel/plugin@2.9.3(@parcel/core@2.9.3):
- resolution: {integrity: sha512-qN85Gqr2GMuxX1dT1mnuO9hOcvlEv1lrYrCxn7CJN2nUhbwcfG+LEvcrCzCOJ6XtIHm+ZBV9h9p7FfoPLvpw+g==}
+ /@parcel/packager-wasm@2.11.0:
+ resolution: {integrity: sha512-tTy4EbDXeeiZ0oB7L2FWaHSD1mbmYZP6R5HXqkvc5dECGUKPU5Jz6ek2C5AM+HfQdQLKXPQ/Xw3eJnI/AmctVg==}
+ engines: {node: '>=12.0.0', parcel: ^2.11.0}
+ dependencies:
+ '@parcel/plugin': 2.11.0
+ transitivePeerDependencies:
+ - '@parcel/core'
+ dev: true
+
+ /@parcel/plugin@2.11.0:
+ resolution: {integrity: sha512-9npuKBlhnPn7oeUpLJGecceg16GkXbvzbr6MNSZiHhkx3IBeITHQXlZnp2zAjUOFreNsYOfifwEF2S4KsARfBQ==}
engines: {node: '>= 12.0.0'}
dependencies:
- '@parcel/types': 2.9.3(@parcel/core@2.9.3)
+ '@parcel/types': 2.11.0
transitivePeerDependencies:
- '@parcel/core'
dev: true
- /@parcel/profiler@2.9.3:
- resolution: {integrity: sha512-pyHc9lw8VZDfgZoeZWZU9J0CVEv1Zw9O5+e0DJPDPHuXJYr72ZAOhbljtU3owWKAeW+++Q2AZWkbUGEOjI/e6g==}
+ /@parcel/profiler@2.11.0:
+ resolution: {integrity: sha512-s10SS09prOdwnaAcjK8M5zO8o+zPJJW5oOqXPNdf6KH4NGD/ue7iOk2xM8QLw6ulSwxE7NDt++lyfW3AXgCZwg==}
engines: {node: '>= 12.0.0'}
dependencies:
- '@parcel/diagnostic': 2.9.3
- '@parcel/events': 2.9.3
+ '@parcel/diagnostic': 2.11.0
+ '@parcel/events': 2.11.0
chrome-trace-event: 1.0.3
dev: true
- /@parcel/reporter-cli@2.9.3(@parcel/core@2.9.3):
- resolution: {integrity: sha512-pZiEvQpuXFuQBafMHxkDmwH8CnnK9sWHwa3bSbsnt385aUahtE8dpY0LKt+K1zfB6degKoczN6aWVj9WycQuZQ==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/reporter-cli@2.11.0:
+ resolution: {integrity: sha512-hY0iO0f+LifgJHDUIjGQJnxLFSkk2jlbfy+kIaft5oI3/IM+UljecfGO+14XH8mYlqRXXPsT09TJe8ZKQzp4ZQ==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/plugin': 2.9.3(@parcel/core@2.9.3)
- '@parcel/types': 2.9.3(@parcel/core@2.9.3)
- '@parcel/utils': 2.9.3
+ '@parcel/plugin': 2.11.0
+ '@parcel/types': 2.11.0
+ '@parcel/utils': 2.11.0
chalk: 4.1.2
+ cli-progress: 3.12.0
term-size: 2.2.1
- transitivePeerDependencies:
- - '@parcel/core'
dev: true
- /@parcel/reporter-dev-server@2.9.3(@parcel/core@2.9.3):
- resolution: {integrity: sha512-s6eboxdLEtRSvG52xi9IiNbcPKC0XMVmvTckieue2EqGDbDcaHQoHmmwkk0rNq0/Z/UxelGcQXoIYC/0xq3ykQ==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/reporter-dev-server@2.11.0:
+ resolution: {integrity: sha512-T4ue1+oLFNdcd9maw8QWQuxzOS2kX2jOrSvYKwYd9oGnqiAr1rpiHYYKJhHng+PF5ybwWkj8dUJfGh2NoQysJA==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/plugin': 2.9.3(@parcel/core@2.9.3)
- '@parcel/utils': 2.9.3
+ '@parcel/plugin': 2.11.0
+ '@parcel/utils': 2.11.0
transitivePeerDependencies:
- '@parcel/core'
dev: true
- /@parcel/reporter-tracer@2.9.3(@parcel/core@2.9.3):
- resolution: {integrity: sha512-9cXpKWk0m6d6d+4+TlAdOe8XIPaFEIKGWMWG+5SFAQE08u3olet4PSvd49F4+ZZo5ftRE7YI3j6xNbXvJT8KGw==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/reporter-tracer@2.11.0:
+ resolution: {integrity: sha512-33q4ftO26OPWHkUpEm0bzzSjW2kHEh6q/JFePwf8W6APTQVruj4mV46+Fh6rxX42ixs92K/QoiE0gYgWZQVDHA==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/plugin': 2.9.3(@parcel/core@2.9.3)
- '@parcel/utils': 2.9.3
+ '@parcel/plugin': 2.11.0
+ '@parcel/utils': 2.11.0
chrome-trace-event: 1.0.3
nullthrows: 1.1.1
- transitivePeerDependencies:
- - '@parcel/core'
dev: true
- /@parcel/resolver-default@2.9.3(@parcel/core@2.9.3):
- resolution: {integrity: sha512-8ESJk1COKvDzkmOnppNXoDamNMlYVIvrKc2RuFPmp8nKVj47R6NwMgvwxEaatyPzvkmyTpq5RvG9I3HFc+r4Cw==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/resolver-default@2.11.0(@parcel/core@2.11.0):
+ resolution: {integrity: sha512-suZNN2lE5W48LPTwAbG7gnj1IeubkCVEm0XspWXcXUtCzglimNJ8PVVBGx171o5CqDpdbGF3AqHjG9N3uOwXag==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/node-resolver-core': 3.0.3(@parcel/core@2.9.3)
- '@parcel/plugin': 2.9.3(@parcel/core@2.9.3)
+ '@parcel/node-resolver-core': 3.2.0(@parcel/core@2.11.0)
+ '@parcel/plugin': 2.11.0
transitivePeerDependencies:
- '@parcel/core'
dev: true
- /@parcel/runtime-browser-hmr@2.9.3(@parcel/core@2.9.3):
- resolution: {integrity: sha512-EgiDIDrVAWpz7bOzWXqVinQkaFjLwT34wsonpXAbuI7f7r00d52vNAQC9AMu+pTijA3gyKoJ+Q4NWPMZf7ACDA==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/runtime-browser-hmr@2.11.0:
+ resolution: {integrity: sha512-uVwNBtoLMrlPHLvRS05BVhLseduMOpZT36yiIjS0YSBJcC6/otI9AY7ZiDPYmrB5xTqM0R+D554JhPaJHCuocw==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/plugin': 2.9.3(@parcel/core@2.9.3)
- '@parcel/utils': 2.9.3
+ '@parcel/plugin': 2.11.0
+ '@parcel/utils': 2.11.0
transitivePeerDependencies:
- '@parcel/core'
dev: true
- /@parcel/runtime-js@2.9.3(@parcel/core@2.9.3):
- resolution: {integrity: sha512-EvIy+qXcKnB5qxHhe96zmJpSAViNVXHfQI5RSdZ2a7CPwORwhTI+zPNT9sb7xb/WwFw/WuTTgzT40b41DceU6Q==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/runtime-js@2.11.0:
+ resolution: {integrity: sha512-fH3nJoexINz7s4cDzp0Vjsx0k1pMYSa5ch38LbbNqCKTermy0pS0zZuvgfLfHFFP+AMRpFQenrF7h7N3bgDmHw==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/diagnostic': 2.9.3
- '@parcel/plugin': 2.9.3(@parcel/core@2.9.3)
- '@parcel/utils': 2.9.3
+ '@parcel/diagnostic': 2.11.0
+ '@parcel/plugin': 2.11.0
+ '@parcel/utils': 2.11.0
nullthrows: 1.1.1
transitivePeerDependencies:
- '@parcel/core'
dev: true
- /@parcel/runtime-react-refresh@2.9.3(@parcel/core@2.9.3):
- resolution: {integrity: sha512-XBgryZQIyCmi6JwEfMUCmINB3l1TpTp9a2iFxmYNpzHlqj4Ve0saKaqWOVRLvC945ZovWIBzcSW2IYqWKGtbAA==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/runtime-react-refresh@2.11.0:
+ resolution: {integrity: sha512-Kfnc7gLjhoephLMnjABrkIkzVfzPrpJlxiJFIleY2Fm57YhmCfKsEYxm3lHOutNaYl1VArW0LKClPH/VHG9vfQ==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/plugin': 2.9.3(@parcel/core@2.9.3)
- '@parcel/utils': 2.9.3
+ '@parcel/plugin': 2.11.0
+ '@parcel/utils': 2.11.0
react-error-overlay: 6.0.9
react-refresh: 0.9.0
transitivePeerDependencies:
- '@parcel/core'
dev: true
- /@parcel/runtime-service-worker@2.9.3(@parcel/core@2.9.3):
- resolution: {integrity: sha512-qLJLqv1mMdWL7gyh8aKBFFAuEiJkhUUgLKpdn6eSfH/R7kTtb76WnOwqUrhvEI9bZFUM/8Pa1bzJnPpqSOM+Sw==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/runtime-service-worker@2.11.0:
+ resolution: {integrity: sha512-c8MaSpSbXIKuN5sA/g4UsrsH1BtBZ6Em+eSxt9AYbdPtWrW+qwCioNVZj9lugBRUzDMjVfJz0yK59nS42hABvw==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/plugin': 2.9.3(@parcel/core@2.9.3)
- '@parcel/utils': 2.9.3
+ '@parcel/plugin': 2.11.0
+ '@parcel/utils': 2.11.0
nullthrows: 1.1.1
transitivePeerDependencies:
- '@parcel/core'
dev: true
+ /@parcel/rust@2.11.0:
+ resolution: {integrity: sha512-UkLWdHOD8Md2YmJDPsqd3yIs9chhdl/ATfV/B/xdPKGmqtNouYpDCRlq+WxMt3mLoYgHEg9UwrWLTebo2rr2iQ==}
+ engines: {node: '>= 12.0.0'}
+ dev: true
+
/@parcel/source-map@2.1.1:
resolution: {integrity: sha512-Ejx1P/mj+kMjQb8/y5XxDUn4reGdr+WyKYloBljpppUy8gs42T+BNoEOuRYqDVdgPc6NxduzIDoJS9pOFfV5Ew==}
engines: {node: ^12.18.3 || >=14}
@@ -667,15 +676,15 @@ packages:
detect-libc: 1.0.3
dev: true
- /@parcel/transformer-babel@2.9.3(@parcel/core@2.9.3):
- resolution: {integrity: sha512-pURtEsnsp3h6tOBDuzh9wRvVtw4PgIlqwAArIWdrG7iwqOUYv9D8ME4+ePWEu7MQWAp58hv9pTJtqWv4T+Sq8A==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/transformer-babel@2.11.0:
+ resolution: {integrity: sha512-WKGblnp7r426VG+cpeQzc6dj/30EoUaYwyl4OEaigQSJizyuPWTBWTz6FUw+ih1/sg37h+D1BIh9C2FsVzpzbw==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/diagnostic': 2.9.3
- '@parcel/plugin': 2.9.3(@parcel/core@2.9.3)
+ '@parcel/diagnostic': 2.11.0
+ '@parcel/plugin': 2.11.0
'@parcel/source-map': 2.1.1
- '@parcel/utils': 2.9.3
- browserslist: 4.22.1
+ '@parcel/utils': 2.11.0
+ browserslist: 4.22.3
json5: 2.2.3
nullthrows: 1.1.1
semver: 7.5.4
@@ -683,28 +692,28 @@ packages:
- '@parcel/core'
dev: true
- /@parcel/transformer-css@2.9.3(@parcel/core@2.9.3):
- resolution: {integrity: sha512-duWMdbEBBPjg3fQdXF16iWIdThetDZvCs2TpUD7xOlXH6kR0V5BJy8ONFT15u1RCqIV9hSNGaS3v3I9YRNY5zQ==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/transformer-css@2.11.0:
+ resolution: {integrity: sha512-nFmBulF/ErNoafO87JbVrBavjBMNwE/kahbCRVxc2Mvlphz4F4lBW4eDRS5l4xBqFJaNkHr9R55ehLBBilF4Jw==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/diagnostic': 2.9.3
- '@parcel/plugin': 2.9.3(@parcel/core@2.9.3)
+ '@parcel/diagnostic': 2.11.0
+ '@parcel/plugin': 2.11.0
'@parcel/source-map': 2.1.1
- '@parcel/utils': 2.9.3
- browserslist: 4.22.1
- lightningcss: 1.22.0
+ '@parcel/utils': 2.11.0
+ browserslist: 4.22.3
+ lightningcss: 1.23.0
nullthrows: 1.1.1
transitivePeerDependencies:
- '@parcel/core'
dev: true
- /@parcel/transformer-html@2.9.3(@parcel/core@2.9.3):
- resolution: {integrity: sha512-0NU4omcHzFXA1seqftAXA2KNZaMByoKaNdXnLgBgtCGDiYvOcL+6xGHgY6pw9LvOh5um10KI5TxSIMILoI7VtA==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/transformer-html@2.11.0:
+ resolution: {integrity: sha512-90vp7mbvvfqPr9XIINpMcELtywj56f1bxfOkLQgWU1bm22H0FT3i5dqdac++2My0IGDvMwhAEjQfbn4pA579NQ==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/diagnostic': 2.9.3
- '@parcel/hash': 2.9.3
- '@parcel/plugin': 2.9.3(@parcel/core@2.9.3)
+ '@parcel/diagnostic': 2.11.0
+ '@parcel/plugin': 2.11.0
+ '@parcel/rust': 2.11.0
nullthrows: 1.1.1
posthtml: 0.16.6
posthtml-parser: 0.10.2
@@ -715,56 +724,57 @@ packages:
- '@parcel/core'
dev: true
- /@parcel/transformer-image@2.9.3(@parcel/core@2.9.3):
- resolution: {integrity: sha512-7CEe35RaPadQzLIuxzTtIxnItvOoy46hcbXtOdDt6lmVa4omuOygZYRIya2lsGIP4JHvAaALMb5nt99a1uTwJg==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/transformer-image@2.11.0(@parcel/core@2.11.0):
+ resolution: {integrity: sha512-QiZj18UHf3lVFsi65Vz8YbS3ydx9Pe9x8ktMxE1oh9qpznN8lD7gE/Z9DxuTZB84EZ9pKytKwcv5WGXP25xIFg==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
peerDependencies:
- '@parcel/core': ^2.9.3
+ '@parcel/core': ^2.11.0
dependencies:
- '@parcel/core': 2.9.3
- '@parcel/plugin': 2.9.3(@parcel/core@2.9.3)
- '@parcel/utils': 2.9.3
- '@parcel/workers': 2.9.3(@parcel/core@2.9.3)
+ '@parcel/core': 2.11.0
+ '@parcel/plugin': 2.11.0
+ '@parcel/utils': 2.11.0
+ '@parcel/workers': 2.11.0(@parcel/core@2.11.0)
nullthrows: 1.1.1
dev: true
- /@parcel/transformer-js@2.9.3(@parcel/core@2.9.3):
- resolution: {integrity: sha512-Z2MVVg5FYcPOfxlUwxqb5l9yjTMEqE3KI3zq2MBRUme6AV07KxLmCDF23b6glzZlHWQUE8MXzYCTAkOPCcPz+Q==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/transformer-js@2.11.0(@parcel/core@2.11.0):
+ resolution: {integrity: sha512-G1sv0n8/fJqHqwUs0iVnVdmRY0Kh8kWaDkuWcU/GJBHMGhUnLXKdNwxX2Av9UdBL14bU1nTINfr9qOfnQotXWg==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
peerDependencies:
- '@parcel/core': ^2.9.3
+ '@parcel/core': ^2.11.0
dependencies:
- '@parcel/core': 2.9.3
- '@parcel/diagnostic': 2.9.3
- '@parcel/plugin': 2.9.3(@parcel/core@2.9.3)
+ '@parcel/core': 2.11.0
+ '@parcel/diagnostic': 2.11.0
+ '@parcel/plugin': 2.11.0
+ '@parcel/rust': 2.11.0
'@parcel/source-map': 2.1.1
- '@parcel/utils': 2.9.3
- '@parcel/workers': 2.9.3(@parcel/core@2.9.3)
- '@swc/helpers': 0.5.2
- browserslist: 4.22.1
+ '@parcel/utils': 2.11.0
+ '@parcel/workers': 2.11.0(@parcel/core@2.11.0)
+ '@swc/helpers': 0.5.3
+ browserslist: 4.22.3
nullthrows: 1.1.1
regenerator-runtime: 0.13.11
semver: 7.5.4
dev: true
- /@parcel/transformer-json@2.9.3(@parcel/core@2.9.3):
- resolution: {integrity: sha512-yNL27dbOLhkkrjaQjiQ7Im9VOxmkfuuSNSmS0rA3gEjVcm07SLKRzWkAaPnyx44Lb6bzyOTWwVrb9aMmxgADpA==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/transformer-json@2.11.0:
+ resolution: {integrity: sha512-Wt/wgSBaRWmPL4gpvjkV0bCBRxFOtsuLNzsm8vYA5poxTFhuLY+AoyQ8S2+xXU4VxwBfdppfIr2Ny3SwGs8xbQ==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/plugin': 2.9.3(@parcel/core@2.9.3)
+ '@parcel/plugin': 2.11.0
json5: 2.2.3
transitivePeerDependencies:
- '@parcel/core'
dev: true
- /@parcel/transformer-postcss@2.9.3(@parcel/core@2.9.3):
- resolution: {integrity: sha512-HoDvPqKzhpmvMmHqQhDnt8F1vH61m6plpGiYaYnYv2Om4HHi5ZIq9bO+9QLBnTKfaZ7ndYSefTKOxTYElg7wyw==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/transformer-postcss@2.11.0:
+ resolution: {integrity: sha512-Ugy8XHBaUptGotsvwzq7gPCvkCopTIqqZ0JZ40Jmy9slGms8wnx06pNHA1Be/RcJwkJ2TbSu+7ncZdgmP5x5GQ==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/diagnostic': 2.9.3
- '@parcel/hash': 2.9.3
- '@parcel/plugin': 2.9.3(@parcel/core@2.9.3)
- '@parcel/utils': 2.9.3
+ '@parcel/diagnostic': 2.11.0
+ '@parcel/plugin': 2.11.0
+ '@parcel/rust': 2.11.0
+ '@parcel/utils': 2.11.0
clone: 2.1.2
nullthrows: 1.1.1
postcss-value-parser: 4.2.0
@@ -773,12 +783,12 @@ packages:
- '@parcel/core'
dev: true
- /@parcel/transformer-posthtml@2.9.3(@parcel/core@2.9.3):
- resolution: {integrity: sha512-2fQGgrzRmaqbWf3y2/T6xhqrNjzqMMKksqJzvc8TMfK6f2kg3Ddjv158eaSW2JdkV39aY7tvAOn5f1uzo74BMA==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/transformer-posthtml@2.11.0:
+ resolution: {integrity: sha512-dMK4p1RRAoIJEjK/Wz9GOLqwHqdD/VQDhMPk+6sUKp5zf2MhSohUstpp5gKsSZivCM3PS2f8k9rgroacJ/ReuA==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/plugin': 2.9.3(@parcel/core@2.9.3)
- '@parcel/utils': 2.9.3
+ '@parcel/plugin': 2.11.0
+ '@parcel/utils': 2.11.0
nullthrows: 1.1.1
posthtml: 0.16.6
posthtml-parser: 0.10.2
@@ -788,33 +798,33 @@ packages:
- '@parcel/core'
dev: true
- /@parcel/transformer-raw@2.9.3(@parcel/core@2.9.3):
- resolution: {integrity: sha512-oqdPzMC9QzWRbY9J6TZEqltknjno+dY24QWqf8ondmdF2+W+/2mRDu59hhCzQrqUHgTq4FewowRZmSfpzHxwaQ==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/transformer-raw@2.11.0:
+ resolution: {integrity: sha512-2ltp3TgS+cxEqSM1vk5gDtJrYx4KMuRRtbSgSvkdldyOgPhflnLU3/HRz72hXSNGqYOV0/JN0+ocsfPnqR00ug==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/plugin': 2.9.3(@parcel/core@2.9.3)
+ '@parcel/plugin': 2.11.0
transitivePeerDependencies:
- '@parcel/core'
dev: true
- /@parcel/transformer-react-refresh-wrap@2.9.3(@parcel/core@2.9.3):
- resolution: {integrity: sha512-cb9NyU6oJlDblFIlzqIE8AkvRQVGl2IwJNKwD4PdE7Y6sq2okGEPG4hOw3k/Y9JVjM4/2pUORqvjSRhWwd9oVQ==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/transformer-react-refresh-wrap@2.11.0:
+ resolution: {integrity: sha512-6pY0CdIgIpXC6XpsDWizf+zLgiuEsJ106HjWLwF7/R72BrvDhLPZ6jRu4UTrnd6bM89KahPw9fZZzjKoA5Efcw==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/plugin': 2.9.3(@parcel/core@2.9.3)
- '@parcel/utils': 2.9.3
+ '@parcel/plugin': 2.11.0
+ '@parcel/utils': 2.11.0
react-refresh: 0.9.0
transitivePeerDependencies:
- '@parcel/core'
dev: true
- /@parcel/transformer-svg@2.9.3(@parcel/core@2.9.3):
- resolution: {integrity: sha512-ypmE+dzB09IMCdEAkOsSxq1dEIm2A3h67nAFz4qbfHbwNgXBUuy/jB3ZMwXN/cO0f7SBh/Ap8Jhq6vmGqB5tWw==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/transformer-svg@2.11.0:
+ resolution: {integrity: sha512-GrTNi04OoQSXsyrB7FqQPeYREscEXFhIBPkyQ0q7WDG/yYynWljiA0kwITCtMjPfv2EDVks292dvM3EcnERRIA==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
dependencies:
- '@parcel/diagnostic': 2.9.3
- '@parcel/hash': 2.9.3
- '@parcel/plugin': 2.9.3(@parcel/core@2.9.3)
+ '@parcel/diagnostic': 2.11.0
+ '@parcel/plugin': 2.11.0
+ '@parcel/rust': 2.11.0
nullthrows: 1.1.1
posthtml: 0.16.6
posthtml-parser: 0.10.2
@@ -824,63 +834,77 @@ packages:
- '@parcel/core'
dev: true
- /@parcel/transformer-typescript-types@2.9.3(@parcel/core@2.9.3)(typescript@5.2.2):
- resolution: {integrity: sha512-W+Ze3aUTdZuBQokXlkEQ/1hUApUm6VRyYzPqEs9jcqCqU8mv18i5ZGAz4bMuIJOBprp7M2wt10SJJx/SC1pl1A==}
- engines: {node: '>= 12.0.0', parcel: ^2.9.3}
+ /@parcel/transformer-typescript-tsc@2.11.0(typescript@5.3.3):
+ resolution: {integrity: sha512-ELDYqWGCaBv9GqrFmSQxBbdZIUN/LkkUfSAgf0OPFpM2XEEsAqeJdXxwvwkucxR7MkIfpsnCIPRKlILmALlwrQ==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
+ peerDependencies:
+ typescript: '>=3.0.0'
+ dependencies:
+ '@parcel/plugin': 2.11.0
+ '@parcel/source-map': 2.1.1
+ '@parcel/ts-utils': 2.11.0(typescript@5.3.3)
+ typescript: 5.3.3
+ transitivePeerDependencies:
+ - '@parcel/core'
+ dev: true
+
+ /@parcel/transformer-typescript-types@2.11.0(typescript@5.3.3):
+ resolution: {integrity: sha512-d9iTDMtFyAZkqxMGguBNGD6q9QKvLd0deUs7Ax8jdhYMjxwAEGU48mg8vjPjumItgA/2mD4ptMJjQB25mtetfA==}
+ engines: {node: '>= 12.0.0', parcel: ^2.11.0}
peerDependencies:
typescript: '>=3.0.0'
dependencies:
- '@parcel/diagnostic': 2.9.3
- '@parcel/plugin': 2.9.3(@parcel/core@2.9.3)
+ '@parcel/diagnostic': 2.11.0
+ '@parcel/plugin': 2.11.0
'@parcel/source-map': 2.1.1
- '@parcel/ts-utils': 2.9.3(typescript@5.2.2)
- '@parcel/utils': 2.9.3
+ '@parcel/ts-utils': 2.11.0(typescript@5.3.3)
+ '@parcel/utils': 2.11.0
nullthrows: 1.1.1
- typescript: 5.2.2
+ typescript: 5.3.3
transitivePeerDependencies:
- '@parcel/core'
dev: true
- /@parcel/ts-utils@2.9.3(typescript@5.2.2):
- resolution: {integrity: sha512-MiQoXFV8I4IWZT/q5yolKN/gnEY5gZfGB2X7W9WHJbRgyjlT/A5cPERXzVBj6mc3/VM1GdZJz76w637GUcQhow==}
+ /@parcel/ts-utils@2.11.0(typescript@5.3.3):
+ resolution: {integrity: sha512-przIVpyuyAk1enpbbjVxn146dY25L1qcD/qU5HOCK8oH3ddQ0n1RgpXT9HKVpqteOnQIHDupUrZLArK6aqEnwA==}
engines: {node: '>= 12.0.0'}
peerDependencies:
typescript: '>=3.0.0'
dependencies:
nullthrows: 1.1.1
- typescript: 5.2.2
+ typescript: 5.3.3
dev: true
- /@parcel/types@2.9.3(@parcel/core@2.9.3):
- resolution: {integrity: sha512-NSNY8sYtRhvF1SqhnIGgGvJocyWt1K8Tnw5cVepm0g38ywtX6mwkBvMkmeehXkII4mSUn+frD9wGsydTunezvA==}
+ /@parcel/types@2.11.0:
+ resolution: {integrity: sha512-lN5XlfV9b1s2rli8q1LqsLtu+D4ZwNI3sKmNcL/3tohSfQcF2EgF+MaiANGo9VzXOzoWFHt4dqWjO4OcdyC5tg==}
dependencies:
- '@parcel/cache': 2.9.3(@parcel/core@2.9.3)
- '@parcel/diagnostic': 2.9.3
- '@parcel/fs': 2.9.3(@parcel/core@2.9.3)
- '@parcel/package-manager': 2.9.3(@parcel/core@2.9.3)
+ '@parcel/cache': 2.11.0(@parcel/core@2.11.0)
+ '@parcel/diagnostic': 2.11.0
+ '@parcel/fs': 2.11.0(@parcel/core@2.11.0)
+ '@parcel/package-manager': 2.11.0(@parcel/core@2.11.0)
'@parcel/source-map': 2.1.1
- '@parcel/workers': 2.9.3(@parcel/core@2.9.3)
- utility-types: 3.10.0
+ '@parcel/workers': 2.11.0(@parcel/core@2.11.0)
+ utility-types: 3.11.0
transitivePeerDependencies:
- '@parcel/core'
dev: true
- /@parcel/utils@2.9.3:
- resolution: {integrity: sha512-cesanjtj/oLehW8Waq9JFPmAImhoiHX03ihc3JTWkrvJYSbD7wYKCDgPAM3JiRAqvh1LZ6P699uITrYWNoRLUg==}
+ /@parcel/utils@2.11.0:
+ resolution: {integrity: sha512-AcL70cXlIyE7eQdvjQbYxegN5l+skqvlJllxTWg4YkIZe9p8Gmv74jLAeLWh5F+IGl5WRn0TSy9JhNJjIMQGwQ==}
engines: {node: '>= 12.0.0'}
dependencies:
- '@parcel/codeframe': 2.9.3
- '@parcel/diagnostic': 2.9.3
- '@parcel/hash': 2.9.3
- '@parcel/logger': 2.9.3
- '@parcel/markdown-ansi': 2.9.3
+ '@parcel/codeframe': 2.11.0
+ '@parcel/diagnostic': 2.11.0
+ '@parcel/logger': 2.11.0
+ '@parcel/markdown-ansi': 2.11.0
+ '@parcel/rust': 2.11.0
'@parcel/source-map': 2.1.1
chalk: 4.1.2
nullthrows: 1.1.1
dev: true
- /@parcel/watcher-android-arm64@2.3.0:
- resolution: {integrity: sha512-f4o9eA3dgk0XRT3XhB0UWpWpLnKgrh1IwNJKJ7UJek7eTYccQ8LR7XUWFKqw6aEq5KUNlCcGvSzKqSX/vtWVVA==}
+ /@parcel/watcher-android-arm64@2.4.0:
+ resolution: {integrity: sha512-+fPtO/GsbYX1LJnCYCaDVT3EOBjvSFdQN9Mrzh9zWAOOfvidPWyScTrHIZHHfJBvlHzNA0Gy0U3NXFA/M7PHUA==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [android]
@@ -888,8 +912,8 @@ packages:
dev: true
optional: true
- /@parcel/watcher-darwin-arm64@2.3.0:
- resolution: {integrity: sha512-mKY+oijI4ahBMc/GygVGvEdOq0L4DxhYgwQqYAz/7yPzuGi79oXrZG52WdpGA1wLBPrYb0T8uBaGFo7I6rvSKw==}
+ /@parcel/watcher-darwin-arm64@2.4.0:
+ resolution: {integrity: sha512-T/At5pansFuQ8VJLRx0C6C87cgfqIYhW2N/kBfLCUvDhCah0EnLLwaD/6MW3ux+rpgkpQAnMELOCTKlbwncwiA==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [darwin]
@@ -897,8 +921,8 @@ packages:
dev: true
optional: true
- /@parcel/watcher-darwin-x64@2.3.0:
- resolution: {integrity: sha512-20oBj8LcEOnLE3mgpy6zuOq8AplPu9NcSSSfyVKgfOhNAc4eF4ob3ldj0xWjGGbOF7Dcy1Tvm6ytvgdjlfUeow==}
+ /@parcel/watcher-darwin-x64@2.4.0:
+ resolution: {integrity: sha512-vZMv9jl+szz5YLsSqEGCMSllBl1gU1snfbRL5ysJU03MEa6gkVy9OMcvXV1j4g0++jHEcvzhs3Z3LpeEbVmY6Q==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [darwin]
@@ -906,8 +930,8 @@ packages:
dev: true
optional: true
- /@parcel/watcher-freebsd-x64@2.3.0:
- resolution: {integrity: sha512-7LftKlaHunueAEiojhCn+Ef2CTXWsLgTl4hq0pkhkTBFI3ssj2bJXmH2L67mKpiAD5dz66JYk4zS66qzdnIOgw==}
+ /@parcel/watcher-freebsd-x64@2.4.0:
+ resolution: {integrity: sha512-dHTRMIplPDT1M0+BkXjtMN+qLtqq24sLDUhmU+UxxLP2TEY2k8GIoqIJiVrGWGomdWsy5IO27aDV1vWyQ6gfHA==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [freebsd]
@@ -915,8 +939,8 @@ packages:
dev: true
optional: true
- /@parcel/watcher-linux-arm-glibc@2.3.0:
- resolution: {integrity: sha512-1apPw5cD2xBv1XIHPUlq0cO6iAaEUQ3BcY0ysSyD9Kuyw4MoWm1DV+W9mneWI+1g6OeP6dhikiFE6BlU+AToTQ==}
+ /@parcel/watcher-linux-arm-glibc@2.4.0:
+ resolution: {integrity: sha512-9NQXD+qk46RwATNC3/UB7HWurscY18CnAPMTFcI9Y8CTbtm63/eex1SNt+BHFinEQuLBjaZwR2Lp+n7pmEJPpQ==}
engines: {node: '>= 10.0.0'}
cpu: [arm]
os: [linux]
@@ -924,8 +948,8 @@ packages:
dev: true
optional: true
- /@parcel/watcher-linux-arm64-glibc@2.3.0:
- resolution: {integrity: sha512-mQ0gBSQEiq1k/MMkgcSB0Ic47UORZBmWoAWlMrTW6nbAGoLZP+h7AtUM7H3oDu34TBFFvjy4JCGP43JlylkTQA==}
+ /@parcel/watcher-linux-arm64-glibc@2.4.0:
+ resolution: {integrity: sha512-QuJTAQdsd7PFW9jNGaV9Pw+ZMWV9wKThEzzlY3Lhnnwy7iW23qtQFPql8iEaSFMCVI5StNNmONUopk+MFKpiKg==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [linux]
@@ -933,8 +957,8 @@ packages:
dev: true
optional: true
- /@parcel/watcher-linux-arm64-musl@2.3.0:
- resolution: {integrity: sha512-LXZAExpepJew0Gp8ZkJ+xDZaTQjLHv48h0p0Vw2VMFQ8A+RKrAvpFuPVCVwKJCr5SE+zvaG+Etg56qXvTDIedw==}
+ /@parcel/watcher-linux-arm64-musl@2.4.0:
+ resolution: {integrity: sha512-oyN+uA9xcTDo/45bwsd6TFHa7Lc7hKujyMlvwrCLvSckvWogndCEoVYFNfZ6JJ2KNL/6fFiGPcbjp8jJmEh5Ng==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [linux]
@@ -942,8 +966,8 @@ packages:
dev: true
optional: true
- /@parcel/watcher-linux-x64-glibc@2.3.0:
- resolution: {integrity: sha512-P7Wo91lKSeSgMTtG7CnBS6WrA5otr1K7shhSjKHNePVmfBHDoAOHYRXgUmhiNfbcGk0uMCHVcdbfxtuiZCHVow==}
+ /@parcel/watcher-linux-x64-glibc@2.4.0:
+ resolution: {integrity: sha512-KphV8awJmxU3q52JQvJot0QMu07CIyEjV+2Tb2ZtbucEgqyRcxOBDMsqp1JNq5nuDXtcCC0uHQICeiEz38dPBQ==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [linux]
@@ -951,8 +975,8 @@ packages:
dev: true
optional: true
- /@parcel/watcher-linux-x64-musl@2.3.0:
- resolution: {integrity: sha512-+kiRE1JIq8QdxzwoYY+wzBs9YbJ34guBweTK8nlzLKimn5EQ2b2FSC+tAOpq302BuIMjyuUGvBiUhEcLIGMQ5g==}
+ /@parcel/watcher-linux-x64-musl@2.4.0:
+ resolution: {integrity: sha512-7jzcOonpXNWcSijPpKD5IbC6xC7yTibjJw9jviVzZostYLGxbz8LDJLUnLzLzhASPlPGgpeKLtFUMjAAzM+gSA==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [linux]
@@ -960,8 +984,8 @@ packages:
dev: true
optional: true
- /@parcel/watcher-win32-arm64@2.3.0:
- resolution: {integrity: sha512-35gXCnaz1AqIXpG42evcoP2+sNL62gZTMZne3IackM+6QlfMcJLy3DrjuL6Iks7Czpd3j4xRBzez3ADCj1l7Aw==}
+ /@parcel/watcher-win32-arm64@2.4.0:
+ resolution: {integrity: sha512-NOej2lqlq8bQNYhUMnOD0nwvNql8ToQF+1Zhi9ULZoG+XTtJ9hNnCFfyICxoZLXor4bBPTOnzs/aVVoefYnjIg==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [win32]
@@ -969,8 +993,8 @@ packages:
dev: true
optional: true
- /@parcel/watcher-win32-ia32@2.3.0:
- resolution: {integrity: sha512-FJS/IBQHhRpZ6PiCjFt1UAcPr0YmCLHRbTc00IBTrelEjlmmgIVLeOx4MSXzx2HFEy5Jo5YdhGpxCuqCyDJ5ow==}
+ /@parcel/watcher-win32-ia32@2.4.0:
+ resolution: {integrity: sha512-IO/nM+K2YD/iwjWAfHFMBPz4Zqn6qBDqZxY4j2n9s+4+OuTSRM/y/irksnuqcspom5DjkSeF9d0YbO+qpys+JA==}
engines: {node: '>= 10.0.0'}
cpu: [ia32]
os: [win32]
@@ -978,8 +1002,8 @@ packages:
dev: true
optional: true
- /@parcel/watcher-win32-x64@2.3.0:
- resolution: {integrity: sha512-dLx+0XRdMnVI62kU3wbXvbIRhLck4aE28bIGKbRGS7BJNt54IIj9+c/Dkqb+7DJEbHUZAX1bwaoM8PqVlHJmCA==}
+ /@parcel/watcher-win32-x64@2.4.0:
+ resolution: {integrity: sha512-pAUyUVjfFjWaf/pShmJpJmNxZhbMvJASUpdes9jL6bTEJ+gDxPRSpXTIemNyNsb9AtbiGXs9XduP1reThmd+dA==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [win32]
@@ -987,46 +1011,46 @@ packages:
dev: true
optional: true
- /@parcel/watcher@2.3.0:
- resolution: {integrity: sha512-pW7QaFiL11O0BphO+bq3MgqeX/INAk9jgBldVDYjlQPO4VddoZnF22TcF9onMhnLVHuNqBJeRf+Fj7eezi/+rQ==}
+ /@parcel/watcher@2.4.0:
+ resolution: {integrity: sha512-XJLGVL0DEclX5pcWa2N9SX1jCGTDd8l972biNooLFtjneuGqodupPQh6XseXIBBeVIMaaJ7bTcs3qGvXwsp4vg==}
engines: {node: '>= 10.0.0'}
dependencies:
detect-libc: 1.0.3
is-glob: 4.0.3
micromatch: 4.0.5
- node-addon-api: 7.0.0
+ node-addon-api: 7.1.0
optionalDependencies:
- '@parcel/watcher-android-arm64': 2.3.0
- '@parcel/watcher-darwin-arm64': 2.3.0
- '@parcel/watcher-darwin-x64': 2.3.0
- '@parcel/watcher-freebsd-x64': 2.3.0
- '@parcel/watcher-linux-arm-glibc': 2.3.0
- '@parcel/watcher-linux-arm64-glibc': 2.3.0
- '@parcel/watcher-linux-arm64-musl': 2.3.0
- '@parcel/watcher-linux-x64-glibc': 2.3.0
- '@parcel/watcher-linux-x64-musl': 2.3.0
- '@parcel/watcher-win32-arm64': 2.3.0
- '@parcel/watcher-win32-ia32': 2.3.0
- '@parcel/watcher-win32-x64': 2.3.0
- dev: true
-
- /@parcel/workers@2.9.3(@parcel/core@2.9.3):
- resolution: {integrity: sha512-zRrDuZJzTevrrwElYosFztgldhqW6G9q5zOeQXfVQFkkEJCNfg36ixeiofKRU8uu2x+j+T6216mhMNB6HiuY+w==}
+ '@parcel/watcher-android-arm64': 2.4.0
+ '@parcel/watcher-darwin-arm64': 2.4.0
+ '@parcel/watcher-darwin-x64': 2.4.0
+ '@parcel/watcher-freebsd-x64': 2.4.0
+ '@parcel/watcher-linux-arm-glibc': 2.4.0
+ '@parcel/watcher-linux-arm64-glibc': 2.4.0
+ '@parcel/watcher-linux-arm64-musl': 2.4.0
+ '@parcel/watcher-linux-x64-glibc': 2.4.0
+ '@parcel/watcher-linux-x64-musl': 2.4.0
+ '@parcel/watcher-win32-arm64': 2.4.0
+ '@parcel/watcher-win32-ia32': 2.4.0
+ '@parcel/watcher-win32-x64': 2.4.0
+ dev: true
+
+ /@parcel/workers@2.11.0(@parcel/core@2.11.0):
+ resolution: {integrity: sha512-wjybqdSy6Nk0N9iBGsFcp7739W2zvx0WGfVxPVShqhz46pIkPOiFF/iSn+kFu5EmMKTRWeUif42+a6rRZ7pCnQ==}
engines: {node: '>= 12.0.0'}
peerDependencies:
- '@parcel/core': ^2.9.3
- dependencies:
- '@parcel/core': 2.9.3
- '@parcel/diagnostic': 2.9.3
- '@parcel/logger': 2.9.3
- '@parcel/profiler': 2.9.3
- '@parcel/types': 2.9.3(@parcel/core@2.9.3)
- '@parcel/utils': 2.9.3
+ '@parcel/core': ^2.11.0
+ dependencies:
+ '@parcel/core': 2.11.0
+ '@parcel/diagnostic': 2.11.0
+ '@parcel/logger': 2.11.0
+ '@parcel/profiler': 2.11.0
+ '@parcel/types': 2.11.0
+ '@parcel/utils': 2.11.0
nullthrows: 1.1.1
dev: true
- /@swc/core-darwin-arm64@1.3.91:
- resolution: {integrity: sha512-7kHGiQ1he5khcEeJuHDmLZPM3rRL/ith5OTmV6bOPsoHi46kLeixORW+ts1opC3tC9vu6xbk16xgX0QAJchc1w==}
+ /@swc/core-darwin-arm64@1.3.107:
+ resolution: {integrity: sha512-47tD/5vSXWxPd0j/ZllyQUg4bqalbQTsmqSw0J4dDdS82MWqCAwUErUrAZPRjBkjNQ6Kmrf5rpCWaGTtPw+ngw==}
engines: {node: '>=10'}
cpu: [arm64]
os: [darwin]
@@ -1034,8 +1058,8 @@ packages:
dev: true
optional: true
- /@swc/core-darwin-x64@1.3.91:
- resolution: {integrity: sha512-8SpU18FbFpZDVzsHsAwdI1thF/picQGxq9UFxa8W+T9SDnbsqwFJv/6RqKJeJoDV6qFdl2OLjuO0OL7xrp0qnQ==}
+ /@swc/core-darwin-x64@1.3.107:
+ resolution: {integrity: sha512-hwiLJ2ulNkBGAh1m1eTfeY1417OAYbRGcb/iGsJ+LuVLvKAhU/itzsl535CvcwAlt2LayeCFfcI8gdeOLeZa9A==}
engines: {node: '>=10'}
cpu: [x64]
os: [darwin]
@@ -1043,8 +1067,8 @@ packages:
dev: true
optional: true
- /@swc/core-linux-arm-gnueabihf@1.3.91:
- resolution: {integrity: sha512-fOq4Cy8UbwX1yf0WB0d8hWZaIKCnPtPGguRqdXGLfwvhjZ9SIErT6PnmGTGRbQCNCIkOZWHKyTU0r8t2dN3haQ==}
+ /@swc/core-linux-arm-gnueabihf@1.3.107:
+ resolution: {integrity: sha512-I2wzcC0KXqh0OwymCmYwNRgZ9nxX7DWnOOStJXV3pS0uB83TXAkmqd7wvMBuIl9qu4Hfomi9aDM7IlEEn9tumQ==}
engines: {node: '>=10'}
cpu: [arm]
os: [linux]
@@ -1052,8 +1076,8 @@ packages:
dev: true
optional: true
- /@swc/core-linux-arm64-gnu@1.3.91:
- resolution: {integrity: sha512-fki4ioRP/Esy4vdp8T34RCV+V9dqkRmOt763pf74pdiyFV2dPLXa5lnw/XvR1RTfPGknrYgjEQLCfZlReTryRw==}
+ /@swc/core-linux-arm64-gnu@1.3.107:
+ resolution: {integrity: sha512-HWgnn7JORYlOYnGsdunpSF8A+BCZKPLzLtEUA27/M/ZuANcMZabKL9Zurt7XQXq888uJFAt98Gy+59PU90aHKg==}
engines: {node: '>=10'}
cpu: [arm64]
os: [linux]
@@ -1061,8 +1085,8 @@ packages:
dev: true
optional: true
- /@swc/core-linux-arm64-musl@1.3.91:
- resolution: {integrity: sha512-XrG+DUUqNtfVLcJ20imby7fpBwQNG5VsEQBzQndSonPyUOa2YkTbBb60YDondfQGDABopuHH8gHN8o2H2/VCnQ==}
+ /@swc/core-linux-arm64-musl@1.3.107:
+ resolution: {integrity: sha512-vfPF74cWfAm8hyhS8yvYI94ucMHIo8xIYU+oFOW9uvDlGQRgnUf/6DEVbLyt/3yfX5723Ln57U8uiMALbX5Pyw==}
engines: {node: '>=10'}
cpu: [arm64]
os: [linux]
@@ -1070,8 +1094,8 @@ packages:
dev: true
optional: true
- /@swc/core-linux-x64-gnu@1.3.91:
- resolution: {integrity: sha512-d11bYhX+YPBr/Frcjc6eVn3C0LuS/9U1Li9EmQ+6s9EpYtYRl2ygSlC8eueLbaiazBnCVYFnc8bU4o0kc5B9sw==}
+ /@swc/core-linux-x64-gnu@1.3.107:
+ resolution: {integrity: sha512-uBVNhIg0ip8rH9OnOsCARUFZ3Mq3tbPHxtmWk9uAa5u8jQwGWeBx5+nTHpDOVd3YxKb6+5xDEI/edeeLpha/9g==}
engines: {node: '>=10'}
cpu: [x64]
os: [linux]
@@ -1079,8 +1103,8 @@ packages:
dev: true
optional: true
- /@swc/core-linux-x64-musl@1.3.91:
- resolution: {integrity: sha512-2SRp5Dke2P4jCQePkDx9trkkTstnRpZJVw5r3jvYdk0zeO6iC4+ZPvvoWXJLigqQv/fZnIiSUfJ6ssOoaEqTzQ==}
+ /@swc/core-linux-x64-musl@1.3.107:
+ resolution: {integrity: sha512-mvACkUvzSIB12q1H5JtabWATbk3AG+pQgXEN95AmEX2ZA5gbP9+B+mijsg7Sd/3tboHr7ZHLz/q3SHTvdFJrEw==}
engines: {node: '>=10'}
cpu: [x64]
os: [linux]
@@ -1088,8 +1112,8 @@ packages:
dev: true
optional: true
- /@swc/core-win32-arm64-msvc@1.3.91:
- resolution: {integrity: sha512-l9qKXikOxj42UIjbeZpz9xtBmr736jOMqInNP8mVF2/U+ws5sI8zJjcOFFtfis4ru7vWCXhB1wtltdlJYO2vGA==}
+ /@swc/core-win32-arm64-msvc@1.3.107:
+ resolution: {integrity: sha512-J3P14Ngy/1qtapzbguEH41kY109t6DFxfbK4Ntz9dOWNuVY3o9/RTB841ctnJk0ZHEG+BjfCJjsD2n8H5HcaOA==}
engines: {node: '>=10'}
cpu: [arm64]
os: [win32]
@@ -1097,8 +1121,8 @@ packages:
dev: true
optional: true
- /@swc/core-win32-ia32-msvc@1.3.91:
- resolution: {integrity: sha512-+s+52O0QVPmzOgjEe/rcb0AK6q/J7EHKwAyJCu/FaYO9df5ovE0HJjSKP6HAF0dGPO5hkENrXuNGujofUH9vtQ==}
+ /@swc/core-win32-ia32-msvc@1.3.107:
+ resolution: {integrity: sha512-ZBUtgyjTHlz8TPJh7kfwwwFma+ktr6OccB1oXC8fMSopD0AxVnQasgun3l3099wIsAB9eEsJDQ/3lDkOLs1gBA==}
engines: {node: '>=10'}
cpu: [ia32]
os: [win32]
@@ -1106,8 +1130,8 @@ packages:
dev: true
optional: true
- /@swc/core-win32-x64-msvc@1.3.91:
- resolution: {integrity: sha512-7u9HDQhjUC3Gv43EFW84dZtduWCSa4MgltK+Sp9zEGti6WXqDPu/ESjvDsQEVYTBEMEvZs/xVAXPgLVHorV5nQ==}
+ /@swc/core-win32-x64-msvc@1.3.107:
+ resolution: {integrity: sha512-Eyzo2XRqWOxqhE1gk9h7LWmUf4Bp4Xn2Ttb0ayAXFp6YSTxQIThXcT9kipXZqcpxcmDwoq8iWbbf2P8XL743EA==}
engines: {node: '>=10'}
cpu: [x64]
os: [win32]
@@ -1115,8 +1139,8 @@ packages:
dev: true
optional: true
- /@swc/core@1.3.91(@swc/helpers@0.5.2):
- resolution: {integrity: sha512-r950d0fdlZ8qbSDyvApn3HyCojiZE8xpgJzQvypeMi32dalYwugdJKWyLB55JIGMRGJ8+lmVvY4MPGkSR3kXgA==}
+ /@swc/core@1.3.107(@swc/helpers@0.5.3):
+ resolution: {integrity: sha512-zKhqDyFcTsyLIYK1iEmavljZnf4CCor5pF52UzLAz4B6Nu/4GLU+2LQVAf+oRHjusG39PTPjd2AlRT3f3QWfsQ==}
engines: {node: '>=10'}
requiresBuild: true
peerDependencies:
@@ -1126,40 +1150,27 @@ packages:
optional: true
dependencies:
'@swc/counter': 0.1.2
- '@swc/helpers': 0.5.2
+ '@swc/helpers': 0.5.3
'@swc/types': 0.1.5
optionalDependencies:
- '@swc/core-darwin-arm64': 1.3.91
- '@swc/core-darwin-x64': 1.3.91
- '@swc/core-linux-arm-gnueabihf': 1.3.91
- '@swc/core-linux-arm64-gnu': 1.3.91
- '@swc/core-linux-arm64-musl': 1.3.91
- '@swc/core-linux-x64-gnu': 1.3.91
- '@swc/core-linux-x64-musl': 1.3.91
- '@swc/core-win32-arm64-msvc': 1.3.91
- '@swc/core-win32-ia32-msvc': 1.3.91
- '@swc/core-win32-x64-msvc': 1.3.91
+ '@swc/core-darwin-arm64': 1.3.107
+ '@swc/core-darwin-x64': 1.3.107
+ '@swc/core-linux-arm-gnueabihf': 1.3.107
+ '@swc/core-linux-arm64-gnu': 1.3.107
+ '@swc/core-linux-arm64-musl': 1.3.107
+ '@swc/core-linux-x64-gnu': 1.3.107
+ '@swc/core-linux-x64-musl': 1.3.107
+ '@swc/core-win32-arm64-msvc': 1.3.107
+ '@swc/core-win32-ia32-msvc': 1.3.107
+ '@swc/core-win32-x64-msvc': 1.3.107
dev: true
/@swc/counter@0.1.2:
resolution: {integrity: sha512-9F4ys4C74eSTEUNndnER3VJ15oru2NumfQxS8geE+f3eB5xvfxpWyqE5XlVnxb/R14uoXi6SLbBwwiDSkv+XEw==}
dev: true
- /@swc/helpers@0.4.14:
- resolution: {integrity: sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==}
- dependencies:
- tslib: 2.6.2
- dev: false
-
- /@swc/helpers@0.4.36:
- resolution: {integrity: sha512-5lxnyLEYFskErRPenYItLRSge5DjrJngYKdVjRSrWfza9G6KkgHEXi0vUZiyUeMU5JfXH1YnvXZzSp8ul88o2Q==}
- dependencies:
- legacy-swc-helpers: /@swc/helpers@0.4.14
- tslib: 2.6.2
- dev: false
-
- /@swc/helpers@0.5.2:
- resolution: {integrity: sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==}
+ /@swc/helpers@0.5.3:
+ resolution: {integrity: sha512-FaruWX6KdudYloq1AHD/4nU+UsMTdNE8CKyrseXWEcgjDAbvkwJg2QGPAnfIJLIWsjZOSPLOAykK6fuYp4vp4A==}
dependencies:
tslib: 2.6.2
@@ -1167,40 +1178,23 @@ packages:
resolution: {integrity: sha512-myfUej5naTBWnqOCc/MdVOLVjXUXtIA+NpDrDBKJtLLg2shUjBu3cZmB/85RyitKc55+lUUyl7oRfLOvkr2hsw==}
dev: true
- /@tootallnate/once@2.0.0:
- resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==}
- engines: {node: '>= 10'}
- dev: false
-
/@trysound/sax@0.2.0:
resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==}
engines: {node: '>=10.13.0'}
dev: true
- /@types/qs@6.9.8:
- resolution: {integrity: sha512-u95svzDlTysU5xecFNTgfFG5RUWu1A9P0VzgpcIiGZA9iraHOdSzcxMxQ55DyeRaGCSxQi7LxXDI4rzq/MYfdg==}
+ /@types/qs@6.9.11:
+ resolution: {integrity: sha512-oGk0gmhnEJK4Yyk+oI7EfXsLayXatCWPHary1MtcmbAifkobT9cM9yutG/hZKIseOU0MqbIwQ/u2nn/Gb+ltuQ==}
dev: true
- /@types/validator@13.11.2:
- resolution: {integrity: sha512-nIKVVQKT6kGKysnNt+xLobr+pFJNssJRi2s034wgWeFBUx01fI8BeHTW2TcRp7VcFu9QCYG8IlChTuovcm0oKQ==}
- dev: false
-
- /abab@2.0.6:
- resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==}
- dev: false
-
/abortcontroller-polyfill@1.7.5:
resolution: {integrity: sha512-JMJ5soJWP18htbbxJjG7bG6yuI6pRhgJ0scHHTfkUjf6wjP912xZWvM+A4sJK3gqd9E8fcPbDnOefbA9Th/FIQ==}
dev: true
- /agent-base@6.0.2:
- resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==}
- engines: {node: '>= 6.0.0'}
- dependencies:
- debug: 4.3.4
- transitivePeerDependencies:
- - supports-color
- dev: false
+ /ansi-regex@5.0.1:
+ resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
+ engines: {node: '>=8'}
+ dev: true
/ansi-styles@3.2.1:
resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
@@ -1220,10 +1214,6 @@ packages:
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
dev: true
- /asynckit@0.4.0:
- resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
- dev: false
-
/base-x@3.0.9:
resolution: {integrity: sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==}
dependencies:
@@ -1241,22 +1231,23 @@ packages:
fill-range: 7.0.1
dev: true
- /browserslist@4.22.1:
- resolution: {integrity: sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==}
+ /browserslist@4.22.3:
+ resolution: {integrity: sha512-UAp55yfwNv0klWNapjs/ktHoguxuQNGnOzxYmfnXIS+8AsRDZkSDxg7R1AX3GKzn078SBI5dzwzj/Yx0Or0e3A==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
dependencies:
- caniuse-lite: 1.0.30001541
- electron-to-chromium: 1.4.537
- node-releases: 2.0.13
- update-browserslist-db: 1.0.13(browserslist@4.22.1)
+ caniuse-lite: 1.0.30001581
+ electron-to-chromium: 1.4.648
+ node-releases: 2.0.14
+ update-browserslist-db: 1.0.13(browserslist@4.22.3)
dev: true
- /call-bind@1.0.2:
- resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==}
+ /call-bind@1.0.5:
+ resolution: {integrity: sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==}
dependencies:
- function-bind: 1.1.1
- get-intrinsic: 1.2.1
+ function-bind: 1.1.2
+ get-intrinsic: 1.2.2
+ set-function-length: 1.2.0
dev: false
/callsites@3.1.0:
@@ -1264,8 +1255,8 @@ packages:
engines: {node: '>=6'}
dev: true
- /caniuse-lite@1.0.30001541:
- resolution: {integrity: sha512-bLOsqxDgTqUBkzxbNlSBt8annkDpQB9NdzdTbO2ooJ+eC/IQcvDspDc058g84ejCelF7vHUx57KIOjEecOHXaw==}
+ /caniuse-lite@1.0.30001581:
+ resolution: {integrity: sha512-whlTkwhqV2tUmP3oYhtNfaWGYHDdS3JYFQBKXxcUR9qqPWsRhFHhoISO2Xnl/g0xyKzht9mI1LZpiNWfMzHixQ==}
dev: true
/chalk@2.4.2:
@@ -1290,13 +1281,12 @@ packages:
engines: {node: '>=6.0'}
dev: true
- /class-validator@0.14.0:
- resolution: {integrity: sha512-ct3ltplN8I9fOwUd8GrP8UQixwff129BkEtuWDKL5W45cQuLd19xqmTLu5ge78YDm/fdje6FMt0hGOhl0lii3A==}
+ /cli-progress@3.12.0:
+ resolution: {integrity: sha512-tRkV3HJ1ASwm19THiiLIXLO7Im7wlTuKnvkYaTkyoAPefqjNg7W7DHKUlGRxy9vxDvbyCYQkQozvptuMkGCg8A==}
+ engines: {node: '>=4'}
dependencies:
- '@types/validator': 13.11.2
- libphonenumber-js: 1.10.45
- validator: 13.11.0
- dev: false
+ string-width: 4.2.3
+ dev: true
/clone@2.1.2:
resolution: {integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==}
@@ -1324,19 +1314,12 @@ packages:
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
dev: true
- /combined-stream@1.0.8:
- resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
- engines: {node: '>= 0.8'}
- dependencies:
- delayed-stream: 1.0.0
- dev: false
-
/commander@7.2.0:
resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==}
engines: {node: '>= 10'}
dev: true
- /cosmiconfig@8.3.6(typescript@5.2.2):
+ /cosmiconfig@8.3.6(typescript@5.3.3):
resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==}
engines: {node: '>=14'}
peerDependencies:
@@ -1349,7 +1332,7 @@ packages:
js-yaml: 4.1.0
parse-json: 5.2.0
path-type: 4.0.0
- typescript: 5.2.2
+ typescript: 5.3.3
dev: true
/css-select@4.3.0:
@@ -1382,41 +1365,13 @@ packages:
css-tree: 1.1.3
dev: true
- /cssstyle@3.0.0:
- resolution: {integrity: sha512-N4u2ABATi3Qplzf0hWbVCdjenim8F3ojEXpBDF5hBpjzW182MjNGLqfmQ0SkSPeQ+V86ZXgeH8aXj6kayd4jgg==}
- engines: {node: '>=14'}
- dependencies:
- rrweb-cssom: 0.6.0
- dev: false
-
- /data-urls@4.0.0:
- resolution: {integrity: sha512-/mMTei/JXPqvFqQtfyTowxmJVwr2PVAeCcDxyFf6LhoOu/09TX2OX3kb2wzi4DMXcfj4OItwDOnhl5oziPnT6g==}
- engines: {node: '>=14'}
- dependencies:
- abab: 2.0.6
- whatwg-mimetype: 3.0.0
- whatwg-url: 12.0.1
- dev: false
-
- /debug@4.3.4:
- resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
- engines: {node: '>=6.0'}
- peerDependencies:
- supports-color: '*'
- peerDependenciesMeta:
- supports-color:
- optional: true
+ /define-data-property@1.1.1:
+ resolution: {integrity: sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==}
+ engines: {node: '>= 0.4'}
dependencies:
- ms: 2.1.2
- dev: false
-
- /decimal.js@10.4.3:
- resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==}
- dev: false
-
- /delayed-stream@1.0.0:
- resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
- engines: {node: '>=0.4.0'}
+ get-intrinsic: 1.2.2
+ gopd: 1.0.1
+ has-property-descriptors: 1.0.1
dev: false
/detect-libc@1.0.3:
@@ -1425,6 +1380,11 @@ packages:
hasBin: true
dev: true
+ /detect-libc@2.0.2:
+ resolution: {integrity: sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==}
+ engines: {node: '>=8'}
+ dev: true
+
/dom-serializer@1.4.1:
resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==}
dependencies:
@@ -1437,13 +1397,6 @@ packages:
resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==}
dev: true
- /domexception@4.0.0:
- resolution: {integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==}
- engines: {node: '>=12'}
- dependencies:
- webidl-conversions: 7.0.0
- dev: false
-
/domhandler@4.3.1:
resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==}
engines: {node: '>= 4'}
@@ -1468,14 +1421,18 @@ packages:
engines: {node: '>=6'}
dev: true
- /electron-to-chromium@1.4.537:
- resolution: {integrity: sha512-W1+g9qs9hviII0HAwOdehGYkr+zt7KKdmCcJcjH0mYg6oL8+ioT3Skjmt7BLoAQqXhjf40AXd+HlR4oAWMlXjA==}
+ /electron-to-chromium@1.4.648:
+ resolution: {integrity: sha512-EmFMarXeqJp9cUKu/QEciEApn0S/xRcpZWuAm32U7NgoZCimjsilKXHRO9saeEW55eHZagIDg6XTUOv32w9pjg==}
dev: true
- /element-internals-polyfill@1.3.8:
- resolution: {integrity: sha512-nymTA/NftVOlS6UjLCL8lKUm8MEgt6TXntQqGGKt+er4dzS9eU88zaGUHLTYVgdfifQ8JQFGbQERMvxse5GMrA==}
+ /element-internals-polyfill@1.3.10:
+ resolution: {integrity: sha512-hflkht5sNZ2LF2sP9+OHfqGDcr8R9NIiDCuDfXep8uptqqt0OjZDaWJ/7ip+OdoIZBFJL+fFJ3+aLku1cTIEGA==}
dev: false
+ /emoji-regex@8.0.0:
+ resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
+ dev: true
+
/entities@2.2.0:
resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==}
dev: true
@@ -1485,11 +1442,6 @@ packages:
engines: {node: '>=0.12'}
dev: true
- /entities@4.5.0:
- resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
- engines: {node: '>=0.12'}
- dev: false
-
/error-ex@1.3.2:
resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
dependencies:
@@ -1513,26 +1465,17 @@ packages:
to-regex-range: 5.0.1
dev: true
- /form-data@4.0.0:
- resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==}
- engines: {node: '>= 6'}
- dependencies:
- asynckit: 0.4.0
- combined-stream: 1.0.8
- mime-types: 2.1.35
- dev: false
-
- /function-bind@1.1.1:
- resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==}
+ /function-bind@1.1.2:
+ resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
dev: false
- /get-intrinsic@1.2.1:
- resolution: {integrity: sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==}
+ /get-intrinsic@1.2.2:
+ resolution: {integrity: sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==}
dependencies:
- function-bind: 1.1.1
- has: 1.0.3
+ function-bind: 1.1.2
has-proto: 1.0.1
has-symbols: 1.0.3
+ hasown: 2.0.0
dev: false
/get-port@4.2.0:
@@ -1540,13 +1483,19 @@ packages:
engines: {node: '>=6'}
dev: true
- /globals@13.22.0:
- resolution: {integrity: sha512-H1Ddc/PbZHTDVJSnj8kWptIRSD6AM3pK+mKytuIVF4uoBV7rshFlhhvA58ceJ5wp3Er58w6zj7bykMpYXt3ETw==}
+ /globals@13.24.0:
+ resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==}
engines: {node: '>=8'}
dependencies:
type-fest: 0.20.2
dev: true
+ /gopd@1.0.1:
+ resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
+ dependencies:
+ get-intrinsic: 1.2.2
+ dev: false
+
/has-flag@3.0.0:
resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
engines: {node: '>=4'}
@@ -1557,6 +1506,12 @@ packages:
engines: {node: '>=8'}
dev: true
+ /has-property-descriptors@1.0.1:
+ resolution: {integrity: sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==}
+ dependencies:
+ get-intrinsic: 1.2.2
+ dev: false
+
/has-proto@1.0.1:
resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==}
engines: {node: '>= 0.4'}
@@ -1567,22 +1522,15 @@ packages:
engines: {node: '>= 0.4'}
dev: false
- /has@1.0.3:
- resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==}
- engines: {node: '>= 0.4.0'}
- dependencies:
- function-bind: 1.1.1
- dev: false
-
- /html-encoding-sniffer@3.0.0:
- resolution: {integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==}
- engines: {node: '>=12'}
+ /hasown@2.0.0:
+ resolution: {integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==}
+ engines: {node: '>= 0.4'}
dependencies:
- whatwg-encoding: 2.0.0
+ function-bind: 1.1.2
dev: false
- /htmlnano@2.0.4(svgo@2.8.0)(typescript@5.2.2):
- resolution: {integrity: sha512-WGCkyGFwjKW1GeCBsPYacMvaMnZtFJ0zIRnC2NCddkA+IOEhTqskXrS7lep+3yYZw/nQ3dW1UAX4yA/GJyR8BA==}
+ /htmlnano@2.1.0(svgo@2.8.0)(typescript@5.3.3):
+ resolution: {integrity: sha512-jVGRE0Ep9byMBKEu0Vxgl8dhXYOUk0iNQ2pjsG+BcRB0u0oDF5A9p/iBGMg/PGKYUyMD0OAGu8dVT5Lzj8S58g==}
peerDependencies:
cssnano: ^6.0.0
postcss: ^8.3.11
@@ -1610,7 +1558,7 @@ packages:
uncss:
optional: true
dependencies:
- cosmiconfig: 8.3.6(typescript@5.2.2)
+ cosmiconfig: 8.3.6(typescript@5.3.3)
posthtml: 0.16.6
svgo: 2.8.0
timsort: 0.3.0
@@ -1627,34 +1575,6 @@ packages:
entities: 3.0.1
dev: true
- /http-proxy-agent@5.0.0:
- resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==}
- engines: {node: '>= 6'}
- dependencies:
- '@tootallnate/once': 2.0.0
- agent-base: 6.0.2
- debug: 4.3.4
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /https-proxy-agent@5.0.1:
- resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==}
- engines: {node: '>= 6'}
- dependencies:
- agent-base: 6.0.2
- debug: 4.3.4
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /iconv-lite@0.6.3:
- resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==}
- engines: {node: '>=0.10.0'}
- dependencies:
- safer-buffer: 2.1.2
- dev: false
-
/import-fresh@3.3.0:
resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
engines: {node: '>=6'}
@@ -1672,6 +1592,11 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
+ /is-fullwidth-code-point@3.0.0:
+ resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
+ engines: {node: '>=8'}
+ dev: true
+
/is-glob@4.0.3:
resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
engines: {node: '>=0.10.0'}
@@ -1688,14 +1613,10 @@ packages:
engines: {node: '>=0.12.0'}
dev: true
- /is-potential-custom-element-name@1.0.1:
- resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==}
- dev: false
-
- /iterable-observer@1.0.0:
- resolution: {integrity: sha512-DV9Cuh50EKRQ87V1L92E8R/rrEeowO78a86VDzvG350khRhjNAvkQMLxZ/02MOvoJeMl7NqU0Y4Y9z6xLOjS7g==}
+ /iterable-observer@1.0.1:
+ resolution: {integrity: sha512-qy2Kuf1drKVmWgWaRsqdM8EHanAW4xS37j1nFdVP07qiN0Mj4D5sl9dYA8mZJdX/d3De4bhZoFuVWXvcOM1usg==}
dependencies:
- '@swc/helpers': 0.4.36
+ '@swc/helpers': 0.5.3
dev: false
/js-tokens@4.0.0:
@@ -1709,44 +1630,6 @@ packages:
argparse: 2.0.1
dev: true
- /jsdom@22.1.0:
- resolution: {integrity: sha512-/9AVW7xNbsBv6GfWho4TTNjEo9fe6Zhf9O7s0Fhhr3u+awPwAJMKwAMXnkk5vBxflqLW9hTHX/0cs+P3gW+cQw==}
- engines: {node: '>=16'}
- peerDependencies:
- canvas: ^2.5.0
- peerDependenciesMeta:
- canvas:
- optional: true
- dependencies:
- abab: 2.0.6
- cssstyle: 3.0.0
- data-urls: 4.0.0
- decimal.js: 10.4.3
- domexception: 4.0.0
- form-data: 4.0.0
- html-encoding-sniffer: 3.0.0
- http-proxy-agent: 5.0.0
- https-proxy-agent: 5.0.1
- is-potential-custom-element-name: 1.0.1
- nwsapi: 2.2.7
- parse5: 7.1.2
- rrweb-cssom: 0.6.0
- saxes: 6.0.0
- symbol-tree: 3.2.4
- tough-cookie: 4.1.3
- w3c-xmlserializer: 4.0.0
- webidl-conversions: 7.0.0
- whatwg-encoding: 2.0.0
- whatwg-mimetype: 3.0.0
- whatwg-url: 12.0.1
- ws: 8.14.2
- xml-name-validator: 4.0.0
- transitivePeerDependencies:
- - bufferutil
- - supports-color
- - utf-8-validate
- dev: false
-
/json-parse-even-better-errors@2.3.1:
resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
dev: true
@@ -1757,26 +1640,21 @@ packages:
hasBin: true
dev: true
- /koajax@0.8.6(jsdom@22.1.0)(typescript@5.2.2):
- resolution: {integrity: sha512-XcI6q8xs/amvbQLtu1uRdgsOvT31WKUzdZ33oZqfWsSIB/k7qwhoTd1ut9U5GzYydDnatOLHRisS71FFp5bxKA==}
+ /koajax@0.9.6(typescript@5.3.3):
+ resolution: {integrity: sha512-Cv5HH7igfN7HEGLwRzu4TEzXLTm3QSpbR48Gif9dhPPBNKZ8ELS1bbh3Dik1s83vpKnnjC+DcFU8ql+LwNg3tQ==}
peerDependencies:
jsdom: '>=21'
dependencies:
- '@swc/helpers': 0.4.36
- iterable-observer: 1.0.0
- jsdom: 22.1.0
- regenerator-runtime: 0.13.11
- web-utility: 4.1.3(typescript@5.2.2)
+ '@swc/helpers': 0.5.3
+ iterable-observer: 1.0.1
+ regenerator-runtime: 0.14.1
+ web-utility: 4.1.3(typescript@5.3.3)
transitivePeerDependencies:
- typescript
dev: false
- /libphonenumber-js@1.10.45:
- resolution: {integrity: sha512-eeHcvGafEYCaKB4fo2uBINfG7j7PcGwBHUaTVfbwl/6KcjCgIKNlIOsSXVRp9BH10NQwmvvk+nQ1e/Yp4BGB7w==}
- dev: false
-
- /lightningcss-darwin-arm64@1.22.0:
- resolution: {integrity: sha512-aH2be3nNny+It5YEVm8tBSSdRlBVWQV8m2oJ7dESiYRzyY/E/bQUe2xlw5caaMuhlM9aoTMtOH25yzMhir0qPg==}
+ /lightningcss-darwin-arm64@1.23.0:
+ resolution: {integrity: sha512-kl4Pk3Q2lnE6AJ7Qaij47KNEfY2/UXRZBT/zqGA24B8qwkgllr/j7rclKOf1axcslNXvvUdztjo4Xqh39Yq1aA==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [darwin]
@@ -1784,8 +1662,8 @@ packages:
dev: true
optional: true
- /lightningcss-darwin-x64@1.22.0:
- resolution: {integrity: sha512-9KHRFA0Y6mNxRHeoQMp0YaI0R0O2kOgUlYPRjuasU4d+pI8NRhVn9bt0yX9VPs5ibWX1RbDViSPtGJvYYrfVAQ==}
+ /lightningcss-darwin-x64@1.23.0:
+ resolution: {integrity: sha512-KeRFCNoYfDdcolcFXvokVw+PXCapd2yHS1Diko1z1BhRz/nQuD5XyZmxjWdhmhN/zj5sH8YvWsp0/lPLVzqKpg==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [darwin]
@@ -1793,8 +1671,8 @@ packages:
dev: true
optional: true
- /lightningcss-freebsd-x64@1.22.0:
- resolution: {integrity: sha512-xaYL3xperGwD85rQioDb52ozF3NAJb+9wrge3jD9lxGffplu0Mn35rXMptB8Uc2N9Mw1i3Bvl7+z1evlqVl7ww==}
+ /lightningcss-freebsd-x64@1.23.0:
+ resolution: {integrity: sha512-xhnhf0bWPuZxcqknvMDRFFo2TInrmQRWZGB0f6YoAsZX8Y+epfjHeeOIGCfAmgF0DgZxHwYc8mIR5tQU9/+ROA==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [freebsd]
@@ -1802,8 +1680,8 @@ packages:
dev: true
optional: true
- /lightningcss-linux-arm-gnueabihf@1.22.0:
- resolution: {integrity: sha512-epQGvXIjOuxrZpMpMnRjK54ZqzhiHhCPLtHvw2fb6NeK2kK9YtF0wqmeTBiQ1AkbWfnnXGTstYaFNiadNK+StQ==}
+ /lightningcss-linux-arm-gnueabihf@1.23.0:
+ resolution: {integrity: sha512-fBamf/bULvmWft9uuX+bZske236pUZEoUlaHNBjnueaCTJ/xd8eXgb0cEc7S5o0Nn6kxlauMBnqJpF70Bgq3zg==}
engines: {node: '>= 12.0.0'}
cpu: [arm]
os: [linux]
@@ -1811,8 +1689,8 @@ packages:
dev: true
optional: true
- /lightningcss-linux-arm64-gnu@1.22.0:
- resolution: {integrity: sha512-AArGtKSY4DGTA8xP8SDyNyKtpsUl1Rzq6FW4JomeyUQ4nBrR71uPChksTpj3gmWuGhZeRKLeCUI1DBid/zhChg==}
+ /lightningcss-linux-arm64-gnu@1.23.0:
+ resolution: {integrity: sha512-RS7sY77yVLOmZD6xW2uEHByYHhQi5JYWmgVumYY85BfNoVI3DupXSlzbw+b45A9NnVKq45+oXkiN6ouMMtTwfg==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [linux]
@@ -1820,8 +1698,8 @@ packages:
dev: true
optional: true
- /lightningcss-linux-arm64-musl@1.22.0:
- resolution: {integrity: sha512-RRraNgP8hnBPhInTTUdlFm+z16C/ghbxBG51Sw00hd7HUyKmEUKRozyc5od+/N6pOrX/bIh5vIbtMXIxsos0lg==}
+ /lightningcss-linux-arm64-musl@1.23.0:
+ resolution: {integrity: sha512-cU00LGb6GUXCwof6ACgSMKo3q7XYbsyTj0WsKHLi1nw7pV0NCq8nFTn6ZRBYLoKiV8t+jWl0Hv8KkgymmK5L5g==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [linux]
@@ -1829,8 +1707,8 @@ packages:
dev: true
optional: true
- /lightningcss-linux-x64-gnu@1.22.0:
- resolution: {integrity: sha512-grdrhYGRi2KrR+bsXJVI0myRADqyA7ekprGxiuK5QRNkv7kj3Yq1fERDNyzZvjisHwKUi29sYMClscbtl+/Zpw==}
+ /lightningcss-linux-x64-gnu@1.23.0:
+ resolution: {integrity: sha512-q4jdx5+5NfB0/qMbXbOmuC6oo7caPnFghJbIAV90cXZqgV8Am3miZhC4p+sQVdacqxfd+3nrle4C8icR3p1AYw==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [linux]
@@ -1838,8 +1716,8 @@ packages:
dev: true
optional: true
- /lightningcss-linux-x64-musl@1.22.0:
- resolution: {integrity: sha512-t5f90X+iQUtIyR56oXIHMBUyQFX/zwmPt72E6Dane3P8KNGlkijTg2I75XVQS860gNoEFzV7Mm5ArRRA7u5CAQ==}
+ /lightningcss-linux-x64-musl@1.23.0:
+ resolution: {integrity: sha512-G9Ri3qpmF4qef2CV/80dADHKXRAQeQXpQTLx7AiQrBYQHqBjB75oxqj06FCIe5g4hNCqLPnM9fsO4CyiT1sFSQ==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [linux]
@@ -1847,8 +1725,8 @@ packages:
dev: true
optional: true
- /lightningcss-win32-x64-msvc@1.22.0:
- resolution: {integrity: sha512-64HTDtOOZE9PUCZJiZZQpyqXBbdby1lnztBccnqh+NtbKxjnGzP92R2ngcgeuqMPecMNqNWxgoWgTGpC+yN5Sw==}
+ /lightningcss-win32-x64-msvc@1.23.0:
+ resolution: {integrity: sha512-1rcBDJLU+obPPJM6qR5fgBUiCdZwZLafZM5f9kwjFLkb/UBNIzmae39uCSmh71nzPCTXZqHbvwu23OWnWEz+eg==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [win32]
@@ -1856,44 +1734,44 @@ packages:
dev: true
optional: true
- /lightningcss@1.22.0:
- resolution: {integrity: sha512-+z0qvwRVzs4XGRXelnWRNwqsXUx8k3bSkbP8vD42kYKSk3z9OM2P3e/gagT7ei/gwh8DTS80LZOFZV6lm8Z8Fg==}
+ /lightningcss@1.23.0:
+ resolution: {integrity: sha512-SEArWKMHhqn/0QzOtclIwH5pXIYQOUEkF8DgICd/105O+GCgd7jxjNod/QPnBCSWvpRHQBGVz5fQ9uScby03zA==}
engines: {node: '>= 12.0.0'}
dependencies:
detect-libc: 1.0.3
optionalDependencies:
- lightningcss-darwin-arm64: 1.22.0
- lightningcss-darwin-x64: 1.22.0
- lightningcss-freebsd-x64: 1.22.0
- lightningcss-linux-arm-gnueabihf: 1.22.0
- lightningcss-linux-arm64-gnu: 1.22.0
- lightningcss-linux-arm64-musl: 1.22.0
- lightningcss-linux-x64-gnu: 1.22.0
- lightningcss-linux-x64-musl: 1.22.0
- lightningcss-win32-x64-msvc: 1.22.0
+ lightningcss-darwin-arm64: 1.23.0
+ lightningcss-darwin-x64: 1.23.0
+ lightningcss-freebsd-x64: 1.23.0
+ lightningcss-linux-arm-gnueabihf: 1.23.0
+ lightningcss-linux-arm64-gnu: 1.23.0
+ lightningcss-linux-arm64-musl: 1.23.0
+ lightningcss-linux-x64-gnu: 1.23.0
+ lightningcss-linux-x64-musl: 1.23.0
+ lightningcss-win32-x64-msvc: 1.23.0
dev: true
/lines-and-columns@1.2.4:
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
dev: true
- /lmdb@2.7.11:
- resolution: {integrity: sha512-x9bD4hVp7PFLUoELL8RglbNXhAMt5CYhkmss+CEau9KlNoilsTzNi9QDsPZb3KMpOGZXG6jmXhW3bBxE2XVztw==}
+ /lmdb@2.8.5:
+ resolution: {integrity: sha512-9bMdFfc80S+vSldBmG3HOuLVHnxRdNTlpzR6QDnzqCQtCzGUEAGTzBKYMeIM+I/sU4oZfgbcbS7X7F65/z/oxQ==}
hasBin: true
requiresBuild: true
dependencies:
- msgpackr: 1.8.5
- node-addon-api: 4.3.0
- node-gyp-build-optional-packages: 5.0.6
- ordered-binary: 1.4.1
+ msgpackr: 1.10.1
+ node-addon-api: 6.1.0
+ node-gyp-build-optional-packages: 5.1.1
+ ordered-binary: 1.5.1
weak-lru-cache: 1.2.2
optionalDependencies:
- '@lmdb/lmdb-darwin-arm64': 2.7.11
- '@lmdb/lmdb-darwin-x64': 2.7.11
- '@lmdb/lmdb-linux-arm': 2.7.11
- '@lmdb/lmdb-linux-arm64': 2.7.11
- '@lmdb/lmdb-linux-x64': 2.7.11
- '@lmdb/lmdb-win32-x64': 2.7.11
+ '@lmdb/lmdb-darwin-arm64': 2.8.5
+ '@lmdb/lmdb-darwin-x64': 2.8.5
+ '@lmdb/lmdb-linux-arm': 2.8.5
+ '@lmdb/lmdb-linux-arm64': 2.8.5
+ '@lmdb/lmdb-linux-x64': 2.8.5
+ '@lmdb/lmdb-win32-x64': 2.8.5
dev: true
/lru-cache@6.0.0:
@@ -1915,41 +1793,23 @@ packages:
picomatch: 2.3.1
dev: true
- /mime-db@1.52.0:
- resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
- engines: {node: '>= 0.6'}
- dev: false
-
- /mime-types@2.1.35:
- resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
- engines: {node: '>= 0.6'}
- dependencies:
- mime-db: 1.52.0
- dev: false
-
- /mobx-restful@0.6.11(jsdom@22.1.0)(mobx@6.10.2)(typescript@5.2.2):
- resolution: {integrity: sha512-93hwtSSc50A7r+rLim3dRXlAJPx+kUR1qYWxM6L9kuIag8R5oTFNCte8FlsgOegGcX2p66U1Tkn6T26lomIoxg==}
+ /mobx-restful@0.7.0-rc.0(mobx@6.12.0)(typescript@5.3.3):
+ resolution: {integrity: sha512-fM2ymsA+u8N0sCK8d1sb26Zja9G4PxKMWuRzFJzVzvKX0ba1pViRCeC4qiH8ITzhAw/vIySNeGZ8iObxAZN5ww==}
peerDependencies:
- mobx: '>=4'
- dependencies:
- '@swc/helpers': 0.5.2
- class-validator: 0.14.0
- koajax: 0.8.6(jsdom@22.1.0)(typescript@5.2.2)
- mobx: 6.10.2
- reflect-metadata: 0.1.13
- regenerator-runtime: 0.14.0
- web-utility: 4.1.3(typescript@5.2.2)
+ mobx: '>=6.11'
+ dependencies:
+ '@swc/helpers': 0.5.3
+ koajax: 0.9.6(typescript@5.3.3)
+ mobx: 6.12.0
+ regenerator-runtime: 0.14.1
+ web-utility: 4.1.3(typescript@5.3.3)
transitivePeerDependencies:
- jsdom
- typescript
dev: false
- /mobx@6.10.2:
- resolution: {integrity: sha512-B1UGC3ieK3boCjnMEcZSwxqRDMdzX65H/8zOHbuTY8ZhvrIjTUoLRR2TP2bPqIgYRfb3+dUigu8yMZufNjn0LQ==}
-
- /ms@2.1.2:
- resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
- dev: false
+ /mobx@6.12.0:
+ resolution: {integrity: sha512-Mn6CN6meXEnMa0a5u6a5+RKrqRedHBhZGd15AWLk9O6uFY4KYHzImdt8JI8WODo1bjTSRnwXhJox+FCUZhCKCQ==}
/msgpackr-extract@3.0.2:
resolution: {integrity: sha512-SdzXp4kD/Qf8agZ9+iTu6eql0m3kWm1A2y1hkpTeVNENutaB0BwHlSvAIaMxwntmRUAUjon2V4L8Z/njd0Ct8A==}
@@ -1967,29 +1827,19 @@ packages:
dev: true
optional: true
- /msgpackr@1.8.5:
- resolution: {integrity: sha512-mpPs3qqTug6ahbblkThoUY2DQdNXcm4IapwOS3Vm/87vmpzLVelvp9h3It1y9l1VPpiFLV11vfOXnmeEwiIXwg==}
- optionalDependencies:
- msgpackr-extract: 3.0.2
- dev: true
-
- /msgpackr@1.9.9:
- resolution: {integrity: sha512-sbn6mioS2w0lq1O6PpGtsv6Gy8roWM+o3o4Sqjd6DudrL/nOugY+KyJUimoWzHnf9OkO0T6broHFnYE/R05t9A==}
+ /msgpackr@1.10.1:
+ resolution: {integrity: sha512-r5VRLv9qouXuLiIBrLpl2d5ZvPt8svdQTl5/vMvE4nzDMyEX4sgW5yWhuBBj5UmgwOTWj8CIdSXn5sAfsHAWIQ==}
optionalDependencies:
msgpackr-extract: 3.0.2
dev: true
- /node-addon-api@4.3.0:
- resolution: {integrity: sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ==}
+ /node-addon-api@6.1.0:
+ resolution: {integrity: sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==}
dev: true
- /node-addon-api@7.0.0:
- resolution: {integrity: sha512-vgbBJTS4m5/KkE16t5Ly0WW9hz46swAstv0hYYwMtbG7AznRhNyfLRe8HZAiWIpcHzoO7HxhLuBQj9rJ/Ho0ZA==}
- dev: true
-
- /node-gyp-build-optional-packages@5.0.6:
- resolution: {integrity: sha512-2ZJErHG4du9G3/8IWl/l9Bp5BBFy63rno5GVmjQijvTuUZKsl6g8RB4KH/x3NLcV5ZBb4GsXmAuTYr6dRml3Gw==}
- hasBin: true
+ /node-addon-api@7.1.0:
+ resolution: {integrity: sha512-mNcltoe1R8o7STTegSOHdnJNN7s5EUvhoS7ShnTHDyOSd+8H+UdWODq6qSv67PjC8Zc5JRT8+oLAMCr0SIXw7g==}
+ engines: {node: ^16 || ^18 || >= 20}
dev: true
/node-gyp-build-optional-packages@5.0.7:
@@ -1999,8 +1849,15 @@ packages:
dev: true
optional: true
- /node-releases@2.0.13:
- resolution: {integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==}
+ /node-gyp-build-optional-packages@5.1.1:
+ resolution: {integrity: sha512-+P72GAjVAbTxjjwUmwjVrqrdZROD4nf8KgpBoDxqXXTiYZZt/ud60dE5yvCSr9lRO8e8yv6kgJIC0K0PfZFVQw==}
+ hasBin: true
+ dependencies:
+ detect-libc: 2.0.2
+ dev: true
+
+ /node-releases@2.0.14:
+ resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==}
dev: true
/nth-check@2.1.1:
@@ -2013,37 +1870,33 @@ packages:
resolution: {integrity: sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==}
dev: true
- /nwsapi@2.2.7:
- resolution: {integrity: sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==}
- dev: false
-
- /object-inspect@1.12.3:
- resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==}
+ /object-inspect@1.13.1:
+ resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==}
dev: false
- /ordered-binary@1.4.1:
- resolution: {integrity: sha512-9LtiGlPy982CsgxZvJGNNp2/NnrgEr6EAyN3iIEP3/8vd3YLgAZQHbQ75ZrkfBRGrNg37Dk3U6tuVb+B4Xfslg==}
+ /ordered-binary@1.5.1:
+ resolution: {integrity: sha512-5VyHfHY3cd0iza71JepYG50My+YUbrFtGoUz2ooEydPyPM7Aai/JW098juLr+RG6+rDJuzNNTsEQu2DZa1A41A==}
dev: true
- /parcel@2.9.3(@swc/helpers@0.5.2)(typescript@5.2.2):
- resolution: {integrity: sha512-2GTVocFkwblV/TIg9AmT7TI2fO4xdWkyN8aFUEVtiVNWt96GTR3FgQyHFValfCbcj1k9Xf962Ws2hYXYUr9k1Q==}
+ /parcel@2.11.0(@swc/helpers@0.5.3)(typescript@5.3.3):
+ resolution: {integrity: sha512-H/RI1/DmuOkL8RuG/EpNPvtzrbF+7jA/R56ydEEm+lqFbYktKB4COR7JXdHkZXRgbSJyimrFB8d0r9+SaRnj0Q==}
engines: {node: '>= 12.0.0'}
hasBin: true
peerDependenciesMeta:
'@parcel/core':
optional: true
dependencies:
- '@parcel/config-default': 2.9.3(@parcel/core@2.9.3)(@swc/helpers@0.5.2)(typescript@5.2.2)
- '@parcel/core': 2.9.3
- '@parcel/diagnostic': 2.9.3
- '@parcel/events': 2.9.3
- '@parcel/fs': 2.9.3(@parcel/core@2.9.3)
- '@parcel/logger': 2.9.3
- '@parcel/package-manager': 2.9.3(@parcel/core@2.9.3)
- '@parcel/reporter-cli': 2.9.3(@parcel/core@2.9.3)
- '@parcel/reporter-dev-server': 2.9.3(@parcel/core@2.9.3)
- '@parcel/reporter-tracer': 2.9.3(@parcel/core@2.9.3)
- '@parcel/utils': 2.9.3
+ '@parcel/config-default': 2.11.0(@parcel/core@2.11.0)(@swc/helpers@0.5.3)(typescript@5.3.3)
+ '@parcel/core': 2.11.0
+ '@parcel/diagnostic': 2.11.0
+ '@parcel/events': 2.11.0
+ '@parcel/fs': 2.11.0(@parcel/core@2.11.0)
+ '@parcel/logger': 2.11.0
+ '@parcel/package-manager': 2.11.0(@parcel/core@2.11.0)
+ '@parcel/reporter-cli': 2.11.0
+ '@parcel/reporter-dev-server': 2.11.0
+ '@parcel/reporter-tracer': 2.11.0
+ '@parcel/utils': 2.11.0
chalk: 4.1.2
commander: 7.2.0
get-port: 4.2.0
@@ -2070,18 +1923,12 @@ packages:
resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
engines: {node: '>=8'}
dependencies:
- '@babel/code-frame': 7.22.13
+ '@babel/code-frame': 7.23.5
error-ex: 1.3.2
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
dev: true
- /parse5@7.1.2:
- resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==}
- dependencies:
- entities: 4.5.0
- dev: false
-
/path-type@4.0.0:
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
engines: {node: '>=8'}
@@ -2129,15 +1976,6 @@ packages:
posthtml-render: 3.0.0
dev: true
- /psl@1.9.0:
- resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==}
- dev: false
-
- /punycode@2.3.0:
- resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==}
- engines: {node: '>=6'}
- dev: false
-
/qs@6.11.2:
resolution: {integrity: sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==}
engines: {node: '>=0.6'}
@@ -2145,10 +1983,6 @@ packages:
side-channel: 1.0.4
dev: false
- /querystringify@2.2.0:
- resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==}
- dev: false
-
/react-error-overlay@6.0.9:
resolution: {integrity: sha512-nQTTcUu+ATDbrSD1BZHr5kgSD4oF8OFjxun8uAaL8RwPBacGBNPf/yAuVVdx17N8XNzRDMrZ9XcKZHCjPW+9ew==}
dev: true
@@ -2158,19 +1992,12 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
- /reflect-metadata@0.1.13:
- resolution: {integrity: sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg==}
- dev: false
-
/regenerator-runtime@0.13.11:
resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==}
+ dev: true
- /regenerator-runtime@0.14.0:
- resolution: {integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==}
- dev: false
-
- /requires-port@1.0.0:
- resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==}
+ /regenerator-runtime@0.14.1:
+ resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==}
dev: false
/resolve-from@4.0.0:
@@ -2178,25 +2005,10 @@ packages:
engines: {node: '>=4'}
dev: true
- /rrweb-cssom@0.6.0:
- resolution: {integrity: sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw==}
- dev: false
-
/safe-buffer@5.2.1:
resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
dev: true
- /safer-buffer@2.1.2:
- resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
- dev: false
-
- /saxes@6.0.0:
- resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==}
- engines: {node: '>=v12.22.7'}
- dependencies:
- xmlchars: 2.2.0
- dev: false
-
/semver@7.5.4:
resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==}
engines: {node: '>=10'}
@@ -2205,12 +2017,23 @@ packages:
lru-cache: 6.0.0
dev: true
+ /set-function-length@1.2.0:
+ resolution: {integrity: sha512-4DBHDoyHlM1IRPGYcoxexgh67y4ueR53FKV1yyxwFMY7aCqcN/38M1+SwZ/qJQ8iLv7+ck385ot4CcisOAPT9w==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ define-data-property: 1.1.1
+ function-bind: 1.1.2
+ get-intrinsic: 1.2.2
+ gopd: 1.0.1
+ has-property-descriptors: 1.0.1
+ dev: false
+
/side-channel@1.0.4:
resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==}
dependencies:
- call-bind: 1.0.2
- get-intrinsic: 1.2.1
- object-inspect: 1.12.3
+ call-bind: 1.0.5
+ get-intrinsic: 1.2.2
+ object-inspect: 1.13.1
dev: false
/source-map@0.6.1:
@@ -2228,6 +2051,22 @@ packages:
deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility'
dev: true
+ /string-width@4.2.3:
+ resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
+ engines: {node: '>=8'}
+ dependencies:
+ emoji-regex: 8.0.0
+ is-fullwidth-code-point: 3.0.0
+ strip-ansi: 6.0.1
+ dev: true
+
+ /strip-ansi@6.0.1:
+ resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
+ engines: {node: '>=8'}
+ dependencies:
+ ansi-regex: 5.0.1
+ dev: true
+
/supports-color@5.5.0:
resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
engines: {node: '>=4'}
@@ -2256,10 +2095,6 @@ packages:
stable: 0.1.8
dev: true
- /symbol-tree@3.2.4:
- resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==}
- dev: false
-
/term-size@2.2.1:
resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==}
engines: {node: '>=8'}
@@ -2276,23 +2111,6 @@ packages:
is-number: 7.0.0
dev: true
- /tough-cookie@4.1.3:
- resolution: {integrity: sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==}
- engines: {node: '>=6'}
- dependencies:
- psl: 1.9.0
- punycode: 2.3.0
- universalify: 0.2.0
- url-parse: 1.5.10
- dev: false
-
- /tr46@4.1.1:
- resolution: {integrity: sha512-2lv/66T7e5yNyhAAC4NaKe5nVavzuGJQVVtRYLyQ2OI8tsJ61PMLlelehb0wi2Hx6+hT/OJUWZcw8MjlSRnxvw==}
- engines: {node: '>=14'}
- dependencies:
- punycode: 2.3.0
- dev: false
-
/tslib@2.6.2:
resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
@@ -2301,117 +2119,42 @@ packages:
engines: {node: '>=10'}
dev: true
- /typescript@5.2.2:
- resolution: {integrity: sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==}
+ /typescript@5.3.3:
+ resolution: {integrity: sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==}
engines: {node: '>=14.17'}
hasBin: true
- /universalify@0.2.0:
- resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==}
- engines: {node: '>= 4.0.0'}
- dev: false
-
- /update-browserslist-db@1.0.13(browserslist@4.22.1):
+ /update-browserslist-db@1.0.13(browserslist@4.22.3):
resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==}
hasBin: true
peerDependencies:
browserslist: '>= 4.21.0'
dependencies:
- browserslist: 4.22.1
+ browserslist: 4.22.3
escalade: 3.1.1
picocolors: 1.0.0
dev: true
- /url-parse@1.5.10:
- resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==}
- dependencies:
- querystringify: 2.2.0
- requires-port: 1.0.0
- dev: false
-
- /utility-types@3.10.0:
- resolution: {integrity: sha512-O11mqxmi7wMKCo6HKFt5AhO4BwY3VV68YU07tgxfz8zJTIxr4BpsezN49Ffwy9j3ZpwwJp4fkRwjRzq3uWE6Rg==}
+ /utility-types@3.11.0:
+ resolution: {integrity: sha512-6Z7Ma2aVEWisaL6TvBCy7P8rm2LQoPv6dJ7ecIaIixHcwfbJ0x7mWdbcwlIM5IGQxPZSFYeqRCqlOOeKoJYMkw==}
engines: {node: '>= 4'}
dev: true
- /validator@13.11.0:
- resolution: {integrity: sha512-Ii+sehpSfZy+At5nPdnyMhx78fEoPDkR2XW/zimHEL3MyGJQOCQ7WeP20jPYRz7ZCpcKLB21NxuXHF3bxjStBQ==}
- engines: {node: '>= 0.10'}
- dev: false
-
- /w3c-xmlserializer@4.0.0:
- resolution: {integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==}
- engines: {node: '>=14'}
- dependencies:
- xml-name-validator: 4.0.0
- dev: false
-
/weak-lru-cache@1.2.2:
resolution: {integrity: sha512-DEAoo25RfSYMuTGc9vPJzZcZullwIqRDSI9LOy+fkCJPi6hykCnfKaXTuPBDuXAUcqHXyOgFtHNp/kB2FjYHbw==}
dev: true
- /web-utility@4.1.3(typescript@5.2.2):
+ /web-utility@4.1.3(typescript@5.3.3):
resolution: {integrity: sha512-NLk7jXW/3WKMXxr/THwRilzjjsGmK78nSZJShzcDSwmAmyzKLkG28kxSVX8hw9Eynp+dOKAjeK/CB/kLZec6rQ==}
peerDependencies:
typescript: '>=4.1'
dependencies:
- '@swc/helpers': 0.5.2
- element-internals-polyfill: 1.3.8
- regenerator-runtime: 0.14.0
- typescript: 5.2.2
- dev: false
-
- /webidl-conversions@7.0.0:
- resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==}
- engines: {node: '>=12'}
- dev: false
-
- /whatwg-encoding@2.0.0:
- resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==}
- engines: {node: '>=12'}
- dependencies:
- iconv-lite: 0.6.3
- dev: false
-
- /whatwg-mimetype@3.0.0:
- resolution: {integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==}
- engines: {node: '>=12'}
- dev: false
-
- /whatwg-url@12.0.1:
- resolution: {integrity: sha512-Ed/LrqB8EPlGxjS+TrsXcpUond1mhccS3pchLhzSgPCnTimUCKj3IZE75pAs5m6heB2U2TMerKFUXheyHY+VDQ==}
- engines: {node: '>=14'}
- dependencies:
- tr46: 4.1.1
- webidl-conversions: 7.0.0
- dev: false
-
- /ws@8.14.2:
- resolution: {integrity: sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g==}
- engines: {node: '>=10.0.0'}
- peerDependencies:
- bufferutil: ^4.0.1
- utf-8-validate: '>=5.0.2'
- peerDependenciesMeta:
- bufferutil:
- optional: true
- utf-8-validate:
- optional: true
+ '@swc/helpers': 0.5.3
+ element-internals-polyfill: 1.3.10
+ regenerator-runtime: 0.14.1
+ typescript: 5.3.3
dev: false
- /xml-name-validator@4.0.0:
- resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==}
- engines: {node: '>=12'}
- dev: false
-
- /xmlchars@2.2.0:
- resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==}
- dev: false
-
- /xxhash-wasm@0.4.2:
- resolution: {integrity: sha512-/eyHVRJQCirEkSZ1agRSCwriMhwlyUcFkXD5TPVSLP+IPzjsqMVzZwdoczLp1SoQU0R3dxz1RpIK+4YNQbCVOA==}
- dev: true
-
/yallist@4.0.0:
resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
dev: true
diff --git a/wrapper/Strapi/source/index.ts b/wrapper/Strapi/source/index.ts
index 0a47742..7f13e8e 100644
--- a/wrapper/Strapi/source/index.ts
+++ b/wrapper/Strapi/source/index.ts
@@ -1,6 +1,6 @@
import { TypeKeys } from 'web-utility';
import { stringify } from 'qs';
-import * as MobX from 'mobx';
+import { computed, observable } from 'mobx';
import {
IDType,
DataObject,
@@ -38,8 +38,8 @@ export type StrapiNestedData = {
[K in keyof T]: T[K] extends DataObject[]
? StrapiListWrapper
: T[K] extends DataObject
- ? StrapiItemWrapper
- : T[K];
+ ? StrapiItemWrapper
+ : T[K];
};
export type StrapiPopulateQuery = {
@@ -56,19 +56,14 @@ export abstract class StrapiListModel<
D extends DataObject,
F extends Filter = Filter
> extends ListModel {
- constructor() {
- super();
- MobX.makeObservable?.(this);
- }
-
populate: StrapiPopulateQuery = {};
searchKeys: Exclude, this['indexKey']>[] = [];
- @MobX.observable
- keywords = '';
+ @observable
+ accessor keywords = '';
- @MobX.computed
+ @computed
get searchFilter() {
const words = this.keywords.split(/\s+/);
diff --git a/wrapper/Strapi/tsconfig.json b/wrapper/Strapi/tsconfig.json
index e895a64..26eca79 100644
--- a/wrapper/Strapi/tsconfig.json
+++ b/wrapper/Strapi/tsconfig.json
@@ -1,11 +1,11 @@
{
"compilerOptions": {
- "target": "ES5",
+ "target": "ES6",
"module": "ES6",
"moduleResolution": "Node",
- "experimentalDecorators": true,
+ "useDefineForClassFields": true,
"skipLibCheck": true,
- "lib": ["ES2022", "DOM"]
+ "lib": ["ES2023", "DOM"]
},
"include": ["source/*.ts"]
}