├── .eslintrc.json ├── .gitignore ├── LICENSE ├── README.md ├── next.config.js ├── package.json ├── pnpm-lock.yaml ├── public ├── favicon.ico ├── next.svg ├── types │ ├── bug.png │ ├── dark.png │ ├── dragon.png │ ├── electric.png │ ├── fairy.png │ ├── fighting.png │ ├── fire.png │ ├── flying.png │ ├── ghost.png │ ├── grass.png │ ├── ground.png │ ├── ice.png │ ├── normal.png │ ├── poison.png │ ├── psychic.png │ ├── rock.png │ ├── steel.png │ └── water.png └── vercel.svg ├── src ├── components │ ├── layout │ │ ├── index.module.css │ │ └── index.tsx │ ├── pokemon │ │ ├── DetailDescription │ │ │ ├── index.module.css │ │ │ └── index.tsx │ │ └── Tile │ │ │ ├── index.module.css │ │ │ └── index.tsx │ └── shared │ │ ├── BaseHeader │ │ ├── index.module.css │ │ └── index.tsx │ │ ├── PrevAndNext │ │ ├── index.module.css │ │ └── index.tsx │ │ └── TransitionLink │ │ └── index.tsx ├── hooks │ ├── useTransitionRouterPush │ │ └── index.ts │ └── useViewTransition │ │ └── index.ts ├── lib │ └── pokemon.ts ├── pages │ ├── _app.tsx │ ├── _document.tsx │ ├── detail │ │ └── [id].tsx │ ├── index.module.css │ └── index.tsx └── styles │ ├── globals.css │ ├── reset.css │ └── viewTransitionName.module.css └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # next.js 12 | /.next/ 13 | /out/ 14 | 15 | # production 16 | /build 17 | 18 | # misc 19 | .DS_Store 20 | *.pem 21 | 22 | # debug 23 | npm-debug.log* 24 | yarn-debug.log* 25 | yarn-error.log* 26 | 27 | # local env files 28 | .env*.local 29 | 30 | # vercel 31 | .vercel 32 | 33 | # typescript 34 | *.tsbuildinfo 35 | next-env.d.ts 36 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 Ryoji Kono 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # View Transitions API with Next.js 2 | 3 | This is the sample implementation of [View Transitions API](https://developer.mozilla.org/en-US/docs/Web/API/View_Transitions_API). 4 | 5 | 6 | I wrote how I implemented this in the following article. (written in Japanese) 7 | https://zenn.dev/iz_pixel/articles/77dce550a7694e 8 | 9 | 10 | ![smooth-slide-in](https://user-images.githubusercontent.com/41853665/231780285-f988aaf8-153a-454e-be3b-dc89cd2c16bc.gif) 11 | 12 | ## Getting started 13 | 14 | To run development server, 15 | 16 | ```sh 17 | pnpm run dev 18 | ``` 19 | 20 | And open [http://localhost:3000](http://localhost:3000). 21 | -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('next').NextConfig} */ 2 | const nextConfig = { 3 | reactStrictMode: true, 4 | images: { 5 | domains: ["raw.githubusercontent.com"], 6 | }, 7 | }; 8 | 9 | module.exports = nextConfig; 10 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nextjs-view-transitions-api", 3 | "version": "0.1.0", 4 | "private": true, 5 | "scripts": { 6 | "dev": "next dev", 7 | "build": "next build", 8 | "start": "next start", 9 | "lint": "next lint" 10 | }, 11 | "dependencies": { 12 | "@types/node": "18.15.11", 13 | "@types/react": "18.0.34", 14 | "@types/react-dom": "18.0.11", 15 | "axios": "^1.3.5", 16 | "axios-cache-interceptor": "^1.0.1", 17 | "clsx": "^1.2.1", 18 | "eslint": "8.38.0", 19 | "eslint-config-next": "13.3.0", 20 | "next": "^13.3.0", 21 | "pokenode-ts": "^1.18.3", 22 | "react": "18.2.0", 23 | "react-dom": "18.2.0", 24 | "typescript": "5.0.4" 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: 5.4 2 | 3 | specifiers: 4 | '@types/node': 18.15.11 5 | '@types/react': 18.0.34 6 | '@types/react-dom': 18.0.11 7 | axios: ^1.3.5 8 | axios-cache-interceptor: ^1.0.1 9 | clsx: ^1.2.1 10 | eslint: 8.38.0 11 | eslint-config-next: 13.3.0 12 | next: ^13.3.0 13 | pokenode-ts: ^1.18.3 14 | react: 18.2.0 15 | react-dom: 18.2.0 16 | typescript: 5.0.4 17 | 18 | dependencies: 19 | '@types/node': 18.15.11 20 | '@types/react': 18.0.34 21 | '@types/react-dom': 18.0.11 22 | axios: 1.3.5 23 | axios-cache-interceptor: 1.0.1_axios@1.3.5 24 | clsx: 1.2.1 25 | eslint: 8.38.0 26 | eslint-config-next: 13.3.0_voubu7prgxjfsfbgx5d4sqnwiy 27 | next: 13.3.0_biqbaboplfbrettd7655fr4n2y 28 | pokenode-ts: 1.18.3_vdvhiudevnv5n3umrklxpgeviq 29 | react: 18.2.0 30 | react-dom: 18.2.0_react@18.2.0 31 | typescript: 5.0.4 32 | 33 | packages: 34 | 35 | /@babel/runtime/7.21.0: 36 | resolution: {integrity: sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw==} 37 | engines: {node: '>=6.9.0'} 38 | dependencies: 39 | regenerator-runtime: 0.13.11 40 | dev: false 41 | 42 | /@eslint-community/eslint-utils/4.4.0_eslint@8.38.0: 43 | resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} 44 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 45 | peerDependencies: 46 | eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 47 | dependencies: 48 | eslint: 8.38.0 49 | eslint-visitor-keys: 3.4.0 50 | dev: false 51 | 52 | /@eslint-community/regexpp/4.5.0: 53 | resolution: {integrity: sha512-vITaYzIcNmjn5tF5uxcZ/ft7/RXGrMUIS9HalWckEOF6ESiwXKoMzAQf2UW0aVd6rnOeExTJVd5hmWXucBKGXQ==} 54 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} 55 | dev: false 56 | 57 | /@eslint/eslintrc/2.0.2: 58 | resolution: {integrity: sha512-3W4f5tDUra+pA+FzgugqL2pRimUTDJWKr7BINqOpkZrC0uYI0NIc0/JFgBROCU07HR6GieA5m3/rsPIhDmCXTQ==} 59 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 60 | dependencies: 61 | ajv: 6.12.6 62 | debug: 4.3.4 63 | espree: 9.5.1 64 | globals: 13.20.0 65 | ignore: 5.2.4 66 | import-fresh: 3.3.0 67 | js-yaml: 4.1.0 68 | minimatch: 3.1.2 69 | strip-json-comments: 3.1.1 70 | transitivePeerDependencies: 71 | - supports-color 72 | dev: false 73 | 74 | /@eslint/js/8.38.0: 75 | resolution: {integrity: sha512-IoD2MfUnOV58ghIHCiil01PcohxjbYR/qCxsoC+xNgUwh1EY8jOOrYmu3d3a71+tJJ23uscEV4X2HJWMsPJu4g==} 76 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 77 | dev: false 78 | 79 | /@humanwhocodes/config-array/0.11.8: 80 | resolution: {integrity: sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==} 81 | engines: {node: '>=10.10.0'} 82 | dependencies: 83 | '@humanwhocodes/object-schema': 1.2.1 84 | debug: 4.3.4 85 | minimatch: 3.1.2 86 | transitivePeerDependencies: 87 | - supports-color 88 | dev: false 89 | 90 | /@humanwhocodes/module-importer/1.0.1: 91 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} 92 | engines: {node: '>=12.22'} 93 | dev: false 94 | 95 | /@humanwhocodes/object-schema/1.2.1: 96 | resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} 97 | dev: false 98 | 99 | /@next/env/13.3.0: 100 | resolution: {integrity: sha512-AjppRV4uG3No7L1plinoTQETH+j2F10TEnrMfzbTUYwze5sBUPveeeBAPZPm8OkJZ1epq9OyYKhZrvbD6/9HCQ==} 101 | dev: false 102 | 103 | /@next/eslint-plugin-next/13.3.0: 104 | resolution: {integrity: sha512-wuGN5qSEjSgcq9fVkH0Y/qIPFjnZtW3ZPwfjJOn7l/rrf6y8J24h/lo61kwqunTyzZJm/ETGfGVU9PUs8cnzEA==} 105 | dependencies: 106 | glob: 7.1.7 107 | dev: false 108 | 109 | /@next/swc-darwin-arm64/13.3.0: 110 | resolution: {integrity: sha512-DmIQCNq6JtccLPPBzf0dgh2vzMWt5wjxbP71pCi5EWpWYE3MsP6FcRXi4MlAmFNDQOfcFXR2r7kBeG1LpZUh1w==} 111 | engines: {node: '>= 10'} 112 | cpu: [arm64] 113 | os: [darwin] 114 | requiresBuild: true 115 | dev: false 116 | optional: true 117 | 118 | /@next/swc-darwin-x64/13.3.0: 119 | resolution: {integrity: sha512-oQoqFa88OGgwnYlnAGHVct618FRI/749se0N3S8t9Bzdv5CRbscnO0RcX901+YnNK4Q6yeiizfgO3b7kogtsZg==} 120 | engines: {node: '>= 10'} 121 | cpu: [x64] 122 | os: [darwin] 123 | requiresBuild: true 124 | dev: false 125 | optional: true 126 | 127 | /@next/swc-linux-arm64-gnu/13.3.0: 128 | resolution: {integrity: sha512-Wzz2p/WqAJUqTVoLo6H18WMeAXo3i+9DkPDae4oQG8LMloJ3if4NEZTnOnTUlro6cq+S/W4pTGa97nWTrOjbGw==} 129 | engines: {node: '>= 10'} 130 | cpu: [arm64] 131 | os: [linux] 132 | requiresBuild: true 133 | dev: false 134 | optional: true 135 | 136 | /@next/swc-linux-arm64-musl/13.3.0: 137 | resolution: {integrity: sha512-xPVrIQOQo9WXJYgmoTlMnAD/HlR/1e1ZIWGbwIzEirXBVBqMARUulBEIKdC19zuvoJ477qZJgBDCKtKEykCpyQ==} 138 | engines: {node: '>= 10'} 139 | cpu: [arm64] 140 | os: [linux] 141 | requiresBuild: true 142 | dev: false 143 | optional: true 144 | 145 | /@next/swc-linux-x64-gnu/13.3.0: 146 | resolution: {integrity: sha512-jOFlpGuPD7W2tuXVJP4wt9a3cpNxWAPcloq5EfMJRiXsBBOjLVFZA7boXYxEBzSVgUiVVr1V9T0HFM7pULJ1qA==} 147 | engines: {node: '>= 10'} 148 | cpu: [x64] 149 | os: [linux] 150 | requiresBuild: true 151 | dev: false 152 | optional: true 153 | 154 | /@next/swc-linux-x64-musl/13.3.0: 155 | resolution: {integrity: sha512-2OwKlzaBgmuet9XYHc3KwsEilzb04F540rlRXkAcjMHL7eCxB7uZIGtsVvKOnQLvC/elrUegwSw1+5f7WmfyOw==} 156 | engines: {node: '>= 10'} 157 | cpu: [x64] 158 | os: [linux] 159 | requiresBuild: true 160 | dev: false 161 | optional: true 162 | 163 | /@next/swc-win32-arm64-msvc/13.3.0: 164 | resolution: {integrity: sha512-OeHiA6YEvndxT46g+rzFK/MQTfftKxJmzslERMu9LDdC6Kez0bdrgEYed5eXFK2Z1viKZJCGRlhd06rBusyztA==} 165 | engines: {node: '>= 10'} 166 | cpu: [arm64] 167 | os: [win32] 168 | requiresBuild: true 169 | dev: false 170 | optional: true 171 | 172 | /@next/swc-win32-ia32-msvc/13.3.0: 173 | resolution: {integrity: sha512-4aB7K9mcVK1lYEzpOpqWrXHEZympU3oK65fnNcY1Qc4HLJFLJj8AViuqQd4jjjPNuV4sl8jAwTz3gN5VNGWB7w==} 174 | engines: {node: '>= 10'} 175 | cpu: [ia32] 176 | os: [win32] 177 | requiresBuild: true 178 | dev: false 179 | optional: true 180 | 181 | /@next/swc-win32-x64-msvc/13.3.0: 182 | resolution: {integrity: sha512-Reer6rkLLcoOvB0dd66+Y7WrWVFH7sEEkF/4bJCIfsSKnTStTYaHtwIJAwbqnt9I392Tqvku0KkoqZOryWV9LQ==} 183 | engines: {node: '>= 10'} 184 | cpu: [x64] 185 | os: [win32] 186 | requiresBuild: true 187 | dev: false 188 | optional: true 189 | 190 | /@nodelib/fs.scandir/2.1.5: 191 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} 192 | engines: {node: '>= 8'} 193 | dependencies: 194 | '@nodelib/fs.stat': 2.0.5 195 | run-parallel: 1.2.0 196 | dev: false 197 | 198 | /@nodelib/fs.stat/2.0.5: 199 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 200 | engines: {node: '>= 8'} 201 | dev: false 202 | 203 | /@nodelib/fs.walk/1.2.8: 204 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 205 | engines: {node: '>= 8'} 206 | dependencies: 207 | '@nodelib/fs.scandir': 2.1.5 208 | fastq: 1.15.0 209 | dev: false 210 | 211 | /@pkgr/utils/2.3.1: 212 | resolution: {integrity: sha512-wfzX8kc1PMyUILA+1Z/EqoE4UCXGy0iRGMhPwdfae1+f0OXlLqCk+By+aMzgJBzR9AzS4CDizioG6Ss1gvAFJw==} 213 | engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} 214 | dependencies: 215 | cross-spawn: 7.0.3 216 | is-glob: 4.0.3 217 | open: 8.4.2 218 | picocolors: 1.0.0 219 | tiny-glob: 0.2.9 220 | tslib: 2.5.0 221 | dev: false 222 | 223 | /@rushstack/eslint-patch/1.2.0: 224 | resolution: {integrity: sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg==} 225 | dev: false 226 | 227 | /@swc/helpers/0.4.14: 228 | resolution: {integrity: sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==} 229 | dependencies: 230 | tslib: 2.5.0 231 | dev: false 232 | 233 | /@types/json5/0.0.29: 234 | resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} 235 | dev: false 236 | 237 | /@types/node/18.15.11: 238 | resolution: {integrity: sha512-E5Kwq2n4SbMzQOn6wnmBjuK9ouqlURrcZDVfbo9ftDDTFt3nk7ZKK4GMOzoYgnpQJKcxwQw+lGaBvvlMo0qN/Q==} 239 | dev: false 240 | 241 | /@types/prop-types/15.7.5: 242 | resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==} 243 | dev: false 244 | 245 | /@types/react-dom/18.0.11: 246 | resolution: {integrity: sha512-O38bPbI2CWtgw/OoQoY+BRelw7uysmXbWvw3nLWO21H1HSh+GOlqPuXshJfjmpNlKiiSDG9cc1JZAaMmVdcTlw==} 247 | dependencies: 248 | '@types/react': 18.0.34 249 | dev: false 250 | 251 | /@types/react/18.0.34: 252 | resolution: {integrity: sha512-NO1UO8941541CJl1BeOXi8a9dNKFK09Gnru5ZJqkm4Q3/WoQJtHvmwt0VX0SB9YCEwe7TfSSxDuaNmx6H2BAIQ==} 253 | dependencies: 254 | '@types/prop-types': 15.7.5 255 | '@types/scheduler': 0.16.3 256 | csstype: 3.1.2 257 | dev: false 258 | 259 | /@types/scheduler/0.16.3: 260 | resolution: {integrity: sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==} 261 | dev: false 262 | 263 | /@typescript-eslint/parser/5.58.0_voubu7prgxjfsfbgx5d4sqnwiy: 264 | resolution: {integrity: sha512-ixaM3gRtlfrKzP8N6lRhBbjTow1t6ztfBvQNGuRM8qH1bjFFXIJ35XY+FC0RRBKn3C6cT+7VW1y8tNm7DwPHDQ==} 265 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 266 | peerDependencies: 267 | eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 268 | typescript: '*' 269 | peerDependenciesMeta: 270 | typescript: 271 | optional: true 272 | dependencies: 273 | '@typescript-eslint/scope-manager': 5.58.0 274 | '@typescript-eslint/types': 5.58.0 275 | '@typescript-eslint/typescript-estree': 5.58.0_typescript@5.0.4 276 | debug: 4.3.4 277 | eslint: 8.38.0 278 | typescript: 5.0.4 279 | transitivePeerDependencies: 280 | - supports-color 281 | dev: false 282 | 283 | /@typescript-eslint/scope-manager/5.58.0: 284 | resolution: {integrity: sha512-b+w8ypN5CFvrXWQb9Ow9T4/6LC2MikNf1viLkYTiTbkQl46CnR69w7lajz1icW0TBsYmlpg+mRzFJ4LEJ8X9NA==} 285 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 286 | dependencies: 287 | '@typescript-eslint/types': 5.58.0 288 | '@typescript-eslint/visitor-keys': 5.58.0 289 | dev: false 290 | 291 | /@typescript-eslint/types/5.58.0: 292 | resolution: {integrity: sha512-JYV4eITHPzVQMnHZcYJXl2ZloC7thuUHrcUmxtzvItyKPvQ50kb9QXBkgNAt90OYMqwaodQh2kHutWZl1fc+1g==} 293 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 294 | dev: false 295 | 296 | /@typescript-eslint/typescript-estree/5.58.0_typescript@5.0.4: 297 | resolution: {integrity: sha512-cRACvGTodA+UxnYM2uwA2KCwRL7VAzo45syNysqlMyNyjw0Z35Icc9ihPJZjIYuA5bXJYiJ2YGUB59BqlOZT1Q==} 298 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 299 | peerDependencies: 300 | typescript: '*' 301 | peerDependenciesMeta: 302 | typescript: 303 | optional: true 304 | dependencies: 305 | '@typescript-eslint/types': 5.58.0 306 | '@typescript-eslint/visitor-keys': 5.58.0 307 | debug: 4.3.4 308 | globby: 11.1.0 309 | is-glob: 4.0.3 310 | semver: 7.4.0 311 | tsutils: 3.21.0_typescript@5.0.4 312 | typescript: 5.0.4 313 | transitivePeerDependencies: 314 | - supports-color 315 | dev: false 316 | 317 | /@typescript-eslint/visitor-keys/5.58.0: 318 | resolution: {integrity: sha512-/fBraTlPj0jwdyTwLyrRTxv/3lnU2H96pNTVM6z3esTWLtA5MZ9ghSMJ7Rb+TtUAdtEw9EyJzJ0EydIMKxQ9gA==} 319 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 320 | dependencies: 321 | '@typescript-eslint/types': 5.58.0 322 | eslint-visitor-keys: 3.4.0 323 | dev: false 324 | 325 | /acorn-jsx/5.3.2_acorn@8.8.2: 326 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} 327 | peerDependencies: 328 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 329 | dependencies: 330 | acorn: 8.8.2 331 | dev: false 332 | 333 | /acorn/8.8.2: 334 | resolution: {integrity: sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==} 335 | engines: {node: '>=0.4.0'} 336 | hasBin: true 337 | dev: false 338 | 339 | /ajv/6.12.6: 340 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} 341 | dependencies: 342 | fast-deep-equal: 3.1.3 343 | fast-json-stable-stringify: 2.1.0 344 | json-schema-traverse: 0.4.1 345 | uri-js: 4.4.1 346 | dev: false 347 | 348 | /ansi-regex/5.0.1: 349 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 350 | engines: {node: '>=8'} 351 | dev: false 352 | 353 | /ansi-styles/4.3.0: 354 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 355 | engines: {node: '>=8'} 356 | dependencies: 357 | color-convert: 2.0.1 358 | dev: false 359 | 360 | /argparse/2.0.1: 361 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 362 | dev: false 363 | 364 | /aria-query/5.1.3: 365 | resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==} 366 | dependencies: 367 | deep-equal: 2.2.0 368 | dev: false 369 | 370 | /array-buffer-byte-length/1.0.0: 371 | resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==} 372 | dependencies: 373 | call-bind: 1.0.2 374 | is-array-buffer: 3.0.2 375 | dev: false 376 | 377 | /array-includes/3.1.6: 378 | resolution: {integrity: sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==} 379 | engines: {node: '>= 0.4'} 380 | dependencies: 381 | call-bind: 1.0.2 382 | define-properties: 1.2.0 383 | es-abstract: 1.21.2 384 | get-intrinsic: 1.2.0 385 | is-string: 1.0.7 386 | dev: false 387 | 388 | /array-union/2.1.0: 389 | resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} 390 | engines: {node: '>=8'} 391 | dev: false 392 | 393 | /array.prototype.flat/1.3.1: 394 | resolution: {integrity: sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==} 395 | engines: {node: '>= 0.4'} 396 | dependencies: 397 | call-bind: 1.0.2 398 | define-properties: 1.2.0 399 | es-abstract: 1.21.2 400 | es-shim-unscopables: 1.0.0 401 | dev: false 402 | 403 | /array.prototype.flatmap/1.3.1: 404 | resolution: {integrity: sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==} 405 | engines: {node: '>= 0.4'} 406 | dependencies: 407 | call-bind: 1.0.2 408 | define-properties: 1.2.0 409 | es-abstract: 1.21.2 410 | es-shim-unscopables: 1.0.0 411 | dev: false 412 | 413 | /array.prototype.tosorted/1.1.1: 414 | resolution: {integrity: sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==} 415 | dependencies: 416 | call-bind: 1.0.2 417 | define-properties: 1.2.0 418 | es-abstract: 1.21.2 419 | es-shim-unscopables: 1.0.0 420 | get-intrinsic: 1.2.0 421 | dev: false 422 | 423 | /ast-types-flow/0.0.7: 424 | resolution: {integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==} 425 | dev: false 426 | 427 | /asynckit/0.4.0: 428 | resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} 429 | dev: false 430 | 431 | /available-typed-arrays/1.0.5: 432 | resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==} 433 | engines: {node: '>= 0.4'} 434 | dev: false 435 | 436 | /axe-core/4.6.3: 437 | resolution: {integrity: sha512-/BQzOX780JhsxDnPpH4ZiyrJAzcd8AfzFPkv+89veFSr1rcMjuq2JDCwypKaPeB6ljHp9KjXhPpjgCvQlWYuqg==} 438 | engines: {node: '>=4'} 439 | dev: false 440 | 441 | /axios-cache-interceptor/1.0.1_axios@1.3.5: 442 | resolution: {integrity: sha512-ClLc3CMA4SBhHL7remPuwlA7jgmUFYrYiw10Ax3g9J5lEKCGTO2lGohuzH/BR4RTFMZS7Kka05gAliLl5L/MeQ==} 443 | engines: {node: '>=12'} 444 | peerDependencies: 445 | axios: ^1 446 | dependencies: 447 | axios: 1.3.5 448 | cache-parser: 1.2.4 449 | fast-defer: 1.1.7 450 | object-code: 1.2.4 451 | dev: false 452 | 453 | /axios/1.3.5: 454 | resolution: {integrity: sha512-glL/PvG/E+xCWwV8S6nCHcrfg1exGx7vxyUIivIA1iL7BIh6bePylCfVHwp6k13ao7SATxB6imau2kqY+I67kw==} 455 | dependencies: 456 | follow-redirects: 1.15.2 457 | form-data: 4.0.0 458 | proxy-from-env: 1.1.0 459 | transitivePeerDependencies: 460 | - debug 461 | dev: false 462 | 463 | /axobject-query/3.1.1: 464 | resolution: {integrity: sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==} 465 | dependencies: 466 | deep-equal: 2.2.0 467 | dev: false 468 | 469 | /balanced-match/1.0.2: 470 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 471 | dev: false 472 | 473 | /brace-expansion/1.1.11: 474 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} 475 | dependencies: 476 | balanced-match: 1.0.2 477 | concat-map: 0.0.1 478 | dev: false 479 | 480 | /braces/3.0.2: 481 | resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} 482 | engines: {node: '>=8'} 483 | dependencies: 484 | fill-range: 7.0.1 485 | dev: false 486 | 487 | /busboy/1.6.0: 488 | resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==} 489 | engines: {node: '>=10.16.0'} 490 | dependencies: 491 | streamsearch: 1.1.0 492 | dev: false 493 | 494 | /cache-parser/1.2.4: 495 | resolution: {integrity: sha512-O0KwuHuJnbHUrghHi2kGp0SxnWSIBXTYt7M8WVhW0kbPRUNUKoE/Of6e1rRD6AAxmfxFunKnt90yEK09D+sc5g==} 496 | dev: false 497 | 498 | /call-bind/1.0.2: 499 | resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==} 500 | dependencies: 501 | function-bind: 1.1.1 502 | get-intrinsic: 1.2.0 503 | dev: false 504 | 505 | /callsites/3.1.0: 506 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} 507 | engines: {node: '>=6'} 508 | dev: false 509 | 510 | /caniuse-lite/1.0.30001478: 511 | resolution: {integrity: sha512-gMhDyXGItTHipJj2ApIvR+iVB5hd0KP3svMWWXDvZOmjzJJassGLMfxRkQCSYgGd2gtdL/ReeiyvMSFD1Ss6Mw==} 512 | dev: false 513 | 514 | /chalk/4.1.2: 515 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} 516 | engines: {node: '>=10'} 517 | dependencies: 518 | ansi-styles: 4.3.0 519 | supports-color: 7.2.0 520 | dev: false 521 | 522 | /client-only/0.0.1: 523 | resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==} 524 | dev: false 525 | 526 | /clsx/1.2.1: 527 | resolution: {integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==} 528 | engines: {node: '>=6'} 529 | dev: false 530 | 531 | /color-convert/2.0.1: 532 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 533 | engines: {node: '>=7.0.0'} 534 | dependencies: 535 | color-name: 1.1.4 536 | dev: false 537 | 538 | /color-name/1.1.4: 539 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 540 | dev: false 541 | 542 | /combined-stream/1.0.8: 543 | resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} 544 | engines: {node: '>= 0.8'} 545 | dependencies: 546 | delayed-stream: 1.0.0 547 | dev: false 548 | 549 | /concat-map/0.0.1: 550 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} 551 | dev: false 552 | 553 | /cross-spawn/7.0.3: 554 | resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} 555 | engines: {node: '>= 8'} 556 | dependencies: 557 | path-key: 3.1.1 558 | shebang-command: 2.0.0 559 | which: 2.0.2 560 | dev: false 561 | 562 | /csstype/3.1.2: 563 | resolution: {integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==} 564 | dev: false 565 | 566 | /damerau-levenshtein/1.0.8: 567 | resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} 568 | dev: false 569 | 570 | /debug/3.2.7: 571 | resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} 572 | peerDependencies: 573 | supports-color: '*' 574 | peerDependenciesMeta: 575 | supports-color: 576 | optional: true 577 | dependencies: 578 | ms: 2.1.3 579 | dev: false 580 | 581 | /debug/4.3.4: 582 | resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} 583 | engines: {node: '>=6.0'} 584 | peerDependencies: 585 | supports-color: '*' 586 | peerDependenciesMeta: 587 | supports-color: 588 | optional: true 589 | dependencies: 590 | ms: 2.1.2 591 | dev: false 592 | 593 | /deep-equal/2.2.0: 594 | resolution: {integrity: sha512-RdpzE0Hv4lhowpIUKKMJfeH6C1pXdtT1/it80ubgWqwI3qpuxUBpC1S4hnHg+zjnuOoDkzUtUCEEkG+XG5l3Mw==} 595 | dependencies: 596 | call-bind: 1.0.2 597 | es-get-iterator: 1.1.3 598 | get-intrinsic: 1.2.0 599 | is-arguments: 1.1.1 600 | is-array-buffer: 3.0.2 601 | is-date-object: 1.0.5 602 | is-regex: 1.1.4 603 | is-shared-array-buffer: 1.0.2 604 | isarray: 2.0.5 605 | object-is: 1.1.5 606 | object-keys: 1.1.1 607 | object.assign: 4.1.4 608 | regexp.prototype.flags: 1.4.3 609 | side-channel: 1.0.4 610 | which-boxed-primitive: 1.0.2 611 | which-collection: 1.0.1 612 | which-typed-array: 1.1.9 613 | dev: false 614 | 615 | /deep-is/0.1.4: 616 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} 617 | dev: false 618 | 619 | /define-lazy-prop/2.0.0: 620 | resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} 621 | engines: {node: '>=8'} 622 | dev: false 623 | 624 | /define-properties/1.2.0: 625 | resolution: {integrity: sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==} 626 | engines: {node: '>= 0.4'} 627 | dependencies: 628 | has-property-descriptors: 1.0.0 629 | object-keys: 1.1.1 630 | dev: false 631 | 632 | /delayed-stream/1.0.0: 633 | resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} 634 | engines: {node: '>=0.4.0'} 635 | dev: false 636 | 637 | /dir-glob/3.0.1: 638 | resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} 639 | engines: {node: '>=8'} 640 | dependencies: 641 | path-type: 4.0.0 642 | dev: false 643 | 644 | /doctrine/2.1.0: 645 | resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} 646 | engines: {node: '>=0.10.0'} 647 | dependencies: 648 | esutils: 2.0.3 649 | dev: false 650 | 651 | /doctrine/3.0.0: 652 | resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} 653 | engines: {node: '>=6.0.0'} 654 | dependencies: 655 | esutils: 2.0.3 656 | dev: false 657 | 658 | /emoji-regex/9.2.2: 659 | resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} 660 | dev: false 661 | 662 | /enhanced-resolve/5.12.0: 663 | resolution: {integrity: sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==} 664 | engines: {node: '>=10.13.0'} 665 | dependencies: 666 | graceful-fs: 4.2.11 667 | tapable: 2.2.1 668 | dev: false 669 | 670 | /es-abstract/1.21.2: 671 | resolution: {integrity: sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==} 672 | engines: {node: '>= 0.4'} 673 | dependencies: 674 | array-buffer-byte-length: 1.0.0 675 | available-typed-arrays: 1.0.5 676 | call-bind: 1.0.2 677 | es-set-tostringtag: 2.0.1 678 | es-to-primitive: 1.2.1 679 | function.prototype.name: 1.1.5 680 | get-intrinsic: 1.2.0 681 | get-symbol-description: 1.0.0 682 | globalthis: 1.0.3 683 | gopd: 1.0.1 684 | has: 1.0.3 685 | has-property-descriptors: 1.0.0 686 | has-proto: 1.0.1 687 | has-symbols: 1.0.3 688 | internal-slot: 1.0.5 689 | is-array-buffer: 3.0.2 690 | is-callable: 1.2.7 691 | is-negative-zero: 2.0.2 692 | is-regex: 1.1.4 693 | is-shared-array-buffer: 1.0.2 694 | is-string: 1.0.7 695 | is-typed-array: 1.1.10 696 | is-weakref: 1.0.2 697 | object-inspect: 1.12.3 698 | object-keys: 1.1.1 699 | object.assign: 4.1.4 700 | regexp.prototype.flags: 1.4.3 701 | safe-regex-test: 1.0.0 702 | string.prototype.trim: 1.2.7 703 | string.prototype.trimend: 1.0.6 704 | string.prototype.trimstart: 1.0.6 705 | typed-array-length: 1.0.4 706 | unbox-primitive: 1.0.2 707 | which-typed-array: 1.1.9 708 | dev: false 709 | 710 | /es-get-iterator/1.1.3: 711 | resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==} 712 | dependencies: 713 | call-bind: 1.0.2 714 | get-intrinsic: 1.2.0 715 | has-symbols: 1.0.3 716 | is-arguments: 1.1.1 717 | is-map: 2.0.2 718 | is-set: 2.0.2 719 | is-string: 1.0.7 720 | isarray: 2.0.5 721 | stop-iteration-iterator: 1.0.0 722 | dev: false 723 | 724 | /es-set-tostringtag/2.0.1: 725 | resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==} 726 | engines: {node: '>= 0.4'} 727 | dependencies: 728 | get-intrinsic: 1.2.0 729 | has: 1.0.3 730 | has-tostringtag: 1.0.0 731 | dev: false 732 | 733 | /es-shim-unscopables/1.0.0: 734 | resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==} 735 | dependencies: 736 | has: 1.0.3 737 | dev: false 738 | 739 | /es-to-primitive/1.2.1: 740 | resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} 741 | engines: {node: '>= 0.4'} 742 | dependencies: 743 | is-callable: 1.2.7 744 | is-date-object: 1.0.5 745 | is-symbol: 1.0.4 746 | dev: false 747 | 748 | /escape-string-regexp/4.0.0: 749 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} 750 | engines: {node: '>=10'} 751 | dev: false 752 | 753 | /eslint-config-next/13.3.0_voubu7prgxjfsfbgx5d4sqnwiy: 754 | resolution: {integrity: sha512-6YEwmFBX0VjBd3ODGW9df0Is0FLaRFdMN8eAahQG9CN6LjQ28J8AFr19ngxqMSg7Qv6Uca/3VeeBosJh1bzu0w==} 755 | peerDependencies: 756 | eslint: ^7.23.0 || ^8.0.0 757 | typescript: '>=3.3.1' 758 | peerDependenciesMeta: 759 | typescript: 760 | optional: true 761 | dependencies: 762 | '@next/eslint-plugin-next': 13.3.0 763 | '@rushstack/eslint-patch': 1.2.0 764 | '@typescript-eslint/parser': 5.58.0_voubu7prgxjfsfbgx5d4sqnwiy 765 | eslint: 8.38.0 766 | eslint-import-resolver-node: 0.3.7 767 | eslint-import-resolver-typescript: 3.5.5_slf3pdlxi65p6jlbyy4zgzrwbi 768 | eslint-plugin-import: 2.27.5_rptv2rvhnimonuwgnwl36lcway 769 | eslint-plugin-jsx-a11y: 6.7.1_eslint@8.38.0 770 | eslint-plugin-react: 7.32.2_eslint@8.38.0 771 | eslint-plugin-react-hooks: 4.6.0_eslint@8.38.0 772 | typescript: 5.0.4 773 | transitivePeerDependencies: 774 | - eslint-import-resolver-webpack 775 | - supports-color 776 | dev: false 777 | 778 | /eslint-import-resolver-node/0.3.7: 779 | resolution: {integrity: sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==} 780 | dependencies: 781 | debug: 3.2.7 782 | is-core-module: 2.12.0 783 | resolve: 1.22.2 784 | transitivePeerDependencies: 785 | - supports-color 786 | dev: false 787 | 788 | /eslint-import-resolver-typescript/3.5.5_slf3pdlxi65p6jlbyy4zgzrwbi: 789 | resolution: {integrity: sha512-TdJqPHs2lW5J9Zpe17DZNQuDnox4xo2o+0tE7Pggain9Rbc19ik8kFtXdxZ250FVx2kF4vlt2RSf4qlUpG7bhw==} 790 | engines: {node: ^14.18.0 || >=16.0.0} 791 | peerDependencies: 792 | eslint: '*' 793 | eslint-plugin-import: '*' 794 | dependencies: 795 | debug: 4.3.4 796 | enhanced-resolve: 5.12.0 797 | eslint: 8.38.0 798 | eslint-module-utils: 2.7.4_uijsfo6afl5uvsbmsghunq7i6m 799 | eslint-plugin-import: 2.27.5_rptv2rvhnimonuwgnwl36lcway 800 | get-tsconfig: 4.5.0 801 | globby: 13.1.3 802 | is-core-module: 2.12.0 803 | is-glob: 4.0.3 804 | synckit: 0.8.5 805 | transitivePeerDependencies: 806 | - '@typescript-eslint/parser' 807 | - eslint-import-resolver-node 808 | - eslint-import-resolver-webpack 809 | - supports-color 810 | dev: false 811 | 812 | /eslint-module-utils/2.7.4_uijsfo6afl5uvsbmsghunq7i6m: 813 | resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==} 814 | engines: {node: '>=4'} 815 | peerDependencies: 816 | '@typescript-eslint/parser': '*' 817 | eslint: '*' 818 | eslint-import-resolver-node: '*' 819 | eslint-import-resolver-typescript: '*' 820 | eslint-import-resolver-webpack: '*' 821 | peerDependenciesMeta: 822 | '@typescript-eslint/parser': 823 | optional: true 824 | eslint: 825 | optional: true 826 | eslint-import-resolver-node: 827 | optional: true 828 | eslint-import-resolver-typescript: 829 | optional: true 830 | eslint-import-resolver-webpack: 831 | optional: true 832 | dependencies: 833 | '@typescript-eslint/parser': 5.58.0_voubu7prgxjfsfbgx5d4sqnwiy 834 | debug: 3.2.7 835 | eslint: 8.38.0 836 | eslint-import-resolver-node: 0.3.7 837 | eslint-import-resolver-typescript: 3.5.5_slf3pdlxi65p6jlbyy4zgzrwbi 838 | transitivePeerDependencies: 839 | - supports-color 840 | dev: false 841 | 842 | /eslint-plugin-import/2.27.5_rptv2rvhnimonuwgnwl36lcway: 843 | resolution: {integrity: sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==} 844 | engines: {node: '>=4'} 845 | peerDependencies: 846 | '@typescript-eslint/parser': '*' 847 | eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 848 | peerDependenciesMeta: 849 | '@typescript-eslint/parser': 850 | optional: true 851 | dependencies: 852 | '@typescript-eslint/parser': 5.58.0_voubu7prgxjfsfbgx5d4sqnwiy 853 | array-includes: 3.1.6 854 | array.prototype.flat: 1.3.1 855 | array.prototype.flatmap: 1.3.1 856 | debug: 3.2.7 857 | doctrine: 2.1.0 858 | eslint: 8.38.0 859 | eslint-import-resolver-node: 0.3.7 860 | eslint-module-utils: 2.7.4_uijsfo6afl5uvsbmsghunq7i6m 861 | has: 1.0.3 862 | is-core-module: 2.12.0 863 | is-glob: 4.0.3 864 | minimatch: 3.1.2 865 | object.values: 1.1.6 866 | resolve: 1.22.2 867 | semver: 6.3.0 868 | tsconfig-paths: 3.14.2 869 | transitivePeerDependencies: 870 | - eslint-import-resolver-typescript 871 | - eslint-import-resolver-webpack 872 | - supports-color 873 | dev: false 874 | 875 | /eslint-plugin-jsx-a11y/6.7.1_eslint@8.38.0: 876 | resolution: {integrity: sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==} 877 | engines: {node: '>=4.0'} 878 | peerDependencies: 879 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 880 | dependencies: 881 | '@babel/runtime': 7.21.0 882 | aria-query: 5.1.3 883 | array-includes: 3.1.6 884 | array.prototype.flatmap: 1.3.1 885 | ast-types-flow: 0.0.7 886 | axe-core: 4.6.3 887 | axobject-query: 3.1.1 888 | damerau-levenshtein: 1.0.8 889 | emoji-regex: 9.2.2 890 | eslint: 8.38.0 891 | has: 1.0.3 892 | jsx-ast-utils: 3.3.3 893 | language-tags: 1.0.5 894 | minimatch: 3.1.2 895 | object.entries: 1.1.6 896 | object.fromentries: 2.0.6 897 | semver: 6.3.0 898 | dev: false 899 | 900 | /eslint-plugin-react-hooks/4.6.0_eslint@8.38.0: 901 | resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} 902 | engines: {node: '>=10'} 903 | peerDependencies: 904 | eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 905 | dependencies: 906 | eslint: 8.38.0 907 | dev: false 908 | 909 | /eslint-plugin-react/7.32.2_eslint@8.38.0: 910 | resolution: {integrity: sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==} 911 | engines: {node: '>=4'} 912 | peerDependencies: 913 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 914 | dependencies: 915 | array-includes: 3.1.6 916 | array.prototype.flatmap: 1.3.1 917 | array.prototype.tosorted: 1.1.1 918 | doctrine: 2.1.0 919 | eslint: 8.38.0 920 | estraverse: 5.3.0 921 | jsx-ast-utils: 3.3.3 922 | minimatch: 3.1.2 923 | object.entries: 1.1.6 924 | object.fromentries: 2.0.6 925 | object.hasown: 1.1.2 926 | object.values: 1.1.6 927 | prop-types: 15.8.1 928 | resolve: 2.0.0-next.4 929 | semver: 6.3.0 930 | string.prototype.matchall: 4.0.8 931 | dev: false 932 | 933 | /eslint-scope/7.1.1: 934 | resolution: {integrity: sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==} 935 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 936 | dependencies: 937 | esrecurse: 4.3.0 938 | estraverse: 5.3.0 939 | dev: false 940 | 941 | /eslint-visitor-keys/3.4.0: 942 | resolution: {integrity: sha512-HPpKPUBQcAsZOsHAFwTtIKcYlCje62XB7SEAcxjtmW6TD1WVpkS6i6/hOVtTZIl4zGj/mBqpFVGvaDneik+VoQ==} 943 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 944 | dev: false 945 | 946 | /eslint/8.38.0: 947 | resolution: {integrity: sha512-pIdsD2jwlUGf/U38Jv97t8lq6HpaU/G9NKbYmpWpZGw3LdTNhZLbJePqxOXGB5+JEKfOPU/XLxYxFh03nr1KTg==} 948 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 949 | hasBin: true 950 | dependencies: 951 | '@eslint-community/eslint-utils': 4.4.0_eslint@8.38.0 952 | '@eslint-community/regexpp': 4.5.0 953 | '@eslint/eslintrc': 2.0.2 954 | '@eslint/js': 8.38.0 955 | '@humanwhocodes/config-array': 0.11.8 956 | '@humanwhocodes/module-importer': 1.0.1 957 | '@nodelib/fs.walk': 1.2.8 958 | ajv: 6.12.6 959 | chalk: 4.1.2 960 | cross-spawn: 7.0.3 961 | debug: 4.3.4 962 | doctrine: 3.0.0 963 | escape-string-regexp: 4.0.0 964 | eslint-scope: 7.1.1 965 | eslint-visitor-keys: 3.4.0 966 | espree: 9.5.1 967 | esquery: 1.5.0 968 | esutils: 2.0.3 969 | fast-deep-equal: 3.1.3 970 | file-entry-cache: 6.0.1 971 | find-up: 5.0.0 972 | glob-parent: 6.0.2 973 | globals: 13.20.0 974 | grapheme-splitter: 1.0.4 975 | ignore: 5.2.4 976 | import-fresh: 3.3.0 977 | imurmurhash: 0.1.4 978 | is-glob: 4.0.3 979 | is-path-inside: 3.0.3 980 | js-sdsl: 4.4.0 981 | js-yaml: 4.1.0 982 | json-stable-stringify-without-jsonify: 1.0.1 983 | levn: 0.4.1 984 | lodash.merge: 4.6.2 985 | minimatch: 3.1.2 986 | natural-compare: 1.4.0 987 | optionator: 0.9.1 988 | strip-ansi: 6.0.1 989 | strip-json-comments: 3.1.1 990 | text-table: 0.2.0 991 | transitivePeerDependencies: 992 | - supports-color 993 | dev: false 994 | 995 | /espree/9.5.1: 996 | resolution: {integrity: sha512-5yxtHSZXRSW5pvv3hAlXM5+/Oswi1AUFqBmbibKb5s6bp3rGIDkyXU6xCoyuuLhijr4SFwPrXRoZjz0AZDN9tg==} 997 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 998 | dependencies: 999 | acorn: 8.8.2 1000 | acorn-jsx: 5.3.2_acorn@8.8.2 1001 | eslint-visitor-keys: 3.4.0 1002 | dev: false 1003 | 1004 | /esquery/1.5.0: 1005 | resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} 1006 | engines: {node: '>=0.10'} 1007 | dependencies: 1008 | estraverse: 5.3.0 1009 | dev: false 1010 | 1011 | /esrecurse/4.3.0: 1012 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} 1013 | engines: {node: '>=4.0'} 1014 | dependencies: 1015 | estraverse: 5.3.0 1016 | dev: false 1017 | 1018 | /estraverse/5.3.0: 1019 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} 1020 | engines: {node: '>=4.0'} 1021 | dev: false 1022 | 1023 | /esutils/2.0.3: 1024 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} 1025 | engines: {node: '>=0.10.0'} 1026 | dev: false 1027 | 1028 | /fast-deep-equal/3.1.3: 1029 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 1030 | dev: false 1031 | 1032 | /fast-defer/1.1.7: 1033 | resolution: {integrity: sha512-tJ01ulDWT2WhqxMKS20nXX6wyX2iInBYpbN3GO7yjKwXMY4qvkdBRxak9IFwBLlFDESox+SwSvqMCZDfe1tqeg==} 1034 | dev: false 1035 | 1036 | /fast-glob/3.2.12: 1037 | resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==} 1038 | engines: {node: '>=8.6.0'} 1039 | dependencies: 1040 | '@nodelib/fs.stat': 2.0.5 1041 | '@nodelib/fs.walk': 1.2.8 1042 | glob-parent: 5.1.2 1043 | merge2: 1.4.1 1044 | micromatch: 4.0.5 1045 | dev: false 1046 | 1047 | /fast-json-stable-stringify/2.1.0: 1048 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} 1049 | dev: false 1050 | 1051 | /fast-levenshtein/2.0.6: 1052 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} 1053 | dev: false 1054 | 1055 | /fastq/1.15.0: 1056 | resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==} 1057 | dependencies: 1058 | reusify: 1.0.4 1059 | dev: false 1060 | 1061 | /file-entry-cache/6.0.1: 1062 | resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} 1063 | engines: {node: ^10.12.0 || >=12.0.0} 1064 | dependencies: 1065 | flat-cache: 3.0.4 1066 | dev: false 1067 | 1068 | /fill-range/7.0.1: 1069 | resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} 1070 | engines: {node: '>=8'} 1071 | dependencies: 1072 | to-regex-range: 5.0.1 1073 | dev: false 1074 | 1075 | /find-up/5.0.0: 1076 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} 1077 | engines: {node: '>=10'} 1078 | dependencies: 1079 | locate-path: 6.0.0 1080 | path-exists: 4.0.0 1081 | dev: false 1082 | 1083 | /flat-cache/3.0.4: 1084 | resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==} 1085 | engines: {node: ^10.12.0 || >=12.0.0} 1086 | dependencies: 1087 | flatted: 3.2.7 1088 | rimraf: 3.0.2 1089 | dev: false 1090 | 1091 | /flatted/3.2.7: 1092 | resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==} 1093 | dev: false 1094 | 1095 | /follow-redirects/1.15.2: 1096 | resolution: {integrity: sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==} 1097 | engines: {node: '>=4.0'} 1098 | peerDependencies: 1099 | debug: '*' 1100 | peerDependenciesMeta: 1101 | debug: 1102 | optional: true 1103 | dev: false 1104 | 1105 | /for-each/0.3.3: 1106 | resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} 1107 | dependencies: 1108 | is-callable: 1.2.7 1109 | dev: false 1110 | 1111 | /form-data/4.0.0: 1112 | resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} 1113 | engines: {node: '>= 6'} 1114 | dependencies: 1115 | asynckit: 0.4.0 1116 | combined-stream: 1.0.8 1117 | mime-types: 2.1.35 1118 | dev: false 1119 | 1120 | /fs.realpath/1.0.0: 1121 | resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} 1122 | dev: false 1123 | 1124 | /function-bind/1.1.1: 1125 | resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} 1126 | dev: false 1127 | 1128 | /function.prototype.name/1.1.5: 1129 | resolution: {integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==} 1130 | engines: {node: '>= 0.4'} 1131 | dependencies: 1132 | call-bind: 1.0.2 1133 | define-properties: 1.2.0 1134 | es-abstract: 1.21.2 1135 | functions-have-names: 1.2.3 1136 | dev: false 1137 | 1138 | /functions-have-names/1.2.3: 1139 | resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} 1140 | dev: false 1141 | 1142 | /get-intrinsic/1.2.0: 1143 | resolution: {integrity: sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==} 1144 | dependencies: 1145 | function-bind: 1.1.1 1146 | has: 1.0.3 1147 | has-symbols: 1.0.3 1148 | dev: false 1149 | 1150 | /get-symbol-description/1.0.0: 1151 | resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} 1152 | engines: {node: '>= 0.4'} 1153 | dependencies: 1154 | call-bind: 1.0.2 1155 | get-intrinsic: 1.2.0 1156 | dev: false 1157 | 1158 | /get-tsconfig/4.5.0: 1159 | resolution: {integrity: sha512-MjhiaIWCJ1sAU4pIQ5i5OfOuHHxVo1oYeNsWTON7jxYkod8pHocXeh+SSbmu5OZZZK73B6cbJ2XADzXehLyovQ==} 1160 | dev: false 1161 | 1162 | /glob-parent/5.1.2: 1163 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 1164 | engines: {node: '>= 6'} 1165 | dependencies: 1166 | is-glob: 4.0.3 1167 | dev: false 1168 | 1169 | /glob-parent/6.0.2: 1170 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} 1171 | engines: {node: '>=10.13.0'} 1172 | dependencies: 1173 | is-glob: 4.0.3 1174 | dev: false 1175 | 1176 | /glob/7.1.7: 1177 | resolution: {integrity: sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==} 1178 | dependencies: 1179 | fs.realpath: 1.0.0 1180 | inflight: 1.0.6 1181 | inherits: 2.0.4 1182 | minimatch: 3.1.2 1183 | once: 1.4.0 1184 | path-is-absolute: 1.0.1 1185 | dev: false 1186 | 1187 | /glob/7.2.3: 1188 | resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} 1189 | dependencies: 1190 | fs.realpath: 1.0.0 1191 | inflight: 1.0.6 1192 | inherits: 2.0.4 1193 | minimatch: 3.1.2 1194 | once: 1.4.0 1195 | path-is-absolute: 1.0.1 1196 | dev: false 1197 | 1198 | /globals/13.20.0: 1199 | resolution: {integrity: sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==} 1200 | engines: {node: '>=8'} 1201 | dependencies: 1202 | type-fest: 0.20.2 1203 | dev: false 1204 | 1205 | /globalthis/1.0.3: 1206 | resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} 1207 | engines: {node: '>= 0.4'} 1208 | dependencies: 1209 | define-properties: 1.2.0 1210 | dev: false 1211 | 1212 | /globalyzer/0.1.0: 1213 | resolution: {integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==} 1214 | dev: false 1215 | 1216 | /globby/11.1.0: 1217 | resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} 1218 | engines: {node: '>=10'} 1219 | dependencies: 1220 | array-union: 2.1.0 1221 | dir-glob: 3.0.1 1222 | fast-glob: 3.2.12 1223 | ignore: 5.2.4 1224 | merge2: 1.4.1 1225 | slash: 3.0.0 1226 | dev: false 1227 | 1228 | /globby/13.1.3: 1229 | resolution: {integrity: sha512-8krCNHXvlCgHDpegPzleMq07yMYTO2sXKASmZmquEYWEmCx6J5UTRbp5RwMJkTJGtcQ44YpiUYUiN0b9mzy8Bw==} 1230 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 1231 | dependencies: 1232 | dir-glob: 3.0.1 1233 | fast-glob: 3.2.12 1234 | ignore: 5.2.4 1235 | merge2: 1.4.1 1236 | slash: 4.0.0 1237 | dev: false 1238 | 1239 | /globrex/0.1.2: 1240 | resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==} 1241 | dev: false 1242 | 1243 | /gopd/1.0.1: 1244 | resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} 1245 | dependencies: 1246 | get-intrinsic: 1.2.0 1247 | dev: false 1248 | 1249 | /graceful-fs/4.2.11: 1250 | resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} 1251 | dev: false 1252 | 1253 | /grapheme-splitter/1.0.4: 1254 | resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==} 1255 | dev: false 1256 | 1257 | /has-bigints/1.0.2: 1258 | resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} 1259 | dev: false 1260 | 1261 | /has-flag/4.0.0: 1262 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 1263 | engines: {node: '>=8'} 1264 | dev: false 1265 | 1266 | /has-property-descriptors/1.0.0: 1267 | resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==} 1268 | dependencies: 1269 | get-intrinsic: 1.2.0 1270 | dev: false 1271 | 1272 | /has-proto/1.0.1: 1273 | resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==} 1274 | engines: {node: '>= 0.4'} 1275 | dev: false 1276 | 1277 | /has-symbols/1.0.3: 1278 | resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} 1279 | engines: {node: '>= 0.4'} 1280 | dev: false 1281 | 1282 | /has-tostringtag/1.0.0: 1283 | resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==} 1284 | engines: {node: '>= 0.4'} 1285 | dependencies: 1286 | has-symbols: 1.0.3 1287 | dev: false 1288 | 1289 | /has/1.0.3: 1290 | resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==} 1291 | engines: {node: '>= 0.4.0'} 1292 | dependencies: 1293 | function-bind: 1.1.1 1294 | dev: false 1295 | 1296 | /ignore/5.2.4: 1297 | resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==} 1298 | engines: {node: '>= 4'} 1299 | dev: false 1300 | 1301 | /import-fresh/3.3.0: 1302 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} 1303 | engines: {node: '>=6'} 1304 | dependencies: 1305 | parent-module: 1.0.1 1306 | resolve-from: 4.0.0 1307 | dev: false 1308 | 1309 | /imurmurhash/0.1.4: 1310 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} 1311 | engines: {node: '>=0.8.19'} 1312 | dev: false 1313 | 1314 | /inflight/1.0.6: 1315 | resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} 1316 | dependencies: 1317 | once: 1.4.0 1318 | wrappy: 1.0.2 1319 | dev: false 1320 | 1321 | /inherits/2.0.4: 1322 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} 1323 | dev: false 1324 | 1325 | /internal-slot/1.0.5: 1326 | resolution: {integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==} 1327 | engines: {node: '>= 0.4'} 1328 | dependencies: 1329 | get-intrinsic: 1.2.0 1330 | has: 1.0.3 1331 | side-channel: 1.0.4 1332 | dev: false 1333 | 1334 | /is-arguments/1.1.1: 1335 | resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==} 1336 | engines: {node: '>= 0.4'} 1337 | dependencies: 1338 | call-bind: 1.0.2 1339 | has-tostringtag: 1.0.0 1340 | dev: false 1341 | 1342 | /is-array-buffer/3.0.2: 1343 | resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==} 1344 | dependencies: 1345 | call-bind: 1.0.2 1346 | get-intrinsic: 1.2.0 1347 | is-typed-array: 1.1.10 1348 | dev: false 1349 | 1350 | /is-bigint/1.0.4: 1351 | resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} 1352 | dependencies: 1353 | has-bigints: 1.0.2 1354 | dev: false 1355 | 1356 | /is-boolean-object/1.1.2: 1357 | resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} 1358 | engines: {node: '>= 0.4'} 1359 | dependencies: 1360 | call-bind: 1.0.2 1361 | has-tostringtag: 1.0.0 1362 | dev: false 1363 | 1364 | /is-callable/1.2.7: 1365 | resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} 1366 | engines: {node: '>= 0.4'} 1367 | dev: false 1368 | 1369 | /is-core-module/2.12.0: 1370 | resolution: {integrity: sha512-RECHCBCd/viahWmwj6enj19sKbHfJrddi/6cBDsNTKbNq0f7VeaUkBo60BqzvPqo/W54ChS62Z5qyun7cfOMqQ==} 1371 | dependencies: 1372 | has: 1.0.3 1373 | dev: false 1374 | 1375 | /is-date-object/1.0.5: 1376 | resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} 1377 | engines: {node: '>= 0.4'} 1378 | dependencies: 1379 | has-tostringtag: 1.0.0 1380 | dev: false 1381 | 1382 | /is-docker/2.2.1: 1383 | resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} 1384 | engines: {node: '>=8'} 1385 | hasBin: true 1386 | dev: false 1387 | 1388 | /is-extglob/2.1.1: 1389 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 1390 | engines: {node: '>=0.10.0'} 1391 | dev: false 1392 | 1393 | /is-glob/4.0.3: 1394 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 1395 | engines: {node: '>=0.10.0'} 1396 | dependencies: 1397 | is-extglob: 2.1.1 1398 | dev: false 1399 | 1400 | /is-map/2.0.2: 1401 | resolution: {integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==} 1402 | dev: false 1403 | 1404 | /is-negative-zero/2.0.2: 1405 | resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==} 1406 | engines: {node: '>= 0.4'} 1407 | dev: false 1408 | 1409 | /is-number-object/1.0.7: 1410 | resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} 1411 | engines: {node: '>= 0.4'} 1412 | dependencies: 1413 | has-tostringtag: 1.0.0 1414 | dev: false 1415 | 1416 | /is-number/7.0.0: 1417 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 1418 | engines: {node: '>=0.12.0'} 1419 | dev: false 1420 | 1421 | /is-path-inside/3.0.3: 1422 | resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} 1423 | engines: {node: '>=8'} 1424 | dev: false 1425 | 1426 | /is-regex/1.1.4: 1427 | resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} 1428 | engines: {node: '>= 0.4'} 1429 | dependencies: 1430 | call-bind: 1.0.2 1431 | has-tostringtag: 1.0.0 1432 | dev: false 1433 | 1434 | /is-set/2.0.2: 1435 | resolution: {integrity: sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==} 1436 | dev: false 1437 | 1438 | /is-shared-array-buffer/1.0.2: 1439 | resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==} 1440 | dependencies: 1441 | call-bind: 1.0.2 1442 | dev: false 1443 | 1444 | /is-string/1.0.7: 1445 | resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} 1446 | engines: {node: '>= 0.4'} 1447 | dependencies: 1448 | has-tostringtag: 1.0.0 1449 | dev: false 1450 | 1451 | /is-symbol/1.0.4: 1452 | resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} 1453 | engines: {node: '>= 0.4'} 1454 | dependencies: 1455 | has-symbols: 1.0.3 1456 | dev: false 1457 | 1458 | /is-typed-array/1.1.10: 1459 | resolution: {integrity: sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==} 1460 | engines: {node: '>= 0.4'} 1461 | dependencies: 1462 | available-typed-arrays: 1.0.5 1463 | call-bind: 1.0.2 1464 | for-each: 0.3.3 1465 | gopd: 1.0.1 1466 | has-tostringtag: 1.0.0 1467 | dev: false 1468 | 1469 | /is-weakmap/2.0.1: 1470 | resolution: {integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==} 1471 | dev: false 1472 | 1473 | /is-weakref/1.0.2: 1474 | resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} 1475 | dependencies: 1476 | call-bind: 1.0.2 1477 | dev: false 1478 | 1479 | /is-weakset/2.0.2: 1480 | resolution: {integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==} 1481 | dependencies: 1482 | call-bind: 1.0.2 1483 | get-intrinsic: 1.2.0 1484 | dev: false 1485 | 1486 | /is-wsl/2.2.0: 1487 | resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} 1488 | engines: {node: '>=8'} 1489 | dependencies: 1490 | is-docker: 2.2.1 1491 | dev: false 1492 | 1493 | /isarray/2.0.5: 1494 | resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} 1495 | dev: false 1496 | 1497 | /isexe/2.0.0: 1498 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 1499 | dev: false 1500 | 1501 | /js-sdsl/4.4.0: 1502 | resolution: {integrity: sha512-FfVSdx6pJ41Oa+CF7RDaFmTnCaFhua+SNYQX74riGOpl96x+2jQCqEfQ2bnXu/5DPCqlRuiqyvTJM0Qjz26IVg==} 1503 | dev: false 1504 | 1505 | /js-tokens/4.0.0: 1506 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} 1507 | dev: false 1508 | 1509 | /js-yaml/4.1.0: 1510 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 1511 | hasBin: true 1512 | dependencies: 1513 | argparse: 2.0.1 1514 | dev: false 1515 | 1516 | /json-schema-traverse/0.4.1: 1517 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} 1518 | dev: false 1519 | 1520 | /json-stable-stringify-without-jsonify/1.0.1: 1521 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} 1522 | dev: false 1523 | 1524 | /json5/1.0.2: 1525 | resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} 1526 | hasBin: true 1527 | dependencies: 1528 | minimist: 1.2.8 1529 | dev: false 1530 | 1531 | /jsx-ast-utils/3.3.3: 1532 | resolution: {integrity: sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==} 1533 | engines: {node: '>=4.0'} 1534 | dependencies: 1535 | array-includes: 3.1.6 1536 | object.assign: 4.1.4 1537 | dev: false 1538 | 1539 | /language-subtag-registry/0.3.22: 1540 | resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==} 1541 | dev: false 1542 | 1543 | /language-tags/1.0.5: 1544 | resolution: {integrity: sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==} 1545 | dependencies: 1546 | language-subtag-registry: 0.3.22 1547 | dev: false 1548 | 1549 | /levn/0.4.1: 1550 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} 1551 | engines: {node: '>= 0.8.0'} 1552 | dependencies: 1553 | prelude-ls: 1.2.1 1554 | type-check: 0.4.0 1555 | dev: false 1556 | 1557 | /locate-path/6.0.0: 1558 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} 1559 | engines: {node: '>=10'} 1560 | dependencies: 1561 | p-locate: 5.0.0 1562 | dev: false 1563 | 1564 | /lodash.merge/4.6.2: 1565 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} 1566 | dev: false 1567 | 1568 | /loose-envify/1.4.0: 1569 | resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} 1570 | hasBin: true 1571 | dependencies: 1572 | js-tokens: 4.0.0 1573 | dev: false 1574 | 1575 | /lru-cache/6.0.0: 1576 | resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} 1577 | engines: {node: '>=10'} 1578 | dependencies: 1579 | yallist: 4.0.0 1580 | dev: false 1581 | 1582 | /merge2/1.4.1: 1583 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 1584 | engines: {node: '>= 8'} 1585 | dev: false 1586 | 1587 | /micromatch/4.0.5: 1588 | resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} 1589 | engines: {node: '>=8.6'} 1590 | dependencies: 1591 | braces: 3.0.2 1592 | picomatch: 2.3.1 1593 | dev: false 1594 | 1595 | /mime-db/1.52.0: 1596 | resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} 1597 | engines: {node: '>= 0.6'} 1598 | dev: false 1599 | 1600 | /mime-types/2.1.35: 1601 | resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} 1602 | engines: {node: '>= 0.6'} 1603 | dependencies: 1604 | mime-db: 1.52.0 1605 | dev: false 1606 | 1607 | /minimatch/3.1.2: 1608 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} 1609 | dependencies: 1610 | brace-expansion: 1.1.11 1611 | dev: false 1612 | 1613 | /minimist/1.2.8: 1614 | resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} 1615 | dev: false 1616 | 1617 | /ms/2.1.2: 1618 | resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} 1619 | dev: false 1620 | 1621 | /ms/2.1.3: 1622 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 1623 | dev: false 1624 | 1625 | /nanoid/3.3.6: 1626 | resolution: {integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==} 1627 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 1628 | hasBin: true 1629 | dev: false 1630 | 1631 | /natural-compare/1.4.0: 1632 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} 1633 | dev: false 1634 | 1635 | /next/13.3.0_biqbaboplfbrettd7655fr4n2y: 1636 | resolution: {integrity: sha512-OVTw8MpIPa12+DCUkPqRGPS3thlJPcwae2ZL4xti3iBff27goH024xy4q2lhlsdoYiKOi8Kz6uJoLW/GXwgfOA==} 1637 | engines: {node: '>=14.6.0'} 1638 | hasBin: true 1639 | peerDependencies: 1640 | '@opentelemetry/api': ^1.1.0 1641 | fibers: '>= 3.1.0' 1642 | node-sass: ^6.0.0 || ^7.0.0 1643 | react: ^18.2.0 1644 | react-dom: ^18.2.0 1645 | sass: ^1.3.0 1646 | peerDependenciesMeta: 1647 | '@opentelemetry/api': 1648 | optional: true 1649 | fibers: 1650 | optional: true 1651 | node-sass: 1652 | optional: true 1653 | sass: 1654 | optional: true 1655 | dependencies: 1656 | '@next/env': 13.3.0 1657 | '@swc/helpers': 0.4.14 1658 | busboy: 1.6.0 1659 | caniuse-lite: 1.0.30001478 1660 | postcss: 8.4.14 1661 | react: 18.2.0 1662 | react-dom: 18.2.0_react@18.2.0 1663 | styled-jsx: 5.1.1_react@18.2.0 1664 | optionalDependencies: 1665 | '@next/swc-darwin-arm64': 13.3.0 1666 | '@next/swc-darwin-x64': 13.3.0 1667 | '@next/swc-linux-arm64-gnu': 13.3.0 1668 | '@next/swc-linux-arm64-musl': 13.3.0 1669 | '@next/swc-linux-x64-gnu': 13.3.0 1670 | '@next/swc-linux-x64-musl': 13.3.0 1671 | '@next/swc-win32-arm64-msvc': 13.3.0 1672 | '@next/swc-win32-ia32-msvc': 13.3.0 1673 | '@next/swc-win32-x64-msvc': 13.3.0 1674 | transitivePeerDependencies: 1675 | - '@babel/core' 1676 | - babel-plugin-macros 1677 | dev: false 1678 | 1679 | /object-assign/4.1.1: 1680 | resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} 1681 | engines: {node: '>=0.10.0'} 1682 | dev: false 1683 | 1684 | /object-code/1.2.4: 1685 | resolution: {integrity: sha512-uGq4ETUuWe+GA586NXEriiaozNuff+YNFXlpD8cVrM1GoiuTZpCABP+bZCWDrvQDoCiSTyiWAFHD/HF/iwhb2w==} 1686 | dev: false 1687 | 1688 | /object-inspect/1.12.3: 1689 | resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==} 1690 | dev: false 1691 | 1692 | /object-is/1.1.5: 1693 | resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==} 1694 | engines: {node: '>= 0.4'} 1695 | dependencies: 1696 | call-bind: 1.0.2 1697 | define-properties: 1.2.0 1698 | dev: false 1699 | 1700 | /object-keys/1.1.1: 1701 | resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} 1702 | engines: {node: '>= 0.4'} 1703 | dev: false 1704 | 1705 | /object.assign/4.1.4: 1706 | resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==} 1707 | engines: {node: '>= 0.4'} 1708 | dependencies: 1709 | call-bind: 1.0.2 1710 | define-properties: 1.2.0 1711 | has-symbols: 1.0.3 1712 | object-keys: 1.1.1 1713 | dev: false 1714 | 1715 | /object.entries/1.1.6: 1716 | resolution: {integrity: sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==} 1717 | engines: {node: '>= 0.4'} 1718 | dependencies: 1719 | call-bind: 1.0.2 1720 | define-properties: 1.2.0 1721 | es-abstract: 1.21.2 1722 | dev: false 1723 | 1724 | /object.fromentries/2.0.6: 1725 | resolution: {integrity: sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==} 1726 | engines: {node: '>= 0.4'} 1727 | dependencies: 1728 | call-bind: 1.0.2 1729 | define-properties: 1.2.0 1730 | es-abstract: 1.21.2 1731 | dev: false 1732 | 1733 | /object.hasown/1.1.2: 1734 | resolution: {integrity: sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==} 1735 | dependencies: 1736 | define-properties: 1.2.0 1737 | es-abstract: 1.21.2 1738 | dev: false 1739 | 1740 | /object.values/1.1.6: 1741 | resolution: {integrity: sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==} 1742 | engines: {node: '>= 0.4'} 1743 | dependencies: 1744 | call-bind: 1.0.2 1745 | define-properties: 1.2.0 1746 | es-abstract: 1.21.2 1747 | dev: false 1748 | 1749 | /once/1.4.0: 1750 | resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} 1751 | dependencies: 1752 | wrappy: 1.0.2 1753 | dev: false 1754 | 1755 | /open/8.4.2: 1756 | resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==} 1757 | engines: {node: '>=12'} 1758 | dependencies: 1759 | define-lazy-prop: 2.0.0 1760 | is-docker: 2.2.1 1761 | is-wsl: 2.2.0 1762 | dev: false 1763 | 1764 | /optionator/0.9.1: 1765 | resolution: {integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==} 1766 | engines: {node: '>= 0.8.0'} 1767 | dependencies: 1768 | deep-is: 0.1.4 1769 | fast-levenshtein: 2.0.6 1770 | levn: 0.4.1 1771 | prelude-ls: 1.2.1 1772 | type-check: 0.4.0 1773 | word-wrap: 1.2.3 1774 | dev: false 1775 | 1776 | /p-limit/3.1.0: 1777 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} 1778 | engines: {node: '>=10'} 1779 | dependencies: 1780 | yocto-queue: 0.1.0 1781 | dev: false 1782 | 1783 | /p-locate/5.0.0: 1784 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} 1785 | engines: {node: '>=10'} 1786 | dependencies: 1787 | p-limit: 3.1.0 1788 | dev: false 1789 | 1790 | /parent-module/1.0.1: 1791 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} 1792 | engines: {node: '>=6'} 1793 | dependencies: 1794 | callsites: 3.1.0 1795 | dev: false 1796 | 1797 | /path-exists/4.0.0: 1798 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} 1799 | engines: {node: '>=8'} 1800 | dev: false 1801 | 1802 | /path-is-absolute/1.0.1: 1803 | resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} 1804 | engines: {node: '>=0.10.0'} 1805 | dev: false 1806 | 1807 | /path-key/3.1.1: 1808 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 1809 | engines: {node: '>=8'} 1810 | dev: false 1811 | 1812 | /path-parse/1.0.7: 1813 | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} 1814 | dev: false 1815 | 1816 | /path-type/4.0.0: 1817 | resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} 1818 | engines: {node: '>=8'} 1819 | dev: false 1820 | 1821 | /picocolors/1.0.0: 1822 | resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} 1823 | dev: false 1824 | 1825 | /picomatch/2.3.1: 1826 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 1827 | engines: {node: '>=8.6'} 1828 | dev: false 1829 | 1830 | /pokenode-ts/1.18.3_vdvhiudevnv5n3umrklxpgeviq: 1831 | resolution: {integrity: sha512-sRVrcdIpoIS1LRckma+tIUOBI595eDTYhCXm1n/dhZQHKZQ0f+dZwf+Mi2OrwvGHZD8orReMl7CiS6R7+ZUuVw==} 1832 | engines: {node: '>=14'} 1833 | peerDependencies: 1834 | axios: ^1.3.3 1835 | axios-cache-interceptor: ^1.0.1 1836 | dependencies: 1837 | axios: 1.3.5 1838 | axios-cache-interceptor: 1.0.1_axios@1.3.5 1839 | dev: false 1840 | 1841 | /postcss/8.4.14: 1842 | resolution: {integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==} 1843 | engines: {node: ^10 || ^12 || >=14} 1844 | dependencies: 1845 | nanoid: 3.3.6 1846 | picocolors: 1.0.0 1847 | source-map-js: 1.0.2 1848 | dev: false 1849 | 1850 | /prelude-ls/1.2.1: 1851 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} 1852 | engines: {node: '>= 0.8.0'} 1853 | dev: false 1854 | 1855 | /prop-types/15.8.1: 1856 | resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} 1857 | dependencies: 1858 | loose-envify: 1.4.0 1859 | object-assign: 4.1.1 1860 | react-is: 16.13.1 1861 | dev: false 1862 | 1863 | /proxy-from-env/1.1.0: 1864 | resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} 1865 | dev: false 1866 | 1867 | /punycode/2.3.0: 1868 | resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==} 1869 | engines: {node: '>=6'} 1870 | dev: false 1871 | 1872 | /queue-microtask/1.2.3: 1873 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 1874 | dev: false 1875 | 1876 | /react-dom/18.2.0_react@18.2.0: 1877 | resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==} 1878 | peerDependencies: 1879 | react: ^18.2.0 1880 | dependencies: 1881 | loose-envify: 1.4.0 1882 | react: 18.2.0 1883 | scheduler: 0.23.0 1884 | dev: false 1885 | 1886 | /react-is/16.13.1: 1887 | resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} 1888 | dev: false 1889 | 1890 | /react/18.2.0: 1891 | resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} 1892 | engines: {node: '>=0.10.0'} 1893 | dependencies: 1894 | loose-envify: 1.4.0 1895 | dev: false 1896 | 1897 | /regenerator-runtime/0.13.11: 1898 | resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==} 1899 | dev: false 1900 | 1901 | /regexp.prototype.flags/1.4.3: 1902 | resolution: {integrity: sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==} 1903 | engines: {node: '>= 0.4'} 1904 | dependencies: 1905 | call-bind: 1.0.2 1906 | define-properties: 1.2.0 1907 | functions-have-names: 1.2.3 1908 | dev: false 1909 | 1910 | /resolve-from/4.0.0: 1911 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} 1912 | engines: {node: '>=4'} 1913 | dev: false 1914 | 1915 | /resolve/1.22.2: 1916 | resolution: {integrity: sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==} 1917 | hasBin: true 1918 | dependencies: 1919 | is-core-module: 2.12.0 1920 | path-parse: 1.0.7 1921 | supports-preserve-symlinks-flag: 1.0.0 1922 | dev: false 1923 | 1924 | /resolve/2.0.0-next.4: 1925 | resolution: {integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==} 1926 | hasBin: true 1927 | dependencies: 1928 | is-core-module: 2.12.0 1929 | path-parse: 1.0.7 1930 | supports-preserve-symlinks-flag: 1.0.0 1931 | dev: false 1932 | 1933 | /reusify/1.0.4: 1934 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} 1935 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 1936 | dev: false 1937 | 1938 | /rimraf/3.0.2: 1939 | resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} 1940 | hasBin: true 1941 | dependencies: 1942 | glob: 7.2.3 1943 | dev: false 1944 | 1945 | /run-parallel/1.2.0: 1946 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 1947 | dependencies: 1948 | queue-microtask: 1.2.3 1949 | dev: false 1950 | 1951 | /safe-regex-test/1.0.0: 1952 | resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==} 1953 | dependencies: 1954 | call-bind: 1.0.2 1955 | get-intrinsic: 1.2.0 1956 | is-regex: 1.1.4 1957 | dev: false 1958 | 1959 | /scheduler/0.23.0: 1960 | resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==} 1961 | dependencies: 1962 | loose-envify: 1.4.0 1963 | dev: false 1964 | 1965 | /semver/6.3.0: 1966 | resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==} 1967 | hasBin: true 1968 | dev: false 1969 | 1970 | /semver/7.4.0: 1971 | resolution: {integrity: sha512-RgOxM8Mw+7Zus0+zcLEUn8+JfoLpj/huFTItQy2hsM4khuC1HYRDp0cU482Ewn/Fcy6bCjufD8vAj7voC66KQw==} 1972 | engines: {node: '>=10'} 1973 | hasBin: true 1974 | dependencies: 1975 | lru-cache: 6.0.0 1976 | dev: false 1977 | 1978 | /shebang-command/2.0.0: 1979 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 1980 | engines: {node: '>=8'} 1981 | dependencies: 1982 | shebang-regex: 3.0.0 1983 | dev: false 1984 | 1985 | /shebang-regex/3.0.0: 1986 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 1987 | engines: {node: '>=8'} 1988 | dev: false 1989 | 1990 | /side-channel/1.0.4: 1991 | resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} 1992 | dependencies: 1993 | call-bind: 1.0.2 1994 | get-intrinsic: 1.2.0 1995 | object-inspect: 1.12.3 1996 | dev: false 1997 | 1998 | /slash/3.0.0: 1999 | resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} 2000 | engines: {node: '>=8'} 2001 | dev: false 2002 | 2003 | /slash/4.0.0: 2004 | resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==} 2005 | engines: {node: '>=12'} 2006 | dev: false 2007 | 2008 | /source-map-js/1.0.2: 2009 | resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} 2010 | engines: {node: '>=0.10.0'} 2011 | dev: false 2012 | 2013 | /stop-iteration-iterator/1.0.0: 2014 | resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==} 2015 | engines: {node: '>= 0.4'} 2016 | dependencies: 2017 | internal-slot: 1.0.5 2018 | dev: false 2019 | 2020 | /streamsearch/1.1.0: 2021 | resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==} 2022 | engines: {node: '>=10.0.0'} 2023 | dev: false 2024 | 2025 | /string.prototype.matchall/4.0.8: 2026 | resolution: {integrity: sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==} 2027 | dependencies: 2028 | call-bind: 1.0.2 2029 | define-properties: 1.2.0 2030 | es-abstract: 1.21.2 2031 | get-intrinsic: 1.2.0 2032 | has-symbols: 1.0.3 2033 | internal-slot: 1.0.5 2034 | regexp.prototype.flags: 1.4.3 2035 | side-channel: 1.0.4 2036 | dev: false 2037 | 2038 | /string.prototype.trim/1.2.7: 2039 | resolution: {integrity: sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==} 2040 | engines: {node: '>= 0.4'} 2041 | dependencies: 2042 | call-bind: 1.0.2 2043 | define-properties: 1.2.0 2044 | es-abstract: 1.21.2 2045 | dev: false 2046 | 2047 | /string.prototype.trimend/1.0.6: 2048 | resolution: {integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==} 2049 | dependencies: 2050 | call-bind: 1.0.2 2051 | define-properties: 1.2.0 2052 | es-abstract: 1.21.2 2053 | dev: false 2054 | 2055 | /string.prototype.trimstart/1.0.6: 2056 | resolution: {integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==} 2057 | dependencies: 2058 | call-bind: 1.0.2 2059 | define-properties: 1.2.0 2060 | es-abstract: 1.21.2 2061 | dev: false 2062 | 2063 | /strip-ansi/6.0.1: 2064 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 2065 | engines: {node: '>=8'} 2066 | dependencies: 2067 | ansi-regex: 5.0.1 2068 | dev: false 2069 | 2070 | /strip-bom/3.0.0: 2071 | resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} 2072 | engines: {node: '>=4'} 2073 | dev: false 2074 | 2075 | /strip-json-comments/3.1.1: 2076 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} 2077 | engines: {node: '>=8'} 2078 | dev: false 2079 | 2080 | /styled-jsx/5.1.1_react@18.2.0: 2081 | resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==} 2082 | engines: {node: '>= 12.0.0'} 2083 | peerDependencies: 2084 | '@babel/core': '*' 2085 | babel-plugin-macros: '*' 2086 | react: '>= 16.8.0 || 17.x.x || ^18.0.0-0' 2087 | peerDependenciesMeta: 2088 | '@babel/core': 2089 | optional: true 2090 | babel-plugin-macros: 2091 | optional: true 2092 | dependencies: 2093 | client-only: 0.0.1 2094 | react: 18.2.0 2095 | dev: false 2096 | 2097 | /supports-color/7.2.0: 2098 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 2099 | engines: {node: '>=8'} 2100 | dependencies: 2101 | has-flag: 4.0.0 2102 | dev: false 2103 | 2104 | /supports-preserve-symlinks-flag/1.0.0: 2105 | resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} 2106 | engines: {node: '>= 0.4'} 2107 | dev: false 2108 | 2109 | /synckit/0.8.5: 2110 | resolution: {integrity: sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==} 2111 | engines: {node: ^14.18.0 || >=16.0.0} 2112 | dependencies: 2113 | '@pkgr/utils': 2.3.1 2114 | tslib: 2.5.0 2115 | dev: false 2116 | 2117 | /tapable/2.2.1: 2118 | resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} 2119 | engines: {node: '>=6'} 2120 | dev: false 2121 | 2122 | /text-table/0.2.0: 2123 | resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} 2124 | dev: false 2125 | 2126 | /tiny-glob/0.2.9: 2127 | resolution: {integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==} 2128 | dependencies: 2129 | globalyzer: 0.1.0 2130 | globrex: 0.1.2 2131 | dev: false 2132 | 2133 | /to-regex-range/5.0.1: 2134 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 2135 | engines: {node: '>=8.0'} 2136 | dependencies: 2137 | is-number: 7.0.0 2138 | dev: false 2139 | 2140 | /tsconfig-paths/3.14.2: 2141 | resolution: {integrity: sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==} 2142 | dependencies: 2143 | '@types/json5': 0.0.29 2144 | json5: 1.0.2 2145 | minimist: 1.2.8 2146 | strip-bom: 3.0.0 2147 | dev: false 2148 | 2149 | /tslib/1.14.1: 2150 | resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} 2151 | dev: false 2152 | 2153 | /tslib/2.5.0: 2154 | resolution: {integrity: sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==} 2155 | dev: false 2156 | 2157 | /tsutils/3.21.0_typescript@5.0.4: 2158 | resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} 2159 | engines: {node: '>= 6'} 2160 | peerDependencies: 2161 | typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' 2162 | dependencies: 2163 | tslib: 1.14.1 2164 | typescript: 5.0.4 2165 | dev: false 2166 | 2167 | /type-check/0.4.0: 2168 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} 2169 | engines: {node: '>= 0.8.0'} 2170 | dependencies: 2171 | prelude-ls: 1.2.1 2172 | dev: false 2173 | 2174 | /type-fest/0.20.2: 2175 | resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} 2176 | engines: {node: '>=10'} 2177 | dev: false 2178 | 2179 | /typed-array-length/1.0.4: 2180 | resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==} 2181 | dependencies: 2182 | call-bind: 1.0.2 2183 | for-each: 0.3.3 2184 | is-typed-array: 1.1.10 2185 | dev: false 2186 | 2187 | /typescript/5.0.4: 2188 | resolution: {integrity: sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw==} 2189 | engines: {node: '>=12.20'} 2190 | hasBin: true 2191 | dev: false 2192 | 2193 | /unbox-primitive/1.0.2: 2194 | resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} 2195 | dependencies: 2196 | call-bind: 1.0.2 2197 | has-bigints: 1.0.2 2198 | has-symbols: 1.0.3 2199 | which-boxed-primitive: 1.0.2 2200 | dev: false 2201 | 2202 | /uri-js/4.4.1: 2203 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} 2204 | dependencies: 2205 | punycode: 2.3.0 2206 | dev: false 2207 | 2208 | /which-boxed-primitive/1.0.2: 2209 | resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} 2210 | dependencies: 2211 | is-bigint: 1.0.4 2212 | is-boolean-object: 1.1.2 2213 | is-number-object: 1.0.7 2214 | is-string: 1.0.7 2215 | is-symbol: 1.0.4 2216 | dev: false 2217 | 2218 | /which-collection/1.0.1: 2219 | resolution: {integrity: sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==} 2220 | dependencies: 2221 | is-map: 2.0.2 2222 | is-set: 2.0.2 2223 | is-weakmap: 2.0.1 2224 | is-weakset: 2.0.2 2225 | dev: false 2226 | 2227 | /which-typed-array/1.1.9: 2228 | resolution: {integrity: sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==} 2229 | engines: {node: '>= 0.4'} 2230 | dependencies: 2231 | available-typed-arrays: 1.0.5 2232 | call-bind: 1.0.2 2233 | for-each: 0.3.3 2234 | gopd: 1.0.1 2235 | has-tostringtag: 1.0.0 2236 | is-typed-array: 1.1.10 2237 | dev: false 2238 | 2239 | /which/2.0.2: 2240 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 2241 | engines: {node: '>= 8'} 2242 | hasBin: true 2243 | dependencies: 2244 | isexe: 2.0.0 2245 | dev: false 2246 | 2247 | /word-wrap/1.2.3: 2248 | resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==} 2249 | engines: {node: '>=0.10.0'} 2250 | dev: false 2251 | 2252 | /wrappy/1.0.2: 2253 | resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} 2254 | dev: false 2255 | 2256 | /yallist/4.0.0: 2257 | resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} 2258 | dev: false 2259 | 2260 | /yocto-queue/0.1.0: 2261 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} 2262 | engines: {node: '>=10'} 2263 | dev: false 2264 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zi-dot/nextjs-view-transitions-api/4026a8f0985cb5281eb09e74d6a00f8b0cd3b33c/public/favicon.ico -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/types/bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zi-dot/nextjs-view-transitions-api/4026a8f0985cb5281eb09e74d6a00f8b0cd3b33c/public/types/bug.png -------------------------------------------------------------------------------- /public/types/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zi-dot/nextjs-view-transitions-api/4026a8f0985cb5281eb09e74d6a00f8b0cd3b33c/public/types/dark.png -------------------------------------------------------------------------------- /public/types/dragon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zi-dot/nextjs-view-transitions-api/4026a8f0985cb5281eb09e74d6a00f8b0cd3b33c/public/types/dragon.png -------------------------------------------------------------------------------- /public/types/electric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zi-dot/nextjs-view-transitions-api/4026a8f0985cb5281eb09e74d6a00f8b0cd3b33c/public/types/electric.png -------------------------------------------------------------------------------- /public/types/fairy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zi-dot/nextjs-view-transitions-api/4026a8f0985cb5281eb09e74d6a00f8b0cd3b33c/public/types/fairy.png -------------------------------------------------------------------------------- /public/types/fighting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zi-dot/nextjs-view-transitions-api/4026a8f0985cb5281eb09e74d6a00f8b0cd3b33c/public/types/fighting.png -------------------------------------------------------------------------------- /public/types/fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zi-dot/nextjs-view-transitions-api/4026a8f0985cb5281eb09e74d6a00f8b0cd3b33c/public/types/fire.png -------------------------------------------------------------------------------- /public/types/flying.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zi-dot/nextjs-view-transitions-api/4026a8f0985cb5281eb09e74d6a00f8b0cd3b33c/public/types/flying.png -------------------------------------------------------------------------------- /public/types/ghost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zi-dot/nextjs-view-transitions-api/4026a8f0985cb5281eb09e74d6a00f8b0cd3b33c/public/types/ghost.png -------------------------------------------------------------------------------- /public/types/grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zi-dot/nextjs-view-transitions-api/4026a8f0985cb5281eb09e74d6a00f8b0cd3b33c/public/types/grass.png -------------------------------------------------------------------------------- /public/types/ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zi-dot/nextjs-view-transitions-api/4026a8f0985cb5281eb09e74d6a00f8b0cd3b33c/public/types/ground.png -------------------------------------------------------------------------------- /public/types/ice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zi-dot/nextjs-view-transitions-api/4026a8f0985cb5281eb09e74d6a00f8b0cd3b33c/public/types/ice.png -------------------------------------------------------------------------------- /public/types/normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zi-dot/nextjs-view-transitions-api/4026a8f0985cb5281eb09e74d6a00f8b0cd3b33c/public/types/normal.png -------------------------------------------------------------------------------- /public/types/poison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zi-dot/nextjs-view-transitions-api/4026a8f0985cb5281eb09e74d6a00f8b0cd3b33c/public/types/poison.png -------------------------------------------------------------------------------- /public/types/psychic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zi-dot/nextjs-view-transitions-api/4026a8f0985cb5281eb09e74d6a00f8b0cd3b33c/public/types/psychic.png -------------------------------------------------------------------------------- /public/types/rock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zi-dot/nextjs-view-transitions-api/4026a8f0985cb5281eb09e74d6a00f8b0cd3b33c/public/types/rock.png -------------------------------------------------------------------------------- /public/types/steel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zi-dot/nextjs-view-transitions-api/4026a8f0985cb5281eb09e74d6a00f8b0cd3b33c/public/types/steel.png -------------------------------------------------------------------------------- /public/types/water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zi-dot/nextjs-view-transitions-api/4026a8f0985cb5281eb09e74d6a00f8b0cd3b33c/public/types/water.png -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/layout/index.module.css: -------------------------------------------------------------------------------- 1 | .layout { 2 | display: grid; 3 | grid-template-areas: 4 | "header" 5 | "content"; 6 | min-height: 100vh; 7 | grid-template-rows: 1fr 4fr; 8 | align-items: start; 9 | } 10 | 11 | .header { 12 | grid-area: header; 13 | } 14 | 15 | .content { 16 | grid-area: content; 17 | } 18 | 19 | @media (min-width: 868px) { 20 | .layout { 21 | grid-template-areas: "header content"; 22 | grid-template-columns: 2fr 3fr; 23 | grid-template-rows: none; 24 | align-items: center; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /src/components/layout/index.tsx: -------------------------------------------------------------------------------- 1 | import { FC } from "react"; 2 | import { BaseHeader } from "../shared/BaseHeader"; 3 | import styles from "./index.module.css"; 4 | 5 | type Props = { 6 | children: React.ReactNode; 7 | }; 8 | 9 | export const Layout: FC = ({ children }) => { 10 | return ( 11 |
12 |
13 | 14 |
15 |
{children}
16 |
17 | ); 18 | }; 19 | -------------------------------------------------------------------------------- /src/components/pokemon/DetailDescription/index.module.css: -------------------------------------------------------------------------------- 1 | .section { 2 | padding: 0 32px; 3 | display: flex; 4 | flex-direction: column; 5 | align-items: center; 6 | justify-content: center; 7 | height: 100%; 8 | } 9 | 10 | .pokemonTypes { 11 | padding: 0; 12 | list-style: none; 13 | display: flex; 14 | justify-content: center; 15 | gap: 8px; 16 | } 17 | 18 | .pokemonImageOuter { 19 | position: relative; 20 | width: 100px; 21 | height: 100px; 22 | z-index: 2; 23 | margin-bottom: 16px; 24 | } 25 | 26 | .pokemonImageOuter::after { 27 | content: ""; 28 | display: block; 29 | width: 100%; 30 | height: 100%; 31 | position: absolute; 32 | top: 50%; 33 | left: 50%; 34 | transform: translate(-50%, -50%); 35 | background-color: #fff; 36 | border-radius: 50%; 37 | z-index: -1; 38 | } 39 | 40 | .pokemonImage { 41 | object-fit: contain; 42 | width: 100%; 43 | height: 100%; 44 | } 45 | -------------------------------------------------------------------------------- /src/components/pokemon/DetailDescription/index.tsx: -------------------------------------------------------------------------------- 1 | import Image from "next/image"; 2 | import { FC } from "react"; 3 | import styles from "./index.module.css"; 4 | 5 | type Props = { 6 | no: number; 7 | name: string; 8 | sprite: string; 9 | types: string[]; 10 | flavorText: string; 11 | }; 12 | 13 | export const DetailDescription: FC = ({ 14 | no, 15 | name, 16 | sprite, 17 | types, 18 | flavorText, 19 | }) => { 20 | return ( 21 |
22 |
23 | 33 |
34 | 35 |

No. {no}

36 |

{name}

37 |
    38 | {types.map((type) => ( 39 |
  • 40 | {type} 46 |
  • 47 | ))} 48 |
49 |

{flavorText}

50 |
51 | ); 52 | }; 53 | -------------------------------------------------------------------------------- /src/components/pokemon/Tile/index.module.css: -------------------------------------------------------------------------------- 1 | .pokemonTile { 2 | padding: 20px; 3 | border-radius: 10px; 4 | transition: all 0.3s ease-in-out; 5 | } 6 | 7 | .pokemonTile:hover { 8 | box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2); 9 | } 10 | 11 | .pokemonImageOuter { 12 | position: relative; 13 | width: 100px; 14 | height: 100px; 15 | z-index: 2; 16 | } 17 | 18 | .pokemonImage { 19 | object-fit: scale-down; 20 | width: 100%; 21 | height: 100%; 22 | } 23 | 24 | .pokemonImageOuter::after { 25 | content: ""; 26 | display: block; 27 | width: 65%; 28 | height: 65%; 29 | position: absolute; 30 | top: 50%; 31 | left: 50%; 32 | transform: translate(-50%, -50%); 33 | background-color: #fff; 34 | border-radius: 50%; 35 | z-index: -1; 36 | } 37 | 38 | .pokemonTypes { 39 | padding: 0; 40 | list-style: none; 41 | display: flex; 42 | justify-content: center; 43 | gap: 8px; 44 | } 45 | 46 | @media screen and (min-width: 768px) { 47 | .pokemonImageOuter { 48 | width: 100px; 49 | height: 100px; 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /src/components/pokemon/Tile/index.tsx: -------------------------------------------------------------------------------- 1 | import Image from "next/image"; 2 | import styles from "./index.module.css"; 3 | import { FC } from "react"; 4 | import { TransitionLink } from "@/components/shared/TransitionLink"; 5 | 6 | type Props = { 7 | no: number; 8 | name: string; 9 | image: string; 10 | types: string[]; 11 | }; 12 | 13 | export const PokemonTile: FC = ({ no, name, image, types }) => { 14 | return ( 15 | 16 |
17 |
18 | {name} 28 |
29 |
    30 | {types.map((type) => ( 31 |
  • 32 | {type} 38 |
  • 39 | ))} 40 |
41 |
42 |
43 | ); 44 | }; 45 | -------------------------------------------------------------------------------- /src/components/shared/BaseHeader/index.module.css: -------------------------------------------------------------------------------- 1 | .header { 2 | width: 100%; 3 | display: grid; 4 | place-items: center; 5 | height: 100%; 6 | } 7 | 8 | .headerTitle { 9 | font-weight: bold; 10 | font-size: 2rem; 11 | color: #222; 12 | line-height: 1.5; 13 | display: grid; 14 | place-items: center; 15 | border-bottom: 8px solid #fec55b; 16 | padding: 1rem; 17 | } 18 | 19 | @media screen and (min-width: 768px) { 20 | .headerTitle { 21 | font-size: 3rem; 22 | border-bottom-width: 16px; 23 | padding: 0; 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /src/components/shared/BaseHeader/index.tsx: -------------------------------------------------------------------------------- 1 | import clsx from "clsx"; 2 | import styles from "./index.module.css"; 3 | import viewTransitionName from "@/styles/viewTransitionName.module.css"; 4 | import { Inter } from "next/font/google"; 5 | import { FC } from "react"; 6 | import { TransitionLink } from "../TransitionLink"; 7 | 8 | const inter = Inter({ subsets: ["latin"] }); 9 | 10 | export const BaseHeader: FC = () => { 11 | return ( 12 |
19 | 20 |

23 | 好きな 24 |
25 | ポケモンたち 26 |

27 |
28 |
29 | ); 30 | }; 31 | -------------------------------------------------------------------------------- /src/components/shared/PrevAndNext/index.module.css: -------------------------------------------------------------------------------- 1 | .prevAndNext { 2 | list-style: none; 3 | padding: 0; 4 | display: flex; 5 | justify-content: space-between; 6 | width: 60%; 7 | margin: 0 auto; 8 | margin-top: 4rem; 9 | } 10 | 11 | .prevAndNextButton { 12 | background-color: white; 13 | border-radius: 5px; 14 | box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); 15 | padding: 0.5rem 1rem; 16 | display: grid; 17 | place-items: center; 18 | font-weight: bold; 19 | font-size: 1.2rem; 20 | color: #000; 21 | text-decoration: none; 22 | transition: all 0.15s ease-in-out; 23 | } 24 | 25 | .prevAndNextButton:hover { 26 | background-color: #f5f5f5; 27 | box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2); 28 | } 29 | 30 | .disabled { 31 | background-color: #ccc; 32 | cursor: not-allowed; 33 | } 34 | -------------------------------------------------------------------------------- /src/components/shared/PrevAndNext/index.tsx: -------------------------------------------------------------------------------- 1 | import { FC } from "react"; 2 | import { TransitionLink } from "../TransitionLink"; 3 | 4 | import viewTransitionName from "@/styles/viewTransitionName.module.css"; 5 | import styles from "./index.module.css"; 6 | import clsx from "clsx"; 7 | 8 | type Props = { 9 | nextHref: string | null; 10 | prevHref: string | null; 11 | }; 12 | 13 | export const PrevAndNext: FC = ({ nextHref, prevHref }) => { 14 | return ( 15 |
    21 |
  • 22 | 23 | 29 | {"<"} 30 | 31 | 32 |
  • 33 |
  • 34 | 35 | 41 | {">"} 42 | 43 | 44 |
  • 45 |
