├── .eslintrc.json ├── .gitignore ├── README.md ├── jsconfig.json ├── next.config.js ├── package-lock.json ├── package.json ├── public ├── ._next.svg ├── images │ ├── background.jpeg │ ├── intro.png │ ├── miniques_lagoon.jpg │ ├── miscani_lake.jpeg │ ├── salar_de_atacama.jpg │ └── valle_de_la_muerte.jpeg ├── next.svg └── vercel.svg └── src ├── app ├── favicon.ico ├── globals.css ├── layout.js ├── page.js └── page.module.css └── components ├── Description ├── index.jsx └── style.module.css ├── Intro ├── index.jsx └── style.module.css └── Projects ├── index.jsx └── style.module.css /.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 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app). 2 | 3 | ## Getting Started 4 | 5 | First, run the development server: 6 | 7 | ```bash 8 | npm run dev 9 | # or 10 | yarn dev 11 | # or 12 | pnpm dev 13 | ``` 14 | 15 | Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. 16 | 17 | You can start editing the page by modifying `app/page.js`. The page auto-updates as you edit the file. 18 | 19 | This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font. 20 | 21 | ## Learn More 22 | 23 | To learn more about Next.js, take a look at the following resources: 24 | 25 | - [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. 26 | - [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial. 27 | 28 | You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome! 29 | 30 | ## Deploy on Vercel 31 | 32 | The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js. 33 | 34 | Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details. 35 | -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "paths": { 4 | "@/*": ["./src/*"] 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('next').NextConfig} */ 2 | const nextConfig = {} 3 | 4 | module.exports = nextConfig 5 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "smooth-scroll-v2", 3 | "version": "0.1.0", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "smooth-scroll-v2", 9 | "version": "0.1.0", 10 | "dependencies": { 11 | "eslint": "8.43.0", 12 | "eslint-config-next": "13.4.6", 13 | "gsap": "^3.12.1", 14 | "locomotive-scroll": "^5.0.0-beta.8", 15 | "next": "13.4.6", 16 | "react": "18.2.0", 17 | "react-dom": "18.2.0" 18 | } 19 | }, 20 | "node_modules/@babel/runtime": { 21 | "version": "7.22.5", 22 | "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.5.tgz", 23 | "integrity": "sha512-ecjvYlnAaZ/KVneE/OdKYBYfgXV3Ptu6zQWmgEF7vwKhQnvVS6bjMD2XYgj+SNvQ1GfK/pjgokfPkC/2CO8CuA==", 24 | "dependencies": { 25 | "regenerator-runtime": "^0.13.11" 26 | }, 27 | "engines": { 28 | "node": ">=6.9.0" 29 | } 30 | }, 31 | "node_modules/@eslint-community/eslint-utils": { 32 | "version": "4.4.0", 33 | "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", 34 | "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", 35 | "dependencies": { 36 | "eslint-visitor-keys": "^3.3.0" 37 | }, 38 | "engines": { 39 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 40 | }, 41 | "peerDependencies": { 42 | "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" 43 | } 44 | }, 45 | "node_modules/@eslint-community/regexpp": { 46 | "version": "4.5.1", 47 | "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.5.1.tgz", 48 | "integrity": "sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==", 49 | "engines": { 50 | "node": "^12.0.0 || ^14.0.0 || >=16.0.0" 51 | } 52 | }, 53 | "node_modules/@eslint/eslintrc": { 54 | "version": "2.0.3", 55 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.0.3.tgz", 56 | "integrity": "sha512-+5gy6OQfk+xx3q0d6jGZZC3f3KzAkXc/IanVxd1is/VIIziRqqt3ongQz0FiTUXqTk0c7aDB3OaFuKnuSoJicQ==", 57 | "dependencies": { 58 | "ajv": "^6.12.4", 59 | "debug": "^4.3.2", 60 | "espree": "^9.5.2", 61 | "globals": "^13.19.0", 62 | "ignore": "^5.2.0", 63 | "import-fresh": "^3.2.1", 64 | "js-yaml": "^4.1.0", 65 | "minimatch": "^3.1.2", 66 | "strip-json-comments": "^3.1.1" 67 | }, 68 | "engines": { 69 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 70 | }, 71 | "funding": { 72 | "url": "https://opencollective.com/eslint" 73 | } 74 | }, 75 | "node_modules/@eslint/js": { 76 | "version": "8.43.0", 77 | "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.43.0.tgz", 78 | "integrity": "sha512-s2UHCoiXfxMvmfzqoN+vrQ84ahUSYde9qNO1MdxmoEhyHWsfmwOpFlwYV+ePJEVc7gFnATGUi376WowX1N7tFg==", 79 | "engines": { 80 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 81 | } 82 | }, 83 | "node_modules/@humanwhocodes/config-array": { 84 | "version": "0.11.10", 85 | "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.10.tgz", 86 | "integrity": "sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==", 87 | "dependencies": { 88 | "@humanwhocodes/object-schema": "^1.2.1", 89 | "debug": "^4.1.1", 90 | "minimatch": "^3.0.5" 91 | }, 92 | "engines": { 93 | "node": ">=10.10.0" 94 | } 95 | }, 96 | "node_modules/@humanwhocodes/module-importer": { 97 | "version": "1.0.1", 98 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", 99 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", 100 | "engines": { 101 | "node": ">=12.22" 102 | }, 103 | "funding": { 104 | "type": "github", 105 | "url": "https://github.com/sponsors/nzakas" 106 | } 107 | }, 108 | "node_modules/@humanwhocodes/object-schema": { 109 | "version": "1.2.1", 110 | "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", 111 | "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==" 112 | }, 113 | "node_modules/@next/env": { 114 | "version": "13.4.6", 115 | "resolved": "https://registry.npmjs.org/@next/env/-/env-13.4.6.tgz", 116 | "integrity": "sha512-nqUxEtvDqFhmV1/awSg0K2XHNwkftNaiUqCYO9e6+MYmqNObpKVl7OgMkGaQ2SZnFx5YqF0t60ZJTlyJIDAijg==" 117 | }, 118 | "node_modules/@next/eslint-plugin-next": { 119 | "version": "13.4.6", 120 | "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-13.4.6.tgz", 121 | "integrity": "sha512-bPigeu0RI7bgy1ucBA2Yqcfg539y0Lzo38P2hIkrRB1GNvFSbYg6RTu8n6tGqPVrH3TTlPTNKLXG01wc+5NuwQ==", 122 | "dependencies": { 123 | "glob": "7.1.7" 124 | } 125 | }, 126 | "node_modules/@next/swc-darwin-arm64": { 127 | "version": "13.4.6", 128 | "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.4.6.tgz", 129 | "integrity": "sha512-ahi6VP98o4HV19rkOXPSUu+ovfHfUxbJQ7VVJ7gL2FnZRr7onEFC1oGQ6NQHpm8CxpIzSSBW79kumlFMOmZVjg==", 130 | "cpu": [ 131 | "arm64" 132 | ], 133 | "optional": true, 134 | "os": [ 135 | "darwin" 136 | ], 137 | "engines": { 138 | "node": ">= 10" 139 | } 140 | }, 141 | "node_modules/@next/swc-darwin-x64": { 142 | "version": "13.4.6", 143 | "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.4.6.tgz", 144 | "integrity": "sha512-13cXxKFsPJIJKzUqrU5XB1mc0xbUgYsRcdH6/rB8c4NMEbWGdtD4QoK9ShN31TZdePpD4k416Ur7p+deMIxnnA==", 145 | "cpu": [ 146 | "x64" 147 | ], 148 | "optional": true, 149 | "os": [ 150 | "darwin" 151 | ], 152 | "engines": { 153 | "node": ">= 10" 154 | } 155 | }, 156 | "node_modules/@next/swc-linux-arm64-gnu": { 157 | "version": "13.4.6", 158 | "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.4.6.tgz", 159 | "integrity": "sha512-Ti+NMHEjTNktCVxNjeWbYgmZvA2AqMMI2AMlzkXsU7W4pXCMhrryAmAIoo+7YdJbsx01JQWYVxGe62G6DoCLaA==", 160 | "cpu": [ 161 | "arm64" 162 | ], 163 | "optional": true, 164 | "os": [ 165 | "linux" 166 | ], 167 | "engines": { 168 | "node": ">= 10" 169 | } 170 | }, 171 | "node_modules/@next/swc-linux-arm64-musl": { 172 | "version": "13.4.6", 173 | "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.4.6.tgz", 174 | "integrity": "sha512-OHoC6gO7XfjstgwR+z6UHKlvhqJfyMtNaJidjx3sEcfaDwS7R2lqR5AABi8PuilGgi0BO0O0sCXqLlpp3a0emQ==", 175 | "cpu": [ 176 | "arm64" 177 | ], 178 | "optional": true, 179 | "os": [ 180 | "linux" 181 | ], 182 | "engines": { 183 | "node": ">= 10" 184 | } 185 | }, 186 | "node_modules/@next/swc-linux-x64-gnu": { 187 | "version": "13.4.6", 188 | "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.4.6.tgz", 189 | "integrity": "sha512-zHZxPGkUlpfNJCboUrFqwlwEX5vI9LSN70b8XEb0DYzzlrZyCyOi7hwDp/+3Urm9AB7YCAJkgR5Sp1XBVjHdfQ==", 190 | "cpu": [ 191 | "x64" 192 | ], 193 | "optional": true, 194 | "os": [ 195 | "linux" 196 | ], 197 | "engines": { 198 | "node": ">= 10" 199 | } 200 | }, 201 | "node_modules/@next/swc-linux-x64-musl": { 202 | "version": "13.4.6", 203 | "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.4.6.tgz", 204 | "integrity": "sha512-K/Y8lYGTwTpv5ME8PSJxwxLolaDRdVy+lOd9yMRMiQE0BLUhtxtCWC9ypV42uh9WpLjoaD0joOsB9Q6mbrSGJg==", 205 | "cpu": [ 206 | "x64" 207 | ], 208 | "optional": true, 209 | "os": [ 210 | "linux" 211 | ], 212 | "engines": { 213 | "node": ">= 10" 214 | } 215 | }, 216 | "node_modules/@next/swc-win32-arm64-msvc": { 217 | "version": "13.4.6", 218 | "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.4.6.tgz", 219 | "integrity": "sha512-U6LtxEUrjBL2tpW+Kr1nHCSJWNeIed7U7l5o7FiKGGwGgIlFi4UHDiLI6TQ2lxi20fAU33CsruV3U0GuzMlXIw==", 220 | "cpu": [ 221 | "arm64" 222 | ], 223 | "optional": true, 224 | "os": [ 225 | "win32" 226 | ], 227 | "engines": { 228 | "node": ">= 10" 229 | } 230 | }, 231 | "node_modules/@next/swc-win32-ia32-msvc": { 232 | "version": "13.4.6", 233 | "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.4.6.tgz", 234 | "integrity": "sha512-eEBeAqpCfhdPSlCZCayjCiyIllVqy4tcqvm1xmg3BgJG0G5ITiMM4Cw2WVeRSgWDJqQGRyyb+q8Y2ltzhXOWsQ==", 235 | "cpu": [ 236 | "ia32" 237 | ], 238 | "optional": true, 239 | "os": [ 240 | "win32" 241 | ], 242 | "engines": { 243 | "node": ">= 10" 244 | } 245 | }, 246 | "node_modules/@next/swc-win32-x64-msvc": { 247 | "version": "13.4.6", 248 | "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.4.6.tgz", 249 | "integrity": "sha512-OrZs94AuO3ZS5tnqlyPRNgfWvboXaDQCi5aXGve3o3C+Sj0ctMUV9+Do+0zMvvLRumR8E0PTWKvtz9n5vzIsWw==", 250 | "cpu": [ 251 | "x64" 252 | ], 253 | "optional": true, 254 | "os": [ 255 | "win32" 256 | ], 257 | "engines": { 258 | "node": ">= 10" 259 | } 260 | }, 261 | "node_modules/@nodelib/fs.scandir": { 262 | "version": "2.1.5", 263 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 264 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 265 | "dependencies": { 266 | "@nodelib/fs.stat": "2.0.5", 267 | "run-parallel": "^1.1.9" 268 | }, 269 | "engines": { 270 | "node": ">= 8" 271 | } 272 | }, 273 | "node_modules/@nodelib/fs.stat": { 274 | "version": "2.0.5", 275 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 276 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 277 | "engines": { 278 | "node": ">= 8" 279 | } 280 | }, 281 | "node_modules/@nodelib/fs.walk": { 282 | "version": "1.2.8", 283 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 284 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 285 | "dependencies": { 286 | "@nodelib/fs.scandir": "2.1.5", 287 | "fastq": "^1.6.0" 288 | }, 289 | "engines": { 290 | "node": ">= 8" 291 | } 292 | }, 293 | "node_modules/@pkgr/utils": { 294 | "version": "2.4.1", 295 | "resolved": "https://registry.npmjs.org/@pkgr/utils/-/utils-2.4.1.tgz", 296 | "integrity": "sha512-JOqwkgFEyi+OROIyq7l4Jy28h/WwhDnG/cPkXG2Z1iFbubB6jsHW1NDvmyOzTBxHr3yg68YGirmh1JUgMqa+9w==", 297 | "dependencies": { 298 | "cross-spawn": "^7.0.3", 299 | "fast-glob": "^3.2.12", 300 | "is-glob": "^4.0.3", 301 | "open": "^9.1.0", 302 | "picocolors": "^1.0.0", 303 | "tslib": "^2.5.0" 304 | }, 305 | "engines": { 306 | "node": "^12.20.0 || ^14.18.0 || >=16.0.0" 307 | }, 308 | "funding": { 309 | "url": "https://opencollective.com/unts" 310 | } 311 | }, 312 | "node_modules/@rushstack/eslint-patch": { 313 | "version": "1.3.2", 314 | "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.3.2.tgz", 315 | "integrity": "sha512-V+MvGwaHH03hYhY+k6Ef/xKd6RYlc4q8WBx+2ANmipHJcKuktNcI/NgEsJgdSUF6Lw32njT6OnrRsKYCdgHjYw==" 316 | }, 317 | "node_modules/@studio-freight/lenis": { 318 | "version": "1.0.12", 319 | "resolved": "https://registry.npmjs.org/@studio-freight/lenis/-/lenis-1.0.12.tgz", 320 | "integrity": "sha512-iN3JQ6qJVc+L7vh8NjlDibw9dvjjifvlJ+s0UAkfwty+vW9MJxRfszb5X/eAhcbDLZW6MlvjRHoH9WSQH3J8eA==" 321 | }, 322 | "node_modules/@swc/helpers": { 323 | "version": "0.5.1", 324 | "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.1.tgz", 325 | "integrity": "sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==", 326 | "dependencies": { 327 | "tslib": "^2.4.0" 328 | } 329 | }, 330 | "node_modules/@types/json5": { 331 | "version": "0.0.29", 332 | "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", 333 | "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==" 334 | }, 335 | "node_modules/@typescript-eslint/parser": { 336 | "version": "5.60.0", 337 | "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.60.0.tgz", 338 | "integrity": "sha512-jBONcBsDJ9UoTWrARkRRCgDz6wUggmH5RpQVlt7BimSwaTkTjwypGzKORXbR4/2Hqjk9hgwlon2rVQAjWNpkyQ==", 339 | "dependencies": { 340 | "@typescript-eslint/scope-manager": "5.60.0", 341 | "@typescript-eslint/types": "5.60.0", 342 | "@typescript-eslint/typescript-estree": "5.60.0", 343 | "debug": "^4.3.4" 344 | }, 345 | "engines": { 346 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 347 | }, 348 | "funding": { 349 | "type": "opencollective", 350 | "url": "https://opencollective.com/typescript-eslint" 351 | }, 352 | "peerDependencies": { 353 | "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" 354 | }, 355 | "peerDependenciesMeta": { 356 | "typescript": { 357 | "optional": true 358 | } 359 | } 360 | }, 361 | "node_modules/@typescript-eslint/scope-manager": { 362 | "version": "5.60.0", 363 | "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.60.0.tgz", 364 | "integrity": "sha512-hakuzcxPwXi2ihf9WQu1BbRj1e/Pd8ZZwVTG9kfbxAMZstKz8/9OoexIwnmLzShtsdap5U/CoQGRCWlSuPbYxQ==", 365 | "dependencies": { 366 | "@typescript-eslint/types": "5.60.0", 367 | "@typescript-eslint/visitor-keys": "5.60.0" 368 | }, 369 | "engines": { 370 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 371 | }, 372 | "funding": { 373 | "type": "opencollective", 374 | "url": "https://opencollective.com/typescript-eslint" 375 | } 376 | }, 377 | "node_modules/@typescript-eslint/types": { 378 | "version": "5.60.0", 379 | "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.60.0.tgz", 380 | "integrity": "sha512-ascOuoCpNZBccFVNJRSC6rPq4EmJ2NkuoKnd6LDNyAQmdDnziAtxbCGWCbefG1CNzmDvd05zO36AmB7H8RzKPA==", 381 | "engines": { 382 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 383 | }, 384 | "funding": { 385 | "type": "opencollective", 386 | "url": "https://opencollective.com/typescript-eslint" 387 | } 388 | }, 389 | "node_modules/@typescript-eslint/typescript-estree": { 390 | "version": "5.60.0", 391 | "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.60.0.tgz", 392 | "integrity": "sha512-R43thAuwarC99SnvrBmh26tc7F6sPa2B3evkXp/8q954kYL6Ro56AwASYWtEEi+4j09GbiNAHqYwNNZuNlARGQ==", 393 | "dependencies": { 394 | "@typescript-eslint/types": "5.60.0", 395 | "@typescript-eslint/visitor-keys": "5.60.0", 396 | "debug": "^4.3.4", 397 | "globby": "^11.1.0", 398 | "is-glob": "^4.0.3", 399 | "semver": "^7.3.7", 400 | "tsutils": "^3.21.0" 401 | }, 402 | "engines": { 403 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 404 | }, 405 | "funding": { 406 | "type": "opencollective", 407 | "url": "https://opencollective.com/typescript-eslint" 408 | }, 409 | "peerDependenciesMeta": { 410 | "typescript": { 411 | "optional": true 412 | } 413 | } 414 | }, 415 | "node_modules/@typescript-eslint/visitor-keys": { 416 | "version": "5.60.0", 417 | "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.60.0.tgz", 418 | "integrity": "sha512-wm9Uz71SbCyhUKgcaPRauBdTegUyY/ZWl8gLwD/i/ybJqscrrdVSFImpvUz16BLPChIeKBK5Fa9s6KDQjsjyWw==", 419 | "dependencies": { 420 | "@typescript-eslint/types": "5.60.0", 421 | "eslint-visitor-keys": "^3.3.0" 422 | }, 423 | "engines": { 424 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 425 | }, 426 | "funding": { 427 | "type": "opencollective", 428 | "url": "https://opencollective.com/typescript-eslint" 429 | } 430 | }, 431 | "node_modules/acorn": { 432 | "version": "8.9.0", 433 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.9.0.tgz", 434 | "integrity": "sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ==", 435 | "bin": { 436 | "acorn": "bin/acorn" 437 | }, 438 | "engines": { 439 | "node": ">=0.4.0" 440 | } 441 | }, 442 | "node_modules/acorn-jsx": { 443 | "version": "5.3.2", 444 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", 445 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", 446 | "peerDependencies": { 447 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" 448 | } 449 | }, 450 | "node_modules/ajv": { 451 | "version": "6.12.6", 452 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 453 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 454 | "dependencies": { 455 | "fast-deep-equal": "^3.1.1", 456 | "fast-json-stable-stringify": "^2.0.0", 457 | "json-schema-traverse": "^0.4.1", 458 | "uri-js": "^4.2.2" 459 | }, 460 | "funding": { 461 | "type": "github", 462 | "url": "https://github.com/sponsors/epoberezkin" 463 | } 464 | }, 465 | "node_modules/ansi-regex": { 466 | "version": "5.0.1", 467 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 468 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 469 | "engines": { 470 | "node": ">=8" 471 | } 472 | }, 473 | "node_modules/ansi-styles": { 474 | "version": "4.3.0", 475 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 476 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 477 | "dependencies": { 478 | "color-convert": "^2.0.1" 479 | }, 480 | "engines": { 481 | "node": ">=8" 482 | }, 483 | "funding": { 484 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 485 | } 486 | }, 487 | "node_modules/argparse": { 488 | "version": "2.0.1", 489 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 490 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" 491 | }, 492 | "node_modules/aria-query": { 493 | "version": "5.2.1", 494 | "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.2.1.tgz", 495 | "integrity": "sha512-7uFg4b+lETFgdaJyETnILsXgnnzVnkHcgRbwbPwevm5x/LmUlt3MjczMRe1zg824iBgXZNRPTBftNYyRSKLp2g==", 496 | "dependencies": { 497 | "dequal": "^2.0.3" 498 | } 499 | }, 500 | "node_modules/array-buffer-byte-length": { 501 | "version": "1.0.0", 502 | "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", 503 | "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", 504 | "dependencies": { 505 | "call-bind": "^1.0.2", 506 | "is-array-buffer": "^3.0.1" 507 | }, 508 | "funding": { 509 | "url": "https://github.com/sponsors/ljharb" 510 | } 511 | }, 512 | "node_modules/array-includes": { 513 | "version": "3.1.6", 514 | "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz", 515 | "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==", 516 | "dependencies": { 517 | "call-bind": "^1.0.2", 518 | "define-properties": "^1.1.4", 519 | "es-abstract": "^1.20.4", 520 | "get-intrinsic": "^1.1.3", 521 | "is-string": "^1.0.7" 522 | }, 523 | "engines": { 524 | "node": ">= 0.4" 525 | }, 526 | "funding": { 527 | "url": "https://github.com/sponsors/ljharb" 528 | } 529 | }, 530 | "node_modules/array-union": { 531 | "version": "2.1.0", 532 | "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", 533 | "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", 534 | "engines": { 535 | "node": ">=8" 536 | } 537 | }, 538 | "node_modules/array.prototype.flat": { 539 | "version": "1.3.1", 540 | "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz", 541 | "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==", 542 | "dependencies": { 543 | "call-bind": "^1.0.2", 544 | "define-properties": "^1.1.4", 545 | "es-abstract": "^1.20.4", 546 | "es-shim-unscopables": "^1.0.0" 547 | }, 548 | "engines": { 549 | "node": ">= 0.4" 550 | }, 551 | "funding": { 552 | "url": "https://github.com/sponsors/ljharb" 553 | } 554 | }, 555 | "node_modules/array.prototype.flatmap": { 556 | "version": "1.3.1", 557 | "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz", 558 | "integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==", 559 | "dependencies": { 560 | "call-bind": "^1.0.2", 561 | "define-properties": "^1.1.4", 562 | "es-abstract": "^1.20.4", 563 | "es-shim-unscopables": "^1.0.0" 564 | }, 565 | "engines": { 566 | "node": ">= 0.4" 567 | }, 568 | "funding": { 569 | "url": "https://github.com/sponsors/ljharb" 570 | } 571 | }, 572 | "node_modules/array.prototype.tosorted": { 573 | "version": "1.1.1", 574 | "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz", 575 | "integrity": "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==", 576 | "dependencies": { 577 | "call-bind": "^1.0.2", 578 | "define-properties": "^1.1.4", 579 | "es-abstract": "^1.20.4", 580 | "es-shim-unscopables": "^1.0.0", 581 | "get-intrinsic": "^1.1.3" 582 | } 583 | }, 584 | "node_modules/ast-types-flow": { 585 | "version": "0.0.7", 586 | "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", 587 | "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==" 588 | }, 589 | "node_modules/available-typed-arrays": { 590 | "version": "1.0.5", 591 | "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", 592 | "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", 593 | "engines": { 594 | "node": ">= 0.4" 595 | }, 596 | "funding": { 597 | "url": "https://github.com/sponsors/ljharb" 598 | } 599 | }, 600 | "node_modules/axe-core": { 601 | "version": "4.7.2", 602 | "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.7.2.tgz", 603 | "integrity": "sha512-zIURGIS1E1Q4pcrMjp+nnEh+16G56eG/MUllJH8yEvw7asDo7Ac9uhC9KIH5jzpITueEZolfYglnCGIuSBz39g==", 604 | "engines": { 605 | "node": ">=4" 606 | } 607 | }, 608 | "node_modules/axobject-query": { 609 | "version": "3.2.1", 610 | "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.2.1.tgz", 611 | "integrity": "sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==", 612 | "dependencies": { 613 | "dequal": "^2.0.3" 614 | } 615 | }, 616 | "node_modules/balanced-match": { 617 | "version": "1.0.2", 618 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 619 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" 620 | }, 621 | "node_modules/big-integer": { 622 | "version": "1.6.51", 623 | "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.51.tgz", 624 | "integrity": "sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==", 625 | "engines": { 626 | "node": ">=0.6" 627 | } 628 | }, 629 | "node_modules/bplist-parser": { 630 | "version": "0.2.0", 631 | "resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.2.0.tgz", 632 | "integrity": "sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==", 633 | "dependencies": { 634 | "big-integer": "^1.6.44" 635 | }, 636 | "engines": { 637 | "node": ">= 5.10.0" 638 | } 639 | }, 640 | "node_modules/brace-expansion": { 641 | "version": "1.1.11", 642 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 643 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 644 | "dependencies": { 645 | "balanced-match": "^1.0.0", 646 | "concat-map": "0.0.1" 647 | } 648 | }, 649 | "node_modules/braces": { 650 | "version": "3.0.2", 651 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", 652 | "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", 653 | "dependencies": { 654 | "fill-range": "^7.0.1" 655 | }, 656 | "engines": { 657 | "node": ">=8" 658 | } 659 | }, 660 | "node_modules/bundle-name": { 661 | "version": "3.0.0", 662 | "resolved": "https://registry.npmjs.org/bundle-name/-/bundle-name-3.0.0.tgz", 663 | "integrity": "sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==", 664 | "dependencies": { 665 | "run-applescript": "^5.0.0" 666 | }, 667 | "engines": { 668 | "node": ">=12" 669 | }, 670 | "funding": { 671 | "url": "https://github.com/sponsors/sindresorhus" 672 | } 673 | }, 674 | "node_modules/busboy": { 675 | "version": "1.6.0", 676 | "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", 677 | "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", 678 | "dependencies": { 679 | "streamsearch": "^1.1.0" 680 | }, 681 | "engines": { 682 | "node": ">=10.16.0" 683 | } 684 | }, 685 | "node_modules/call-bind": { 686 | "version": "1.0.2", 687 | "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", 688 | "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", 689 | "dependencies": { 690 | "function-bind": "^1.1.1", 691 | "get-intrinsic": "^1.0.2" 692 | }, 693 | "funding": { 694 | "url": "https://github.com/sponsors/ljharb" 695 | } 696 | }, 697 | "node_modules/callsites": { 698 | "version": "3.1.0", 699 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 700 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 701 | "engines": { 702 | "node": ">=6" 703 | } 704 | }, 705 | "node_modules/caniuse-lite": { 706 | "version": "1.0.30001505", 707 | "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001505.tgz", 708 | "integrity": "sha512-jaAOR5zVtxHfL0NjZyflVTtXm3D3J9P15zSJ7HmQF8dSKGA6tqzQq+0ZI3xkjyQj46I4/M0K2GbMpcAFOcbr3A==", 709 | "funding": [ 710 | { 711 | "type": "opencollective", 712 | "url": "https://opencollective.com/browserslist" 713 | }, 714 | { 715 | "type": "tidelift", 716 | "url": "https://tidelift.com/funding/github/npm/caniuse-lite" 717 | }, 718 | { 719 | "type": "github", 720 | "url": "https://github.com/sponsors/ai" 721 | } 722 | ] 723 | }, 724 | "node_modules/chalk": { 725 | "version": "4.1.2", 726 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 727 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 728 | "dependencies": { 729 | "ansi-styles": "^4.1.0", 730 | "supports-color": "^7.1.0" 731 | }, 732 | "engines": { 733 | "node": ">=10" 734 | }, 735 | "funding": { 736 | "url": "https://github.com/chalk/chalk?sponsor=1" 737 | } 738 | }, 739 | "node_modules/client-only": { 740 | "version": "0.0.1", 741 | "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", 742 | "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==" 743 | }, 744 | "node_modules/color-convert": { 745 | "version": "2.0.1", 746 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 747 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 748 | "dependencies": { 749 | "color-name": "~1.1.4" 750 | }, 751 | "engines": { 752 | "node": ">=7.0.0" 753 | } 754 | }, 755 | "node_modules/color-name": { 756 | "version": "1.1.4", 757 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 758 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" 759 | }, 760 | "node_modules/concat-map": { 761 | "version": "0.0.1", 762 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 763 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" 764 | }, 765 | "node_modules/cross-spawn": { 766 | "version": "7.0.3", 767 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", 768 | "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", 769 | "dependencies": { 770 | "path-key": "^3.1.0", 771 | "shebang-command": "^2.0.0", 772 | "which": "^2.0.1" 773 | }, 774 | "engines": { 775 | "node": ">= 8" 776 | } 777 | }, 778 | "node_modules/damerau-levenshtein": { 779 | "version": "1.0.8", 780 | "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", 781 | "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==" 782 | }, 783 | "node_modules/debug": { 784 | "version": "4.3.4", 785 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", 786 | "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", 787 | "dependencies": { 788 | "ms": "2.1.2" 789 | }, 790 | "engines": { 791 | "node": ">=6.0" 792 | }, 793 | "peerDependenciesMeta": { 794 | "supports-color": { 795 | "optional": true 796 | } 797 | } 798 | }, 799 | "node_modules/deep-is": { 800 | "version": "0.1.4", 801 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", 802 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" 803 | }, 804 | "node_modules/default-browser": { 805 | "version": "4.0.0", 806 | "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-4.0.0.tgz", 807 | "integrity": "sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA==", 808 | "dependencies": { 809 | "bundle-name": "^3.0.0", 810 | "default-browser-id": "^3.0.0", 811 | "execa": "^7.1.1", 812 | "titleize": "^3.0.0" 813 | }, 814 | "engines": { 815 | "node": ">=14.16" 816 | }, 817 | "funding": { 818 | "url": "https://github.com/sponsors/sindresorhus" 819 | } 820 | }, 821 | "node_modules/default-browser-id": { 822 | "version": "3.0.0", 823 | "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-3.0.0.tgz", 824 | "integrity": "sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==", 825 | "dependencies": { 826 | "bplist-parser": "^0.2.0", 827 | "untildify": "^4.0.0" 828 | }, 829 | "engines": { 830 | "node": ">=12" 831 | }, 832 | "funding": { 833 | "url": "https://github.com/sponsors/sindresorhus" 834 | } 835 | }, 836 | "node_modules/define-lazy-prop": { 837 | "version": "3.0.0", 838 | "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz", 839 | "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==", 840 | "engines": { 841 | "node": ">=12" 842 | }, 843 | "funding": { 844 | "url": "https://github.com/sponsors/sindresorhus" 845 | } 846 | }, 847 | "node_modules/define-properties": { 848 | "version": "1.2.0", 849 | "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz", 850 | "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==", 851 | "dependencies": { 852 | "has-property-descriptors": "^1.0.0", 853 | "object-keys": "^1.1.1" 854 | }, 855 | "engines": { 856 | "node": ">= 0.4" 857 | }, 858 | "funding": { 859 | "url": "https://github.com/sponsors/ljharb" 860 | } 861 | }, 862 | "node_modules/dequal": { 863 | "version": "2.0.3", 864 | "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", 865 | "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", 866 | "engines": { 867 | "node": ">=6" 868 | } 869 | }, 870 | "node_modules/dir-glob": { 871 | "version": "3.0.1", 872 | "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", 873 | "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", 874 | "dependencies": { 875 | "path-type": "^4.0.0" 876 | }, 877 | "engines": { 878 | "node": ">=8" 879 | } 880 | }, 881 | "node_modules/doctrine": { 882 | "version": "3.0.0", 883 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", 884 | "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", 885 | "dependencies": { 886 | "esutils": "^2.0.2" 887 | }, 888 | "engines": { 889 | "node": ">=6.0.0" 890 | } 891 | }, 892 | "node_modules/emoji-regex": { 893 | "version": "9.2.2", 894 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", 895 | "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" 896 | }, 897 | "node_modules/enhanced-resolve": { 898 | "version": "5.15.0", 899 | "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", 900 | "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", 901 | "dependencies": { 902 | "graceful-fs": "^4.2.4", 903 | "tapable": "^2.2.0" 904 | }, 905 | "engines": { 906 | "node": ">=10.13.0" 907 | } 908 | }, 909 | "node_modules/es-abstract": { 910 | "version": "1.21.2", 911 | "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.2.tgz", 912 | "integrity": "sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==", 913 | "dependencies": { 914 | "array-buffer-byte-length": "^1.0.0", 915 | "available-typed-arrays": "^1.0.5", 916 | "call-bind": "^1.0.2", 917 | "es-set-tostringtag": "^2.0.1", 918 | "es-to-primitive": "^1.2.1", 919 | "function.prototype.name": "^1.1.5", 920 | "get-intrinsic": "^1.2.0", 921 | "get-symbol-description": "^1.0.0", 922 | "globalthis": "^1.0.3", 923 | "gopd": "^1.0.1", 924 | "has": "^1.0.3", 925 | "has-property-descriptors": "^1.0.0", 926 | "has-proto": "^1.0.1", 927 | "has-symbols": "^1.0.3", 928 | "internal-slot": "^1.0.5", 929 | "is-array-buffer": "^3.0.2", 930 | "is-callable": "^1.2.7", 931 | "is-negative-zero": "^2.0.2", 932 | "is-regex": "^1.1.4", 933 | "is-shared-array-buffer": "^1.0.2", 934 | "is-string": "^1.0.7", 935 | "is-typed-array": "^1.1.10", 936 | "is-weakref": "^1.0.2", 937 | "object-inspect": "^1.12.3", 938 | "object-keys": "^1.1.1", 939 | "object.assign": "^4.1.4", 940 | "regexp.prototype.flags": "^1.4.3", 941 | "safe-regex-test": "^1.0.0", 942 | "string.prototype.trim": "^1.2.7", 943 | "string.prototype.trimend": "^1.0.6", 944 | "string.prototype.trimstart": "^1.0.6", 945 | "typed-array-length": "^1.0.4", 946 | "unbox-primitive": "^1.0.2", 947 | "which-typed-array": "^1.1.9" 948 | }, 949 | "engines": { 950 | "node": ">= 0.4" 951 | }, 952 | "funding": { 953 | "url": "https://github.com/sponsors/ljharb" 954 | } 955 | }, 956 | "node_modules/es-set-tostringtag": { 957 | "version": "2.0.1", 958 | "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", 959 | "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", 960 | "dependencies": { 961 | "get-intrinsic": "^1.1.3", 962 | "has": "^1.0.3", 963 | "has-tostringtag": "^1.0.0" 964 | }, 965 | "engines": { 966 | "node": ">= 0.4" 967 | } 968 | }, 969 | "node_modules/es-shim-unscopables": { 970 | "version": "1.0.0", 971 | "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", 972 | "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", 973 | "dependencies": { 974 | "has": "^1.0.3" 975 | } 976 | }, 977 | "node_modules/es-to-primitive": { 978 | "version": "1.2.1", 979 | "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", 980 | "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", 981 | "dependencies": { 982 | "is-callable": "^1.1.4", 983 | "is-date-object": "^1.0.1", 984 | "is-symbol": "^1.0.2" 985 | }, 986 | "engines": { 987 | "node": ">= 0.4" 988 | }, 989 | "funding": { 990 | "url": "https://github.com/sponsors/ljharb" 991 | } 992 | }, 993 | "node_modules/escape-string-regexp": { 994 | "version": "4.0.0", 995 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 996 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 997 | "engines": { 998 | "node": ">=10" 999 | }, 1000 | "funding": { 1001 | "url": "https://github.com/sponsors/sindresorhus" 1002 | } 1003 | }, 1004 | "node_modules/eslint": { 1005 | "version": "8.43.0", 1006 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.43.0.tgz", 1007 | "integrity": "sha512-aaCpf2JqqKesMFGgmRPessmVKjcGXqdlAYLLC3THM8t5nBRZRQ+st5WM/hoJXkdioEXLLbXgclUpM0TXo5HX5Q==", 1008 | "dependencies": { 1009 | "@eslint-community/eslint-utils": "^4.2.0", 1010 | "@eslint-community/regexpp": "^4.4.0", 1011 | "@eslint/eslintrc": "^2.0.3", 1012 | "@eslint/js": "8.43.0", 1013 | "@humanwhocodes/config-array": "^0.11.10", 1014 | "@humanwhocodes/module-importer": "^1.0.1", 1015 | "@nodelib/fs.walk": "^1.2.8", 1016 | "ajv": "^6.10.0", 1017 | "chalk": "^4.0.0", 1018 | "cross-spawn": "^7.0.2", 1019 | "debug": "^4.3.2", 1020 | "doctrine": "^3.0.0", 1021 | "escape-string-regexp": "^4.0.0", 1022 | "eslint-scope": "^7.2.0", 1023 | "eslint-visitor-keys": "^3.4.1", 1024 | "espree": "^9.5.2", 1025 | "esquery": "^1.4.2", 1026 | "esutils": "^2.0.2", 1027 | "fast-deep-equal": "^3.1.3", 1028 | "file-entry-cache": "^6.0.1", 1029 | "find-up": "^5.0.0", 1030 | "glob-parent": "^6.0.2", 1031 | "globals": "^13.19.0", 1032 | "graphemer": "^1.4.0", 1033 | "ignore": "^5.2.0", 1034 | "import-fresh": "^3.0.0", 1035 | "imurmurhash": "^0.1.4", 1036 | "is-glob": "^4.0.0", 1037 | "is-path-inside": "^3.0.3", 1038 | "js-yaml": "^4.1.0", 1039 | "json-stable-stringify-without-jsonify": "^1.0.1", 1040 | "levn": "^0.4.1", 1041 | "lodash.merge": "^4.6.2", 1042 | "minimatch": "^3.1.2", 1043 | "natural-compare": "^1.4.0", 1044 | "optionator": "^0.9.1", 1045 | "strip-ansi": "^6.0.1", 1046 | "strip-json-comments": "^3.1.0", 1047 | "text-table": "^0.2.0" 1048 | }, 1049 | "bin": { 1050 | "eslint": "bin/eslint.js" 1051 | }, 1052 | "engines": { 1053 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1054 | }, 1055 | "funding": { 1056 | "url": "https://opencollective.com/eslint" 1057 | } 1058 | }, 1059 | "node_modules/eslint-config-next": { 1060 | "version": "13.4.6", 1061 | "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-13.4.6.tgz", 1062 | "integrity": "sha512-nlv4FYish1RYYHILbQwM5/rD37cOvEqtMfDjtQCYbXdE2O3MggqHu2q6IDeLE2Z6u8ZJyNPgWOA6OimWcxj3qw==", 1063 | "dependencies": { 1064 | "@next/eslint-plugin-next": "13.4.6", 1065 | "@rushstack/eslint-patch": "^1.1.3", 1066 | "@typescript-eslint/parser": "^5.42.0", 1067 | "eslint-import-resolver-node": "^0.3.6", 1068 | "eslint-import-resolver-typescript": "^3.5.2", 1069 | "eslint-plugin-import": "^2.26.0", 1070 | "eslint-plugin-jsx-a11y": "^6.5.1", 1071 | "eslint-plugin-react": "^7.31.7", 1072 | "eslint-plugin-react-hooks": "^4.5.0" 1073 | }, 1074 | "peerDependencies": { 1075 | "eslint": "^7.23.0 || ^8.0.0", 1076 | "typescript": ">=3.3.1" 1077 | }, 1078 | "peerDependenciesMeta": { 1079 | "typescript": { 1080 | "optional": true 1081 | } 1082 | } 1083 | }, 1084 | "node_modules/eslint-import-resolver-node": { 1085 | "version": "0.3.7", 1086 | "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz", 1087 | "integrity": "sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==", 1088 | "dependencies": { 1089 | "debug": "^3.2.7", 1090 | "is-core-module": "^2.11.0", 1091 | "resolve": "^1.22.1" 1092 | } 1093 | }, 1094 | "node_modules/eslint-import-resolver-node/node_modules/debug": { 1095 | "version": "3.2.7", 1096 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", 1097 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", 1098 | "dependencies": { 1099 | "ms": "^2.1.1" 1100 | } 1101 | }, 1102 | "node_modules/eslint-import-resolver-typescript": { 1103 | "version": "3.5.5", 1104 | "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.5.5.tgz", 1105 | "integrity": "sha512-TdJqPHs2lW5J9Zpe17DZNQuDnox4xo2o+0tE7Pggain9Rbc19ik8kFtXdxZ250FVx2kF4vlt2RSf4qlUpG7bhw==", 1106 | "dependencies": { 1107 | "debug": "^4.3.4", 1108 | "enhanced-resolve": "^5.12.0", 1109 | "eslint-module-utils": "^2.7.4", 1110 | "get-tsconfig": "^4.5.0", 1111 | "globby": "^13.1.3", 1112 | "is-core-module": "^2.11.0", 1113 | "is-glob": "^4.0.3", 1114 | "synckit": "^0.8.5" 1115 | }, 1116 | "engines": { 1117 | "node": "^14.18.0 || >=16.0.0" 1118 | }, 1119 | "funding": { 1120 | "url": "https://opencollective.com/unts/projects/eslint-import-resolver-ts" 1121 | }, 1122 | "peerDependencies": { 1123 | "eslint": "*", 1124 | "eslint-plugin-import": "*" 1125 | } 1126 | }, 1127 | "node_modules/eslint-import-resolver-typescript/node_modules/globby": { 1128 | "version": "13.2.0", 1129 | "resolved": "https://registry.npmjs.org/globby/-/globby-13.2.0.tgz", 1130 | "integrity": "sha512-jWsQfayf13NvqKUIL3Ta+CIqMnvlaIDFveWE/dpOZ9+3AMEJozsxDvKA02zync9UuvOM8rOXzsD5GqKP4OnWPQ==", 1131 | "dependencies": { 1132 | "dir-glob": "^3.0.1", 1133 | "fast-glob": "^3.2.11", 1134 | "ignore": "^5.2.0", 1135 | "merge2": "^1.4.1", 1136 | "slash": "^4.0.0" 1137 | }, 1138 | "engines": { 1139 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 1140 | }, 1141 | "funding": { 1142 | "url": "https://github.com/sponsors/sindresorhus" 1143 | } 1144 | }, 1145 | "node_modules/eslint-import-resolver-typescript/node_modules/slash": { 1146 | "version": "4.0.0", 1147 | "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", 1148 | "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", 1149 | "engines": { 1150 | "node": ">=12" 1151 | }, 1152 | "funding": { 1153 | "url": "https://github.com/sponsors/sindresorhus" 1154 | } 1155 | }, 1156 | "node_modules/eslint-module-utils": { 1157 | "version": "2.8.0", 1158 | "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", 1159 | "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", 1160 | "dependencies": { 1161 | "debug": "^3.2.7" 1162 | }, 1163 | "engines": { 1164 | "node": ">=4" 1165 | }, 1166 | "peerDependenciesMeta": { 1167 | "eslint": { 1168 | "optional": true 1169 | } 1170 | } 1171 | }, 1172 | "node_modules/eslint-module-utils/node_modules/debug": { 1173 | "version": "3.2.7", 1174 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", 1175 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", 1176 | "dependencies": { 1177 | "ms": "^2.1.1" 1178 | } 1179 | }, 1180 | "node_modules/eslint-plugin-import": { 1181 | "version": "2.27.5", 1182 | "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz", 1183 | "integrity": "sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==", 1184 | "dependencies": { 1185 | "array-includes": "^3.1.6", 1186 | "array.prototype.flat": "^1.3.1", 1187 | "array.prototype.flatmap": "^1.3.1", 1188 | "debug": "^3.2.7", 1189 | "doctrine": "^2.1.0", 1190 | "eslint-import-resolver-node": "^0.3.7", 1191 | "eslint-module-utils": "^2.7.4", 1192 | "has": "^1.0.3", 1193 | "is-core-module": "^2.11.0", 1194 | "is-glob": "^4.0.3", 1195 | "minimatch": "^3.1.2", 1196 | "object.values": "^1.1.6", 1197 | "resolve": "^1.22.1", 1198 | "semver": "^6.3.0", 1199 | "tsconfig-paths": "^3.14.1" 1200 | }, 1201 | "engines": { 1202 | "node": ">=4" 1203 | }, 1204 | "peerDependencies": { 1205 | "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" 1206 | } 1207 | }, 1208 | "node_modules/eslint-plugin-import/node_modules/debug": { 1209 | "version": "3.2.7", 1210 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", 1211 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", 1212 | "dependencies": { 1213 | "ms": "^2.1.1" 1214 | } 1215 | }, 1216 | "node_modules/eslint-plugin-import/node_modules/doctrine": { 1217 | "version": "2.1.0", 1218 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", 1219 | "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", 1220 | "dependencies": { 1221 | "esutils": "^2.0.2" 1222 | }, 1223 | "engines": { 1224 | "node": ">=0.10.0" 1225 | } 1226 | }, 1227 | "node_modules/eslint-plugin-import/node_modules/semver": { 1228 | "version": "6.3.0", 1229 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", 1230 | "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", 1231 | "bin": { 1232 | "semver": "bin/semver.js" 1233 | } 1234 | }, 1235 | "node_modules/eslint-plugin-jsx-a11y": { 1236 | "version": "6.7.1", 1237 | "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz", 1238 | "integrity": "sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==", 1239 | "dependencies": { 1240 | "@babel/runtime": "^7.20.7", 1241 | "aria-query": "^5.1.3", 1242 | "array-includes": "^3.1.6", 1243 | "array.prototype.flatmap": "^1.3.1", 1244 | "ast-types-flow": "^0.0.7", 1245 | "axe-core": "^4.6.2", 1246 | "axobject-query": "^3.1.1", 1247 | "damerau-levenshtein": "^1.0.8", 1248 | "emoji-regex": "^9.2.2", 1249 | "has": "^1.0.3", 1250 | "jsx-ast-utils": "^3.3.3", 1251 | "language-tags": "=1.0.5", 1252 | "minimatch": "^3.1.2", 1253 | "object.entries": "^1.1.6", 1254 | "object.fromentries": "^2.0.6", 1255 | "semver": "^6.3.0" 1256 | }, 1257 | "engines": { 1258 | "node": ">=4.0" 1259 | }, 1260 | "peerDependencies": { 1261 | "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" 1262 | } 1263 | }, 1264 | "node_modules/eslint-plugin-jsx-a11y/node_modules/semver": { 1265 | "version": "6.3.0", 1266 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", 1267 | "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", 1268 | "bin": { 1269 | "semver": "bin/semver.js" 1270 | } 1271 | }, 1272 | "node_modules/eslint-plugin-react": { 1273 | "version": "7.32.2", 1274 | "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz", 1275 | "integrity": "sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==", 1276 | "dependencies": { 1277 | "array-includes": "^3.1.6", 1278 | "array.prototype.flatmap": "^1.3.1", 1279 | "array.prototype.tosorted": "^1.1.1", 1280 | "doctrine": "^2.1.0", 1281 | "estraverse": "^5.3.0", 1282 | "jsx-ast-utils": "^2.4.1 || ^3.0.0", 1283 | "minimatch": "^3.1.2", 1284 | "object.entries": "^1.1.6", 1285 | "object.fromentries": "^2.0.6", 1286 | "object.hasown": "^1.1.2", 1287 | "object.values": "^1.1.6", 1288 | "prop-types": "^15.8.1", 1289 | "resolve": "^2.0.0-next.4", 1290 | "semver": "^6.3.0", 1291 | "string.prototype.matchall": "^4.0.8" 1292 | }, 1293 | "engines": { 1294 | "node": ">=4" 1295 | }, 1296 | "peerDependencies": { 1297 | "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" 1298 | } 1299 | }, 1300 | "node_modules/eslint-plugin-react-hooks": { 1301 | "version": "4.6.0", 1302 | "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", 1303 | "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", 1304 | "engines": { 1305 | "node": ">=10" 1306 | }, 1307 | "peerDependencies": { 1308 | "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" 1309 | } 1310 | }, 1311 | "node_modules/eslint-plugin-react/node_modules/doctrine": { 1312 | "version": "2.1.0", 1313 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", 1314 | "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", 1315 | "dependencies": { 1316 | "esutils": "^2.0.2" 1317 | }, 1318 | "engines": { 1319 | "node": ">=0.10.0" 1320 | } 1321 | }, 1322 | "node_modules/eslint-plugin-react/node_modules/resolve": { 1323 | "version": "2.0.0-next.4", 1324 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz", 1325 | "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", 1326 | "dependencies": { 1327 | "is-core-module": "^2.9.0", 1328 | "path-parse": "^1.0.7", 1329 | "supports-preserve-symlinks-flag": "^1.0.0" 1330 | }, 1331 | "bin": { 1332 | "resolve": "bin/resolve" 1333 | }, 1334 | "funding": { 1335 | "url": "https://github.com/sponsors/ljharb" 1336 | } 1337 | }, 1338 | "node_modules/eslint-plugin-react/node_modules/semver": { 1339 | "version": "6.3.0", 1340 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", 1341 | "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", 1342 | "bin": { 1343 | "semver": "bin/semver.js" 1344 | } 1345 | }, 1346 | "node_modules/eslint-scope": { 1347 | "version": "7.2.0", 1348 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.0.tgz", 1349 | "integrity": "sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==", 1350 | "dependencies": { 1351 | "esrecurse": "^4.3.0", 1352 | "estraverse": "^5.2.0" 1353 | }, 1354 | "engines": { 1355 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1356 | }, 1357 | "funding": { 1358 | "url": "https://opencollective.com/eslint" 1359 | } 1360 | }, 1361 | "node_modules/eslint-visitor-keys": { 1362 | "version": "3.4.1", 1363 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.1.tgz", 1364 | "integrity": "sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==", 1365 | "engines": { 1366 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1367 | }, 1368 | "funding": { 1369 | "url": "https://opencollective.com/eslint" 1370 | } 1371 | }, 1372 | "node_modules/espree": { 1373 | "version": "9.5.2", 1374 | "resolved": "https://registry.npmjs.org/espree/-/espree-9.5.2.tgz", 1375 | "integrity": "sha512-7OASN1Wma5fum5SrNhFMAMJxOUAbhyfQ8dQ//PJaJbNw0URTPWqIghHWt1MmAANKhHZIYOHruW4Kw4ruUWOdGw==", 1376 | "dependencies": { 1377 | "acorn": "^8.8.0", 1378 | "acorn-jsx": "^5.3.2", 1379 | "eslint-visitor-keys": "^3.4.1" 1380 | }, 1381 | "engines": { 1382 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1383 | }, 1384 | "funding": { 1385 | "url": "https://opencollective.com/eslint" 1386 | } 1387 | }, 1388 | "node_modules/esquery": { 1389 | "version": "1.5.0", 1390 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", 1391 | "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", 1392 | "dependencies": { 1393 | "estraverse": "^5.1.0" 1394 | }, 1395 | "engines": { 1396 | "node": ">=0.10" 1397 | } 1398 | }, 1399 | "node_modules/esrecurse": { 1400 | "version": "4.3.0", 1401 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", 1402 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", 1403 | "dependencies": { 1404 | "estraverse": "^5.2.0" 1405 | }, 1406 | "engines": { 1407 | "node": ">=4.0" 1408 | } 1409 | }, 1410 | "node_modules/estraverse": { 1411 | "version": "5.3.0", 1412 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 1413 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 1414 | "engines": { 1415 | "node": ">=4.0" 1416 | } 1417 | }, 1418 | "node_modules/esutils": { 1419 | "version": "2.0.3", 1420 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 1421 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 1422 | "engines": { 1423 | "node": ">=0.10.0" 1424 | } 1425 | }, 1426 | "node_modules/execa": { 1427 | "version": "7.1.1", 1428 | "resolved": "https://registry.npmjs.org/execa/-/execa-7.1.1.tgz", 1429 | "integrity": "sha512-wH0eMf/UXckdUYnO21+HDztteVv05rq2GXksxT4fCGeHkBhw1DROXh40wcjMcRqDOWE7iPJ4n3M7e2+YFP+76Q==", 1430 | "dependencies": { 1431 | "cross-spawn": "^7.0.3", 1432 | "get-stream": "^6.0.1", 1433 | "human-signals": "^4.3.0", 1434 | "is-stream": "^3.0.0", 1435 | "merge-stream": "^2.0.0", 1436 | "npm-run-path": "^5.1.0", 1437 | "onetime": "^6.0.0", 1438 | "signal-exit": "^3.0.7", 1439 | "strip-final-newline": "^3.0.0" 1440 | }, 1441 | "engines": { 1442 | "node": "^14.18.0 || ^16.14.0 || >=18.0.0" 1443 | }, 1444 | "funding": { 1445 | "url": "https://github.com/sindresorhus/execa?sponsor=1" 1446 | } 1447 | }, 1448 | "node_modules/fast-deep-equal": { 1449 | "version": "3.1.3", 1450 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 1451 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" 1452 | }, 1453 | "node_modules/fast-glob": { 1454 | "version": "3.2.12", 1455 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", 1456 | "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", 1457 | "dependencies": { 1458 | "@nodelib/fs.stat": "^2.0.2", 1459 | "@nodelib/fs.walk": "^1.2.3", 1460 | "glob-parent": "^5.1.2", 1461 | "merge2": "^1.3.0", 1462 | "micromatch": "^4.0.4" 1463 | }, 1464 | "engines": { 1465 | "node": ">=8.6.0" 1466 | } 1467 | }, 1468 | "node_modules/fast-glob/node_modules/glob-parent": { 1469 | "version": "5.1.2", 1470 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 1471 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 1472 | "dependencies": { 1473 | "is-glob": "^4.0.1" 1474 | }, 1475 | "engines": { 1476 | "node": ">= 6" 1477 | } 1478 | }, 1479 | "node_modules/fast-json-stable-stringify": { 1480 | "version": "2.1.0", 1481 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 1482 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" 1483 | }, 1484 | "node_modules/fast-levenshtein": { 1485 | "version": "2.0.6", 1486 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", 1487 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" 1488 | }, 1489 | "node_modules/fastq": { 1490 | "version": "1.15.0", 1491 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", 1492 | "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", 1493 | "dependencies": { 1494 | "reusify": "^1.0.4" 1495 | } 1496 | }, 1497 | "node_modules/file-entry-cache": { 1498 | "version": "6.0.1", 1499 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", 1500 | "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", 1501 | "dependencies": { 1502 | "flat-cache": "^3.0.4" 1503 | }, 1504 | "engines": { 1505 | "node": "^10.12.0 || >=12.0.0" 1506 | } 1507 | }, 1508 | "node_modules/fill-range": { 1509 | "version": "7.0.1", 1510 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", 1511 | "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", 1512 | "dependencies": { 1513 | "to-regex-range": "^5.0.1" 1514 | }, 1515 | "engines": { 1516 | "node": ">=8" 1517 | } 1518 | }, 1519 | "node_modules/find-up": { 1520 | "version": "5.0.0", 1521 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", 1522 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", 1523 | "dependencies": { 1524 | "locate-path": "^6.0.0", 1525 | "path-exists": "^4.0.0" 1526 | }, 1527 | "engines": { 1528 | "node": ">=10" 1529 | }, 1530 | "funding": { 1531 | "url": "https://github.com/sponsors/sindresorhus" 1532 | } 1533 | }, 1534 | "node_modules/flat-cache": { 1535 | "version": "3.0.4", 1536 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", 1537 | "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", 1538 | "dependencies": { 1539 | "flatted": "^3.1.0", 1540 | "rimraf": "^3.0.2" 1541 | }, 1542 | "engines": { 1543 | "node": "^10.12.0 || >=12.0.0" 1544 | } 1545 | }, 1546 | "node_modules/flatted": { 1547 | "version": "3.2.7", 1548 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", 1549 | "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==" 1550 | }, 1551 | "node_modules/for-each": { 1552 | "version": "0.3.3", 1553 | "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", 1554 | "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", 1555 | "dependencies": { 1556 | "is-callable": "^1.1.3" 1557 | } 1558 | }, 1559 | "node_modules/fs.realpath": { 1560 | "version": "1.0.0", 1561 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 1562 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" 1563 | }, 1564 | "node_modules/function-bind": { 1565 | "version": "1.1.1", 1566 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", 1567 | "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" 1568 | }, 1569 | "node_modules/function.prototype.name": { 1570 | "version": "1.1.5", 1571 | "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", 1572 | "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", 1573 | "dependencies": { 1574 | "call-bind": "^1.0.2", 1575 | "define-properties": "^1.1.3", 1576 | "es-abstract": "^1.19.0", 1577 | "functions-have-names": "^1.2.2" 1578 | }, 1579 | "engines": { 1580 | "node": ">= 0.4" 1581 | }, 1582 | "funding": { 1583 | "url": "https://github.com/sponsors/ljharb" 1584 | } 1585 | }, 1586 | "node_modules/functions-have-names": { 1587 | "version": "1.2.3", 1588 | "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", 1589 | "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", 1590 | "funding": { 1591 | "url": "https://github.com/sponsors/ljharb" 1592 | } 1593 | }, 1594 | "node_modules/get-intrinsic": { 1595 | "version": "1.2.1", 1596 | "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz", 1597 | "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", 1598 | "dependencies": { 1599 | "function-bind": "^1.1.1", 1600 | "has": "^1.0.3", 1601 | "has-proto": "^1.0.1", 1602 | "has-symbols": "^1.0.3" 1603 | }, 1604 | "funding": { 1605 | "url": "https://github.com/sponsors/ljharb" 1606 | } 1607 | }, 1608 | "node_modules/get-stream": { 1609 | "version": "6.0.1", 1610 | "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", 1611 | "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", 1612 | "engines": { 1613 | "node": ">=10" 1614 | }, 1615 | "funding": { 1616 | "url": "https://github.com/sponsors/sindresorhus" 1617 | } 1618 | }, 1619 | "node_modules/get-symbol-description": { 1620 | "version": "1.0.0", 1621 | "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", 1622 | "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", 1623 | "dependencies": { 1624 | "call-bind": "^1.0.2", 1625 | "get-intrinsic": "^1.1.1" 1626 | }, 1627 | "engines": { 1628 | "node": ">= 0.4" 1629 | }, 1630 | "funding": { 1631 | "url": "https://github.com/sponsors/ljharb" 1632 | } 1633 | }, 1634 | "node_modules/get-tsconfig": { 1635 | "version": "4.6.0", 1636 | "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.6.0.tgz", 1637 | "integrity": "sha512-lgbo68hHTQnFddybKbbs/RDRJnJT5YyGy2kQzVwbq+g67X73i+5MVTval34QxGkOe9X5Ujf1UYpCaphLyltjEg==", 1638 | "dependencies": { 1639 | "resolve-pkg-maps": "^1.0.0" 1640 | }, 1641 | "funding": { 1642 | "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" 1643 | } 1644 | }, 1645 | "node_modules/glob": { 1646 | "version": "7.1.7", 1647 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", 1648 | "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", 1649 | "dependencies": { 1650 | "fs.realpath": "^1.0.0", 1651 | "inflight": "^1.0.4", 1652 | "inherits": "2", 1653 | "minimatch": "^3.0.4", 1654 | "once": "^1.3.0", 1655 | "path-is-absolute": "^1.0.0" 1656 | }, 1657 | "engines": { 1658 | "node": "*" 1659 | }, 1660 | "funding": { 1661 | "url": "https://github.com/sponsors/isaacs" 1662 | } 1663 | }, 1664 | "node_modules/glob-parent": { 1665 | "version": "6.0.2", 1666 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 1667 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 1668 | "dependencies": { 1669 | "is-glob": "^4.0.3" 1670 | }, 1671 | "engines": { 1672 | "node": ">=10.13.0" 1673 | } 1674 | }, 1675 | "node_modules/glob-to-regexp": { 1676 | "version": "0.4.1", 1677 | "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", 1678 | "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" 1679 | }, 1680 | "node_modules/globals": { 1681 | "version": "13.20.0", 1682 | "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", 1683 | "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", 1684 | "dependencies": { 1685 | "type-fest": "^0.20.2" 1686 | }, 1687 | "engines": { 1688 | "node": ">=8" 1689 | }, 1690 | "funding": { 1691 | "url": "https://github.com/sponsors/sindresorhus" 1692 | } 1693 | }, 1694 | "node_modules/globalthis": { 1695 | "version": "1.0.3", 1696 | "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", 1697 | "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", 1698 | "dependencies": { 1699 | "define-properties": "^1.1.3" 1700 | }, 1701 | "engines": { 1702 | "node": ">= 0.4" 1703 | }, 1704 | "funding": { 1705 | "url": "https://github.com/sponsors/ljharb" 1706 | } 1707 | }, 1708 | "node_modules/globby": { 1709 | "version": "11.1.0", 1710 | "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", 1711 | "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", 1712 | "dependencies": { 1713 | "array-union": "^2.1.0", 1714 | "dir-glob": "^3.0.1", 1715 | "fast-glob": "^3.2.9", 1716 | "ignore": "^5.2.0", 1717 | "merge2": "^1.4.1", 1718 | "slash": "^3.0.0" 1719 | }, 1720 | "engines": { 1721 | "node": ">=10" 1722 | }, 1723 | "funding": { 1724 | "url": "https://github.com/sponsors/sindresorhus" 1725 | } 1726 | }, 1727 | "node_modules/gopd": { 1728 | "version": "1.0.1", 1729 | "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", 1730 | "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", 1731 | "dependencies": { 1732 | "get-intrinsic": "^1.1.3" 1733 | }, 1734 | "funding": { 1735 | "url": "https://github.com/sponsors/ljharb" 1736 | } 1737 | }, 1738 | "node_modules/graceful-fs": { 1739 | "version": "4.2.11", 1740 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", 1741 | "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" 1742 | }, 1743 | "node_modules/graphemer": { 1744 | "version": "1.4.0", 1745 | "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", 1746 | "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==" 1747 | }, 1748 | "node_modules/gsap": { 1749 | "version": "3.12.1", 1750 | "resolved": "https://registry.npmjs.org/gsap/-/gsap-3.12.1.tgz", 1751 | "integrity": "sha512-FXtb2YbBE9l8I9Pl5DFLpCMedaiMPztRlr0Ln0CMSnJn+pbTaeKlzgth8cLNPc7PzNwIZe+SEQiBBAWaBKJdVA==" 1752 | }, 1753 | "node_modules/has": { 1754 | "version": "1.0.3", 1755 | "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", 1756 | "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", 1757 | "dependencies": { 1758 | "function-bind": "^1.1.1" 1759 | }, 1760 | "engines": { 1761 | "node": ">= 0.4.0" 1762 | } 1763 | }, 1764 | "node_modules/has-bigints": { 1765 | "version": "1.0.2", 1766 | "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", 1767 | "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", 1768 | "funding": { 1769 | "url": "https://github.com/sponsors/ljharb" 1770 | } 1771 | }, 1772 | "node_modules/has-flag": { 1773 | "version": "4.0.0", 1774 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 1775 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 1776 | "engines": { 1777 | "node": ">=8" 1778 | } 1779 | }, 1780 | "node_modules/has-property-descriptors": { 1781 | "version": "1.0.0", 1782 | "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", 1783 | "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", 1784 | "dependencies": { 1785 | "get-intrinsic": "^1.1.1" 1786 | }, 1787 | "funding": { 1788 | "url": "https://github.com/sponsors/ljharb" 1789 | } 1790 | }, 1791 | "node_modules/has-proto": { 1792 | "version": "1.0.1", 1793 | "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", 1794 | "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", 1795 | "engines": { 1796 | "node": ">= 0.4" 1797 | }, 1798 | "funding": { 1799 | "url": "https://github.com/sponsors/ljharb" 1800 | } 1801 | }, 1802 | "node_modules/has-symbols": { 1803 | "version": "1.0.3", 1804 | "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", 1805 | "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", 1806 | "engines": { 1807 | "node": ">= 0.4" 1808 | }, 1809 | "funding": { 1810 | "url": "https://github.com/sponsors/ljharb" 1811 | } 1812 | }, 1813 | "node_modules/has-tostringtag": { 1814 | "version": "1.0.0", 1815 | "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", 1816 | "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", 1817 | "dependencies": { 1818 | "has-symbols": "^1.0.2" 1819 | }, 1820 | "engines": { 1821 | "node": ">= 0.4" 1822 | }, 1823 | "funding": { 1824 | "url": "https://github.com/sponsors/ljharb" 1825 | } 1826 | }, 1827 | "node_modules/human-signals": { 1828 | "version": "4.3.1", 1829 | "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz", 1830 | "integrity": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==", 1831 | "engines": { 1832 | "node": ">=14.18.0" 1833 | } 1834 | }, 1835 | "node_modules/ignore": { 1836 | "version": "5.2.4", 1837 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", 1838 | "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", 1839 | "engines": { 1840 | "node": ">= 4" 1841 | } 1842 | }, 1843 | "node_modules/import-fresh": { 1844 | "version": "3.3.0", 1845 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", 1846 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", 1847 | "dependencies": { 1848 | "parent-module": "^1.0.0", 1849 | "resolve-from": "^4.0.0" 1850 | }, 1851 | "engines": { 1852 | "node": ">=6" 1853 | }, 1854 | "funding": { 1855 | "url": "https://github.com/sponsors/sindresorhus" 1856 | } 1857 | }, 1858 | "node_modules/imurmurhash": { 1859 | "version": "0.1.4", 1860 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 1861 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 1862 | "engines": { 1863 | "node": ">=0.8.19" 1864 | } 1865 | }, 1866 | "node_modules/inflight": { 1867 | "version": "1.0.6", 1868 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 1869 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 1870 | "dependencies": { 1871 | "once": "^1.3.0", 1872 | "wrappy": "1" 1873 | } 1874 | }, 1875 | "node_modules/inherits": { 1876 | "version": "2.0.4", 1877 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 1878 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" 1879 | }, 1880 | "node_modules/internal-slot": { 1881 | "version": "1.0.5", 1882 | "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz", 1883 | "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", 1884 | "dependencies": { 1885 | "get-intrinsic": "^1.2.0", 1886 | "has": "^1.0.3", 1887 | "side-channel": "^1.0.4" 1888 | }, 1889 | "engines": { 1890 | "node": ">= 0.4" 1891 | } 1892 | }, 1893 | "node_modules/is-array-buffer": { 1894 | "version": "3.0.2", 1895 | "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", 1896 | "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", 1897 | "dependencies": { 1898 | "call-bind": "^1.0.2", 1899 | "get-intrinsic": "^1.2.0", 1900 | "is-typed-array": "^1.1.10" 1901 | }, 1902 | "funding": { 1903 | "url": "https://github.com/sponsors/ljharb" 1904 | } 1905 | }, 1906 | "node_modules/is-bigint": { 1907 | "version": "1.0.4", 1908 | "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", 1909 | "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", 1910 | "dependencies": { 1911 | "has-bigints": "^1.0.1" 1912 | }, 1913 | "funding": { 1914 | "url": "https://github.com/sponsors/ljharb" 1915 | } 1916 | }, 1917 | "node_modules/is-boolean-object": { 1918 | "version": "1.1.2", 1919 | "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", 1920 | "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", 1921 | "dependencies": { 1922 | "call-bind": "^1.0.2", 1923 | "has-tostringtag": "^1.0.0" 1924 | }, 1925 | "engines": { 1926 | "node": ">= 0.4" 1927 | }, 1928 | "funding": { 1929 | "url": "https://github.com/sponsors/ljharb" 1930 | } 1931 | }, 1932 | "node_modules/is-callable": { 1933 | "version": "1.2.7", 1934 | "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", 1935 | "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", 1936 | "engines": { 1937 | "node": ">= 0.4" 1938 | }, 1939 | "funding": { 1940 | "url": "https://github.com/sponsors/ljharb" 1941 | } 1942 | }, 1943 | "node_modules/is-core-module": { 1944 | "version": "2.12.1", 1945 | "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz", 1946 | "integrity": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==", 1947 | "dependencies": { 1948 | "has": "^1.0.3" 1949 | }, 1950 | "funding": { 1951 | "url": "https://github.com/sponsors/ljharb" 1952 | } 1953 | }, 1954 | "node_modules/is-date-object": { 1955 | "version": "1.0.5", 1956 | "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", 1957 | "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", 1958 | "dependencies": { 1959 | "has-tostringtag": "^1.0.0" 1960 | }, 1961 | "engines": { 1962 | "node": ">= 0.4" 1963 | }, 1964 | "funding": { 1965 | "url": "https://github.com/sponsors/ljharb" 1966 | } 1967 | }, 1968 | "node_modules/is-docker": { 1969 | "version": "3.0.0", 1970 | "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", 1971 | "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", 1972 | "bin": { 1973 | "is-docker": "cli.js" 1974 | }, 1975 | "engines": { 1976 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 1977 | }, 1978 | "funding": { 1979 | "url": "https://github.com/sponsors/sindresorhus" 1980 | } 1981 | }, 1982 | "node_modules/is-extglob": { 1983 | "version": "2.1.1", 1984 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 1985 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 1986 | "engines": { 1987 | "node": ">=0.10.0" 1988 | } 1989 | }, 1990 | "node_modules/is-glob": { 1991 | "version": "4.0.3", 1992 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 1993 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 1994 | "dependencies": { 1995 | "is-extglob": "^2.1.1" 1996 | }, 1997 | "engines": { 1998 | "node": ">=0.10.0" 1999 | } 2000 | }, 2001 | "node_modules/is-inside-container": { 2002 | "version": "1.0.0", 2003 | "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz", 2004 | "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", 2005 | "dependencies": { 2006 | "is-docker": "^3.0.0" 2007 | }, 2008 | "bin": { 2009 | "is-inside-container": "cli.js" 2010 | }, 2011 | "engines": { 2012 | "node": ">=14.16" 2013 | }, 2014 | "funding": { 2015 | "url": "https://github.com/sponsors/sindresorhus" 2016 | } 2017 | }, 2018 | "node_modules/is-negative-zero": { 2019 | "version": "2.0.2", 2020 | "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", 2021 | "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", 2022 | "engines": { 2023 | "node": ">= 0.4" 2024 | }, 2025 | "funding": { 2026 | "url": "https://github.com/sponsors/ljharb" 2027 | } 2028 | }, 2029 | "node_modules/is-number": { 2030 | "version": "7.0.0", 2031 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 2032 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 2033 | "engines": { 2034 | "node": ">=0.12.0" 2035 | } 2036 | }, 2037 | "node_modules/is-number-object": { 2038 | "version": "1.0.7", 2039 | "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", 2040 | "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", 2041 | "dependencies": { 2042 | "has-tostringtag": "^1.0.0" 2043 | }, 2044 | "engines": { 2045 | "node": ">= 0.4" 2046 | }, 2047 | "funding": { 2048 | "url": "https://github.com/sponsors/ljharb" 2049 | } 2050 | }, 2051 | "node_modules/is-path-inside": { 2052 | "version": "3.0.3", 2053 | "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", 2054 | "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", 2055 | "engines": { 2056 | "node": ">=8" 2057 | } 2058 | }, 2059 | "node_modules/is-regex": { 2060 | "version": "1.1.4", 2061 | "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", 2062 | "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", 2063 | "dependencies": { 2064 | "call-bind": "^1.0.2", 2065 | "has-tostringtag": "^1.0.0" 2066 | }, 2067 | "engines": { 2068 | "node": ">= 0.4" 2069 | }, 2070 | "funding": { 2071 | "url": "https://github.com/sponsors/ljharb" 2072 | } 2073 | }, 2074 | "node_modules/is-shared-array-buffer": { 2075 | "version": "1.0.2", 2076 | "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", 2077 | "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", 2078 | "dependencies": { 2079 | "call-bind": "^1.0.2" 2080 | }, 2081 | "funding": { 2082 | "url": "https://github.com/sponsors/ljharb" 2083 | } 2084 | }, 2085 | "node_modules/is-stream": { 2086 | "version": "3.0.0", 2087 | "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", 2088 | "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", 2089 | "engines": { 2090 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 2091 | }, 2092 | "funding": { 2093 | "url": "https://github.com/sponsors/sindresorhus" 2094 | } 2095 | }, 2096 | "node_modules/is-string": { 2097 | "version": "1.0.7", 2098 | "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", 2099 | "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", 2100 | "dependencies": { 2101 | "has-tostringtag": "^1.0.0" 2102 | }, 2103 | "engines": { 2104 | "node": ">= 0.4" 2105 | }, 2106 | "funding": { 2107 | "url": "https://github.com/sponsors/ljharb" 2108 | } 2109 | }, 2110 | "node_modules/is-symbol": { 2111 | "version": "1.0.4", 2112 | "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", 2113 | "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", 2114 | "dependencies": { 2115 | "has-symbols": "^1.0.2" 2116 | }, 2117 | "engines": { 2118 | "node": ">= 0.4" 2119 | }, 2120 | "funding": { 2121 | "url": "https://github.com/sponsors/ljharb" 2122 | } 2123 | }, 2124 | "node_modules/is-typed-array": { 2125 | "version": "1.1.10", 2126 | "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", 2127 | "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==", 2128 | "dependencies": { 2129 | "available-typed-arrays": "^1.0.5", 2130 | "call-bind": "^1.0.2", 2131 | "for-each": "^0.3.3", 2132 | "gopd": "^1.0.1", 2133 | "has-tostringtag": "^1.0.0" 2134 | }, 2135 | "engines": { 2136 | "node": ">= 0.4" 2137 | }, 2138 | "funding": { 2139 | "url": "https://github.com/sponsors/ljharb" 2140 | } 2141 | }, 2142 | "node_modules/is-weakref": { 2143 | "version": "1.0.2", 2144 | "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", 2145 | "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", 2146 | "dependencies": { 2147 | "call-bind": "^1.0.2" 2148 | }, 2149 | "funding": { 2150 | "url": "https://github.com/sponsors/ljharb" 2151 | } 2152 | }, 2153 | "node_modules/is-wsl": { 2154 | "version": "2.2.0", 2155 | "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", 2156 | "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", 2157 | "dependencies": { 2158 | "is-docker": "^2.0.0" 2159 | }, 2160 | "engines": { 2161 | "node": ">=8" 2162 | } 2163 | }, 2164 | "node_modules/is-wsl/node_modules/is-docker": { 2165 | "version": "2.2.1", 2166 | "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", 2167 | "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", 2168 | "bin": { 2169 | "is-docker": "cli.js" 2170 | }, 2171 | "engines": { 2172 | "node": ">=8" 2173 | }, 2174 | "funding": { 2175 | "url": "https://github.com/sponsors/sindresorhus" 2176 | } 2177 | }, 2178 | "node_modules/isexe": { 2179 | "version": "2.0.0", 2180 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 2181 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" 2182 | }, 2183 | "node_modules/js-tokens": { 2184 | "version": "4.0.0", 2185 | "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", 2186 | "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" 2187 | }, 2188 | "node_modules/js-yaml": { 2189 | "version": "4.1.0", 2190 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 2191 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 2192 | "dependencies": { 2193 | "argparse": "^2.0.1" 2194 | }, 2195 | "bin": { 2196 | "js-yaml": "bin/js-yaml.js" 2197 | } 2198 | }, 2199 | "node_modules/json-schema-traverse": { 2200 | "version": "0.4.1", 2201 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 2202 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" 2203 | }, 2204 | "node_modules/json-stable-stringify-without-jsonify": { 2205 | "version": "1.0.1", 2206 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", 2207 | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" 2208 | }, 2209 | "node_modules/json5": { 2210 | "version": "1.0.2", 2211 | "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", 2212 | "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", 2213 | "dependencies": { 2214 | "minimist": "^1.2.0" 2215 | }, 2216 | "bin": { 2217 | "json5": "lib/cli.js" 2218 | } 2219 | }, 2220 | "node_modules/jsx-ast-utils": { 2221 | "version": "3.3.3", 2222 | "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz", 2223 | "integrity": "sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==", 2224 | "dependencies": { 2225 | "array-includes": "^3.1.5", 2226 | "object.assign": "^4.1.3" 2227 | }, 2228 | "engines": { 2229 | "node": ">=4.0" 2230 | } 2231 | }, 2232 | "node_modules/language-subtag-registry": { 2233 | "version": "0.3.22", 2234 | "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", 2235 | "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==" 2236 | }, 2237 | "node_modules/language-tags": { 2238 | "version": "1.0.5", 2239 | "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz", 2240 | "integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==", 2241 | "dependencies": { 2242 | "language-subtag-registry": "~0.3.2" 2243 | } 2244 | }, 2245 | "node_modules/levn": { 2246 | "version": "0.4.1", 2247 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", 2248 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", 2249 | "dependencies": { 2250 | "prelude-ls": "^1.2.1", 2251 | "type-check": "~0.4.0" 2252 | }, 2253 | "engines": { 2254 | "node": ">= 0.8.0" 2255 | } 2256 | }, 2257 | "node_modules/locate-path": { 2258 | "version": "6.0.0", 2259 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", 2260 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", 2261 | "dependencies": { 2262 | "p-locate": "^5.0.0" 2263 | }, 2264 | "engines": { 2265 | "node": ">=10" 2266 | }, 2267 | "funding": { 2268 | "url": "https://github.com/sponsors/sindresorhus" 2269 | } 2270 | }, 2271 | "node_modules/locomotive-scroll": { 2272 | "version": "5.0.0-beta.8", 2273 | "resolved": "https://registry.npmjs.org/locomotive-scroll/-/locomotive-scroll-5.0.0-beta.8.tgz", 2274 | "integrity": "sha512-4Nq12voKr5719aaySZg3FX/gQKQIAaAC4NkBiU27aKEKFnYcTeOB1r8VO5bGpEIOGQo94wsiJQNZuRb3TsxjHA==", 2275 | "dependencies": { 2276 | "@studio-freight/lenis": "1.0.12" 2277 | }, 2278 | "engines": { 2279 | "node": ">=17" 2280 | } 2281 | }, 2282 | "node_modules/lodash.merge": { 2283 | "version": "4.6.2", 2284 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", 2285 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" 2286 | }, 2287 | "node_modules/loose-envify": { 2288 | "version": "1.4.0", 2289 | "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", 2290 | "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", 2291 | "dependencies": { 2292 | "js-tokens": "^3.0.0 || ^4.0.0" 2293 | }, 2294 | "bin": { 2295 | "loose-envify": "cli.js" 2296 | } 2297 | }, 2298 | "node_modules/lru-cache": { 2299 | "version": "6.0.0", 2300 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", 2301 | "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", 2302 | "dependencies": { 2303 | "yallist": "^4.0.0" 2304 | }, 2305 | "engines": { 2306 | "node": ">=10" 2307 | } 2308 | }, 2309 | "node_modules/merge-stream": { 2310 | "version": "2.0.0", 2311 | "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", 2312 | "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" 2313 | }, 2314 | "node_modules/merge2": { 2315 | "version": "1.4.1", 2316 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", 2317 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 2318 | "engines": { 2319 | "node": ">= 8" 2320 | } 2321 | }, 2322 | "node_modules/micromatch": { 2323 | "version": "4.0.5", 2324 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", 2325 | "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", 2326 | "dependencies": { 2327 | "braces": "^3.0.2", 2328 | "picomatch": "^2.3.1" 2329 | }, 2330 | "engines": { 2331 | "node": ">=8.6" 2332 | } 2333 | }, 2334 | "node_modules/mimic-fn": { 2335 | "version": "4.0.0", 2336 | "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", 2337 | "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", 2338 | "engines": { 2339 | "node": ">=12" 2340 | }, 2341 | "funding": { 2342 | "url": "https://github.com/sponsors/sindresorhus" 2343 | } 2344 | }, 2345 | "node_modules/minimatch": { 2346 | "version": "3.1.2", 2347 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 2348 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 2349 | "dependencies": { 2350 | "brace-expansion": "^1.1.7" 2351 | }, 2352 | "engines": { 2353 | "node": "*" 2354 | } 2355 | }, 2356 | "node_modules/minimist": { 2357 | "version": "1.2.8", 2358 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", 2359 | "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", 2360 | "funding": { 2361 | "url": "https://github.com/sponsors/ljharb" 2362 | } 2363 | }, 2364 | "node_modules/ms": { 2365 | "version": "2.1.2", 2366 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 2367 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" 2368 | }, 2369 | "node_modules/nanoid": { 2370 | "version": "3.3.6", 2371 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", 2372 | "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", 2373 | "funding": [ 2374 | { 2375 | "type": "github", 2376 | "url": "https://github.com/sponsors/ai" 2377 | } 2378 | ], 2379 | "bin": { 2380 | "nanoid": "bin/nanoid.cjs" 2381 | }, 2382 | "engines": { 2383 | "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" 2384 | } 2385 | }, 2386 | "node_modules/natural-compare": { 2387 | "version": "1.4.0", 2388 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 2389 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" 2390 | }, 2391 | "node_modules/next": { 2392 | "version": "13.4.6", 2393 | "resolved": "https://registry.npmjs.org/next/-/next-13.4.6.tgz", 2394 | "integrity": "sha512-sjVqjxU+U2aXZnYt4Ud6CTLNNwWjdSfMgemGpIQJcN3Z7Jni9xRWbR0ie5fQzCg87aLqQVhKA2ud2gPoqJ9lGw==", 2395 | "dependencies": { 2396 | "@next/env": "13.4.6", 2397 | "@swc/helpers": "0.5.1", 2398 | "busboy": "1.6.0", 2399 | "caniuse-lite": "^1.0.30001406", 2400 | "postcss": "8.4.14", 2401 | "styled-jsx": "5.1.1", 2402 | "watchpack": "2.4.0", 2403 | "zod": "3.21.4" 2404 | }, 2405 | "bin": { 2406 | "next": "dist/bin/next" 2407 | }, 2408 | "engines": { 2409 | "node": ">=16.8.0" 2410 | }, 2411 | "optionalDependencies": { 2412 | "@next/swc-darwin-arm64": "13.4.6", 2413 | "@next/swc-darwin-x64": "13.4.6", 2414 | "@next/swc-linux-arm64-gnu": "13.4.6", 2415 | "@next/swc-linux-arm64-musl": "13.4.6", 2416 | "@next/swc-linux-x64-gnu": "13.4.6", 2417 | "@next/swc-linux-x64-musl": "13.4.6", 2418 | "@next/swc-win32-arm64-msvc": "13.4.6", 2419 | "@next/swc-win32-ia32-msvc": "13.4.6", 2420 | "@next/swc-win32-x64-msvc": "13.4.6" 2421 | }, 2422 | "peerDependencies": { 2423 | "@opentelemetry/api": "^1.1.0", 2424 | "fibers": ">= 3.1.0", 2425 | "react": "^18.2.0", 2426 | "react-dom": "^18.2.0", 2427 | "sass": "^1.3.0" 2428 | }, 2429 | "peerDependenciesMeta": { 2430 | "@opentelemetry/api": { 2431 | "optional": true 2432 | }, 2433 | "fibers": { 2434 | "optional": true 2435 | }, 2436 | "sass": { 2437 | "optional": true 2438 | } 2439 | } 2440 | }, 2441 | "node_modules/npm-run-path": { 2442 | "version": "5.1.0", 2443 | "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", 2444 | "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", 2445 | "dependencies": { 2446 | "path-key": "^4.0.0" 2447 | }, 2448 | "engines": { 2449 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 2450 | }, 2451 | "funding": { 2452 | "url": "https://github.com/sponsors/sindresorhus" 2453 | } 2454 | }, 2455 | "node_modules/npm-run-path/node_modules/path-key": { 2456 | "version": "4.0.0", 2457 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", 2458 | "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", 2459 | "engines": { 2460 | "node": ">=12" 2461 | }, 2462 | "funding": { 2463 | "url": "https://github.com/sponsors/sindresorhus" 2464 | } 2465 | }, 2466 | "node_modules/object-assign": { 2467 | "version": "4.1.1", 2468 | "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", 2469 | "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", 2470 | "engines": { 2471 | "node": ">=0.10.0" 2472 | } 2473 | }, 2474 | "node_modules/object-inspect": { 2475 | "version": "1.12.3", 2476 | "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", 2477 | "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", 2478 | "funding": { 2479 | "url": "https://github.com/sponsors/ljharb" 2480 | } 2481 | }, 2482 | "node_modules/object-keys": { 2483 | "version": "1.1.1", 2484 | "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", 2485 | "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", 2486 | "engines": { 2487 | "node": ">= 0.4" 2488 | } 2489 | }, 2490 | "node_modules/object.assign": { 2491 | "version": "4.1.4", 2492 | "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", 2493 | "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", 2494 | "dependencies": { 2495 | "call-bind": "^1.0.2", 2496 | "define-properties": "^1.1.4", 2497 | "has-symbols": "^1.0.3", 2498 | "object-keys": "^1.1.1" 2499 | }, 2500 | "engines": { 2501 | "node": ">= 0.4" 2502 | }, 2503 | "funding": { 2504 | "url": "https://github.com/sponsors/ljharb" 2505 | } 2506 | }, 2507 | "node_modules/object.entries": { 2508 | "version": "1.1.6", 2509 | "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz", 2510 | "integrity": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==", 2511 | "dependencies": { 2512 | "call-bind": "^1.0.2", 2513 | "define-properties": "^1.1.4", 2514 | "es-abstract": "^1.20.4" 2515 | }, 2516 | "engines": { 2517 | "node": ">= 0.4" 2518 | } 2519 | }, 2520 | "node_modules/object.fromentries": { 2521 | "version": "2.0.6", 2522 | "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz", 2523 | "integrity": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==", 2524 | "dependencies": { 2525 | "call-bind": "^1.0.2", 2526 | "define-properties": "^1.1.4", 2527 | "es-abstract": "^1.20.4" 2528 | }, 2529 | "engines": { 2530 | "node": ">= 0.4" 2531 | }, 2532 | "funding": { 2533 | "url": "https://github.com/sponsors/ljharb" 2534 | } 2535 | }, 2536 | "node_modules/object.hasown": { 2537 | "version": "1.1.2", 2538 | "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz", 2539 | "integrity": "sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==", 2540 | "dependencies": { 2541 | "define-properties": "^1.1.4", 2542 | "es-abstract": "^1.20.4" 2543 | }, 2544 | "funding": { 2545 | "url": "https://github.com/sponsors/ljharb" 2546 | } 2547 | }, 2548 | "node_modules/object.values": { 2549 | "version": "1.1.6", 2550 | "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz", 2551 | "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==", 2552 | "dependencies": { 2553 | "call-bind": "^1.0.2", 2554 | "define-properties": "^1.1.4", 2555 | "es-abstract": "^1.20.4" 2556 | }, 2557 | "engines": { 2558 | "node": ">= 0.4" 2559 | }, 2560 | "funding": { 2561 | "url": "https://github.com/sponsors/ljharb" 2562 | } 2563 | }, 2564 | "node_modules/once": { 2565 | "version": "1.4.0", 2566 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 2567 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 2568 | "dependencies": { 2569 | "wrappy": "1" 2570 | } 2571 | }, 2572 | "node_modules/onetime": { 2573 | "version": "6.0.0", 2574 | "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", 2575 | "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", 2576 | "dependencies": { 2577 | "mimic-fn": "^4.0.0" 2578 | }, 2579 | "engines": { 2580 | "node": ">=12" 2581 | }, 2582 | "funding": { 2583 | "url": "https://github.com/sponsors/sindresorhus" 2584 | } 2585 | }, 2586 | "node_modules/open": { 2587 | "version": "9.1.0", 2588 | "resolved": "https://registry.npmjs.org/open/-/open-9.1.0.tgz", 2589 | "integrity": "sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==", 2590 | "dependencies": { 2591 | "default-browser": "^4.0.0", 2592 | "define-lazy-prop": "^3.0.0", 2593 | "is-inside-container": "^1.0.0", 2594 | "is-wsl": "^2.2.0" 2595 | }, 2596 | "engines": { 2597 | "node": ">=14.16" 2598 | }, 2599 | "funding": { 2600 | "url": "https://github.com/sponsors/sindresorhus" 2601 | } 2602 | }, 2603 | "node_modules/optionator": { 2604 | "version": "0.9.1", 2605 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", 2606 | "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", 2607 | "dependencies": { 2608 | "deep-is": "^0.1.3", 2609 | "fast-levenshtein": "^2.0.6", 2610 | "levn": "^0.4.1", 2611 | "prelude-ls": "^1.2.1", 2612 | "type-check": "^0.4.0", 2613 | "word-wrap": "^1.2.3" 2614 | }, 2615 | "engines": { 2616 | "node": ">= 0.8.0" 2617 | } 2618 | }, 2619 | "node_modules/p-limit": { 2620 | "version": "3.1.0", 2621 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 2622 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 2623 | "dependencies": { 2624 | "yocto-queue": "^0.1.0" 2625 | }, 2626 | "engines": { 2627 | "node": ">=10" 2628 | }, 2629 | "funding": { 2630 | "url": "https://github.com/sponsors/sindresorhus" 2631 | } 2632 | }, 2633 | "node_modules/p-locate": { 2634 | "version": "5.0.0", 2635 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", 2636 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", 2637 | "dependencies": { 2638 | "p-limit": "^3.0.2" 2639 | }, 2640 | "engines": { 2641 | "node": ">=10" 2642 | }, 2643 | "funding": { 2644 | "url": "https://github.com/sponsors/sindresorhus" 2645 | } 2646 | }, 2647 | "node_modules/parent-module": { 2648 | "version": "1.0.1", 2649 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 2650 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 2651 | "dependencies": { 2652 | "callsites": "^3.0.0" 2653 | }, 2654 | "engines": { 2655 | "node": ">=6" 2656 | } 2657 | }, 2658 | "node_modules/path-exists": { 2659 | "version": "4.0.0", 2660 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 2661 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 2662 | "engines": { 2663 | "node": ">=8" 2664 | } 2665 | }, 2666 | "node_modules/path-is-absolute": { 2667 | "version": "1.0.1", 2668 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 2669 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", 2670 | "engines": { 2671 | "node": ">=0.10.0" 2672 | } 2673 | }, 2674 | "node_modules/path-key": { 2675 | "version": "3.1.1", 2676 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 2677 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 2678 | "engines": { 2679 | "node": ">=8" 2680 | } 2681 | }, 2682 | "node_modules/path-parse": { 2683 | "version": "1.0.7", 2684 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", 2685 | "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" 2686 | }, 2687 | "node_modules/path-type": { 2688 | "version": "4.0.0", 2689 | "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", 2690 | "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", 2691 | "engines": { 2692 | "node": ">=8" 2693 | } 2694 | }, 2695 | "node_modules/picocolors": { 2696 | "version": "1.0.0", 2697 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", 2698 | "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" 2699 | }, 2700 | "node_modules/picomatch": { 2701 | "version": "2.3.1", 2702 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 2703 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 2704 | "engines": { 2705 | "node": ">=8.6" 2706 | }, 2707 | "funding": { 2708 | "url": "https://github.com/sponsors/jonschlinkert" 2709 | } 2710 | }, 2711 | "node_modules/postcss": { 2712 | "version": "8.4.14", 2713 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz", 2714 | "integrity": "sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==", 2715 | "funding": [ 2716 | { 2717 | "type": "opencollective", 2718 | "url": "https://opencollective.com/postcss/" 2719 | }, 2720 | { 2721 | "type": "tidelift", 2722 | "url": "https://tidelift.com/funding/github/npm/postcss" 2723 | } 2724 | ], 2725 | "dependencies": { 2726 | "nanoid": "^3.3.4", 2727 | "picocolors": "^1.0.0", 2728 | "source-map-js": "^1.0.2" 2729 | }, 2730 | "engines": { 2731 | "node": "^10 || ^12 || >=14" 2732 | } 2733 | }, 2734 | "node_modules/prelude-ls": { 2735 | "version": "1.2.1", 2736 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", 2737 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", 2738 | "engines": { 2739 | "node": ">= 0.8.0" 2740 | } 2741 | }, 2742 | "node_modules/prop-types": { 2743 | "version": "15.8.1", 2744 | "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", 2745 | "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", 2746 | "dependencies": { 2747 | "loose-envify": "^1.4.0", 2748 | "object-assign": "^4.1.1", 2749 | "react-is": "^16.13.1" 2750 | } 2751 | }, 2752 | "node_modules/punycode": { 2753 | "version": "2.3.0", 2754 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", 2755 | "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", 2756 | "engines": { 2757 | "node": ">=6" 2758 | } 2759 | }, 2760 | "node_modules/queue-microtask": { 2761 | "version": "1.2.3", 2762 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 2763 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 2764 | "funding": [ 2765 | { 2766 | "type": "github", 2767 | "url": "https://github.com/sponsors/feross" 2768 | }, 2769 | { 2770 | "type": "patreon", 2771 | "url": "https://www.patreon.com/feross" 2772 | }, 2773 | { 2774 | "type": "consulting", 2775 | "url": "https://feross.org/support" 2776 | } 2777 | ] 2778 | }, 2779 | "node_modules/react": { 2780 | "version": "18.2.0", 2781 | "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", 2782 | "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", 2783 | "dependencies": { 2784 | "loose-envify": "^1.1.0" 2785 | }, 2786 | "engines": { 2787 | "node": ">=0.10.0" 2788 | } 2789 | }, 2790 | "node_modules/react-dom": { 2791 | "version": "18.2.0", 2792 | "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", 2793 | "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", 2794 | "dependencies": { 2795 | "loose-envify": "^1.1.0", 2796 | "scheduler": "^0.23.0" 2797 | }, 2798 | "peerDependencies": { 2799 | "react": "^18.2.0" 2800 | } 2801 | }, 2802 | "node_modules/react-is": { 2803 | "version": "16.13.1", 2804 | "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", 2805 | "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" 2806 | }, 2807 | "node_modules/regenerator-runtime": { 2808 | "version": "0.13.11", 2809 | "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", 2810 | "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" 2811 | }, 2812 | "node_modules/regexp.prototype.flags": { 2813 | "version": "1.5.0", 2814 | "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz", 2815 | "integrity": "sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==", 2816 | "dependencies": { 2817 | "call-bind": "^1.0.2", 2818 | "define-properties": "^1.2.0", 2819 | "functions-have-names": "^1.2.3" 2820 | }, 2821 | "engines": { 2822 | "node": ">= 0.4" 2823 | }, 2824 | "funding": { 2825 | "url": "https://github.com/sponsors/ljharb" 2826 | } 2827 | }, 2828 | "node_modules/resolve": { 2829 | "version": "1.22.2", 2830 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", 2831 | "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", 2832 | "dependencies": { 2833 | "is-core-module": "^2.11.0", 2834 | "path-parse": "^1.0.7", 2835 | "supports-preserve-symlinks-flag": "^1.0.0" 2836 | }, 2837 | "bin": { 2838 | "resolve": "bin/resolve" 2839 | }, 2840 | "funding": { 2841 | "url": "https://github.com/sponsors/ljharb" 2842 | } 2843 | }, 2844 | "node_modules/resolve-from": { 2845 | "version": "4.0.0", 2846 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 2847 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 2848 | "engines": { 2849 | "node": ">=4" 2850 | } 2851 | }, 2852 | "node_modules/resolve-pkg-maps": { 2853 | "version": "1.0.0", 2854 | "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", 2855 | "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", 2856 | "funding": { 2857 | "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1" 2858 | } 2859 | }, 2860 | "node_modules/reusify": { 2861 | "version": "1.0.4", 2862 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", 2863 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", 2864 | "engines": { 2865 | "iojs": ">=1.0.0", 2866 | "node": ">=0.10.0" 2867 | } 2868 | }, 2869 | "node_modules/rimraf": { 2870 | "version": "3.0.2", 2871 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", 2872 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", 2873 | "dependencies": { 2874 | "glob": "^7.1.3" 2875 | }, 2876 | "bin": { 2877 | "rimraf": "bin.js" 2878 | }, 2879 | "funding": { 2880 | "url": "https://github.com/sponsors/isaacs" 2881 | } 2882 | }, 2883 | "node_modules/run-applescript": { 2884 | "version": "5.0.0", 2885 | "resolved": "https://registry.npmjs.org/run-applescript/-/run-applescript-5.0.0.tgz", 2886 | "integrity": "sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==", 2887 | "dependencies": { 2888 | "execa": "^5.0.0" 2889 | }, 2890 | "engines": { 2891 | "node": ">=12" 2892 | }, 2893 | "funding": { 2894 | "url": "https://github.com/sponsors/sindresorhus" 2895 | } 2896 | }, 2897 | "node_modules/run-applescript/node_modules/execa": { 2898 | "version": "5.1.1", 2899 | "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", 2900 | "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", 2901 | "dependencies": { 2902 | "cross-spawn": "^7.0.3", 2903 | "get-stream": "^6.0.0", 2904 | "human-signals": "^2.1.0", 2905 | "is-stream": "^2.0.0", 2906 | "merge-stream": "^2.0.0", 2907 | "npm-run-path": "^4.0.1", 2908 | "onetime": "^5.1.2", 2909 | "signal-exit": "^3.0.3", 2910 | "strip-final-newline": "^2.0.0" 2911 | }, 2912 | "engines": { 2913 | "node": ">=10" 2914 | }, 2915 | "funding": { 2916 | "url": "https://github.com/sindresorhus/execa?sponsor=1" 2917 | } 2918 | }, 2919 | "node_modules/run-applescript/node_modules/human-signals": { 2920 | "version": "2.1.0", 2921 | "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", 2922 | "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", 2923 | "engines": { 2924 | "node": ">=10.17.0" 2925 | } 2926 | }, 2927 | "node_modules/run-applescript/node_modules/is-stream": { 2928 | "version": "2.0.1", 2929 | "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", 2930 | "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", 2931 | "engines": { 2932 | "node": ">=8" 2933 | }, 2934 | "funding": { 2935 | "url": "https://github.com/sponsors/sindresorhus" 2936 | } 2937 | }, 2938 | "node_modules/run-applescript/node_modules/mimic-fn": { 2939 | "version": "2.1.0", 2940 | "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", 2941 | "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", 2942 | "engines": { 2943 | "node": ">=6" 2944 | } 2945 | }, 2946 | "node_modules/run-applescript/node_modules/npm-run-path": { 2947 | "version": "4.0.1", 2948 | "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", 2949 | "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", 2950 | "dependencies": { 2951 | "path-key": "^3.0.0" 2952 | }, 2953 | "engines": { 2954 | "node": ">=8" 2955 | } 2956 | }, 2957 | "node_modules/run-applescript/node_modules/onetime": { 2958 | "version": "5.1.2", 2959 | "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", 2960 | "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", 2961 | "dependencies": { 2962 | "mimic-fn": "^2.1.0" 2963 | }, 2964 | "engines": { 2965 | "node": ">=6" 2966 | }, 2967 | "funding": { 2968 | "url": "https://github.com/sponsors/sindresorhus" 2969 | } 2970 | }, 2971 | "node_modules/run-applescript/node_modules/strip-final-newline": { 2972 | "version": "2.0.0", 2973 | "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", 2974 | "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", 2975 | "engines": { 2976 | "node": ">=6" 2977 | } 2978 | }, 2979 | "node_modules/run-parallel": { 2980 | "version": "1.2.0", 2981 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 2982 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 2983 | "funding": [ 2984 | { 2985 | "type": "github", 2986 | "url": "https://github.com/sponsors/feross" 2987 | }, 2988 | { 2989 | "type": "patreon", 2990 | "url": "https://www.patreon.com/feross" 2991 | }, 2992 | { 2993 | "type": "consulting", 2994 | "url": "https://feross.org/support" 2995 | } 2996 | ], 2997 | "dependencies": { 2998 | "queue-microtask": "^1.2.2" 2999 | } 3000 | }, 3001 | "node_modules/safe-regex-test": { 3002 | "version": "1.0.0", 3003 | "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", 3004 | "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", 3005 | "dependencies": { 3006 | "call-bind": "^1.0.2", 3007 | "get-intrinsic": "^1.1.3", 3008 | "is-regex": "^1.1.4" 3009 | }, 3010 | "funding": { 3011 | "url": "https://github.com/sponsors/ljharb" 3012 | } 3013 | }, 3014 | "node_modules/scheduler": { 3015 | "version": "0.23.0", 3016 | "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", 3017 | "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", 3018 | "dependencies": { 3019 | "loose-envify": "^1.1.0" 3020 | } 3021 | }, 3022 | "node_modules/semver": { 3023 | "version": "7.5.2", 3024 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.2.tgz", 3025 | "integrity": "sha512-SoftuTROv/cRjCze/scjGyiDtcUyxw1rgYQSZY7XTmtR5hX+dm76iDbTH8TkLPHCQmlbQVSSbNZCPM2hb0knnQ==", 3026 | "dependencies": { 3027 | "lru-cache": "^6.0.0" 3028 | }, 3029 | "bin": { 3030 | "semver": "bin/semver.js" 3031 | }, 3032 | "engines": { 3033 | "node": ">=10" 3034 | } 3035 | }, 3036 | "node_modules/shebang-command": { 3037 | "version": "2.0.0", 3038 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 3039 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 3040 | "dependencies": { 3041 | "shebang-regex": "^3.0.0" 3042 | }, 3043 | "engines": { 3044 | "node": ">=8" 3045 | } 3046 | }, 3047 | "node_modules/shebang-regex": { 3048 | "version": "3.0.0", 3049 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 3050 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 3051 | "engines": { 3052 | "node": ">=8" 3053 | } 3054 | }, 3055 | "node_modules/side-channel": { 3056 | "version": "1.0.4", 3057 | "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", 3058 | "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", 3059 | "dependencies": { 3060 | "call-bind": "^1.0.0", 3061 | "get-intrinsic": "^1.0.2", 3062 | "object-inspect": "^1.9.0" 3063 | }, 3064 | "funding": { 3065 | "url": "https://github.com/sponsors/ljharb" 3066 | } 3067 | }, 3068 | "node_modules/signal-exit": { 3069 | "version": "3.0.7", 3070 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", 3071 | "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" 3072 | }, 3073 | "node_modules/slash": { 3074 | "version": "3.0.0", 3075 | "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", 3076 | "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", 3077 | "engines": { 3078 | "node": ">=8" 3079 | } 3080 | }, 3081 | "node_modules/source-map-js": { 3082 | "version": "1.0.2", 3083 | "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", 3084 | "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", 3085 | "engines": { 3086 | "node": ">=0.10.0" 3087 | } 3088 | }, 3089 | "node_modules/streamsearch": { 3090 | "version": "1.1.0", 3091 | "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", 3092 | "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", 3093 | "engines": { 3094 | "node": ">=10.0.0" 3095 | } 3096 | }, 3097 | "node_modules/string.prototype.matchall": { 3098 | "version": "4.0.8", 3099 | "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz", 3100 | "integrity": "sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==", 3101 | "dependencies": { 3102 | "call-bind": "^1.0.2", 3103 | "define-properties": "^1.1.4", 3104 | "es-abstract": "^1.20.4", 3105 | "get-intrinsic": "^1.1.3", 3106 | "has-symbols": "^1.0.3", 3107 | "internal-slot": "^1.0.3", 3108 | "regexp.prototype.flags": "^1.4.3", 3109 | "side-channel": "^1.0.4" 3110 | }, 3111 | "funding": { 3112 | "url": "https://github.com/sponsors/ljharb" 3113 | } 3114 | }, 3115 | "node_modules/string.prototype.trim": { 3116 | "version": "1.2.7", 3117 | "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz", 3118 | "integrity": "sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==", 3119 | "dependencies": { 3120 | "call-bind": "^1.0.2", 3121 | "define-properties": "^1.1.4", 3122 | "es-abstract": "^1.20.4" 3123 | }, 3124 | "engines": { 3125 | "node": ">= 0.4" 3126 | }, 3127 | "funding": { 3128 | "url": "https://github.com/sponsors/ljharb" 3129 | } 3130 | }, 3131 | "node_modules/string.prototype.trimend": { 3132 | "version": "1.0.6", 3133 | "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz", 3134 | "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==", 3135 | "dependencies": { 3136 | "call-bind": "^1.0.2", 3137 | "define-properties": "^1.1.4", 3138 | "es-abstract": "^1.20.4" 3139 | }, 3140 | "funding": { 3141 | "url": "https://github.com/sponsors/ljharb" 3142 | } 3143 | }, 3144 | "node_modules/string.prototype.trimstart": { 3145 | "version": "1.0.6", 3146 | "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz", 3147 | "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==", 3148 | "dependencies": { 3149 | "call-bind": "^1.0.2", 3150 | "define-properties": "^1.1.4", 3151 | "es-abstract": "^1.20.4" 3152 | }, 3153 | "funding": { 3154 | "url": "https://github.com/sponsors/ljharb" 3155 | } 3156 | }, 3157 | "node_modules/strip-ansi": { 3158 | "version": "6.0.1", 3159 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 3160 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 3161 | "dependencies": { 3162 | "ansi-regex": "^5.0.1" 3163 | }, 3164 | "engines": { 3165 | "node": ">=8" 3166 | } 3167 | }, 3168 | "node_modules/strip-bom": { 3169 | "version": "3.0.0", 3170 | "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", 3171 | "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", 3172 | "engines": { 3173 | "node": ">=4" 3174 | } 3175 | }, 3176 | "node_modules/strip-final-newline": { 3177 | "version": "3.0.0", 3178 | "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", 3179 | "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", 3180 | "engines": { 3181 | "node": ">=12" 3182 | }, 3183 | "funding": { 3184 | "url": "https://github.com/sponsors/sindresorhus" 3185 | } 3186 | }, 3187 | "node_modules/strip-json-comments": { 3188 | "version": "3.1.1", 3189 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 3190 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 3191 | "engines": { 3192 | "node": ">=8" 3193 | }, 3194 | "funding": { 3195 | "url": "https://github.com/sponsors/sindresorhus" 3196 | } 3197 | }, 3198 | "node_modules/styled-jsx": { 3199 | "version": "5.1.1", 3200 | "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz", 3201 | "integrity": "sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==", 3202 | "dependencies": { 3203 | "client-only": "0.0.1" 3204 | }, 3205 | "engines": { 3206 | "node": ">= 12.0.0" 3207 | }, 3208 | "peerDependencies": { 3209 | "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0" 3210 | }, 3211 | "peerDependenciesMeta": { 3212 | "@babel/core": { 3213 | "optional": true 3214 | }, 3215 | "babel-plugin-macros": { 3216 | "optional": true 3217 | } 3218 | } 3219 | }, 3220 | "node_modules/supports-color": { 3221 | "version": "7.2.0", 3222 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 3223 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 3224 | "dependencies": { 3225 | "has-flag": "^4.0.0" 3226 | }, 3227 | "engines": { 3228 | "node": ">=8" 3229 | } 3230 | }, 3231 | "node_modules/supports-preserve-symlinks-flag": { 3232 | "version": "1.0.0", 3233 | "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", 3234 | "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", 3235 | "engines": { 3236 | "node": ">= 0.4" 3237 | }, 3238 | "funding": { 3239 | "url": "https://github.com/sponsors/ljharb" 3240 | } 3241 | }, 3242 | "node_modules/synckit": { 3243 | "version": "0.8.5", 3244 | "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.8.5.tgz", 3245 | "integrity": "sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==", 3246 | "dependencies": { 3247 | "@pkgr/utils": "^2.3.1", 3248 | "tslib": "^2.5.0" 3249 | }, 3250 | "engines": { 3251 | "node": "^14.18.0 || >=16.0.0" 3252 | }, 3253 | "funding": { 3254 | "url": "https://opencollective.com/unts" 3255 | } 3256 | }, 3257 | "node_modules/tapable": { 3258 | "version": "2.2.1", 3259 | "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", 3260 | "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", 3261 | "engines": { 3262 | "node": ">=6" 3263 | } 3264 | }, 3265 | "node_modules/text-table": { 3266 | "version": "0.2.0", 3267 | "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", 3268 | "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==" 3269 | }, 3270 | "node_modules/titleize": { 3271 | "version": "3.0.0", 3272 | "resolved": "https://registry.npmjs.org/titleize/-/titleize-3.0.0.tgz", 3273 | "integrity": "sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==", 3274 | "engines": { 3275 | "node": ">=12" 3276 | }, 3277 | "funding": { 3278 | "url": "https://github.com/sponsors/sindresorhus" 3279 | } 3280 | }, 3281 | "node_modules/to-regex-range": { 3282 | "version": "5.0.1", 3283 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 3284 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 3285 | "dependencies": { 3286 | "is-number": "^7.0.0" 3287 | }, 3288 | "engines": { 3289 | "node": ">=8.0" 3290 | } 3291 | }, 3292 | "node_modules/tsconfig-paths": { 3293 | "version": "3.14.2", 3294 | "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", 3295 | "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", 3296 | "dependencies": { 3297 | "@types/json5": "^0.0.29", 3298 | "json5": "^1.0.2", 3299 | "minimist": "^1.2.6", 3300 | "strip-bom": "^3.0.0" 3301 | } 3302 | }, 3303 | "node_modules/tslib": { 3304 | "version": "2.5.3", 3305 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz", 3306 | "integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==" 3307 | }, 3308 | "node_modules/tsutils": { 3309 | "version": "3.21.0", 3310 | "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", 3311 | "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", 3312 | "dependencies": { 3313 | "tslib": "^1.8.1" 3314 | }, 3315 | "engines": { 3316 | "node": ">= 6" 3317 | }, 3318 | "peerDependencies": { 3319 | "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" 3320 | } 3321 | }, 3322 | "node_modules/tsutils/node_modules/tslib": { 3323 | "version": "1.14.1", 3324 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", 3325 | "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" 3326 | }, 3327 | "node_modules/type-check": { 3328 | "version": "0.4.0", 3329 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", 3330 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", 3331 | "dependencies": { 3332 | "prelude-ls": "^1.2.1" 3333 | }, 3334 | "engines": { 3335 | "node": ">= 0.8.0" 3336 | } 3337 | }, 3338 | "node_modules/type-fest": { 3339 | "version": "0.20.2", 3340 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", 3341 | "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", 3342 | "engines": { 3343 | "node": ">=10" 3344 | }, 3345 | "funding": { 3346 | "url": "https://github.com/sponsors/sindresorhus" 3347 | } 3348 | }, 3349 | "node_modules/typed-array-length": { 3350 | "version": "1.0.4", 3351 | "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", 3352 | "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", 3353 | "dependencies": { 3354 | "call-bind": "^1.0.2", 3355 | "for-each": "^0.3.3", 3356 | "is-typed-array": "^1.1.9" 3357 | }, 3358 | "funding": { 3359 | "url": "https://github.com/sponsors/ljharb" 3360 | } 3361 | }, 3362 | "node_modules/typescript": { 3363 | "version": "5.1.3", 3364 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.1.3.tgz", 3365 | "integrity": "sha512-XH627E9vkeqhlZFQuL+UsyAXEnibT0kWR2FWONlr4sTjvxyJYnyefgrkyECLzM5NenmKzRAy2rR/OlYLA1HkZw==", 3366 | "peer": true, 3367 | "bin": { 3368 | "tsc": "bin/tsc", 3369 | "tsserver": "bin/tsserver" 3370 | }, 3371 | "engines": { 3372 | "node": ">=14.17" 3373 | } 3374 | }, 3375 | "node_modules/unbox-primitive": { 3376 | "version": "1.0.2", 3377 | "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", 3378 | "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", 3379 | "dependencies": { 3380 | "call-bind": "^1.0.2", 3381 | "has-bigints": "^1.0.2", 3382 | "has-symbols": "^1.0.3", 3383 | "which-boxed-primitive": "^1.0.2" 3384 | }, 3385 | "funding": { 3386 | "url": "https://github.com/sponsors/ljharb" 3387 | } 3388 | }, 3389 | "node_modules/untildify": { 3390 | "version": "4.0.0", 3391 | "resolved": "https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz", 3392 | "integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==", 3393 | "engines": { 3394 | "node": ">=8" 3395 | } 3396 | }, 3397 | "node_modules/uri-js": { 3398 | "version": "4.4.1", 3399 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 3400 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 3401 | "dependencies": { 3402 | "punycode": "^2.1.0" 3403 | } 3404 | }, 3405 | "node_modules/watchpack": { 3406 | "version": "2.4.0", 3407 | "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", 3408 | "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", 3409 | "dependencies": { 3410 | "glob-to-regexp": "^0.4.1", 3411 | "graceful-fs": "^4.1.2" 3412 | }, 3413 | "engines": { 3414 | "node": ">=10.13.0" 3415 | } 3416 | }, 3417 | "node_modules/which": { 3418 | "version": "2.0.2", 3419 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 3420 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 3421 | "dependencies": { 3422 | "isexe": "^2.0.0" 3423 | }, 3424 | "bin": { 3425 | "node-which": "bin/node-which" 3426 | }, 3427 | "engines": { 3428 | "node": ">= 8" 3429 | } 3430 | }, 3431 | "node_modules/which-boxed-primitive": { 3432 | "version": "1.0.2", 3433 | "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", 3434 | "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", 3435 | "dependencies": { 3436 | "is-bigint": "^1.0.1", 3437 | "is-boolean-object": "^1.1.0", 3438 | "is-number-object": "^1.0.4", 3439 | "is-string": "^1.0.5", 3440 | "is-symbol": "^1.0.3" 3441 | }, 3442 | "funding": { 3443 | "url": "https://github.com/sponsors/ljharb" 3444 | } 3445 | }, 3446 | "node_modules/which-typed-array": { 3447 | "version": "1.1.9", 3448 | "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz", 3449 | "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==", 3450 | "dependencies": { 3451 | "available-typed-arrays": "^1.0.5", 3452 | "call-bind": "^1.0.2", 3453 | "for-each": "^0.3.3", 3454 | "gopd": "^1.0.1", 3455 | "has-tostringtag": "^1.0.0", 3456 | "is-typed-array": "^1.1.10" 3457 | }, 3458 | "engines": { 3459 | "node": ">= 0.4" 3460 | }, 3461 | "funding": { 3462 | "url": "https://github.com/sponsors/ljharb" 3463 | } 3464 | }, 3465 | "node_modules/word-wrap": { 3466 | "version": "1.2.3", 3467 | "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", 3468 | "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", 3469 | "engines": { 3470 | "node": ">=0.10.0" 3471 | } 3472 | }, 3473 | "node_modules/wrappy": { 3474 | "version": "1.0.2", 3475 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 3476 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" 3477 | }, 3478 | "node_modules/yallist": { 3479 | "version": "4.0.0", 3480 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", 3481 | "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" 3482 | }, 3483 | "node_modules/yocto-queue": { 3484 | "version": "0.1.0", 3485 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 3486 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 3487 | "engines": { 3488 | "node": ">=10" 3489 | }, 3490 | "funding": { 3491 | "url": "https://github.com/sponsors/sindresorhus" 3492 | } 3493 | }, 3494 | "node_modules/zod": { 3495 | "version": "3.21.4", 3496 | "resolved": "https://registry.npmjs.org/zod/-/zod-3.21.4.tgz", 3497 | "integrity": "sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==", 3498 | "funding": { 3499 | "url": "https://github.com/sponsors/colinhacks" 3500 | } 3501 | } 3502 | } 3503 | } 3504 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "smooth-scroll-v2", 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 | "eslint": "8.43.0", 13 | "eslint-config-next": "13.4.6", 14 | "gsap": "^3.12.1", 15 | "locomotive-scroll": "^5.0.0-beta.8", 16 | "next": "13.4.6", 17 | "react": "18.2.0", 18 | "react-dom": "18.2.0" 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /public/._next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivierlarose/smooth-scroll/38b3ffe3e7e64ec63c63a1b7695d5daea022f099/public/._next.svg -------------------------------------------------------------------------------- /public/images/background.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivierlarose/smooth-scroll/38b3ffe3e7e64ec63c63a1b7695d5daea022f099/public/images/background.jpeg -------------------------------------------------------------------------------- /public/images/intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivierlarose/smooth-scroll/38b3ffe3e7e64ec63c63a1b7695d5daea022f099/public/images/intro.png -------------------------------------------------------------------------------- /public/images/miniques_lagoon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivierlarose/smooth-scroll/38b3ffe3e7e64ec63c63a1b7695d5daea022f099/public/images/miniques_lagoon.jpg -------------------------------------------------------------------------------- /public/images/miscani_lake.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivierlarose/smooth-scroll/38b3ffe3e7e64ec63c63a1b7695d5daea022f099/public/images/miscani_lake.jpeg -------------------------------------------------------------------------------- /public/images/salar_de_atacama.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivierlarose/smooth-scroll/38b3ffe3e7e64ec63c63a1b7695d5daea022f099/public/images/salar_de_atacama.jpg -------------------------------------------------------------------------------- /public/images/valle_de_la_muerte.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivierlarose/smooth-scroll/38b3ffe3e7e64ec63c63a1b7695d5daea022f099/public/images/valle_de_la_muerte.jpeg -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivierlarose/smooth-scroll/38b3ffe3e7e64ec63c63a1b7695d5daea022f099/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- 1 | @import 'node_modules/locomotive-scroll/dist/locomotive-scroll'; 2 | 3 | body{ 4 | margin: 0px; 5 | background-color: black; 6 | } 7 | 8 | -------------------------------------------------------------------------------- /src/app/layout.js: -------------------------------------------------------------------------------- 1 | import './globals.css' 2 | import { Inter } from 'next/font/google' 3 | 4 | const inter = Inter({ subsets: ['latin'] }) 5 | 6 | export const metadata = { 7 | title: 'Create Next App', 8 | description: 'Generated by create next app', 9 | } 10 | 11 | export default function RootLayout({ children }) { 12 | 13 | return ( 14 | 15 | {children} 16 | 17 | ) 18 | } 19 | -------------------------------------------------------------------------------- /src/app/page.js: -------------------------------------------------------------------------------- 1 | 'use client'; 2 | import { useEffect } from 'react'; 3 | import styles from './page.module.css' 4 | import Intro from '../components/Intro'; 5 | import Description from '../components/Description'; 6 | import Projects from '../components/Projects'; 7 | 8 | export default function Home() { 9 | 10 | useEffect( () => { 11 | ( 12 | async () => { 13 | const LocomotiveScroll = (await import('locomotive-scroll')).default 14 | const locomotiveScroll = new LocomotiveScroll(); 15 | } 16 | )() 17 | }, []) 18 | 19 | return ( 20 |
21 | 22 | 23 | 24 |
25 | ) 26 | } 27 | -------------------------------------------------------------------------------- /src/app/page.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivierlarose/smooth-scroll/38b3ffe3e7e64ec63c63a1b7695d5daea022f099/src/app/page.module.css -------------------------------------------------------------------------------- /src/components/Description/index.jsx: -------------------------------------------------------------------------------- 1 | import React, { useLayoutEffect, useRef } from 'react' 2 | import { ScrollTrigger } from 'gsap/ScrollTrigger'; 3 | import gsap from 'gsap'; 4 | import styles from './style.module.css'; 5 | 6 | const phrases = ["Los Flamencos National Reserve", "is a nature reserve located", "in the commune of San Pedro de Atacama", "The reserve covers a total area", "of 740 square kilometres (290 sq mi)"] 7 | 8 | export default function Index() { 9 | 10 | return ( 11 |
12 | { 13 | phrases.map( (phrase, index) => { 14 | return {phrase} 15 | }) 16 | } 17 |
18 | ) 19 | } 20 | 21 | function AnimatedText({children}) { 22 | const text = useRef(null); 23 | 24 | useLayoutEffect( () => { 25 | gsap.registerPlugin(ScrollTrigger); 26 | gsap.from(text.current, { 27 | scrollTrigger: { 28 | trigger: text.current, 29 | scrub: true, 30 | start: "0px bottom", 31 | end: "bottom+=400px bottom", 32 | }, 33 | opacity: 0, 34 | left: "-200px", 35 | ease: "power3.Out" 36 | }) 37 | }, []) 38 | 39 | return

{children}

40 | } -------------------------------------------------------------------------------- /src/components/Description/style.module.css: -------------------------------------------------------------------------------- 1 | .description{ 2 | position: relative; 3 | color: white; 4 | font-size: 3vw; 5 | text-transform: uppercase; 6 | margin-top: 30vw; 7 | margin-left: 10vw; 8 | } 9 | .description p{ 10 | margin: 0px; 11 | position: relative; 12 | } -------------------------------------------------------------------------------- /src/components/Intro/index.jsx: -------------------------------------------------------------------------------- 1 | 'use client'; 2 | import React, { useLayoutEffect, useRef } from 'react' 3 | import styles from './style.module.css'; 4 | import Image from 'next/image'; 5 | import gsap from 'gsap'; 6 | import { ScrollTrigger } from 'gsap/ScrollTrigger'; 7 | 8 | export default function Index() { 9 | 10 | const background = useRef(null); 11 | const introImage = useRef(null); 12 | 13 | useLayoutEffect( () => { 14 | gsap.registerPlugin(ScrollTrigger); 15 | 16 | const timeline = gsap.timeline({ 17 | scrollTrigger: { 18 | trigger: document.documentElement, 19 | scrub: true, 20 | start: "top", 21 | end: "+=500px", 22 | }, 23 | }) 24 | 25 | timeline 26 | .from(background.current, {clipPath: `inset(15%)`}) 27 | .to(introImage.current, {height: "200px"}, 0) 28 | }, []) 29 | 30 | return ( 31 |
32 |
33 | background image 39 |
40 |
41 |
42 | intro image 48 |
49 |

SMOOTH SCROLL

50 |
51 |
52 | ) 53 | } 54 | -------------------------------------------------------------------------------- /src/components/Intro/style.module.css: -------------------------------------------------------------------------------- 1 | .homeHeader{ 2 | position: relative; 3 | width: 100%; 4 | display: flex; 5 | justify-content: center; 6 | } 7 | 8 | .backgroundImage{ 9 | width: 100%; 10 | height: 140vh; 11 | position: absolute; 12 | filter: brightness(60%); 13 | } 14 | 15 | .backgroundImage img{ 16 | object-fit: cover; 17 | } 18 | 19 | .intro{ 20 | display: flex; 21 | justify-content: center; 22 | position: relative; 23 | margin-top: 35vh; 24 | } 25 | 26 | .intro h1{ 27 | color: white; 28 | font-size: 7vw; 29 | z-index: 3; 30 | text-align: center; 31 | white-space: nowrap; 32 | } 33 | 34 | .introImage{ 35 | filter: brightness(70%); 36 | width: 350px; 37 | height: 475px; 38 | position: absolute; 39 | } 40 | 41 | .introImage img{ 42 | object-fit: cover; 43 | object-position: top; 44 | } -------------------------------------------------------------------------------- /src/components/Projects/index.jsx: -------------------------------------------------------------------------------- 1 | import React, { useState, useLayoutEffect, useRef } from 'react' 2 | import styles from './style.module.css'; 3 | import Image from 'next/image'; 4 | import gsap from 'gsap'; 5 | import { ScrollTrigger } from 'gsap/ScrollTrigger'; 6 | 7 | const projects = [ 8 | { 9 | title: "Salar de Atacama", 10 | src: "salar_de_atacama.jpg" 11 | }, 12 | { 13 | title: "Valle de la luna", 14 | src: "valle_de_la_muerte.jpeg" 15 | }, 16 | { 17 | title: "Miscanti Lake", 18 | src: "miscani_lake.jpeg" 19 | }, 20 | { 21 | title: "Miniques Lagoons", 22 | src: "miniques_lagoon.jpg" 23 | }, 24 | ] 25 | 26 | export default function Index() { 27 | 28 | const [selectedProject, setSelectedProject] = useState(0); 29 | const container = useRef(null); 30 | const imageContainer = useRef(null); 31 | 32 | useLayoutEffect( () => { 33 | gsap.registerPlugin(ScrollTrigger); 34 | ScrollTrigger.create({ 35 | trigger: imageContainer.current, 36 | pin: true, 37 | start: "top-=100px", 38 | end: document.body.offsetHeight - window.innerHeight - 50, 39 | }) 40 | }, []) 41 | 42 | return ( 43 |
44 |
45 |
46 | project image 52 |
53 |
54 |

The flora is characterized by the presence of high elevation wetland, as well as yellow straw, broom sedge, tola de agua and tola amaia.

55 |
56 |
57 |

Some, like the southern viscacha, vicuña and Darwins rhea, are classified as endangered species. Others, such as Andean goose, horned coot, Andean gull, puna tinamou and the three flamingo species inhabiting in Chile (Andean flamingo, Chilean flamingo, and Jamess flamingo) are considered vulnerable.

58 |
59 |
60 | 61 |
62 | { 63 | projects.map( (project, index) => { 64 | return
{setSelectedProject(index)}} className={styles.projectEl}> 65 |

{project.title}

66 |
67 | }) 68 | } 69 |
70 |
71 | ) 72 | } 73 | -------------------------------------------------------------------------------- /src/components/Projects/style.module.css: -------------------------------------------------------------------------------- 1 | .projects{ 2 | position: relative; 3 | color: white; 4 | margin-top: 25vh; 5 | padding: 10%; 6 | } 7 | 8 | .projectDescription{ 9 | display: flex; 10 | height: 700px; 11 | justify-content: space-between; 12 | gap: 5%; 13 | } 14 | 15 | .imageContainer{ 16 | position: relative; 17 | height: 100%; 18 | width: 40%; 19 | } 20 | 21 | .imageContainer img{ 22 | object-fit: cover; 23 | } 24 | 25 | .column{ 26 | display: flex; 27 | height: 100%; 28 | width: 20%; 29 | font-size: 1.6vw; 30 | } 31 | 32 | .column:last-of-type{ 33 | align-items: flex-end; 34 | font-size: 1vw; 35 | } 36 | 37 | .projectList{ 38 | display: flex; 39 | flex-direction: column; 40 | position: relative; 41 | margin-top: 200px; 42 | } 43 | 44 | .projectEl{ 45 | width: 100%; 46 | color: white; 47 | text-transform: uppercase; 48 | font-size: 3vw; 49 | border-bottom: 1px solid white; 50 | display: flex; 51 | justify-content: flex-end; 52 | } 53 | .projectEl h2{ 54 | margin: 0px; 55 | margin-top: 40px; 56 | margin-bottom: 20px; 57 | cursor: default; 58 | } --------------------------------------------------------------------------------