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