From 4f6b2e1fb5f4c9faead2495dcee59fb5bfb753be Mon Sep 17 00:00:00 2001 From: Aaron van den Berg Date: Tue, 24 Jan 2023 19:12:06 +0100 Subject: [PATCH] Automatic submit the extension to Chrome Web Store on Release Signed-off-by: Aaron van den Berg --- .github/workflows/submit.yml | 37 + .gitignore | 2 + package.json | 19 +- pnpm-lock.yaml | 1708 +++++++++++++++++++++------------- 4 files changed, 1130 insertions(+), 636 deletions(-) create mode 100644 .github/workflows/submit.yml diff --git a/.github/workflows/submit.yml b/.github/workflows/submit.yml new file mode 100644 index 0000000..f08c6d4 --- /dev/null +++ b/.github/workflows/submit.yml @@ -0,0 +1,37 @@ +name: "Submit to Web Store" +on: + release: + types: [published] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Cache pnpm modules + uses: actions/cache@v3 + with: + path: ~/.pnpm-store + key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }} + restore-keys: | + ${{ runner.os }}- + + - uses: pnpm/action-setup@v2.2.4 + with: + version: latest + run_install: true + + - name: Use Node.js 16.x + uses: actions/setup-node@v3.4.1 + with: + node-version: 16.x + cache: "pnpm" + + - name: Build and zip extension artifact + run: pnpm build --zip + + - name: Browser Platform Publish + uses: PlasmoHQ/bpp@v3 + with: + keys: ${{ secrets.SUBMIT_KEYS }} + artifact: build/chrome-mv3-prod.zip diff --git a/.gitignore b/.gitignore index 854b843..01e2441 100644 --- a/.gitignore +++ b/.gitignore @@ -44,3 +44,5 @@ keys.json .tsbuildinfo .npmrc + +key.json diff --git a/package.json b/package.json index 599026c..afeeb0f 100644 --- a/package.json +++ b/package.json @@ -2,12 +2,13 @@ "name": "toggle-experiment", "displayName": "Toggle Experiment", "description": "A browser extension to inject the LocalStorage of a website for Optimizely experiments.", - "version": "0.6.0", + "version": "0.6.1", "author": "Aaron van den Berg", "homepage": "https://aaronvandenberg.nl/", "scripts": { "dev": "plasmo dev", - "build": "plasmo build" + "build": "plasmo build", + "package": "plasmo package" }, "dependencies": { "@emotion/react": "^11.10.4", @@ -16,19 +17,19 @@ "@plasmohq/storage": "^0.12.2", "@tabler/icons": "^1.104.0", "immer": "^9.0.15", - "plasmo": "0.60.2", + "plasmo": "0.63.0", "react": "18.2.0", "react-dom": "18.2.0", "zustand": "^4.1.2" }, "devDependencies": { - "@plasmohq/prettier-plugin-sort-imports": "3.5.4", - "@types/chrome": "0.0.197", - "@types/node": "18.8.5", - "@types/react": "18.0.21", - "@types/react-dom": "18.0.6", + "@plasmohq/prettier-plugin-sort-imports": "3.6.0", + "@types/chrome": "0.0.202", + "@types/node": "18.11.9", + "@types/react": "18.0.25", + "@types/react-dom": "18.0.9", "prettier": "2.7.1", - "typescript": "4.8.4" + "typescript": "4.9.3" }, "manifest": { "host_permissions": [ diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 558346e..84e875f 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -4,41 +4,41 @@ specifiers: '@emotion/react': ^11.10.4 '@mantine/core': ^5.9.5 '@mantine/hooks': ^5.9.5 - '@plasmohq/prettier-plugin-sort-imports': 3.5.4 + '@plasmohq/prettier-plugin-sort-imports': 3.6.0 '@plasmohq/storage': ^0.12.2 '@tabler/icons': ^1.104.0 - '@types/chrome': 0.0.197 - '@types/node': 18.8.5 - '@types/react': 18.0.21 - '@types/react-dom': 18.0.6 + '@types/chrome': 0.0.202 + '@types/node': 18.11.9 + '@types/react': 18.0.25 + '@types/react-dom': 18.0.9 immer: ^9.0.15 - plasmo: 0.60.2 + plasmo: 0.63.0 prettier: 2.7.1 react: 18.2.0 react-dom: 18.2.0 - typescript: 4.8.4 + typescript: 4.9.3 zustand: ^4.1.2 dependencies: - '@emotion/react': 11.10.4_bjroym7kxlcs2vvwnej4p3gzwu - '@mantine/core': 5.9.5_sangcu27ug4wpw4wjq5m7ftas4 + '@emotion/react': 11.10.4_fan5qbzahqtxlm5dzefqlqx5ia + '@mantine/core': 5.9.5_na3komoxsyhsqpyq6ei3ndglb4 '@mantine/hooks': 5.9.5_react@18.2.0 '@plasmohq/storage': 0.12.2_react@18.2.0 '@tabler/icons': 1.104.0_biqbaboplfbrettd7655fr4n2y immer: 9.0.15 - plasmo: 0.60.2_biqbaboplfbrettd7655fr4n2y + plasmo: 0.63.0_biqbaboplfbrettd7655fr4n2y react: 18.2.0 react-dom: 18.2.0_react@18.2.0 zustand: 4.1.2_immer@9.0.15+react@18.2.0 devDependencies: - '@plasmohq/prettier-plugin-sort-imports': 3.5.4_prettier@2.7.1 - '@types/chrome': 0.0.197 - '@types/node': 18.8.5 - '@types/react': 18.0.21 - '@types/react-dom': 18.0.6 + '@plasmohq/prettier-plugin-sort-imports': 3.6.0_prettier@2.7.1 + '@types/chrome': 0.0.202 + '@types/node': 18.11.9 + '@types/react': 18.0.25 + '@types/react-dom': 18.0.9 prettier: 2.7.1 - typescript: 4.8.4 + typescript: 4.9.3 packages: @@ -55,59 +55,100 @@ packages: dependencies: '@babel/highlight': 7.18.6 - /@babel/compat-data/7.19.4: - resolution: {integrity: sha512-CHIGpJcUQ5lU9KrPHTjBMhVwQG6CQjxfg36fGXl3qk/Gik1WwWachaXFuo0uCWJT/mStOKtcbFJCaVLihC1CMw==} + /@babel/compat-data/7.20.10: + resolution: {integrity: sha512-sEnuDPpOJR/fcafHMjpcpGN5M2jbUGUHwmuWKM/YdPzeEDJg8bgmbcWQFUfE32MQjti1koACvoPVsDe8Uq+idg==} engines: {node: '>=6.9.0'} - /@babel/core/7.19.3: - resolution: {integrity: sha512-WneDJxdsjEvyKtXKsaBGbDeiyOjR5vYq4HcShxnIbG0qixpoHjI3MqeZM9NDvsojNCEBItQE4juOo/bU6e72gQ==} + /@babel/core/7.20.12: + resolution: {integrity: sha512-XsMfHovsUYHFMdrIHkZphTN/2Hzzi78R08NuHfDBehym2VsPDL6Zn/JAD/JQdnRvbSsbQc4mVaU1m6JgtTEElg==} engines: {node: '>=6.9.0'} dependencies: '@ampproject/remapping': 2.2.0 '@babel/code-frame': 7.18.6 - '@babel/generator': 7.19.3 - '@babel/helper-compilation-targets': 7.19.3_@babel+core@7.19.3 - '@babel/helper-module-transforms': 7.19.0 - '@babel/helpers': 7.19.4 - '@babel/parser': 7.19.3 - '@babel/template': 7.18.10 - '@babel/traverse': 7.19.3 - '@babel/types': 7.19.3 + '@babel/generator': 7.20.7 + '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12 + '@babel/helper-module-transforms': 7.20.11 + '@babel/helpers': 7.20.13 + '@babel/parser': 7.20.13 + '@babel/template': 7.20.7 + '@babel/traverse': 7.20.13 + '@babel/types': 7.20.7 convert-source-map: 1.9.0 debug: 4.3.4 gensync: 1.0.0-beta.2 - json5: 2.2.1 + json5: 2.2.3 semver: 6.3.0 transitivePeerDependencies: - supports-color + dev: false + + /@babel/core/7.20.2: + resolution: {integrity: sha512-w7DbG8DtMrJcFOi4VrLm+8QM4az8Mo+PuLBKLp2zrYRCow8W/f9xiXm5sN53C8HksCyDQwCKha9JiDoIyPjT2g==} + engines: {node: '>=6.9.0'} + dependencies: + '@ampproject/remapping': 2.2.0 + '@babel/code-frame': 7.18.6 + '@babel/generator': 7.20.7 + '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.2 + '@babel/helper-module-transforms': 7.20.11 + '@babel/helpers': 7.20.13 + '@babel/parser': 7.20.13 + '@babel/template': 7.20.7 + '@babel/traverse': 7.20.13 + '@babel/types': 7.20.7 + convert-source-map: 1.9.0 + debug: 4.3.4 + gensync: 1.0.0-beta.2 + json5: 2.2.3 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + dev: true - /@babel/generator/7.19.3: - resolution: {integrity: sha512-fqVZnmp1ncvZU757UzDheKZpfPgatqY59XtW2/j/18H7u76akb8xqvjw82f+i2UKd/ksYsSick/BCLQUUtJ/qQ==} + /@babel/generator/7.20.4: + resolution: {integrity: sha512-luCf7yk/cm7yab6CAW1aiFnmEfBJplb/JojV56MYEK7ziWfGmFlTfmL9Ehwfy4gFhbjBfWO1wj7/TuSbVNEEtA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.19.3 + '@babel/types': 7.20.7 '@jridgewell/gen-mapping': 0.3.2 jsesc: 2.5.2 + dev: true - /@babel/generator/7.19.5: - resolution: {integrity: sha512-DxbNz9Lz4aMZ99qPpO1raTbcrI1ZeYh+9NR9qhfkQIbFtVEqotHojEBxHzmxhVONkGt6VyrqVQcgpefMy9pqcg==} + /@babel/generator/7.20.7: + resolution: {integrity: sha512-7wqMOJq8doJMZmP4ApXTzLxSr7+oO2jroJURrVEp6XShrQUObV8Tq/D0NCcoYg2uHqUrjzO0zwBjoYzelxK+sw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.19.4 + '@babel/types': 7.20.7 '@jridgewell/gen-mapping': 0.3.2 jsesc: 2.5.2 - /@babel/helper-compilation-targets/7.19.3_@babel+core@7.19.3: - resolution: {integrity: sha512-65ESqLGyGmLvgR0mst5AdW1FkNlj9rQsCKduzEoEPhBCDFGXvz2jW6bXFG6i0/MrV2s7hhXjjb2yAzcPuQlLwg==} + /@babel/helper-compilation-targets/7.20.7_@babel+core@7.20.12: + resolution: {integrity: sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/compat-data': 7.20.10 + '@babel/core': 7.20.12 + '@babel/helper-validator-option': 7.18.6 + browserslist: 4.21.4 + lru-cache: 5.1.1 + semver: 6.3.0 + dev: false + + /@babel/helper-compilation-targets/7.20.7_@babel+core@7.20.2: + resolution: {integrity: sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/compat-data': 7.19.4 - '@babel/core': 7.19.3 + '@babel/compat-data': 7.20.10 + '@babel/core': 7.20.2 '@babel/helper-validator-option': 7.18.6 browserslist: 4.21.4 + lru-cache: 5.1.1 semver: 6.3.0 + dev: true /@babel/helper-environment-visitor/7.18.9: resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==} @@ -117,33 +158,33 @@ packages: resolution: {integrity: sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==} engines: {node: '>=6.9.0'} dependencies: - '@babel/template': 7.18.10 - '@babel/types': 7.19.4 + '@babel/template': 7.20.7 + '@babel/types': 7.20.7 /@babel/helper-hoist-variables/7.18.6: resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.19.4 + '@babel/types': 7.20.7 /@babel/helper-module-imports/7.18.6: resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.19.4 + '@babel/types': 7.20.7 - /@babel/helper-module-transforms/7.19.0: - resolution: {integrity: sha512-3HBZ377Fe14RbLIA+ac3sY4PTgpxHVkFrESaWhoI5PuyXPBBX8+C34qblV9G89ZtycGJCmCI/Ut+VUDK4bltNQ==} + /@babel/helper-module-transforms/7.20.11: + resolution: {integrity: sha512-uRy78kN4psmji1s2QtbtcCSaj/LILFDp0f/ymhpQH5QY3nljUZCaNWz9X1dEj/8MBdBEFECs7yRhKn8i7NjZgg==} 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.19.4 + '@babel/helper-simple-access': 7.20.2 '@babel/helper-split-export-declaration': 7.18.6 '@babel/helper-validator-identifier': 7.19.1 - '@babel/template': 7.18.10 - '@babel/traverse': 7.19.4 - '@babel/types': 7.19.4 + '@babel/template': 7.20.7 + '@babel/traverse': 7.20.13 + '@babel/types': 7.20.7 transitivePeerDependencies: - supports-color @@ -152,17 +193,17 @@ packages: engines: {node: '>=6.9.0'} dev: false - /@babel/helper-simple-access/7.19.4: - resolution: {integrity: sha512-f9Xq6WqBFqaDfbCzn2w85hwklswz5qsKlh7f08w4Y9yhJHpnNC0QemtSkK5YyOY8kPGvyiwdzZksGUhnGdaUIg==} + /@babel/helper-simple-access/7.20.2: + resolution: {integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.19.4 + '@babel/types': 7.20.7 /@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.19.4 + '@babel/types': 7.20.7 /@babel/helper-string-parser/7.19.4: resolution: {integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==} @@ -176,13 +217,13 @@ packages: resolution: {integrity: sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==} engines: {node: '>=6.9.0'} - /@babel/helpers/7.19.4: - resolution: {integrity: sha512-G+z3aOx2nfDHwX/kyVii5fJq+bgscg89/dJNWpYeKeBv3v9xX8EIabmx1k6u9LS04H7nROFVRVK+e3k0VHp+sw==} + /@babel/helpers/7.20.13: + resolution: {integrity: sha512-nzJ0DWCL3gB5RCXbUO3KIMMsBY2Eqbx8mBpKGE/02PgyRQFcPQLbkQ1vyy596mZLaP+dAfD+R4ckASzNVmW3jg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/template': 7.18.10 - '@babel/traverse': 7.19.4 - '@babel/types': 7.19.4 + '@babel/template': 7.20.7 + '@babel/traverse': 7.20.13 + '@babel/types': 7.20.7 transitivePeerDependencies: - supports-color @@ -194,27 +235,27 @@ packages: chalk: 2.4.2 js-tokens: 4.0.0 - /@babel/parser/7.19.3: - resolution: {integrity: sha512-pJ9xOlNWHiy9+FuFP09DEAFbAn4JskgRsVcc169w2xRBC3FRGuQEwjeIMMND9L2zc0iEhO/tGv4Zq+km+hxNpQ==} + /@babel/parser/7.20.13: + resolution: {integrity: sha512-gFDLKMfpiXCsjt4za2JA9oTMn70CeseCehb11kRZgvd7+F67Hih3OHOK24cRrWECJ/ljfPGac6ygXAs/C8kIvw==} engines: {node: '>=6.0.0'} hasBin: true dependencies: - '@babel/types': 7.19.3 + '@babel/types': 7.20.7 - /@babel/parser/7.19.4: - resolution: {integrity: sha512-qpVT7gtuOLjWeDTKLkJ6sryqLliBaFpAtGeqw5cs5giLldvh+Ch0plqnUMKoVAUS6ZEueQQiZV+p5pxtPitEsA==} + /@babel/parser/7.20.3: + resolution: {integrity: sha512-OP/s5a94frIPXwjzEcv5S/tpQfc6XhxYUnmWpgdqMWGgYCuErA3SzozaRAMQgSZWKeTJxht9aWAkUY+0UzvOFg==} engines: {node: '>=6.0.0'} hasBin: true dependencies: - '@babel/types': 7.19.4 + '@babel/types': 7.20.7 + dev: true - /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.19.3: + /@babel/plugin-syntax-jsx/7.18.6: resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.3 '@babel/helper-plugin-utils': 7.19.0 dev: false @@ -225,72 +266,73 @@ packages: regenerator-runtime: 0.13.10 dev: false - /@babel/template/7.18.10: - resolution: {integrity: sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==} + /@babel/template/7.20.7: + resolution: {integrity: sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==} engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.18.6 - '@babel/parser': 7.19.3 - '@babel/types': 7.19.4 + '@babel/parser': 7.20.13 + '@babel/types': 7.20.7 - /@babel/traverse/7.19.3: - resolution: {integrity: sha512-qh5yf6149zhq2sgIXmwjnsvmnNQC2iw70UFjp4olxucKrWd/dvlUsBI88VSLUsnMNF7/vnOiA+nk1+yLoCqROQ==} + /@babel/traverse/7.20.1: + resolution: {integrity: sha512-d3tN8fkVJwFLkHkBN479SOsw4DMZnz8cdbL/gvuDuzy3TS6Nfw80HuQqhw1pITbIruHyh7d1fMA47kWzmcUEGA==} engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.18.6 - '@babel/generator': 7.19.3 + '@babel/generator': 7.20.7 '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-function-name': 7.19.0 '@babel/helper-hoist-variables': 7.18.6 '@babel/helper-split-export-declaration': 7.18.6 - '@babel/parser': 7.19.3 - '@babel/types': 7.19.3 + '@babel/parser': 7.20.13 + '@babel/types': 7.20.7 debug: 4.3.4 globals: 11.12.0 transitivePeerDependencies: - supports-color + dev: true - /@babel/traverse/7.19.4: - resolution: {integrity: sha512-w3K1i+V5u2aJUOXBFFC5pveFLmtq1s3qcdDNC2qRI6WPBQIDaKFqXxDEqDO/h1dQ3HjsZoZMyIy6jGLq0xtw+g==} + /@babel/traverse/7.20.13: + resolution: {integrity: sha512-kMJXfF0T6DIS9E8cgdLCSAL+cuCK+YEZHWiLK0SXpTo8YRj5lpJu3CDNKiIBCne4m9hhTIqUg6SYTAI39tAiVQ==} engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.18.6 - '@babel/generator': 7.19.5 + '@babel/generator': 7.20.7 '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-function-name': 7.19.0 '@babel/helper-hoist-variables': 7.18.6 '@babel/helper-split-export-declaration': 7.18.6 - '@babel/parser': 7.19.4 - '@babel/types': 7.19.4 + '@babel/parser': 7.20.13 + '@babel/types': 7.20.7 debug: 4.3.4 globals: 11.12.0 transitivePeerDependencies: - supports-color - /@babel/types/7.19.3: - resolution: {integrity: sha512-hGCaQzIY22DJlDh9CH7NOxgKkFjBk0Cw9xDO1Xmh2151ti7wiGfQ3LauXzL4HP1fmFlTX6XjpRETTpUcv7wQLw==} + /@babel/types/7.20.2: + resolution: {integrity: sha512-FnnvsNWgZCr232sqtXggapvlkk/tuwR/qhGzcmxI0GXLCjmPYQPzio2FbdlWuY6y1sHFfQKk+rRbUZ9VStQMog==} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-string-parser': 7.19.4 '@babel/helper-validator-identifier': 7.19.1 to-fast-properties: 2.0.0 + dev: true - /@babel/types/7.19.4: - resolution: {integrity: sha512-M5LK7nAeS6+9j7hAq+b3fQs+pNfUtTGq+yFFfHnauFA8zQtLRfmuipmsKDKKLuyG+wC8ABW43A153YNawNTEtw==} + /@babel/types/7.20.7: + resolution: {integrity: sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg==} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-string-parser': 7.19.4 '@babel/helper-validator-identifier': 7.19.1 to-fast-properties: 2.0.0 - /@emotion/babel-plugin/11.10.2_@babel+core@7.19.3: + /@emotion/babel-plugin/11.10.2: resolution: {integrity: sha512-xNQ57njWTFVfPAc3cjfuaPdsgLp5QOSuRsj9MA6ndEhH/AzuZM86qIQzt6rq+aGBwj3n5/TkLmU5lhAfdRmogA==} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.19.3 '@babel/helper-module-imports': 7.18.6 - '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.19.3 + '@babel/plugin-syntax-jsx': 7.18.6 '@babel/runtime': 7.19.4 '@emotion/hash': 0.9.0 '@emotion/memoize': 0.8.0 @@ -321,7 +363,7 @@ packages: resolution: {integrity: sha512-G/YwXTkv7Den9mXDO7AhLWkE3q+I92B+VqAE+dYG4NGPaHZGvt3G8Q0p9vmE+sq7rTGphUbAvmQ9YpbfMQGGlA==} dev: false - /@emotion/react/11.10.4_bjroym7kxlcs2vvwnej4p3gzwu: + /@emotion/react/11.10.4_fan5qbzahqtxlm5dzefqlqx5ia: resolution: {integrity: sha512-j0AkMpr6BL8gldJZ6XQsQ8DnS9TxEQu1R+OGmDZiWjBAJtCcbt0tS3I/YffoqHXxH6MjgI7KdMbYKw3MEiU9eA==} peerDependencies: '@babel/core': ^7.0.0 @@ -333,15 +375,14 @@ packages: '@types/react': optional: true dependencies: - '@babel/core': 7.19.3 '@babel/runtime': 7.19.4 - '@emotion/babel-plugin': 11.10.2_@babel+core@7.19.3 + '@emotion/babel-plugin': 11.10.2 '@emotion/cache': 11.10.3 '@emotion/serialize': 1.1.0 '@emotion/use-insertion-effect-with-fallbacks': 1.0.0_react@18.2.0 '@emotion/utils': 1.2.0 '@emotion/weak-memoize': 0.3.0 - '@types/react': 18.0.21 + '@types/react': 18.0.25 hoist-non-react-statics: 3.3.2 react: 18.2.0 dev: false @@ -389,6 +430,96 @@ packages: dev: false optional: true + /@esbuild/android-arm/0.17.3: + resolution: {integrity: sha512-1Mlz934GvbgdDmt26rTLmf03cAgLg5HyOgJN+ZGCeP3Q9ynYTNMn2/LQxIl7Uy+o4K6Rfi2OuLsr12JQQR8gNg==} + engines: {node: '>=12'} + cpu: [arm] + os: [android] + requiresBuild: true + dev: false + optional: true + + /@esbuild/android-arm64/0.17.3: + resolution: {integrity: sha512-XvJsYo3dO3Pi4kpalkyMvfQsjxPWHYjoX4MDiB/FUM4YMfWcXa5l4VCwFWVYI1+92yxqjuqrhNg0CZg3gSouyQ==} + engines: {node: '>=12'} + cpu: [arm64] + os: [android] + requiresBuild: true + dev: false + optional: true + + /@esbuild/android-x64/0.17.3: + resolution: {integrity: sha512-nuV2CmLS07Gqh5/GrZLuqkU9Bm6H6vcCspM+zjp9TdQlxJtIe+qqEXQChmfc7nWdyr/yz3h45Utk1tUn8Cz5+A==} + engines: {node: '>=12'} + cpu: [x64] + os: [android] + requiresBuild: true + dev: false + optional: true + + /@esbuild/darwin-arm64/0.17.3: + resolution: {integrity: sha512-01Hxaaat6m0Xp9AXGM8mjFtqqwDjzlMP0eQq9zll9U85ttVALGCGDuEvra5Feu/NbP5AEP1MaopPwzsTcUq1cw==} + engines: {node: '>=12'} + cpu: [arm64] + os: [darwin] + requiresBuild: true + dev: false + optional: true + + /@esbuild/darwin-x64/0.17.3: + resolution: {integrity: sha512-Eo2gq0Q/er2muf8Z83X21UFoB7EU6/m3GNKvrhACJkjVThd0uA+8RfKpfNhuMCl1bKRfBzKOk6xaYKQZ4lZqvA==} + engines: {node: '>=12'} + cpu: [x64] + os: [darwin] + requiresBuild: true + dev: false + optional: true + + /@esbuild/freebsd-arm64/0.17.3: + resolution: {integrity: sha512-CN62ESxaquP61n1ZjQP/jZte8CE09M6kNn3baos2SeUfdVBkWN5n6vGp2iKyb/bm/x4JQzEvJgRHLGd5F5b81w==} + engines: {node: '>=12'} + cpu: [arm64] + os: [freebsd] + requiresBuild: true + dev: false + optional: true + + /@esbuild/freebsd-x64/0.17.3: + resolution: {integrity: sha512-feq+K8TxIznZE+zhdVurF3WNJ/Sa35dQNYbaqM/wsCbWdzXr5lyq+AaTUSER2cUR+SXPnd/EY75EPRjf4s1SLg==} + engines: {node: '>=12'} + cpu: [x64] + os: [freebsd] + requiresBuild: true + dev: false + optional: true + + /@esbuild/linux-arm/0.17.3: + resolution: {integrity: sha512-CLP3EgyNuPcg2cshbwkqYy5bbAgK+VhyfMU7oIYyn+x4Y67xb5C5ylxsNUjRmr8BX+MW3YhVNm6Lq6FKtRTWHQ==} + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + requiresBuild: true + dev: false + optional: true + + /@esbuild/linux-arm64/0.17.3: + resolution: {integrity: sha512-JHeZXD4auLYBnrKn6JYJ0o5nWJI9PhChA/Nt0G4MvLaMrvXuWnY93R3a7PiXeJQphpL1nYsaMcoV2QtuvRnF/g==} + engines: {node: '>=12'} + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: false + optional: true + + /@esbuild/linux-ia32/0.17.3: + resolution: {integrity: sha512-FyXlD2ZjZqTFh0sOQxFDiWG1uQUEOLbEh9gKN/7pFxck5Vw0qjWSDqbn6C10GAa1rXJpwsntHcmLqydY9ST9ZA==} + engines: {node: '>=12'} + cpu: [ia32] + os: [linux] + requiresBuild: true + dev: false + optional: true + /@esbuild/linux-loong64/0.15.18: resolution: {integrity: sha512-L4jVKS82XVhw2nvzLg/19ClLWg0y27ulRwuP7lcyL6AbUWB5aPglXY3M21mauDQMDfRLs8cQmeT03r/+X3cZYQ==} engines: {node: '>=12'} @@ -398,6 +529,114 @@ packages: dev: false optional: true + /@esbuild/linux-loong64/0.17.3: + resolution: {integrity: sha512-OrDGMvDBI2g7s04J8dh8/I7eSO+/E7nMDT2Z5IruBfUO/RiigF1OF6xoH33Dn4W/OwAWSUf1s2nXamb28ZklTA==} + engines: {node: '>=12'} + cpu: [loong64] + os: [linux] + requiresBuild: true + dev: false + optional: true + + /@esbuild/linux-mips64el/0.17.3: + resolution: {integrity: sha512-DcnUpXnVCJvmv0TzuLwKBC2nsQHle8EIiAJiJ+PipEVC16wHXaPEKP0EqN8WnBe0TPvMITOUlP2aiL5YMld+CQ==} + engines: {node: '>=12'} + cpu: [mips64el] + os: [linux] + requiresBuild: true + dev: false + optional: true + + /@esbuild/linux-ppc64/0.17.3: + resolution: {integrity: sha512-BDYf/l1WVhWE+FHAW3FzZPtVlk9QsrwsxGzABmN4g8bTjmhazsId3h127pliDRRu5674k1Y2RWejbpN46N9ZhQ==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [linux] + requiresBuild: true + dev: false + optional: true + + /@esbuild/linux-riscv64/0.17.3: + resolution: {integrity: sha512-WViAxWYMRIi+prTJTyV1wnqd2mS2cPqJlN85oscVhXdb/ZTFJdrpaqm/uDsZPGKHtbg5TuRX/ymKdOSk41YZow==} + engines: {node: '>=12'} + cpu: [riscv64] + os: [linux] + requiresBuild: true + dev: false + optional: true + + /@esbuild/linux-s390x/0.17.3: + resolution: {integrity: sha512-Iw8lkNHUC4oGP1O/KhumcVy77u2s6+KUjieUqzEU3XuWJqZ+AY7uVMrrCbAiwWTkpQHkr00BuXH5RpC6Sb/7Ug==} + engines: {node: '>=12'} + cpu: [s390x] + os: [linux] + requiresBuild: true + dev: false + optional: true + + /@esbuild/linux-x64/0.17.3: + resolution: {integrity: sha512-0AGkWQMzeoeAtXQRNB3s4J1/T2XbigM2/Mn2yU1tQSmQRmHIZdkGbVq2A3aDdNslPyhb9/lH0S5GMTZ4xsjBqg==} + engines: {node: '>=12'} + cpu: [x64] + os: [linux] + requiresBuild: true + dev: false + optional: true + + /@esbuild/netbsd-x64/0.17.3: + resolution: {integrity: sha512-4+rR/WHOxIVh53UIQIICryjdoKdHsFZFD4zLSonJ9RRw7bhKzVyXbnRPsWSfwybYqw9sB7ots/SYyufL1mBpEg==} + engines: {node: '>=12'} + cpu: [x64] + os: [netbsd] + requiresBuild: true + dev: false + optional: true + + /@esbuild/openbsd-x64/0.17.3: + resolution: {integrity: sha512-cVpWnkx9IYg99EjGxa5Gc0XmqumtAwK3aoz7O4Dii2vko+qXbkHoujWA68cqXjhh6TsLaQelfDO4MVnyr+ODeA==} + engines: {node: '>=12'} + cpu: [x64] + os: [openbsd] + requiresBuild: true + dev: false + optional: true + + /@esbuild/sunos-x64/0.17.3: + resolution: {integrity: sha512-RxmhKLbTCDAY2xOfrww6ieIZkZF+KBqG7S2Ako2SljKXRFi+0863PspK74QQ7JpmWwncChY25JTJSbVBYGQk2Q==} + engines: {node: '>=12'} + cpu: [x64] + os: [sunos] + requiresBuild: true + dev: false + optional: true + + /@esbuild/win32-arm64/0.17.3: + resolution: {integrity: sha512-0r36VeEJ4efwmofxVJRXDjVRP2jTmv877zc+i+Pc7MNsIr38NfsjkQj23AfF7l0WbB+RQ7VUb+LDiqC/KY/M/A==} + engines: {node: '>=12'} + cpu: [arm64] + os: [win32] + requiresBuild: true + dev: false + optional: true + + /@esbuild/win32-ia32/0.17.3: + resolution: {integrity: sha512-wgO6rc7uGStH22nur4aLFcq7Wh86bE9cOFmfTr/yxN3BXvDEdCSXyKkO+U5JIt53eTOgC47v9k/C1bITWL/Teg==} + engines: {node: '>=12'} + cpu: [ia32] + os: [win32] + requiresBuild: true + dev: false + optional: true + + /@esbuild/win32-x64/0.17.3: + resolution: {integrity: sha512-FdVl64OIuiKjgXBjwZaJLKp0eaEckifbhn10dXWhysMJkWblg3OEEGKSIyhiD5RSgAya8WzP3DNkngtIg3Nt7g==} + engines: {node: '>=12'} + cpu: [x64] + os: [win32] + requiresBuild: true + dev: false + optional: true + /@expo/spawn-async/1.7.0: resolution: {integrity: sha512-sqPAjOEFTrjaTybrh9SnPFLInDXcoMC06psEFmH68jLTmoipSQCq8GCEfIoHhxRDALWB+DsiwXJSbXlE/iVIIQ==} engines: {node: '>=12'} @@ -415,14 +654,14 @@ packages: '@floating-ui/core': 1.0.1 dev: false - /@floating-ui/react-dom-interactions/0.10.1_rj7ozvcq3uehdlnj3cbwzbi5ce: + /@floating-ui/react-dom-interactions/0.10.1_2zx2umvpluuhvlq44va5bta2da: resolution: {integrity: sha512-mb9Sn/cnPjVlEucSZTSt4Iu7NAvqnXTvmzeE5EtfdRhVQO6L94dqqT+DPTmJmbiw4XqzoyGP+Q6J+I5iK2p6bw==} peerDependencies: react: '>=16.8.0' react-dom: '>=16.8.0' dependencies: '@floating-ui/react-dom': 1.0.0_biqbaboplfbrettd7655fr4n2y - aria-hidden: 1.2.1_iapumuv4e6jcjznwuxpf4tt22e + aria-hidden: 1.2.1_fan5qbzahqtxlm5dzefqlqx5ia react: 18.2.0 react-dom: 18.2.0_react@18.2.0 transitivePeerDependencies: @@ -537,21 +776,21 @@ packages: dev: false optional: true - /@mantine/core/5.9.5_sangcu27ug4wpw4wjq5m7ftas4: + /@mantine/core/5.9.5_na3komoxsyhsqpyq6ei3ndglb4: resolution: {integrity: sha512-A3cYzGOJ9BpU6tgqTl8qzOe8mmqzvuB76N6IHsPjk+uhbQCBXuNaoxOemP0wEM4HpEAzH1FR1kGhk6tO3gogUA==} peerDependencies: '@mantine/hooks': 5.9.5 react: '>=16.8.0' react-dom: '>=16.8.0' dependencies: - '@floating-ui/react-dom-interactions': 0.10.1_rj7ozvcq3uehdlnj3cbwzbi5ce + '@floating-ui/react-dom-interactions': 0.10.1_2zx2umvpluuhvlq44va5bta2da '@mantine/hooks': 5.9.5_react@18.2.0 '@mantine/styles': 5.9.5_7xbt6cqxny5okm7nuwm4cfiesq '@mantine/utils': 5.9.5_react@18.2.0 '@radix-ui/react-scroll-area': 1.0.2_biqbaboplfbrettd7655fr4n2y react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - react-textarea-autosize: 8.3.4_iapumuv4e6jcjznwuxpf4tt22e + react-textarea-autosize: 8.3.4_fan5qbzahqtxlm5dzefqlqx5ia transitivePeerDependencies: - '@emotion/react' - '@types/react' @@ -572,7 +811,7 @@ packages: react: '>=16.8.0' react-dom: '>=16.8.0' dependencies: - '@emotion/react': 11.10.4_bjroym7kxlcs2vvwnej4p3gzwu + '@emotion/react': 11.10.4_fan5qbzahqtxlm5dzefqlqx5ia clsx: 1.1.1 csstype: 3.0.9 react: 18.2.0 @@ -593,7 +832,7 @@ packages: dependencies: '@lezer/common': 0.15.12 '@lezer/lr': 0.15.8 - json5: 2.2.1 + json5: 2.2.3 dev: false /@msgpackr-extract/msgpackr-extract-darwin-arm64/2.1.2: @@ -665,85 +904,85 @@ packages: fastq: 1.14.0 dev: false - /@parcel/bundler-default/2.8.2_@parcel+core@2.8.2: - resolution: {integrity: sha512-/7ao0vc/v8WGHZaS1SyS5R8wzqmmXEr9mhIIB2cbLQ4LA2WUtKsYcvZ2gjJuiAAN1CHC6GxqwYjIJScQCk/QXg==} - engines: {node: '>= 12.0.0', parcel: ^2.8.2} + /@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} dependencies: - '@parcel/diagnostic': 2.8.2 - '@parcel/graph': 2.8.2 - '@parcel/hash': 2.8.2 - '@parcel/plugin': 2.8.2_@parcel+core@2.8.2 - '@parcel/utils': 2.8.2 + '@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 nullthrows: 1.1.1 transitivePeerDependencies: - '@parcel/core' dev: false - /@parcel/cache/2.8.2_@parcel+core@2.8.2: - resolution: {integrity: sha512-kiyoOgh1RXp5qp+wlb8Pi/Z7o9D82Oj5RlHnKSAauyR7jgnI8Vq8JTeBmlLqrf+kHxcDcp2p86hidSeANhlQNg==} + /@parcel/cache/2.8.3_@parcel+core@2.8.3: + resolution: {integrity: sha512-k7xv5vSQrJLdXuglo+Hv3yF4BCSs1tQ/8Vbd6CHTkOhf7LcGg6CPtLw053R/KdMpd/4GPn0QrAsOLdATm1ELtQ==} engines: {node: '>= 12.0.0'} peerDependencies: - '@parcel/core': ^2.8.2 + '@parcel/core': ^2.8.3 dependencies: - '@parcel/core': 2.8.2 - '@parcel/fs': 2.8.2_@parcel+core@2.8.2 - '@parcel/logger': 2.8.2 - '@parcel/utils': 2.8.2 + '@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 dev: false - /@parcel/codeframe/2.8.2: - resolution: {integrity: sha512-U2GT9gq1Zs3Gr83j8JIs10bLbGOHFl57Y8D57nrdR05F4iilV/UR6K7jkhdoiFc9WiHh3ewvrko5+pSdAVFPgQ==} + /@parcel/codeframe/2.8.3: + resolution: {integrity: sha512-FE7sY53D6n/+2Pgg6M9iuEC6F5fvmyBkRE4d9VdnOoxhTXtkEqpqYgX7RJ12FAQwNlxKq4suBJQMgQHMF2Kjeg==} engines: {node: '>= 12.0.0'} dependencies: chalk: 4.1.2 dev: false - /@parcel/compressor-raw/2.8.2_@parcel+core@2.8.2: - resolution: {integrity: sha512-EFPTer/P+3axifH6LtYHS3E6ABgdZnjZomJZ/Nl19lypZh/NgZzmMZlINlEVqyYhCggoKfXzgeTgkIHPN2d5Vw==} - engines: {node: '>= 12.0.0', parcel: ^2.8.2} + /@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} dependencies: - '@parcel/plugin': 2.8.2_@parcel+core@2.8.2 + '@parcel/plugin': 2.8.3_@parcel+core@2.8.3 transitivePeerDependencies: - '@parcel/core' dev: false - /@parcel/config-default/2.8.2_@parcel+core@2.8.2: - resolution: {integrity: sha512-1ELJAHx37fKSZZkYKWy6UdcuLRv5vrZJc89tVS6eRvvMt+udbIoSgIUzPXu7XemkcchF7Tryw3u2pRyxyLyL3w==} + /@parcel/config-default/2.8.3_@parcel+core@2.8.3: + resolution: {integrity: sha512-o/A/mbrO6X/BfGS65Sib8d6SSG45NYrNooNBkH/o7zbOBSRQxwyTlysleK1/3Wa35YpvFyLOwgfakqCtbGy4fw==} peerDependencies: - '@parcel/core': ^2.8.2 - dependencies: - '@parcel/bundler-default': 2.8.2_@parcel+core@2.8.2 - '@parcel/compressor-raw': 2.8.2_@parcel+core@2.8.2 - '@parcel/core': 2.8.2 - '@parcel/namer-default': 2.8.2_@parcel+core@2.8.2 - '@parcel/optimizer-css': 2.8.2_@parcel+core@2.8.2 - '@parcel/optimizer-htmlnano': 2.8.2_@parcel+core@2.8.2 - '@parcel/optimizer-image': 2.8.2_@parcel+core@2.8.2 - '@parcel/optimizer-svgo': 2.8.2_@parcel+core@2.8.2 - '@parcel/optimizer-terser': 2.8.2_@parcel+core@2.8.2 - '@parcel/packager-css': 2.8.2_@parcel+core@2.8.2 - '@parcel/packager-html': 2.8.2_@parcel+core@2.8.2 - '@parcel/packager-js': 2.8.2_@parcel+core@2.8.2 - '@parcel/packager-raw': 2.8.2_@parcel+core@2.8.2 - '@parcel/packager-svg': 2.8.2_@parcel+core@2.8.2 - '@parcel/reporter-dev-server': 2.8.2_@parcel+core@2.8.2 - '@parcel/resolver-default': 2.8.2_@parcel+core@2.8.2 - '@parcel/runtime-browser-hmr': 2.8.2_@parcel+core@2.8.2 - '@parcel/runtime-js': 2.8.2_@parcel+core@2.8.2 - '@parcel/runtime-react-refresh': 2.8.2_@parcel+core@2.8.2 - '@parcel/runtime-service-worker': 2.8.2_@parcel+core@2.8.2 - '@parcel/transformer-babel': 2.8.2_@parcel+core@2.8.2 - '@parcel/transformer-css': 2.8.2_@parcel+core@2.8.2 - '@parcel/transformer-html': 2.8.2_@parcel+core@2.8.2 - '@parcel/transformer-image': 2.8.2_@parcel+core@2.8.2 - '@parcel/transformer-js': 2.8.2_@parcel+core@2.8.2 - '@parcel/transformer-json': 2.8.2_@parcel+core@2.8.2 - '@parcel/transformer-postcss': 2.8.2_@parcel+core@2.8.2 - '@parcel/transformer-posthtml': 2.8.2_@parcel+core@2.8.2 - '@parcel/transformer-raw': 2.8.2_@parcel+core@2.8.2 - '@parcel/transformer-react-refresh-wrap': 2.8.2_@parcel+core@2.8.2 - '@parcel/transformer-svg': 2.8.2_@parcel+core@2.8.2 + '@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 transitivePeerDependencies: - cssnano - postcss @@ -754,160 +993,153 @@ packages: - uncss dev: false - /@parcel/core/2.8.2: - resolution: {integrity: sha512-ZGuq6p+Lzx6fgufaVsuOBwgpU3hgskTvIDIMdIDi9gOZyhGPK7U2srXdX+VYUL5ZSGbX04/P6QlB9FMAXK+nEg==} + /@parcel/core/2.8.3: + resolution: {integrity: sha512-Euf/un4ZAiClnlUXqPB9phQlKbveU+2CotZv7m7i+qkgvFn5nAGnrV4h1OzQU42j9dpgOxWi7AttUDMrvkbhCQ==} engines: {node: '>= 12.0.0'} dependencies: '@mischnic/json-sourcemap': 0.1.0 - '@parcel/cache': 2.8.2_@parcel+core@2.8.2 - '@parcel/diagnostic': 2.8.2 - '@parcel/events': 2.8.2 - '@parcel/fs': 2.8.2_@parcel+core@2.8.2 - '@parcel/graph': 2.8.2 - '@parcel/hash': 2.8.2 - '@parcel/logger': 2.8.2 - '@parcel/package-manager': 2.8.2_@parcel+core@2.8.2 - '@parcel/plugin': 2.8.2_@parcel+core@2.8.2 + '@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/source-map': 2.1.1 - '@parcel/types': 2.8.2_@parcel+core@2.8.2 - '@parcel/utils': 2.8.2 - '@parcel/workers': 2.8.2_@parcel+core@2.8.2 + '@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 abortcontroller-polyfill: 1.7.5 base-x: 3.0.9 browserslist: 4.21.4 clone: 2.1.2 dotenv: 7.0.0 dotenv-expand: 5.1.0 - json5: 2.2.1 + json5: 2.2.3 msgpackr: 1.7.2 nullthrows: 1.1.1 semver: 5.7.1 dev: false - /@parcel/css/1.14.0: - resolution: {integrity: sha512-r5tJWe6NF6lesfPw1N3g7N7WUKpHqi2ONnw9wl5ccSGGIxkmgcPaPQxfvmhdjXvQnktSuIOR0HjQXVXu+/en/w==} - engines: {node: '>= 12.0.0'} - dependencies: - lightningcss: 1.17.1 - dev: false - - /@parcel/diagnostic/2.8.2: - resolution: {integrity: sha512-tGSMwM2rSYLjJW0fCd9gb3tNjfCX/83PZ10/5u2E33UZVkk8OIHsQmsrtq2H2g4oQL3rFxkfEx6nGPDGHwlx7A==} + /@parcel/diagnostic/2.8.3: + resolution: {integrity: sha512-u7wSzuMhLGWZjVNYJZq/SOViS3uFG0xwIcqXw12w54Uozd6BH8JlhVtVyAsq9kqnn7YFkw6pXHqAo5Tzh4FqsQ==} engines: {node: '>= 12.0.0'} dependencies: '@mischnic/json-sourcemap': 0.1.0 nullthrows: 1.1.1 dev: false - /@parcel/events/2.8.2: - resolution: {integrity: sha512-o5etrsKm16y8iRPnjtEBNy4lD0WAigD66yt/RZl9Rx0vPVDly/63Rr9+BrXWVW7bJ7x0S0VVpWW4j3f/qZOsXg==} + /@parcel/events/2.8.3: + resolution: {integrity: sha512-hoIS4tAxWp8FJk3628bsgKxEvR7bq2scCVYHSqZ4fTi/s0+VymEATrRCUqf+12e5H47uw1/ZjoqrGtBI02pz4w==} engines: {node: '>= 12.0.0'} dev: false - /@parcel/fs-search/2.8.2: - resolution: {integrity: sha512-ovQnupRm/MoE/tbgH0Ivknk0QYenXAewjcog+T5umDmUlTmnIRZjURrgDf5Xtw8T/CD5Xv+HmIXpJ9Ez/LzJpw==} + /@parcel/fs-search/2.8.3: + resolution: {integrity: sha512-DJBT2N8knfN7Na6PP2mett3spQLTqxFrvl0gv+TJRp61T8Ljc4VuUTb0hqBj+belaASIp3Q+e8+SgaFQu7wLiQ==} engines: {node: '>= 12.0.0'} dependencies: detect-libc: 1.0.3 dev: false - /@parcel/fs/2.8.2_@parcel+core@2.8.2: - resolution: {integrity: sha512-aN8znbMndSqn1xwZEmMblzqmJsxcExv2jKLl/a9RUHAP7LaPYcPZIykDL3YwGCiKTCzjmRpXnNoyosjFFeBaHA==} + /@parcel/fs/2.8.3_@parcel+core@2.8.3: + resolution: {integrity: sha512-y+i+oXbT7lP0e0pJZi/YSm1vg0LDsbycFuHZIL80pNwdEppUAtibfJZCp606B7HOjMAlNZOBo48e3hPG3d8jgQ==} engines: {node: '>= 12.0.0'} peerDependencies: - '@parcel/core': ^2.8.2 + '@parcel/core': ^2.8.3 dependencies: - '@parcel/core': 2.8.2 - '@parcel/fs-search': 2.8.2 - '@parcel/types': 2.8.2_@parcel+core@2.8.2 - '@parcel/utils': 2.8.2 - '@parcel/watcher': 2.0.7 - '@parcel/workers': 2.8.2_@parcel+core@2.8.2 + '@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/watcher': 2.1.0 + '@parcel/workers': 2.8.3_@parcel+core@2.8.3 dev: false - /@parcel/graph/2.8.2: - resolution: {integrity: sha512-SLEvBQBgfkXgU4EBu30+CNanpuKjcNuEv/x8SwobCF0i3Rk+QKbe7T36bNR7727mao++2Ha69q93Dd9dTPw0kQ==} + /@parcel/graph/2.8.3: + resolution: {integrity: sha512-26GL8fYZPdsRhSXCZ0ZWliloK6DHlMJPWh6Z+3VVZ5mnDSbYg/rRKWmrkhnr99ZWmL9rJsv4G74ZwvDEXTMPBg==} engines: {node: '>= 12.0.0'} dependencies: nullthrows: 1.1.1 dev: false - /@parcel/hash/2.8.2: - resolution: {integrity: sha512-NBnP8Hu0xvAqAfZXRaMM66i8nJyxpKS86BbhwkbgTGbwO1OY87GERliHeREJfcER0E0ZzwNow7MNR8ZDm6IvJQ==} + /@parcel/hash/2.8.3: + resolution: {integrity: sha512-FVItqzjWmnyP4ZsVgX+G00+6U2IzOvqDtdwQIWisCcVoXJFCqZJDy6oa2qDDFz96xCCCynjRjPdQx2jYBCpfYw==} engines: {node: '>= 12.0.0'} dependencies: detect-libc: 1.0.3 xxhash-wasm: 0.4.2 dev: false - /@parcel/logger/2.8.2: - resolution: {integrity: sha512-zlhK6QHxfFJMlVJxxcCw0xxBDrYPFPOhMxSD6p6b0z9Yct1l3NdpmfabgjKX8wnZmHokFsil6daleM+M80n2Ew==} + /@parcel/logger/2.8.3: + resolution: {integrity: sha512-Kpxd3O/Vs7nYJIzkdmB6Bvp3l/85ydIxaZaPfGSGTYOfaffSOTkhcW9l6WemsxUrlts4za6CaEWcc4DOvaMOPA==} engines: {node: '>= 12.0.0'} dependencies: - '@parcel/diagnostic': 2.8.2 - '@parcel/events': 2.8.2 + '@parcel/diagnostic': 2.8.3 + '@parcel/events': 2.8.3 dev: false - /@parcel/markdown-ansi/2.8.2: - resolution: {integrity: sha512-5y29TXgRgG0ybuXaDsDk4Aofg/nDUeAAyVl9/toYCDDhxpQV4yZt8WNPu4PaNYKGLuNgXwsmz+ryZQHGmfbAIQ==} + /@parcel/markdown-ansi/2.8.3: + resolution: {integrity: sha512-4v+pjyoh9f5zuU/gJlNvNFGEAb6J90sOBwpKJYJhdWXLZMNFCVzSigxrYO+vCsi8G4rl6/B2c0LcwIMjGPHmFQ==} engines: {node: '>= 12.0.0'} dependencies: chalk: 4.1.2 dev: false - /@parcel/namer-default/2.8.2_@parcel+core@2.8.2: - resolution: {integrity: sha512-sMLW/bDWXA6IE7TQKOsBnA5agZGNvZ9qIXKZEUTsTloUjMdAWI8NYA1s0i9HovnGxI5uGlgevrftK4S5V4AdkA==} - engines: {node: '>= 12.0.0', parcel: ^2.8.2} + /@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} dependencies: - '@parcel/diagnostic': 2.8.2 - '@parcel/plugin': 2.8.2_@parcel+core@2.8.2 + '@parcel/diagnostic': 2.8.3 + '@parcel/plugin': 2.8.3_@parcel+core@2.8.3 nullthrows: 1.1.1 transitivePeerDependencies: - '@parcel/core' dev: false - /@parcel/node-resolver-core/2.8.2: - resolution: {integrity: sha512-D/NJEz/h/C3RmUOWSTg0cLwG3uRVHY9PL+3YGO/c8tKu8PlS2j55XtntdiVfwkK+P6avLCnrJnv/gwTa79dOPw==} + /@parcel/node-resolver-core/2.8.3: + resolution: {integrity: sha512-12YryWcA5Iw2WNoEVr/t2HDjYR1iEzbjEcxfh1vaVDdZ020PiGw67g5hyIE/tsnG7SRJ0xdRx1fQ2hDgED+0Ww==} engines: {node: '>= 12.0.0'} dependencies: - '@parcel/diagnostic': 2.8.2 - '@parcel/utils': 2.8.2 + '@parcel/diagnostic': 2.8.3 + '@parcel/utils': 2.8.3 nullthrows: 1.1.1 semver: 5.7.1 dev: false - /@parcel/optimizer-css/2.8.2_@parcel+core@2.8.2: - resolution: {integrity: sha512-pQEuKhk0PJuYI3hrXlf4gpuuPy+MZUDzC44ulQM7kVcVJ0OofuJQQeHfTLE+v5wClFDd29ZQZ7RsLP5RyUQ+Lg==} - engines: {node: '>= 12.0.0', parcel: ^2.8.2} + /@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} dependencies: - '@parcel/diagnostic': 2.8.2 - '@parcel/plugin': 2.8.2_@parcel+core@2.8.2 + '@parcel/diagnostic': 2.8.3 + '@parcel/plugin': 2.8.3_@parcel+core@2.8.3 '@parcel/source-map': 2.1.1 - '@parcel/utils': 2.8.2 + '@parcel/utils': 2.8.3 browserslist: 4.21.4 - lightningcss: 1.17.1 + lightningcss: 1.18.0 nullthrows: 1.1.1 transitivePeerDependencies: - '@parcel/core' dev: false - /@parcel/optimizer-data-url/2.8.2_@parcel+core@2.8.2: - resolution: {integrity: sha512-wFkwIOjh/kWwl9aQkhcNHH3VrGujW8AYQx8DFkcNaUaR6SPMRNXUZ3zLfDsHLvlRRL8YqYAvrGerQ0M5auChIQ==} - engines: {node: '>= 12.0.0', parcel: ^2.8.2} + /@parcel/optimizer-data-url/2.8.3_@parcel+core@2.8.3: + resolution: {integrity: sha512-lI3rDdO1azJ+Y+FeOqQCg8mOfYfqhF35rxtHjEMyChy+MbGW93uoOVIk03IgWTtyiEmiUAVe4sjmFxOD7hHL+w==} + engines: {node: '>= 12.0.0', parcel: ^2.8.3} dependencies: - '@parcel/plugin': 2.8.2_@parcel+core@2.8.2 - '@parcel/utils': 2.8.2 + '@parcel/plugin': 2.8.3_@parcel+core@2.8.3 + '@parcel/utils': 2.8.3 isbinaryfile: 4.0.10 mime: 2.6.0 transitivePeerDependencies: - '@parcel/core' dev: false - /@parcel/optimizer-htmlnano/2.8.2_@parcel+core@2.8.2: - resolution: {integrity: sha512-4+3wi+Yi+hsf5/LolX59JXFe/7bLpI6NetUBgtoxOVm/EzFg1NGSNOcrthzEcgGj6+MMSdzBAxRTPObAfDxJCA==} - engines: {node: '>= 12.0.0', parcel: ^2.8.2} + /@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} dependencies: - '@parcel/plugin': 2.8.2_@parcel+core@2.8.2 + '@parcel/plugin': 2.8.3_@parcel+core@2.8.3 htmlnano: 2.0.2_svgo@2.8.0 nullthrows: 1.1.1 posthtml: 0.16.6 @@ -923,199 +1155,199 @@ packages: - uncss dev: false - /@parcel/optimizer-image/2.8.2_@parcel+core@2.8.2: - resolution: {integrity: sha512-/ICYG0smbMkli+su4m/ENQPxQDCPYYTJTjseKwl+t1vyj6wqNF99mNI4c0RE2TIPuDneGwSz7PlHhC2JmdgxfQ==} - engines: {node: '>= 12.0.0', parcel: ^2.8.2} + /@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} dependencies: - '@parcel/diagnostic': 2.8.2 - '@parcel/plugin': 2.8.2_@parcel+core@2.8.2 - '@parcel/utils': 2.8.2 - '@parcel/workers': 2.8.2_@parcel+core@2.8.2 + '@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 transitivePeerDependencies: - '@parcel/core' dev: false - /@parcel/optimizer-svgo/2.8.2_@parcel+core@2.8.2: - resolution: {integrity: sha512-nFWyM+CBtgBixqknpbN4R92v8PK7Gjlrsb8vxN/IIr/3Pjk+DfoT51DnynhU7AixvDylYkgjjqrQ7uFYYl0OKA==} - engines: {node: '>= 12.0.0', parcel: ^2.8.2} + /@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} dependencies: - '@parcel/diagnostic': 2.8.2 - '@parcel/plugin': 2.8.2_@parcel+core@2.8.2 - '@parcel/utils': 2.8.2 + '@parcel/diagnostic': 2.8.3 + '@parcel/plugin': 2.8.3_@parcel+core@2.8.3 + '@parcel/utils': 2.8.3 svgo: 2.8.0 transitivePeerDependencies: - '@parcel/core' dev: false - /@parcel/optimizer-terser/2.8.2_@parcel+core@2.8.2: - resolution: {integrity: sha512-jFAOh9WaO6oNc8B9qDsCWzNkH7nYlpvaPn0w3ZzpMDi0HWD+w+xgO737rWLJWZapqUDSOs0Q/hDFEZ82/z0yxA==} - engines: {node: '>= 12.0.0', parcel: ^2.8.2} + /@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} dependencies: - '@parcel/diagnostic': 2.8.2 - '@parcel/plugin': 2.8.2_@parcel+core@2.8.2 + '@parcel/diagnostic': 2.8.3 + '@parcel/plugin': 2.8.3_@parcel+core@2.8.3 '@parcel/source-map': 2.1.1 - '@parcel/utils': 2.8.2 + '@parcel/utils': 2.8.3 nullthrows: 1.1.1 - terser: 5.15.1 + terser: 5.16.1 transitivePeerDependencies: - '@parcel/core' dev: false - /@parcel/package-manager/2.8.2_@parcel+core@2.8.2: - resolution: {integrity: sha512-hx4Imi0yhsSS0aNZkEANPYNNKqBuR63EUNWSxMyHh4ZOvbHoOXnMn1ySGdx6v0oi9HvKymNsLMQ1T5CuI4l4Bw==} + /@parcel/package-manager/2.8.3_@parcel+core@2.8.3: + resolution: {integrity: sha512-tIpY5pD2lH53p9hpi++GsODy6V3khSTX4pLEGuMpeSYbHthnOViobqIlFLsjni+QA1pfc8NNNIQwSNdGjYflVA==} engines: {node: '>= 12.0.0'} peerDependencies: - '@parcel/core': ^2.8.2 - dependencies: - '@parcel/core': 2.8.2 - '@parcel/diagnostic': 2.8.2 - '@parcel/fs': 2.8.2_@parcel+core@2.8.2 - '@parcel/logger': 2.8.2 - '@parcel/types': 2.8.2_@parcel+core@2.8.2 - '@parcel/utils': 2.8.2 - '@parcel/workers': 2.8.2_@parcel+core@2.8.2 + '@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 semver: 5.7.1 dev: false - /@parcel/packager-css/2.8.2_@parcel+core@2.8.2: - resolution: {integrity: sha512-l2fR5qr1moUWLOqQZPxtH6DBKbaKcxzEPAmQ+f15dHt8eQxU15MyQ4DHX41b5B7HwaumgCqe0NkuTF3DedpJKg==} - engines: {node: '>= 12.0.0', parcel: ^2.8.2} + /@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} dependencies: - '@parcel/plugin': 2.8.2_@parcel+core@2.8.2 + '@parcel/plugin': 2.8.3_@parcel+core@2.8.3 '@parcel/source-map': 2.1.1 - '@parcel/utils': 2.8.2 + '@parcel/utils': 2.8.3 nullthrows: 1.1.1 transitivePeerDependencies: - '@parcel/core' dev: false - /@parcel/packager-html/2.8.2_@parcel+core@2.8.2: - resolution: {integrity: sha512-/oiTsKZ5OyF9OwAVGHANNuW2TB3k3cVub1QfttSKJgG3sAhrOifb1dP8zBHMxvUrB0CJdYhGlgi1Jth9kjACCg==} - engines: {node: '>= 12.0.0', parcel: ^2.8.2} + /@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} dependencies: - '@parcel/plugin': 2.8.2_@parcel+core@2.8.2 - '@parcel/types': 2.8.2_@parcel+core@2.8.2 - '@parcel/utils': 2.8.2 + '@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 nullthrows: 1.1.1 posthtml: 0.16.6 transitivePeerDependencies: - '@parcel/core' dev: false - /@parcel/packager-js/2.8.2_@parcel+core@2.8.2: - resolution: {integrity: sha512-48LtHP4lJn8J1aBeD4Ix/YjsRxrBUkzbx7czdUeRh2PlCqY4wwIhciVlEFipj/ANr3ieSX44lXyVPk/ttnSdrw==} - engines: {node: '>= 12.0.0', parcel: ^2.8.2} + /@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} dependencies: - '@parcel/diagnostic': 2.8.2 - '@parcel/hash': 2.8.2 - '@parcel/plugin': 2.8.2_@parcel+core@2.8.2 + '@parcel/diagnostic': 2.8.3 + '@parcel/hash': 2.8.3 + '@parcel/plugin': 2.8.3_@parcel+core@2.8.3 '@parcel/source-map': 2.1.1 - '@parcel/utils': 2.8.2 + '@parcel/utils': 2.8.3 globals: 13.17.0 nullthrows: 1.1.1 transitivePeerDependencies: - '@parcel/core' dev: false - /@parcel/packager-raw/2.8.2_@parcel+core@2.8.2: - resolution: {integrity: sha512-dGonfFptNV1lgqKaD17ecXBUyIfoG6cJI1cCE1sSoYCEt7r+Rq56X/Gq8oiA3+jjMC7QTls+SmFeMZh26fl77Q==} - engines: {node: '>= 12.0.0', parcel: ^2.8.2} + /@parcel/packager-raw/2.8.3_@parcel+core@2.8.3: + resolution: {integrity: sha512-BA6enNQo1RCnco9MhkxGrjOk59O71IZ9DPKu3lCtqqYEVd823tXff2clDKHK25i6cChmeHu6oB1Rb73hlPqhUA==} + engines: {node: '>= 12.0.0', parcel: ^2.8.3} dependencies: - '@parcel/plugin': 2.8.2_@parcel+core@2.8.2 + '@parcel/plugin': 2.8.3_@parcel+core@2.8.3 transitivePeerDependencies: - '@parcel/core' dev: false - /@parcel/packager-svg/2.8.2_@parcel+core@2.8.2: - resolution: {integrity: sha512-k7LymTJ4XQA+UcPwFYqJfWs5/Awa4GirNxRWfiFflLqH3F1XvMiKSCIQXmrDM6IaeIqqDDsu6+P5U6YDAzzM3A==} - engines: {node: '>= 12.0.0', parcel: ^2.8.2} + /@parcel/packager-svg/2.8.3_@parcel+core@2.8.3: + resolution: {integrity: sha512-mvIoHpmv5yzl36OjrklTDFShLUfPFTwrmp1eIwiszGdEBuQaX7JVI3Oo2jbVQgcN4W7J6SENzGQ3Q5hPTW3pMw==} + engines: {node: '>= 12.0.0', parcel: ^2.8.3} dependencies: - '@parcel/plugin': 2.8.2_@parcel+core@2.8.2 - '@parcel/types': 2.8.2_@parcel+core@2.8.2 - '@parcel/utils': 2.8.2 + '@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 posthtml: 0.16.6 transitivePeerDependencies: - '@parcel/core' dev: false - /@parcel/plugin/2.8.2_@parcel+core@2.8.2: - resolution: {integrity: sha512-YG7TWfKsoNm72jbz3b3TLec0qJHVkuAWSzGzowdIhX37cP1kRfp6BU2VcH+qYPP/KYJLzhcZa9n3by147mGcxw==} + /@parcel/plugin/2.8.3_@parcel+core@2.8.3: + resolution: {integrity: sha512-jZ6mnsS4D9X9GaNnvrixDQwlUQJCohDX2hGyM0U0bY2NWU8Km97SjtoCpWjq+XBCx/gpC4g58+fk9VQeZq2vlw==} engines: {node: '>= 12.0.0'} dependencies: - '@parcel/types': 2.8.2_@parcel+core@2.8.2 + '@parcel/types': 2.8.3_@parcel+core@2.8.3 transitivePeerDependencies: - '@parcel/core' dev: false - /@parcel/reporter-bundle-buddy/2.8.2_@parcel+core@2.8.2: - resolution: {integrity: sha512-sipkwo14+hRIQ7+A8645D6Iqlb0Z41rnSYh00oxJlW3i4ySLYpzY696vvuot7zAoMSjYxla/x0v7SmK4wHv/yQ==} - engines: {node: '>= 12.0.0', parcel: ^2.8.2} + /@parcel/reporter-bundle-buddy/2.8.3_@parcel+core@2.8.3: + resolution: {integrity: sha512-NuM0mvXGIwXmXIXXZk8Y10eCLaQuxQ8VQ1AL3bA5xD5xQFspMuYatRZM82J8Zt51Sw4amLF66NCdCsZSonXmUQ==} + engines: {node: '>= 12.0.0', parcel: ^2.8.3} dependencies: - '@parcel/plugin': 2.8.2_@parcel+core@2.8.2 + '@parcel/plugin': 2.8.3_@parcel+core@2.8.3 transitivePeerDependencies: - '@parcel/core' dev: false - /@parcel/reporter-dev-server/2.8.2_@parcel+core@2.8.2: - resolution: {integrity: sha512-A16pAQSAT8Yilo1yCPZcrtWbRhwyiMopEz0mOyGobA1ZDy6B3j4zjobIWzdPQCSIY7+v44vtWMDGbdGrxt6M1Q==} - engines: {node: '>= 12.0.0', parcel: ^2.8.2} + /@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} dependencies: - '@parcel/plugin': 2.8.2_@parcel+core@2.8.2 - '@parcel/utils': 2.8.2 + '@parcel/plugin': 2.8.3_@parcel+core@2.8.3 + '@parcel/utils': 2.8.3 transitivePeerDependencies: - '@parcel/core' dev: false - /@parcel/resolver-default/2.8.2_@parcel+core@2.8.2: - resolution: {integrity: sha512-mlowJMjFjyps9my8wd13kgeExJ5EgkPAuIxRSSWW+GPR7N3uA5DBJ+SB/CzdhCkPrXR6kwVWxNkkOch38pzOQQ==} - engines: {node: '>= 12.0.0', parcel: ^2.8.2} + /@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} dependencies: - '@parcel/node-resolver-core': 2.8.2 - '@parcel/plugin': 2.8.2_@parcel+core@2.8.2 + '@parcel/node-resolver-core': 2.8.3 + '@parcel/plugin': 2.8.3_@parcel+core@2.8.3 transitivePeerDependencies: - '@parcel/core' dev: false - /@parcel/runtime-browser-hmr/2.8.2_@parcel+core@2.8.2: - resolution: {integrity: sha512-VRM8mxakMglqRB0f5eAuwCigjJ5vlaJMwHy+JuzOsn/yVSELOb+6psRKl2B9hhxp9sJPt4IU6KDdH2IOrgx87Q==} - engines: {node: '>= 12.0.0', parcel: ^2.8.2} + /@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} dependencies: - '@parcel/plugin': 2.8.2_@parcel+core@2.8.2 - '@parcel/utils': 2.8.2 + '@parcel/plugin': 2.8.3_@parcel+core@2.8.3 + '@parcel/utils': 2.8.3 transitivePeerDependencies: - '@parcel/core' dev: false - /@parcel/runtime-js/2.8.2_@parcel+core@2.8.2: - resolution: {integrity: sha512-Vk3Gywn2M9qP5X4lF6tu8QXP4xNI90UOSOhKHQ9W5pCu+zvD0Gdvu7qwQPFuFjIAq08xU7+PvZzGnlnM+8NyRw==} - engines: {node: '>= 12.0.0', parcel: ^2.8.2} + /@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} dependencies: - '@parcel/plugin': 2.8.2_@parcel+core@2.8.2 - '@parcel/utils': 2.8.2 + '@parcel/plugin': 2.8.3_@parcel+core@2.8.3 + '@parcel/utils': 2.8.3 nullthrows: 1.1.1 transitivePeerDependencies: - '@parcel/core' dev: false - /@parcel/runtime-react-refresh/2.8.2_@parcel+core@2.8.2: - resolution: {integrity: sha512-JjaMvBVx6v0zB1KHa7AopciIsl3FpjUMttr2tb6L7lzocti2muQGE6GBfinXOmD5oERwCf8HwGJ8SNFcIF0rKA==} - engines: {node: '>= 12.0.0', parcel: ^2.8.2} + /@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} dependencies: - '@parcel/plugin': 2.8.2_@parcel+core@2.8.2 - '@parcel/utils': 2.8.2 + '@parcel/plugin': 2.8.3_@parcel+core@2.8.3 + '@parcel/utils': 2.8.3 react-error-overlay: 6.0.9 react-refresh: 0.9.0 transitivePeerDependencies: - '@parcel/core' dev: false - /@parcel/runtime-service-worker/2.8.2_@parcel+core@2.8.2: - resolution: {integrity: sha512-KSxbOKV8nuH5JjFvcUlCtBYnVVlmxreXpMxRUPphPwJnyxRGA4E0jofbQxWY5KPgp7x/ZnZU/nyzCvqURH3kHA==} - engines: {node: '>= 12.0.0', parcel: ^2.8.2} + /@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} dependencies: - '@parcel/plugin': 2.8.2_@parcel+core@2.8.2 - '@parcel/utils': 2.8.2 + '@parcel/plugin': 2.8.3_@parcel+core@2.8.3 + '@parcel/utils': 2.8.3 nullthrows: 1.1.1 transitivePeerDependencies: - '@parcel/core' @@ -1128,98 +1360,99 @@ packages: detect-libc: 1.0.3 dev: false - /@parcel/transformer-babel/2.8.2_@parcel+core@2.8.2: - resolution: {integrity: sha512-oL2BpvrPMwFiU9jUZ9UYGD1gRgvq9jLsOq+/PJl4GvPbOBVedIBE2nbHP/mYuWRpRnTTTiJQ/ItyOS0R2VQl7A==} - engines: {node: '>= 12.0.0', parcel: ^2.8.2} + /@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} dependencies: - '@parcel/diagnostic': 2.8.2 - '@parcel/plugin': 2.8.2_@parcel+core@2.8.2 + '@parcel/diagnostic': 2.8.3 + '@parcel/plugin': 2.8.3_@parcel+core@2.8.3 '@parcel/source-map': 2.1.1 - '@parcel/utils': 2.8.2 + '@parcel/utils': 2.8.3 browserslist: 4.21.4 - json5: 2.2.1 + json5: 2.2.3 nullthrows: 1.1.1 semver: 5.7.1 transitivePeerDependencies: - '@parcel/core' dev: false - /@parcel/transformer-css/2.8.2_@parcel+core@2.8.2: - resolution: {integrity: sha512-q8UDlX/TTCbuFBMU45q12/p92JNIz8MHkkH104dWDzXbRtvMKMg8jgNmr8S2bouZjtXMsSb2c54EO88DSM9G4A==} - engines: {node: '>= 12.0.0', parcel: ^2.8.2} + /@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} dependencies: - '@parcel/diagnostic': 2.8.2 - '@parcel/plugin': 2.8.2_@parcel+core@2.8.2 + '@parcel/diagnostic': 2.8.3 + '@parcel/plugin': 2.8.3_@parcel+core@2.8.3 '@parcel/source-map': 2.1.1 - '@parcel/utils': 2.8.2 + '@parcel/utils': 2.8.3 browserslist: 4.21.4 - lightningcss: 1.17.1 + lightningcss: 1.18.0 nullthrows: 1.1.1 transitivePeerDependencies: - '@parcel/core' dev: false - /@parcel/transformer-graphql/2.8.2_@parcel+core@2.8.2: - resolution: {integrity: sha512-j/1ANhcnVoA3optzYvTdhgUwYD8z/kBmtNIQaltTtWpMZpMqF5Y99P7VKkcGAuRQG5VDzHHyL2eRvF+/UUDe6g==} - engines: {node: '>= 12.0.0', parcel: ^2.8.2} + /@parcel/transformer-graphql/2.8.3_@parcel+core@2.8.3: + resolution: {integrity: sha512-yuRVRk0frq2muukQbEAGXo7n68yoRGN4bbarf/JYwGHHLD2CjUHCaT2yIdwV7RyJ5E0QBT7uKd0nTb5vjeUCVw==} + engines: {node: '>= 12.0.0', parcel: ^2.8.3} dependencies: - '@parcel/plugin': 2.8.2_@parcel+core@2.8.2 + '@parcel/plugin': 2.8.3_@parcel+core@2.8.3 graphql: 15.8.0 graphql-import-macro: 1.0.0 transitivePeerDependencies: - '@parcel/core' dev: false - /@parcel/transformer-html/2.8.2_@parcel+core@2.8.2: - resolution: {integrity: sha512-QDgDw6+DAcllaRQiRteMX0VgPIsxRUTXFS8jcXhbGio41LbUkLcT09M04L/cfJAAzvIKhXqiOxfNnyajTvCPDQ==} - engines: {node: '>= 12.0.0', parcel: ^2.8.2} + /@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} dependencies: - '@parcel/diagnostic': 2.8.2 - '@parcel/hash': 2.8.2 - '@parcel/plugin': 2.8.2_@parcel+core@2.8.2 + '@parcel/diagnostic': 2.8.3 + '@parcel/hash': 2.8.3 + '@parcel/plugin': 2.8.3_@parcel+core@2.8.3 nullthrows: 1.1.1 posthtml: 0.16.6 posthtml-parser: 0.10.2 posthtml-render: 3.0.0 semver: 5.7.1 + srcset: 4.0.0 transitivePeerDependencies: - '@parcel/core' dev: false - /@parcel/transformer-image/2.8.2_@parcel+core@2.8.2: - resolution: {integrity: sha512-B/D9v/BVyN5jxoi+wHPbIRfMIylmC6adp8GP+BtChjbuRjukgGT8RlAVz4vDm1l0bboeyPL2IuoWRQgXKGuPVg==} - engines: {node: '>= 12.0.0', parcel: ^2.8.2} + /@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} peerDependencies: - '@parcel/core': ^2.8.2 + '@parcel/core': ^2.8.3 dependencies: - '@parcel/core': 2.8.2 - '@parcel/plugin': 2.8.2_@parcel+core@2.8.2 - '@parcel/utils': 2.8.2 - '@parcel/workers': 2.8.2_@parcel+core@2.8.2 + '@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 nullthrows: 1.1.1 dev: false - /@parcel/transformer-inline-string/2.8.2_@parcel+core@2.8.2: - resolution: {integrity: sha512-140SRnwKktVJB/McYlN0ub4NpdXECu0NesVf3ORPaG1WLF/ZxYVpLl60XBptoze9ezUqR6B6Z34fWXZiOcW09Q==} - engines: {node: '>= 12.0.0', parcel: ^2.8.2} + /@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.2_@parcel+core@2.8.2 + '@parcel/plugin': 2.8.3_@parcel+core@2.8.3 transitivePeerDependencies: - '@parcel/core' dev: false - /@parcel/transformer-js/2.8.2_@parcel+core@2.8.2: - resolution: {integrity: sha512-mLksi6gu/20JdCFDNPl7Y0HTwJOAvf2ybC2HaJcy69PJCeUrrstgiFTjsCwv1eKcesgEHi9kKX+sMHVAH3B/dA==} - engines: {node: '>= 12.0.0', parcel: ^2.8.2} + /@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} peerDependencies: - '@parcel/core': ^2.8.2 + '@parcel/core': ^2.8.3 dependencies: - '@parcel/core': 2.8.2 - '@parcel/diagnostic': 2.8.2 - '@parcel/plugin': 2.8.2_@parcel+core@2.8.2 + '@parcel/core': 2.8.3 + '@parcel/diagnostic': 2.8.3 + '@parcel/plugin': 2.8.3_@parcel+core@2.8.3 '@parcel/source-map': 2.1.1 - '@parcel/utils': 2.8.2 - '@parcel/workers': 2.8.2_@parcel+core@2.8.2 + '@parcel/utils': 2.8.3 + '@parcel/workers': 2.8.3_@parcel+core@2.8.3 '@swc/helpers': 0.4.12 browserslist: 4.21.4 detect-libc: 1.0.3 @@ -1228,21 +1461,21 @@ packages: semver: 5.7.1 dev: false - /@parcel/transformer-json/2.8.2_@parcel+core@2.8.2: - resolution: {integrity: sha512-eZuaY5tMxcMDJwpHJbPVTgSaBIO4mamwAa3VulN9kRRaf29nc+Q0iM7zMFVHWFQAi/mZZ194IIQXbDX3r6oSSQ==} - engines: {node: '>= 12.0.0', parcel: ^2.8.2} + /@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} dependencies: - '@parcel/plugin': 2.8.2_@parcel+core@2.8.2 - json5: 2.2.1 + '@parcel/plugin': 2.8.3_@parcel+core@2.8.3 + json5: 2.2.3 transitivePeerDependencies: - '@parcel/core' dev: false - /@parcel/transformer-less/2.8.2_@parcel+core@2.8.2: - resolution: {integrity: sha512-Y8HbXLZ+PYxbmb/Bc+MM0A6OuTQPkk1I+EdbTZsTCUsQAtg19P/5Pkl0E4Mab0GrVaM8pyZ+TiR69SKc1xHtFQ==} - engines: {node: '>= 12.0.0', parcel: ^2.8.2} + /@parcel/transformer-less/2.8.3_@parcel+core@2.8.3: + resolution: {integrity: sha512-ILgx0aDJC9YuFXKUSwMH5t497hdpD0jLd6EOA/J+ce5RRmLMgECTgWwA7rfCmYrRu2WPyIXmZIYMdFI93sIvxg==} + engines: {node: '>= 12.0.0', parcel: ^2.8.3} dependencies: - '@parcel/plugin': 2.8.2_@parcel+core@2.8.2 + '@parcel/plugin': 2.8.3_@parcel+core@2.8.3 '@parcel/source-map': 2.1.1 less: 4.1.3 transitivePeerDependencies: @@ -1250,14 +1483,14 @@ packages: - supports-color dev: false - /@parcel/transformer-postcss/2.8.2_@parcel+core@2.8.2: - resolution: {integrity: sha512-0Vb4T2e0QinNDps1/PxYsZwEzWieVxoW++AAUD3gzg0MfSyRc72MPc27CLOnziiRDyOUl+62gqpnNzq9xaKExA==} - engines: {node: '>= 12.0.0', parcel: ^2.8.2} + /@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} dependencies: - '@parcel/diagnostic': 2.8.2 - '@parcel/hash': 2.8.2 - '@parcel/plugin': 2.8.2_@parcel+core@2.8.2 - '@parcel/utils': 2.8.2 + '@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 clone: 2.1.2 nullthrows: 1.1.1 postcss-value-parser: 4.2.0 @@ -1266,12 +1499,12 @@ packages: - '@parcel/core' dev: false - /@parcel/transformer-posthtml/2.8.2_@parcel+core@2.8.2: - resolution: {integrity: sha512-Ub7o6QlH7+xHHHdhvR7MxTqjyLVqeJopPSzy4yP+Bd72tWVjaVm7f76SUl+p7VjhLTMkmczr9OxG3k0SFHEbGw==} - engines: {node: '>= 12.0.0', parcel: ^2.8.2} + /@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} dependencies: - '@parcel/plugin': 2.8.2_@parcel+core@2.8.2 - '@parcel/utils': 2.8.2 + '@parcel/plugin': 2.8.3_@parcel+core@2.8.3 + '@parcel/utils': 2.8.3 nullthrows: 1.1.1 posthtml: 0.16.6 posthtml-parser: 0.10.2 @@ -1281,44 +1514,57 @@ packages: - '@parcel/core' dev: false - /@parcel/transformer-raw/2.8.2_@parcel+core@2.8.2: - resolution: {integrity: sha512-xSzyZtrfisbx0R7xkuFJ/FksKyWaUFN18F9/0bLF8wo5LrOTQoYQatjun7/Rbq5mELBK/0ZPp7uJ02OqLRd2mA==} - engines: {node: '>= 12.0.0', parcel: ^2.8.2} + /@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} dependencies: - '@parcel/plugin': 2.8.2_@parcel+core@2.8.2 + '@parcel/plugin': 2.8.3_@parcel+core@2.8.3 transitivePeerDependencies: - '@parcel/core' dev: false - /@parcel/transformer-react-refresh-wrap/2.8.2_@parcel+core@2.8.2: - resolution: {integrity: sha512-UXBILYFXaj5zh1DzoYXoS3Wuq1+6WjoRQaFTUA5xrF3pjJb6LAXxWru3R20zR5INHIZXPxdQJB0b+epnmyjK4w==} - engines: {node: '>= 12.0.0', parcel: ^2.8.2} + /@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} dependencies: - '@parcel/plugin': 2.8.2_@parcel+core@2.8.2 - '@parcel/utils': 2.8.2 + '@parcel/plugin': 2.8.3_@parcel+core@2.8.3 + '@parcel/utils': 2.8.3 react-refresh: 0.9.0 transitivePeerDependencies: - '@parcel/core' dev: false - /@parcel/transformer-sass/2.8.2_@parcel+core@2.8.2: - resolution: {integrity: sha512-GiTuLpkIIVjLUYM7kEWkGetQZSS6tSysokEvipSvST5LH3mXS7hV9d1kTE2DrvvN4SSgV1uougY7c4t1CexJZA==} - engines: {node: '>= 12.0.0', parcel: ^2.8.2} + /@parcel/transformer-sass/2.8.3_@parcel+core@2.8.3: + resolution: {integrity: sha512-ak196rjvXdsBOGi5aTkBEKv6i4LKQgOkHuaKEjeT8g2a3CU6Z36J+j2GbZzsznfws/hH+CRTf8bAsbkxtKlkjQ==} + engines: {node: '>= 12.0.0', parcel: ^2.8.3} dependencies: - '@parcel/plugin': 2.8.2_@parcel+core@2.8.2 + '@parcel/plugin': 2.8.3_@parcel+core@2.8.3 '@parcel/source-map': 2.1.1 sass: 1.55.0 transitivePeerDependencies: - '@parcel/core' dev: false - /@parcel/transformer-svg/2.8.2_@parcel+core@2.8.2: - resolution: {integrity: sha512-FyliRrNHOF6tGzwHSzA2CTbkq3iMvS27eozf1kFj6gbO8gfJ5HXYoppQrTb237YZ/WXCHqe/3HVmGyJDZiLr+Q==} - engines: {node: '>= 12.0.0', parcel: ^2.8.2} + /@parcel/transformer-svg-react/2.8.3_@parcel+core@2.8.3: + resolution: {integrity: sha512-TbiaHJ74zpzHovaHe7LCeGpNh/8GV8ZRKmCj83+y9fjjoBKo8IaYtKp48mszY9ltma0xBqhmFarddF19kQxb+g==} + engines: {node: '>= 12.0.0', parcel: ^2.8.3} + dependencies: + '@parcel/plugin': 2.8.3_@parcel+core@2.8.3 + '@svgr/core': 6.5.1 + '@svgr/plugin-jsx': 6.5.1_@svgr+core@6.5.1 + '@svgr/plugin-svgo': 6.5.1_@svgr+core@6.5.1 + transitivePeerDependencies: + - '@parcel/core' + - supports-color + dev: false + + /@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} dependencies: - '@parcel/diagnostic': 2.8.2 - '@parcel/hash': 2.8.2 - '@parcel/plugin': 2.8.2_@parcel+core@2.8.2 + '@parcel/diagnostic': 2.8.3 + '@parcel/hash': 2.8.3 + '@parcel/plugin': 2.8.3_@parcel+core@2.8.3 nullthrows: 1.1.1 posthtml: 0.16.6 posthtml-parser: 0.10.2 @@ -1328,62 +1574,64 @@ packages: - '@parcel/core' dev: false - /@parcel/transformer-worklet/2.8.2_@parcel+core@2.8.2: - resolution: {integrity: sha512-GmJRy7bcqxfe2mzyNwWcYYeYYMhT++eg29kbeIX8ikj5N2YYB/yxMdilugJWbHrIMuPJUGUm/Houg6apr3z3+A==} - engines: {node: '>= 12.0.0', parcel: ^2.8.2} + /@parcel/transformer-worklet/2.8.3_@parcel+core@2.8.3: + resolution: {integrity: sha512-Le+hNS3d9dTlnMhz/BoYAQnM1ngGdhA87eoZOLVA63oivMVjcyl4sSxKHCBL6IrguY8aLoWCb3xrEyVLy0oj5A==} + engines: {node: '>= 12.0.0', parcel: ^2.8.3} dependencies: - '@parcel/plugin': 2.8.2_@parcel+core@2.8.2 + '@parcel/plugin': 2.8.3_@parcel+core@2.8.3 transitivePeerDependencies: - '@parcel/core' dev: false - /@parcel/types/2.8.2_@parcel+core@2.8.2: - resolution: {integrity: sha512-HAYhokWxM10raIhqaYj9VR9eAvJ+xP2sNfQ1IcQybHpq3qblcBe/4jDeuUpwIyKeQ4gorp7xY+q8KDoR20j43w==} + /@parcel/types/2.8.3_@parcel+core@2.8.3: + resolution: {integrity: sha512-FECA1FB7+0UpITKU0D6TgGBpGxYpVSMNEENZbSJxFSajNy3wrko+zwBKQmFOLOiPcEtnGikxNs+jkFWbPlUAtw==} dependencies: - '@parcel/cache': 2.8.2_@parcel+core@2.8.2 - '@parcel/diagnostic': 2.8.2 - '@parcel/fs': 2.8.2_@parcel+core@2.8.2 - '@parcel/package-manager': 2.8.2_@parcel+core@2.8.2 + '@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/source-map': 2.1.1 - '@parcel/workers': 2.8.2_@parcel+core@2.8.2 + '@parcel/workers': 2.8.3_@parcel+core@2.8.3 utility-types: 3.10.0 transitivePeerDependencies: - '@parcel/core' dev: false - /@parcel/utils/2.8.2: - resolution: {integrity: sha512-Ufax7wZxC9FNsUpR0EU7Z22LEY/q9jjsDTwswctCdfpWb7TE/NudOfM9myycfRvwBVEYN50lPbkt1QltEVnXQQ==} + /@parcel/utils/2.8.3: + resolution: {integrity: sha512-IhVrmNiJ+LOKHcCivG5dnuLGjhPYxQ/IzbnF2DKNQXWBTsYlHkJZpmz7THoeLtLliGmSOZ3ZCsbR8/tJJKmxjA==} engines: {node: '>= 12.0.0'} dependencies: - '@parcel/codeframe': 2.8.2 - '@parcel/diagnostic': 2.8.2 - '@parcel/hash': 2.8.2 - '@parcel/logger': 2.8.2 - '@parcel/markdown-ansi': 2.8.2 + '@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/source-map': 2.1.1 chalk: 4.1.2 dev: false - /@parcel/watcher/2.0.7: - resolution: {integrity: sha512-gc3hoS6e+2XdIQ4HHljDB1l0Yx2EWh/sBBtCEFNKGSMlwASWeAQsOY/fPbxOBcZ/pg0jBh4Ga+4xHlZc4faAEQ==} + /@parcel/watcher/2.1.0: + resolution: {integrity: sha512-8s8yYjd19pDSsBpbkOHnT6Z2+UJSuLQx61pCFM0s5wSRvKCEMDjd/cHY3/GI1szHIWbpXpsJdg3V6ISGGx9xDw==} engines: {node: '>= 10.0.0'} requiresBuild: true dependencies: + is-glob: 4.0.3 + micromatch: 4.0.5 node-addon-api: 3.2.1 node-gyp-build: 4.5.0 dev: false - /@parcel/workers/2.8.2_@parcel+core@2.8.2: - resolution: {integrity: sha512-Eg6CofIrJSNBa2fjXwvnzVLPKwR/6fkfQTFAm3Jl+4JYLVknBtTSFzQNp/Fa+HUEG889H9ucTk2CBi/fVPBAFw==} + /@parcel/workers/2.8.3_@parcel+core@2.8.3: + resolution: {integrity: sha512-+AxBnKgjqVpUHBcHLWIHcjYgKIvHIpZjN33mG5LG9XXvrZiqdWvouEzqEXlVLq5VzzVbKIQQcmsvRy138YErkg==} engines: {node: '>= 12.0.0'} peerDependencies: - '@parcel/core': ^2.8.2 + '@parcel/core': ^2.8.3 dependencies: - '@parcel/core': 2.8.2 - '@parcel/diagnostic': 2.8.2 - '@parcel/logger': 2.8.2 - '@parcel/types': 2.8.2_@parcel+core@2.8.2 - '@parcel/utils': 2.8.2 + '@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 nullthrows: 1.1.1 dev: false @@ -1541,48 +1789,53 @@ packages: resolution: {integrity: sha512-LA6dfrBsLSgdOhgLJr8asBcs6gQd9ehb436DU2c1XecjYEmh5vkEr/YjxyECOg7Iz/AdtfUuBXEjH3GGS6qOMg==} dev: false - /@plasmohq/parcel-bundler/0.4.4: - resolution: {integrity: sha512-NrmVhuuXBxBc9812NuIjFQfQ2YJzkalKDpJ62e3pUkC6lA252BzfSUSX066ec+mcZRCOwDwTc60nFdtUVO0Iqg==} + /@plasmohq/parcel-bundler/0.4.6: + resolution: {integrity: sha512-R78/uzpMm1tVw4cQvbsLsrbrs7S+kIl6GcqJ9p2xzB1kyaSwq8A7Lk/jnt+btctcB5Bcxt7NXiLLJ5/DPNTNDA==} engines: {node: '>= 16.0.0', parcel: '>= 2.7.0'} dependencies: - '@parcel/core': 2.8.2 - '@parcel/diagnostic': 2.8.2 - '@parcel/graph': 2.8.2 - '@parcel/hash': 2.8.2 - '@parcel/plugin': 2.8.2_@parcel+core@2.8.2 - '@parcel/utils': 2.8.2 + '@parcel/core': 2.8.3 + '@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 nullthrows: 1.1.1 dev: false - /@plasmohq/parcel-config/0.26.3_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-rBtVS0Cze88fhB1P+TIrsykMRiwWAQKNouH/2FCiBT0AgMp6rJZRs0j5MNpq3Oa9MTSWZVdhvoqZgFKZybxn+g==} + /@plasmohq/parcel-config/0.30.1_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-97gqlQhqmZS+pbRnW94SDYh37YXe7H4PStmp97GMfurzhc4VJhKK1XX4LlrDwIme13twl0dY1n+JsEq8mvmOeA==} dependencies: - '@parcel/config-default': 2.8.2_@parcel+core@2.8.2 - '@parcel/core': 2.8.2 - '@parcel/optimizer-data-url': 2.8.2_@parcel+core@2.8.2 - '@parcel/reporter-bundle-buddy': 2.8.2_@parcel+core@2.8.2 - '@parcel/runtime-js': 2.8.2_@parcel+core@2.8.2 - '@parcel/runtime-service-worker': 2.8.2_@parcel+core@2.8.2 + '@parcel/config-default': 2.8.3_@parcel+core@2.8.3 + '@parcel/core': 2.8.3 + '@parcel/optimizer-data-url': 2.8.3_@parcel+core@2.8.3 + '@parcel/reporter-bundle-buddy': 2.8.3_@parcel+core@2.8.3 + '@parcel/runtime-js': 2.8.3_@parcel+core@2.8.3 + '@parcel/runtime-service-worker': 2.8.3_@parcel+core@2.8.3 '@parcel/source-map': 2.1.1 - '@parcel/transformer-css': 2.8.2_@parcel+core@2.8.2 - '@parcel/transformer-graphql': 2.8.2_@parcel+core@2.8.2 - '@parcel/transformer-inline-string': 2.8.2_@parcel+core@2.8.2 - '@parcel/transformer-less': 2.8.2_@parcel+core@2.8.2 - '@parcel/transformer-postcss': 2.8.2_@parcel+core@2.8.2 - '@parcel/transformer-raw': 2.8.2_@parcel+core@2.8.2 - '@parcel/transformer-sass': 2.8.2_@parcel+core@2.8.2 - '@parcel/transformer-worklet': 2.8.2_@parcel+core@2.8.2 - '@plasmohq/parcel-bundler': 0.4.4 - '@plasmohq/parcel-namer-manifest': 0.3.2 - '@plasmohq/parcel-packager': 0.6.3 - '@plasmohq/parcel-resolver': 0.9.1 - '@plasmohq/parcel-resolver-post': 0.1.3 - '@plasmohq/parcel-runtime': 0.14.1 - '@plasmohq/parcel-transformer-inject-env': 0.2.2 - '@plasmohq/parcel-transformer-inline-css': 0.2.2 - '@plasmohq/parcel-transformer-manifest': 0.13.1 - '@plasmohq/parcel-transformer-svelte3': 0.3.2 - '@plasmohq/parcel-transformer-vue3': 0.3.2_biqbaboplfbrettd7655fr4n2y + '@parcel/transformer-babel': 2.8.3_@parcel+core@2.8.3 + '@parcel/transformer-css': 2.8.3_@parcel+core@2.8.3 + '@parcel/transformer-graphql': 2.8.3_@parcel+core@2.8.3 + '@parcel/transformer-inline-string': 2.8.3_@parcel+core@2.8.3 + '@parcel/transformer-js': 2.8.3_@parcel+core@2.8.3 + '@parcel/transformer-less': 2.8.3_@parcel+core@2.8.3 + '@parcel/transformer-postcss': 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-sass': 2.8.3_@parcel+core@2.8.3 + '@parcel/transformer-svg-react': 2.8.3_@parcel+core@2.8.3 + '@parcel/transformer-worklet': 2.8.3_@parcel+core@2.8.3 + '@plasmohq/parcel-bundler': 0.4.6 + '@plasmohq/parcel-namer-manifest': 0.3.4 + '@plasmohq/parcel-optimizer-es': 0.1.0 + '@plasmohq/parcel-packager': 0.6.5 + '@plasmohq/parcel-resolver': 0.10.3 + '@plasmohq/parcel-resolver-post': 0.1.5 + '@plasmohq/parcel-runtime': 0.16.1 + '@plasmohq/parcel-transformer-inject-env': 0.2.4 + '@plasmohq/parcel-transformer-inline-css': 0.3.0 + '@plasmohq/parcel-transformer-manifest': 0.13.4 + '@plasmohq/parcel-transformer-svelte3': 0.4.2 + '@plasmohq/parcel-transformer-vue3': 0.3.4_biqbaboplfbrettd7655fr4n2y transitivePeerDependencies: - '@swc/core' - arc-templates @@ -1642,36 +1895,49 @@ packages: - whiskers dev: false - /@plasmohq/parcel-namer-manifest/0.3.2: - resolution: {integrity: sha512-qlQ4ss1BP9Rc6P8OlF6Z8zSFF3xrG5+8RKPa1UKX4XF8YuySwiFgWVKwzpnmd8sK4FDjiJ5sPWsgQnoQBUBCsA==} + /@plasmohq/parcel-namer-manifest/0.3.4: + resolution: {integrity: sha512-6rYOBfiHNJuogz6MNxOQKeysa+aWaunX46ZlyYtekIfOUry55EzJMl4YPF7a92pGMBRF4RFAiaLpo2JXDwBRKQ==} engines: {parcel: '>= 2.7.0'} dependencies: - '@parcel/core': 2.8.2 - '@parcel/plugin': 2.8.2_@parcel+core@2.8.2 - '@parcel/types': 2.8.2_@parcel+core@2.8.2 - '@parcel/utils': 2.8.2 + '@parcel/core': 2.8.3 + '@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 + dev: false + + /@plasmohq/parcel-optimizer-es/0.1.0: + resolution: {integrity: sha512-eDdUbTihFxISP02HgepwDN9yosCr8tO00wFi8P3H4VwuKbj92ebSWK7rnGHE4+894BoN+mv6AkZ4aDM+BBiWUg==} + engines: {parcel: '>= 2.8.0'} + dependencies: + '@parcel/core': 2.8.3 + '@parcel/plugin': 2.8.3_@parcel+core@2.8.3 + '@parcel/source-map': 2.1.1 + '@parcel/utils': 2.8.3 + esbuild: 0.17.3 + nullthrows: 1.1.1 + terser: 5.16.1 dev: false - /@plasmohq/parcel-packager/0.6.3: - resolution: {integrity: sha512-RsqAyAvtCOCl4r4QGjqOANVJIWqOCHVBrUbhjcKaetNXkKwzweYGqXq+frJjiulH0E0byennAskMwdZEg97ScQ==} + /@plasmohq/parcel-packager/0.6.5: + resolution: {integrity: sha512-Lcf/qIADGL8hR78dPwF3GcymC+3ARS2nSDgK35taj+gUtzDghKxxtcU9TkV155x+4WmT4hACPW6qHTv0PX91eQ==} engines: {parcel: '>= 2.7.0'} dependencies: - '@parcel/core': 2.8.2 - '@parcel/plugin': 2.8.2_@parcel+core@2.8.2 - '@parcel/types': 2.8.2_@parcel+core@2.8.2 - '@parcel/utils': 2.8.2 + '@parcel/core': 2.8.3 + '@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 nullthrows: 1.1.1 dev: false - /@plasmohq/parcel-resolver-post/0.1.3: - resolution: {integrity: sha512-GHg+oGzXstRErlwHJgJfPKZnxRuEwE7Mf5ryBXsAJpuW7n9wJunc7i6aS8hoNiHEznCFvMkAWZ0yVcfthPspFw==} + /@plasmohq/parcel-resolver-post/0.1.5: + resolution: {integrity: sha512-0mg8+JMIswlC7+IHe8Nm8rTYwPERZHukTyqCuIHHYNdahel9UgohzW+OuilfdXscZG1vJ+nnhPaUgucUr3e1Yw==} engines: {parcel: '>= 2.7.0'} dependencies: - '@parcel/core': 2.8.2 - '@parcel/hash': 2.8.2 - '@parcel/plugin': 2.8.2_@parcel+core@2.8.2 - '@parcel/types': 2.8.2_@parcel+core@2.8.2 - '@parcel/utils': 2.8.2 + '@parcel/core': 2.8.3 + '@parcel/hash': 2.8.3 + '@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 tsup: 6.5.0_typescript@4.9.4 typescript: 4.9.4 transitivePeerDependencies: @@ -1681,82 +1947,84 @@ packages: - ts-node dev: false - /@plasmohq/parcel-resolver/0.9.1: - resolution: {integrity: sha512-ov5rIxOK7Ar2hWI7pm8ZqBrYhuLhOYuwCMhNOOJgI/Li3C1il6+9s0Oi8lVq8lacX+Ti4f6g2aaPdwArZ53isQ==} + /@plasmohq/parcel-resolver/0.10.3: + resolution: {integrity: sha512-EHHsoEXTSjYeD+pm43/tfDBHELvV0+3xjVx4lS7hX6Nag1V+DGibJIANMY3aqA0J+RSvdbayiVGDyL05W0xykA==} engines: {parcel: '>= 2.7.0'} dependencies: - '@parcel/core': 2.8.2 - '@parcel/hash': 2.8.2 - '@parcel/plugin': 2.8.2_@parcel+core@2.8.2 - '@parcel/types': 2.8.2_@parcel+core@2.8.2 + '@parcel/core': 2.8.3 + '@parcel/hash': 2.8.3 + '@parcel/plugin': 2.8.3_@parcel+core@2.8.3 + '@parcel/types': 2.8.3_@parcel+core@2.8.3 + fast-glob: 3.2.12 got: 12.5.3 dev: false - /@plasmohq/parcel-runtime/0.14.1: - resolution: {integrity: sha512-egzw4g24EPHPg1HNLcw05eluP0rrKIb6oIuKvvz6DNBBJ72DxKz2Y7H1PGNeEF4ud4NmblJvjkQeKT8n8L6kaA==} + /@plasmohq/parcel-runtime/0.16.1: + resolution: {integrity: sha512-TPlAG5N/Nbuah5rEk3hkIB7Yugnu53g3nXW/vcF0Yd++UtPrxM/hRorr4OYeax+he6xwNE8m1ZJpShdg29aA7A==} engines: {parcel: '>= 2.7.0'} dependencies: - '@parcel/core': 2.8.2 - '@parcel/plugin': 2.8.2_@parcel+core@2.8.2 + '@parcel/core': 2.8.3 + '@parcel/plugin': 2.8.3_@parcel+core@2.8.3 react-refresh: 0.14.0 dev: false - /@plasmohq/parcel-transformer-inject-env/0.2.2: - resolution: {integrity: sha512-fGZ2mSw15oW/ON4jyIh+k3Y+EJKKBZBesb9iWXlyClFxlX0uNAtJpP9+wd1U/Ca2eel3AtGKoT+I8qTVsZGXNQ==} + /@plasmohq/parcel-transformer-inject-env/0.2.4: + resolution: {integrity: sha512-tC6j2jr59rm98LKBE45qbj4pwrRXUuriMtAKfWFfh1VbE0at1TAVtUxCSE3MVHlYGqbVQeab/Qo6sI2KYwIF/Q==} engines: {parcel: '>= 2.7.0'} dependencies: - '@parcel/core': 2.8.2 - '@parcel/plugin': 2.8.2_@parcel+core@2.8.2 - '@parcel/types': 2.8.2_@parcel+core@2.8.2 + '@parcel/core': 2.8.3 + '@parcel/plugin': 2.8.3_@parcel+core@2.8.3 + '@parcel/types': 2.8.3_@parcel+core@2.8.3 dev: false - /@plasmohq/parcel-transformer-inline-css/0.2.2: - resolution: {integrity: sha512-JZoOjW9ChYzcTnUdxluqaaCgVb0msjZ9X3Xmr+N2eZ1+0yfqn43u0R4NMidzbkcXAhOunIF4/2w9dZ+w3ZTqrw==} + /@plasmohq/parcel-transformer-inline-css/0.3.0: + resolution: {integrity: sha512-10kFbbG2q4cDaofo9PCA+vlWWX/wogtEMZ1Po1Icw89U8bEe12c/XyPa019cdNULPrSnhFhr0z/HtiRHkeJA4g==} engines: {parcel: '>= 2.7.0'} dependencies: - '@parcel/core': 2.8.2 - '@parcel/css': 1.14.0 - '@parcel/plugin': 2.8.2_@parcel+core@2.8.2 - '@parcel/utils': 2.8.2 + '@parcel/core': 2.8.3 + '@parcel/plugin': 2.8.3_@parcel+core@2.8.3 + '@parcel/utils': 2.8.3 + browserslist: 4.21.4 + lightningcss: 1.18.0 dev: false - /@plasmohq/parcel-transformer-manifest/0.13.1: - resolution: {integrity: sha512-+3vR2Z7sCXu9QVlfp+70H5dbA6t6neVtQnrDKL/5Uu+MlWAp+HExt4EbVNO04ctWgxsj7flHy2y7eQVkjCk+cw==} + /@plasmohq/parcel-transformer-manifest/0.13.4: + resolution: {integrity: sha512-72uPpJobfI3oHcxcv2LicSoKtM42gQLPItO1dkFXc3zqlBPFlJ1mlPRuS3Vc0db9iEnqls54fa+Z83ZKZLzW1A==} engines: {parcel: '>= 2.7.0'} dependencies: '@mischnic/json-sourcemap': 0.1.0 - '@parcel/core': 2.8.2 - '@parcel/diagnostic': 2.8.2 - '@parcel/fs': 2.8.2_@parcel+core@2.8.2 - '@parcel/plugin': 2.8.2_@parcel+core@2.8.2 - '@parcel/types': 2.8.2_@parcel+core@2.8.2 - '@parcel/utils': 2.8.2 + '@parcel/core': 2.8.3 + '@parcel/diagnostic': 2.8.3 + '@parcel/fs': 2.8.3_@parcel+core@2.8.3 + '@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 content-security-policy-parser: 0.4.1 json-schema-to-ts: 2.6.2 nullthrows: 1.1.1 dev: false - /@plasmohq/parcel-transformer-svelte3/0.3.2: - resolution: {integrity: sha512-2QFkv74AXZAKP+1z8CJLPRW7g6rynxiNnRvT0UXWUFLisD+IthtIpSUv+eciJ4fVNLZlntM8jwAhCOjs7wanpA==} + /@plasmohq/parcel-transformer-svelte3/0.4.2: + resolution: {integrity: sha512-C+3LeuXe9kAblOtrpuiEIY8rbODR1p/C3zEks4MFogiYpLjwvp0LCmxxSdKj/uPyjftlRISWzvYFRKV8MRSYGA==} engines: {parcel: '>= 2.7.0'} dependencies: - '@parcel/core': 2.8.2 - '@parcel/diagnostic': 2.8.2 - '@parcel/plugin': 2.8.2_@parcel+core@2.8.2 + '@parcel/core': 2.8.3 + '@parcel/diagnostic': 2.8.3 + '@parcel/plugin': 2.8.3_@parcel+core@2.8.3 '@parcel/source-map': 2.1.1 - '@parcel/utils': 2.8.2 + '@parcel/utils': 2.8.3 dev: false - /@plasmohq/parcel-transformer-vue3/0.3.2_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-2pS+sN9kqRQVpGgnBD2NW9zaXivUrSDh5NY01ZkT8eKt/uVa4QJMdrxCpgPbTFvqw8nueaP3M4RB7ucVz/UbsQ==} + /@plasmohq/parcel-transformer-vue3/0.3.4_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-/e1bZ3pTBAUrMGD2I8buncljuAnBRVvUh0OPHaBAbVm4NHwIaS33k1BUACAG9jgQVJwkEQzZY9AvgGUdMjC1/Q==} engines: {parcel: '>= 2.7.0'} dependencies: - '@parcel/core': 2.8.2 - '@parcel/diagnostic': 2.8.2 - '@parcel/plugin': 2.8.2_@parcel+core@2.8.2 + '@parcel/core': 2.8.3 + '@parcel/diagnostic': 2.8.3 + '@parcel/plugin': 2.8.3_@parcel+core@2.8.3 '@parcel/source-map': 2.1.1 - '@parcel/types': 2.8.2_@parcel+core@2.8.2 - '@parcel/utils': 2.8.2 + '@parcel/types': 2.8.3_@parcel+core@2.8.3 + '@parcel/utils': 2.8.3 '@plasmohq/consolidate': 0.17.0_biqbaboplfbrettd7655fr4n2y '@vue/compiler-sfc': 3.2.45 nullthrows: 1.1.1 @@ -1810,16 +2078,16 @@ packages: - whiskers dev: false - /@plasmohq/prettier-plugin-sort-imports/3.5.4_prettier@2.7.1: - resolution: {integrity: sha512-VrGA2R+hCS4hBwg5aILPXjIhs72ctikWr89ti7EWdlPs3jzo+G10177ppDeNgROLtAx8woT5Rdh+zTU58RRSwg==} + /@plasmohq/prettier-plugin-sort-imports/3.6.0_prettier@2.7.1: + resolution: {integrity: sha512-Z68St4IaAFzsgtixyxzWMWo8KZHeIn4ns0vwUOsdP1JXkv2V7mMszZrMwF3Fz2sDNntT86NJI7F8VAsdOIsWUw==} peerDependencies: prettier: 2.x dependencies: - '@babel/core': 7.19.3 - '@babel/generator': 7.19.3 - '@babel/parser': 7.19.3 - '@babel/traverse': 7.19.3 - '@babel/types': 7.19.3 + '@babel/core': 7.20.2 + '@babel/generator': 7.20.4 + '@babel/parser': 7.20.3 + '@babel/traverse': 7.20.1 + '@babel/types': 7.20.2 javascript-natural-sort: 0.7.1 lodash.clone: 4.5.0 lodash.isequal: 4.5.0 @@ -1972,6 +2240,143 @@ packages: engines: {node: '>=14.16'} dev: false + /@svgr/babel-plugin-add-jsx-attribute/6.5.1_@babel+core@7.20.12: + resolution: {integrity: sha512-9PYGcXrAxitycIjRmZB+Q0JaN07GZIWaTBIGQzfaZv+qr1n8X1XUEJ5rZ/vx6OVD9RRYlrNnXWExQXcmZeD/BQ==} + engines: {node: '>=10'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + dev: false + + /@svgr/babel-plugin-remove-jsx-attribute/6.5.0_@babel+core@7.20.12: + resolution: {integrity: sha512-8zYdkym7qNyfXpWvu4yq46k41pyNM9SOstoWhKlm+IfdCE1DdnRKeMUPsWIEO/DEkaWxJ8T9esNdG3QwQ93jBA==} + engines: {node: '>=10'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + dev: false + + /@svgr/babel-plugin-remove-jsx-empty-expression/6.5.0_@babel+core@7.20.12: + resolution: {integrity: sha512-NFdxMq3xA42Kb1UbzCVxplUc0iqSyM9X8kopImvFnB+uSDdzIHOdbs1op8ofAvVRtbg4oZiyRl3fTYeKcOe9Iw==} + engines: {node: '>=10'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + dev: false + + /@svgr/babel-plugin-replace-jsx-attribute-value/6.5.1_@babel+core@7.20.12: + resolution: {integrity: sha512-8DPaVVE3fd5JKuIC29dqyMB54sA6mfgki2H2+swh+zNJoynC8pMPzOkidqHOSc6Wj032fhl8Z0TVn1GiPpAiJg==} + engines: {node: '>=10'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + dev: false + + /@svgr/babel-plugin-svg-dynamic-title/6.5.1_@babel+core@7.20.12: + resolution: {integrity: sha512-FwOEi0Il72iAzlkaHrlemVurgSQRDFbk0OC8dSvD5fSBPHltNh7JtLsxmZUhjYBZo2PpcU/RJvvi6Q0l7O7ogw==} + engines: {node: '>=10'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + dev: false + + /@svgr/babel-plugin-svg-em-dimensions/6.5.1_@babel+core@7.20.12: + resolution: {integrity: sha512-gWGsiwjb4tw+ITOJ86ndY/DZZ6cuXMNE/SjcDRg+HLuCmwpcjOktwRF9WgAiycTqJD/QXqL2f8IzE2Rzh7aVXA==} + engines: {node: '>=10'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + dev: false + + /@svgr/babel-plugin-transform-react-native-svg/6.5.1_@babel+core@7.20.12: + resolution: {integrity: sha512-2jT3nTayyYP7kI6aGutkyfJ7UMGtuguD72OjeGLwVNyfPRBD8zQthlvL+fAbAKk5n9ZNcvFkp/b1lZ7VsYqVJg==} + engines: {node: '>=10'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + dev: false + + /@svgr/babel-plugin-transform-svg-component/6.5.1_@babel+core@7.20.12: + resolution: {integrity: sha512-a1p6LF5Jt33O3rZoVRBqdxL350oge54iZWHNI6LJB5tQ7EelvD/Mb1mfBiZNAan0dt4i3VArkFRjA4iObuNykQ==} + engines: {node: '>=12'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + dev: false + + /@svgr/babel-preset/6.5.1_@babel+core@7.20.12: + resolution: {integrity: sha512-6127fvO/FF2oi5EzSQOAjo1LE3OtNVh11R+/8FXa+mHx1ptAaS4cknIjnUA7e6j6fwGGJ17NzaTJFUwOV2zwCw==} + engines: {node: '>=10'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@svgr/babel-plugin-add-jsx-attribute': 6.5.1_@babel+core@7.20.12 + '@svgr/babel-plugin-remove-jsx-attribute': 6.5.0_@babel+core@7.20.12 + '@svgr/babel-plugin-remove-jsx-empty-expression': 6.5.0_@babel+core@7.20.12 + '@svgr/babel-plugin-replace-jsx-attribute-value': 6.5.1_@babel+core@7.20.12 + '@svgr/babel-plugin-svg-dynamic-title': 6.5.1_@babel+core@7.20.12 + '@svgr/babel-plugin-svg-em-dimensions': 6.5.1_@babel+core@7.20.12 + '@svgr/babel-plugin-transform-react-native-svg': 6.5.1_@babel+core@7.20.12 + '@svgr/babel-plugin-transform-svg-component': 6.5.1_@babel+core@7.20.12 + dev: false + + /@svgr/core/6.5.1: + resolution: {integrity: sha512-/xdLSWxK5QkqG524ONSjvg3V/FkNyCv538OIBdQqPNaAta3AsXj/Bd2FbvR87yMbXO2hFSWiAe/Q6IkVPDw+mw==} + engines: {node: '>=10'} + dependencies: + '@babel/core': 7.20.12 + '@svgr/babel-preset': 6.5.1_@babel+core@7.20.12 + '@svgr/plugin-jsx': 6.5.1_@svgr+core@6.5.1 + camelcase: 6.3.0 + cosmiconfig: 7.0.1 + transitivePeerDependencies: + - supports-color + dev: false + + /@svgr/hast-util-to-babel-ast/6.5.1: + resolution: {integrity: sha512-1hnUxxjd83EAxbL4a0JDJoD3Dao3hmjvyvyEV8PzWmLK3B9m9NPlW7GKjFyoWE8nM7HnXzPcmmSyOW8yOddSXw==} + engines: {node: '>=10'} + dependencies: + '@babel/types': 7.20.7 + entities: 4.4.0 + dev: false + + /@svgr/plugin-jsx/6.5.1_@svgr+core@6.5.1: + resolution: {integrity: sha512-+UdQxI3jgtSjCykNSlEMuy1jSRQlGC7pqBCPvkG/2dATdWo082zHTTK3uhnAju2/6XpE6B5mZ3z4Z8Ns01S8Gw==} + engines: {node: '>=10'} + peerDependencies: + '@svgr/core': ^6.0.0 + dependencies: + '@babel/core': 7.20.12 + '@svgr/babel-preset': 6.5.1_@babel+core@7.20.12 + '@svgr/core': 6.5.1 + '@svgr/hast-util-to-babel-ast': 6.5.1 + svg-parser: 2.0.4 + transitivePeerDependencies: + - supports-color + dev: false + + /@svgr/plugin-svgo/6.5.1_@svgr+core@6.5.1: + resolution: {integrity: sha512-omvZKf8ixP9z6GWgwbtmP9qQMPX4ODXi+wzbVZgomNFsUIlHA1sf4fThdwTWSsZGgvGAG6yE+b/F5gWUkcZ/iQ==} + engines: {node: '>=10'} + peerDependencies: + '@svgr/core': '*' + dependencies: + '@svgr/core': 6.5.1 + cosmiconfig: 7.0.1 + deepmerge: 4.2.2 + svgo: 2.8.0 + dev: false + /@swc/helpers/0.4.12: resolution: {integrity: sha512-R6RmwS9Dld5lNvwKlPn62+piU+WDG1sMfsnfJioXCciyko/gZ0DQ4Mqglhq1iGU1nQ/RcGkAwfMH+elMSkJH3Q==} dependencies: @@ -2005,8 +2410,8 @@ packages: engines: {node: '>=10.13.0'} dev: false - /@types/chrome/0.0.197: - resolution: {integrity: sha512-m1NfS5bOjaypyqQfaX6CxmJodZVcvj5+Mt/K94EBHkflYjPNmXHAzbxfifdLMa0YM3PDyOxohoTS5ug/e6p5jA==} + /@types/chrome/0.0.202: + resolution: {integrity: sha512-Oc4daL9sFS+9MToVZPLMBxR7PxsEdod0b8wOY11lRr06GJp43MORvHeDyMD8QzeRGT6HI13oaYAe2PBgvALc4w==} dependencies: '@types/filesystem': 0.0.32 '@types/har-format': 1.2.9 @@ -2034,8 +2439,8 @@ packages: resolution: {integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==} dev: false - /@types/node/18.8.5: - resolution: {integrity: sha512-Bq7G3AErwe5A/Zki5fdD3O6+0zDChhg671NfPjtIcbtzDNZTv4NPKMRFr7gtYPG7y+B8uTiNK4Ngd9T0FTar6Q==} + /@types/node/18.11.9: + resolution: {integrity: sha512-CRpX21/kGdzjOpFsZSkcrXMGIBWMGNIHXXBVFSH+ggkftxg+XYP20TESbh+zFvFj3EQOl5byk0HTRn1IL6hbqg==} dev: true /@types/parse-json/4.0.0: @@ -2045,14 +2450,14 @@ packages: /@types/prop-types/15.7.5: resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==} - /@types/react-dom/18.0.6: - resolution: {integrity: sha512-/5OFZgfIPSwy+YuIBP/FgJnQnsxhZhjjrnxudMddeblOouIodEQ75X14Rr4wGSG/bknL+Omy9iWlLo1u/9GzAA==} + /@types/react-dom/18.0.9: + resolution: {integrity: sha512-qnVvHxASt/H7i+XG1U1xMiY5t+IHcPGUK7TDMDzom08xa7e86eCeKOiLZezwCKVxJn6NEiiy2ekgX8aQssjIKg==} dependencies: - '@types/react': 18.0.21 + '@types/react': 18.0.25 dev: true - /@types/react/18.0.21: - resolution: {integrity: sha512-7QUCOxvFgnD5Jk8ZKlUAhVcRj7GuJRjnjjiY/IUBWKgOlnvDvTMLD4RTF7NPyVmbRhNrbomZiOepg7M/2Kj1mA==} + /@types/react/18.0.25: + resolution: {integrity: sha512-xD6c0KDT4m7n9uD4ZHi02lzskaiqcBxf4zi+tXZY98a04wvc0hi/TcCPC2FOESZi51Nd7tlUeOJY8RofL799/g==} dependencies: '@types/prop-types': 15.7.5 '@types/scheduler': 0.16.2 @@ -2064,7 +2469,7 @@ packages: /@vue/compiler-core/3.2.45: resolution: {integrity: sha512-rcMj7H+PYe5wBV3iYeUgbCglC+pbpN8hBLTJvRiK2eKQiWqu+fG9F+8sW99JdL4LQi7Re178UOxn09puSXvn4A==} dependencies: - '@babel/parser': 7.19.4 + '@babel/parser': 7.20.13 '@vue/shared': 3.2.45 estree-walker: 2.0.2 source-map: 0.6.1 @@ -2080,7 +2485,7 @@ packages: /@vue/compiler-sfc/3.2.45: resolution: {integrity: sha512-1jXDuWah1ggsnSAOGsec8cFjT/K6TMZ0sPL3o3d84Ft2AYZi2jWJgRMjw4iaK0rBfA89L5gw427H4n1RZQBu6Q==} dependencies: - '@babel/parser': 7.19.4 + '@babel/parser': 7.20.13 '@vue/compiler-core': 3.2.45 '@vue/compiler-dom': 3.2.45 '@vue/compiler-ssr': 3.2.45 @@ -2102,7 +2507,7 @@ packages: /@vue/reactivity-transform/3.2.45: resolution: {integrity: sha512-BHVmzYAvM7vcU5WmuYqXpwaBHjsS8T63jlKGWVtHxAHIoMIlmaMyurUSEs1Zcg46M4AYT5MtB1U274/2aNzjJQ==} dependencies: - '@babel/parser': 7.19.4 + '@babel/parser': 7.20.13 '@vue/compiler-core': 3.2.45 '@vue/shared': 3.2.45 estree-walker: 2.0.2 @@ -2194,7 +2599,7 @@ packages: zip-stream: 4.1.0 dev: false - /aria-hidden/1.2.1_iapumuv4e6jcjznwuxpf4tt22e: + /aria-hidden/1.2.1_fan5qbzahqtxlm5dzefqlqx5ia: resolution: {integrity: sha512-PN344VAf9j1EAi+jyVHOJ8XidQdPVssGco39eNcsGdM4wcsILtxrKLkbuiMfLWYROK1FjRQasMWCBttrhjnr6A==} engines: {node: '>=10'} peerDependencies: @@ -2204,7 +2609,7 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.0.21 + '@types/react': 18.0.25 react: 18.2.0 tslib: 2.4.0 dev: false @@ -2367,6 +2772,11 @@ packages: tslib: 2.4.0 dev: false + /camelcase/6.3.0: + resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} + engines: {node: '>=10'} + dev: false + /caniuse-lite/1.0.30001419: resolution: {integrity: sha512-aFO1r+g6R7TW+PNQxKzjITwLOyDhVRLjW0LcwS/HCZGUUKTGNp9+IwLC4xyDSZBygVL/mxaFR3HIV6wEKQuSzw==} @@ -2684,6 +3094,11 @@ packages: engines: {node: '>=4.0.0'} dev: false + /deepmerge/4.2.2: + resolution: {integrity: sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==} + engines: {node: '>=0.10.0'} + dev: false + /defaults/1.0.4: resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} dependencies: @@ -2747,13 +3162,13 @@ packages: tslib: 2.4.0 dev: false - /dotenv-expand/5.1.0: - resolution: {integrity: sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==} + /dotenv-expand/10.0.0: + resolution: {integrity: sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==} + engines: {node: '>=12'} dev: false - /dotenv-expand/9.0.0: - resolution: {integrity: sha512-uW8Hrhp5ammm9x7kBLR6jDfujgaDarNA02tprvZdyrJ7MpdzD1KyrIHG4l+YoC2fJ2UcdFdNWNWIjt+sexBHJw==} - engines: {node: '>=12'} + /dotenv-expand/5.1.0: + resolution: {integrity: sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==} dev: false /dotenv/16.0.3: @@ -2792,6 +3207,11 @@ packages: engines: {node: '>=0.12'} dev: false + /entities/4.4.0: + resolution: {integrity: sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA==} + engines: {node: '>=0.12'} + dev: false + /errno/0.1.8: resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==} hasBin: true @@ -3017,6 +3437,36 @@ packages: esbuild-windows-arm64: 0.15.18 dev: false + /esbuild/0.17.3: + resolution: {integrity: sha512-9n3AsBRe6sIyOc6kmoXg2ypCLgf3eZSraWFRpnkto+svt8cZNuKTkb1bhQcitBcvIqjNiK7K0J3KPmwGSfkA8g==} + engines: {node: '>=12'} + hasBin: true + requiresBuild: true + optionalDependencies: + '@esbuild/android-arm': 0.17.3 + '@esbuild/android-arm64': 0.17.3 + '@esbuild/android-x64': 0.17.3 + '@esbuild/darwin-arm64': 0.17.3 + '@esbuild/darwin-x64': 0.17.3 + '@esbuild/freebsd-arm64': 0.17.3 + '@esbuild/freebsd-x64': 0.17.3 + '@esbuild/linux-arm': 0.17.3 + '@esbuild/linux-arm64': 0.17.3 + '@esbuild/linux-ia32': 0.17.3 + '@esbuild/linux-loong64': 0.17.3 + '@esbuild/linux-mips64el': 0.17.3 + '@esbuild/linux-ppc64': 0.17.3 + '@esbuild/linux-riscv64': 0.17.3 + '@esbuild/linux-s390x': 0.17.3 + '@esbuild/linux-x64': 0.17.3 + '@esbuild/netbsd-x64': 0.17.3 + '@esbuild/openbsd-x64': 0.17.3 + '@esbuild/sunos-x64': 0.17.3 + '@esbuild/win32-arm64': 0.17.3 + '@esbuild/win32-ia32': 0.17.3 + '@esbuild/win32-x64': 0.17.3 + dev: false + /escalade/3.1.1: resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} engines: {node: '>=6'} @@ -3196,10 +3646,6 @@ packages: type-fest: 0.20.2 dev: false - /globalyzer/0.1.0: - resolution: {integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==} - dev: false - /globby/11.1.0: resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} engines: {node: '>=10'} @@ -3212,10 +3658,6 @@ packages: slash: 3.0.0 dev: false - /globrex/0.1.2: - resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==} - dev: false - /got/12.5.3: resolution: {integrity: sha512-8wKnb9MGU8IPGRIo+/ukTy9XLJBwDiCpIf5TVzQ9Cpol50eMTpBq2GAuDsuDIz7hTYmZgMgC1e9ydr6kSDWs3w==} engines: {node: '>=14.16'} @@ -3541,8 +3983,8 @@ packages: ts-toolbelt: 9.6.0 dev: false - /json5/2.2.1: - resolution: {integrity: sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==} + /json5/2.2.3: + resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} engines: {node: '>=6'} hasBin: true @@ -3579,8 +4021,8 @@ packages: - supports-color dev: false - /lightningcss-darwin-arm64/1.17.1: - resolution: {integrity: sha512-YTAHEy4XlzI3sMbUVjbPi9P7+N7lGcgl2JhCZhiQdRAEKnZLQch8kb5601sgESxdGXjgei7JZFqi/vVEk81wYg==} + /lightningcss-darwin-arm64/1.18.0: + resolution: {integrity: sha512-OqjydwtiNPgdH1ByIjA1YzqvDG/OMR6L3LPN6wRl1729LB0y4Mik7L06kmZaTb+pvUHr+NmDd2KCwnlrQ4zO3w==} engines: {node: '>= 12.0.0'} cpu: [arm64] os: [darwin] @@ -3588,8 +4030,8 @@ packages: dev: false optional: true - /lightningcss-darwin-x64/1.17.1: - resolution: {integrity: sha512-UhXPUS2+yTTf5sXwUV0+8QY2x0bPGLgC/uhcknWSQMqWn1zGty4fFvH04D7f7ij0ujwSuN+Q0HtU7lgmMrPz0A==} + /lightningcss-darwin-x64/1.18.0: + resolution: {integrity: sha512-mNiuPHj89/JHZmJMp+5H8EZSt6EL5DZRWJ31O6k3DrLLnRIQjXuXdDdN8kP7LoIkeWI5xvyD60CsReJm+YWYAw==} engines: {node: '>= 12.0.0'} cpu: [x64] os: [darwin] @@ -3597,8 +4039,8 @@ packages: dev: false optional: true - /lightningcss-linux-arm-gnueabihf/1.17.1: - resolution: {integrity: sha512-alUZumuznB6K/9yZ0zuZkODXUm8uRnvs9t0CL46CXN16Y2h4gOx5ahUCMlelUb7inZEsgJIoepgLsJzBUrSsBw==} + /lightningcss-linux-arm-gnueabihf/1.18.0: + resolution: {integrity: sha512-S+25JjI6601HiAVoTDXW6SqH+E94a+FHA7WQqseyNHunOgVWKcAkNEc2LJvVxgwTq6z41sDIb9/M3Z9wa9lk4A==} engines: {node: '>= 12.0.0'} cpu: [arm] os: [linux] @@ -3606,8 +4048,8 @@ packages: dev: false optional: true - /lightningcss-linux-arm64-gnu/1.17.1: - resolution: {integrity: sha512-/1XaH2cOjDt+ivmgfmVFUYCA0MtfNWwtC4P8qVi53zEQ7P8euyyZ1ynykZOyKXW9Q0DzrwcLTh6+hxVLcbtGBg==} + /lightningcss-linux-arm64-gnu/1.18.0: + resolution: {integrity: sha512-JSqh4+21dCgBecIQUet35dtE4PhhSEMyqe3y0ZNQrAJQ5kyUPSQHiw81WXnPJcOSTTpG0TyMLiC8K//+BsFGQA==} engines: {node: '>= 12.0.0'} cpu: [arm64] os: [linux] @@ -3615,8 +4057,8 @@ packages: dev: false optional: true - /lightningcss-linux-arm64-musl/1.17.1: - resolution: {integrity: sha512-/IgE7lYWFHCCQFTMIwtt+fXLcVOha8rcrNze1JYGPWNorO6NBc6MJo5u5cwn5qMMSz9fZCCDIlBBU4mGwjQszQ==} + /lightningcss-linux-arm64-musl/1.18.0: + resolution: {integrity: sha512-2FWHa8iUhShnZnqhn2wfIcK5adJat9hAAaX7etNsoXJymlliDIOFuBQEsba2KBAZSM4QqfQtvRdR7m8i0I7ybQ==} engines: {node: '>= 12.0.0'} cpu: [arm64] os: [linux] @@ -3624,8 +4066,8 @@ packages: dev: false optional: true - /lightningcss-linux-x64-gnu/1.17.1: - resolution: {integrity: sha512-OyE802IAp4DB9vZrHlOyWunbHLM9dN08tJIKN/HhzzLKIHizubOWX6NMzUXMZLsaUrYwVAHHdyEA+712p8mMzA==} + /lightningcss-linux-x64-gnu/1.18.0: + resolution: {integrity: sha512-plCPGQJtDZHcLVKVRLnQVF2XRsIC32WvuJhQ7fJ7F6BV98b/VZX0OlX05qUaOESD9dCDHjYSfxsgcvOKgCWh7A==} engines: {node: '>= 12.0.0'} cpu: [x64] os: [linux] @@ -3633,8 +4075,8 @@ packages: dev: false optional: true - /lightningcss-linux-x64-musl/1.17.1: - resolution: {integrity: sha512-ydwGgV3Usba5P53RAOqCA9MsRsbb8jFIEVhf7/BXFjpKNoIQyijVTXhwIgQr/oGwUNOHfgQ3F8ruiUjX/p2YKw==} + /lightningcss-linux-x64-musl/1.18.0: + resolution: {integrity: sha512-na+BGtVU6fpZvOHKhnlA0XHeibkT3/46nj6vLluG3kzdJYoBKU6dIl7DSOk++8jv4ybZyFJ0aOFMMSc8g2h58A==} engines: {node: '>= 12.0.0'} cpu: [x64] os: [linux] @@ -3642,8 +4084,8 @@ packages: dev: false optional: true - /lightningcss-win32-x64-msvc/1.17.1: - resolution: {integrity: sha512-Ngqtx9NazaiAOk71XWwSsqgAuwYF+8PO6UYsoU7hAukdrSS98kwaBMEDw1igeIiZy1XD/4kh5KVnkjNf7ZOxVQ==} + /lightningcss-win32-x64-msvc/1.18.0: + resolution: {integrity: sha512-5qeAH4RMNy2yMNEl7e5TI6upt/7xD2ZpHWH4RkT8iJ7/6POS5mjHbXWUO9Q1hhDhqkdzGa76uAdMzEouIeCyNw==} engines: {node: '>= 12.0.0'} cpu: [x64] os: [win32] @@ -3651,20 +4093,20 @@ packages: dev: false optional: true - /lightningcss/1.17.1: - resolution: {integrity: sha512-DwwM/YYqGwLLP3he41wzDXT/m+8jdEZ80i9ViQNLRgyhey3Vm6N7XHn+4o3PY6wSnVT23WLuaROIpbpIVTNOjg==} + /lightningcss/1.18.0: + resolution: {integrity: sha512-uk10tNxi5fhZqU93vtYiQgx/8a9f0Kvtj5AXIm+VlOXY+t/DWDmCZWJEkZJmmALgvbS6aAW8or+Kq85eJ6TDTw==} engines: {node: '>= 12.0.0'} dependencies: detect-libc: 1.0.3 optionalDependencies: - lightningcss-darwin-arm64: 1.17.1 - lightningcss-darwin-x64: 1.17.1 - lightningcss-linux-arm-gnueabihf: 1.17.1 - lightningcss-linux-arm64-gnu: 1.17.1 - lightningcss-linux-arm64-musl: 1.17.1 - lightningcss-linux-x64-gnu: 1.17.1 - lightningcss-linux-x64-musl: 1.17.1 - lightningcss-win32-x64-msvc: 1.17.1 + lightningcss-darwin-arm64: 1.18.0 + lightningcss-darwin-x64: 1.18.0 + lightningcss-linux-arm-gnueabihf: 1.18.0 + lightningcss-linux-arm64-gnu: 1.18.0 + lightningcss-linux-arm64-musl: 1.18.0 + lightningcss-linux-x64-gnu: 1.18.0 + lightningcss-linux-x64-musl: 1.18.0 + lightningcss-win32-x64-msvc: 1.18.0 dev: false /lilconfig/2.0.6: @@ -3761,6 +4203,11 @@ packages: engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dev: false + /lru-cache/5.1.1: + resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} + dependencies: + yallist: 3.1.1 + /lru-cache/6.0.0: resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} engines: {node: '>=10'} @@ -4134,39 +4581,41 @@ packages: engines: {node: '>= 6'} dev: false - /plasmo/0.60.2_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-sWI6eU5gdHyRR5SaC1ZlMvbGci7b+nNaVX0e9dJpBuAM9tr2sPqf3iBoRZ1XT+RsjD1Ma05rdeGMSa+ClPkQdA==} + /plasmo/0.63.0_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-FPpWgZOVCeRYEJRrpsO1HmV4bGFeplgdxtQIQP/0qSNncHFwxHKoZn8xpxBnjZ1SluaUm6FR/P8BSQJwmF3i+g==} hasBin: true dependencies: '@expo/spawn-async': 1.7.0 - '@parcel/core': 2.8.2 - '@parcel/fs': 2.8.2_@parcel+core@2.8.2 - '@parcel/package-manager': 2.8.2_@parcel+core@2.8.2 - '@parcel/watcher': 2.0.7 + '@parcel/core': 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/watcher': 2.1.0 '@plasmohq/init': 0.5.3 - '@plasmohq/parcel-config': 0.26.3_biqbaboplfbrettd7655fr4n2y + '@plasmohq/parcel-config': 0.30.1_biqbaboplfbrettd7655fr4n2y archiver: 5.3.1 buffer: 6.0.3 chalk: 5.2.0 change-case: 4.1.2 dotenv: 16.0.3 - dotenv-expand: 9.0.0 + dotenv-expand: 10.0.0 events: 3.3.0 + fast-glob: 3.2.12 fflate: 0.7.4 get-port: 6.1.2 got: 12.5.3 + ignore: 5.2.4 inquirer: 9.1.4 is-path-inside: 4.0.0 + json5: 2.2.3 mnemonic-id: 3.2.7 node-object-hash: 2.3.10 package-json: 8.1.0 process: 0.11.10 semver: 7.3.8 - sharp: 0.31.2 + sharp: 0.31.1 tempy: 3.0.0 - tiny-glob: 0.2.9 typescript: 4.9.4 - ws: 8.11.0 + ws: 8.12.0 transitivePeerDependencies: - '@swc/core' - arc-templates @@ -4388,7 +4837,7 @@ packages: engines: {node: '>=0.10.0'} dev: false - /react-textarea-autosize/8.3.4_iapumuv4e6jcjznwuxpf4tt22e: + /react-textarea-autosize/8.3.4_fan5qbzahqtxlm5dzefqlqx5ia: resolution: {integrity: sha512-CdtmP8Dc19xL8/R6sWvtknD/eCXkQr30dtvC4VmGInhRsfF8X/ihXCq6+9l9qbxmKRiq407/7z5fxE7cVWQNgQ==} engines: {node: '>=10'} peerDependencies: @@ -4397,7 +4846,7 @@ packages: '@babel/runtime': 7.19.4 react: 18.2.0 use-composed-ref: 1.3.0_react@18.2.0 - use-latest: 1.2.1_iapumuv4e6jcjznwuxpf4tt22e + use-latest: 1.2.1_fan5qbzahqtxlm5dzefqlqx5ia transitivePeerDependencies: - '@types/react' dev: false @@ -4587,8 +5036,8 @@ packages: upper-case-first: 2.0.2 dev: false - /sharp/0.31.2: - resolution: {integrity: sha512-DUdNVEXgS5A97cTagSLIIp8dUZ/lZtk78iNVZgHdHbx1qnQR7JAHY0BnXnwwH39Iw+VKhO08CTYhIg0p98vQ5Q==} + /sharp/0.31.1: + resolution: {integrity: sha512-GR8M1wBwOiFKLkm9JPun27OQnNRZdHfSf9VwcdZX6UrRmM1/XnOrLFTF0GAil+y/YK4E6qcM/ugxs80QirsHxg==} engines: {node: '>=14.15.0'} requiresBuild: true dependencies: @@ -4682,6 +5131,11 @@ packages: deprecated: Please use @jridgewell/sourcemap-codec instead dev: false + /srcset/4.0.0: + resolution: {integrity: sha512-wvLeHgcVHKO8Sc/H/5lkGreJQVeYMm9rlmt8PuR1xE31rIuXhuzznUUqAt8MqLhB3MqJdFzlNAfpcWnxiFUcPw==} + engines: {node: '>=12'} + dev: false + /stable/0.1.8: resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==} deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility' @@ -4760,6 +5214,10 @@ packages: engines: {node: '>= 0.4'} dev: false + /svg-parser/2.0.4: + resolution: {integrity: sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==} + dev: false + /svgo/2.8.0: resolution: {integrity: sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==} engines: {node: '>=10.13.0'} @@ -4809,8 +5267,8 @@ packages: unique-string: 3.0.0 dev: false - /terser/5.15.1: - resolution: {integrity: sha512-K1faMUvpm/FBxjBXud0LWVAGxmvoPbZbfTCYbSgaaYQaIXI3/TdI7a7ZGA73Zrou6Q8Zmz3oeUTsp/dj+ag2Xw==} + /terser/5.16.1: + resolution: {integrity: sha512-xvQfyfA1ayT0qdK47zskQgRZeWLoOQ8JQ6mIgRGVNwZKdQMU+5FkCBjmv4QjcrTzyZquRw2FVtlJSRUmMKQslw==} engines: {node: '>=10'} hasBin: true dependencies: @@ -4841,13 +5299,6 @@ packages: resolution: {integrity: sha512-qsdtZH+vMoCARQtyod4imc2nIJwg9Cc7lPRrw9CzF8ZKR0khdr8+2nX80PBhET3tcyTtJDxAffGh2rXH4tyU8A==} dev: false - /tiny-glob/0.2.9: - resolution: {integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==} - dependencies: - globalyzer: 0.1.0 - globrex: 0.1.2 - dev: false - /tmp/0.0.33: resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} engines: {node: '>=0.6.0'} @@ -4957,8 +5408,8 @@ packages: engines: {node: '>=14.16'} dev: false - /typescript/4.8.4: - resolution: {integrity: sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ==} + /typescript/4.9.3: + resolution: {integrity: sha512-CIfGzTelbKNEnLpLdGFgdyKhG23CKdKgQPOBc+OUNrkJ2vr+KSzsSV5kq5iWhEQbok+quxgGzrAtGWCyU7tHnA==} engines: {node: '>=4.2.0'} hasBin: true dev: true @@ -5006,7 +5457,7 @@ packages: react: 18.2.0 dev: false - /use-isomorphic-layout-effect/1.1.2_iapumuv4e6jcjznwuxpf4tt22e: + /use-isomorphic-layout-effect/1.1.2_fan5qbzahqtxlm5dzefqlqx5ia: resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==} peerDependencies: '@types/react': '*' @@ -5015,11 +5466,11 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.0.21 + '@types/react': 18.0.25 react: 18.2.0 dev: false - /use-latest/1.2.1_iapumuv4e6jcjznwuxpf4tt22e: + /use-latest/1.2.1_fan5qbzahqtxlm5dzefqlqx5ia: resolution: {integrity: sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw==} peerDependencies: '@types/react': '*' @@ -5028,9 +5479,9 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.0.21 + '@types/react': 18.0.25 react: 18.2.0 - use-isomorphic-layout-effect: 1.1.2_iapumuv4e6jcjznwuxpf4tt22e + use-isomorphic-layout-effect: 1.1.2_fan5qbzahqtxlm5dzefqlqx5ia dev: false /use-sync-external-store/1.2.0_react@18.2.0: @@ -5097,12 +5548,12 @@ packages: resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} dev: false - /ws/8.11.0: - resolution: {integrity: sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==} + /ws/8.12.0: + resolution: {integrity: sha512-kU62emKIdKVeEIOIKVegvqpXMSTAMLJozpHZaJNDYqBjzlSYXQGviYwN1osDLJ9av68qHd4a2oSjd7yD4pacig==} engines: {node: '>=10.0.0'} peerDependencies: bufferutil: ^4.0.1 - utf-8-validate: ^5.0.2 + utf-8-validate: '>=5.0.2' peerDependenciesMeta: bufferutil: optional: true @@ -5114,6 +5565,9 @@ packages: resolution: {integrity: sha512-/eyHVRJQCirEkSZ1agRSCwriMhwlyUcFkXD5TPVSLP+IPzjsqMVzZwdoczLp1SoQU0R3dxz1RpIK+4YNQbCVOA==} dev: false + /yallist/3.1.1: + resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} + /yallist/4.0.0: resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} dev: false