diff --git a/.github/workflows/replace-repository-name.sh b/.github/workflows/replace-repository-name.sh
index 8ba40f9..978d174 100644
--- a/.github/workflows/replace-repository-name.sh
+++ b/.github/workflows/replace-repository-name.sh
@@ -7,5 +7,7 @@ TargetName=$4
sed -i "s/$SourceOwner\/$SourceName/$TargetOwner\/$TargetName/ig" \
$(grep -i $SourceOwner/$SourceName -rl . --exclude-dir=.git --exclude-dir=node_modules)
+sed -i "s/$SourceOwner/$TargetOwner/ig" \
+ $(grep -i $SourceOwner -rl . --exclude-dir=.git --exclude-dir=node_modules)
sed -i "s/$SourceName/$TargetName/ig" \
$(grep -i $SourceName -rl . --exclude-dir=.git --exclude-dir=node_modules)
diff --git a/.github/workflows/update-meta.yml b/.github/workflows/update-meta.yml
new file mode 100644
index 0000000..77371fa
--- /dev/null
+++ b/.github/workflows/update-meta.yml
@@ -0,0 +1,36 @@
+name: CI & CD
+on:
+ push:
+ branches:
+ - main
+ paths:
+ - package.json
+jobs:
+ Update-Meta:
+ runs-on: ubuntu-latest
+ permissions:
+ contents: write
+ steps:
+ - uses: actions/checkout@v4
+
+ - uses: actions/setup-node@v4
+ with:
+ node-version: 20
+
+ - name: Set NPM metadata
+ env:
+ # "Administration" repository permissions (write),
+ # https://docs.github.com/en/rest/repos/repos?apiVersion=2022-11-28#replace-all-repository-topics
+ GH_TOKEN: ${{ secrets.GH_ADMIN_TOKEN || github.token }}
+ REPOSITORY: ${{ github.repository }}
+ run: |
+ DESCRIPTION=$(node -p "JSON.parse(require('fs').readFileSync('package.json')).description || ''")
+ HOME_PAGE=$(node -p "JSON.parse(require('fs').readFileSync('package.json')).homepage || ''")
+ TOPICS=$(node -p "JSON.parse(require('fs').readFileSync('package.json')).keywords?.join().toLowerCase() || ''")
+
+ [[ "$DESCRIPTION" ]] && gh repo edit "$REPOSITORY" --description "$DESCRIPTION"
+ [[ "$HOME_PAGE" ]] && gh repo edit "$REPOSITORY" --homepage "$HOME_PAGE"
+ [[ "$TOPICS" ]] && {
+ gh api --method PUT "repos/$REPOSITORY/topics" -f "names[]"
+ gh repo edit "$REPOSITORY" --add-topic "$TOPICS"
+ } || true
diff --git a/eslint.config.mjs b/eslint.config.mjs
index a81481f..3d09d96 100644
--- a/eslint.config.mjs
+++ b/eslint.config.mjs
@@ -14,15 +14,13 @@ export default tsEslint.config(
{
plugins: {
'@typescript-eslint': tsEslint.plugin,
- // https://github.com/jsx-eslint/eslint-plugin-react/issues/3699
+ // @ts-expect-error https://github.com/jsx-eslint/eslint-plugin-react/issues/3699
react: fixupPluginRules(reactPlugin),
'simple-import-sort': simpleImportSortPlugin
}
},
- {
- // config with just ignores is the replacement for `.eslintignore`
- ignores: ['**/node_modules/**', '**/dist/**', '**/.parcel-cache/**']
- },
+ // config with just ignores is the replacement for `.eslintignore`
+ { ignores: ['**/node_modules/**', '**/dist/**', '**/.parcel-cache/**'] },
// extends ...
eslint.configs.recommended,
@@ -31,11 +29,7 @@ export default tsEslint.config(
// base config
{
languageOptions: {
- globals: {
- ...globals.es2020,
- ...globals.browser,
- ...globals.node
- },
+ globals: { ...globals.es2022, ...globals.browser, ...globals.node },
parserOptions: {
projectService: true,
tsconfigRootDir,
@@ -45,18 +39,19 @@ export default tsEslint.config(
rules: {
'simple-import-sort/exports': 'error',
'simple-import-sort/imports': 'error',
+ '@typescript-eslint/no-unused-vars': 'warn',
+ '@typescript-eslint/no-explicit-any': 'warn',
+ '@typescript-eslint/no-empty-object-type': 'off',
+ '@typescript-eslint/no-unsafe-declaration-merging': 'warn',
'react/jsx-no-target-blank': 'warn',
'react/jsx-sort-props': [
'error',
{
reservedFirst: true,
- shorthandLast: true,
callbacksLast: true,
noSortAlphabetically: true
}
- ],
- '@typescript-eslint/no-empty-object-type': 'off',
- '@typescript-eslint/no-unsafe-declaration-merging': 'warn'
+ ]
}
},
{
diff --git a/package.json b/package.json
index 4d15af1..3aa139a 100644
--- a/package.json
+++ b/package.json
@@ -20,15 +20,15 @@
"browser-unhandled-rejection": "^1.0.2",
"cell-router": "^3.0.0-rc.8",
"classnames": "^2.5.1",
- "dom-renderer": "^2.3.0",
+ "dom-renderer": "^2.4.1",
"iterable-observer": "^1.1.0",
- "mobx": "^6.13.3",
+ "mobx": "^6.13.5",
"web-cell": "^3.0.0",
- "web-utility": "^4.4.0"
+ "web-utility": "^4.4.2"
},
"devDependencies": {
- "@eslint/compat": "^1.1.1",
- "@eslint/js": "^9.11.1",
+ "@eslint/compat": "^1.2.2",
+ "@eslint/js": "^9.14.0",
"@parcel/config-default": "~2.12.0",
"@parcel/packager-raw-url": "~2.12.0",
"@parcel/transformer-less": "~2.12.0",
@@ -36,22 +36,21 @@
"@parcel/transformer-webmanifest": "~2.12.0",
"@softonus/prettier-plugin-duplicate-remover": "^1.0.1",
"@types/eslint-config-prettier": "^6.11.3",
- "@types/eslint__js": "^8.42.3",
- "@types/node": "^20.16.10",
- "eslint": "^9.11.1",
+ "@types/node": "^20.17.6",
+ "eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
- "eslint-plugin-react": "^7.37.0",
+ "eslint-plugin-react": "^7.37.2",
"eslint-plugin-simple-import-sort": "^12.1.1",
- "globals": "^15.9.0",
+ "globals": "^15.12.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"parcel": "~2.12.0",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prettier-plugin-css-order": "^2.1.2",
- "typescript": "~5.6.2",
- "typescript-eslint": "^8.7.0",
- "workbox-cli": "^7.1.0"
+ "typescript": "~5.6.3",
+ "typescript-eslint": "^8.13.0",
+ "workbox-cli": "^7.3.0"
},
"prettier": {
"singleQuote": true,
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index a96b013..b64a47e 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -10,41 +10,41 @@ importers:
dependencies:
boot-cell:
specifier: ^2.0.0-beta.29
- version: 2.0.0-beta.29(iterable-observer@1.1.0)(typescript@5.6.2)
+ version: 2.0.0-beta.29(iterable-observer@1.1.0)(typescript@5.6.3)
browser-unhandled-rejection:
specifier: ^1.0.2
version: 1.0.2
cell-router:
specifier: ^3.0.0-rc.8
- version: 3.0.0-rc.8(typescript@5.6.2)
+ version: 3.0.0-rc.8(typescript@5.6.3)
classnames:
specifier: ^2.5.1
version: 2.5.1
dom-renderer:
- specifier: ^2.3.0
- version: 2.3.0(typescript@5.6.2)
+ specifier: ^2.4.1
+ version: 2.4.1(typescript@5.6.3)
iterable-observer:
specifier: ^1.1.0
version: 1.1.0
mobx:
- specifier: ^6.13.3
- version: 6.13.3
+ specifier: ^6.13.5
+ version: 6.13.5
web-cell:
specifier: ^3.0.0
- version: 3.0.0(typescript@5.6.2)
+ version: 3.0.0(typescript@5.6.3)
web-utility:
- specifier: ^4.4.0
- version: 4.4.0(typescript@5.6.2)
+ specifier: ^4.4.2
+ version: 4.4.2(typescript@5.6.3)
devDependencies:
'@eslint/compat':
- specifier: ^1.1.1
- version: 1.1.1
+ specifier: ^1.2.2
+ version: 1.2.2(eslint@9.14.0)
'@eslint/js':
- specifier: ^9.11.1
- version: 9.11.1
+ specifier: ^9.14.0
+ version: 9.14.0
'@parcel/config-default':
specifier: ~2.12.0
- version: 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))(@swc/helpers@0.5.13)(postcss@8.4.47)(terser@5.34.1)(typescript@5.6.2)
+ version: 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))(@swc/helpers@0.5.13)(postcss@8.4.47)(terser@5.34.1)(typescript@5.6.3)
'@parcel/packager-raw-url':
specifier: ~2.12.0
version: 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
@@ -53,7 +53,7 @@ importers:
version: 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
'@parcel/transformer-typescript-tsc':
specifier: ~2.12.0
- version: 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))(typescript@5.6.2)
+ version: 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))(typescript@5.6.3)
'@parcel/transformer-webmanifest':
specifier: ~2.12.0
version: 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
@@ -63,27 +63,24 @@ importers:
'@types/eslint-config-prettier':
specifier: ^6.11.3
version: 6.11.3
- '@types/eslint__js':
- specifier: ^8.42.3
- version: 8.42.3
'@types/node':
- specifier: ^20.16.10
- version: 20.16.10
+ specifier: ^20.17.6
+ version: 20.17.6
eslint:
- specifier: ^9.11.1
- version: 9.11.1
+ specifier: ^9.14.0
+ version: 9.14.0
eslint-config-prettier:
specifier: ^9.1.0
- version: 9.1.0(eslint@9.11.1)
+ version: 9.1.0(eslint@9.14.0)
eslint-plugin-react:
- specifier: ^7.37.0
- version: 7.37.0(eslint@9.11.1)
+ specifier: ^7.37.2
+ version: 7.37.2(eslint@9.14.0)
eslint-plugin-simple-import-sort:
specifier: ^12.1.1
- version: 12.1.1(eslint@9.11.1)
+ version: 12.1.1(eslint@9.14.0)
globals:
- specifier: ^15.9.0
- version: 15.9.0
+ specifier: ^15.12.0
+ version: 15.12.0
husky:
specifier: ^9.1.6
version: 9.1.6
@@ -92,7 +89,7 @@ importers:
version: 15.2.10
parcel:
specifier: ~2.12.0
- version: 2.12.0(@swc/helpers@0.5.13)(postcss@8.4.47)(terser@5.34.1)(typescript@5.6.2)
+ version: 2.12.0(@swc/helpers@0.5.13)(postcss@8.4.47)(terser@5.34.1)(typescript@5.6.3)
postcss:
specifier: ^8.4.47
version: 8.4.47
@@ -103,14 +100,14 @@ importers:
specifier: ^2.1.2
version: 2.1.2(postcss@8.4.47)(prettier@3.3.3)
typescript:
- specifier: ~5.6.2
- version: 5.6.2
+ specifier: ~5.6.3
+ version: 5.6.3
typescript-eslint:
- specifier: ^8.7.0
- version: 8.7.0(eslint@9.11.1)(typescript@5.6.2)
+ specifier: ^8.13.0
+ version: 8.13.0(eslint@9.14.0)(typescript@5.6.3)
workbox-cli:
- specifier: ^7.1.0
- version: 7.1.0
+ specifier: ^7.3.0
+ version: 7.3.0
packages:
@@ -706,24 +703,33 @@ packages:
resolution: {integrity: sha512-m4DVN9ZqskZoLU5GlWZadwDnYo3vAEydiUayB9widCl9ffWx2IvPnp6n3on5rJmziJSw9Bv+Z3ChDVdMwXCY8Q==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
- '@eslint/compat@1.1.1':
- resolution: {integrity: sha512-lpHyRyplhGPL5mGEh6M9O5nnKk0Gz4bFI+Zu6tKlPpDUN7XshWvH9C/px4UVm87IAANE0W81CEsNGbS1KlzXpA==}
+ '@eslint-community/regexpp@4.12.1':
+ resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
+ engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
+
+ '@eslint/compat@1.2.2':
+ resolution: {integrity: sha512-jhgiIrsw+tRfcBQ4BFl2C3vCrIUw2trCY0cnDvGZpwTtKCEDmZhAtMfrEUP/KpnwM6PrO0T+Ltm+ccW74olG3Q==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ eslint: ^9.10.0
+ peerDependenciesMeta:
+ eslint:
+ optional: true
'@eslint/config-array@0.18.0':
resolution: {integrity: sha512-fTxvnS1sRMu3+JjXwJG0j/i4RT9u4qJ+lqS/yCGap4lH4zZGzQ7tu+xZqQmcMZq5OBZDL4QRxQzRjkWcGt8IVw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/core@0.6.0':
- resolution: {integrity: sha512-8I2Q8ykA4J0x0o7cg67FPVnehcqWTBehu/lmY+bolPFHGjh49YzGBMXTvpqVgEbBdvNCSxj6iFgiIyHzf03lzg==}
+ '@eslint/core@0.7.0':
+ resolution: {integrity: sha512-xp5Jirz5DyPYlPiKat8jaq0EmYvDXKKpzTbxXMpT9eqlRJkRKIz9AGMdlvYjih+im+QlhWrpvVjl8IPC/lHlUw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/eslintrc@3.1.0':
resolution: {integrity: sha512-4Bfj15dVJdoy3RfZmmo86RK1Fwzn6SstsvK9JS+BaVKqC6QQQQyXekNaC+g+LKNgkQ+2VhGAzm6hO40AhMR3zQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/js@9.11.1':
- resolution: {integrity: sha512-/qu+TWz8WwPWc7/HcIJKi+c+MOm46GdVaSlTTQcaqaL53+GsoA6MxWp5PtTx48qbSP7ylM1Kn7nhvkugfJvRSA==}
+ '@eslint/js@9.14.0':
+ resolution: {integrity: sha512-pFoEtFWCPyDOl+C6Ift+wC7Ro89otjigCf5vcuWqWgqNSQbRrpjSvdeE6ofLz4dHmyxD5f7gIdGT4+p36L6Twg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/object-schema@2.1.4':
@@ -734,6 +740,14 @@ packages:
resolution: {integrity: sha512-vH9PiIMMwvhCx31Af3HiGzsVNULDbyVkHXwlemn/B0TFj/00ho3y55efXrUZTfQipxoHC5u4xq6zblww1zm1Ig==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ '@humanfs/core@0.19.1':
+ resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
+ engines: {node: '>=18.18.0'}
+
+ '@humanfs/node@0.16.6':
+ resolution: {integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==}
+ engines: {node: '>=18.18.0'}
+
'@humanwhocodes/module-importer@1.0.1':
resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
engines: {node: '>=12.22'}
@@ -742,6 +756,10 @@ packages:
resolution: {integrity: sha512-d2CGZR2o7fS6sWB7DG/3a95bGKQyHMACZ5aW8qGkkqQpUoZV6C0X7Pc7l4ZNMZkfNBf4VWNe9E1jRsf0G146Ew==}
engines: {node: '>=18.18'}
+ '@humanwhocodes/retry@0.4.1':
+ resolution: {integrity: sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==}
+ engines: {node: '>=18.18'}
+
'@jridgewell/gen-mapping@0.3.5':
resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}
engines: {node: '>=6.0.0'}
@@ -1315,12 +1333,6 @@ packages:
'@types/eslint-config-prettier@6.11.3':
resolution: {integrity: sha512-3wXCiM8croUnhg9LdtZUJQwNcQYGWxxdOWDjPe1ykCqJFPVpzAKfs/2dgSoCtAvdPeaponcWPI7mPcGGp9dkKQ==}
- '@types/eslint@9.6.1':
- resolution: {integrity: sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==}
-
- '@types/eslint__js@8.42.3':
- resolution: {integrity: sha512-alfG737uhmPdnvkrLdZLcEKJ/B8s9Y4hrZ+YAdzUeoArBlSUERA2E87ROfOaS4jd/C45fzOoZzidLc1IPwLqOw==}
-
'@types/estree@0.0.39':
resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==}
@@ -1336,8 +1348,8 @@ packages:
'@types/minimist@1.2.5':
resolution: {integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==}
- '@types/node@20.16.10':
- resolution: {integrity: sha512-vQUKgWTjEIRFCvK6CyriPH3MZYiYlNy0fKiEYHWbcoWLEgs4opurGGKlebrTLqdSMIbXImH6XExNiIyNUv3WpA==}
+ '@types/node@20.17.6':
+ resolution: {integrity: sha512-VEI7OdvK2wP7XHnsuXbAJnEpEkF6NjSN45QJlL4VGqZSXsnicpesdTWsg9RISeSdYd3yeRj/y3k5KGjUXYnFwQ==}
'@types/normalize-package-data@2.4.4':
resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==}
@@ -1351,8 +1363,8 @@ packages:
'@types/trusted-types@2.0.7':
resolution: {integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==}
- '@typescript-eslint/eslint-plugin@8.7.0':
- resolution: {integrity: sha512-RIHOoznhA3CCfSTFiB6kBGLQtB/sox+pJ6jeFu6FxJvqL8qRxq/FfGO/UhsGgQM9oGdXkV4xUgli+dt26biB6A==}
+ '@typescript-eslint/eslint-plugin@8.13.0':
+ resolution: {integrity: sha512-nQtBLiZYMUPkclSeC3id+x4uVd1SGtHuElTxL++SfP47jR0zfkZBJHc+gL4qPsgTuypz0k8Y2GheaDYn6Gy3rg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
'@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
@@ -1362,8 +1374,8 @@ packages:
typescript:
optional: true
- '@typescript-eslint/parser@8.7.0':
- resolution: {integrity: sha512-lN0btVpj2unxHlNYLI//BQ7nzbMJYBVQX5+pbNXvGYazdlgYonMn4AhhHifQ+J4fGRYA/m1DjaQjx+fDetqBOQ==}
+ '@typescript-eslint/parser@8.13.0':
+ resolution: {integrity: sha512-w0xp+xGg8u/nONcGw1UXAr6cjCPU1w0XVyBs6Zqaj5eLmxkKQAByTdV/uGgNN5tVvN/kKpoQlP2cL7R+ajZZIQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
@@ -1372,12 +1384,12 @@ packages:
typescript:
optional: true
- '@typescript-eslint/scope-manager@8.7.0':
- resolution: {integrity: sha512-87rC0k3ZlDOuz82zzXRtQ7Akv3GKhHs0ti4YcbAJtaomllXoSO8hi7Ix3ccEvCd824dy9aIX+j3d2UMAfCtVpg==}
+ '@typescript-eslint/scope-manager@8.13.0':
+ resolution: {integrity: sha512-XsGWww0odcUT0gJoBZ1DeulY1+jkaHUciUq4jKNv4cpInbvvrtDoyBH9rE/n2V29wQJPk8iCH1wipra9BhmiMA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/type-utils@8.7.0':
- resolution: {integrity: sha512-tl0N0Mj3hMSkEYhLkjREp54OSb/FI6qyCzfiiclvJvOqre6hsZTGSnHtmFLDU8TIM62G7ygEa1bI08lcuRwEnQ==}
+ '@typescript-eslint/type-utils@8.13.0':
+ resolution: {integrity: sha512-Rqnn6xXTR316fP4D2pohZenJnp+NwQ1mo7/JM+J1LWZENSLkJI8ID8QNtlvFeb0HnFSK94D6q0cnMX6SbE5/vA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '*'
@@ -1385,12 +1397,12 @@ packages:
typescript:
optional: true
- '@typescript-eslint/types@8.7.0':
- resolution: {integrity: sha512-LLt4BLHFwSfASHSF2K29SZ+ZCsbQOM+LuarPjRUuHm+Qd09hSe3GCeaQbcCr+Mik+0QFRmep/FyZBO6fJ64U3w==}
+ '@typescript-eslint/types@8.13.0':
+ resolution: {integrity: sha512-4cyFErJetFLckcThRUFdReWJjVsPCqyBlJTi6IDEpc1GWCIIZRFxVppjWLIMcQhNGhdWJJRYFHpHoDWvMlDzng==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/typescript-estree@8.7.0':
- resolution: {integrity: sha512-MC8nmcGHsmfAKxwnluTQpNqceniT8SteVwd2voYlmiSWGOtjvGXdPl17dYu2797GVscK30Z04WRM28CrKS9WOg==}
+ '@typescript-eslint/typescript-estree@8.13.0':
+ resolution: {integrity: sha512-v7SCIGmVsRK2Cy/LTLGN22uea6SaUIlpBcO/gnMGT/7zPtxp90bphcGf4fyrCQl3ZtiBKqVTG32hb668oIYy1g==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '*'
@@ -1398,14 +1410,14 @@ packages:
typescript:
optional: true
- '@typescript-eslint/utils@8.7.0':
- resolution: {integrity: sha512-ZbdUdwsl2X/s3CiyAu3gOlfQzpbuG3nTWKPoIvAu1pu5r8viiJvv2NPN2AqArL35NCYtw/lrPPfM4gxrMLNLPw==}
+ '@typescript-eslint/utils@8.13.0':
+ resolution: {integrity: sha512-A1EeYOND6Uv250nybnLZapeXpYMl8tkzYUxqmoKAWnI4sei3ihf2XdZVd+vVOmHGcp3t+P7yRrNsyyiXTvShFQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
- '@typescript-eslint/visitor-keys@8.7.0':
- resolution: {integrity: sha512-b1tx0orFCCh/THWPQa2ZwWzvOeyzzp36vkJYOpVg0u8UVOIsfVrnuC9FqAw9gRKn+rG2VmWQ/zDJZzkxUnj/XQ==}
+ '@typescript-eslint/visitor-keys@8.13.0':
+ resolution: {integrity: sha512-7N/+lztJqH4Mrf0lb10R/CbI1EaAMMGyF5y0oJvFoAhafwgiRA7TXyd8TFn8FC8k5y2dTsYogg238qavRGNnlw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
abortcontroller-polyfill@1.7.5:
@@ -1421,6 +1433,11 @@ packages:
engines: {node: '>=0.4.0'}
hasBin: true
+ acorn@8.14.0:
+ resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==}
+ engines: {node: '>=0.4.0'}
+ hasBin: true
+
ajv@6.12.6:
resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
@@ -1835,8 +1852,10 @@ packages:
resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==}
engines: {node: '>=0.10.0'}
- dom-renderer@2.3.0:
- resolution: {integrity: sha512-HSYhONmJqFc/wsRmQIm+Lw2DGoVn3T99t0rh3A9/bZvlm82THWM+QYjSC7SyM8EIybvhjPt94LoXnxlyai3ncA==}
+ dom-renderer@2.4.1:
+ resolution: {integrity: sha512-kqoMCRKFPJOpHyL/qwcOGTB9v/L+yVcsmDX1Ck+BoaRQi4eOMEnAoPCDbGlO00N0vyYC8AdzfMZ4bCQ87VNdrQ==}
+ peerDependencies:
+ happy-dom: ^14
dom-serializer@1.4.1:
resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==}
@@ -1919,8 +1938,8 @@ packages:
resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
engines: {node: '>= 0.4'}
- es-iterator-helpers@1.0.19:
- resolution: {integrity: sha512-zoMwbCcH5hwUkKJkT8kDIBZSz9I6mVG//+lDCinLCGov4+r7NIy0ld8o03M0cJxl2spVf6ESYVS6/gpIfq1FFw==}
+ es-iterator-helpers@1.2.0:
+ resolution: {integrity: sha512-tpxqxncxnpw3c93u8n3VOzACmRFoVmWJqbWXvX/JfKbkhBw1oslgPrUfeSt2psuqyEJFD6N/9lg5i7bsKpoq+Q==}
engines: {node: '>= 0.4'}
es-object-atoms@1.0.0:
@@ -1960,8 +1979,8 @@ packages:
peerDependencies:
eslint: '>=7.0.0'
- eslint-plugin-react@7.37.0:
- resolution: {integrity: sha512-IHBePmfWH5lKhJnJ7WB1V+v/GolbB0rjS8XYVCSQCZKaQCAUhMoVoOEn1Ef8Z8Wf0a7l8KTJvuZg5/e4qrZ6nA==}
+ eslint-plugin-react@7.37.2:
+ resolution: {integrity: sha512-EsTAnj9fLVr/GZleBLFbj/sSuXeWmp1eXIN60ceYnZveqEaUCyW4X+Vh4WTdUhCkW4xutXYqTXCUSyqD4rB75w==}
engines: {node: '>=4'}
peerDependencies:
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7
@@ -1971,20 +1990,20 @@ packages:
peerDependencies:
eslint: '>=5.0.0'
- eslint-scope@8.1.0:
- resolution: {integrity: sha512-14dSvlhaVhKKsa9Fx1l8A17s7ah7Ef7wCakJ10LYk6+GYmP9yDti2oq2SEwcyndt6knfcZyhyxwY3i9yL78EQw==}
+ eslint-scope@8.2.0:
+ resolution: {integrity: sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
eslint-visitor-keys@3.4.3:
resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- eslint-visitor-keys@4.1.0:
- resolution: {integrity: sha512-Q7lok0mqMUSf5a/AdAZkA5a/gHcO6snwQClVNNvFKCAVlxXucdU8pKydU5ZVZjBx5xr37vGbFFWtLQYreLzrZg==}
+ eslint-visitor-keys@4.2.0:
+ resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- eslint@9.11.1:
- resolution: {integrity: sha512-MobhYKIoAO1s1e4VUrgx1l1Sk2JBR/Gqjjgw8+mfgoLE2xwsHur4gdfTxyTgShrhvdVFTaJSgMiQBl1jv/AWxg==}
+ eslint@9.14.0:
+ resolution: {integrity: sha512-c2FHsVBr87lnUtjP4Yhvk4yEhKrQavGafRA/Se1ouse8PfbfC/Qh9Mxa00yWsZRlqeUB9raXip0aiiUZkgnr9g==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
hasBin: true
peerDependencies:
@@ -1993,8 +2012,8 @@ packages:
jiti:
optional: true
- espree@10.2.0:
- resolution: {integrity: sha512-upbkBJbckcCNBDBDXEbuhjbP68n+scUd3k/U2EkyM9nw+I/jPiL4cLF/Al06CF96wRltFda16sxDFrxsI1v0/g==}
+ espree@10.3.0:
+ resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
esquery@1.6.0:
@@ -2167,8 +2186,8 @@ packages:
resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
engines: {node: '>=18'}
- globals@15.9.0:
- resolution: {integrity: sha512-SmSKyLLKFbSr6rptvP8izbyxJL4ILwqO9Jg23UA0sDlGlu58V59D1//I3vlc0KJphVdUR7vMjHIplYnzBxorQA==}
+ globals@15.12.0:
+ resolution: {integrity: sha512-1+gLErljJFhbOVyaetcwJiJ4+eLe45S2E7P5UiZ9xGfeq3ATQf5DOv9G7MH3gGbKQLkzmNh2DxfZwLdw+j6oTQ==}
engines: {node: '>=18'}
globalthis@1.0.4:
@@ -2521,8 +2540,9 @@ packages:
iterable-observer@1.1.0:
resolution: {integrity: sha512-3H7N2wUtGpz5A/y4MFaP15sXxQyBTgnmq/LFMUbOErj+V9VgJY53Hd23mj33YEDap6qF22OEoV+19ATh+3+sQg==}
- iterator.prototype@1.1.2:
- resolution: {integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==}
+ iterator.prototype@1.1.3:
+ resolution: {integrity: sha512-FW5iMbeQ6rBGm/oKgzq2aW4KvAGpxPzYES8N4g4xNXUKpL1mclMvOe+76AcLDTvD+Ze+sOpVhgdAQEKF4L9iGQ==}
+ engines: {node: '>= 0.4'}
jake@10.9.2:
resolution: {integrity: sha512-2P4SQ0HrLQ+fw6llpLnOaGAvN2Zu6778SJMrCUwns4fOoG9ayrTiZk3VV8sCPkVZF8ab0zksVpS8FDY5pRCNBA==}
@@ -2816,8 +2836,8 @@ packages:
minimist@1.2.8:
resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
- mobx@6.13.3:
- resolution: {integrity: sha512-YtAS+ZMbdpbHYUU4ESht3na8KiX11KuMT1yOiKtbKlQ0GZkHDYPKyEw/Tdp7h7aHyLrTWj2TBaSNJ6bCr638iQ==}
+ mobx@6.13.5:
+ resolution: {integrity: sha512-/HTWzW2s8J1Gqt+WmUj5Y0mddZk+LInejADc79NJadrWla3rHzmRHki/mnEUH1AvOmbNTZ1BRbKxr8DSgfdjMA==}
ms@2.1.3:
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
@@ -3491,6 +3511,9 @@ packages:
tslib@2.7.0:
resolution: {integrity: sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==}
+ tslib@2.8.1:
+ resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
+
type-check@0.4.0:
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
engines: {node: '>= 0.8.0'}
@@ -3538,8 +3561,8 @@ packages:
typedarray-to-buffer@3.1.5:
resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==}
- typescript-eslint@8.7.0:
- resolution: {integrity: sha512-nEHbEYJyHwsuf7c3V3RS7Saq+1+la3i0ieR3qP0yjqWSzVmh8Drp47uOl9LjbPANac4S7EFSqvcYIKXUUwIfIQ==}
+ typescript-eslint@8.13.0:
+ resolution: {integrity: sha512-vIMpDRJrQd70au2G8w34mPps0ezFSPMEX4pXkTzUkrNbRX+36ais2ksGWN0esZL+ZMaFJEneOBHzCgSqle7DHw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '*'
@@ -3547,8 +3570,8 @@ packages:
typescript:
optional: true
- typescript@5.6.2:
- resolution: {integrity: sha512-NW8ByodCSNCwZeghjN3o+JX5OFH0Ojg6sadjEKY4huZ52TqbJTJnDo5+Tw98lSy63NZvi4n+ez5m2u5d4PkZyw==}
+ typescript@5.6.3:
+ resolution: {integrity: sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==}
engines: {node: '>=14.17'}
hasBin: true
@@ -3633,8 +3656,8 @@ packages:
resolution: {integrity: sha512-0zJXHRAYEjM2tUfZ2DiSOHAa2aw1tisnnhU3ufD57R8iefL+DcdJyRBRyJpG+NUimDgbTI/lH+gAE1PAvV3Cgw==}
engines: {node: '>= 8'}
- web-utility@4.4.0:
- resolution: {integrity: sha512-Bw0RcX5jBNuw+FQ2NKkkegNK07czjXoUtDNpRO+2ueNNv3FL8GsTTU27eM+17bzFPpYqukAdkCLJf5ZAYiDZtg==}
+ web-utility@4.4.2:
+ resolution: {integrity: sha512-mpUh9jQ4SGSRKehfQKsvMMItzeRb5SPvYbbyksvWy5HPVsKh8VOS6ijVD0PiwaFGuv729Dg+oXzWyiibSZVCBw==}
peerDependencies:
typescript: '>=4.1'
@@ -3672,59 +3695,59 @@ packages:
resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
engines: {node: '>=0.10.0'}
- workbox-background-sync@7.1.0:
- resolution: {integrity: sha512-rMbgrzueVWDFcEq1610YyDW71z0oAXLfdRHRQcKw4SGihkfOK0JUEvqWHFwA6rJ+6TClnMIn7KQI5PNN1XQXwQ==}
+ workbox-background-sync@7.3.0:
+ resolution: {integrity: sha512-PCSk3eK7Mxeuyatb22pcSx9dlgWNv3+M8PqPaYDokks8Y5/FX4soaOqj3yhAZr5k6Q5JWTOMYgaJBpbw11G9Eg==}
- workbox-broadcast-update@7.1.0:
- resolution: {integrity: sha512-O36hIfhjej/c5ar95pO67k1GQw0/bw5tKP7CERNgK+JdxBANQhDmIuOXZTNvwb2IHBx9hj2kxvcDyRIh5nzOgQ==}
+ workbox-broadcast-update@7.3.0:
+ resolution: {integrity: sha512-T9/F5VEdJVhwmrIAE+E/kq5at2OY6+OXXgOWQevnubal6sO92Gjo24v6dCVwQiclAF5NS3hlmsifRrpQzZCdUA==}
- workbox-build@7.1.0:
- resolution: {integrity: sha512-F6R94XAxjB2j4ETMkP1EXKfjECOtDmyvt0vz3BzgWJMI68TNSXIVNkgatwUKBlPGOfy9n2F/4voYRNAhEvPJNg==}
+ workbox-build@7.3.0:
+ resolution: {integrity: sha512-JGL6vZTPlxnlqZRhR/K/msqg3wKP+m0wfEUVosK7gsYzSgeIxvZLi1ViJJzVL7CEeI8r7rGFV973RiEqkP3lWQ==}
engines: {node: '>=16.0.0'}
- workbox-cacheable-response@7.1.0:
- resolution: {integrity: sha512-iwsLBll8Hvua3xCuBB9h92+/e0wdsmSVgR2ZlvcfjepZWwhd3osumQB3x9o7flj+FehtWM2VHbZn8UJeBXXo6Q==}
+ workbox-cacheable-response@7.3.0:
+ resolution: {integrity: sha512-eAFERIg6J2LuyELhLlmeRcJFa5e16Mj8kL2yCDbhWE+HUun9skRQrGIFVUagqWj4DMaaPSMWfAolM7XZZxNmxA==}
- workbox-cli@7.1.0:
- resolution: {integrity: sha512-/2PUBPOrXjuyo7AqnFem+WW+cMF3EQ4Tt0tUkJL4eZlnsePUkc6QQ7d4U3v4Hn65DsMrAT++YxM2BPIxPuJGkA==}
+ workbox-cli@7.3.0:
+ resolution: {integrity: sha512-dB2Yz4s3PWcb2daHLUQC3Q0P+WGeoOKR6+LQqZ7ciWOHMhaWj7sWmomELa4IMVlNat53EF8MXOpXx2Ggd1o7+w==}
engines: {node: '>=16.0.0'}
hasBin: true
- workbox-core@7.1.0:
- resolution: {integrity: sha512-5KB4KOY8rtL31nEF7BfvU7FMzKT4B5TkbYa2tzkS+Peqj0gayMT9SytSFtNzlrvMaWgv6y/yvP9C0IbpFjV30Q==}
+ workbox-core@7.3.0:
+ resolution: {integrity: sha512-Z+mYrErfh4t3zi7NVTvOuACB0A/jA3bgxUN3PwtAVHvfEsZxV9Iju580VEETug3zYJRc0Dmii/aixI/Uxj8fmw==}
- workbox-expiration@7.1.0:
- resolution: {integrity: sha512-m5DcMY+A63rJlPTbbBNtpJ20i3enkyOtSgYfv/l8h+D6YbbNiA0zKEkCUaMsdDlxggla1oOfRkyqTvl5Ni5KQQ==}
+ workbox-expiration@7.3.0:
+ resolution: {integrity: sha512-lpnSSLp2BM+K6bgFCWc5bS1LR5pAwDWbcKt1iL87/eTSJRdLdAwGQznZE+1czLgn/X05YChsrEegTNxjM067vQ==}
- workbox-google-analytics@7.1.0:
- resolution: {integrity: sha512-FvE53kBQHfVTcZyczeBVRexhh7JTkyQ8HAvbVY6mXd2n2A7Oyz/9fIwnY406ZcDhvE4NFfKGjW56N4gBiqkrew==}
+ workbox-google-analytics@7.3.0:
+ resolution: {integrity: sha512-ii/tSfFdhjLHZ2BrYgFNTrb/yk04pw2hasgbM70jpZfLk0vdJAXgaiMAWsoE+wfJDNWoZmBYY0hMVI0v5wWDbg==}
- workbox-navigation-preload@7.1.0:
- resolution: {integrity: sha512-4wyAbo0vNI/X0uWNJhCMKxnPanNyhybsReMGN9QUpaePLTiDpKxPqFxl4oUmBNddPwIXug01eTSLVIFXimRG/A==}
+ workbox-navigation-preload@7.3.0:
+ resolution: {integrity: sha512-fTJzogmFaTv4bShZ6aA7Bfj4Cewaq5rp30qcxl2iYM45YD79rKIhvzNHiFj1P+u5ZZldroqhASXwwoyusnr2cg==}
- workbox-precaching@7.1.0:
- resolution: {integrity: sha512-LyxzQts+UEpgtmfnolo0hHdNjoB7EoRWcF7EDslt+lQGd0lW4iTvvSe3v5JiIckQSB5KTW5xiCqjFviRKPj1zA==}
+ workbox-precaching@7.3.0:
+ resolution: {integrity: sha512-ckp/3t0msgXclVAYaNndAGeAoWQUv7Rwc4fdhWL69CCAb2UHo3Cef0KIUctqfQj1p8h6aGyz3w8Cy3Ihq9OmIw==}
- workbox-range-requests@7.1.0:
- resolution: {integrity: sha512-m7+O4EHolNs5yb/79CrnwPR/g/PRzMFYEdo01LqwixVnc/sbzNSvKz0d04OE3aMRel1CwAAZQheRsqGDwATgPQ==}
+ workbox-range-requests@7.3.0:
+ resolution: {integrity: sha512-EyFmM1KpDzzAouNF3+EWa15yDEenwxoeXu9bgxOEYnFfCxns7eAxA9WSSaVd8kujFFt3eIbShNqa4hLQNFvmVQ==}
- workbox-recipes@7.1.0:
- resolution: {integrity: sha512-NRrk4ycFN9BHXJB6WrKiRX3W3w75YNrNrzSX9cEZgFB5ubeGoO8s/SDmOYVrFYp9HMw6sh1Pm3eAY/1gVS8YLg==}
+ workbox-recipes@7.3.0:
+ resolution: {integrity: sha512-BJro/MpuW35I/zjZQBcoxsctgeB+kyb2JAP5EB3EYzePg8wDGoQuUdyYQS+CheTb+GhqJeWmVs3QxLI8EBP1sg==}
- workbox-routing@7.1.0:
- resolution: {integrity: sha512-oOYk+kLriUY2QyHkIilxUlVcFqwduLJB7oRZIENbqPGeBP/3TWHYNNdmGNhz1dvKuw7aqvJ7CQxn27/jprlTdg==}
+ workbox-routing@7.3.0:
+ resolution: {integrity: sha512-ZUlysUVn5ZUzMOmQN3bqu+gK98vNfgX/gSTZ127izJg/pMMy4LryAthnYtjuqcjkN4HEAx1mdgxNiKJMZQM76A==}
- workbox-strategies@7.1.0:
- resolution: {integrity: sha512-/UracPiGhUNehGjRm/tLUQ+9PtWmCbRufWtV0tNrALuf+HZ4F7cmObSEK+E4/Bx1p8Syx2tM+pkIrvtyetdlew==}
+ workbox-strategies@7.3.0:
+ resolution: {integrity: sha512-tmZydug+qzDFATwX7QiEL5Hdf7FrkhjaF9db1CbB39sDmEZJg3l9ayDvPxy8Y18C3Y66Nrr9kkN1f/RlkDgllg==}
- workbox-streams@7.1.0:
- resolution: {integrity: sha512-WyHAVxRXBMfysM8ORwiZnI98wvGWTVAq/lOyBjf00pXFvG0mNaVz4Ji+u+fKa/mf1i2SnTfikoYKto4ihHeS6w==}
+ workbox-streams@7.3.0:
+ resolution: {integrity: sha512-SZnXucyg8x2Y61VGtDjKPO5EgPUG5NDn/v86WYHX+9ZqvAsGOytP0Jxp1bl663YUuMoXSAtsGLL+byHzEuMRpw==}
- workbox-sw@7.1.0:
- resolution: {integrity: sha512-Hml/9+/njUXBglv3dtZ9WBKHI235AQJyLBV1G7EFmh4/mUdSQuXui80RtjDeVRrXnm/6QWgRUEHG3/YBVbxtsA==}
+ workbox-sw@7.3.0:
+ resolution: {integrity: sha512-aCUyoAZU9IZtH05mn0ACUpyHzPs0lMeJimAYkQkBsOWiqaJLgusfDCR+yllkPkFRxWpZKF8vSvgHYeG7LwhlmA==}
- workbox-window@7.1.0:
- resolution: {integrity: sha512-ZHeROyqR+AS5UPzholQRDttLFqGMwP0Np8MKWAdyxsDETxq3qOAyXvqessc3GniohG6e0mAqSQyKOHmT8zPF7g==}
+ workbox-window@7.3.0:
+ resolution: {integrity: sha512-qW8PDy16OV1UBaUNGlTVcepzrlzyzNW/ZJvFQQs2j2TzGsg6IKjcpZC1RSquqQnTOafl5pCj5bGfAHlCjOOjdA==}
wrap-ansi@9.0.0:
resolution: {integrity: sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==}
@@ -4531,14 +4554,18 @@ snapshots:
'@babel/helper-validator-identifier': 7.24.7
to-fast-properties: 2.0.0
- '@eslint-community/eslint-utils@4.4.0(eslint@9.11.1)':
+ '@eslint-community/eslint-utils@4.4.0(eslint@9.14.0)':
dependencies:
- eslint: 9.11.1
+ eslint: 9.14.0
eslint-visitor-keys: 3.4.3
'@eslint-community/regexpp@4.11.1': {}
- '@eslint/compat@1.1.1': {}
+ '@eslint-community/regexpp@4.12.1': {}
+
+ '@eslint/compat@1.2.2(eslint@9.14.0)':
+ optionalDependencies:
+ eslint: 9.14.0
'@eslint/config-array@0.18.0':
dependencies:
@@ -4548,13 +4575,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@eslint/core@0.6.0': {}
+ '@eslint/core@0.7.0': {}
'@eslint/eslintrc@3.1.0':
dependencies:
ajv: 6.12.6
debug: 4.3.7
- espree: 10.2.0
+ espree: 10.3.0
globals: 14.0.0
ignore: 5.3.2
import-fresh: 3.3.0
@@ -4564,7 +4591,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@eslint/js@9.11.1': {}
+ '@eslint/js@9.14.0': {}
'@eslint/object-schema@2.1.4': {}
@@ -4572,10 +4599,19 @@ snapshots:
dependencies:
levn: 0.4.1
+ '@humanfs/core@0.19.1': {}
+
+ '@humanfs/node@0.16.6':
+ dependencies:
+ '@humanfs/core': 0.19.1
+ '@humanwhocodes/retry': 0.3.0
+
'@humanwhocodes/module-importer@1.0.1': {}
'@humanwhocodes/retry@0.3.0': {}
+ '@humanwhocodes/retry@0.4.1': {}
+
'@jridgewell/gen-mapping@0.3.5':
dependencies:
'@jridgewell/set-array': 1.2.1
@@ -4687,14 +4723,14 @@ snapshots:
transitivePeerDependencies:
- '@parcel/core'
- '@parcel/config-default@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))(@swc/helpers@0.5.13)(postcss@8.4.47)(terser@5.34.1)(typescript@5.6.2)':
+ '@parcel/config-default@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))(@swc/helpers@0.5.13)(postcss@8.4.47)(terser@5.34.1)(typescript@5.6.3)':
dependencies:
'@parcel/bundler-default': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
'@parcel/compressor-raw': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
'@parcel/core': 2.12.0(@swc/helpers@0.5.13)
'@parcel/namer-default': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
'@parcel/optimizer-css': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
- '@parcel/optimizer-htmlnano': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))(postcss@8.4.47)(terser@5.34.1)(typescript@5.6.2)
+ '@parcel/optimizer-htmlnano': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))(postcss@8.4.47)(terser@5.34.1)(typescript@5.6.3)
'@parcel/optimizer-image': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
'@parcel/optimizer-svgo': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
'@parcel/optimizer-swc': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))(@swc/helpers@0.5.13)
@@ -4825,10 +4861,10 @@ snapshots:
transitivePeerDependencies:
- '@parcel/core'
- '@parcel/optimizer-htmlnano@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))(postcss@8.4.47)(terser@5.34.1)(typescript@5.6.2)':
+ '@parcel/optimizer-htmlnano@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))(postcss@8.4.47)(terser@5.34.1)(typescript@5.6.3)':
dependencies:
'@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
- htmlnano: 2.1.1(postcss@8.4.47)(svgo@2.8.0)(terser@5.34.1)(typescript@5.6.2)
+ htmlnano: 2.1.1(postcss@8.4.47)(svgo@2.8.0)(terser@5.34.1)(typescript@5.6.3)
nullthrows: 1.1.1
posthtml: 0.16.6
svgo: 2.8.0
@@ -5163,12 +5199,12 @@ snapshots:
transitivePeerDependencies:
- '@parcel/core'
- '@parcel/transformer-typescript-tsc@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))(typescript@5.6.2)':
+ '@parcel/transformer-typescript-tsc@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))(typescript@5.6.3)':
dependencies:
'@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
'@parcel/source-map': 2.1.1
- '@parcel/ts-utils': 2.12.0(typescript@5.6.2)
- typescript: 5.6.2
+ '@parcel/ts-utils': 2.12.0(typescript@5.6.3)
+ typescript: 5.6.3
transitivePeerDependencies:
- '@parcel/core'
@@ -5181,10 +5217,10 @@ snapshots:
transitivePeerDependencies:
- '@parcel/core'
- '@parcel/ts-utils@2.12.0(typescript@5.6.2)':
+ '@parcel/ts-utils@2.12.0(typescript@5.6.3)':
dependencies:
nullthrows: 1.1.1
- typescript: 5.6.2
+ typescript: 5.6.3
'@parcel/types@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))(@swc/helpers@0.5.13)':
dependencies:
@@ -5402,15 +5438,6 @@ snapshots:
'@types/eslint-config-prettier@6.11.3': {}
- '@types/eslint@9.6.1':
- dependencies:
- '@types/estree': 1.0.6
- '@types/json-schema': 7.0.15
-
- '@types/eslint__js@8.42.3':
- dependencies:
- '@types/eslint': 9.6.1
-
'@types/estree@0.0.39': {}
'@types/estree@1.0.6': {}
@@ -5419,11 +5446,11 @@ snapshots:
'@types/keyv@3.1.4':
dependencies:
- '@types/node': 20.16.10
+ '@types/node': 20.17.6
'@types/minimist@1.2.5': {}
- '@types/node@20.16.10':
+ '@types/node@20.17.6':
dependencies:
undici-types: 6.19.8
@@ -5433,99 +5460,101 @@ snapshots:
'@types/responselike@1.0.3':
dependencies:
- '@types/node': 20.16.10
+ '@types/node': 20.17.6
'@types/trusted-types@2.0.7': {}
- '@typescript-eslint/eslint-plugin@8.7.0(@typescript-eslint/parser@8.7.0(eslint@9.11.1)(typescript@5.6.2))(eslint@9.11.1)(typescript@5.6.2)':
+ '@typescript-eslint/eslint-plugin@8.13.0(@typescript-eslint/parser@8.13.0(eslint@9.14.0)(typescript@5.6.3))(eslint@9.14.0)(typescript@5.6.3)':
dependencies:
'@eslint-community/regexpp': 4.11.1
- '@typescript-eslint/parser': 8.7.0(eslint@9.11.1)(typescript@5.6.2)
- '@typescript-eslint/scope-manager': 8.7.0
- '@typescript-eslint/type-utils': 8.7.0(eslint@9.11.1)(typescript@5.6.2)
- '@typescript-eslint/utils': 8.7.0(eslint@9.11.1)(typescript@5.6.2)
- '@typescript-eslint/visitor-keys': 8.7.0
- eslint: 9.11.1
+ '@typescript-eslint/parser': 8.13.0(eslint@9.14.0)(typescript@5.6.3)
+ '@typescript-eslint/scope-manager': 8.13.0
+ '@typescript-eslint/type-utils': 8.13.0(eslint@9.14.0)(typescript@5.6.3)
+ '@typescript-eslint/utils': 8.13.0(eslint@9.14.0)(typescript@5.6.3)
+ '@typescript-eslint/visitor-keys': 8.13.0
+ eslint: 9.14.0
graphemer: 1.4.0
ignore: 5.3.2
natural-compare: 1.4.0
- ts-api-utils: 1.3.0(typescript@5.6.2)
+ ts-api-utils: 1.3.0(typescript@5.6.3)
optionalDependencies:
- typescript: 5.6.2
+ typescript: 5.6.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@8.7.0(eslint@9.11.1)(typescript@5.6.2)':
+ '@typescript-eslint/parser@8.13.0(eslint@9.14.0)(typescript@5.6.3)':
dependencies:
- '@typescript-eslint/scope-manager': 8.7.0
- '@typescript-eslint/types': 8.7.0
- '@typescript-eslint/typescript-estree': 8.7.0(typescript@5.6.2)
- '@typescript-eslint/visitor-keys': 8.7.0
+ '@typescript-eslint/scope-manager': 8.13.0
+ '@typescript-eslint/types': 8.13.0
+ '@typescript-eslint/typescript-estree': 8.13.0(typescript@5.6.3)
+ '@typescript-eslint/visitor-keys': 8.13.0
debug: 4.3.7
- eslint: 9.11.1
+ eslint: 9.14.0
optionalDependencies:
- typescript: 5.6.2
+ typescript: 5.6.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/scope-manager@8.7.0':
+ '@typescript-eslint/scope-manager@8.13.0':
dependencies:
- '@typescript-eslint/types': 8.7.0
- '@typescript-eslint/visitor-keys': 8.7.0
+ '@typescript-eslint/types': 8.13.0
+ '@typescript-eslint/visitor-keys': 8.13.0
- '@typescript-eslint/type-utils@8.7.0(eslint@9.11.1)(typescript@5.6.2)':
+ '@typescript-eslint/type-utils@8.13.0(eslint@9.14.0)(typescript@5.6.3)':
dependencies:
- '@typescript-eslint/typescript-estree': 8.7.0(typescript@5.6.2)
- '@typescript-eslint/utils': 8.7.0(eslint@9.11.1)(typescript@5.6.2)
+ '@typescript-eslint/typescript-estree': 8.13.0(typescript@5.6.3)
+ '@typescript-eslint/utils': 8.13.0(eslint@9.14.0)(typescript@5.6.3)
debug: 4.3.7
- ts-api-utils: 1.3.0(typescript@5.6.2)
+ ts-api-utils: 1.3.0(typescript@5.6.3)
optionalDependencies:
- typescript: 5.6.2
+ typescript: 5.6.3
transitivePeerDependencies:
- eslint
- supports-color
- '@typescript-eslint/types@8.7.0': {}
+ '@typescript-eslint/types@8.13.0': {}
- '@typescript-eslint/typescript-estree@8.7.0(typescript@5.6.2)':
+ '@typescript-eslint/typescript-estree@8.13.0(typescript@5.6.3)':
dependencies:
- '@typescript-eslint/types': 8.7.0
- '@typescript-eslint/visitor-keys': 8.7.0
+ '@typescript-eslint/types': 8.13.0
+ '@typescript-eslint/visitor-keys': 8.13.0
debug: 4.3.7
fast-glob: 3.3.2
is-glob: 4.0.3
minimatch: 9.0.5
semver: 7.6.3
- ts-api-utils: 1.3.0(typescript@5.6.2)
+ ts-api-utils: 1.3.0(typescript@5.6.3)
optionalDependencies:
- typescript: 5.6.2
+ typescript: 5.6.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@8.7.0(eslint@9.11.1)(typescript@5.6.2)':
+ '@typescript-eslint/utils@8.13.0(eslint@9.14.0)(typescript@5.6.3)':
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.1)
- '@typescript-eslint/scope-manager': 8.7.0
- '@typescript-eslint/types': 8.7.0
- '@typescript-eslint/typescript-estree': 8.7.0(typescript@5.6.2)
- eslint: 9.11.1
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.14.0)
+ '@typescript-eslint/scope-manager': 8.13.0
+ '@typescript-eslint/types': 8.13.0
+ '@typescript-eslint/typescript-estree': 8.13.0(typescript@5.6.3)
+ eslint: 9.14.0
transitivePeerDependencies:
- supports-color
- typescript
- '@typescript-eslint/visitor-keys@8.7.0':
+ '@typescript-eslint/visitor-keys@8.13.0':
dependencies:
- '@typescript-eslint/types': 8.7.0
+ '@typescript-eslint/types': 8.13.0
eslint-visitor-keys: 3.4.3
abortcontroller-polyfill@1.7.5: {}
- acorn-jsx@5.3.2(acorn@8.12.1):
+ acorn-jsx@5.3.2(acorn@8.14.0):
dependencies:
- acorn: 8.12.1
+ acorn: 8.14.0
acorn@8.12.1: {}
+ acorn@8.14.0: {}
+
ajv@6.12.6:
dependencies:
fast-deep-equal: 3.1.3
@@ -5681,19 +5710,20 @@ snapshots:
boolbase@1.0.0: {}
- boot-cell@2.0.0-beta.29(iterable-observer@1.1.0)(typescript@5.6.2):
+ boot-cell@2.0.0-beta.29(iterable-observer@1.1.0)(typescript@5.6.3):
dependencies:
'@swc/helpers': 0.5.13
classnames: 2.5.1
- dom-renderer: 2.3.0(typescript@5.6.2)
+ dom-renderer: 2.4.1(typescript@5.6.3)
iterable-observer: 1.1.0
- mobx: 6.13.3
+ mobx: 6.13.5
regenerator-runtime: 0.14.1
- web-cell: 3.0.0(typescript@5.6.2)
- web-utility: 4.4.0(typescript@5.6.2)
+ web-cell: 3.0.0(typescript@5.6.3)
+ web-utility: 4.4.2(typescript@5.6.3)
transitivePeerDependencies:
- '@webcomponents/webcomponentsjs'
- core-js
+ - happy-dom
- jsdom
- typescript
@@ -5767,18 +5797,19 @@ snapshots:
caniuse-lite@1.0.30001664: {}
- cell-router@3.0.0-rc.8(typescript@5.6.2):
+ cell-router@3.0.0-rc.8(typescript@5.6.3):
dependencies:
'@swc/helpers': 0.5.13
- dom-renderer: 2.3.0(typescript@5.6.2)
- mobx: 6.13.3
+ dom-renderer: 2.4.1(typescript@5.6.3)
+ mobx: 6.13.5
regenerator-runtime: 0.14.1
urlpattern-polyfill: 10.0.0
- web-cell: 3.0.0(typescript@5.6.2)
- web-utility: 4.4.0(typescript@5.6.2)
+ web-cell: 3.0.0(typescript@5.6.3)
+ web-utility: 4.4.2(typescript@5.6.3)
transitivePeerDependencies:
- '@webcomponents/webcomponentsjs'
- core-js
+ - happy-dom
- jsdom
- typescript
@@ -5890,14 +5921,14 @@ snapshots:
dependencies:
browserslist: 4.24.0
- cosmiconfig@9.0.0(typescript@5.6.2):
+ cosmiconfig@9.0.0(typescript@5.6.3):
dependencies:
env-paths: 2.2.1
import-fresh: 3.3.0
js-yaml: 4.1.0
parse-json: 5.2.0
optionalDependencies:
- typescript: 5.6.2
+ typescript: 5.6.3
cross-spawn@7.0.3:
dependencies:
@@ -5959,9 +5990,9 @@ snapshots:
decamelize@1.2.0: {}
- declarative-shadow-dom-polyfill@0.4.0(typescript@5.6.2):
+ declarative-shadow-dom-polyfill@0.4.0(typescript@5.6.3):
dependencies:
- typescript: 5.6.2
+ typescript: 5.6.3
decompress-response@3.3.0:
dependencies:
@@ -5999,12 +6030,12 @@ snapshots:
dependencies:
esutils: 2.0.3
- dom-renderer@2.3.0(typescript@5.6.2):
+ dom-renderer@2.4.1(typescript@5.6.3):
dependencies:
- declarative-shadow-dom-polyfill: 0.4.0(typescript@5.6.2)
- tslib: 2.7.0
+ declarative-shadow-dom-polyfill: 0.4.0(typescript@5.6.3)
+ tslib: 2.8.1
web-streams-polyfill: 4.0.0
- web-utility: 4.4.0(typescript@5.6.2)
+ web-utility: 4.4.2(typescript@5.6.3)
transitivePeerDependencies:
- typescript
@@ -6124,7 +6155,7 @@ snapshots:
es-errors@1.3.0: {}
- es-iterator-helpers@1.0.19:
+ es-iterator-helpers@1.2.0:
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
@@ -6134,11 +6165,12 @@ snapshots:
function-bind: 1.1.2
get-intrinsic: 1.2.4
globalthis: 1.0.4
+ gopd: 1.0.1
has-property-descriptors: 1.0.2
has-proto: 1.0.3
has-symbols: 1.0.3
internal-slot: 1.0.7
- iterator.prototype: 1.1.2
+ iterator.prototype: 1.1.3
safe-array-concat: 1.1.2
es-object-atoms@1.0.0:
@@ -6169,19 +6201,19 @@ snapshots:
escape-string-regexp@4.0.0: {}
- eslint-config-prettier@9.1.0(eslint@9.11.1):
+ eslint-config-prettier@9.1.0(eslint@9.14.0):
dependencies:
- eslint: 9.11.1
+ eslint: 9.14.0
- eslint-plugin-react@7.37.0(eslint@9.11.1):
+ eslint-plugin-react@7.37.2(eslint@9.14.0):
dependencies:
array-includes: 3.1.8
array.prototype.findlast: 1.2.5
array.prototype.flatmap: 1.3.2
array.prototype.tosorted: 1.1.4
doctrine: 2.1.0
- es-iterator-helpers: 1.0.19
- eslint: 9.11.1
+ es-iterator-helpers: 1.2.0
+ eslint: 9.14.0
estraverse: 5.3.0
hasown: 2.0.2
jsx-ast-utils: 3.3.5
@@ -6195,31 +6227,31 @@ snapshots:
string.prototype.matchall: 4.0.11
string.prototype.repeat: 1.0.0
- eslint-plugin-simple-import-sort@12.1.1(eslint@9.11.1):
+ eslint-plugin-simple-import-sort@12.1.1(eslint@9.14.0):
dependencies:
- eslint: 9.11.1
+ eslint: 9.14.0
- eslint-scope@8.1.0:
+ eslint-scope@8.2.0:
dependencies:
esrecurse: 4.3.0
estraverse: 5.3.0
eslint-visitor-keys@3.4.3: {}
- eslint-visitor-keys@4.1.0: {}
+ eslint-visitor-keys@4.2.0: {}
- eslint@9.11.1:
+ eslint@9.14.0:
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.1)
- '@eslint-community/regexpp': 4.11.1
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.14.0)
+ '@eslint-community/regexpp': 4.12.1
'@eslint/config-array': 0.18.0
- '@eslint/core': 0.6.0
+ '@eslint/core': 0.7.0
'@eslint/eslintrc': 3.1.0
- '@eslint/js': 9.11.1
+ '@eslint/js': 9.14.0
'@eslint/plugin-kit': 0.2.0
+ '@humanfs/node': 0.16.6
'@humanwhocodes/module-importer': 1.0.1
- '@humanwhocodes/retry': 0.3.0
- '@nodelib/fs.walk': 1.2.8
+ '@humanwhocodes/retry': 0.4.1
'@types/estree': 1.0.6
'@types/json-schema': 7.0.15
ajv: 6.12.6
@@ -6227,9 +6259,9 @@ snapshots:
cross-spawn: 7.0.3
debug: 4.3.7
escape-string-regexp: 4.0.0
- eslint-scope: 8.1.0
- eslint-visitor-keys: 4.1.0
- espree: 10.2.0
+ eslint-scope: 8.2.0
+ eslint-visitor-keys: 4.2.0
+ espree: 10.3.0
esquery: 1.6.0
esutils: 2.0.3
fast-deep-equal: 3.1.3
@@ -6239,22 +6271,20 @@ snapshots:
ignore: 5.3.2
imurmurhash: 0.1.4
is-glob: 4.0.3
- is-path-inside: 3.0.3
json-stable-stringify-without-jsonify: 1.0.1
lodash.merge: 4.6.2
minimatch: 3.1.2
natural-compare: 1.4.0
optionator: 0.9.4
- strip-ansi: 6.0.1
text-table: 0.2.0
transitivePeerDependencies:
- supports-color
- espree@10.2.0:
+ espree@10.3.0:
dependencies:
- acorn: 8.12.1
- acorn-jsx: 5.3.2(acorn@8.12.1)
- eslint-visitor-keys: 4.1.0
+ acorn: 8.14.0
+ acorn-jsx: 5.3.2(acorn@8.14.0)
+ eslint-visitor-keys: 4.2.0
esquery@1.6.0:
dependencies:
@@ -6433,7 +6463,7 @@ snapshots:
globals@14.0.0: {}
- globals@15.9.0: {}
+ globals@15.12.0: {}
globalthis@1.0.4:
dependencies:
@@ -6492,9 +6522,9 @@ snapshots:
hosted-git-info@2.8.9: {}
- htmlnano@2.1.1(postcss@8.4.47)(svgo@2.8.0)(terser@5.34.1)(typescript@5.6.2):
+ htmlnano@2.1.1(postcss@8.4.47)(svgo@2.8.0)(terser@5.34.1)(typescript@5.6.3):
dependencies:
- cosmiconfig: 9.0.0(typescript@5.6.2)
+ cosmiconfig: 9.0.0(typescript@5.6.3)
posthtml: 0.16.6
timsort: 0.3.0
optionalDependencies:
@@ -6730,7 +6760,7 @@ snapshots:
dependencies:
'@swc/helpers': 0.5.13
- iterator.prototype@1.1.2:
+ iterator.prototype@1.1.3:
dependencies:
define-properties: 1.2.1
get-intrinsic: 1.2.4
@@ -7026,7 +7056,7 @@ snapshots:
minimist@1.2.8: {}
- mobx@6.13.3: {}
+ mobx@6.13.5: {}
ms@2.1.3: {}
@@ -7194,9 +7224,9 @@ snapshots:
registry-url: 5.1.0
semver: 6.3.1
- parcel@2.12.0(@swc/helpers@0.5.13)(postcss@8.4.47)(terser@5.34.1)(typescript@5.6.2):
+ parcel@2.12.0(@swc/helpers@0.5.13)(postcss@8.4.47)(terser@5.34.1)(typescript@5.6.3):
dependencies:
- '@parcel/config-default': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))(@swc/helpers@0.5.13)(postcss@8.4.47)(terser@5.34.1)(typescript@5.6.2)
+ '@parcel/config-default': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))(@swc/helpers@0.5.13)(postcss@8.4.47)(terser@5.34.1)(typescript@5.6.3)
'@parcel/core': 2.12.0(@swc/helpers@0.5.13)
'@parcel/diagnostic': 2.12.0
'@parcel/events': 2.12.0
@@ -7731,14 +7761,16 @@ snapshots:
trim-newlines@3.0.1: {}
- ts-api-utils@1.3.0(typescript@5.6.2):
+ ts-api-utils@1.3.0(typescript@5.6.3):
dependencies:
- typescript: 5.6.2
+ typescript: 5.6.3
tslib@1.14.1: {}
tslib@2.7.0: {}
+ tslib@2.8.1: {}
+
type-check@0.4.0:
dependencies:
prelude-ls: 1.2.1
@@ -7791,18 +7823,18 @@ snapshots:
dependencies:
is-typedarray: 1.0.0
- typescript-eslint@8.7.0(eslint@9.11.1)(typescript@5.6.2):
+ typescript-eslint@8.13.0(eslint@9.14.0)(typescript@5.6.3):
dependencies:
- '@typescript-eslint/eslint-plugin': 8.7.0(@typescript-eslint/parser@8.7.0(eslint@9.11.1)(typescript@5.6.2))(eslint@9.11.1)(typescript@5.6.2)
- '@typescript-eslint/parser': 8.7.0(eslint@9.11.1)(typescript@5.6.2)
- '@typescript-eslint/utils': 8.7.0(eslint@9.11.1)(typescript@5.6.2)
+ '@typescript-eslint/eslint-plugin': 8.13.0(@typescript-eslint/parser@8.13.0(eslint@9.14.0)(typescript@5.6.3))(eslint@9.14.0)(typescript@5.6.3)
+ '@typescript-eslint/parser': 8.13.0(eslint@9.14.0)(typescript@5.6.3)
+ '@typescript-eslint/utils': 8.13.0(eslint@9.14.0)(typescript@5.6.3)
optionalDependencies:
- typescript: 5.6.2
+ typescript: 5.6.3
transitivePeerDependencies:
- eslint
- supports-color
- typescript@5.6.2: {}
+ typescript@5.6.3: {}
unbox-primitive@1.0.2:
dependencies:
@@ -7879,24 +7911,25 @@ snapshots:
weak-lru-cache@1.2.2: {}
- web-cell@3.0.0(typescript@5.6.2):
+ web-cell@3.0.0(typescript@5.6.3):
dependencies:
'@swc/helpers': 0.5.13
- dom-renderer: 2.3.0(typescript@5.6.2)
- mobx: 6.13.3
+ dom-renderer: 2.4.1(typescript@5.6.3)
+ mobx: 6.13.5
regenerator-runtime: 0.14.1
- web-utility: 4.4.0(typescript@5.6.2)
+ web-utility: 4.4.2(typescript@5.6.3)
transitivePeerDependencies:
+ - happy-dom
- typescript
web-streams-polyfill@4.0.0: {}
- web-utility@4.4.0(typescript@5.6.2):
+ web-utility@4.4.2(typescript@5.6.3):
dependencies:
'@swc/helpers': 0.5.13
element-internals-polyfill: 1.3.12
regenerator-runtime: 0.14.1
- typescript: 5.6.2
+ typescript: 5.6.3
webidl-conversions@4.0.2: {}
@@ -7954,16 +7987,16 @@ snapshots:
word-wrap@1.2.5: {}
- workbox-background-sync@7.1.0:
+ workbox-background-sync@7.3.0:
dependencies:
idb: 7.1.1
- workbox-core: 7.1.0
+ workbox-core: 7.3.0
- workbox-broadcast-update@7.1.0:
+ workbox-broadcast-update@7.3.0:
dependencies:
- workbox-core: 7.1.0
+ workbox-core: 7.3.0
- workbox-build@7.1.0:
+ workbox-build@7.3.0:
dependencies:
'@apideck/better-ajv-errors': 0.3.6(ajv@8.17.1)
'@babel/core': 7.25.2
@@ -7987,30 +8020,30 @@ snapshots:
strip-comments: 2.0.1
tempy: 0.6.0
upath: 1.2.0
- workbox-background-sync: 7.1.0
- workbox-broadcast-update: 7.1.0
- workbox-cacheable-response: 7.1.0
- workbox-core: 7.1.0
- workbox-expiration: 7.1.0
- workbox-google-analytics: 7.1.0
- workbox-navigation-preload: 7.1.0
- workbox-precaching: 7.1.0
- workbox-range-requests: 7.1.0
- workbox-recipes: 7.1.0
- workbox-routing: 7.1.0
- workbox-strategies: 7.1.0
- workbox-streams: 7.1.0
- workbox-sw: 7.1.0
- workbox-window: 7.1.0
+ workbox-background-sync: 7.3.0
+ workbox-broadcast-update: 7.3.0
+ workbox-cacheable-response: 7.3.0
+ workbox-core: 7.3.0
+ workbox-expiration: 7.3.0
+ workbox-google-analytics: 7.3.0
+ workbox-navigation-preload: 7.3.0
+ workbox-precaching: 7.3.0
+ workbox-range-requests: 7.3.0
+ workbox-recipes: 7.3.0
+ workbox-routing: 7.3.0
+ workbox-strategies: 7.3.0
+ workbox-streams: 7.3.0
+ workbox-sw: 7.3.0
+ workbox-window: 7.3.0
transitivePeerDependencies:
- '@types/babel__core'
- supports-color
- workbox-cacheable-response@7.1.0:
+ workbox-cacheable-response@7.3.0:
dependencies:
- workbox-core: 7.1.0
+ workbox-core: 7.3.0
- workbox-cli@7.1.0:
+ workbox-cli@7.3.0:
dependencies:
chalk: 4.1.2
chokidar: 3.6.0
@@ -8024,67 +8057,67 @@ snapshots:
stringify-object: 3.3.0
upath: 1.2.0
update-notifier: 4.1.3
- workbox-build: 7.1.0
+ workbox-build: 7.3.0
transitivePeerDependencies:
- '@types/babel__core'
- supports-color
- workbox-core@7.1.0: {}
+ workbox-core@7.3.0: {}
- workbox-expiration@7.1.0:
+ workbox-expiration@7.3.0:
dependencies:
idb: 7.1.1
- workbox-core: 7.1.0
+ workbox-core: 7.3.0
- workbox-google-analytics@7.1.0:
+ workbox-google-analytics@7.3.0:
dependencies:
- workbox-background-sync: 7.1.0
- workbox-core: 7.1.0
- workbox-routing: 7.1.0
- workbox-strategies: 7.1.0
+ workbox-background-sync: 7.3.0
+ workbox-core: 7.3.0
+ workbox-routing: 7.3.0
+ workbox-strategies: 7.3.0
- workbox-navigation-preload@7.1.0:
+ workbox-navigation-preload@7.3.0:
dependencies:
- workbox-core: 7.1.0
+ workbox-core: 7.3.0
- workbox-precaching@7.1.0:
+ workbox-precaching@7.3.0:
dependencies:
- workbox-core: 7.1.0
- workbox-routing: 7.1.0
- workbox-strategies: 7.1.0
+ workbox-core: 7.3.0
+ workbox-routing: 7.3.0
+ workbox-strategies: 7.3.0
- workbox-range-requests@7.1.0:
+ workbox-range-requests@7.3.0:
dependencies:
- workbox-core: 7.1.0
+ workbox-core: 7.3.0
- workbox-recipes@7.1.0:
+ workbox-recipes@7.3.0:
dependencies:
- workbox-cacheable-response: 7.1.0
- workbox-core: 7.1.0
- workbox-expiration: 7.1.0
- workbox-precaching: 7.1.0
- workbox-routing: 7.1.0
- workbox-strategies: 7.1.0
+ workbox-cacheable-response: 7.3.0
+ workbox-core: 7.3.0
+ workbox-expiration: 7.3.0
+ workbox-precaching: 7.3.0
+ workbox-routing: 7.3.0
+ workbox-strategies: 7.3.0
- workbox-routing@7.1.0:
+ workbox-routing@7.3.0:
dependencies:
- workbox-core: 7.1.0
+ workbox-core: 7.3.0
- workbox-strategies@7.1.0:
+ workbox-strategies@7.3.0:
dependencies:
- workbox-core: 7.1.0
+ workbox-core: 7.3.0
- workbox-streams@7.1.0:
+ workbox-streams@7.3.0:
dependencies:
- workbox-core: 7.1.0
- workbox-routing: 7.1.0
+ workbox-core: 7.3.0
+ workbox-routing: 7.3.0
- workbox-sw@7.1.0: {}
+ workbox-sw@7.3.0: {}
- workbox-window@7.1.0:
+ workbox-window@7.3.0:
dependencies:
'@types/trusted-types': 2.0.7
- workbox-core: 7.1.0
+ workbox-core: 7.3.0
wrap-ansi@9.0.0:
dependencies:
diff --git a/src/index.html b/src/index.html
index 0c45558..be13705 100644
--- a/src/index.html
+++ b/src/index.html
@@ -14,7 +14,7 @@
diff --git a/workbox-config.js b/workbox-config.js
index 3b99ad4..fa0b00d 100644
--- a/workbox-config.js
+++ b/workbox-config.js
@@ -2,7 +2,7 @@ module.exports = {
globDirectory: 'dist/',
globPatterns: ['**/*.{html,css,js,json,ico,gif,jpg,jpeg,png,webp}'],
swDest: 'dist/sw.js',
- importScripts: ['https://unpkg.com/workbox-sw@7.1.0/build/workbox-sw.js'],
+ importScripts: ['https://unpkg.com/workbox-sw@7.3.0/build/workbox-sw.js'],
clientsClaim: true,
cleanupOutdatedCaches: true
};