diff --git a/.parcelrc b/.parcelrc new file mode 100644 index 0000000..236c7c7 --- /dev/null +++ b/.parcelrc @@ -0,0 +1,9 @@ +{ + "extends": "@parcel/config-default", + "transformers": { + "*.{js,mjs,jsx,cjs,ts,tsx}": [ + "@parcel/transformer-js", + "@parcel/transformer-react-refresh-wrap" + ] + } +} diff --git a/babel.config.js b/babel.config.js new file mode 100644 index 0000000..9aa468c --- /dev/null +++ b/babel.config.js @@ -0,0 +1,3 @@ +module.exports = { + presets: [require.resolve("@babel/preset-typescript")], +}; diff --git a/package.json b/package.json index b8c663b..1abb616 100644 --- a/package.json +++ b/package.json @@ -1,4 +1,5 @@ { + "name": "suspense-repo", "private": true, "scripts": { "clear": "npm run clear:parcel-cache & npm run clear:builds & npm run clear:node_modules", @@ -6,23 +7,25 @@ "clear:parcel-cache": "rm -rf ./.parcel-cache", "clear:node_modules": "rm -rf ./node_modules && rm -rf ./packages/*/node_modules", "docs": "cd packages/suspense-website && pnpm build", - "prerelease": "rm -rf ./.parcel-cache && pnpm -r run build", + "prerelease": "preconstruct build", "prettier": "prettier --write \"**/*.{css,html,js,json,jsx,ts,tsx}\"", "test": "pnpm -r run test", "typescript": "tsc --noEmit", "typescript:watch": "tsc --noEmit --watch" }, "devDependencies": { - "@parcel/core": "^2.8.3", - "@parcel/packager-ts": "^2.8.3", - "@parcel/transformer-inline-string": "^2.8.3", - "@parcel/transformer-typescript-types": "^2.8.3", + "@babel/preset-typescript": "^7.21.5", + "@parcel/config-default": "^2.9.1", + "@parcel/core": "^2.9.1", + "@parcel/transformer-js": "^2.9.1", + "@parcel/transformer-react-refresh-wrap": "^2.9.1", + "@preconstruct/cli": "^2.7.0", "@types/jest": "^29.4.0", "@types/node": "^18.14.6", "@types/react": "^18.0.26", "@types/react-dom": "^18.0.10", "@types/react-virtualized-auto-sizer": "^1.0.1", - "parcel": "^2.8.3", + "parcel": "^2.9.1", "path-browserify": "^1.0.0", "prettier": "latest", "process": "^0.11.10", @@ -35,5 +38,16 @@ "packages/interval-utilities", "packages/suspense", "packages/suspense-website" - ] + ], + "preconstruct": { + "packages": [ + "packages/!(suspense-website)" + ], + "exports": { + "importConditionDefaultExport": "default" + }, + "___experimentalFlags_WILL_CHANGE_IN_PATCH": { + "importsConditions": true + } + } } diff --git a/packages/array-sorting-utilities/package.json b/packages/array-sorting-utilities/package.json index 0d68783..e2cec25 100644 --- a/packages/array-sorting-utilities/package.json +++ b/packages/array-sorting-utilities/package.json @@ -9,9 +9,21 @@ "url": "git+https://github.com/bvaughn/suspense.git" }, "source": "src/index.ts", - "main": "dist/array-sorting-utilities.js", - "module": "dist/array-sorting-utilities.module.js", - "types": "dist/array-sorting-utilities.d.ts", + "main": "dist/array-sorting-utilities.cjs.js", + "module": "dist/array-sorting-utilities.esm.js", + "exports": { + ".": { + "types": { + "import": "./dist/array-sorting-utilities.cjs.mjs", + "default": "./dist/array-sorting-utilities.cjs.js" + }, + "module": "./dist/array-sorting-utilities.esm.js", + "import": "./dist/array-sorting-utilities.cjs.mjs", + "default": "./dist/array-sorting-utilities.cjs.js" + }, + "./package.json": "./package.json" + }, + "types": "dist/array-sorting-utilities.cjs.d.ts", "scripts": { "build": "parcel build", "test": "jest", diff --git a/packages/interval-utilities/package.json b/packages/interval-utilities/package.json index c54df50..231e385 100644 --- a/packages/interval-utilities/package.json +++ b/packages/interval-utilities/package.json @@ -9,9 +9,21 @@ "url": "git+https://github.com/bvaughn/suspense.git" }, "source": "src/index.ts", - "main": "dist/interval-utilities.js", - "module": "dist/interval-utilities.module.js", - "types": "dist/interval-utilities.d.ts", + "main": "dist/interval-utilities.cjs.js", + "module": "dist/interval-utilities.esm.js", + "exports": { + ".": { + "types": { + "import": "./dist/interval-utilities.cjs.mjs", + "default": "./dist/interval-utilities.cjs.js" + }, + "module": "./dist/interval-utilities.esm.js", + "import": "./dist/interval-utilities.cjs.mjs", + "default": "./dist/interval-utilities.cjs.js" + }, + "./package.json": "./package.json" + }, + "types": "dist/interval-utilities.cjs.d.ts", "scripts": { "build": "parcel build", "test": "jest", diff --git a/packages/point-utilities/package.json b/packages/point-utilities/package.json index f038700..56a8120 100644 --- a/packages/point-utilities/package.json +++ b/packages/point-utilities/package.json @@ -9,9 +9,21 @@ "url": "git+https://github.com/bvaughn/suspense.git" }, "source": "src/index.ts", - "main": "dist/point-utilities.js", - "module": "dist/point-utilities.module.js", - "types": "dist/point-utilities.d.ts", + "main": "dist/point-utilities.cjs.js", + "module": "dist/point-utilities.esm.js", + "exports": { + ".": { + "types": { + "import": "./dist/point-utilities.cjs.mjs", + "default": "./dist/point-utilities.cjs.js" + }, + "module": "./dist/point-utilities.esm.js", + "import": "./dist/point-utilities.cjs.mjs", + "default": "./dist/point-utilities.cjs.js" + }, + "./package.json": "./package.json" + }, + "types": "dist/point-utilities.cjs.d.ts", "scripts": { "build": "parcel build", "test": "jest", diff --git a/packages/suspense/package.json b/packages/suspense/package.json index 0dc3d07..a437697 100644 --- a/packages/suspense/package.json +++ b/packages/suspense/package.json @@ -9,9 +9,21 @@ "url": "git+https://github.com/bvaughn/suspense.git" }, "source": "src/index.ts", - "main": "dist/suspense.js", - "module": "dist/suspense.module.js", - "types": "dist/suspense.d.ts", + "main": "dist/suspense.cjs.js", + "module": "dist/suspense.esm.js", + "exports": { + ".": { + "types": { + "import": "./dist/suspense.cjs.mjs", + "default": "./dist/suspense.cjs.js" + }, + "module": "./dist/suspense.esm.js", + "import": "./dist/suspense.cjs.mjs", + "default": "./dist/suspense.cjs.js" + }, + "./package.json": "./package.json" + }, + "types": "dist/suspense.cjs.d.ts", "scripts": { "build": "parcel build", "test": "pnpm run test:browser & pnpm run test:node", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index f09167e..2abba62 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -4,18 +4,24 @@ importers: .: devDependencies: + '@babel/preset-typescript': + specifier: ^7.21.5 + version: 7.21.5 + '@parcel/config-default': + specifier: ^2.9.1 + version: 2.9.1(@parcel/core@2.9.1) '@parcel/core': - specifier: ^2.8.3 - version: 2.8.3 - '@parcel/packager-ts': - specifier: ^2.8.3 - version: 2.8.3(@parcel/core@2.8.3) - '@parcel/transformer-inline-string': - specifier: ^2.8.3 - version: 2.8.3(@parcel/core@2.8.3) - '@parcel/transformer-typescript-types': - specifier: ^2.8.3 - version: 2.8.3(@parcel/core@2.8.3)(typescript@4.9.5) + specifier: ^2.9.1 + version: 2.9.1 + '@parcel/transformer-js': + specifier: ^2.9.1 + version: 2.9.1(@parcel/core@2.9.1) + '@parcel/transformer-react-refresh-wrap': + specifier: ^2.9.1 + version: 2.9.1(@parcel/core@2.9.1) + '@preconstruct/cli': + specifier: ^2.7.0 + version: 2.7.0 '@types/jest': specifier: ^29.4.0 version: 29.4.0 @@ -32,8 +38,8 @@ importers: specifier: ^1.0.1 version: 1.0.1 parcel: - specifier: ^2.8.3 - version: 2.8.3 + specifier: ^2.9.1 + version: 2.9.1 path-browserify: specifier: ^1.0.0 version: 1.0.1 @@ -54,10 +60,10 @@ importers: version: 29.4.0 jest: specifier: ^29.4.3 - version: 29.4.3(@types/node@18.14.6) + version: 29.4.3 ts-jest: specifier: ^29.0.5 - version: 29.0.5(@babel/core@7.21.0)(jest@29.4.3)(typescript@4.9.5) + version: 29.0.5(jest@29.4.3)(typescript@4.9.5) typescript: specifier: ^4.9.5 version: 4.9.5 @@ -73,10 +79,10 @@ importers: version: 29.4.0 jest: specifier: ^29.4.3 - version: 29.4.3(@types/node@18.14.6) + version: 29.4.3 ts-jest: specifier: ^29.0.5 - version: 29.0.5(@babel/core@7.21.0)(jest@29.4.3)(typescript@4.9.5) + version: 29.0.5(jest@29.4.3)(typescript@4.9.5) typescript: specifier: ^4.9.5 version: 4.9.5 @@ -88,10 +94,10 @@ importers: version: 29.4.0 jest: specifier: ^29.4.3 - version: 29.4.3(@types/node@18.14.6) + version: 29.4.3 ts-jest: specifier: ^29.0.5 - version: 29.0.5(@babel/core@7.21.0)(jest@29.4.3)(typescript@4.9.5) + version: 29.0.5(jest@29.4.3)(typescript@4.9.5) typescript: specifier: ^4.9.5 version: 4.9.5 @@ -140,7 +146,7 @@ importers: version: 0.0.0-experimental-49f741046-20230305(react@0.0.0-experimental-49f741046-20230305) ts-jest: specifier: ^29.0.5 - version: 29.0.5(@babel/core@7.21.0)(jest@29.4.3)(typescript@4.9.5) + version: 29.0.5(jest@29.4.3)(typescript@4.9.5) typescript: specifier: ^4.9.5 version: 4.9.5 @@ -149,25 +155,25 @@ importers: dependencies: '@codemirror/lang-css': specifier: latest - version: 6.1.1(@codemirror/view@6.9.1)(@lezer/common@1.0.2) + version: 6.2.0 '@codemirror/lang-html': specifier: latest version: 6.4.3 '@codemirror/lang-javascript': specifier: latest - version: 6.1.7 + version: 6.1.8 '@codemirror/lang-markdown': specifier: latest version: 6.1.1 '@codemirror/language': specifier: latest - version: 6.6.0 + version: 6.7.0 '@codemirror/state': specifier: latest - version: 6.2.0 + version: 6.2.1 '@lezer/highlight': specifier: latest - version: 1.1.4 + version: 1.1.6 '@types/lru-cache': specifier: ^7.10.10 version: 7.10.10 @@ -200,10 +206,10 @@ importers: version: 0.0.0-experimental-49f741046-20230305(react@0.0.0-experimental-49f741046-20230305) react-router-dom: specifier: latest - version: 6.10.0(react-dom@0.0.0-experimental-49f741046-20230305)(react@0.0.0-experimental-49f741046-20230305) + version: 6.11.2(react-dom@0.0.0-experimental-49f741046-20230305)(react@0.0.0-experimental-49f741046-20230305) react-virtualized-auto-sizer: specifier: latest - version: 1.0.15(react-dom@0.0.0-experimental-49f741046-20230305)(react@0.0.0-experimental-49f741046-20230305) + version: 1.0.18(react-dom@0.0.0-experimental-49f741046-20230305)(react@0.0.0-experimental-49f741046-20230305) sort-by: specifier: latest version: 1.2.0 @@ -235,6 +241,13 @@ packages: '@babel/highlight': 7.18.6 dev: true + /@babel/code-frame@7.21.4: + resolution: {integrity: sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/highlight': 7.18.6 + dev: true + /@babel/compat-data@7.21.0: resolution: {integrity: sha512-gMuZsmsgxk/ENC3O/fRw5QY8A9/uxQbbCEypnLIiYYc/qVJtEV7ouxC3EllIIwNzMqAQee5tanFabWsUOutS7g==} engines: {node: '>=6.9.0'} @@ -267,12 +280,29 @@ packages: resolution: {integrity: sha512-1lT45bAYlQhFn/BHivJs43AiW2rg3/UbLyShGfF3C0KmHvO5fSghWd5kBJy30kpRRucGzXStvnnCFniCR2kXAA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.21.2 + '@babel/types': 7.22.3 '@jridgewell/gen-mapping': 0.3.2 '@jridgewell/trace-mapping': 0.3.17 jsesc: 2.5.2 dev: true + /@babel/generator@7.22.3: + resolution: {integrity: sha512-C17MW4wlk//ES/CJDL51kPNwl+qiBQyN7b9SKyVp11BLGFeSPoVaHrv+MNt8jwQFhQWowW88z1eeBx3pFz9v8A==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.22.3 + '@jridgewell/gen-mapping': 0.3.2 + '@jridgewell/trace-mapping': 0.3.17 + jsesc: 2.5.2 + dev: true + + /@babel/helper-annotate-as-pure@7.18.6: + resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.22.3 + dev: true + /@babel/helper-compilation-targets@7.20.7(@babel/core@7.21.0): resolution: {integrity: sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==} engines: {node: '>=6.9.0'} @@ -287,8 +317,27 @@ packages: semver: 6.3.0 dev: true - /@babel/helper-environment-visitor@7.18.9: - resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==} + /@babel/helper-create-class-features-plugin@7.22.1: + resolution: {integrity: sha512-SowrZ9BWzYFgzUMwUmowbPSGu6CXL5MSuuCkG3bejahSpSymioPmuLdhPxNOc9MjuNGjy7M/HaXvJ8G82Lywlw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-environment-visitor': 7.22.1 + '@babel/helper-function-name': 7.21.0 + '@babel/helper-member-expression-to-functions': 7.22.3 + '@babel/helper-optimise-call-expression': 7.18.6 + '@babel/helper-replace-supers': 7.22.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 + '@babel/helper-split-export-declaration': 7.18.6 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/helper-environment-visitor@7.22.1: + resolution: {integrity: sha512-Z2tgopurB/kTbidvzeBrc2To3PUP/9i5MUe+fU6QJCQDyPwSH2oRapkLw3KGECDYSjhQZCNxEvNvZlLw8JjGwA==} engines: {node: '>=6.9.0'} dev: true @@ -296,15 +345,22 @@ packages: resolution: {integrity: sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/template': 7.20.7 - '@babel/types': 7.21.2 + '@babel/template': 7.21.9 + '@babel/types': 7.22.3 dev: true /@babel/helper-hoist-variables@7.18.6: resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.21.2 + '@babel/types': 7.22.3 + dev: true + + /@babel/helper-member-expression-to-functions@7.22.3: + resolution: {integrity: sha512-Gl7sK04b/2WOb6OPVeNy9eFKeD3L6++CzL3ykPOWqTn08xgYYK0wz4TUh2feIImDXxcVW3/9WQ1NMKY66/jfZA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.22.3 dev: true /@babel/helper-module-imports@7.18.6: @@ -314,43 +370,94 @@ packages: '@babel/types': 7.21.2 dev: true + /@babel/helper-module-imports@7.21.4: + resolution: {integrity: sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.22.3 + dev: true + /@babel/helper-module-transforms@7.21.2: resolution: {integrity: sha512-79yj2AR4U/Oqq/WOV7Lx6hUjau1Zfo4cI+JLAVYeMV5XIlbOhmjEk5ulbTc9fMpmlojzZHkUUxAiK+UKn+hNQQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-environment-visitor': 7.18.9 - '@babel/helper-module-imports': 7.18.6 - '@babel/helper-simple-access': 7.20.2 + '@babel/helper-environment-visitor': 7.22.1 + '@babel/helper-module-imports': 7.21.4 + '@babel/helper-simple-access': 7.21.5 '@babel/helper-split-export-declaration': 7.18.6 '@babel/helper-validator-identifier': 7.19.1 - '@babel/template': 7.20.7 - '@babel/traverse': 7.21.2 - '@babel/types': 7.21.2 + '@babel/template': 7.21.9 + '@babel/traverse': 7.22.1 + '@babel/types': 7.22.3 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/helper-module-transforms@7.22.1: + resolution: {integrity: sha512-dxAe9E7ySDGbQdCVOY/4+UcD8M9ZFqZcZhSPsPacvCG4M+9lwtDDQfI2EoaSvmf7W/8yCBkGU0m7Pvt1ru3UZw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-environment-visitor': 7.22.1 + '@babel/helper-module-imports': 7.21.4 + '@babel/helper-simple-access': 7.21.5 + '@babel/helper-split-export-declaration': 7.18.6 + '@babel/helper-validator-identifier': 7.19.1 + '@babel/template': 7.21.9 + '@babel/traverse': 7.22.1 + '@babel/types': 7.22.3 transitivePeerDependencies: - supports-color dev: true - /@babel/helper-plugin-utils@7.20.2: - resolution: {integrity: sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==} + /@babel/helper-optimise-call-expression@7.18.6: + resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.22.3 + dev: true + + /@babel/helper-plugin-utils@7.21.5: + resolution: {integrity: sha512-0WDaIlXKOX/3KfBK/dwP1oQGiPh6rjMkT7HIRv7i5RR2VUMwrx5ZL0dwBkKx7+SW1zwNdgjHd34IMk5ZjTeHVg==} engines: {node: '>=6.9.0'} dev: true - /@babel/helper-simple-access@7.20.2: - resolution: {integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==} + /@babel/helper-replace-supers@7.22.1: + resolution: {integrity: sha512-ut4qrkE4AuSfrwHSps51ekR1ZY/ygrP1tp0WFm8oVq6nzc/hvfV/22JylndIbsf2U2M9LOMwiSddr6y+78j+OQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.21.2 + '@babel/helper-environment-visitor': 7.22.1 + '@babel/helper-member-expression-to-functions': 7.22.3 + '@babel/helper-optimise-call-expression': 7.18.6 + '@babel/template': 7.21.9 + '@babel/traverse': 7.22.1 + '@babel/types': 7.22.3 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/helper-simple-access@7.21.5: + resolution: {integrity: sha512-ENPDAMC1wAjR0uaCUwliBdiSl1KBJAVnMTzXqi64c2MG8MPR6ii4qf7bSXDqSFbr4W6W028/rf5ivoHop5/mkg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.22.3 + dev: true + + /@babel/helper-skip-transparent-expression-wrappers@7.20.0: + resolution: {integrity: sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.22.3 dev: true /@babel/helper-split-export-declaration@7.18.6: resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.21.2 + '@babel/types': 7.22.3 dev: true - /@babel/helper-string-parser@7.19.4: - resolution: {integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==} + /@babel/helper-string-parser@7.21.5: + resolution: {integrity: sha512-5pTUx3hAJaZIdW99sJ6ZUUgWq/Y+Hja7TowEnLNMm1VivRgZQL3vpBY3qUACVsvw+yQU6+YgfBVmcbLaZtrA1w==} engines: {node: '>=6.9.0'} dev: true @@ -368,9 +475,9 @@ packages: resolution: {integrity: sha512-XXve0CBtOW0pd7MRzzmoyuSj0e3SEzj8pgyFxnTT1NJZL38BD1MK7yYrm8yefRPIDvNNe14xR4FdbHwpInD4rA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/template': 7.20.7 - '@babel/traverse': 7.21.2 - '@babel/types': 7.21.2 + '@babel/template': 7.21.9 + '@babel/traverse': 7.22.1 + '@babel/types': 7.22.3 transitivePeerDependencies: - supports-color dev: true @@ -389,7 +496,15 @@ packages: engines: {node: '>=6.0.0'} hasBin: true dependencies: - '@babel/types': 7.21.2 + '@babel/types': 7.22.3 + dev: true + + /@babel/parser@7.22.3: + resolution: {integrity: sha512-vrukxyW/ep8UD1UDzOYpTKQ6abgjFoeG6L+4ar9+c5TN9QnlqiOi6QK7LSR5ewm/ERyGkT/Ai6VboNrxhbr9Uw==} + engines: {node: '>=6.0.0'} + hasBin: true + dependencies: + '@babel/types': 7.22.3 dev: true /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.21.0): @@ -398,7 +513,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.0 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.21.5 dev: true /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.21.0): @@ -407,7 +522,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.0 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.21.5 dev: true /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.21.0): @@ -416,7 +531,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.0 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.21.5 dev: true /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.21.0): @@ -425,7 +540,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.0 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.21.5 dev: true /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.21.0): @@ -434,17 +549,26 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.0 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.21.5 + dev: true + + /@babel/plugin-syntax-jsx@7.21.4: + resolution: {integrity: sha512-5hewiLct5OKyh6PLKEYaFclcqtIgCb6bmELouxjF6up5q3Sov7rOayW4RwhbaBL0dit8rA80GNfY+UuDp2mBbQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/helper-plugin-utils': 7.21.5 dev: true - /@babel/plugin-syntax-jsx@7.18.6(@babel/core@7.21.0): - resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==} + /@babel/plugin-syntax-jsx@7.21.4(@babel/core@7.21.0): + resolution: {integrity: sha512-5hewiLct5OKyh6PLKEYaFclcqtIgCb6bmELouxjF6up5q3Sov7rOayW4RwhbaBL0dit8rA80GNfY+UuDp2mBbQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.0 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.21.5 dev: true /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.21.0): @@ -453,7 +577,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.0 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.21.5 dev: true /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.21.0): @@ -462,7 +586,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.0 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.21.5 dev: true /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.21.0): @@ -471,7 +595,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.0 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.21.5 dev: true /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.21.0): @@ -480,7 +604,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.0 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.21.5 dev: true /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.21.0): @@ -489,7 +613,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.0 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.21.5 dev: true /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.21.0): @@ -498,7 +622,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.0 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.21.5 dev: true /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.21.0): @@ -508,7 +632,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.0 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.21.5 dev: true /@babel/plugin-syntax-typescript@7.20.0(@babel/core@7.21.0): @@ -518,7 +642,72 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.0 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.21.5 + dev: true + + /@babel/plugin-syntax-typescript@7.21.4: + resolution: {integrity: sha512-xz0D39NvhQn4t4RNsHmDnnsaQizIlUkdtYvLs8La1BlfjQ6JEwxkJGeqJMW2tAXx+q6H+WFuUTXNdYVpEya0YA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/helper-plugin-utils': 7.21.5 + dev: true + + /@babel/plugin-transform-modules-commonjs@7.21.5: + resolution: {integrity: sha512-OVryBEgKUbtqMoB7eG2rs6UFexJi6Zj6FDXx+esBLPTCxCNxAY9o+8Di7IsUGJ+AVhp5ncK0fxWUBd0/1gPhrQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/helper-module-transforms': 7.22.1 + '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-simple-access': 7.21.5 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-transform-modules-commonjs@7.21.5(@babel/core@7.21.0): + resolution: {integrity: sha512-OVryBEgKUbtqMoB7eG2rs6UFexJi6Zj6FDXx+esBLPTCxCNxAY9o+8Di7IsUGJ+AVhp5ncK0fxWUBd0/1gPhrQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.21.0 + '@babel/helper-module-transforms': 7.22.1 + '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-simple-access': 7.21.5 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-transform-typescript@7.22.3: + resolution: {integrity: sha512-pyjnCIniO5PNaEuGxT28h0HbMru3qCVrMqVgVOz/krComdIrY9W6FCLBq9NWHY8HDGaUlan+UhmZElDENIfCcw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-create-class-features-plugin': 7.22.1 + '@babel/helper-plugin-utils': 7.21.5 + '@babel/plugin-syntax-typescript': 7.21.4 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/preset-typescript@7.21.5: + resolution: {integrity: sha512-iqe3sETat5EOrORXiQ6rWfoOg2y68Cs75B9wNxdPW4kixJxh7aXQE1KPdWLDniC24T/6dSnguF33W9j/ZZQcmA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-validator-option': 7.21.0 + '@babel/plugin-syntax-jsx': 7.21.4 + '@babel/plugin-transform-modules-commonjs': 7.21.5 + '@babel/plugin-transform-typescript': 7.22.3 + transitivePeerDependencies: + - supports-color dev: true /@babel/runtime@7.21.0: @@ -526,7 +715,6 @@ packages: engines: {node: '>=6.9.0'} dependencies: regenerator-runtime: 0.13.11 - dev: false /@babel/template@7.20.7: resolution: {integrity: sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==} @@ -534,7 +722,16 @@ packages: dependencies: '@babel/code-frame': 7.18.6 '@babel/parser': 7.21.2 - '@babel/types': 7.21.2 + '@babel/types': 7.22.3 + dev: true + + /@babel/template@7.21.9: + resolution: {integrity: sha512-MK0X5k8NKOuWRamiEfc3KEJiHMTkGZNUjzMipqCGDDc6ijRl/B7RGSKVGncu4Ro/HdyzzY6cmoXuKI2Gffk7vQ==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.21.4 + '@babel/parser': 7.22.3 + '@babel/types': 7.22.3 dev: true /@babel/traverse@7.21.2: @@ -543,12 +740,30 @@ packages: dependencies: '@babel/code-frame': 7.18.6 '@babel/generator': 7.21.1 - '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-environment-visitor': 7.22.1 '@babel/helper-function-name': 7.21.0 '@babel/helper-hoist-variables': 7.18.6 '@babel/helper-split-export-declaration': 7.18.6 '@babel/parser': 7.21.2 - '@babel/types': 7.21.2 + '@babel/types': 7.22.3 + debug: 4.3.4 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/traverse@7.22.1: + resolution: {integrity: sha512-lAWkdCoUFnmwLBhIRLciFntGYsIIoC6vIbN8zrLPqBnJmPu7Z6nzqnKd7FsxQUNAvZfVZ0x6KdNvNp8zWIOHSQ==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.21.4 + '@babel/generator': 7.22.3 + '@babel/helper-environment-visitor': 7.22.1 + '@babel/helper-function-name': 7.21.0 + '@babel/helper-hoist-variables': 7.18.6 + '@babel/helper-split-export-declaration': 7.18.6 + '@babel/parser': 7.22.3 + '@babel/types': 7.22.3 debug: 4.3.4 globals: 11.12.0 transitivePeerDependencies: @@ -559,7 +774,16 @@ packages: resolution: {integrity: sha512-3wRZSs7jiFaB8AjxiiD+VqN5DTG2iRvJGQ+qYFrs/654lg6kGTQWIOFjlBo5RaXuAZjBmP3+OQH4dmhqiiyYxw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-string-parser': 7.19.4 + '@babel/helper-string-parser': 7.21.5 + '@babel/helper-validator-identifier': 7.19.1 + to-fast-properties: 2.0.0 + dev: true + + /@babel/types@7.22.3: + resolution: {integrity: sha512-P3na3xIQHTKY4L0YOG7pM8M8uoUIB910WQaSiiMCZUC2Cy8XFEQONGABFnHWBa2gpGKODTAJcNhi5Zk0sLRrzg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-string-parser': 7.21.5 '@babel/helper-validator-identifier': 7.19.1 to-fast-properties: 2.0.0 dev: true @@ -568,53 +792,49 @@ packages: resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} dev: true - /@codemirror/autocomplete@6.4.2(@codemirror/language@6.6.0)(@codemirror/state@6.2.0)(@codemirror/view@6.9.1)(@lezer/common@1.0.2): + /@codemirror/autocomplete@6.4.2(@codemirror/language@6.7.0)(@codemirror/state@6.2.1): resolution: {integrity: sha512-8WE2xp+D0MpWEv5lZ6zPW1/tf4AGb358T5GWYiKEuCP8MvFfT3tH2mIF9Y2yr2e3KbHuSvsVhosiEyqCpiJhZQ==} peerDependencies: '@codemirror/language': ^6.0.0 '@codemirror/state': ^6.0.0 - '@codemirror/view': ^6.0.0 - '@lezer/common': ^1.0.0 dependencies: - '@codemirror/language': 6.6.0 - '@codemirror/state': 6.2.0 + '@codemirror/language': 6.7.0 + '@codemirror/state': 6.2.1 '@codemirror/view': 6.9.1 '@lezer/common': 1.0.2 dev: false - /@codemirror/lang-css@6.1.1(@codemirror/view@6.9.1)(@lezer/common@1.0.2): - resolution: {integrity: sha512-P6jdNEHyRcqqDgbvHYyC9Wxkek0rnG3a9aVSRi4a7WrjPbQtBTaOmvYpXmm13zZMAatO4Oqpac+0QZs7sy+LnQ==} + /@codemirror/lang-css@6.2.0: + resolution: {integrity: sha512-oyIdJM29AyRPM3+PPq1I2oIk8NpUfEN3kAM05XWDDs6o3gSneIKaVJifT2P+fqONLou2uIgXynFyMUDQvo/szA==} dependencies: - '@codemirror/autocomplete': 6.4.2(@codemirror/language@6.6.0)(@codemirror/state@6.2.0)(@codemirror/view@6.9.1)(@lezer/common@1.0.2) - '@codemirror/language': 6.6.0 - '@codemirror/state': 6.2.0 + '@codemirror/autocomplete': 6.4.2(@codemirror/language@6.7.0)(@codemirror/state@6.2.1) + '@codemirror/language': 6.7.0 + '@codemirror/state': 6.2.1 + '@lezer/common': 1.0.2 '@lezer/css': 1.1.1 - transitivePeerDependencies: - - '@codemirror/view' - - '@lezer/common' dev: false /@codemirror/lang-html@6.4.3: resolution: {integrity: sha512-VKzQXEC8nL69Jg2hvAFPBwOdZNvL8tMFOrdFwWpU+wc6a6KEkndJ/19R5xSaglNX6v2bttm8uIEFYxdQDcIZVQ==} dependencies: - '@codemirror/autocomplete': 6.4.2(@codemirror/language@6.6.0)(@codemirror/state@6.2.0)(@codemirror/view@6.9.1)(@lezer/common@1.0.2) - '@codemirror/lang-css': 6.1.1(@codemirror/view@6.9.1)(@lezer/common@1.0.2) - '@codemirror/lang-javascript': 6.1.7 - '@codemirror/language': 6.6.0 - '@codemirror/state': 6.2.0 + '@codemirror/autocomplete': 6.4.2(@codemirror/language@6.7.0)(@codemirror/state@6.2.1) + '@codemirror/lang-css': 6.2.0 + '@codemirror/lang-javascript': 6.1.8 + '@codemirror/language': 6.7.0 + '@codemirror/state': 6.2.1 '@codemirror/view': 6.9.1 '@lezer/common': 1.0.2 '@lezer/css': 1.1.1 '@lezer/html': 1.3.3 dev: false - /@codemirror/lang-javascript@6.1.7: - resolution: {integrity: sha512-KXKqxlZ4W6t5I7i2ScmITUD3f/F5Cllk3kj0De9P9mFeYVfhOVOWuDLgYiLpk357u7Xh4dhqjJAnsNPPoTLghQ==} + /@codemirror/lang-javascript@6.1.8: + resolution: {integrity: sha512-5cIA6IOkslTu1DtldcYnj7hsBm3p+cD37qSaKvW1kV16M6q9ysKvKrveCOWgbrj4+ilSWRL2JtSLudbeB158xg==} dependencies: - '@codemirror/autocomplete': 6.4.2(@codemirror/language@6.6.0)(@codemirror/state@6.2.0)(@codemirror/view@6.9.1)(@lezer/common@1.0.2) - '@codemirror/language': 6.6.0 + '@codemirror/autocomplete': 6.4.2(@codemirror/language@6.7.0)(@codemirror/state@6.2.1) + '@codemirror/language': 6.7.0 '@codemirror/lint': 6.2.0 - '@codemirror/state': 6.2.0 + '@codemirror/state': 6.2.1 '@codemirror/view': 6.9.1 '@lezer/common': 1.0.2 '@lezer/javascript': 1.4.1 @@ -624,20 +844,20 @@ packages: resolution: {integrity: sha512-n87Ms6Y5UYb1UkFu8sRzTLfq/yyF1y2AYiWvaVdbBQi5WDj1tFk5N+AKA+WC0Jcjc1VxvrCCM0iizjdYYi9sFQ==} dependencies: '@codemirror/lang-html': 6.4.3 - '@codemirror/language': 6.6.0 - '@codemirror/state': 6.2.0 + '@codemirror/language': 6.7.0 + '@codemirror/state': 6.2.1 '@codemirror/view': 6.9.1 '@lezer/common': 1.0.2 '@lezer/markdown': 1.0.2 dev: false - /@codemirror/language@6.6.0: - resolution: {integrity: sha512-cwUd6lzt3MfNYOobdjf14ZkLbJcnv4WtndYaoBkbor/vF+rCNguMPK0IRtvZJG4dsWiaWPcK8x1VijhvSxnstg==} + /@codemirror/language@6.7.0: + resolution: {integrity: sha512-4SMwe6Fwn57klCUsVN0y4/h/iWT+XIXFEmop2lIHHuWO0ubjCrF3suqSZLyOQlznxkNnNbOOfKe5HQbQGCAmTg==} dependencies: - '@codemirror/state': 6.2.0 + '@codemirror/state': 6.2.1 '@codemirror/view': 6.9.1 '@lezer/common': 1.0.2 - '@lezer/highlight': 1.1.4 + '@lezer/highlight': 1.1.6 '@lezer/lr': 1.3.3 style-mod: 4.0.0 dev: false @@ -645,19 +865,19 @@ packages: /@codemirror/lint@6.2.0: resolution: {integrity: sha512-KVCECmR2fFeYBr1ZXDVue7x3q5PMI0PzcIbA+zKufnkniMBo1325t0h1jM85AKp8l3tj67LRxVpZfgDxEXlQkg==} dependencies: - '@codemirror/state': 6.2.0 + '@codemirror/state': 6.2.1 '@codemirror/view': 6.9.1 crelt: 1.0.5 dev: false - /@codemirror/state@6.2.0: - resolution: {integrity: sha512-69QXtcrsc3RYtOtd+GsvczJ319udtBf1PTrr2KbLWM/e2CXUPnh0Nz9AUo8WfhSQ7GeL8dPVNUmhQVgpmuaNGA==} + /@codemirror/state@6.2.1: + resolution: {integrity: sha512-RupHSZ8+OjNT38zU9fKH2sv+Dnlr8Eb8sl4NOnnqz95mCFTZUaiRP8Xv5MeeaG0px2b8Bnfe7YGwCV3nsBhbuw==} dev: false /@codemirror/view@6.9.1: resolution: {integrity: sha512-bzfSjJn9dAADVpabLKWKNmMG4ibyTV2e3eOGowjElNPTdTkSbi6ixPYHm2u0ADcETfKsi2/R84Rkmi91dH9yEg==} dependencies: - '@codemirror/state': 6.2.0 + '@codemirror/state': 6.2.1 style-mod: 4.0.0 w3c-keyname: 2.2.6 dev: false @@ -947,12 +1167,12 @@ packages: /@lezer/css@1.1.1: resolution: {integrity: sha512-mSjx+unLLapEqdOYDejnGBokB5+AiJKZVclmud0MKQOKx3DLJ5b5VTCstgDDknR6iIV4gVrN6euzsCnj0A2gQA==} dependencies: - '@lezer/highlight': 1.1.4 + '@lezer/highlight': 1.1.6 '@lezer/lr': 1.3.3 dev: false - /@lezer/highlight@1.1.4: - resolution: {integrity: sha512-IECkFmw2l7sFcYXrV8iT9GeY4W0fU4CxX0WMwhmhMIVjoDdD1Hr6q3G2NqVtLg/yVe5n7i4menG3tJ2r4eCrPQ==} + /@lezer/highlight@1.1.6: + resolution: {integrity: sha512-cmSJYa2us+r3SePpRCjN5ymCqCPv+zyXmDl0ciWtVaNiORT/MxM7ZgOMQZADD0o51qOaOg24qc/zBViOIwAjJg==} dependencies: '@lezer/common': 1.0.2 dev: false @@ -961,14 +1181,14 @@ packages: resolution: {integrity: sha512-04Fyvu66DjV2EjhDIG1kfDdktn5Pfw56SXPrzKNQH5B2m7BDfc6bDsz+ZJG8dLS3kIPEKbyyq1Sm2/kjeG0+AA==} dependencies: '@lezer/common': 1.0.2 - '@lezer/highlight': 1.1.4 + '@lezer/highlight': 1.1.6 '@lezer/lr': 1.3.3 dev: false /@lezer/javascript@1.4.1: resolution: {integrity: sha512-Hqx36DJeYhKtdpc7wBYPR0XF56ZzIp0IkMO/zNNj80xcaFOV4Oj/P7TQc/8k2TxNhzl7tV5tXS8ZOCPbT4L3nA==} dependencies: - '@lezer/highlight': 1.1.4 + '@lezer/highlight': 1.1.6 '@lezer/lr': 1.3.3 dev: false @@ -988,51 +1208,51 @@ packages: resolution: {integrity: sha512-8CY0OoZ6V5EzPjSPeJ4KLVbtXdLBd8V6sRCooN5kHnO28ytreEGTyrtU/zUwo/XLRzGr/e1g44KlzKi3yWGB5A==} dependencies: '@lezer/common': 1.0.2 - '@lezer/highlight': 1.1.4 + '@lezer/highlight': 1.1.6 dev: false - /@lmdb/lmdb-darwin-arm64@2.5.2: - resolution: {integrity: sha512-+F8ioQIUN68B4UFiIBYu0QQvgb9FmlKw2ctQMSBfW2QBrZIxz9vD9jCGqTCPqZBRbPHAS/vG1zSXnKqnS2ch/A==} + /@lmdb/lmdb-darwin-arm64@2.7.11: + resolution: {integrity: sha512-r6+vYq2vKzE+vgj/rNVRMwAevq0+ZR9IeMFIqcSga+wMtMdXQ27KqQ7uS99/yXASg29bos7yHP3yk4x6Iio0lw==} cpu: [arm64] os: [darwin] requiresBuild: true dev: true optional: true - /@lmdb/lmdb-darwin-x64@2.5.2: - resolution: {integrity: sha512-KvPH56KRLLx4KSfKBx0m1r7GGGUMXm0jrKmNE7plbHlesZMuPJICtn07HYgQhj1LNsK7Yqwuvnqh1QxhJnF1EA==} + /@lmdb/lmdb-darwin-x64@2.7.11: + resolution: {integrity: sha512-jhj1aB4K8ycRL1HOQT5OtzlqOq70jxUQEWRN9Gqh3TIDN30dxXtiHi6EWF516tzw6v2+3QqhDMJh8O6DtTGG8Q==} cpu: [x64] os: [darwin] requiresBuild: true dev: true optional: true - /@lmdb/lmdb-linux-arm64@2.5.2: - resolution: {integrity: sha512-aLl89VHL/wjhievEOlPocoefUyWdvzVrcQ/MHQYZm2JfV1jUsrbr/ZfkPPUFvZBf+VSE+Q0clWs9l29PCX1hTQ==} + /@lmdb/lmdb-linux-arm64@2.7.11: + resolution: {integrity: sha512-7xGEfPPbmVJWcY2Nzqo11B9Nfxs+BAsiiaY/OcT4aaTDdykKeCjvKMQJA3KXCtZ1AtiC9ljyGLi+BfUwdulY5A==} cpu: [arm64] os: [linux] requiresBuild: true dev: true optional: true - /@lmdb/lmdb-linux-arm@2.5.2: - resolution: {integrity: sha512-5kQAP21hAkfW5Bl+e0P57dV4dGYnkNIpR7f/GAh6QHlgXx+vp/teVj4PGRZaKAvt0GX6++N6hF8NnGElLDuIDw==} + /@lmdb/lmdb-linux-arm@2.7.11: + resolution: {integrity: sha512-dHfLFVSrw/v5X5lkwp0Vl7+NFpEeEYKfMG2DpdFJnnG1RgHQZngZxCaBagFoaJGykRpd2DYF1AeuXBFrAUAXfw==} cpu: [arm] os: [linux] requiresBuild: true dev: true optional: true - /@lmdb/lmdb-linux-x64@2.5.2: - resolution: {integrity: sha512-xUdUfwDJLGjOUPH3BuPBt0NlIrR7f/QHKgu3GZIXswMMIihAekj2i97oI0iWG5Bok/b+OBjHPfa8IU9velnP/Q==} + /@lmdb/lmdb-linux-x64@2.7.11: + resolution: {integrity: sha512-vUKI3JrREMQsXX8q0Eq5zX2FlYCKWMmLiCyyJNfZK0Uyf14RBg9VtB3ObQ41b4swYh2EWaltasWVe93Y8+KDng==} cpu: [x64] os: [linux] requiresBuild: true dev: true optional: true - /@lmdb/lmdb-win32-x64@2.5.2: - resolution: {integrity: sha512-zrBczSbXKxEyK2ijtbRdICDygRqWSRPpZMN5dD1T8VMEW5RIhIbwFWw2phDRXuBQdVDpSjalCIUMWMV2h3JaZA==} + /@lmdb/lmdb-win32-x64@2.7.11: + resolution: {integrity: sha512-BJwkHlSUgtB+Ei52Ai32M1AOMerSlzyIGA/KC4dAGL+GGwVMdwG8HGCOA2TxP3KjhbgDPMYkv7bt/NmOmRIFng==} cpu: [x64] os: [win32] requiresBuild: true @@ -1096,86 +1316,108 @@ packages: dev: true optional: true - /@parcel/bundler-default@2.8.3(@parcel/core@2.8.3): - resolution: {integrity: sha512-yJvRsNWWu5fVydsWk3O2L4yIy3UZiKWO2cPDukGOIWMgp/Vbpp+2Ct5IygVRtE22bnseW/E/oe0PV3d2IkEJGg==} - engines: {node: '>= 12.0.0', parcel: ^2.8.3} + /@nodelib/fs.scandir@2.1.5: + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} + engines: {node: '>= 8'} + dependencies: + '@nodelib/fs.stat': 2.0.5 + run-parallel: 1.2.0 + dev: true + + /@nodelib/fs.stat@2.0.5: + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} + engines: {node: '>= 8'} + dev: true + + /@nodelib/fs.walk@1.2.8: + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} + engines: {node: '>= 8'} dependencies: - '@parcel/diagnostic': 2.8.3 - '@parcel/graph': 2.8.3 - '@parcel/hash': 2.8.3 - '@parcel/plugin': 2.8.3(@parcel/core@2.8.3) - '@parcel/utils': 2.8.3 + '@nodelib/fs.scandir': 2.1.5 + fastq: 1.15.0 + dev: true + + /@parcel/bundler-default@2.9.1(@parcel/core@2.9.1): + resolution: {integrity: sha512-gNTaSQpp7jiFvkQ/P/KfAiVLT3UOEs5bBivQm4OMdgSi2DTIsjGMQVQ7JDzvzEzrHiFlDmdXKxUagex54pOtJg==} + engines: {node: '>= 12.0.0', parcel: ^2.9.1} + dependencies: + '@parcel/diagnostic': 2.9.1 + '@parcel/graph': 2.9.1 + '@parcel/hash': 2.9.1 + '@parcel/plugin': 2.9.1(@parcel/core@2.9.1) + '@parcel/utils': 2.9.1 nullthrows: 1.1.1 transitivePeerDependencies: - '@parcel/core' dev: true - /@parcel/cache@2.8.3(@parcel/core@2.8.3): - resolution: {integrity: sha512-k7xv5vSQrJLdXuglo+Hv3yF4BCSs1tQ/8Vbd6CHTkOhf7LcGg6CPtLw053R/KdMpd/4GPn0QrAsOLdATm1ELtQ==} + /@parcel/cache@2.9.1(@parcel/core@2.9.1): + resolution: {integrity: sha512-2aFWUAi7vkcnIdfOw3oW/vhgvwv9MPb+LjmJSkE59nNUuSJe83jJFAPAhqQTHd9L3kX/Xk+xJBNYNubUq/Cieg==} engines: {node: '>= 12.0.0'} peerDependencies: - '@parcel/core': ^2.8.3 + '@parcel/core': ^2.9.1 dependencies: - '@parcel/core': 2.8.3 - '@parcel/fs': 2.8.3(@parcel/core@2.8.3) - '@parcel/logger': 2.8.3 - '@parcel/utils': 2.8.3 - lmdb: 2.5.2 + '@parcel/core': 2.9.1 + '@parcel/fs': 2.9.1(@parcel/core@2.9.1) + '@parcel/logger': 2.9.1 + '@parcel/utils': 2.9.1 + lmdb: 2.7.11 dev: true - /@parcel/codeframe@2.8.3: - resolution: {integrity: sha512-FE7sY53D6n/+2Pgg6M9iuEC6F5fvmyBkRE4d9VdnOoxhTXtkEqpqYgX7RJ12FAQwNlxKq4suBJQMgQHMF2Kjeg==} + /@parcel/codeframe@2.9.1: + resolution: {integrity: sha512-qLVIyEHuZq8wWYaXVAwxMzlK3QqWlaB5fUSe1n+kITEa9EEwb2WPmysYAsWiVaFdD62A0+1klJ8Sq9gapOMIng==} engines: {node: '>= 12.0.0'} dependencies: chalk: 4.1.2 dev: true - /@parcel/compressor-raw@2.8.3(@parcel/core@2.8.3): - resolution: {integrity: sha512-bVDsqleBUxRdKMakWSlWC9ZjOcqDKE60BE+Gh3JSN6WJrycJ02P5wxjTVF4CStNP/G7X17U+nkENxSlMG77ySg==} - engines: {node: '>= 12.0.0', parcel: ^2.8.3} + /@parcel/compressor-raw@2.9.1(@parcel/core@2.9.1): + resolution: {integrity: sha512-aUkZ0pOzGjQ9kyaUQ/suDVmU5lR4mT9fU5HXlp3hGD7MWh2HFJUOfQ3gp5g3P9x+MeVZKU+ht6UcIMhrzelLGQ==} + engines: {node: '>= 12.0.0', parcel: ^2.9.1} dependencies: - '@parcel/plugin': 2.8.3(@parcel/core@2.8.3) + '@parcel/plugin': 2.9.1(@parcel/core@2.9.1) transitivePeerDependencies: - '@parcel/core' dev: true - /@parcel/config-default@2.8.3(@parcel/core@2.8.3): - resolution: {integrity: sha512-o/A/mbrO6X/BfGS65Sib8d6SSG45NYrNooNBkH/o7zbOBSRQxwyTlysleK1/3Wa35YpvFyLOwgfakqCtbGy4fw==} + /@parcel/config-default@2.9.1(@parcel/core@2.9.1): + resolution: {integrity: sha512-oH6NHKaKp2YBHOcQJxwHGPbgGCZZZH1I4eef+KRBFiabgiDQxHLni+vg+c+mErd8lFrNn2gcGIdKzQwWqavT+w==} peerDependencies: - '@parcel/core': ^2.8.3 - dependencies: - '@parcel/bundler-default': 2.8.3(@parcel/core@2.8.3) - '@parcel/compressor-raw': 2.8.3(@parcel/core@2.8.3) - '@parcel/core': 2.8.3 - '@parcel/namer-default': 2.8.3(@parcel/core@2.8.3) - '@parcel/optimizer-css': 2.8.3(@parcel/core@2.8.3) - '@parcel/optimizer-htmlnano': 2.8.3(@parcel/core@2.8.3) - '@parcel/optimizer-image': 2.8.3(@parcel/core@2.8.3) - '@parcel/optimizer-svgo': 2.8.3(@parcel/core@2.8.3) - '@parcel/optimizer-terser': 2.8.3(@parcel/core@2.8.3) - '@parcel/packager-css': 2.8.3(@parcel/core@2.8.3) - '@parcel/packager-html': 2.8.3(@parcel/core@2.8.3) - '@parcel/packager-js': 2.8.3(@parcel/core@2.8.3) - '@parcel/packager-raw': 2.8.3(@parcel/core@2.8.3) - '@parcel/packager-svg': 2.8.3(@parcel/core@2.8.3) - '@parcel/reporter-dev-server': 2.8.3(@parcel/core@2.8.3) - '@parcel/resolver-default': 2.8.3(@parcel/core@2.8.3) - '@parcel/runtime-browser-hmr': 2.8.3(@parcel/core@2.8.3) - '@parcel/runtime-js': 2.8.3(@parcel/core@2.8.3) - '@parcel/runtime-react-refresh': 2.8.3(@parcel/core@2.8.3) - '@parcel/runtime-service-worker': 2.8.3(@parcel/core@2.8.3) - '@parcel/transformer-babel': 2.8.3(@parcel/core@2.8.3) - '@parcel/transformer-css': 2.8.3(@parcel/core@2.8.3) - '@parcel/transformer-html': 2.8.3(@parcel/core@2.8.3) - '@parcel/transformer-image': 2.8.3(@parcel/core@2.8.3) - '@parcel/transformer-js': 2.8.3(@parcel/core@2.8.3) - '@parcel/transformer-json': 2.8.3(@parcel/core@2.8.3) - '@parcel/transformer-postcss': 2.8.3(@parcel/core@2.8.3) - '@parcel/transformer-posthtml': 2.8.3(@parcel/core@2.8.3) - '@parcel/transformer-raw': 2.8.3(@parcel/core@2.8.3) - '@parcel/transformer-react-refresh-wrap': 2.8.3(@parcel/core@2.8.3) - '@parcel/transformer-svg': 2.8.3(@parcel/core@2.8.3) + '@parcel/core': ^2.9.1 + dependencies: + '@parcel/bundler-default': 2.9.1(@parcel/core@2.9.1) + '@parcel/compressor-raw': 2.9.1(@parcel/core@2.9.1) + '@parcel/core': 2.9.1 + '@parcel/namer-default': 2.9.1(@parcel/core@2.9.1) + '@parcel/optimizer-css': 2.9.1(@parcel/core@2.9.1) + '@parcel/optimizer-htmlnano': 2.9.1(@parcel/core@2.9.1) + '@parcel/optimizer-image': 2.9.1(@parcel/core@2.9.1) + '@parcel/optimizer-svgo': 2.9.1(@parcel/core@2.9.1) + '@parcel/optimizer-swc': 2.9.1(@parcel/core@2.9.1) + '@parcel/packager-css': 2.9.1(@parcel/core@2.9.1) + '@parcel/packager-html': 2.9.1(@parcel/core@2.9.1) + '@parcel/packager-js': 2.9.1(@parcel/core@2.9.1) + '@parcel/packager-raw': 2.9.1(@parcel/core@2.9.1) + '@parcel/packager-svg': 2.9.1(@parcel/core@2.9.1) + '@parcel/reporter-dev-server': 2.9.1(@parcel/core@2.9.1) + '@parcel/resolver-default': 2.9.1(@parcel/core@2.9.1) + '@parcel/runtime-browser-hmr': 2.9.1(@parcel/core@2.9.1) + '@parcel/runtime-js': 2.9.1(@parcel/core@2.9.1) + '@parcel/runtime-react-refresh': 2.9.1(@parcel/core@2.9.1) + '@parcel/runtime-service-worker': 2.9.1(@parcel/core@2.9.1) + '@parcel/transformer-babel': 2.9.1(@parcel/core@2.9.1) + '@parcel/transformer-css': 2.9.1(@parcel/core@2.9.1) + '@parcel/transformer-html': 2.9.1(@parcel/core@2.9.1) + '@parcel/transformer-image': 2.9.1(@parcel/core@2.9.1) + '@parcel/transformer-js': 2.9.1(@parcel/core@2.9.1) + '@parcel/transformer-json': 2.9.1(@parcel/core@2.9.1) + '@parcel/transformer-postcss': 2.9.1(@parcel/core@2.9.1) + '@parcel/transformer-posthtml': 2.9.1(@parcel/core@2.9.1) + '@parcel/transformer-raw': 2.9.1(@parcel/core@2.9.1) + '@parcel/transformer-react-refresh-wrap': 2.9.1(@parcel/core@2.9.1) + '@parcel/transformer-svg': 2.9.1(@parcel/core@2.9.1) transitivePeerDependencies: + - '@swc/helpers' - cssnano - postcss - purgecss @@ -1185,24 +1427,25 @@ packages: - uncss dev: true - /@parcel/core@2.8.3: - resolution: {integrity: sha512-Euf/un4ZAiClnlUXqPB9phQlKbveU+2CotZv7m7i+qkgvFn5nAGnrV4h1OzQU42j9dpgOxWi7AttUDMrvkbhCQ==} + /@parcel/core@2.9.1: + resolution: {integrity: sha512-D/7iyRV5c8kYMV1JGkokktxh3ON5CMvNAllaBucl4SMatAyLo5aLjGG5ey6FD/4Tv+JJ6NsldLtkvciDVJdgFQ==} engines: {node: '>= 12.0.0'} dependencies: '@mischnic/json-sourcemap': 0.1.0 - '@parcel/cache': 2.8.3(@parcel/core@2.8.3) - '@parcel/diagnostic': 2.8.3 - '@parcel/events': 2.8.3 - '@parcel/fs': 2.8.3(@parcel/core@2.8.3) - '@parcel/graph': 2.8.3 - '@parcel/hash': 2.8.3 - '@parcel/logger': 2.8.3 - '@parcel/package-manager': 2.8.3(@parcel/core@2.8.3) - '@parcel/plugin': 2.8.3(@parcel/core@2.8.3) + '@parcel/cache': 2.9.1(@parcel/core@2.9.1) + '@parcel/diagnostic': 2.9.1 + '@parcel/events': 2.9.1 + '@parcel/fs': 2.9.1(@parcel/core@2.9.1) + '@parcel/graph': 2.9.1 + '@parcel/hash': 2.9.1 + '@parcel/logger': 2.9.1 + '@parcel/package-manager': 2.9.1(@parcel/core@2.9.1) + '@parcel/plugin': 2.9.1(@parcel/core@2.9.1) + '@parcel/profiler': 2.9.1 '@parcel/source-map': 2.1.1 - '@parcel/types': 2.8.3(@parcel/core@2.8.3) - '@parcel/utils': 2.8.3 - '@parcel/workers': 2.8.3(@parcel/core@2.8.3) + '@parcel/types': 2.9.1(@parcel/core@2.9.1) + '@parcel/utils': 2.9.1 + '@parcel/workers': 2.9.1(@parcel/core@2.9.1) abortcontroller-polyfill: 1.7.5 base-x: 3.0.9 browserslist: 4.21.5 @@ -1210,104 +1453,105 @@ packages: dotenv: 7.0.0 dotenv-expand: 5.1.0 json5: 2.2.3 - msgpackr: 1.8.4 + msgpackr: 1.8.5 nullthrows: 1.1.1 semver: 5.7.1 dev: true - /@parcel/diagnostic@2.8.3: - resolution: {integrity: sha512-u7wSzuMhLGWZjVNYJZq/SOViS3uFG0xwIcqXw12w54Uozd6BH8JlhVtVyAsq9kqnn7YFkw6pXHqAo5Tzh4FqsQ==} + /@parcel/diagnostic@2.9.1: + resolution: {integrity: sha512-LM+w4maoAsjcL+javaHw9B9oEQoLdg/fMCNbuTmAKpQWi16hfNkr4+xz7AxxwL3dCcL7uuvVgoUOUubwxWNLAA==} engines: {node: '>= 12.0.0'} dependencies: '@mischnic/json-sourcemap': 0.1.0 nullthrows: 1.1.1 dev: true - /@parcel/events@2.8.3: - resolution: {integrity: sha512-hoIS4tAxWp8FJk3628bsgKxEvR7bq2scCVYHSqZ4fTi/s0+VymEATrRCUqf+12e5H47uw1/ZjoqrGtBI02pz4w==} + /@parcel/events@2.9.1: + resolution: {integrity: sha512-tga4FiJB1TC4iOKBK66e9zXpcDFXvJhXmsgOMsgSTM6uCZMXeGaYEixHNlPDs3HTfg17qAmHHlhfgPBbku/aOg==} engines: {node: '>= 12.0.0'} dev: true - /@parcel/fs-search@2.8.3: - resolution: {integrity: sha512-DJBT2N8knfN7Na6PP2mett3spQLTqxFrvl0gv+TJRp61T8Ljc4VuUTb0hqBj+belaASIp3Q+e8+SgaFQu7wLiQ==} + /@parcel/fs-search@2.9.1: + resolution: {integrity: sha512-F7SkVsMb5XYcWmeptLz5D3g76Raed3dmNulJMrWIECP8lJ1LUcCExQId7NsdeCfRbNRwaf84gdsjc/1GKM/QYg==} engines: {node: '>= 12.0.0'} - dependencies: - detect-libc: 1.0.3 dev: true - /@parcel/fs@2.8.3(@parcel/core@2.8.3): - resolution: {integrity: sha512-y+i+oXbT7lP0e0pJZi/YSm1vg0LDsbycFuHZIL80pNwdEppUAtibfJZCp606B7HOjMAlNZOBo48e3hPG3d8jgQ==} + /@parcel/fs@2.9.1(@parcel/core@2.9.1): + resolution: {integrity: sha512-F/GRHtHN4AuTauadsq/UQ1OSpLBLAS/96Sv1x09/AKZxNlZ2UzWExoYEhSkVM5smKVzSnx8XP9OqABcHcZwOLQ==} engines: {node: '>= 12.0.0'} peerDependencies: - '@parcel/core': ^2.8.3 + '@parcel/core': ^2.9.1 dependencies: - '@parcel/core': 2.8.3 - '@parcel/fs-search': 2.8.3 - '@parcel/types': 2.8.3(@parcel/core@2.8.3) - '@parcel/utils': 2.8.3 + '@parcel/core': 2.9.1 + '@parcel/fs-search': 2.9.1 + '@parcel/types': 2.9.1(@parcel/core@2.9.1) + '@parcel/utils': 2.9.1 '@parcel/watcher': 2.1.0 - '@parcel/workers': 2.8.3(@parcel/core@2.8.3) + '@parcel/workers': 2.9.1(@parcel/core@2.9.1) dev: true - /@parcel/graph@2.8.3: - resolution: {integrity: sha512-26GL8fYZPdsRhSXCZ0ZWliloK6DHlMJPWh6Z+3VVZ5mnDSbYg/rRKWmrkhnr99ZWmL9rJsv4G74ZwvDEXTMPBg==} + /@parcel/graph@2.9.1: + resolution: {integrity: sha512-fc/Yk1XPzo3ZHhKS7l5aETAEBpnF0nK+0TawkNrQ2rcL21MG1kHNYSR8uBwOqyXmBSMEItals5Ixgd8fWa+9PQ==} engines: {node: '>= 12.0.0'} dependencies: nullthrows: 1.1.1 dev: true - /@parcel/hash@2.8.3: - resolution: {integrity: sha512-FVItqzjWmnyP4ZsVgX+G00+6U2IzOvqDtdwQIWisCcVoXJFCqZJDy6oa2qDDFz96xCCCynjRjPdQx2jYBCpfYw==} + /@parcel/hash@2.9.1: + resolution: {integrity: sha512-fiqAIi/23h5tnH5W7DRTwOhfRPhadHvI7hYoG8YFGvnFxSQ/XCnOID0B0/vNhaluICSPeFcedjAmDVdqY6/X7w==} engines: {node: '>= 12.0.0'} dependencies: - detect-libc: 1.0.3 xxhash-wasm: 0.4.2 dev: true - /@parcel/logger@2.8.3: - resolution: {integrity: sha512-Kpxd3O/Vs7nYJIzkdmB6Bvp3l/85ydIxaZaPfGSGTYOfaffSOTkhcW9l6WemsxUrlts4za6CaEWcc4DOvaMOPA==} + /@parcel/logger@2.9.1: + resolution: {integrity: sha512-wUH9ShrRr3RwNa75ymegDIAdJiY3dGB7HCgIP6VOOc2CGyGA2DJKbbYGfw5mkl3DV8lUV+dYsWYMGXZhInAQCQ==} engines: {node: '>= 12.0.0'} dependencies: - '@parcel/diagnostic': 2.8.3 - '@parcel/events': 2.8.3 + '@parcel/diagnostic': 2.9.1 + '@parcel/events': 2.9.1 dev: true - /@parcel/markdown-ansi@2.8.3: - resolution: {integrity: sha512-4v+pjyoh9f5zuU/gJlNvNFGEAb6J90sOBwpKJYJhdWXLZMNFCVzSigxrYO+vCsi8G4rl6/B2c0LcwIMjGPHmFQ==} + /@parcel/markdown-ansi@2.9.1: + resolution: {integrity: sha512-FpOz2ltnKnm6QaQCdcpuAEwGuScVUq0ixT/QAmU7A3/cwlsoxqMkB2XeWYIVTjs7p7Bsu0Ctdid/6pdtP7ghpg==} engines: {node: '>= 12.0.0'} dependencies: chalk: 4.1.2 dev: true - /@parcel/namer-default@2.8.3(@parcel/core@2.8.3): - resolution: {integrity: sha512-tJ7JehZviS5QwnxbARd8Uh63rkikZdZs1QOyivUhEvhN+DddSAVEdQLHGPzkl3YRk0tjFhbqo+Jci7TpezuAMw==} - engines: {node: '>= 12.0.0', parcel: ^2.8.3} + /@parcel/namer-default@2.9.1(@parcel/core@2.9.1): + resolution: {integrity: sha512-XHpAc5JLQchUqRrYqnUvinReR2nCyiD+DhIedMW5hURwlCPBlfcTVf6M5kSSpjzqRDVKezx3TFF6dzZNv0fBJQ==} + engines: {node: '>= 12.0.0', parcel: ^2.9.1} dependencies: - '@parcel/diagnostic': 2.8.3 - '@parcel/plugin': 2.8.3(@parcel/core@2.8.3) + '@parcel/diagnostic': 2.9.1 + '@parcel/plugin': 2.9.1(@parcel/core@2.9.1) nullthrows: 1.1.1 transitivePeerDependencies: - '@parcel/core' dev: true - /@parcel/node-resolver-core@2.8.3: - resolution: {integrity: sha512-12YryWcA5Iw2WNoEVr/t2HDjYR1iEzbjEcxfh1vaVDdZ020PiGw67g5hyIE/tsnG7SRJ0xdRx1fQ2hDgED+0Ww==} + /@parcel/node-resolver-core@3.0.1(@parcel/core@2.9.1): + resolution: {integrity: sha512-4owokOoHCONeazQGndB4PkIaUhZfyWuCT7Sx4UJc2UhR1V82MlahHrT2ItT0pkQyKWwCSNgHdBgdKUgKRdIiAw==} engines: {node: '>= 12.0.0'} dependencies: - '@parcel/diagnostic': 2.8.3 - '@parcel/utils': 2.8.3 + '@mischnic/json-sourcemap': 0.1.0 + '@parcel/diagnostic': 2.9.1 + '@parcel/fs': 2.9.1(@parcel/core@2.9.1) + '@parcel/utils': 2.9.1 nullthrows: 1.1.1 semver: 5.7.1 + transitivePeerDependencies: + - '@parcel/core' dev: true - /@parcel/optimizer-css@2.8.3(@parcel/core@2.8.3): - resolution: {integrity: sha512-JotGAWo8JhuXsQDK0UkzeQB0UR5hDAKvAviXrjqB4KM9wZNLhLleeEAW4Hk8R9smCeQFP6Xg/N/NkLDpqMwT3g==} - engines: {node: '>= 12.0.0', parcel: ^2.8.3} + /@parcel/optimizer-css@2.9.1(@parcel/core@2.9.1): + resolution: {integrity: sha512-IYQpV0kc0KN/aqRAWQsZ8b2pbI4ha4T5HAi27lTGIhQNvEixUtf0gJvCJVSlBxpdMiXVJq9pp97UamoNuB6oig==} + engines: {node: '>= 12.0.0', parcel: ^2.9.1} dependencies: - '@parcel/diagnostic': 2.8.3 - '@parcel/plugin': 2.8.3(@parcel/core@2.8.3) + '@parcel/diagnostic': 2.9.1 + '@parcel/plugin': 2.9.1(@parcel/core@2.9.1) '@parcel/source-map': 2.1.1 - '@parcel/utils': 2.8.3 + '@parcel/utils': 2.9.1 browserslist: 4.21.5 lightningcss: 1.19.0 nullthrows: 1.1.1 @@ -1315,11 +1559,11 @@ packages: - '@parcel/core' dev: true - /@parcel/optimizer-htmlnano@2.8.3(@parcel/core@2.8.3): - resolution: {integrity: sha512-L8/fHbEy8Id2a2E0fwR5eKGlv9VYDjrH9PwdJE9Za9v1O/vEsfl/0T/79/x129l5O0yB6EFQkFa20MiK3b+vOg==} - engines: {node: '>= 12.0.0', parcel: ^2.8.3} + /@parcel/optimizer-htmlnano@2.9.1(@parcel/core@2.9.1): + resolution: {integrity: sha512-t/e9XsoXZViqOFWcz3LlEClCOYNCjP6MIo+p+WmAuc5+QFF0/9viNqgRbhVe8V1tbtRofxsm4BossFOjOBSjmg==} + engines: {node: '>= 12.0.0', parcel: ^2.9.1} dependencies: - '@parcel/plugin': 2.8.3(@parcel/core@2.8.3) + '@parcel/plugin': 2.9.1(@parcel/core@2.9.1) htmlnano: 2.0.3(svgo@2.8.0) nullthrows: 1.1.1 posthtml: 0.16.6 @@ -1335,212 +1579,227 @@ packages: - uncss dev: true - /@parcel/optimizer-image@2.8.3(@parcel/core@2.8.3): - resolution: {integrity: sha512-SD71sSH27SkCDNUNx9A3jizqB/WIJr3dsfp+JZGZC42tpD/Siim6Rqy9M4To/BpMMQIIiEXa5ofwS+DgTEiEHQ==} - engines: {node: '>= 12.0.0', parcel: ^2.8.3} + /@parcel/optimizer-image@2.9.1(@parcel/core@2.9.1): + resolution: {integrity: sha512-Ml51RUGbQXyoHZ9yhyal8J/khZeWZX5J8NPOEvkCmmOkxo/qM4CMPIvJStzzn5K7mOPRKUheDkM/QoNGO5gTwA==} + engines: {node: '>= 12.0.0', parcel: ^2.9.1} dependencies: - '@parcel/diagnostic': 2.8.3 - '@parcel/plugin': 2.8.3(@parcel/core@2.8.3) - '@parcel/utils': 2.8.3 - '@parcel/workers': 2.8.3(@parcel/core@2.8.3) - detect-libc: 1.0.3 + '@parcel/diagnostic': 2.9.1 + '@parcel/plugin': 2.9.1(@parcel/core@2.9.1) + '@parcel/utils': 2.9.1 + '@parcel/workers': 2.9.1(@parcel/core@2.9.1) transitivePeerDependencies: - '@parcel/core' dev: true - /@parcel/optimizer-svgo@2.8.3(@parcel/core@2.8.3): - resolution: {integrity: sha512-9KQed99NZnQw3/W4qBYVQ7212rzA9EqrQG019TIWJzkA9tjGBMIm2c/nXpK1tc3hQ3e7KkXkFCQ3C+ibVUnHNA==} - engines: {node: '>= 12.0.0', parcel: ^2.8.3} + /@parcel/optimizer-svgo@2.9.1(@parcel/core@2.9.1): + resolution: {integrity: sha512-8XHSEIjJfdTFtUQzRiy0K+fbvdcheYc+azdyuJPnIV5AX04k4heKwp7uH328Ylk2k0JkfDyQmjFEyPj9qWDadQ==} + engines: {node: '>= 12.0.0', parcel: ^2.9.1} dependencies: - '@parcel/diagnostic': 2.8.3 - '@parcel/plugin': 2.8.3(@parcel/core@2.8.3) - '@parcel/utils': 2.8.3 + '@parcel/diagnostic': 2.9.1 + '@parcel/plugin': 2.9.1(@parcel/core@2.9.1) + '@parcel/utils': 2.9.1 svgo: 2.8.0 transitivePeerDependencies: - '@parcel/core' dev: true - /@parcel/optimizer-terser@2.8.3(@parcel/core@2.8.3): - resolution: {integrity: sha512-9EeQlN6zIeUWwzrzu6Q2pQSaYsYGah8MtiQ/hog9KEPlYTP60hBv/+utDyYEHSQhL7y5ym08tPX5GzBvwAD/dA==} - engines: {node: '>= 12.0.0', parcel: ^2.8.3} + /@parcel/optimizer-swc@2.9.1(@parcel/core@2.9.1): + resolution: {integrity: sha512-bLDkAwkmFE8YZNHcfJNj22haSLXrqjZkGXbPgGDkanCUS52yWv1+OFZ+6frX2q4EdXaTX8nFZSJL4VPHZZiUGQ==} + engines: {node: '>= 12.0.0', parcel: ^2.9.1} dependencies: - '@parcel/diagnostic': 2.8.3 - '@parcel/plugin': 2.8.3(@parcel/core@2.8.3) + '@parcel/diagnostic': 2.9.1 + '@parcel/plugin': 2.9.1(@parcel/core@2.9.1) '@parcel/source-map': 2.1.1 - '@parcel/utils': 2.8.3 + '@parcel/utils': 2.9.1 + '@swc/core': 1.3.60 nullthrows: 1.1.1 - terser: 5.16.5 transitivePeerDependencies: - '@parcel/core' + - '@swc/helpers' dev: true - /@parcel/package-manager@2.8.3(@parcel/core@2.8.3): - resolution: {integrity: sha512-tIpY5pD2lH53p9hpi++GsODy6V3khSTX4pLEGuMpeSYbHthnOViobqIlFLsjni+QA1pfc8NNNIQwSNdGjYflVA==} + /@parcel/package-manager@2.9.1(@parcel/core@2.9.1): + resolution: {integrity: sha512-cTUBUPRm62770Vw4YG5WGlkFxJII320nSobbP0TMggE/CGXg3ru2pvvX6WqXTFAHeM/z78xTPDq0NP97DBp5Ow==} engines: {node: '>= 12.0.0'} peerDependencies: - '@parcel/core': ^2.8.3 - dependencies: - '@parcel/core': 2.8.3 - '@parcel/diagnostic': 2.8.3 - '@parcel/fs': 2.8.3(@parcel/core@2.8.3) - '@parcel/logger': 2.8.3 - '@parcel/types': 2.8.3(@parcel/core@2.8.3) - '@parcel/utils': 2.8.3 - '@parcel/workers': 2.8.3(@parcel/core@2.8.3) + '@parcel/core': ^2.9.1 + dependencies: + '@parcel/core': 2.9.1 + '@parcel/diagnostic': 2.9.1 + '@parcel/fs': 2.9.1(@parcel/core@2.9.1) + '@parcel/logger': 2.9.1 + '@parcel/node-resolver-core': 3.0.1(@parcel/core@2.9.1) + '@parcel/types': 2.9.1(@parcel/core@2.9.1) + '@parcel/utils': 2.9.1 + '@parcel/workers': 2.9.1(@parcel/core@2.9.1) semver: 5.7.1 dev: true - /@parcel/packager-css@2.8.3(@parcel/core@2.8.3): - resolution: {integrity: sha512-WyvkMmsurlHG8d8oUVm7S+D+cC/T3qGeqogb7sTI52gB6uiywU7lRCizLNqGFyFGIxcVTVHWnSHqItBcLN76lA==} - engines: {node: '>= 12.0.0', parcel: ^2.8.3} + /@parcel/packager-css@2.9.1(@parcel/core@2.9.1): + resolution: {integrity: sha512-efMShrIwVBY9twZTGQ5QFwl9H3xJg8nSjl/xgOGq9rrbkmcrVlfSgPL9ExNx75EvmOwOKxZjFiMsNYNICPNfgg==} + engines: {node: '>= 12.0.0', parcel: ^2.9.1} dependencies: - '@parcel/plugin': 2.8.3(@parcel/core@2.8.3) + '@parcel/diagnostic': 2.9.1 + '@parcel/plugin': 2.9.1(@parcel/core@2.9.1) '@parcel/source-map': 2.1.1 - '@parcel/utils': 2.8.3 + '@parcel/utils': 2.9.1 nullthrows: 1.1.1 transitivePeerDependencies: - '@parcel/core' dev: true - /@parcel/packager-html@2.8.3(@parcel/core@2.8.3): - resolution: {integrity: sha512-OhPu1Hx1RRKJodpiu86ZqL8el2Aa4uhBHF6RAL1Pcrh2EhRRlPf70Sk0tC22zUpYL7es+iNKZ/n0Rl+OWSHWEw==} - engines: {node: '>= 12.0.0', parcel: ^2.8.3} + /@parcel/packager-html@2.9.1(@parcel/core@2.9.1): + resolution: {integrity: sha512-mP7iIwyFDZ21XwD2SlwZoSrvKpS5Amlpi/ywd0dLdwQb5TL+Q2f05IcRNfFbWdVd1AJycDQ85ERokNKN3QPMkg==} + engines: {node: '>= 12.0.0', parcel: ^2.9.1} dependencies: - '@parcel/plugin': 2.8.3(@parcel/core@2.8.3) - '@parcel/types': 2.8.3(@parcel/core@2.8.3) - '@parcel/utils': 2.8.3 + '@parcel/plugin': 2.9.1(@parcel/core@2.9.1) + '@parcel/types': 2.9.1(@parcel/core@2.9.1) + '@parcel/utils': 2.9.1 nullthrows: 1.1.1 posthtml: 0.16.6 transitivePeerDependencies: - '@parcel/core' dev: true - /@parcel/packager-js@2.8.3(@parcel/core@2.8.3): - resolution: {integrity: sha512-0pGKC3Ax5vFuxuZCRB+nBucRfFRz4ioie19BbDxYnvBxrd4M3FIu45njf6zbBYsI9eXqaDnL1b3DcZJfYqtIzw==} - engines: {node: '>= 12.0.0', parcel: ^2.8.3} + /@parcel/packager-js@2.9.1(@parcel/core@2.9.1): + resolution: {integrity: sha512-MmeKdp/obO36M8Y9yYAFiFkdhRFbQtYGSxbMwm2JVtRKMcFmlR5KzqLUg67OX6qgKw5lZZ1TkYhSI0hQQ6+Vqw==} + engines: {node: '>= 12.0.0', parcel: ^2.9.1} dependencies: - '@parcel/diagnostic': 2.8.3 - '@parcel/hash': 2.8.3 - '@parcel/plugin': 2.8.3(@parcel/core@2.8.3) + '@parcel/diagnostic': 2.9.1 + '@parcel/hash': 2.9.1 + '@parcel/plugin': 2.9.1(@parcel/core@2.9.1) '@parcel/source-map': 2.1.1 - '@parcel/utils': 2.8.3 + '@parcel/utils': 2.9.1 globals: 13.20.0 nullthrows: 1.1.1 transitivePeerDependencies: - '@parcel/core' dev: true - /@parcel/packager-raw@2.8.3(@parcel/core@2.8.3): - resolution: {integrity: sha512-BA6enNQo1RCnco9MhkxGrjOk59O71IZ9DPKu3lCtqqYEVd823tXff2clDKHK25i6cChmeHu6oB1Rb73hlPqhUA==} - engines: {node: '>= 12.0.0', parcel: ^2.8.3} + /@parcel/packager-raw@2.9.1(@parcel/core@2.9.1): + resolution: {integrity: sha512-qHJ389R5cLgR2PcJt8sOrNBcAY0qpZRMTOMgkc9zYkKy1tdUMgCUuDfO1kShfv4E7rr084mtlu9tK8MXChyF6w==} + engines: {node: '>= 12.0.0', parcel: ^2.9.1} dependencies: - '@parcel/plugin': 2.8.3(@parcel/core@2.8.3) + '@parcel/plugin': 2.9.1(@parcel/core@2.9.1) transitivePeerDependencies: - '@parcel/core' dev: true - /@parcel/packager-svg@2.8.3(@parcel/core@2.8.3): - resolution: {integrity: sha512-mvIoHpmv5yzl36OjrklTDFShLUfPFTwrmp1eIwiszGdEBuQaX7JVI3Oo2jbVQgcN4W7J6SENzGQ3Q5hPTW3pMw==} - engines: {node: '>= 12.0.0', parcel: ^2.8.3} + /@parcel/packager-svg@2.9.1(@parcel/core@2.9.1): + resolution: {integrity: sha512-aRzuiwcUlNATfSIbeYpDkJXvwdiAAbiQlxSz6cI53NqWwZn+Dn79WyiKPBST14ij4/P3ZjkcwXevqHpvXP/ArQ==} + engines: {node: '>= 12.0.0', parcel: ^2.9.1} dependencies: - '@parcel/plugin': 2.8.3(@parcel/core@2.8.3) - '@parcel/types': 2.8.3(@parcel/core@2.8.3) - '@parcel/utils': 2.8.3 + '@parcel/plugin': 2.9.1(@parcel/core@2.9.1) + '@parcel/types': 2.9.1(@parcel/core@2.9.1) + '@parcel/utils': 2.9.1 posthtml: 0.16.6 transitivePeerDependencies: - '@parcel/core' dev: true - /@parcel/packager-ts@2.8.3(@parcel/core@2.8.3): - resolution: {integrity: sha512-8JooYHjKntHnQywLT7LAnfoGiAQ1fUu0N2DtuM0PxpgQqYJ4KE9TZS+SZq7hpe24cZkD0A4A+1kBlYAyvuanrg==} - engines: {node: '>= 12.0.0', parcel: ^2.8.3} + /@parcel/plugin@2.9.1(@parcel/core@2.9.1): + resolution: {integrity: sha512-kD+BNkPGRcxZZUKhAXqF/bilUMhXUlf/ZixVlBS5rEsUB1yx/Ze8c4ypaKr5WsEwv34C+X4p4WFYdZVJEr3Y+g==} + engines: {node: '>= 12.0.0'} dependencies: - '@parcel/plugin': 2.8.3(@parcel/core@2.8.3) + '@parcel/types': 2.9.1(@parcel/core@2.9.1) transitivePeerDependencies: - '@parcel/core' dev: true - /@parcel/plugin@2.8.3(@parcel/core@2.8.3): - resolution: {integrity: sha512-jZ6mnsS4D9X9GaNnvrixDQwlUQJCohDX2hGyM0U0bY2NWU8Km97SjtoCpWjq+XBCx/gpC4g58+fk9VQeZq2vlw==} + /@parcel/profiler@2.9.1: + resolution: {integrity: sha512-hrptwbh9uUxnWHAAXiZ6BtpM74cU+VfrOWgnmUA8pkYWBmrb2wSLeqRKl8FiSt+nfRTTbNAIlmn9vk2x+wRNOA==} engines: {node: '>= 12.0.0'} dependencies: - '@parcel/types': 2.8.3(@parcel/core@2.8.3) - transitivePeerDependencies: - - '@parcel/core' + '@parcel/diagnostic': 2.9.1 + '@parcel/events': 2.9.1 + chrome-trace-event: 1.0.3 dev: true - /@parcel/reporter-cli@2.8.3(@parcel/core@2.8.3): - resolution: {integrity: sha512-3sJkS6tFFzgIOz3u3IpD/RsmRxvOKKiQHOTkiiqRt1l44mMDGKS7zANRnJYsQzdCsgwc9SOP30XFgJwtoVlMbw==} - engines: {node: '>= 12.0.0', parcel: ^2.8.3} + /@parcel/reporter-cli@2.9.1(@parcel/core@2.9.1): + resolution: {integrity: sha512-xzJaaHQwcsmHijlCl7gOAdqU0n6AnW7c7rN8AXDH8BvnOx2v8NC8nCIEmDTOfpQYepcuER2+ilTQ7jpDx/iDhg==} + engines: {node: '>= 12.0.0', parcel: ^2.9.1} dependencies: - '@parcel/plugin': 2.8.3(@parcel/core@2.8.3) - '@parcel/types': 2.8.3(@parcel/core@2.8.3) - '@parcel/utils': 2.8.3 + '@parcel/plugin': 2.9.1(@parcel/core@2.9.1) + '@parcel/types': 2.9.1(@parcel/core@2.9.1) + '@parcel/utils': 2.9.1 chalk: 4.1.2 term-size: 2.2.1 transitivePeerDependencies: - '@parcel/core' dev: true - /@parcel/reporter-dev-server@2.8.3(@parcel/core@2.8.3): - resolution: {integrity: sha512-Y8C8hzgzTd13IoWTj+COYXEyCkXfmVJs3//GDBsH22pbtSFMuzAZd+8J9qsCo0EWpiDow7V9f1LischvEh3FbQ==} - engines: {node: '>= 12.0.0', parcel: ^2.8.3} + /@parcel/reporter-dev-server@2.9.1(@parcel/core@2.9.1): + resolution: {integrity: sha512-Wa9kmtnuYTqEsKakhrSLvZmWxM4TB+Dg2jl1vC3gYfvlsgt/d/Hp/y2giPH1EeCm4wEEQfdAY3WmSUx9p1x07w==} + engines: {node: '>= 12.0.0', parcel: ^2.9.1} dependencies: - '@parcel/plugin': 2.8.3(@parcel/core@2.8.3) - '@parcel/utils': 2.8.3 + '@parcel/plugin': 2.9.1(@parcel/core@2.9.1) + '@parcel/utils': 2.9.1 transitivePeerDependencies: - '@parcel/core' dev: true - /@parcel/resolver-default@2.8.3(@parcel/core@2.8.3): - resolution: {integrity: sha512-k0B5M/PJ+3rFbNj4xZSBr6d6HVIe6DH/P3dClLcgBYSXAvElNDfXgtIimbjCyItFkW9/BfcgOVKEEIZOeySH/A==} - engines: {node: '>= 12.0.0', parcel: ^2.8.3} + /@parcel/reporter-tracer@2.9.1(@parcel/core@2.9.1): + resolution: {integrity: sha512-LgZKx9qwBAChWHBcpHW8GJXz45IGtiPmzs6HIDavZOiGqjGVzmbHUKxHnFaRZqR6WznJ+0ay/2o+BrJ8cyXUcg==} + engines: {node: '>= 12.0.0', parcel: ^2.9.1} dependencies: - '@parcel/node-resolver-core': 2.8.3 - '@parcel/plugin': 2.8.3(@parcel/core@2.8.3) + '@parcel/plugin': 2.9.1(@parcel/core@2.9.1) + '@parcel/utils': 2.9.1 + chrome-trace-event: 1.0.3 + nullthrows: 1.1.1 transitivePeerDependencies: - '@parcel/core' dev: true - /@parcel/runtime-browser-hmr@2.8.3(@parcel/core@2.8.3): - resolution: {integrity: sha512-2O1PYi2j/Q0lTyGNV3JdBYwg4rKo6TEVFlYGdd5wCYU9ZIN9RRuoCnWWH2qCPj3pjIVtBeppYxzfVjPEHINWVg==} - engines: {node: '>= 12.0.0', parcel: ^2.8.3} + /@parcel/resolver-default@2.9.1(@parcel/core@2.9.1): + resolution: {integrity: sha512-Q+knNaRDTbGIGqUnddtWEgpYduVBkDyi/CpxKpi7dP7sVYNJsXwEf82hpjX6/XqotA5dehT63yJkvJ/wxJF1Nw==} + engines: {node: '>= 12.0.0', parcel: ^2.9.1} dependencies: - '@parcel/plugin': 2.8.3(@parcel/core@2.8.3) - '@parcel/utils': 2.8.3 + '@parcel/node-resolver-core': 3.0.1(@parcel/core@2.9.1) + '@parcel/plugin': 2.9.1(@parcel/core@2.9.1) transitivePeerDependencies: - '@parcel/core' dev: true - /@parcel/runtime-js@2.8.3(@parcel/core@2.8.3): - resolution: {integrity: sha512-IRja0vNKwvMtPgIqkBQh0QtRn0XcxNC8HU1jrgWGRckzu10qJWO+5ULgtOeR4pv9krffmMPqywGXw6l/gvJKYQ==} - engines: {node: '>= 12.0.0', parcel: ^2.8.3} + /@parcel/runtime-browser-hmr@2.9.1(@parcel/core@2.9.1): + resolution: {integrity: sha512-C+023FOsrycpBHUgUf7Nv4uN0NrLN3UkeymsAHQlgZD5QQD7+nhG6p9PQ7+HbbEAaGaeO7c/86s2qRUglufNig==} + engines: {node: '>= 12.0.0', parcel: ^2.9.1} dependencies: - '@parcel/plugin': 2.8.3(@parcel/core@2.8.3) - '@parcel/utils': 2.8.3 + '@parcel/plugin': 2.9.1(@parcel/core@2.9.1) + '@parcel/utils': 2.9.1 + transitivePeerDependencies: + - '@parcel/core' + dev: true + + /@parcel/runtime-js@2.9.1(@parcel/core@2.9.1): + resolution: {integrity: sha512-caT1s1BqYNFGFAz9ul7uwDf+ZXzipiYYoHphhmT2JFweQmRA1CrMeFCuCQa2exsdu+UQpRbuKd+v5UUS2n0poQ==} + engines: {node: '>= 12.0.0', parcel: ^2.9.1} + dependencies: + '@parcel/diagnostic': 2.9.1 + '@parcel/plugin': 2.9.1(@parcel/core@2.9.1) + '@parcel/utils': 2.9.1 nullthrows: 1.1.1 transitivePeerDependencies: - '@parcel/core' dev: true - /@parcel/runtime-react-refresh@2.8.3(@parcel/core@2.8.3): - resolution: {integrity: sha512-2v/qFKp00MfG0234OdOgQNAo6TLENpFYZMbVbAsPMY9ITiqG73MrEsrGXVoGbYiGTMB/Toer/lSWlJxtacOCuA==} - engines: {node: '>= 12.0.0', parcel: ^2.8.3} + /@parcel/runtime-react-refresh@2.9.1(@parcel/core@2.9.1): + resolution: {integrity: sha512-opDW9p3f4gVc1aVdFAyLWTL+2S8rhsPdBQRBHEi4WE2DRe/9lpA12NN5KUUHy88dlIr3wyzmaO2Fts0r/x80zg==} + engines: {node: '>= 12.0.0', parcel: ^2.9.1} dependencies: - '@parcel/plugin': 2.8.3(@parcel/core@2.8.3) - '@parcel/utils': 2.8.3 + '@parcel/plugin': 2.9.1(@parcel/core@2.9.1) + '@parcel/utils': 2.9.1 react-error-overlay: 6.0.9 react-refresh: 0.9.0 transitivePeerDependencies: - '@parcel/core' dev: true - /@parcel/runtime-service-worker@2.8.3(@parcel/core@2.8.3): - resolution: {integrity: sha512-/Skkw+EeRiwzOJso5fQtK8c9b452uWLNhQH1ISTodbmlcyB4YalAiSsyHCtMYD0c3/t5Sx4ZS7vxBAtQd0RvOw==} - engines: {node: '>= 12.0.0', parcel: ^2.8.3} + /@parcel/runtime-service-worker@2.9.1(@parcel/core@2.9.1): + resolution: {integrity: sha512-TED4MouYjP7xbU9V7/3rjnmuWbCefrP+OC+eQJG6j3HwKiL92QTZ6trWqdLuxFhtZMXKjwbWaBBbIcELB/PbtQ==} + engines: {node: '>= 12.0.0', parcel: ^2.9.1} dependencies: - '@parcel/plugin': 2.8.3(@parcel/core@2.8.3) - '@parcel/utils': 2.8.3 + '@parcel/plugin': 2.9.1(@parcel/core@2.9.1) + '@parcel/utils': 2.9.1 nullthrows: 1.1.1 transitivePeerDependencies: - '@parcel/core' @@ -1553,14 +1812,14 @@ packages: detect-libc: 1.0.3 dev: true - /@parcel/transformer-babel@2.8.3(@parcel/core@2.8.3): - resolution: {integrity: sha512-L6lExfpvvC7T/g3pxf3CIJRouQl+sgrSzuWQ0fD4PemUDHvHchSP4SNUVnd6gOytF3Y1KpnEZIunQGi5xVqQCQ==} - engines: {node: '>= 12.0.0', parcel: ^2.8.3} + /@parcel/transformer-babel@2.9.1(@parcel/core@2.9.1): + resolution: {integrity: sha512-HEU3bavD9Cu0RP5T1ioGLbsOQDqND/SQWal8L2f9HsgwTs2kzmTxYylNccqNjAMj3NnoyXzKMKbZyG8qEuLlpw==} + engines: {node: '>= 12.0.0', parcel: ^2.9.1} dependencies: - '@parcel/diagnostic': 2.8.3 - '@parcel/plugin': 2.8.3(@parcel/core@2.8.3) + '@parcel/diagnostic': 2.9.1 + '@parcel/plugin': 2.9.1(@parcel/core@2.9.1) '@parcel/source-map': 2.1.1 - '@parcel/utils': 2.8.3 + '@parcel/utils': 2.9.1 browserslist: 4.21.5 json5: 2.2.3 nullthrows: 1.1.1 @@ -1569,14 +1828,14 @@ packages: - '@parcel/core' dev: true - /@parcel/transformer-css@2.8.3(@parcel/core@2.8.3): - resolution: {integrity: sha512-xTqFwlSXtnaYen9ivAgz+xPW7yRl/u4QxtnDyDpz5dr8gSeOpQYRcjkd4RsYzKsWzZcGtB5EofEk8ayUbWKEUg==} - engines: {node: '>= 12.0.0', parcel: ^2.8.3} + /@parcel/transformer-css@2.9.1(@parcel/core@2.9.1): + resolution: {integrity: sha512-nT+xOfyveX6qSb088dOh59HWJ1gm7DAIQZPbjTa1wLzRQul8ysdQRf/loulBmtUheol7YwQtVvUHN2XgoMDCAw==} + engines: {node: '>= 12.0.0', parcel: ^2.9.1} dependencies: - '@parcel/diagnostic': 2.8.3 - '@parcel/plugin': 2.8.3(@parcel/core@2.8.3) + '@parcel/diagnostic': 2.9.1 + '@parcel/plugin': 2.9.1(@parcel/core@2.9.1) '@parcel/source-map': 2.1.1 - '@parcel/utils': 2.8.3 + '@parcel/utils': 2.9.1 browserslist: 4.21.5 lightningcss: 1.19.0 nullthrows: 1.1.1 @@ -1584,13 +1843,13 @@ packages: - '@parcel/core' dev: true - /@parcel/transformer-html@2.8.3(@parcel/core@2.8.3): - resolution: {integrity: sha512-kIZO3qsMYTbSnSpl9cnZog+SwL517ffWH54JeB410OSAYF1ouf4n5v9qBnALZbuCCmPwJRGs4jUtE452hxwN4g==} - engines: {node: '>= 12.0.0', parcel: ^2.8.3} + /@parcel/transformer-html@2.9.1(@parcel/core@2.9.1): + resolution: {integrity: sha512-pIkJbcB91Dl2RyZmVd9neGkf7XJeYXwgx0et5hktw+3m0S2QB399OjVWwi5Q6ZdtTrWkQnHLmbeHT3NOmNWlaw==} + engines: {node: '>= 12.0.0', parcel: ^2.9.1} dependencies: - '@parcel/diagnostic': 2.8.3 - '@parcel/hash': 2.8.3 - '@parcel/plugin': 2.8.3(@parcel/core@2.8.3) + '@parcel/diagnostic': 2.9.1 + '@parcel/hash': 2.9.1 + '@parcel/plugin': 2.9.1(@parcel/core@2.9.1) nullthrows: 1.1.1 posthtml: 0.16.6 posthtml-parser: 0.10.2 @@ -1601,66 +1860,56 @@ packages: - '@parcel/core' dev: true - /@parcel/transformer-image@2.8.3(@parcel/core@2.8.3): - resolution: {integrity: sha512-cO4uptcCGTi5H6bvTrAWEFUsTNhA4kCo8BSvRSCHA2sf/4C5tGQPHt3JhdO0GQLPwZRCh/R41EkJs5HZ8A8DAg==} - engines: {node: '>= 12.0.0', parcel: ^2.8.3} + /@parcel/transformer-image@2.9.1(@parcel/core@2.9.1): + resolution: {integrity: sha512-3D4zEavCM1i354ZgJWg7RBNgASA7Q2iHN374lH5hT6I7VAJzNT+PTNrPNQ4vKhi69r+i1sQQzsPdgEUXOExmbQ==} + engines: {node: '>= 12.0.0', parcel: ^2.9.1} peerDependencies: - '@parcel/core': ^2.8.3 + '@parcel/core': ^2.9.1 dependencies: - '@parcel/core': 2.8.3 - '@parcel/plugin': 2.8.3(@parcel/core@2.8.3) - '@parcel/utils': 2.8.3 - '@parcel/workers': 2.8.3(@parcel/core@2.8.3) + '@parcel/core': 2.9.1 + '@parcel/plugin': 2.9.1(@parcel/core@2.9.1) + '@parcel/utils': 2.9.1 + '@parcel/workers': 2.9.1(@parcel/core@2.9.1) nullthrows: 1.1.1 dev: true - /@parcel/transformer-inline-string@2.8.3(@parcel/core@2.8.3): - resolution: {integrity: sha512-TBMk2H9nV8JMOsLztalhzS6HgthG5SCHKYkR2MaW7eSZuSGotbSP22aJip8HgQZ/lPMdOMb1lknHmd8WROxWHg==} - engines: {node: '>= 12.0.0', parcel: ^2.8.3} - dependencies: - '@parcel/plugin': 2.8.3(@parcel/core@2.8.3) - transitivePeerDependencies: - - '@parcel/core' - dev: true - - /@parcel/transformer-js@2.8.3(@parcel/core@2.8.3): - resolution: {integrity: sha512-9Qd6bib+sWRcpovvzvxwy/PdFrLUXGfmSW9XcVVG8pvgXsZPFaNjnNT8stzGQj1pQiougCoxMY4aTM5p1lGHEQ==} - engines: {node: '>= 12.0.0', parcel: ^2.8.3} + /@parcel/transformer-js@2.9.1(@parcel/core@2.9.1): + resolution: {integrity: sha512-7hlbAIufIvx6iPspfZ3v1g2cmtpaNEaC04RzRv8HVVru8TE868yplFI840ZBnF5ylOfmxwFTUjlphVtVcPs13A==} + engines: {node: '>= 12.0.0', parcel: ^2.9.1} peerDependencies: - '@parcel/core': ^2.8.3 + '@parcel/core': ^2.9.1 dependencies: - '@parcel/core': 2.8.3 - '@parcel/diagnostic': 2.8.3 - '@parcel/plugin': 2.8.3(@parcel/core@2.8.3) + '@parcel/core': 2.9.1 + '@parcel/diagnostic': 2.9.1 + '@parcel/plugin': 2.9.1(@parcel/core@2.9.1) '@parcel/source-map': 2.1.1 - '@parcel/utils': 2.8.3 - '@parcel/workers': 2.8.3(@parcel/core@2.8.3) - '@swc/helpers': 0.4.14 + '@parcel/utils': 2.9.1 + '@parcel/workers': 2.9.1(@parcel/core@2.9.1) + '@swc/helpers': 0.5.1 browserslist: 4.21.5 - detect-libc: 1.0.3 nullthrows: 1.1.1 regenerator-runtime: 0.13.11 semver: 5.7.1 dev: true - /@parcel/transformer-json@2.8.3(@parcel/core@2.8.3): - resolution: {integrity: sha512-B7LmVq5Q7bZO4ERb6NHtRuUKWGysEeaj9H4zelnyBv+wLgpo4f5FCxSE1/rTNmP9u1qHvQ3scGdK6EdSSokGPg==} - engines: {node: '>= 12.0.0', parcel: ^2.8.3} + /@parcel/transformer-json@2.9.1(@parcel/core@2.9.1): + resolution: {integrity: sha512-yFRSz1qVbdCssC65D37Ru3diQk7GQl5ZOOyQ7MeMYlhvl8mcFKGRC3wUAyqBZrh70VOWuWR7WS2XLdqTdE9WqQ==} + engines: {node: '>= 12.0.0', parcel: ^2.9.1} dependencies: - '@parcel/plugin': 2.8.3(@parcel/core@2.8.3) + '@parcel/plugin': 2.9.1(@parcel/core@2.9.1) json5: 2.2.3 transitivePeerDependencies: - '@parcel/core' dev: true - /@parcel/transformer-postcss@2.8.3(@parcel/core@2.8.3): - resolution: {integrity: sha512-e8luB/poIlz6jBsD1Izms+6ElbyzuoFVa4lFVLZnTAChI3UxPdt9p/uTsIO46HyBps/Bk8ocvt3J4YF84jzmvg==} - engines: {node: '>= 12.0.0', parcel: ^2.8.3} + /@parcel/transformer-postcss@2.9.1(@parcel/core@2.9.1): + resolution: {integrity: sha512-sNSJbdT4Z8H+/cZ/vCmos44SfbB9O5gNgMEgGa6WqU7MV7cVlnE8zuNJkxR97ZZTpIXNrfVerOY3lOrUrFCxdA==} + engines: {node: '>= 12.0.0', parcel: ^2.9.1} dependencies: - '@parcel/diagnostic': 2.8.3 - '@parcel/hash': 2.8.3 - '@parcel/plugin': 2.8.3(@parcel/core@2.8.3) - '@parcel/utils': 2.8.3 + '@parcel/diagnostic': 2.9.1 + '@parcel/hash': 2.9.1 + '@parcel/plugin': 2.9.1(@parcel/core@2.9.1) + '@parcel/utils': 2.9.1 clone: 2.1.2 nullthrows: 1.1.1 postcss-value-parser: 4.2.0 @@ -1669,12 +1918,12 @@ packages: - '@parcel/core' dev: true - /@parcel/transformer-posthtml@2.8.3(@parcel/core@2.8.3): - resolution: {integrity: sha512-pkzf9Smyeaw4uaRLsT41RGrPLT5Aip8ZPcntawAfIo+KivBQUV0erY1IvHYjyfFzq1ld/Fo2Ith9He6mxpPifA==} - engines: {node: '>= 12.0.0', parcel: ^2.8.3} + /@parcel/transformer-posthtml@2.9.1(@parcel/core@2.9.1): + resolution: {integrity: sha512-I6fr6lVAqjDxdkOwxelx7FibMWP55JPf3ZTXKCWpoIGkOuT2i2tYZMdXEHVshZWJmByelbYSC96w8P8rSY+6XQ==} + engines: {node: '>= 12.0.0', parcel: ^2.9.1} dependencies: - '@parcel/plugin': 2.8.3(@parcel/core@2.8.3) - '@parcel/utils': 2.8.3 + '@parcel/plugin': 2.9.1(@parcel/core@2.9.1) + '@parcel/utils': 2.9.1 nullthrows: 1.1.1 posthtml: 0.16.6 posthtml-parser: 0.10.2 @@ -1684,33 +1933,33 @@ packages: - '@parcel/core' dev: true - /@parcel/transformer-raw@2.8.3(@parcel/core@2.8.3): - resolution: {integrity: sha512-G+5cXnd2/1O3nV/pgRxVKZY/HcGSseuhAe71gQdSQftb8uJEURyUHoQ9Eh0JUD3MgWh9V+nIKoyFEZdf9T0sUQ==} - engines: {node: '>= 12.0.0', parcel: ^2.8.3} + /@parcel/transformer-raw@2.9.1(@parcel/core@2.9.1): + resolution: {integrity: sha512-Wr0Y9fETiyF5ntL3yhn/ZXjcnswcn1T9YLXa+yAxpAxKW+/D7A1jKVS0tyDOZsdakWA9gzlLP6w1O4Nl8pVmEg==} + engines: {node: '>= 12.0.0', parcel: ^2.9.1} dependencies: - '@parcel/plugin': 2.8.3(@parcel/core@2.8.3) + '@parcel/plugin': 2.9.1(@parcel/core@2.9.1) transitivePeerDependencies: - '@parcel/core' dev: true - /@parcel/transformer-react-refresh-wrap@2.8.3(@parcel/core@2.8.3): - resolution: {integrity: sha512-q8AAoEvBnCf/nPvgOwFwKZfEl/thwq7c2duxXkhl+tTLDRN2vGmyz4355IxCkavSX+pLWSQ5MexklSEeMkgthg==} - engines: {node: '>= 12.0.0', parcel: ^2.8.3} + /@parcel/transformer-react-refresh-wrap@2.9.1(@parcel/core@2.9.1): + resolution: {integrity: sha512-ML+KDvLoZ6O+9r3/yf8DeVtobhYc9DPXYHZ75aXoFyou97I9WDf4EqlY4/MSkbZV79FUXxC68dyLJj3Q9ILqeA==} + engines: {node: '>= 12.0.0', parcel: ^2.9.1} dependencies: - '@parcel/plugin': 2.8.3(@parcel/core@2.8.3) - '@parcel/utils': 2.8.3 + '@parcel/plugin': 2.9.1(@parcel/core@2.9.1) + '@parcel/utils': 2.9.1 react-refresh: 0.9.0 transitivePeerDependencies: - '@parcel/core' dev: true - /@parcel/transformer-svg@2.8.3(@parcel/core@2.8.3): - resolution: {integrity: sha512-3Zr/gBzxi1ZH1fftH/+KsZU7w5GqkmxlB0ZM8ovS5E/Pl1lq1t0xvGJue9m2VuQqP8Mxfpl5qLFmsKlhaZdMIQ==} - engines: {node: '>= 12.0.0', parcel: ^2.8.3} + /@parcel/transformer-svg@2.9.1(@parcel/core@2.9.1): + resolution: {integrity: sha512-DYcUfutjtghPXMVybFygncIKJl/4rrpQMxv8yTVeDtplUTvFzbI+3hIoYfYm8z9CXaSBzsCw2Kud6PD8Ob2AzQ==} + engines: {node: '>= 12.0.0', parcel: ^2.9.1} dependencies: - '@parcel/diagnostic': 2.8.3 - '@parcel/hash': 2.8.3 - '@parcel/plugin': 2.8.3(@parcel/core@2.8.3) + '@parcel/diagnostic': 2.9.1 + '@parcel/hash': 2.9.1 + '@parcel/plugin': 2.9.1(@parcel/core@2.9.1) nullthrows: 1.1.1 posthtml: 0.16.6 posthtml-parser: 0.10.2 @@ -1720,58 +1969,44 @@ packages: - '@parcel/core' dev: true - /@parcel/transformer-typescript-types@2.8.3(@parcel/core@2.8.3)(typescript@4.9.5): - resolution: {integrity: sha512-zjsJsgecjw4X1nt5R7A61uWwzwCce0usKKPqnE5tQpYtF4FfK5X69r0l5JLovlyaT2uwoe+hvhu2AELA0kKRQA==} - engines: {node: '>= 12.0.0', parcel: ^2.8.3} - peerDependencies: - typescript: '>=3.0.0' + /@parcel/types@2.9.1: + resolution: {integrity: sha512-LBx4Tvr1sK9t+FmPjS4jPvcmUcJo6co22sn0pBuz2oXISs/YK2N+3ZHXL+KsozKvLn2wXysgaWFIARN9xFoORw==} dependencies: - '@parcel/diagnostic': 2.8.3 - '@parcel/plugin': 2.8.3(@parcel/core@2.8.3) + '@parcel/cache': 2.9.1(@parcel/core@2.9.1) + '@parcel/diagnostic': 2.9.1 + '@parcel/fs': 2.9.1(@parcel/core@2.9.1) + '@parcel/package-manager': 2.9.1(@parcel/core@2.9.1) '@parcel/source-map': 2.1.1 - '@parcel/ts-utils': 2.8.3(typescript@4.9.5) - '@parcel/utils': 2.8.3 - nullthrows: 1.1.1 - typescript: 4.9.5 - transitivePeerDependencies: - - '@parcel/core' - dev: true - - /@parcel/ts-utils@2.8.3(typescript@4.9.5): - resolution: {integrity: sha512-4HMt9B9LF2pDFvSKGImho48tlCvCUl7ly1ZMXvQdmEq2i0yoS81tDsmxX3yly/RVUVeUCGAj1JRuuy1lw5zw1A==} - engines: {node: '>= 12.0.0'} - peerDependencies: - typescript: '>=3.0.0' - dependencies: - nullthrows: 1.1.1 - typescript: 4.9.5 + '@parcel/workers': 2.9.1(@parcel/core@2.9.1) + utility-types: 3.10.0 dev: true - /@parcel/types@2.8.3(@parcel/core@2.8.3): - resolution: {integrity: sha512-FECA1FB7+0UpITKU0D6TgGBpGxYpVSMNEENZbSJxFSajNy3wrko+zwBKQmFOLOiPcEtnGikxNs+jkFWbPlUAtw==} + /@parcel/types@2.9.1(@parcel/core@2.9.1): + resolution: {integrity: sha512-LBx4Tvr1sK9t+FmPjS4jPvcmUcJo6co22sn0pBuz2oXISs/YK2N+3ZHXL+KsozKvLn2wXysgaWFIARN9xFoORw==} dependencies: - '@parcel/cache': 2.8.3(@parcel/core@2.8.3) - '@parcel/diagnostic': 2.8.3 - '@parcel/fs': 2.8.3(@parcel/core@2.8.3) - '@parcel/package-manager': 2.8.3(@parcel/core@2.8.3) + '@parcel/cache': 2.9.1(@parcel/core@2.9.1) + '@parcel/diagnostic': 2.9.1 + '@parcel/fs': 2.9.1(@parcel/core@2.9.1) + '@parcel/package-manager': 2.9.1(@parcel/core@2.9.1) '@parcel/source-map': 2.1.1 - '@parcel/workers': 2.8.3(@parcel/core@2.8.3) + '@parcel/workers': 2.9.1(@parcel/core@2.9.1) utility-types: 3.10.0 transitivePeerDependencies: - '@parcel/core' dev: true - /@parcel/utils@2.8.3: - resolution: {integrity: sha512-IhVrmNiJ+LOKHcCivG5dnuLGjhPYxQ/IzbnF2DKNQXWBTsYlHkJZpmz7THoeLtLliGmSOZ3ZCsbR8/tJJKmxjA==} + /@parcel/utils@2.9.1: + resolution: {integrity: sha512-0P/zIvtvLyuzQA4VFMzA8F22lrUyGR+phve/NlBUH+4Tn+Rt/evh9fP9vG1YTVMXWd90tesLdrtqatm1hqrJSA==} engines: {node: '>= 12.0.0'} dependencies: - '@parcel/codeframe': 2.8.3 - '@parcel/diagnostic': 2.8.3 - '@parcel/hash': 2.8.3 - '@parcel/logger': 2.8.3 - '@parcel/markdown-ansi': 2.8.3 + '@parcel/codeframe': 2.9.1 + '@parcel/diagnostic': 2.9.1 + '@parcel/hash': 2.9.1 + '@parcel/logger': 2.9.1 + '@parcel/markdown-ansi': 2.9.1 '@parcel/source-map': 2.1.1 chalk: 4.1.2 + nullthrows: 1.1.1 dev: true /@parcel/watcher@2.1.0: @@ -1785,26 +2020,155 @@ packages: node-gyp-build: 4.6.0 dev: true - /@parcel/workers@2.8.3(@parcel/core@2.8.3): - resolution: {integrity: sha512-+AxBnKgjqVpUHBcHLWIHcjYgKIvHIpZjN33mG5LG9XXvrZiqdWvouEzqEXlVLq5VzzVbKIQQcmsvRy138YErkg==} + /@parcel/workers@2.9.1(@parcel/core@2.9.1): + resolution: {integrity: sha512-24R4IRMX8TBghak6pDCzM5B8NB4LTt0pI4dwNqSENyZA/Q5s/xMbG5gdn4aTwkAyIQ5lHrgDsHzoHbjOT0HLYQ==} engines: {node: '>= 12.0.0'} peerDependencies: - '@parcel/core': ^2.8.3 - dependencies: - '@parcel/core': 2.8.3 - '@parcel/diagnostic': 2.8.3 - '@parcel/logger': 2.8.3 - '@parcel/types': 2.8.3(@parcel/core@2.8.3) - '@parcel/utils': 2.8.3 - chrome-trace-event: 1.0.3 + '@parcel/core': ^2.9.1 + dependencies: + '@parcel/core': 2.9.1 + '@parcel/diagnostic': 2.9.1 + '@parcel/logger': 2.9.1 + '@parcel/profiler': 2.9.1 + '@parcel/types': 2.9.1 + '@parcel/utils': 2.9.1 nullthrows: 1.1.1 dev: true - /@remix-run/router@1.5.0: - resolution: {integrity: sha512-bkUDCp8o1MvFO+qxkODcbhSqRa6P2GXgrGZVpt0dCXNW2HCSCqYI0ZoAqEOSAjRWmmlKcYgFvN4B4S+zo/f8kg==} + /@preconstruct/cli@2.7.0: + resolution: {integrity: sha512-reluhXnOCPYhltV9wZZe07v9Eir6+9HiwQtdsUgvmm6UndtDr1kRr2jtObnDtXTjt7LEpU4+TD43+3+Tu7Qebw==} + hasBin: true + dependencies: + '@babel/code-frame': 7.18.6 + '@babel/core': 7.21.0 + '@babel/helper-module-imports': 7.18.6 + '@babel/runtime': 7.21.0 + '@preconstruct/hook': 0.4.0 + '@rollup/plugin-alias': 3.1.9(rollup@2.79.1) + '@rollup/plugin-commonjs': 15.1.0(rollup@2.79.1) + '@rollup/plugin-json': 4.1.0(rollup@2.79.1) + '@rollup/plugin-node-resolve': 11.2.1(rollup@2.79.1) + '@rollup/plugin-replace': 2.4.2(rollup@2.79.1) + builtin-modules: 3.3.0 + chalk: 4.1.2 + dataloader: 2.2.2 + detect-indent: 6.1.0 + enquirer: 2.3.6 + estree-walker: 2.0.2 + fast-deep-equal: 2.0.1 + fast-glob: 3.2.12 + fs-extra: 9.1.0 + is-ci: 2.0.0 + is-reference: 1.2.1 + jest-worker: 26.6.2 + magic-string: 0.30.0 + meow: 7.1.1 + ms: 2.1.2 + normalize-path: 3.0.0 + npm-packlist: 2.2.2 + p-limit: 3.1.0 + parse-glob: 3.0.4 + parse-json: 5.2.0 + quick-lru: 5.1.1 + resolve: 1.22.1 + resolve-from: 5.0.0 + rollup: 2.79.1 + semver: 7.3.8 + terser: 5.17.6 + v8-compile-cache: 2.3.0 + zod: 3.21.4 + transitivePeerDependencies: + - supports-color + dev: true + + /@preconstruct/hook@0.4.0: + resolution: {integrity: sha512-a7mrlPTM3tAFJyz43qb4pPVpUx8j8TzZBFsNFqcKcE/sEakNXRlQAuCT4RGZRf9dQiiUnBahzSIWawU4rENl+Q==} + dependencies: + '@babel/core': 7.21.0 + '@babel/plugin-transform-modules-commonjs': 7.21.5(@babel/core@7.21.0) + pirates: 4.0.5 + source-map-support: 0.5.21 + transitivePeerDependencies: + - supports-color + dev: true + + /@remix-run/router@1.6.2: + resolution: {integrity: sha512-LzqpSrMK/3JBAVBI9u3NWtOhWNw5AMQfrUFYB0+bDHTSw17z++WJLsPsxAuK+oSddsxk4d7F/JcdDPM1M5YAhA==} engines: {node: '>=14'} dev: false + /@rollup/plugin-alias@3.1.9(rollup@2.79.1): + resolution: {integrity: sha512-QI5fsEvm9bDzt32k39wpOwZhVzRcL5ydcffUHMyLVaVaLeC70I8TJZ17F1z1eMoLu4E/UOcH9BWVkKpIKdrfiw==} + engines: {node: '>=8.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0 + dependencies: + rollup: 2.79.1 + slash: 3.0.0 + dev: true + + /@rollup/plugin-commonjs@15.1.0(rollup@2.79.1): + resolution: {integrity: sha512-xCQqz4z/o0h2syQ7d9LskIMvBSH4PX5PjYdpSSvgS+pQik3WahkQVNWg3D8XJeYjZoVWnIUQYDghuEMRGrmQYQ==} + engines: {node: '>= 8.0.0'} + peerDependencies: + rollup: ^2.22.0 + dependencies: + '@rollup/pluginutils': 3.1.0(rollup@2.79.1) + commondir: 1.0.1 + estree-walker: 2.0.2 + glob: 7.2.3 + is-reference: 1.2.1 + magic-string: 0.25.9 + resolve: 1.22.1 + rollup: 2.79.1 + dev: true + + /@rollup/plugin-json@4.1.0(rollup@2.79.1): + resolution: {integrity: sha512-yfLbTdNS6amI/2OpmbiBoW12vngr5NW2jCJVZSBEz+H5KfUJZ2M7sDjk0U6GOOdCWFVScShte29o9NezJ53TPw==} + peerDependencies: + rollup: ^1.20.0 || ^2.0.0 + dependencies: + '@rollup/pluginutils': 3.1.0(rollup@2.79.1) + rollup: 2.79.1 + dev: true + + /@rollup/plugin-node-resolve@11.2.1(rollup@2.79.1): + resolution: {integrity: sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg==} + engines: {node: '>= 10.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0 + dependencies: + '@rollup/pluginutils': 3.1.0(rollup@2.79.1) + '@types/resolve': 1.17.1 + builtin-modules: 3.3.0 + deepmerge: 4.3.0 + is-module: 1.0.0 + resolve: 1.22.1 + rollup: 2.79.1 + dev: true + + /@rollup/plugin-replace@2.4.2(rollup@2.79.1): + resolution: {integrity: sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==} + peerDependencies: + rollup: ^1.20.0 || ^2.0.0 + dependencies: + '@rollup/pluginutils': 3.1.0(rollup@2.79.1) + magic-string: 0.25.9 + rollup: 2.79.1 + dev: true + + /@rollup/pluginutils@3.1.0(rollup@2.79.1): + resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==} + engines: {node: '>= 8.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0 + dependencies: + '@types/estree': 0.0.39 + estree-walker: 1.0.1 + picomatch: 2.3.1 + rollup: 2.79.1 + dev: true + /@sinclair/typebox@0.25.24: resolution: {integrity: sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==} dev: true @@ -1821,8 +2185,120 @@ packages: '@sinonjs/commons': 2.0.0 dev: true - /@swc/helpers@0.4.14: - resolution: {integrity: sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==} + /@swc/core-darwin-arm64@1.3.60: + resolution: {integrity: sha512-oCDKWGdSO1WyErduGfiITRDoq7ZBt9PXETlhi8BGKH/wCc/3mfSNI9wXAg3Stn8mrT0lUJtdsnwMI/eZp6dK+A==} + engines: {node: '>=10'} + cpu: [arm64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /@swc/core-darwin-x64@1.3.60: + resolution: {integrity: sha512-pcE/1oUlmN/BkKndOPtViqTkaM5pomagXATo+Muqn4QNMnkSOEVcmF9T3Lr3nB1A7O/fwCew3/aHwZ5B2TZ1tA==} + engines: {node: '>=10'} + cpu: [x64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /@swc/core-linux-arm-gnueabihf@1.3.60: + resolution: {integrity: sha512-Moc+86SWcbPr06PaQYUb0Iwli425F7QgjwTCNEPYA6OYUsjaJhXMaHViW2WdGIXue2+eaQbg31BHQd14jXcoBg==} + engines: {node: '>=10'} + cpu: [arm] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@swc/core-linux-arm64-gnu@1.3.60: + resolution: {integrity: sha512-pPGZrTgSXBvp6IrXPXz8UJr82AElf8hMuK4rNHmLGDCqrWnRIFLUpiAsc2WCFIgdwqitZNQoM+F2vbceA/bkKg==} + engines: {node: '>=10'} + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@swc/core-linux-arm64-musl@1.3.60: + resolution: {integrity: sha512-HSFQaVUkjWYNsQeymAQ3IPX3csRQvHe6MFyqPfvCCQ4dFlxPvlS7VvNaLnGG+ZW1ek7Lc+hEX+4NGzZKsxDIHA==} + engines: {node: '>=10'} + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@swc/core-linux-x64-gnu@1.3.60: + resolution: {integrity: sha512-WJt/X6HHM3/TszckRA7UKMXec3FHYsB9xswQbIYxN4bfTQodu3Rc8bmpHYtFO7ScMLrhY+RljHLK6wclPvaEXw==} + engines: {node: '>=10'} + cpu: [x64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@swc/core-linux-x64-musl@1.3.60: + resolution: {integrity: sha512-DGGBqAPUXy/aPMBKokL3osZC9kM97HchiDPuprzwgTMP40YQ3hGCzNJ5jK7sOk9Tc4PEdZ2Igfr9sBHmCrxxQw==} + engines: {node: '>=10'} + cpu: [x64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@swc/core-win32-arm64-msvc@1.3.60: + resolution: {integrity: sha512-wQg/BZPJvp5WpUbsBp7VHjhUh0DfYOPhP6dH67WO9QQ07+DvOk2DR2Bfh0z0ts1k7H/FsAqExWtTDCWMCRJiRQ==} + engines: {node: '>=10'} + cpu: [arm64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@swc/core-win32-ia32-msvc@1.3.60: + resolution: {integrity: sha512-nqkd0XIVyGbnBwAxP4GIfx6n45/hAPETpmQYpDSGnucOKFJfvGdFGL81GDG1acPCq/oFtR3tIyTbPpKmJ0N6xQ==} + engines: {node: '>=10'} + cpu: [ia32] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@swc/core-win32-x64-msvc@1.3.60: + resolution: {integrity: sha512-ouw+s22i9PYQpSE7Xc+ZittEyA87jElXABesviSpP+jgHt10sM5KFUpVAeV8DRlxJCXMJJ5AhOdCf4TAtFr+6A==} + engines: {node: '>=10'} + cpu: [x64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@swc/core@1.3.60: + resolution: {integrity: sha512-dWfic7sVjnrStzGcMWakHd2XPau8UXGPmFUTkx6xGX+DOVtfAQVzG6ZW7ohw/yNcTqI05w6Ser26XMTMGBgXdA==} + engines: {node: '>=10'} + requiresBuild: true + peerDependencies: + '@swc/helpers': ^0.5.0 + peerDependenciesMeta: + '@swc/helpers': + optional: true + optionalDependencies: + '@swc/core-darwin-arm64': 1.3.60 + '@swc/core-darwin-x64': 1.3.60 + '@swc/core-linux-arm-gnueabihf': 1.3.60 + '@swc/core-linux-arm64-gnu': 1.3.60 + '@swc/core-linux-arm64-musl': 1.3.60 + '@swc/core-linux-x64-gnu': 1.3.60 + '@swc/core-linux-x64-musl': 1.3.60 + '@swc/core-win32-arm64-msvc': 1.3.60 + '@swc/core-win32-ia32-msvc': 1.3.60 + '@swc/core-win32-x64-msvc': 1.3.60 + dev: true + + /@swc/helpers@0.5.1: + resolution: {integrity: sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==} dependencies: tslib: 2.5.0 dev: true @@ -1840,8 +2316,8 @@ packages: /@types/babel__core@7.20.0: resolution: {integrity: sha512-+n8dL/9GWblDO0iU6eZAwEIJVr5DWigtle+Q6HLOrh/pdbXOhOtqzq8VPPE2zvNJzSKY4vH/z3iT3tn0A3ypiQ==} dependencies: - '@babel/parser': 7.21.2 - '@babel/types': 7.21.2 + '@babel/parser': 7.22.3 + '@babel/types': 7.22.3 '@types/babel__generator': 7.6.4 '@types/babel__template': 7.4.1 '@types/babel__traverse': 7.18.3 @@ -1850,20 +2326,28 @@ packages: /@types/babel__generator@7.6.4: resolution: {integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==} dependencies: - '@babel/types': 7.21.2 + '@babel/types': 7.22.3 dev: true /@types/babel__template@7.4.1: resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==} dependencies: - '@babel/parser': 7.21.2 - '@babel/types': 7.21.2 + '@babel/parser': 7.22.3 + '@babel/types': 7.22.3 dev: true /@types/babel__traverse@7.18.3: resolution: {integrity: sha512-1kbcJ40lLB7MHsj39U4Sh1uTd2E7rLEa79kmDpI6cy+XiXsteB3POdQomoq4FxszMrO3ZYchkhYJw7A2862b3w==} dependencies: - '@babel/types': 7.21.2 + '@babel/types': 7.22.3 + dev: true + + /@types/estree@0.0.39: + resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==} + dev: true + + /@types/estree@1.0.1: + resolution: {integrity: sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==} dev: true /@types/graceful-fs@4.1.6: @@ -1919,10 +2403,18 @@ packages: dependencies: lru-cache: 8.0.3 + /@types/minimist@1.2.2: + resolution: {integrity: sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==} + dev: true + /@types/node@18.14.6: resolution: {integrity: sha512-93+VvleD3mXwlLI/xASjw0FzKcwzl3OdTCzm1LaRfqgS21gfFtK3zDXM5Op9TeeMsJVOaJ2VRDpT9q4Y3d0AvA==} dev: true + /@types/normalize-package-data@2.4.1: + resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==} + dev: true + /@types/parse-json@4.0.0: resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==} dev: true @@ -1952,6 +2444,12 @@ packages: '@types/scheduler': 0.16.2 csstype: 3.1.1 + /@types/resolve@1.17.1: + resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==} + dependencies: + '@types/node': 18.14.6 + dev: true + /@types/scheduler@0.16.2: resolution: {integrity: sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==} @@ -2008,6 +2506,11 @@ packages: - supports-color dev: true + /ansi-colors@4.1.3: + resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} + engines: {node: '>=6'} + dev: true + /ansi-escapes@4.3.2: resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} engines: {node: '>=8'} @@ -2053,10 +2556,20 @@ packages: sprintf-js: 1.0.3 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 + /at-least-node@1.0.0: + resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==} + engines: {node: '>= 4.0.0'} + dev: true + /babel-jest@29.4.3(@babel/core@7.21.0): resolution: {integrity: sha512-o45Wyn32svZE+LnMVWv/Z4x0SwtLbh4FyGcYtR20kIWd+rdrDZ9Fzq8Ml3MYLD+mZvEdzCjZsCnYZ2jpJyQ+Nw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -2079,7 +2592,7 @@ packages: resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==} engines: {node: '>=8'} dependencies: - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.21.5 '@istanbuljs/load-nyc-config': 1.1.0 '@istanbuljs/schema': 0.1.3 istanbul-lib-instrument: 5.2.1 @@ -2092,8 +2605,8 @@ packages: resolution: {integrity: sha512-mB6q2q3oahKphy5V7CpnNqZOCkxxZ9aokf1eh82Dy3jQmg4xvM1tGrh5y6BQUJh4a3Pj9+eLfwvAZ7VNKg7H8Q==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@babel/template': 7.20.7 - '@babel/types': 7.21.2 + '@babel/template': 7.21.9 + '@babel/types': 7.22.3 '@types/babel__core': 7.20.0 '@types/babel__traverse': 7.18.3 dev: true @@ -2185,11 +2698,25 @@ packages: resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} dev: true + /builtin-modules@3.3.0: + resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==} + engines: {node: '>=6'} + dev: true + /callsites@3.1.0: resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} engines: {node: '>=6'} dev: true + /camelcase-keys@6.2.2: + resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==} + engines: {node: '>=8'} + dependencies: + camelcase: 5.3.1 + map-obj: 4.3.0 + quick-lru: 4.0.1 + dev: true + /camelcase@5.3.1: resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} engines: {node: '>=6'} @@ -2231,6 +2758,10 @@ packages: engines: {node: '>=6.0'} dev: true + /ci-info@2.0.0: + resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==} + dev: true + /ci-info@3.8.0: resolution: {integrity: sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==} engines: {node: '>=8'} @@ -2300,6 +2831,10 @@ packages: engines: {node: '>= 10'} dev: true + /commondir@1.0.1: + resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} + dev: true + /concat-map@0.0.1: resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} dev: true @@ -2393,6 +2928,10 @@ packages: whatwg-url: 11.0.0 dev: true + /dataloader@2.2.2: + resolution: {integrity: sha512-8YnDaaf7N3k/q5HnTJVuzSyLETjoZjVmHc4AeKAzOvKHEFQKcn64OKBfzHYtE9zGjctNM7V9I0MfnUVLpi7M5g==} + dev: true + /debug@4.3.4: resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} engines: {node: '>=6.0'} @@ -2405,6 +2944,19 @@ 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 + /decimal.js@10.4.3: resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==} dev: true @@ -2427,6 +2979,11 @@ packages: engines: {node: '>=0.4.0'} dev: true + /detect-indent@6.1.0: + resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==} + engines: {node: '>=8'} + dev: true + /detect-libc@1.0.3: resolution: {integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==} engines: {node: '>=0.10'} @@ -2499,6 +3056,13 @@ packages: resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} dev: true + /enquirer@2.3.6: + resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==} + engines: {node: '>=8.6'} + dependencies: + ansi-colors: 4.1.3 + dev: true + /entities@2.2.0: resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} dev: true @@ -2558,6 +3122,14 @@ packages: engines: {node: '>=4.0'} dev: true + /estree-walker@1.0.1: + resolution: {integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==} + dev: true + + /estree-walker@2.0.2: + resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} + dev: true + /esutils@2.0.3: resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} engines: {node: '>=0.10.0'} @@ -2597,6 +3169,21 @@ packages: /extra-bigint@1.1.10: resolution: {integrity: sha512-HFJ1EIBxiN0AMaKGuCOW3h/7ZBpEmT8hdebL7dwiiqa4cc6ZIGmLqO4cWe+GaZD+6P1R0t1S9shYh3bP8Ly0qg==} + /fast-deep-equal@2.0.1: + resolution: {integrity: sha512-bCK/2Z4zLidyB4ReuIsvALH6w31YfAQDmXMqMx6FyfHqvBxtjC0eRumeSu4Bs3XtXwpyIywtSTrVT99BxY1f9w==} + dev: true + + /fast-glob@3.2.12: + resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==} + engines: {node: '>=8.6.0'} + dependencies: + '@nodelib/fs.stat': 2.0.5 + '@nodelib/fs.walk': 1.2.8 + glob-parent: 5.1.2 + merge2: 1.4.1 + micromatch: 4.0.5 + dev: true + /fast-json-stable-stringify@2.1.0: resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} dev: true @@ -2605,6 +3192,12 @@ packages: resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} dev: true + /fastq@1.15.0: + resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==} + dependencies: + reusify: 1.0.4 + dev: true + /fb-watchman@2.0.2: resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==} dependencies: @@ -2635,6 +3228,16 @@ packages: mime-types: 2.1.35 dev: true + /fs-extra@9.1.0: + resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==} + engines: {node: '>=10'} + dependencies: + at-least-node: 1.0.0 + graceful-fs: 4.2.10 + jsonfile: 6.1.0 + universalify: 2.0.0 + dev: true + /fs.realpath@1.0.0: resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} dev: true @@ -2680,6 +3283,27 @@ packages: resolution: {integrity: sha512-LRn8Jlk+DwZE4GTlDbT3Hikd1wSHgLMme/+7ddlqKd7ldwR6LjJgTVWzBnR01wnYGe4KgrXjg287RaI22UHmAw==} dev: true + /glob-base@0.3.0: + resolution: {integrity: sha512-ab1S1g1EbO7YzauaJLkgLp7DZVAqj9M/dvKlTt8DkXA2tiOIcSMrlVI2J1RZyB5iJVccEscjGn+kpOG9788MHA==} + engines: {node: '>=0.10.0'} + dependencies: + glob-parent: 2.0.0 + is-glob: 2.0.1 + dev: true + + /glob-parent@2.0.0: + resolution: {integrity: sha512-JDYOvfxio/t42HKdxkAYaCiBN7oYiuxykOxKxdaUW5Qn0zaYN3gRQWolrwdnf0shM9/EP0ebuuTmyoXNr1cC5w==} + dependencies: + is-glob: 2.0.1 + dev: true + + /glob-parent@5.1.2: + resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} + engines: {node: '>= 6'} + dependencies: + is-glob: 4.0.3 + dev: true + /glob@7.2.3: resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} dependencies: @@ -2707,6 +3331,11 @@ packages: resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==} 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'} @@ -2724,6 +3353,10 @@ packages: function-bind: 1.1.1 dev: true + /hosted-git-info@2.8.9: + resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} + dev: true + /html-encoding-sniffer@3.0.0: resolution: {integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==} engines: {node: '>=12'} @@ -2812,6 +3445,12 @@ packages: safer-buffer: 2.1.2 dev: true + /ignore-walk@3.0.4: + resolution: {integrity: sha512-PY6Ii8o1jMRA1z4F2hRkH/xN59ox43DavKvD3oDpfurRlOJyAHpifIwpbdv1n4jt4ov0jSpw3kQ4GhJnpBL6WQ==} + dependencies: + minimatch: 3.1.2 + dev: true + /immediate@3.0.6: resolution: {integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==} dev: false @@ -2838,6 +3477,11 @@ packages: engines: {node: '>=0.8.19'} dev: true + /indent-string@4.0.0: + resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} + engines: {node: '>=8'} + dev: true + /inflight@1.0.6: resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} dependencies: @@ -2853,12 +3497,29 @@ packages: resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} dev: true + /is-ci@2.0.0: + resolution: {integrity: sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==} + hasBin: true + dependencies: + ci-info: 2.0.0 + dev: true + /is-core-module@2.11.0: resolution: {integrity: sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==} dependencies: has: 1.0.3 dev: true + /is-dotfile@1.0.3: + resolution: {integrity: sha512-9YclgOGtN/f8zx0Pr4FQYMdibBiTaH3sn52vjYip4ZSf6C4/6RfTEZ+MR4GvKhCxdPh21Bg42/WL55f6KSnKpg==} + engines: {node: '>=0.10.0'} + dev: true + + /is-extglob@1.0.0: + resolution: {integrity: sha512-7Q+VbVafe6x2T+Tu6NcOf6sRklazEPmBoB3IWk3WdGZM2iGUwU/Oe3Wtq5lSEkDTTlpp8yx+5t4pzO/i9Ty1ww==} + engines: {node: '>=0.10.0'} + dev: true + /is-extglob@2.1.1: resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} engines: {node: '>=0.10.0'} @@ -2874,6 +3535,13 @@ packages: engines: {node: '>=6'} dev: true + /is-glob@2.0.1: + resolution: {integrity: sha512-a1dBeB19NXsf/E0+FHqkagizel/LQw2DjSQpvQrj3zT+jYPpaUCryPnrQajXKFLCMuf4I6FhRpaGtw4lPrG6Eg==} + engines: {node: '>=0.10.0'} + dependencies: + is-extglob: 1.0.0 + dev: true + /is-glob@4.0.3: resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} engines: {node: '>=0.10.0'} @@ -2885,15 +3553,30 @@ packages: resolution: {integrity: sha512-6BEnpVn1rcf3ngfmViLM6vjUjGErbdrL4rwlv+u1NO1XO8kqT4YGL8+19Q+Z/bas8tY90BTWMk2+fW1g6hQjbA==} dev: true + /is-module@1.0.0: + resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==} + dev: true + /is-number@7.0.0: resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 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 + /is-reference@1.2.1: + resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==} + dependencies: + '@types/estree': 1.0.1 + dev: true + /is-stream@2.0.1: resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} engines: {node: '>=8'} @@ -2913,7 +3596,7 @@ packages: engines: {node: '>=8'} dependencies: '@babel/core': 7.21.0 - '@babel/parser': 7.21.2 + '@babel/parser': 7.22.3 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.0 semver: 6.3.0 @@ -2984,6 +3667,34 @@ packages: - supports-color dev: true + /jest-cli@29.4.3: + resolution: {integrity: sha512-PiiAPuFNfWWolCE6t3ZrDXQc6OsAuM3/tVW0u27UWc1KE+n/HSn5dSE6B2juqN7WP+PP0jAcnKtGmI4u8GMYCg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hasBin: true + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + dependencies: + '@jest/core': 29.4.3 + '@jest/test-result': 29.4.3 + '@jest/types': 29.4.3 + chalk: 4.1.2 + exit: 0.1.2 + graceful-fs: 4.2.10 + import-local: 3.1.0 + jest-config: 29.4.3 + jest-util: 29.4.3 + jest-validate: 29.4.3 + prompts: 2.4.2 + yargs: 17.7.1 + transitivePeerDependencies: + - '@types/node' + - supports-color + - ts-node + dev: true + /jest-cli@29.4.3(@types/node@18.14.6): resolution: {integrity: sha512-PiiAPuFNfWWolCE6t3ZrDXQc6OsAuM3/tVW0u27UWc1KE+n/HSn5dSE6B2juqN7WP+PP0jAcnKtGmI4u8GMYCg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -3012,6 +3723,44 @@ packages: - ts-node dev: true + /jest-config@29.4.3: + resolution: {integrity: sha512-eCIpqhGnIjdUCXGtLhz4gdDoxKSWXKjzNcc5r+0S1GKOp2fwOipx5mRcwa9GB/ArsxJ1jlj2lmlD9bZAsBxaWQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + '@types/node': '*' + ts-node: '>=9.0.0' + peerDependenciesMeta: + '@types/node': + optional: true + ts-node: + optional: true + dependencies: + '@babel/core': 7.21.0 + '@jest/test-sequencer': 29.4.3 + '@jest/types': 29.4.3 + babel-jest: 29.4.3(@babel/core@7.21.0) + chalk: 4.1.2 + ci-info: 3.8.0 + deepmerge: 4.3.0 + glob: 7.2.3 + graceful-fs: 4.2.10 + jest-circus: 29.4.3 + jest-environment-node: 29.4.3 + jest-get-type: 29.4.3 + jest-regex-util: 29.4.3 + jest-resolve: 29.4.3 + jest-runner: 29.4.3 + jest-util: 29.4.3 + jest-validate: 29.4.3 + micromatch: 4.0.5 + parse-json: 5.2.0 + pretty-format: 29.4.3 + slash: 3.0.0 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color + dev: true + /jest-config@29.4.3(@types/node@18.14.6): resolution: {integrity: sha512-eCIpqhGnIjdUCXGtLhz4gdDoxKSWXKjzNcc5r+0S1GKOp2fwOipx5mRcwa9GB/ArsxJ1jlj2lmlD9bZAsBxaWQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -3286,11 +4035,11 @@ packages: engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@babel/core': 7.21.0 - '@babel/generator': 7.21.1 - '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.21.0) + '@babel/generator': 7.22.3 + '@babel/plugin-syntax-jsx': 7.21.4(@babel/core@7.21.0) '@babel/plugin-syntax-typescript': 7.20.0(@babel/core@7.21.0) - '@babel/traverse': 7.21.2 - '@babel/types': 7.21.2 + '@babel/traverse': 7.22.1 + '@babel/types': 7.22.3 '@jest/expect-utils': 29.4.3 '@jest/transform': 29.4.3 '@jest/types': 29.4.3 @@ -3351,6 +4100,15 @@ packages: string-length: 4.0.2 dev: true + /jest-worker@26.6.2: + resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==} + engines: {node: '>= 10.13.0'} + dependencies: + '@types/node': 18.14.6 + merge-stream: 2.0.0 + supports-color: 7.2.0 + dev: true + /jest-worker@29.4.3: resolution: {integrity: sha512-GLHN/GTAAMEy5BFdvpUfzr9Dr80zQqBrh0fz1mtRMe05hqP45+HfQltu7oTBfduD0UeZs09d+maFtFYAXFWvAA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -3361,6 +4119,26 @@ packages: supports-color: 8.1.1 dev: true + /jest@29.4.3: + resolution: {integrity: sha512-XvK65feuEFGZT8OO0fB/QAQS+LGHvQpaadkH5p47/j3Ocqq3xf2pK9R+G0GzgfuhXVxEv76qCOOcMb5efLk6PA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hasBin: true + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + dependencies: + '@jest/core': 29.4.3 + '@jest/types': 29.4.3 + import-local: 3.1.0 + jest-cli: 29.4.3 + transitivePeerDependencies: + - '@types/node' + - supports-color + - ts-node + dev: true + /jest@29.4.3(@types/node@18.14.6): resolution: {integrity: sha512-XvK65feuEFGZT8OO0fB/QAQS+LGHvQpaadkH5p47/j3Ocqq3xf2pK9R+G0GzgfuhXVxEv76qCOOcMb5efLk6PA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -3449,6 +4227,14 @@ packages: hasBin: true dev: true + /jsonfile@6.1.0: + resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} + dependencies: + universalify: 2.0.0 + optionalDependencies: + graceful-fs: 4.2.10 + dev: true + /kill-port@2.0.1: resolution: {integrity: sha512-e0SVOV5jFo0mx8r7bS29maVWp17qGqLBZ5ricNSajON6//kmb7qqqNnml4twNE8Dtj97UQD+gNFOaipS/q1zzQ==} hasBin: true @@ -3457,6 +4243,11 @@ packages: shell-exec: 1.0.2 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'} @@ -3573,22 +4364,23 @@ packages: resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} dev: true - /lmdb@2.5.2: - resolution: {integrity: sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==} + /lmdb@2.7.11: + resolution: {integrity: sha512-x9bD4hVp7PFLUoELL8RglbNXhAMt5CYhkmss+CEau9KlNoilsTzNi9QDsPZb3KMpOGZXG6jmXhW3bBxE2XVztw==} + hasBin: true requiresBuild: true dependencies: - msgpackr: 1.8.4 + msgpackr: 1.8.5 node-addon-api: 4.3.0 - node-gyp-build-optional-packages: 5.0.3 + node-gyp-build-optional-packages: 5.0.6 ordered-binary: 1.4.0 weak-lru-cache: 1.2.2 optionalDependencies: - '@lmdb/lmdb-darwin-arm64': 2.5.2 - '@lmdb/lmdb-darwin-x64': 2.5.2 - '@lmdb/lmdb-linux-arm': 2.5.2 - '@lmdb/lmdb-linux-arm64': 2.5.2 - '@lmdb/lmdb-linux-x64': 2.5.2 - '@lmdb/lmdb-win32-x64': 2.5.2 + '@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 dev: true /localforage@1.10.0: @@ -3635,6 +4427,19 @@ packages: resolution: {integrity: sha512-hDYyWLYUrrTuQQlZWe6U56i+t6UU7LnimwV9Tvvw0HadkTnD7VbErepoJVeNEfC4exBIcGwO8M7TQyF6HO5tQA==} engines: {node: '>=16.14'} + /magic-string@0.25.9: + resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==} + dependencies: + sourcemap-codec: 1.4.8 + dev: true + + /magic-string@0.30.0: + resolution: {integrity: sha512-LA+31JYDJLs82r2ScLrlz1GjSgu66ZV518eyWT+S8VhyQn/JL0u9MeBOvQMGYiPk1DBiSN9DDMOcXvigJZaViQ==} + engines: {node: '>=12'} + dependencies: + '@jridgewell/sourcemap-codec': 1.4.14 + dev: true + /make-dir@3.1.0: resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} engines: {node: '>=8'} @@ -3652,6 +4457,16 @@ 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 + /match-sorter@6.3.1: resolution: {integrity: sha512-mxybbo3pPNuA+ZuCUhm5bwNkXrJTbsk5VWbR5wiwz/GC6LIiegBGn2w3O08UG/jdbYLinw51fSQ5xNU1U3MgBw==} dependencies: @@ -3663,10 +4478,32 @@ packages: resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==} dev: true + /meow@7.1.1: + resolution: {integrity: sha512-GWHvA5QOcS412WCo8vwKDlTelGLsCGBVevQB5Kva961rmNfun0PCbv5+xta2kUMFJyR8/oWnn7ddeKdosbAPbA==} + engines: {node: '>=10'} + dependencies: + '@types/minimist': 1.2.2 + camelcase-keys: 6.2.2 + decamelize-keys: 1.1.1 + hard-rejection: 2.1.0 + minimist-options: 4.1.0 + normalize-package-data: 2.5.0 + read-pkg-up: 7.0.1 + redent: 3.0.0 + trim-newlines: 3.0.1 + type-fest: 0.13.1 + yargs-parser: 18.1.3 + dev: true + /merge-stream@2.0.0: resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} dev: true + /merge2@1.4.1: + resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} + engines: {node: '>= 8'} + dev: true + /micromatch@4.0.5: resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} engines: {node: '>=8.6'} @@ -3692,12 +4529,26 @@ packages: engines: {node: '>=6'} 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: brace-expansion: 1.1.11 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 + /ms@2.1.2: resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} dev: true @@ -3718,8 +4569,8 @@ packages: dev: true optional: true - /msgpackr@1.8.4: - resolution: {integrity: sha512-BE3hD3PqV7jsNaV022uq0jMW+ZVc32wSYyQmwAoJUc+vPtCeyro2MOtAW61Fd9ZKNySM6y913E9fBY0mG+hKXg==} + /msgpackr@1.8.5: + resolution: {integrity: sha512-mpPs3qqTug6ahbblkThoUY2DQdNXcm4IapwOS3Vm/87vmpzLVelvp9h3It1y9l1VPpiFLV11vfOXnmeEwiIXwg==} optionalDependencies: msgpackr-extract: 3.0.2 dev: true @@ -3736,8 +4587,8 @@ packages: resolution: {integrity: sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ==} dev: true - /node-gyp-build-optional-packages@5.0.3: - resolution: {integrity: sha512-k75jcVzk5wnnc/FMxsf4udAoTEUv2jY3ycfdSd3yWu6Cnd1oee6/CfZJApyscA4FJOmdoixWwiwOyf16RzD5JA==} + /node-gyp-build-optional-packages@5.0.6: + resolution: {integrity: sha512-2ZJErHG4du9G3/8IWl/l9Bp5BBFy63rno5GVmjQijvTuUZKsl6g8RB4KH/x3NLcV5ZBb4GsXmAuTYr6dRml3Gw==} hasBin: true dev: true @@ -3767,11 +4618,41 @@ packages: resolution: {integrity: sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==} dev: true + /normalize-package-data@2.5.0: + resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} + dependencies: + hosted-git-info: 2.8.9 + resolve: 1.22.1 + semver: 5.7.1 + validate-npm-package-license: 3.0.4 + dev: true + /normalize-path@3.0.0: resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} engines: {node: '>=0.10.0'} dev: true + /npm-bundled@1.1.2: + resolution: {integrity: sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ==} + dependencies: + npm-normalize-package-bin: 1.0.1 + dev: true + + /npm-normalize-package-bin@1.0.1: + resolution: {integrity: sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==} + dev: true + + /npm-packlist@2.2.2: + resolution: {integrity: sha512-Jt01acDvJRhJGthnUJVF/w6gumWOZxO7IkpY/lsX9//zqQgnF7OJaxgQXcerd4uQOLu7W5bkb4mChL9mdfm+Zg==} + engines: {node: '>=10'} + hasBin: true + dependencies: + glob: 7.2.3 + ignore-walk: 3.0.4 + npm-bundled: 1.1.2 + npm-normalize-package-bin: 1.0.1 + dev: true + /npm-run-path@4.0.1: resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} engines: {node: '>=8'} @@ -3853,29 +4734,30 @@ packages: engines: {node: '>=6'} dev: true - /parcel@2.8.3: - resolution: {integrity: sha512-5rMBpbNE72g6jZvkdR5gS2nyhwIXaJy8i65osOqs/+5b7zgf3eMKgjSsDrv6bhz3gzifsba6MBJiZdBckl+vnA==} + /parcel@2.9.1: + resolution: {integrity: sha512-LBD+jeCpvnDJ8MeE0ciEns4EZw+WH01qLEKT2O1tW2uHM1njhcWvuc9bx19f8iyE2+8Xwwr2GsGTQgPXKiA/yQ==} engines: {node: '>= 12.0.0'} hasBin: true peerDependenciesMeta: '@parcel/core': optional: true dependencies: - '@parcel/config-default': 2.8.3(@parcel/core@2.8.3) - '@parcel/core': 2.8.3 - '@parcel/diagnostic': 2.8.3 - '@parcel/events': 2.8.3 - '@parcel/fs': 2.8.3(@parcel/core@2.8.3) - '@parcel/logger': 2.8.3 - '@parcel/package-manager': 2.8.3(@parcel/core@2.8.3) - '@parcel/reporter-cli': 2.8.3(@parcel/core@2.8.3) - '@parcel/reporter-dev-server': 2.8.3(@parcel/core@2.8.3) - '@parcel/utils': 2.8.3 + '@parcel/config-default': 2.9.1(@parcel/core@2.9.1) + '@parcel/core': 2.9.1 + '@parcel/diagnostic': 2.9.1 + '@parcel/events': 2.9.1 + '@parcel/fs': 2.9.1(@parcel/core@2.9.1) + '@parcel/logger': 2.9.1 + '@parcel/package-manager': 2.9.1(@parcel/core@2.9.1) + '@parcel/reporter-cli': 2.9.1(@parcel/core@2.9.1) + '@parcel/reporter-dev-server': 2.9.1(@parcel/core@2.9.1) + '@parcel/reporter-tracer': 2.9.1(@parcel/core@2.9.1) + '@parcel/utils': 2.9.1 chalk: 4.1.2 commander: 7.2.0 get-port: 4.2.0 - v8-compile-cache: 2.3.0 transitivePeerDependencies: + - '@swc/helpers' - cssnano - postcss - purgecss @@ -3892,6 +4774,16 @@ packages: callsites: 3.1.0 dev: true + /parse-glob@3.0.4: + resolution: {integrity: sha512-FC5TeK0AwXzq3tUBFtH74naWkPQCEWs4K+xMxWZBlKDWu0bVHXGZa+KKqxKidd7xwhdZ19ZNuF2uO1M/r196HA==} + engines: {node: '>=0.10.0'} + dependencies: + glob-base: 0.3.0 + is-dotfile: 1.0.3 + is-extglob: 1.0.0 + is-glob: 2.0.1 + dev: true + /parse-json@5.2.0: resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} engines: {node: '>=8'} @@ -4036,6 +4928,20 @@ packages: resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} dev: true + /queue-microtask@1.2.3: + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + dev: true + + /quick-lru@4.0.1: + resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==} + engines: {node: '>=8'} + dev: true + + /quick-lru@5.1.1: + resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==} + engines: {node: '>=10'} + dev: true + /react-dom@0.0.0-experimental-49f741046-20230305(react@0.0.0-experimental-49f741046-20230305): resolution: {integrity: sha512-QaCl/91zfEPEXiMSh0yOJpiVxLSLB50gGU+I1BHMPSvHF/stBomVzoPRiGyMcS9AcHD9pRXIJ2tjGEmQzTA/8A==} peerDependencies: @@ -4058,31 +4964,31 @@ packages: engines: {node: '>=0.10.0'} dev: true - /react-router-dom@6.10.0(react-dom@0.0.0-experimental-49f741046-20230305)(react@0.0.0-experimental-49f741046-20230305): - resolution: {integrity: sha512-E5dfxRPuXKJqzwSe/qGcqdwa18QiWC6f3H3cWXM24qj4N0/beCIf/CWTipop2xm7mR0RCS99NnaqPNjHtrAzCg==} + /react-router-dom@6.11.2(react-dom@0.0.0-experimental-49f741046-20230305)(react@0.0.0-experimental-49f741046-20230305): + resolution: {integrity: sha512-JNbKtAeh1VSJQnH6RvBDNhxNwemRj7KxCzc5jb7zvDSKRnPWIFj9pO+eXqjM69gQJ0r46hSz1x4l9y0651DKWw==} engines: {node: '>=14'} peerDependencies: react: '>=16.8' react-dom: '>=16.8' dependencies: - '@remix-run/router': 1.5.0 + '@remix-run/router': 1.6.2 react: 0.0.0-experimental-49f741046-20230305 react-dom: 0.0.0-experimental-49f741046-20230305(react@0.0.0-experimental-49f741046-20230305) - react-router: 6.10.0(react@0.0.0-experimental-49f741046-20230305) + react-router: 6.11.2(react@0.0.0-experimental-49f741046-20230305) dev: false - /react-router@6.10.0(react@0.0.0-experimental-49f741046-20230305): - resolution: {integrity: sha512-Nrg0BWpQqrC3ZFFkyewrflCud9dio9ME3ojHCF/WLsprJVzkq3q3UeEhMCAW1dobjeGbWgjNn/PVF6m46ANxXQ==} + /react-router@6.11.2(react@0.0.0-experimental-49f741046-20230305): + resolution: {integrity: sha512-74z9xUSaSX07t3LM+pS6Un0T55ibUE/79CzfZpy5wsPDZaea1F8QkrsiyRnA2YQ7LwE/umaydzXZV80iDCPkMg==} engines: {node: '>=14'} peerDependencies: react: '>=16.8' dependencies: - '@remix-run/router': 1.5.0 + '@remix-run/router': 1.6.2 react: 0.0.0-experimental-49f741046-20230305 dev: false - /react-virtualized-auto-sizer@1.0.15(react-dom@0.0.0-experimental-49f741046-20230305)(react@0.0.0-experimental-49f741046-20230305): - resolution: {integrity: sha512-01yhkssgHShMiu5W8k+86kgl8lutpl+Uef9KP4wrozXnzZjxWIgj+cH8Qi064oQpKD8myn/JNMzp4tcZNQ3Avg==} + /react-virtualized-auto-sizer@1.0.18(react-dom@0.0.0-experimental-49f741046-20230305)(react@0.0.0-experimental-49f741046-20230305): + resolution: {integrity: sha512-GQ+F6z6+upBGmoed5SyiAT3ZBLOeOJr4xH76dsARfRf4vmjspexsnSrMayDg7+xXmnW+BrKppqGh64s79w2xuA==} peerDependencies: react: ^15.3.0 || ^16.0.0-alpha || ^17.0.0 || ^18.0.0-rc react-dom: ^15.3.0 || ^16.0.0-alpha || ^17.0.0 || ^18.0.0-rc @@ -4097,6 +5003,33 @@ packages: dependencies: loose-envify: 1.4.0 + /read-pkg-up@7.0.1: + resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} + engines: {node: '>=8'} + dependencies: + find-up: 4.1.0 + read-pkg: 5.2.0 + type-fest: 0.8.1 + dev: true + + /read-pkg@5.2.0: + resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} + engines: {node: '>=8'} + dependencies: + '@types/normalize-package-data': 2.4.1 + normalize-package-data: 2.5.0 + parse-json: 5.2.0 + type-fest: 0.6.0 + dev: true + + /redent@3.0.0: + resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} + engines: {node: '>=8'} + dependencies: + indent-string: 4.0.0 + strip-indent: 3.0.0 + dev: true + /regenerator-runtime@0.13.11: resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==} @@ -4144,6 +5077,25 @@ packages: supports-preserve-symlinks-flag: 1.0.0 dev: true + /reusify@1.0.4: + resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} + engines: {iojs: '>=1.0.0', node: '>=0.10.0'} + dev: true + + /rollup@2.79.1: + resolution: {integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==} + engines: {node: '>=10.0.0'} + hasBin: true + optionalDependencies: + fsevents: 2.3.2 + dev: true + + /run-parallel@1.2.0: + resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} + dependencies: + queue-microtask: 1.2.3 + dev: true + /safe-buffer@5.2.1: resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} dev: true @@ -4240,6 +5192,33 @@ packages: engines: {node: '>=0.10.0'} dev: true + /sourcemap-codec@1.4.8: + resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==} + deprecated: Please use @jridgewell/sourcemap-codec instead + dev: true + + /spdx-correct@3.2.0: + resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} + dependencies: + spdx-expression-parse: 3.0.1 + spdx-license-ids: 3.0.13 + 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.13 + dev: true + + /spdx-license-ids@3.0.13: + resolution: {integrity: sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==} + dev: true + /sprintf-js@1.0.3: resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} dev: true @@ -4295,6 +5274,13 @@ packages: engines: {node: '>=6'} dev: true + /strip-indent@3.0.0: + resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} + engines: {node: '>=8'} + dependencies: + min-indent: 1.0.1 + dev: true + /strip-json-comments@3.1.1: resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} engines: {node: '>=8'} @@ -4353,8 +5339,8 @@ packages: engines: {node: '>=8'} dev: true - /terser@5.16.5: - resolution: {integrity: sha512-qcwfg4+RZa3YvlFh0qjifnzBHjKGNbtDo9yivMqMFDy9Q6FSaQWSB/j1xKhsoUFJIqDOM3TsN6D5xbrMrFcHbg==} + /terser@5.17.6: + resolution: {integrity: sha512-V8QHcs8YuyLkLHsJO5ucyff1ykrLVsR4dNnS//L5Y3NiSXpbK1J+WMVUs67eI0KTxs9JtHhgEQpXQVHlHI92DQ==} engines: {node: '>=10'} hasBin: true dependencies: @@ -4410,7 +5396,12 @@ packages: punycode: 2.3.0 dev: true - /ts-jest@29.0.5(@babel/core@7.21.0)(jest@29.4.3)(typescript@4.9.5): + /trim-newlines@3.0.1: + resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==} + engines: {node: '>=8'} + dev: true + + /ts-jest@29.0.5(jest@29.4.3)(typescript@4.9.5): resolution: {integrity: sha512-PL3UciSgIpQ7f6XjVOmbi96vmDHUqAyqDr8YxzopDqX3kfgYtX1cuNeBjP+L9sFXi6nzsGGA6R3fP3DDDJyrxA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true @@ -4431,10 +5422,9 @@ packages: esbuild: optional: true dependencies: - '@babel/core': 7.21.0 bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 29.4.3(@types/node@18.14.6) + jest: 29.4.3 jest-util: 29.4.3 json5: 2.2.3 lodash.memoize: 4.1.2 @@ -4460,6 +5450,11 @@ packages: engines: {node: '>=4'} dev: true + /type-fest@0.13.1: + resolution: {integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==} + engines: {node: '>=10'} + dev: true + /type-fest@0.20.2: resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} engines: {node: '>=10'} @@ -4470,6 +5465,16 @@ packages: engines: {node: '>=10'} dev: true + /type-fest@0.6.0: + resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} + engines: {node: '>=8'} + dev: true + + /type-fest@0.8.1: + resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} + engines: {node: '>=8'} + dev: true + /typescript@4.9.5: resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==} engines: {node: '>=4.2.0'} @@ -4481,6 +5486,11 @@ packages: engines: {node: '>= 4.0.0'} dev: true + /universalify@2.0.0: + resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==} + engines: {node: '>= 10.0.0'} + dev: true + /update-browserslist-db@1.0.10(browserslist@4.21.5): resolution: {integrity: sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==} hasBin: true @@ -4517,6 +5527,13 @@ packages: 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 + dev: true + /w3c-keyname@2.2.6: resolution: {integrity: sha512-f+fciywl1SJEniZHD6H+kUO8gOnwIr7f4ijKA6+ZvJFjeGi1r4PDLl53Ayud9O/rk64RqgoQine0feoeOU0kXg==} dev: false @@ -4641,6 +5658,14 @@ packages: engines: {node: '>= 6'} dev: true + /yargs-parser@18.1.3: + resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==} + engines: {node: '>=6'} + dependencies: + camelcase: 5.3.1 + decamelize: 1.2.0 + dev: true + /yargs-parser@21.1.1: resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} engines: {node: '>=12'} @@ -4663,3 +5688,7 @@ packages: resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} engines: {node: '>=10'} dev: true + + /zod@3.21.4: + resolution: {integrity: sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==} + dev: true