46 | ); 47 | }; 48 | -------------------------------------------------------------------------------- /src/components/shared/TransitionLink/index.tsx: -------------------------------------------------------------------------------- 1 | import { useTransitionRouterPush } from "@/hooks/useTransitionRouterPush"; 2 | import Link from "next/link"; 3 | import { FC, useCallback } from "react"; 4 | 5 | type Props = { 6 | href?: string; 7 | children: React.ReactNode; 8 | onClick?: (e: React.MouseEvent) => void; 9 | }; 10 | 11 | export const TransitionLink: FC = ({ href, children, onClick }) => { 12 | const { routerPushWithTransition } = useTransitionRouterPush(); 13 | 14 | const handleClick = useCallback( 15 | (e: React.MouseEvent) => { 16 | e.preventDefault(); 17 | if (onClick) { 18 | onClick(e); 19 | } 20 | 21 | const to = e.currentTarget.href; 22 | routerPushWithTransition(to); 23 | }, 24 | [routerPushWithTransition, onClick] 25 | ); 26 | 27 | if (href === undefined) { 28 | return <>{children}; 29 | } 30 | 31 | return ( 32 | 33 | {children} 34 | 35 | ); 36 | }; 37 | -------------------------------------------------------------------------------- /src/hooks/useTransitionRouterPush/index.ts: -------------------------------------------------------------------------------- 1 | import { useRouter } from "next/router"; 2 | import { useCallback } from "react"; 3 | import { useViewTransition } from "../useViewTransition"; 4 | 5 | export const useTransitionRouterPush = () => { 6 | const router = useRouter(); 7 | const routerPush = useCallback( 8 | async (to: string) => { 9 | await router.push(to); 10 | }, 11 | [router] 12 | ); 13 | const { startViewTransition: routerPushWithTransition } = 14 | useViewTransition(routerPush); 15 | 16 | return { routerPushWithTransition }; 17 | }; 18 | -------------------------------------------------------------------------------- /src/hooks/useViewTransition/index.ts: -------------------------------------------------------------------------------- 1 | export const useViewTransition = void>( 2 | callback: T 3 | ) => { 4 | const startViewTransition = (...args: Parameters) => { 5 | if (!(document as any).startViewTransition) { 6 | callback(...args); 7 | return; 8 | } 9 | 10 | (document as any).startViewTransition(async () => { 11 | await Promise.resolve(callback(...args)); 12 | }); 13 | }; 14 | return { startViewTransition }; 15 | }; 16 | -------------------------------------------------------------------------------- /src/lib/pokemon.ts: -------------------------------------------------------------------------------- 1 | import { PokemonClient } from "pokenode-ts"; 2 | 3 | export type PokemonInfo = { 4 | no: number; 5 | name: string; 6 | sprite: string | null; 7 | animatedSprite: string | null; 8 | types: string[]; 9 | }; 10 | 11 | export type PokemonDetailInfo = PokemonInfo & { 12 | flavorText: string; 13 | }; 14 | 15 | export const FAVORITE_POKEMON_IDS = [4, 25, 94, 151, 158, 374]; 16 | 17 | export const getClient = () => { 18 | return new PokemonClient(); 19 | }; 20 | 21 | export const getPokemonDetailById = async (id: number) => { 22 | const pokemon = await getClient().getPokemonById(id); 23 | const species = await getClient().getPokemonSpeciesById(id); 24 | 25 | const pokemonInfo: PokemonDetailInfo = { 26 | no: pokemon.id, 27 | name: pokemon.name, 28 | sprite: pokemon.sprites.front_default, 29 | animatedSprite: 30 | pokemon.sprites.versions["generation-v"]["black-white"].animated 31 | .front_default, 32 | types: pokemon.types.map((t) => t.type.name), 33 | flavorText: species.flavor_text_entries[0].flavor_text, 34 | }; 35 | 36 | return pokemonInfo; 37 | }; 38 | 39 | export const listFavoritePokemons = async () => { 40 | const list = await Promise.all( 41 | FAVORITE_POKEMON_IDS.map(async (id) => { 42 | return await getClient().getPokemonById(id); 43 | }) 44 | ); 45 | const pokemonInfos: PokemonInfo[] = []; 46 | 47 | for (const pokemon of list) { 48 | pokemonInfos.push({ 49 | no: pokemon.id, 50 | name: pokemon.name, 51 | sprite: pokemon.sprites.front_default, 52 | animatedSprite: 53 | pokemon.sprites.versions["generation-v"]["black-white"].animated 54 | .front_default, 55 | types: pokemon.types.map((t) => t.type.name), 56 | }); 57 | } 58 | 59 | return pokemonInfos; 60 | }; 61 | -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- 1 | import { Layout } from "@/components/layout"; 2 | import { useTransitionRouterPush } from "@/hooks/useTransitionRouterPush"; 3 | import "@/styles/globals.css"; 4 | import "@/styles/reset.css"; 5 | import type { AppProps } from "next/app"; 6 | import { useRouter } from "next/router"; 7 | import { useEffect } from "react"; 8 | 9 | export default function App({ Component, pageProps }: AppProps) { 10 | const { routerPushWithTransition } = useTransitionRouterPush(); 11 | const router = useRouter(); 12 | 13 | useEffect(() => { 14 | router.beforePopState(({ as }) => { 15 | routerPushWithTransition(as); 16 | return false; 17 | }); 18 | }, [router, routerPushWithTransition]); 19 | 20 | return ( 21 | 22 | 23 | 24 | ); 25 | } 26 | -------------------------------------------------------------------------------- /src/pages/_document.tsx: -------------------------------------------------------------------------------- 1 | import { Html, Head, Main, NextScript } from "next/document"; 2 | 3 | export default function Document() { 4 | return ( 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | ); 13 | } 14 | -------------------------------------------------------------------------------- /src/pages/detail/[id].tsx: -------------------------------------------------------------------------------- 1 | import { 2 | FAVORITE_POKEMON_IDS, 3 | PokemonDetailInfo, 4 | getPokemonDetailById, 5 | } from "@/lib/pokemon"; 6 | import { GetStaticPaths, GetStaticProps, InferGetStaticPropsType } from "next"; 7 | import { ParsedUrlQuery } from "querystring"; 8 | import { DetailDescription } from "@/components/pokemon/DetailDescription"; 9 | import { TransitionLink } from "@/components/shared/TransitionLink"; 10 | import { PrevAndNext } from "@/components/shared/PrevAndNext"; 11 | 12 | interface Params extends ParsedUrlQuery { 13 | id: string; 14 | } 15 | 16 | export const getStaticPaths: GetStaticPaths = () => { 17 | const paths = FAVORITE_POKEMON_IDS.map((id) => ({ 18 | params: { id: id.toString() }, 19 | })); 20 | 21 | return { 22 | paths, 23 | fallback: false, 24 | }; 25 | }; 26 | 27 | export const getStaticProps: GetStaticProps<{ 28 | pokemon: PokemonDetailInfo; 29 | nextNo: number | null; 30 | prevNo: number | null; 31 | }> = async ({ params }) => { 32 | const id = params?.id; 33 | const pokemon = await getPokemonDetailById(Number(id)); 34 | const nextNoIndex = 35 | FAVORITE_POKEMON_IDS.findIndex((no) => no === pokemon.no) + 1; 36 | const prevNoIndex = 37 | FAVORITE_POKEMON_IDS.findIndex((no) => no === pokemon.no) - 1; 38 | 39 | const nextNo = 40 | FAVORITE_POKEMON_IDS.length > nextNoIndex 41 | ? FAVORITE_POKEMON_IDS[nextNoIndex] 42 | : null; 43 | 44 | const prevNo = prevNoIndex >= 0 ? FAVORITE_POKEMON_IDS[prevNoIndex] : null; 45 | 46 | return { 47 | props: { 48 | pokemon, 49 | nextNo, 50 | prevNo, 51 | }, 52 | }; 53 | }; 54 | 55 | const PokemonDetail = ({ 56 | pokemon, 57 | nextNo, 58 | prevNo, 59 | }: InferGetStaticPropsType) => { 60 | return ( 61 | <> 62 | 69 | 73 | 74 | ); 75 | }; 76 | 77 | export default PokemonDetail; 78 | -------------------------------------------------------------------------------- /src/pages/index.module.css: -------------------------------------------------------------------------------- 1 | .main { 2 | display: grid; 3 | justify-content: center; 4 | align-content: flex-start; 5 | height: 100%; 6 | } 7 | 8 | .pokemonList { 9 | display: flex; 10 | flex-wrap: wrap; 11 | justify-content: center; 12 | padding: 0 20px; 13 | list-style: none; 14 | max-width: calc((140px * 3) + (20px * 2)); 15 | } 16 | 17 | .pokemonListItem { 18 | display: flex; 19 | flex-direction: column; 20 | align-items: center; 21 | text-align: center; 22 | } 23 | 24 | @media screen and (min-width: 768px) { 25 | .main { 26 | justify-content: center; 27 | align-content: center; 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- 1 | import Head from "next/head"; 2 | import clsx from "clsx"; 3 | import { Inter } from "next/font/google"; 4 | import { listFavoritePokemons } from "@/lib/pokemon"; 5 | import { InferGetStaticPropsType, NextPage } from "next"; 6 | 7 | import styles from "./index.module.css"; 8 | import { PokemonTile } from "@/components/pokemon/Tile"; 9 | import { TransitionLink } from "@/components/shared/TransitionLink"; 10 | import { useState } from "react"; 11 | 12 | const inter = Inter({ subsets: ["latin"] }); 13 | 14 | type Props = InferGetStaticPropsType; 15 | 16 | export const getStaticProps = async () => { 17 | const pokemons = await listFavoritePokemons(); 18 | 19 | return { 20 | props: { 21 | pokemons, 22 | }, 23 | }; 24 | }; 25 | 26 | export const Home: NextPage = ({ pokemons }) => { 27 | return ( 28 | <> 29 | 30 | 好きなポケモンたち 31 | 35 | 36 | 37 | 38 |
39 |
    40 | {pokemons.map((pokemon) => ( 41 |
  • 46 | 52 |
  • 53 | ))} 54 |
55 |
56 | 57 | ); 58 | }; 59 | 60 | export default Home; 61 | -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: #fceddc; 3 | } 4 | 5 | @keyframes slide-in { 6 | from { 7 | transform: translateY(50px); 8 | } 9 | } 10 | 11 | @keyframes slide-out { 12 | to { 13 | transform: translateY(-50px); 14 | } 15 | } 16 | 17 | @keyframes fade-in { 18 | from { 19 | opacity: 0; 20 | } 21 | } 22 | 23 | @keyframes fade-out { 24 | to { 25 | opacity: 0; 26 | } 27 | } 28 | 29 | ::view-transition-old(root) { 30 | animation: 100ms linear both fade-out, 300ms linear both slide-out; 31 | } 32 | 33 | ::view-transition-new(root) { 34 | animation: 100ms linear both fade-in, 300ms linear both slide-in; 35 | } 36 | 37 | a { 38 | text-decoration: none; 39 | } 40 | -------------------------------------------------------------------------------- /src/styles/reset.css: -------------------------------------------------------------------------------- 1 | /* Box sizing rules */ 2 | *, 3 | *::before, 4 | *::after { 5 | box-sizing: border-box; 6 | } 7 | 8 | /* Remove default margin */ 9 | body, 10 | h1, 11 | h2, 12 | h3, 13 | h4, 14 | p, 15 | figure, 16 | blockquote, 17 | dl, 18 | dd { 19 | margin: 0; 20 | } 21 | 22 | /* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */ 23 | ul[role="list"], 24 | ol[role="list"] { 25 | list-style: none; 26 | } 27 | 28 | /* Set core root defaults */ 29 | html:focus-within { 30 | scroll-behavior: smooth; 31 | } 32 | 33 | /* Set core body defaults */ 34 | body { 35 | min-height: 100vh; 36 | text-rendering: optimizeSpeed; 37 | line-height: 1.5; 38 | } 39 | 40 | /* A elements that don't have a class get default styles */ 41 | a:not([class]) { 42 | text-decoration-skip-ink: auto; 43 | } 44 | 45 | /* Make images easier to work with */ 46 | img, 47 | picture { 48 | max-width: 100%; 49 | display: block; 50 | } 51 | 52 | /* Inherit fonts for inputs and buttons */ 53 | input, 54 | button, 55 | textarea, 56 | select { 57 | font: inherit; 58 | } 59 | 60 | /* Remove all animations and transitions for people that prefer not to see them */ 61 | @media (prefers-reduced-motion: reduce) { 62 | html:focus-within { 63 | scroll-behavior: auto; 64 | } 65 | *, 66 | *::before, 67 | *::after { 68 | animation-duration: 0.01ms !important; 69 | animation-iteration-count: 1 !important; 70 | transition-duration: 0.01ms !important; 71 | scroll-behavior: auto !important; 72 | } 73 | } 74 | -------------------------------------------------------------------------------- /src/styles/viewTransitionName.module.css: -------------------------------------------------------------------------------- 1 | .header { 2 | view-transition-name: header; 3 | } 4 | 5 | .headerTitle { 6 | view-transition-name: header-title; 7 | } 8 | 9 | .pokemonNextAndPrev { 10 | view-transition-name: pokemon-next-and-prev; 11 | } 12 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es5", 4 | "lib": ["dom", "dom.iterable", "esnext"], 5 | "allowJs": true, 6 | "skipLibCheck": true, 7 | "strict": true, 8 | "forceConsistentCasingInFileNames": true, 9 | "noEmit": true, 10 | "esModuleInterop": true, 11 | "module": "esnext", 12 | "moduleResolution": "node", 13 | "resolveJsonModule": true, 14 | "isolatedModules": true, 15 | "jsx": "preserve", 16 | "incremental": true, 17 | "paths": { 18 | "@/*": ["./src/*"] 19 | } 20 | }, 21 | "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"], 22 | "exclude": ["node_modules"] 23 | } 24 | --------------------------------------------------------------------------------