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